less copy protection, more size visualization
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

65404 行
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "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. }
  2399. //species
  2400. function getSpeciesInfo(speciesList) {
  2401. let result = new Set();
  2402. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2403. result.add(entry)
  2404. });
  2405. return Array.from(result);
  2406. };
  2407. function getSpeciesInfoHelper(species) {
  2408. if (!speciesData[species]) {
  2409. console.warn(species + " doesn't exist");
  2410. return [];
  2411. }
  2412. if (speciesData[species].parents) {
  2413. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2414. } else {
  2415. return [species];
  2416. }
  2417. }
  2418. characterMakers.push(() => makeCharacter(
  2419. {
  2420. name: "Fen",
  2421. species: ["crux"],
  2422. description: {
  2423. title: "Bio",
  2424. text: "Very furry. Sheds on everything."
  2425. },
  2426. tags: [
  2427. "anthro",
  2428. "goo"
  2429. ]
  2430. },
  2431. {
  2432. front: {
  2433. height: math.unit(12, "feet"),
  2434. weight: math.unit(2400, "lb"),
  2435. preyCapacity: math.unit(1, "people"),
  2436. name: "Front",
  2437. image: {
  2438. source: "./media/characters/fen/front.svg",
  2439. extra: 1804/1562,
  2440. bottom: 205/2009
  2441. },
  2442. extraAttributes: {
  2443. pawSize: {
  2444. name: "Paw Size",
  2445. power: 2,
  2446. type: "area",
  2447. base: math.unit(0.35, "m^2")
  2448. }
  2449. }
  2450. },
  2451. diving: {
  2452. height: math.unit(4.9, "meters"),
  2453. weight: math.unit(2400, "lb"),
  2454. name: "Diving",
  2455. image: {
  2456. source: "./media/characters/fen/diving.svg"
  2457. }
  2458. },
  2459. sleeby: {
  2460. height: math.unit(3.45, "meters"),
  2461. weight: math.unit(2400, "lb"),
  2462. name: "Sleeby",
  2463. image: {
  2464. source: "./media/characters/fen/sleeby.svg"
  2465. }
  2466. },
  2467. goo: {
  2468. height: math.unit(12, "feet"),
  2469. weight: math.unit(3600, "lb"),
  2470. volume: math.unit(1000, "liters"),
  2471. preyCapacity: math.unit(6, "people"),
  2472. name: "Goo",
  2473. image: {
  2474. source: "./media/characters/fen/goo.svg",
  2475. extra: 1307/1071,
  2476. bottom: 134/1441
  2477. }
  2478. },
  2479. horror: {
  2480. height: math.unit(13.6, "feet"),
  2481. weight: math.unit(2400, "lb"),
  2482. preyCapacity: math.unit(1, "people"),
  2483. name: "Horror",
  2484. image: {
  2485. source: "./media/characters/fen/horror.svg",
  2486. extra: 893/797,
  2487. bottom: 0/893
  2488. }
  2489. },
  2490. gooNsfw: {
  2491. height: math.unit(12, "feet"),
  2492. weight: math.unit(3750, "lb"),
  2493. volume: math.unit(1000, "liters"),
  2494. preyCapacity: math.unit(6, "people"),
  2495. name: "Goo (NSFW)",
  2496. image: {
  2497. source: "./media/characters/fen/goo-nsfw.svg",
  2498. extra: 1875/1734,
  2499. bottom: 122/1997
  2500. }
  2501. },
  2502. maw: {
  2503. height: math.unit(5.03, "feet"),
  2504. name: "Maw",
  2505. image: {
  2506. source: "./media/characters/fen/maw.svg"
  2507. }
  2508. },
  2509. gooCeiling: {
  2510. height: math.unit(6.6, "feet"),
  2511. weight: math.unit(3000, "lb"),
  2512. volume: math.unit(1000, "liters"),
  2513. preyCapacity: math.unit(6, "people"),
  2514. name: "Maw (Goo)",
  2515. image: {
  2516. source: "./media/characters/fen/goo-maw.svg"
  2517. }
  2518. },
  2519. paw: {
  2520. height: math.unit(3.77, "feet"),
  2521. name: "Paw",
  2522. image: {
  2523. source: "./media/characters/fen/paw.svg"
  2524. },
  2525. extraAttributes: {
  2526. "toeSize": {
  2527. name: "Toe Size",
  2528. power: 2,
  2529. type: "area",
  2530. base: math.unit(0.02875, "m^2")
  2531. },
  2532. "pawSize": {
  2533. name: "Paw Size",
  2534. power: 2,
  2535. type: "area",
  2536. base: math.unit(0.378, "m^2")
  2537. },
  2538. }
  2539. },
  2540. tail: {
  2541. height: math.unit(12.1, "feet"),
  2542. name: "Tail",
  2543. image: {
  2544. source: "./media/characters/fen/tail.svg"
  2545. }
  2546. },
  2547. tailFull: {
  2548. height: math.unit(12.1, "feet"),
  2549. name: "Full Tail",
  2550. image: {
  2551. source: "./media/characters/fen/tail-full.svg"
  2552. }
  2553. },
  2554. back: {
  2555. height: math.unit(12, "feet"),
  2556. weight: math.unit(2400, "lb"),
  2557. name: "Back",
  2558. image: {
  2559. source: "./media/characters/fen/back.svg",
  2560. },
  2561. info: {
  2562. description: {
  2563. mode: "append",
  2564. text: "\n\nHe is not currently looking at you."
  2565. }
  2566. }
  2567. },
  2568. full: {
  2569. height: math.unit(1.85, "meter"),
  2570. weight: math.unit(3200, "lb"),
  2571. preyCapacity: math.unit(3, "people"),
  2572. name: "Full",
  2573. image: {
  2574. source: "./media/characters/fen/full.svg",
  2575. extra: 1133/859,
  2576. bottom: 145/1278
  2577. },
  2578. info: {
  2579. description: {
  2580. mode: "append",
  2581. text: "\n\nMunch."
  2582. }
  2583. }
  2584. },
  2585. gooLounging: {
  2586. height: math.unit(4.53, "feet"),
  2587. weight: math.unit(3000, "lb"),
  2588. preyCapacity: math.unit(6, "people"),
  2589. name: "Goo (Lounging)",
  2590. image: {
  2591. source: "./media/characters/fen/goo-lounging.svg",
  2592. bottom: 116 / 613
  2593. }
  2594. },
  2595. lounging: {
  2596. height: math.unit(10.52, "feet"),
  2597. weight: math.unit(2400, "lb"),
  2598. name: "Lounging",
  2599. image: {
  2600. source: "./media/characters/fen/lounging.svg"
  2601. }
  2602. },
  2603. },
  2604. [
  2605. {
  2606. name: "Small",
  2607. height: math.unit(2.2428, "meter")
  2608. },
  2609. {
  2610. name: "Normal",
  2611. height: math.unit(12, "feet"),
  2612. default: true,
  2613. },
  2614. {
  2615. name: "Big",
  2616. height: math.unit(20, "feet")
  2617. },
  2618. {
  2619. name: "Minimacro",
  2620. height: math.unit(40, "feet"),
  2621. info: {
  2622. description: {
  2623. mode: "append",
  2624. text: "\n\nTOO DAMN BIG"
  2625. }
  2626. }
  2627. },
  2628. {
  2629. name: "Macro",
  2630. height: math.unit(100, "feet"),
  2631. info: {
  2632. description: {
  2633. mode: "append",
  2634. text: "\n\nTOO DAMN BIG"
  2635. }
  2636. }
  2637. },
  2638. {
  2639. name: "Megamacro",
  2640. height: math.unit(2, "miles")
  2641. },
  2642. {
  2643. name: "Gigamacro",
  2644. height: math.unit(10, "earths")
  2645. },
  2646. ]
  2647. ))
  2648. characterMakers.push(() => makeCharacter(
  2649. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2650. {
  2651. front: {
  2652. height: math.unit(183, "cm"),
  2653. weight: math.unit(80, "kg"),
  2654. name: "Front",
  2655. image: {
  2656. source: "./media/characters/sofia-fluttertail/front.svg",
  2657. bottom: 0.01,
  2658. extra: 2154 / 2081
  2659. }
  2660. },
  2661. frontAlt: {
  2662. height: math.unit(183, "cm"),
  2663. weight: math.unit(80, "kg"),
  2664. name: "Front (alt)",
  2665. image: {
  2666. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2667. }
  2668. },
  2669. back: {
  2670. height: math.unit(183, "cm"),
  2671. weight: math.unit(80, "kg"),
  2672. name: "Back",
  2673. image: {
  2674. source: "./media/characters/sofia-fluttertail/back.svg"
  2675. }
  2676. },
  2677. kneeling: {
  2678. height: math.unit(125, "cm"),
  2679. weight: math.unit(80, "kg"),
  2680. name: "Kneeling",
  2681. image: {
  2682. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2683. extra: 1033 / 977,
  2684. bottom: 23.7 / 1057
  2685. }
  2686. },
  2687. maw: {
  2688. height: math.unit(183 / 5, "cm"),
  2689. name: "Maw",
  2690. image: {
  2691. source: "./media/characters/sofia-fluttertail/maw.svg"
  2692. }
  2693. },
  2694. mawcloseup: {
  2695. height: math.unit(183 / 5 * 0.41, "cm"),
  2696. name: "Maw (Closeup)",
  2697. image: {
  2698. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2699. }
  2700. },
  2701. paws: {
  2702. height: math.unit(1.17, "feet"),
  2703. name: "Paws",
  2704. image: {
  2705. source: "./media/characters/sofia-fluttertail/paws.svg",
  2706. extra: 851 / 851,
  2707. bottom: 17 / 868
  2708. }
  2709. },
  2710. },
  2711. [
  2712. {
  2713. name: "Normal",
  2714. height: math.unit(1.83, "meter")
  2715. },
  2716. {
  2717. name: "Size Thief",
  2718. height: math.unit(18, "feet")
  2719. },
  2720. {
  2721. name: "50 Foot Collie",
  2722. height: math.unit(50, "feet")
  2723. },
  2724. {
  2725. name: "Macro",
  2726. height: math.unit(96, "feet"),
  2727. default: true
  2728. },
  2729. {
  2730. name: "Megamerger",
  2731. height: math.unit(650, "feet")
  2732. },
  2733. ]
  2734. ))
  2735. characterMakers.push(() => makeCharacter(
  2736. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2737. {
  2738. front: {
  2739. height: math.unit(7, "feet"),
  2740. weight: math.unit(100, "kg"),
  2741. name: "Front",
  2742. image: {
  2743. source: "./media/characters/march/front.svg",
  2744. extra: 1992/1851,
  2745. bottom: 39/2031
  2746. }
  2747. },
  2748. foot: {
  2749. height: math.unit(0.9, "feet"),
  2750. name: "Foot",
  2751. image: {
  2752. source: "./media/characters/march/foot.svg"
  2753. }
  2754. },
  2755. },
  2756. [
  2757. {
  2758. name: "Normal",
  2759. height: math.unit(7.9, "feet")
  2760. },
  2761. {
  2762. name: "Macro",
  2763. height: math.unit(220, "meters")
  2764. },
  2765. {
  2766. name: "Megamacro",
  2767. height: math.unit(2.98, "km"),
  2768. default: true
  2769. },
  2770. {
  2771. name: "Gigamacro",
  2772. height: math.unit(15963, "km")
  2773. },
  2774. {
  2775. name: "Teramacro",
  2776. height: math.unit(2980000000, "km")
  2777. },
  2778. {
  2779. name: "Examacro",
  2780. height: math.unit(250, "parsecs")
  2781. },
  2782. ]
  2783. ))
  2784. characterMakers.push(() => makeCharacter(
  2785. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2786. {
  2787. front: {
  2788. height: math.unit(6, "feet"),
  2789. weight: math.unit(60, "kg"),
  2790. name: "Front",
  2791. image: {
  2792. source: "./media/characters/noir/front.svg",
  2793. extra: 1,
  2794. bottom: 0.032
  2795. }
  2796. },
  2797. },
  2798. [
  2799. {
  2800. name: "Normal",
  2801. height: math.unit(6.6, "feet")
  2802. },
  2803. {
  2804. name: "Macro",
  2805. height: math.unit(500, "feet")
  2806. },
  2807. {
  2808. name: "Megamacro",
  2809. height: math.unit(2.5, "km"),
  2810. default: true
  2811. },
  2812. {
  2813. name: "Gigamacro",
  2814. height: math.unit(22500, "km")
  2815. },
  2816. {
  2817. name: "Teramacro",
  2818. height: math.unit(2500000000, "km")
  2819. },
  2820. {
  2821. name: "Examacro",
  2822. height: math.unit(200, "parsecs")
  2823. },
  2824. ]
  2825. ))
  2826. characterMakers.push(() => makeCharacter(
  2827. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2828. {
  2829. front: {
  2830. height: math.unit(7, "feet"),
  2831. weight: math.unit(100, "kg"),
  2832. name: "Front",
  2833. image: {
  2834. source: "./media/characters/okuri/front.svg",
  2835. extra: 739/665,
  2836. bottom: 39/778
  2837. }
  2838. },
  2839. back: {
  2840. height: math.unit(7, "feet"),
  2841. weight: math.unit(100, "kg"),
  2842. name: "Back",
  2843. image: {
  2844. source: "./media/characters/okuri/back.svg",
  2845. extra: 734/653,
  2846. bottom: 13/747
  2847. }
  2848. },
  2849. sitting: {
  2850. height: math.unit(2.95, "feet"),
  2851. weight: math.unit(100, "kg"),
  2852. name: "Sitting",
  2853. image: {
  2854. source: "./media/characters/okuri/sitting.svg",
  2855. extra: 370/318,
  2856. bottom: 99/469
  2857. }
  2858. },
  2859. },
  2860. [
  2861. {
  2862. name: "Smallest",
  2863. height: math.unit(5 + 2/12, "feet")
  2864. },
  2865. {
  2866. name: "Smaller",
  2867. height: math.unit(300, "feet")
  2868. },
  2869. {
  2870. name: "Small",
  2871. height: math.unit(1000, "feet")
  2872. },
  2873. {
  2874. name: "Macro",
  2875. height: math.unit(1, "mile")
  2876. },
  2877. {
  2878. name: "Mega Macro (Small)",
  2879. height: math.unit(20, "km")
  2880. },
  2881. {
  2882. name: "Mega Macro (Large)",
  2883. height: math.unit(600, "km")
  2884. },
  2885. {
  2886. name: "Giga Macro",
  2887. height: math.unit(10000, "km")
  2888. },
  2889. {
  2890. name: "Normal",
  2891. height: math.unit(577560, "km"),
  2892. default: true
  2893. },
  2894. {
  2895. name: "Large",
  2896. height: math.unit(4, "galaxies")
  2897. },
  2898. {
  2899. name: "Largest",
  2900. height: math.unit(15, "multiverses")
  2901. },
  2902. ]
  2903. ))
  2904. characterMakers.push(() => makeCharacter(
  2905. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2906. {
  2907. front: {
  2908. height: math.unit(7, "feet"),
  2909. weight: math.unit(100, "kg"),
  2910. name: "Front",
  2911. image: {
  2912. source: "./media/characters/manny/front.svg",
  2913. extra: 1,
  2914. bottom: 0.06
  2915. }
  2916. },
  2917. back: {
  2918. height: math.unit(7, "feet"),
  2919. weight: math.unit(100, "kg"),
  2920. name: "Back",
  2921. image: {
  2922. source: "./media/characters/manny/back.svg",
  2923. extra: 1,
  2924. bottom: 0.014
  2925. }
  2926. },
  2927. },
  2928. [
  2929. {
  2930. name: "Normal",
  2931. height: math.unit(7, "feet"),
  2932. },
  2933. {
  2934. name: "Macro",
  2935. height: math.unit(78, "feet"),
  2936. default: true
  2937. },
  2938. {
  2939. name: "Macro+",
  2940. height: math.unit(300, "meters")
  2941. },
  2942. {
  2943. name: "Macro++",
  2944. height: math.unit(2400, "meters")
  2945. },
  2946. {
  2947. name: "Megamacro",
  2948. height: math.unit(5167, "meters")
  2949. },
  2950. {
  2951. name: "Gigamacro",
  2952. height: math.unit(41769, "miles")
  2953. },
  2954. ]
  2955. ))
  2956. characterMakers.push(() => makeCharacter(
  2957. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2958. {
  2959. front: {
  2960. height: math.unit(7, "feet"),
  2961. weight: math.unit(100, "kg"),
  2962. name: "Front",
  2963. image: {
  2964. source: "./media/characters/adake/front-1.svg"
  2965. }
  2966. },
  2967. frontAlt: {
  2968. height: math.unit(7, "feet"),
  2969. weight: math.unit(100, "kg"),
  2970. name: "Front (Alt)",
  2971. image: {
  2972. source: "./media/characters/adake/front-2.svg",
  2973. extra: 1,
  2974. bottom: 0.01
  2975. }
  2976. },
  2977. back: {
  2978. height: math.unit(7, "feet"),
  2979. weight: math.unit(100, "kg"),
  2980. name: "Back",
  2981. image: {
  2982. source: "./media/characters/adake/back.svg",
  2983. }
  2984. },
  2985. kneel: {
  2986. height: math.unit(5.385, "feet"),
  2987. weight: math.unit(100, "kg"),
  2988. name: "Kneeling",
  2989. image: {
  2990. source: "./media/characters/adake/kneel.svg",
  2991. bottom: 0.052
  2992. }
  2993. },
  2994. },
  2995. [
  2996. {
  2997. name: "Normal",
  2998. height: math.unit(7, "feet"),
  2999. },
  3000. {
  3001. name: "Macro",
  3002. height: math.unit(78, "feet"),
  3003. default: true
  3004. },
  3005. {
  3006. name: "Macro+",
  3007. height: math.unit(300, "meters")
  3008. },
  3009. {
  3010. name: "Macro++",
  3011. height: math.unit(2400, "meters")
  3012. },
  3013. {
  3014. name: "Megamacro",
  3015. height: math.unit(5167, "meters")
  3016. },
  3017. {
  3018. name: "Gigamacro",
  3019. height: math.unit(41769, "miles")
  3020. },
  3021. ]
  3022. ))
  3023. characterMakers.push(() => makeCharacter(
  3024. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3025. {
  3026. front: {
  3027. height: math.unit(1.65, "meters"),
  3028. weight: math.unit(50, "kg"),
  3029. name: "Front",
  3030. image: {
  3031. source: "./media/characters/elijah/front.svg",
  3032. extra: 858 / 830,
  3033. bottom: 95.5 / 953.8559
  3034. }
  3035. },
  3036. back: {
  3037. height: math.unit(1.65, "meters"),
  3038. weight: math.unit(50, "kg"),
  3039. name: "Back",
  3040. image: {
  3041. source: "./media/characters/elijah/back.svg",
  3042. extra: 895 / 850,
  3043. bottom: 5.3 / 897.956
  3044. }
  3045. },
  3046. frontNsfw: {
  3047. height: math.unit(1.65, "meters"),
  3048. weight: math.unit(50, "kg"),
  3049. name: "Front (NSFW)",
  3050. image: {
  3051. source: "./media/characters/elijah/front-nsfw.svg",
  3052. extra: 858 / 830,
  3053. bottom: 95.5 / 953.8559
  3054. }
  3055. },
  3056. backNsfw: {
  3057. height: math.unit(1.65, "meters"),
  3058. weight: math.unit(50, "kg"),
  3059. name: "Back (NSFW)",
  3060. image: {
  3061. source: "./media/characters/elijah/back-nsfw.svg",
  3062. extra: 895 / 850,
  3063. bottom: 5.3 / 897.956
  3064. }
  3065. },
  3066. dick: {
  3067. height: math.unit(1, "feet"),
  3068. name: "Dick",
  3069. image: {
  3070. source: "./media/characters/elijah/dick.svg"
  3071. }
  3072. },
  3073. beakOpen: {
  3074. height: math.unit(1.25, "feet"),
  3075. name: "Beak (Open)",
  3076. image: {
  3077. source: "./media/characters/elijah/beak-open.svg"
  3078. }
  3079. },
  3080. beakShut: {
  3081. height: math.unit(1.25, "feet"),
  3082. name: "Beak (Shut)",
  3083. image: {
  3084. source: "./media/characters/elijah/beak-shut.svg"
  3085. }
  3086. },
  3087. footFlexing: {
  3088. height: math.unit(1.61, "feet"),
  3089. name: "Foot (Flexing)",
  3090. image: {
  3091. source: "./media/characters/elijah/foot-flexing.svg"
  3092. }
  3093. },
  3094. footStepping: {
  3095. height: math.unit(1.44, "feet"),
  3096. name: "Foot (Stepping)",
  3097. image: {
  3098. source: "./media/characters/elijah/foot-stepping.svg"
  3099. }
  3100. },
  3101. plantigradeLeg: {
  3102. height: math.unit(2.34, "feet"),
  3103. name: "Plantigrade Leg",
  3104. image: {
  3105. source: "./media/characters/elijah/plantigrade-leg.svg"
  3106. }
  3107. },
  3108. plantigradeFootLeft: {
  3109. height: math.unit(0.9, "feet"),
  3110. name: "Plantigrade Foot (Left)",
  3111. image: {
  3112. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3113. }
  3114. },
  3115. plantigradeFootRight: {
  3116. height: math.unit(0.9, "feet"),
  3117. name: "Plantigrade Foot (Right)",
  3118. image: {
  3119. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3120. }
  3121. },
  3122. },
  3123. [
  3124. {
  3125. name: "Normal",
  3126. height: math.unit(1.65, "meters")
  3127. },
  3128. {
  3129. name: "Macro",
  3130. height: math.unit(55, "meters"),
  3131. default: true
  3132. },
  3133. {
  3134. name: "Macro+",
  3135. height: math.unit(105, "meters")
  3136. },
  3137. ]
  3138. ))
  3139. characterMakers.push(() => makeCharacter(
  3140. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3141. {
  3142. front: {
  3143. height: math.unit(7 + 2/12, "feet"),
  3144. weight: math.unit(320, "kg"),
  3145. preyCapacity: math.unit(0.276549935, "people"),
  3146. name: "Front",
  3147. image: {
  3148. source: "./media/characters/rai/front.svg",
  3149. extra: 1802/1696,
  3150. bottom: 68/1870
  3151. },
  3152. form: "anthro",
  3153. default: true
  3154. },
  3155. frontDressed: {
  3156. height: math.unit(7 + 2/12, "feet"),
  3157. weight: math.unit(320, "kg"),
  3158. preyCapacity: math.unit(0.276549935, "people"),
  3159. name: "Front (Dressed)",
  3160. image: {
  3161. source: "./media/characters/rai/front-dressed.svg",
  3162. extra: 1802/1696,
  3163. bottom: 68/1870
  3164. },
  3165. form: "anthro"
  3166. },
  3167. side: {
  3168. height: math.unit(7 + 2/12, "feet"),
  3169. weight: math.unit(320, "kg"),
  3170. preyCapacity: math.unit(0.276549935, "people"),
  3171. name: "Side",
  3172. image: {
  3173. source: "./media/characters/rai/side.svg",
  3174. extra: 1789/1710,
  3175. bottom: 115/1904
  3176. },
  3177. form: "anthro"
  3178. },
  3179. back: {
  3180. height: math.unit(7 + 2/12, "feet"),
  3181. weight: math.unit(320, "kg"),
  3182. preyCapacity: math.unit(0.276549935, "people"),
  3183. name: "Back",
  3184. image: {
  3185. source: "./media/characters/rai/back.svg",
  3186. extra: 1770/1707,
  3187. bottom: 28/1798
  3188. },
  3189. form: "anthro"
  3190. },
  3191. feral: {
  3192. height: math.unit(9.5, "feet"),
  3193. weight: math.unit(640, "kg"),
  3194. preyCapacity: math.unit(4, "people"),
  3195. name: "Feral",
  3196. image: {
  3197. source: "./media/characters/rai/feral.svg",
  3198. extra: 945/553,
  3199. bottom: 176/1121
  3200. },
  3201. form: "feral",
  3202. default: true
  3203. },
  3204. dragon: {
  3205. height: math.unit(23, "feet"),
  3206. weight: math.unit(50000, "lb"),
  3207. name: "Dragon",
  3208. image: {
  3209. source: "./media/characters/rai/dragon.svg",
  3210. extra: 2498 / 2030,
  3211. bottom: 85.2 / 2584
  3212. },
  3213. form: "dragon",
  3214. default: true
  3215. },
  3216. maw: {
  3217. height: math.unit(1.69, "feet"),
  3218. name: "Maw",
  3219. image: {
  3220. source: "./media/characters/rai/maw.svg"
  3221. },
  3222. form: "anthro"
  3223. },
  3224. },
  3225. [
  3226. {
  3227. name: "Normal",
  3228. height: math.unit(7 + 2/12, "feet"),
  3229. form: "anthro"
  3230. },
  3231. {
  3232. name: "Big",
  3233. height: math.unit(11, "feet"),
  3234. form: "anthro"
  3235. },
  3236. {
  3237. name: "Minimacro",
  3238. height: math.unit(77, "feet"),
  3239. form: "anthro"
  3240. },
  3241. {
  3242. name: "Macro",
  3243. height: math.unit(302, "feet"),
  3244. default: true,
  3245. form: "anthro"
  3246. },
  3247. {
  3248. name: "Normal",
  3249. height: math.unit(9.5, "feet"),
  3250. form: "feral",
  3251. default: true
  3252. },
  3253. {
  3254. name: "Normal",
  3255. height: math.unit(23, "feet"),
  3256. form: "dragon",
  3257. default: true
  3258. }
  3259. ],
  3260. {
  3261. "anthro": {
  3262. name: "Anthro",
  3263. default: true
  3264. },
  3265. "feral": {
  3266. name: "Feral",
  3267. },
  3268. "dragon": {
  3269. name: "Dragon",
  3270. },
  3271. }
  3272. ))
  3273. characterMakers.push(() => makeCharacter(
  3274. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3275. {
  3276. frontDressed: {
  3277. height: math.unit(216, "feet"),
  3278. weight: math.unit(7000000, "lb"),
  3279. preyCapacity: math.unit(1321, "people"),
  3280. name: "Front (Dressed)",
  3281. image: {
  3282. source: "./media/characters/jazzy/front-dressed.svg",
  3283. extra: 2738 / 2651,
  3284. bottom: 41.8 / 2786
  3285. }
  3286. },
  3287. backDressed: {
  3288. height: math.unit(216, "feet"),
  3289. weight: math.unit(7000000, "lb"),
  3290. preyCapacity: math.unit(1321, "people"),
  3291. name: "Back (Dressed)",
  3292. image: {
  3293. source: "./media/characters/jazzy/back-dressed.svg",
  3294. extra: 2775 / 2673,
  3295. bottom: 36.8 / 2817
  3296. }
  3297. },
  3298. front: {
  3299. height: math.unit(216, "feet"),
  3300. weight: math.unit(7000000, "lb"),
  3301. preyCapacity: math.unit(1321, "people"),
  3302. name: "Front",
  3303. image: {
  3304. source: "./media/characters/jazzy/front.svg",
  3305. extra: 2738 / 2651,
  3306. bottom: 41.8 / 2786
  3307. }
  3308. },
  3309. back: {
  3310. height: math.unit(216, "feet"),
  3311. weight: math.unit(7000000, "lb"),
  3312. preyCapacity: math.unit(1321, "people"),
  3313. name: "Back",
  3314. image: {
  3315. source: "./media/characters/jazzy/back.svg",
  3316. extra: 2775 / 2673,
  3317. bottom: 36.8 / 2817
  3318. }
  3319. },
  3320. maw: {
  3321. height: math.unit(20, "feet"),
  3322. name: "Maw",
  3323. image: {
  3324. source: "./media/characters/jazzy/maw.svg"
  3325. }
  3326. },
  3327. paws: {
  3328. height: math.unit(27.5, "feet"),
  3329. name: "Paws",
  3330. image: {
  3331. source: "./media/characters/jazzy/paws.svg"
  3332. }
  3333. },
  3334. eye: {
  3335. height: math.unit(4.4, "feet"),
  3336. name: "Eye",
  3337. image: {
  3338. source: "./media/characters/jazzy/eye.svg"
  3339. }
  3340. },
  3341. droneOffense: {
  3342. height: math.unit(9.5, "inches"),
  3343. name: "Drone (Offense)",
  3344. image: {
  3345. source: "./media/characters/jazzy/drone-offense.svg"
  3346. }
  3347. },
  3348. droneRecon: {
  3349. height: math.unit(9.5, "inches"),
  3350. name: "Drone (Recon)",
  3351. image: {
  3352. source: "./media/characters/jazzy/drone-recon.svg"
  3353. }
  3354. },
  3355. droneDefense: {
  3356. height: math.unit(9.5, "inches"),
  3357. name: "Drone (Defense)",
  3358. image: {
  3359. source: "./media/characters/jazzy/drone-defense.svg"
  3360. }
  3361. },
  3362. },
  3363. [
  3364. {
  3365. name: "Macro",
  3366. height: math.unit(216, "feet"),
  3367. default: true
  3368. },
  3369. ]
  3370. ))
  3371. characterMakers.push(() => makeCharacter(
  3372. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3373. {
  3374. front: {
  3375. height: math.unit(9 + 6/12, "feet"),
  3376. weight: math.unit(700, "lb"),
  3377. name: "Front",
  3378. image: {
  3379. source: "./media/characters/flamm/front.svg",
  3380. extra: 1736/1596,
  3381. bottom: 93/1829
  3382. }
  3383. },
  3384. buff: {
  3385. height: math.unit(9 + 6/12, "feet"),
  3386. weight: math.unit(950, "lb"),
  3387. name: "Buff",
  3388. image: {
  3389. source: "./media/characters/flamm/buff.svg",
  3390. extra: 3018/2874,
  3391. bottom: 221/3239
  3392. }
  3393. },
  3394. },
  3395. [
  3396. {
  3397. name: "Normal",
  3398. height: math.unit(9.5, "feet")
  3399. },
  3400. {
  3401. name: "Macro",
  3402. height: math.unit(200, "feet"),
  3403. default: true
  3404. },
  3405. ]
  3406. ))
  3407. characterMakers.push(() => makeCharacter(
  3408. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3409. {
  3410. front: {
  3411. height: math.unit(5 + 3/12, "feet"),
  3412. weight: math.unit(60, "kg"),
  3413. name: "Front",
  3414. image: {
  3415. source: "./media/characters/zephiro/front.svg",
  3416. extra: 1873/1761,
  3417. bottom: 147/2020
  3418. }
  3419. },
  3420. side: {
  3421. height: math.unit(5 + 3/12, "feet"),
  3422. weight: math.unit(60, "kg"),
  3423. name: "Side",
  3424. image: {
  3425. source: "./media/characters/zephiro/side.svg",
  3426. extra: 1929/1827,
  3427. bottom: 65/1994
  3428. }
  3429. },
  3430. back: {
  3431. height: math.unit(5 + 3/12, "feet"),
  3432. weight: math.unit(60, "kg"),
  3433. name: "Back",
  3434. image: {
  3435. source: "./media/characters/zephiro/back.svg",
  3436. extra: 1926/1816,
  3437. bottom: 41/1967
  3438. }
  3439. },
  3440. hand: {
  3441. height: math.unit(0.68, "feet"),
  3442. name: "Hand",
  3443. image: {
  3444. source: "./media/characters/zephiro/hand.svg"
  3445. }
  3446. },
  3447. paw: {
  3448. height: math.unit(1, "feet"),
  3449. name: "Paw",
  3450. image: {
  3451. source: "./media/characters/zephiro/paw.svg"
  3452. }
  3453. },
  3454. beans: {
  3455. height: math.unit(0.93, "feet"),
  3456. name: "Beans",
  3457. image: {
  3458. source: "./media/characters/zephiro/beans.svg"
  3459. }
  3460. },
  3461. },
  3462. [
  3463. {
  3464. name: "Micro",
  3465. height: math.unit(3, "inches")
  3466. },
  3467. {
  3468. name: "Normal",
  3469. height: math.unit(5 + 3 / 12, "feet"),
  3470. default: true
  3471. },
  3472. {
  3473. name: "Macro",
  3474. height: math.unit(118, "feet")
  3475. },
  3476. ]
  3477. ))
  3478. characterMakers.push(() => makeCharacter(
  3479. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3480. {
  3481. front: {
  3482. height: math.unit(5, "feet"),
  3483. weight: math.unit(90, "kg"),
  3484. preyCapacity: math.unit(14, "people"),
  3485. name: "Front",
  3486. image: {
  3487. source: "./media/characters/fory/front.svg",
  3488. extra: 2862 / 2674,
  3489. bottom: 180 / 3043.8
  3490. },
  3491. form: "weaselbun",
  3492. default: true,
  3493. extraAttributes: {
  3494. "pawSize": {
  3495. name: "Paw Size",
  3496. power: 2,
  3497. type: "area",
  3498. base: math.unit(0.1596, "m^2")
  3499. },
  3500. "pawLength": {
  3501. name: "Paw Length",
  3502. power: 1,
  3503. type: "length",
  3504. base: math.unit(0.7, "m")
  3505. }
  3506. }
  3507. },
  3508. back: {
  3509. height: math.unit(5, "feet"),
  3510. weight: math.unit(90, "kg"),
  3511. preyCapacity: math.unit(14, "people"),
  3512. name: "Back",
  3513. image: {
  3514. source: "./media/characters/fory/back.svg",
  3515. extra: 1790/1672,
  3516. bottom: 84/1874
  3517. },
  3518. form: "weaselbun",
  3519. extraAttributes: {
  3520. "pawSize": {
  3521. name: "Paw Size",
  3522. power: 2,
  3523. type: "area",
  3524. base: math.unit(0.1596, "m^2")
  3525. },
  3526. "pawLength": {
  3527. name: "Paw Length",
  3528. power: 1,
  3529. type: "length",
  3530. base: math.unit(0.7, "m")
  3531. }
  3532. }
  3533. },
  3534. paw: {
  3535. height: math.unit(2.14, "feet"),
  3536. name: "Paw",
  3537. image: {
  3538. source: "./media/characters/fory/paw.svg"
  3539. },
  3540. form: "weaselbun",
  3541. extraAttributes: {
  3542. "pawSize": {
  3543. name: "Paw Size",
  3544. power: 2,
  3545. type: "area",
  3546. base: math.unit(0.1596, "m^2")
  3547. },
  3548. "pawLength": {
  3549. name: "Paw Length",
  3550. power: 1,
  3551. type: "length",
  3552. base: math.unit(0.48, "m")
  3553. }
  3554. }
  3555. },
  3556. bunBack: {
  3557. height: math.unit(3, "feet"),
  3558. weight: math.unit(20, "kg"),
  3559. preyCapacity: math.unit(3, "people"),
  3560. name: "Back",
  3561. image: {
  3562. source: "./media/characters/fory/bun-back.svg",
  3563. extra: 1749/1564,
  3564. bottom: 246/1995
  3565. },
  3566. form: "bun",
  3567. default: true,
  3568. extraAttributes: {
  3569. "pawSize": {
  3570. name: "Paw Size",
  3571. power: 2,
  3572. type: "area",
  3573. base: math.unit(0.072, "m^2")
  3574. },
  3575. "pawLength": {
  3576. name: "Paw Length",
  3577. power: 1,
  3578. type: "length",
  3579. base: math.unit(0.45, "m")
  3580. }
  3581. }
  3582. },
  3583. },
  3584. [
  3585. {
  3586. name: "Normal",
  3587. height: math.unit(5, "feet"),
  3588. form: "weaselbun"
  3589. },
  3590. {
  3591. name: "Macro",
  3592. height: math.unit(50, "feet"),
  3593. default: true,
  3594. form: "weaselbun"
  3595. },
  3596. {
  3597. name: "Megamacro",
  3598. height: math.unit(10, "miles"),
  3599. form: "weaselbun"
  3600. },
  3601. {
  3602. name: "Gigamacro",
  3603. height: math.unit(5, "earths"),
  3604. form: "weaselbun"
  3605. },
  3606. {
  3607. name: "Normal",
  3608. height: math.unit(3, "feet"),
  3609. default: true,
  3610. form: "bun"
  3611. },
  3612. {
  3613. name: "Fun-Size",
  3614. height: math.unit(12, "feet"),
  3615. form: "bun"
  3616. },
  3617. {
  3618. name: "Macro",
  3619. height: math.unit(100, "feet"),
  3620. form: "bun"
  3621. },
  3622. {
  3623. name: "Planetary",
  3624. height: math.unit(3, "earths"),
  3625. form: "bun"
  3626. },
  3627. ],
  3628. {
  3629. "weaselbun": {
  3630. name: "Weaselbun",
  3631. default: true
  3632. },
  3633. "bun": {
  3634. name: "Bun",
  3635. },
  3636. }
  3637. ))
  3638. characterMakers.push(() => makeCharacter(
  3639. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3640. {
  3641. front: {
  3642. height: math.unit(7, "feet"),
  3643. weight: math.unit(90, "kg"),
  3644. name: "Front",
  3645. image: {
  3646. source: "./media/characters/kurrikage/front.svg",
  3647. extra: 1845/1733,
  3648. bottom: 119/1964
  3649. }
  3650. },
  3651. back: {
  3652. height: math.unit(7, "feet"),
  3653. weight: math.unit(90, "kg"),
  3654. name: "Back",
  3655. image: {
  3656. source: "./media/characters/kurrikage/back.svg",
  3657. extra: 1790/1677,
  3658. bottom: 61/1851
  3659. }
  3660. },
  3661. dressed: {
  3662. height: math.unit(7, "feet"),
  3663. weight: math.unit(90, "kg"),
  3664. name: "Dressed",
  3665. image: {
  3666. source: "./media/characters/kurrikage/dressed.svg",
  3667. extra: 1845/1733,
  3668. bottom: 119/1964
  3669. }
  3670. },
  3671. foot: {
  3672. height: math.unit(1.5, "feet"),
  3673. name: "Foot",
  3674. image: {
  3675. source: "./media/characters/kurrikage/foot.svg"
  3676. }
  3677. },
  3678. staff: {
  3679. height: math.unit(6.7, "feet"),
  3680. name: "Staff",
  3681. image: {
  3682. source: "./media/characters/kurrikage/staff.svg"
  3683. }
  3684. },
  3685. peek: {
  3686. height: math.unit(1.05, "feet"),
  3687. name: "Peeking",
  3688. image: {
  3689. source: "./media/characters/kurrikage/peek.svg",
  3690. bottom: 0.08
  3691. }
  3692. },
  3693. },
  3694. [
  3695. {
  3696. name: "Normal",
  3697. height: math.unit(12, "feet"),
  3698. default: true
  3699. },
  3700. {
  3701. name: "Big",
  3702. height: math.unit(20, "feet")
  3703. },
  3704. {
  3705. name: "Macro",
  3706. height: math.unit(500, "feet")
  3707. },
  3708. {
  3709. name: "Megamacro",
  3710. height: math.unit(20, "miles")
  3711. },
  3712. ]
  3713. ))
  3714. characterMakers.push(() => makeCharacter(
  3715. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3716. {
  3717. front: {
  3718. height: math.unit(6, "feet"),
  3719. weight: math.unit(75, "kg"),
  3720. name: "Front",
  3721. image: {
  3722. source: "./media/characters/shingo/front.svg",
  3723. extra: 1900/1825,
  3724. bottom: 82/1982
  3725. }
  3726. },
  3727. side: {
  3728. height: math.unit(6, "feet"),
  3729. weight: math.unit(75, "kg"),
  3730. name: "Side",
  3731. image: {
  3732. source: "./media/characters/shingo/side.svg",
  3733. extra: 1930/1865,
  3734. bottom: 16/1946
  3735. }
  3736. },
  3737. back: {
  3738. height: math.unit(6, "feet"),
  3739. weight: math.unit(75, "kg"),
  3740. name: "Back",
  3741. image: {
  3742. source: "./media/characters/shingo/back.svg",
  3743. extra: 1922/1852,
  3744. bottom: 16/1938
  3745. }
  3746. },
  3747. frontDressed: {
  3748. height: math.unit(6, "feet"),
  3749. weight: math.unit(150, "lb"),
  3750. name: "Front-dressed",
  3751. image: {
  3752. source: "./media/characters/shingo/front-dressed.svg",
  3753. extra: 1900/1825,
  3754. bottom: 82/1982
  3755. }
  3756. },
  3757. paw: {
  3758. height: math.unit(1.29, "feet"),
  3759. name: "Paw",
  3760. image: {
  3761. source: "./media/characters/shingo/paw.svg"
  3762. }
  3763. },
  3764. hand: {
  3765. height: math.unit(1.07, "feet"),
  3766. name: "Hand",
  3767. image: {
  3768. source: "./media/characters/shingo/hand.svg"
  3769. }
  3770. },
  3771. frontAlt: {
  3772. height: math.unit(6, "feet"),
  3773. weight: math.unit(75, "kg"),
  3774. name: "Front (Alt)",
  3775. image: {
  3776. source: "./media/characters/shingo/front-alt.svg",
  3777. extra: 3511 / 3338,
  3778. bottom: 0.005
  3779. }
  3780. },
  3781. frontAlt2: {
  3782. height: math.unit(6, "feet"),
  3783. weight: math.unit(75, "kg"),
  3784. name: "Front (Alt 2)",
  3785. image: {
  3786. source: "./media/characters/shingo/front-alt-2.svg",
  3787. extra: 706/681,
  3788. bottom: 11/717
  3789. }
  3790. },
  3791. pawAlt: {
  3792. height: math.unit(1, "feet"),
  3793. name: "Paw (Alt)",
  3794. image: {
  3795. source: "./media/characters/shingo/paw-alt.svg"
  3796. }
  3797. },
  3798. },
  3799. [
  3800. {
  3801. name: "Micro",
  3802. height: math.unit(4, "inches")
  3803. },
  3804. {
  3805. name: "Normal",
  3806. height: math.unit(6, "feet"),
  3807. default: true
  3808. },
  3809. {
  3810. name: "Macro",
  3811. height: math.unit(108, "feet")
  3812. },
  3813. {
  3814. name: "Macro+",
  3815. height: math.unit(1500, "feet")
  3816. },
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3821. {
  3822. side: {
  3823. height: math.unit(6, "feet"),
  3824. weight: math.unit(75, "kg"),
  3825. name: "Side",
  3826. image: {
  3827. source: "./media/characters/aigey/side.svg"
  3828. }
  3829. },
  3830. },
  3831. [
  3832. {
  3833. name: "Macro",
  3834. height: math.unit(200, "feet"),
  3835. default: true
  3836. },
  3837. {
  3838. name: "Megamacro",
  3839. height: math.unit(100, "miles")
  3840. },
  3841. ]
  3842. )
  3843. )
  3844. characterMakers.push(() => makeCharacter(
  3845. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3846. {
  3847. front: {
  3848. height: math.unit(5 + 5 / 12, "feet"),
  3849. weight: math.unit(75, "kg"),
  3850. name: "Front",
  3851. image: {
  3852. source: "./media/characters/natasha/front.svg",
  3853. extra: 859 / 824,
  3854. bottom: 23 / 879.6
  3855. }
  3856. },
  3857. frontNsfw: {
  3858. height: math.unit(5 + 5 / 12, "feet"),
  3859. weight: math.unit(75, "kg"),
  3860. name: "Front (NSFW)",
  3861. image: {
  3862. source: "./media/characters/natasha/front-nsfw.svg",
  3863. extra: 859 / 824,
  3864. bottom: 23 / 879.6
  3865. }
  3866. },
  3867. frontErect: {
  3868. height: math.unit(5 + 5 / 12, "feet"),
  3869. weight: math.unit(75, "kg"),
  3870. name: "Front (Erect)",
  3871. image: {
  3872. source: "./media/characters/natasha/front-erect.svg",
  3873. extra: 859 / 824,
  3874. bottom: 23 / 879.6
  3875. }
  3876. },
  3877. back: {
  3878. height: math.unit(5 + 5 / 12, "feet"),
  3879. weight: math.unit(75, "kg"),
  3880. name: "Back",
  3881. image: {
  3882. source: "./media/characters/natasha/back.svg",
  3883. extra: 887.9 / 852.6,
  3884. bottom: 9.7 / 896.4
  3885. }
  3886. },
  3887. backAlt: {
  3888. height: math.unit(5 + 5 / 12, "feet"),
  3889. weight: math.unit(75, "kg"),
  3890. name: "Back (Alt)",
  3891. image: {
  3892. source: "./media/characters/natasha/back-alt.svg",
  3893. extra: 1236.7 / 1192,
  3894. bottom: 22.3 / 1258.2
  3895. }
  3896. },
  3897. dick: {
  3898. height: math.unit(1.772, "feet"),
  3899. name: "Dick",
  3900. image: {
  3901. source: "./media/characters/natasha/dick.svg"
  3902. }
  3903. },
  3904. paw: {
  3905. height: math.unit(0.250, "meters"),
  3906. name: "Paw",
  3907. image: {
  3908. source: "./media/characters/natasha/paw.svg"
  3909. },
  3910. extraAttributes: {
  3911. "toeSize": {
  3912. name: "Toe Size",
  3913. power: 2,
  3914. type: "area",
  3915. base: math.unit(0.0024, "m^2")
  3916. },
  3917. "padSize": {
  3918. name: "Pad Size",
  3919. power: 2,
  3920. type: "area",
  3921. base: math.unit(0.00889, "m^2")
  3922. },
  3923. "pawSize": {
  3924. name: "Paw Size",
  3925. power: 2,
  3926. type: "area",
  3927. base: math.unit(0.023667, "m^2")
  3928. },
  3929. }
  3930. },
  3931. },
  3932. [
  3933. {
  3934. name: "Shortstack",
  3935. height: math.unit(3, "feet"),
  3936. default: true
  3937. },
  3938. {
  3939. name: "Normal",
  3940. height: math.unit(5 + 5 / 12, "feet")
  3941. },
  3942. {
  3943. name: "Large",
  3944. height: math.unit(12, "feet")
  3945. },
  3946. {
  3947. name: "Macro",
  3948. height: math.unit(100, "feet")
  3949. },
  3950. {
  3951. name: "Macro+",
  3952. height: math.unit(260, "feet")
  3953. },
  3954. {
  3955. name: "Macro++",
  3956. height: math.unit(1, "mile")
  3957. },
  3958. ]
  3959. ))
  3960. characterMakers.push(() => makeCharacter(
  3961. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3962. {
  3963. front: {
  3964. height: math.unit(6, "feet"),
  3965. weight: math.unit(75, "kg"),
  3966. name: "Front",
  3967. image: {
  3968. source: "./media/characters/malik/front.svg",
  3969. extra: 1750/1561,
  3970. bottom: 80/1830
  3971. },
  3972. extraAttributes: {
  3973. "toeSize": {
  3974. name: "Toe Size",
  3975. power: 2,
  3976. type: "area",
  3977. base: math.unit(0.0159, "m^2")
  3978. },
  3979. "pawSize": {
  3980. name: "Paw Size",
  3981. power: 2,
  3982. type: "area",
  3983. base: math.unit(0.09834, "m^2")
  3984. },
  3985. }
  3986. },
  3987. side: {
  3988. height: math.unit(6, "feet"),
  3989. weight: math.unit(75, "kg"),
  3990. name: "Side",
  3991. image: {
  3992. source: "./media/characters/malik/side.svg",
  3993. extra: 1802/1685,
  3994. bottom: 42/1844
  3995. },
  3996. extraAttributes: {
  3997. "toeSize": {
  3998. name: "Toe Size",
  3999. power: 2,
  4000. type: "area",
  4001. base: math.unit(0.0159, "m^2")
  4002. },
  4003. "pawSize": {
  4004. name: "Paw Size",
  4005. power: 2,
  4006. type: "area",
  4007. base: math.unit(0.09834, "m^2")
  4008. },
  4009. }
  4010. },
  4011. back: {
  4012. height: math.unit(6, "feet"),
  4013. weight: math.unit(75, "kg"),
  4014. name: "Back",
  4015. image: {
  4016. source: "./media/characters/malik/back.svg",
  4017. extra: 1803/1607,
  4018. bottom: 33/1836
  4019. },
  4020. extraAttributes: {
  4021. "toeSize": {
  4022. name: "Toe Size",
  4023. power: 2,
  4024. type: "area",
  4025. base: math.unit(0.0159, "m^2")
  4026. },
  4027. "pawSize": {
  4028. name: "Paw Size",
  4029. power: 2,
  4030. type: "area",
  4031. base: math.unit(0.09834, "m^2")
  4032. },
  4033. }
  4034. },
  4035. },
  4036. [
  4037. {
  4038. name: "Macro",
  4039. height: math.unit(156, "feet"),
  4040. default: true
  4041. },
  4042. {
  4043. name: "Macro+",
  4044. height: math.unit(1188, "feet")
  4045. },
  4046. ]
  4047. ))
  4048. characterMakers.push(() => makeCharacter(
  4049. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4050. {
  4051. front: {
  4052. height: math.unit(6, "feet"),
  4053. weight: math.unit(75, "kg"),
  4054. name: "Front",
  4055. image: {
  4056. source: "./media/characters/sefer/front.svg",
  4057. extra: 848 / 659,
  4058. bottom: 28.3 / 876.442
  4059. }
  4060. },
  4061. back: {
  4062. height: math.unit(6, "feet"),
  4063. weight: math.unit(75, "kg"),
  4064. name: "Back",
  4065. image: {
  4066. source: "./media/characters/sefer/back.svg",
  4067. extra: 864 / 695,
  4068. bottom: 10 / 871
  4069. }
  4070. },
  4071. frontDressed: {
  4072. height: math.unit(6, "feet"),
  4073. weight: math.unit(75, "kg"),
  4074. name: "Dressed",
  4075. image: {
  4076. source: "./media/characters/sefer/dressed.svg",
  4077. extra: 839 / 653,
  4078. bottom: 37.6 / 878
  4079. }
  4080. },
  4081. },
  4082. [
  4083. {
  4084. name: "Normal",
  4085. height: math.unit(6, "feet"),
  4086. default: true
  4087. },
  4088. {
  4089. name: "Big",
  4090. height: math.unit(8, "meters")
  4091. },
  4092. ]
  4093. ))
  4094. characterMakers.push(() => makeCharacter(
  4095. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4096. {
  4097. body: {
  4098. height: math.unit(2.2428, "meter"),
  4099. weight: math.unit(124.738, "kg"),
  4100. name: "Body",
  4101. image: {
  4102. extra: 1225 / 1050,
  4103. source: "./media/characters/north/front.svg"
  4104. }
  4105. }
  4106. },
  4107. [
  4108. {
  4109. name: "Micro",
  4110. height: math.unit(4, "inches")
  4111. },
  4112. {
  4113. name: "Macro",
  4114. height: math.unit(63, "meters")
  4115. },
  4116. {
  4117. name: "Megamacro",
  4118. height: math.unit(101, "miles"),
  4119. default: true
  4120. }
  4121. ]
  4122. ))
  4123. characterMakers.push(() => makeCharacter(
  4124. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4125. {
  4126. angled: {
  4127. height: math.unit(4, "meter"),
  4128. weight: math.unit(150, "kg"),
  4129. name: "Angled",
  4130. image: {
  4131. source: "./media/characters/talan/angled-sfw.svg",
  4132. bottom: 29 / 3734
  4133. }
  4134. },
  4135. angledNsfw: {
  4136. height: math.unit(4, "meter"),
  4137. weight: math.unit(150, "kg"),
  4138. name: "Angled (NSFW)",
  4139. image: {
  4140. source: "./media/characters/talan/angled-nsfw.svg",
  4141. bottom: 29 / 3734
  4142. }
  4143. },
  4144. frontNsfw: {
  4145. height: math.unit(4, "meter"),
  4146. weight: math.unit(150, "kg"),
  4147. name: "Front (NSFW)",
  4148. image: {
  4149. source: "./media/characters/talan/front-nsfw.svg",
  4150. bottom: 29 / 3734
  4151. }
  4152. },
  4153. sideNsfw: {
  4154. height: math.unit(4, "meter"),
  4155. weight: math.unit(150, "kg"),
  4156. name: "Side (NSFW)",
  4157. image: {
  4158. source: "./media/characters/talan/side-nsfw.svg",
  4159. bottom: 29 / 3734
  4160. }
  4161. },
  4162. back: {
  4163. height: math.unit(4, "meter"),
  4164. weight: math.unit(150, "kg"),
  4165. name: "Back",
  4166. image: {
  4167. source: "./media/characters/talan/back.svg"
  4168. }
  4169. },
  4170. dickBottom: {
  4171. height: math.unit(0.621, "meter"),
  4172. name: "Dick (Bottom)",
  4173. image: {
  4174. source: "./media/characters/talan/dick-bottom.svg"
  4175. }
  4176. },
  4177. dickTop: {
  4178. height: math.unit(0.621, "meter"),
  4179. name: "Dick (Top)",
  4180. image: {
  4181. source: "./media/characters/talan/dick-top.svg"
  4182. }
  4183. },
  4184. dickSide: {
  4185. height: math.unit(0.305, "meter"),
  4186. name: "Dick (Side)",
  4187. image: {
  4188. source: "./media/characters/talan/dick-side.svg"
  4189. }
  4190. },
  4191. dickFront: {
  4192. height: math.unit(0.305, "meter"),
  4193. name: "Dick (Front)",
  4194. image: {
  4195. source: "./media/characters/talan/dick-front.svg"
  4196. }
  4197. },
  4198. },
  4199. [
  4200. {
  4201. name: "Normal",
  4202. height: math.unit(4, "meters")
  4203. },
  4204. {
  4205. name: "Macro",
  4206. height: math.unit(100, "meters")
  4207. },
  4208. {
  4209. name: "Megamacro",
  4210. height: math.unit(2, "miles"),
  4211. default: true
  4212. },
  4213. {
  4214. name: "Gigamacro",
  4215. height: math.unit(5000, "miles")
  4216. },
  4217. {
  4218. name: "Teramacro",
  4219. height: math.unit(100, "parsecs")
  4220. }
  4221. ]
  4222. ))
  4223. characterMakers.push(() => makeCharacter(
  4224. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4225. {
  4226. front: {
  4227. height: math.unit(2, "meter"),
  4228. weight: math.unit(90, "kg"),
  4229. name: "Front",
  4230. image: {
  4231. source: "./media/characters/gael'rathus/front.svg"
  4232. }
  4233. },
  4234. frontAlt: {
  4235. height: math.unit(2, "meter"),
  4236. weight: math.unit(90, "kg"),
  4237. name: "Front (alt)",
  4238. image: {
  4239. source: "./media/characters/gael'rathus/front-alt.svg"
  4240. }
  4241. },
  4242. frontAlt2: {
  4243. height: math.unit(2, "meter"),
  4244. weight: math.unit(90, "kg"),
  4245. name: "Front (alt 2)",
  4246. image: {
  4247. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4248. }
  4249. }
  4250. },
  4251. [
  4252. {
  4253. name: "Normal",
  4254. height: math.unit(9, "feet"),
  4255. default: true
  4256. },
  4257. {
  4258. name: "Large",
  4259. height: math.unit(25, "feet")
  4260. },
  4261. {
  4262. name: "Macro",
  4263. height: math.unit(0.25, "miles")
  4264. },
  4265. {
  4266. name: "Megamacro",
  4267. height: math.unit(10, "miles")
  4268. }
  4269. ]
  4270. ))
  4271. characterMakers.push(() => makeCharacter(
  4272. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4273. {
  4274. side: {
  4275. height: math.unit(2, "meter"),
  4276. weight: math.unit(140, "kg"),
  4277. name: "Side",
  4278. image: {
  4279. source: "./media/characters/sosha/side.svg",
  4280. extra: 1170/1006,
  4281. bottom: 94/1264
  4282. }
  4283. },
  4284. maw: {
  4285. height: math.unit(2.87, "feet"),
  4286. name: "Maw",
  4287. image: {
  4288. source: "./media/characters/sosha/maw.svg",
  4289. extra: 966/865,
  4290. bottom: 0/966
  4291. }
  4292. },
  4293. cooch: {
  4294. height: math.unit(5.6, "feet"),
  4295. name: "Cooch",
  4296. image: {
  4297. source: "./media/characters/sosha/cooch.svg"
  4298. }
  4299. },
  4300. },
  4301. [
  4302. {
  4303. name: "Normal",
  4304. height: math.unit(12, "feet"),
  4305. default: true
  4306. }
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4311. {
  4312. side: {
  4313. height: math.unit(5 + 5 / 12, "feet"),
  4314. weight: math.unit(170, "kg"),
  4315. name: "Side",
  4316. image: {
  4317. source: "./media/characters/runnola/side.svg",
  4318. extra: 741 / 448,
  4319. bottom: 0.05
  4320. }
  4321. },
  4322. },
  4323. [
  4324. {
  4325. name: "Small",
  4326. height: math.unit(3, "feet")
  4327. },
  4328. {
  4329. name: "Normal",
  4330. height: math.unit(5 + 5 / 12, "feet"),
  4331. default: true
  4332. },
  4333. {
  4334. name: "Big",
  4335. height: math.unit(10, "feet")
  4336. },
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4341. {
  4342. front: {
  4343. height: math.unit(2, "meter"),
  4344. weight: math.unit(50, "kg"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/kurribird/front.svg",
  4348. bottom: 0.015
  4349. }
  4350. },
  4351. frontAlt: {
  4352. height: math.unit(1.5, "meter"),
  4353. weight: math.unit(50, "kg"),
  4354. name: "Front (Alt)",
  4355. image: {
  4356. source: "./media/characters/kurribird/front-alt.svg",
  4357. extra: 1.45
  4358. }
  4359. },
  4360. },
  4361. [
  4362. {
  4363. name: "Normal",
  4364. height: math.unit(7, "feet")
  4365. },
  4366. {
  4367. name: "Big",
  4368. height: math.unit(12, "feet"),
  4369. default: true
  4370. },
  4371. {
  4372. name: "Macro",
  4373. height: math.unit(1500, "feet")
  4374. },
  4375. {
  4376. name: "Megamacro",
  4377. height: math.unit(2, "miles")
  4378. }
  4379. ]
  4380. ))
  4381. characterMakers.push(() => makeCharacter(
  4382. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4383. {
  4384. front: {
  4385. height: math.unit(2, "meter"),
  4386. weight: math.unit(80, "kg"),
  4387. name: "Front",
  4388. image: {
  4389. source: "./media/characters/elbial/front.svg",
  4390. extra: 1643 / 1556,
  4391. bottom: 60.2 / 1696
  4392. }
  4393. },
  4394. side: {
  4395. height: math.unit(2, "meter"),
  4396. weight: math.unit(80, "kg"),
  4397. name: "Side",
  4398. image: {
  4399. source: "./media/characters/elbial/side.svg",
  4400. extra: 1601/1528,
  4401. bottom: 97/1698
  4402. }
  4403. },
  4404. back: {
  4405. height: math.unit(2, "meter"),
  4406. weight: math.unit(80, "kg"),
  4407. name: "Back",
  4408. image: {
  4409. source: "./media/characters/elbial/back.svg",
  4410. extra: 1653/1569,
  4411. bottom: 20/1673
  4412. }
  4413. },
  4414. frontDressed: {
  4415. height: math.unit(2, "meter"),
  4416. weight: math.unit(80, "kg"),
  4417. name: "Front (Dressed)",
  4418. image: {
  4419. source: "./media/characters/elbial/front-dressed.svg",
  4420. extra: 1638/1569,
  4421. bottom: 70/1708
  4422. }
  4423. },
  4424. genitals: {
  4425. height: math.unit(2 / 3.367, "meter"),
  4426. name: "Genitals",
  4427. image: {
  4428. source: "./media/characters/elbial/genitals.svg"
  4429. }
  4430. },
  4431. },
  4432. [
  4433. {
  4434. name: "Large",
  4435. height: math.unit(100, "feet")
  4436. },
  4437. {
  4438. name: "Macro",
  4439. height: math.unit(500, "feet"),
  4440. default: true
  4441. },
  4442. {
  4443. name: "Megamacro",
  4444. height: math.unit(10, "miles")
  4445. },
  4446. {
  4447. name: "Gigamacro",
  4448. height: math.unit(25000, "miles")
  4449. },
  4450. {
  4451. name: "Full-Size",
  4452. height: math.unit(8000000, "gigaparsecs")
  4453. }
  4454. ]
  4455. ))
  4456. characterMakers.push(() => makeCharacter(
  4457. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4458. {
  4459. front: {
  4460. height: math.unit(2, "meter"),
  4461. weight: math.unit(60, "kg"),
  4462. name: "Front",
  4463. image: {
  4464. source: "./media/characters/noah/front.svg",
  4465. extra: 1383/1313,
  4466. bottom: 104/1487
  4467. }
  4468. },
  4469. hand: {
  4470. height: math.unit(0.6, "feet"),
  4471. name: "Hand",
  4472. image: {
  4473. source: "./media/characters/noah/hand.svg"
  4474. }
  4475. },
  4476. talons: {
  4477. height: math.unit(1.385, "feet"),
  4478. name: "Talons",
  4479. image: {
  4480. source: "./media/characters/noah/talons.svg"
  4481. }
  4482. },
  4483. beak: {
  4484. height: math.unit(0.43, "feet"),
  4485. name: "Beak",
  4486. image: {
  4487. source: "./media/characters/noah/beak.svg"
  4488. }
  4489. },
  4490. collar: {
  4491. height: math.unit(0.88, "feet"),
  4492. name: "Collar",
  4493. image: {
  4494. source: "./media/characters/noah/collar.svg"
  4495. }
  4496. },
  4497. eyeNarrow: {
  4498. height: math.unit(0.18, "feet"),
  4499. name: "Eye (Narrow)",
  4500. image: {
  4501. source: "./media/characters/noah/eye-narrow.svg"
  4502. }
  4503. },
  4504. eyeNormal: {
  4505. height: math.unit(0.18, "feet"),
  4506. name: "Eye (Normal)",
  4507. image: {
  4508. source: "./media/characters/noah/eye-normal.svg"
  4509. }
  4510. },
  4511. eyeWide: {
  4512. height: math.unit(0.18, "feet"),
  4513. name: "Eye (Wide)",
  4514. image: {
  4515. source: "./media/characters/noah/eye-wide.svg"
  4516. }
  4517. },
  4518. ear: {
  4519. height: math.unit(0.64, "feet"),
  4520. name: "Ear",
  4521. image: {
  4522. source: "./media/characters/noah/ear.svg"
  4523. }
  4524. },
  4525. },
  4526. [
  4527. {
  4528. name: "Large",
  4529. height: math.unit(50, "feet")
  4530. },
  4531. {
  4532. name: "Macro",
  4533. height: math.unit(750, "feet"),
  4534. default: true
  4535. },
  4536. {
  4537. name: "Megamacro",
  4538. height: math.unit(50, "miles")
  4539. },
  4540. {
  4541. name: "Gigamacro",
  4542. height: math.unit(100000, "miles")
  4543. },
  4544. {
  4545. name: "Full-Size",
  4546. height: math.unit(3000000000, "miles")
  4547. }
  4548. ]
  4549. ))
  4550. characterMakers.push(() => makeCharacter(
  4551. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4552. {
  4553. front: {
  4554. height: math.unit(2, "meter"),
  4555. weight: math.unit(80, "kg"),
  4556. name: "Front",
  4557. image: {
  4558. source: "./media/characters/natalya/front.svg"
  4559. }
  4560. },
  4561. back: {
  4562. height: math.unit(2, "meter"),
  4563. weight: math.unit(80, "kg"),
  4564. name: "Back",
  4565. image: {
  4566. source: "./media/characters/natalya/back.svg"
  4567. }
  4568. }
  4569. },
  4570. [
  4571. {
  4572. name: "Normal",
  4573. height: math.unit(150, "feet"),
  4574. default: true
  4575. },
  4576. {
  4577. name: "Megamacro",
  4578. height: math.unit(5, "miles")
  4579. },
  4580. {
  4581. name: "Full-Size",
  4582. height: math.unit(600, "kiloparsecs")
  4583. }
  4584. ]
  4585. ))
  4586. characterMakers.push(() => makeCharacter(
  4587. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4588. {
  4589. front: {
  4590. height: math.unit(2, "meter"),
  4591. weight: math.unit(50, "kg"),
  4592. name: "Front",
  4593. image: {
  4594. source: "./media/characters/erestrebah/front.svg",
  4595. extra: 1262/1162,
  4596. bottom: 96/1358
  4597. }
  4598. },
  4599. back: {
  4600. height: math.unit(2, "meter"),
  4601. weight: math.unit(50, "kg"),
  4602. name: "Back",
  4603. image: {
  4604. source: "./media/characters/erestrebah/back.svg",
  4605. extra: 1257/1139,
  4606. bottom: 13/1270
  4607. }
  4608. },
  4609. wing: {
  4610. height: math.unit(2, "meter"),
  4611. weight: math.unit(50, "kg"),
  4612. name: "Wing",
  4613. image: {
  4614. source: "./media/characters/erestrebah/wing.svg",
  4615. extra: 1262/1162,
  4616. bottom: 96/1358
  4617. }
  4618. },
  4619. mouth: {
  4620. height: math.unit(0.39, "feet"),
  4621. name: "Mouth",
  4622. image: {
  4623. source: "./media/characters/erestrebah/mouth.svg"
  4624. }
  4625. }
  4626. },
  4627. [
  4628. {
  4629. name: "Normal",
  4630. height: math.unit(10, "feet")
  4631. },
  4632. {
  4633. name: "Large",
  4634. height: math.unit(50, "feet"),
  4635. default: true
  4636. },
  4637. {
  4638. name: "Macro",
  4639. height: math.unit(300, "feet")
  4640. },
  4641. {
  4642. name: "Macro+",
  4643. height: math.unit(750, "feet")
  4644. },
  4645. {
  4646. name: "Megamacro",
  4647. height: math.unit(3, "miles")
  4648. }
  4649. ]
  4650. ))
  4651. characterMakers.push(() => makeCharacter(
  4652. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4653. {
  4654. front: {
  4655. height: math.unit(2, "meter"),
  4656. weight: math.unit(80, "kg"),
  4657. name: "Front",
  4658. image: {
  4659. source: "./media/characters/jennifer/front.svg",
  4660. bottom: 0.11,
  4661. extra: 1.16
  4662. }
  4663. },
  4664. frontAlt: {
  4665. height: math.unit(2, "meter"),
  4666. weight: math.unit(80, "kg"),
  4667. name: "Front (Alt)",
  4668. image: {
  4669. source: "./media/characters/jennifer/front-alt.svg"
  4670. }
  4671. }
  4672. },
  4673. [
  4674. {
  4675. name: "Canon Height",
  4676. height: math.unit(120, "feet"),
  4677. default: true
  4678. },
  4679. {
  4680. name: "Macro+",
  4681. height: math.unit(300, "feet")
  4682. },
  4683. {
  4684. name: "Megamacro",
  4685. height: math.unit(20000, "feet")
  4686. }
  4687. ]
  4688. ))
  4689. characterMakers.push(() => makeCharacter(
  4690. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4691. {
  4692. front: {
  4693. height: math.unit(2, "meter"),
  4694. weight: math.unit(50, "kg"),
  4695. name: "Front",
  4696. image: {
  4697. source: "./media/characters/kalista/front.svg",
  4698. extra: 1314/1145,
  4699. bottom: 101/1415
  4700. }
  4701. },
  4702. back: {
  4703. height: math.unit(2, "meter"),
  4704. weight: math.unit(50, "kg"),
  4705. name: "Back",
  4706. image: {
  4707. source: "./media/characters/kalista/back.svg",
  4708. extra: 1366 / 1156,
  4709. bottom: 33.9 / 1362.78
  4710. }
  4711. }
  4712. },
  4713. [
  4714. {
  4715. name: "Uncomfortably Small",
  4716. height: math.unit(10, "feet")
  4717. },
  4718. {
  4719. name: "Small",
  4720. height: math.unit(30, "feet")
  4721. },
  4722. {
  4723. name: "Macro",
  4724. height: math.unit(100, "feet"),
  4725. default: true
  4726. },
  4727. {
  4728. name: "Macro+",
  4729. height: math.unit(2000, "feet")
  4730. },
  4731. {
  4732. name: "True Form",
  4733. height: math.unit(8924, "miles")
  4734. }
  4735. ]
  4736. ))
  4737. characterMakers.push(() => makeCharacter(
  4738. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4739. {
  4740. front: {
  4741. height: math.unit(2, "meter"),
  4742. weight: math.unit(120, "kg"),
  4743. name: "Front",
  4744. image: {
  4745. source: "./media/characters/ggv/front.svg"
  4746. }
  4747. },
  4748. side: {
  4749. height: math.unit(2, "meter"),
  4750. weight: math.unit(120, "kg"),
  4751. name: "Side",
  4752. image: {
  4753. source: "./media/characters/ggv/side.svg"
  4754. }
  4755. }
  4756. },
  4757. [
  4758. {
  4759. name: "Extremely Puny",
  4760. height: math.unit(9 + 5 / 12, "feet")
  4761. },
  4762. {
  4763. name: "Horribly Small",
  4764. height: math.unit(47.7, "miles"),
  4765. default: true
  4766. },
  4767. {
  4768. name: "Reasonably Sized",
  4769. height: math.unit(25000, "parsecs")
  4770. },
  4771. {
  4772. name: "Slightly Uncompressed",
  4773. height: math.unit(7.77e31, "parsecs")
  4774. },
  4775. {
  4776. name: "Omniversal",
  4777. height: math.unit(1e300, "meters")
  4778. },
  4779. ]
  4780. ))
  4781. characterMakers.push(() => makeCharacter(
  4782. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4783. {
  4784. front: {
  4785. height: math.unit(2, "meter"),
  4786. weight: math.unit(75, "lb"),
  4787. name: "Front",
  4788. image: {
  4789. source: "./media/characters/napalm/front.svg"
  4790. }
  4791. },
  4792. back: {
  4793. height: math.unit(2, "meter"),
  4794. weight: math.unit(75, "lb"),
  4795. name: "Back",
  4796. image: {
  4797. source: "./media/characters/napalm/back.svg"
  4798. }
  4799. }
  4800. },
  4801. [
  4802. {
  4803. name: "Standard",
  4804. height: math.unit(55, "feet"),
  4805. default: true
  4806. }
  4807. ]
  4808. ))
  4809. characterMakers.push(() => makeCharacter(
  4810. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4811. {
  4812. front: {
  4813. height: math.unit(7 + 5 / 6, "feet"),
  4814. weight: math.unit(325, "lb"),
  4815. name: "Front",
  4816. image: {
  4817. source: "./media/characters/asana/front.svg",
  4818. extra: 1133 / 1060,
  4819. bottom: 15.2 / 1148.6
  4820. }
  4821. },
  4822. back: {
  4823. height: math.unit(7 + 5 / 6, "feet"),
  4824. weight: math.unit(325, "lb"),
  4825. name: "Back",
  4826. image: {
  4827. source: "./media/characters/asana/back.svg",
  4828. extra: 1114 / 1043,
  4829. bottom: 5 / 1120
  4830. }
  4831. },
  4832. dressedDark: {
  4833. height: math.unit(7 + 5 / 6, "feet"),
  4834. weight: math.unit(325, "lb"),
  4835. name: "Dressed (Dark)",
  4836. image: {
  4837. source: "./media/characters/asana/dressed-dark.svg",
  4838. extra: 1133 / 1060,
  4839. bottom: 15.2 / 1148.6
  4840. }
  4841. },
  4842. dressedLight: {
  4843. height: math.unit(7 + 5 / 6, "feet"),
  4844. weight: math.unit(325, "lb"),
  4845. name: "Dressed (Light)",
  4846. image: {
  4847. source: "./media/characters/asana/dressed-light.svg",
  4848. extra: 1133 / 1060,
  4849. bottom: 15.2 / 1148.6
  4850. }
  4851. },
  4852. },
  4853. [
  4854. {
  4855. name: "Standard",
  4856. height: math.unit(7 + 5 / 6, "feet"),
  4857. default: true
  4858. },
  4859. {
  4860. name: "Large",
  4861. height: math.unit(10, "meters")
  4862. },
  4863. {
  4864. name: "Macro",
  4865. height: math.unit(2500, "meters")
  4866. },
  4867. {
  4868. name: "Megamacro",
  4869. height: math.unit(5e6, "meters")
  4870. },
  4871. {
  4872. name: "Examacro",
  4873. height: math.unit(5e12, "lightyears")
  4874. },
  4875. {
  4876. name: "Max Size",
  4877. height: math.unit(1e31, "lightyears")
  4878. }
  4879. ]
  4880. ))
  4881. characterMakers.push(() => makeCharacter(
  4882. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4883. {
  4884. front: {
  4885. height: math.unit(2, "meter"),
  4886. weight: math.unit(60, "kg"),
  4887. name: "Front",
  4888. image: {
  4889. source: "./media/characters/ebony/front.svg",
  4890. bottom: 0.03,
  4891. extra: 1045 / 810 + 0.03
  4892. }
  4893. },
  4894. side: {
  4895. height: math.unit(2, "meter"),
  4896. weight: math.unit(60, "kg"),
  4897. name: "Side",
  4898. image: {
  4899. source: "./media/characters/ebony/side.svg",
  4900. bottom: 0.03,
  4901. extra: 1045 / 810 + 0.03
  4902. }
  4903. },
  4904. back: {
  4905. height: math.unit(2, "meter"),
  4906. weight: math.unit(60, "kg"),
  4907. name: "Back",
  4908. image: {
  4909. source: "./media/characters/ebony/back.svg",
  4910. bottom: 0.01,
  4911. extra: 1045 / 810 + 0.01
  4912. }
  4913. },
  4914. },
  4915. [
  4916. // TODO check why I did this lol
  4917. {
  4918. name: "Standard",
  4919. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4920. default: true
  4921. },
  4922. {
  4923. name: "Macro",
  4924. height: math.unit(200, "feet")
  4925. },
  4926. {
  4927. name: "Gigamacro",
  4928. height: math.unit(13000, "km")
  4929. }
  4930. ]
  4931. ))
  4932. characterMakers.push(() => makeCharacter(
  4933. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4934. {
  4935. front: {
  4936. height: math.unit(6, "feet"),
  4937. weight: math.unit(175, "lb"),
  4938. name: "Front",
  4939. image: {
  4940. source: "./media/characters/mountain/front.svg",
  4941. extra: 972 / 955,
  4942. bottom: 64 / 1036.6
  4943. }
  4944. },
  4945. back: {
  4946. height: math.unit(6, "feet"),
  4947. weight: math.unit(175, "lb"),
  4948. name: "Back",
  4949. image: {
  4950. source: "./media/characters/mountain/back.svg",
  4951. extra: 970 / 950,
  4952. bottom: 28.25 / 999
  4953. }
  4954. },
  4955. },
  4956. [
  4957. {
  4958. name: "Large",
  4959. height: math.unit(20, "meters")
  4960. },
  4961. {
  4962. name: "Macro",
  4963. height: math.unit(300, "meters")
  4964. },
  4965. {
  4966. name: "Gigamacro",
  4967. height: math.unit(10000, "km"),
  4968. default: true
  4969. },
  4970. {
  4971. name: "Examacro",
  4972. height: math.unit(10e9, "lightyears")
  4973. }
  4974. ]
  4975. ))
  4976. characterMakers.push(() => makeCharacter(
  4977. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4978. {
  4979. front: {
  4980. height: math.unit(8, "feet"),
  4981. weight: math.unit(500, "lb"),
  4982. name: "Front",
  4983. image: {
  4984. source: "./media/characters/rick/front.svg"
  4985. }
  4986. }
  4987. },
  4988. [
  4989. {
  4990. name: "Normal",
  4991. height: math.unit(8, "feet"),
  4992. default: true
  4993. },
  4994. {
  4995. name: "Macro",
  4996. height: math.unit(5, "km")
  4997. }
  4998. ]
  4999. ))
  5000. characterMakers.push(() => makeCharacter(
  5001. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5002. {
  5003. front: {
  5004. height: math.unit(8, "feet"),
  5005. weight: math.unit(120, "lb"),
  5006. name: "Front",
  5007. image: {
  5008. source: "./media/characters/ona/front.svg"
  5009. }
  5010. },
  5011. frontAlt: {
  5012. height: math.unit(8, "feet"),
  5013. weight: math.unit(120, "lb"),
  5014. name: "Front (Alt)",
  5015. image: {
  5016. source: "./media/characters/ona/front-alt.svg"
  5017. }
  5018. },
  5019. back: {
  5020. height: math.unit(8, "feet"),
  5021. weight: math.unit(120, "lb"),
  5022. name: "Back",
  5023. image: {
  5024. source: "./media/characters/ona/back.svg"
  5025. }
  5026. },
  5027. foot: {
  5028. height: math.unit(1.1, "feet"),
  5029. name: "Foot",
  5030. image: {
  5031. source: "./media/characters/ona/foot.svg"
  5032. }
  5033. }
  5034. },
  5035. [
  5036. {
  5037. name: "Megamacro",
  5038. height: math.unit(70, "km"),
  5039. default: true
  5040. },
  5041. {
  5042. name: "Gigamacro",
  5043. height: math.unit(681818, "miles")
  5044. },
  5045. {
  5046. name: "Examacro",
  5047. height: math.unit(3800000, "lightyears")
  5048. },
  5049. ]
  5050. ))
  5051. characterMakers.push(() => makeCharacter(
  5052. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5053. {
  5054. front: {
  5055. height: math.unit(12, "feet"),
  5056. weight: math.unit(3000, "lb"),
  5057. name: "Front",
  5058. image: {
  5059. source: "./media/characters/mech/front.svg",
  5060. extra: 2900 / 2770,
  5061. bottom: 110 / 3010
  5062. }
  5063. },
  5064. back: {
  5065. height: math.unit(12, "feet"),
  5066. weight: math.unit(3000, "lb"),
  5067. name: "Back",
  5068. image: {
  5069. source: "./media/characters/mech/back.svg",
  5070. extra: 3011 / 2890,
  5071. bottom: 94 / 3105
  5072. }
  5073. },
  5074. maw: {
  5075. height: math.unit(3.07, "feet"),
  5076. name: "Maw",
  5077. image: {
  5078. source: "./media/characters/mech/maw.svg"
  5079. }
  5080. },
  5081. head: {
  5082. height: math.unit(3.07, "feet"),
  5083. name: "Head",
  5084. image: {
  5085. source: "./media/characters/mech/head.svg"
  5086. }
  5087. },
  5088. dick: {
  5089. height: math.unit(1.43, "feet"),
  5090. name: "Dick",
  5091. image: {
  5092. source: "./media/characters/mech/dick.svg"
  5093. }
  5094. },
  5095. },
  5096. [
  5097. {
  5098. name: "Normal",
  5099. height: math.unit(12, "feet")
  5100. },
  5101. {
  5102. name: "Macro",
  5103. height: math.unit(300, "feet"),
  5104. default: true
  5105. },
  5106. {
  5107. name: "Macro+",
  5108. height: math.unit(1500, "feet")
  5109. },
  5110. ]
  5111. ))
  5112. characterMakers.push(() => makeCharacter(
  5113. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5114. {
  5115. front: {
  5116. height: math.unit(1.3, "meter"),
  5117. weight: math.unit(30, "kg"),
  5118. name: "Front",
  5119. image: {
  5120. source: "./media/characters/gregory/front.svg",
  5121. }
  5122. }
  5123. },
  5124. [
  5125. {
  5126. name: "Normal",
  5127. height: math.unit(1.3, "meter"),
  5128. default: true
  5129. },
  5130. {
  5131. name: "Macro",
  5132. height: math.unit(20, "meter")
  5133. }
  5134. ]
  5135. ))
  5136. characterMakers.push(() => makeCharacter(
  5137. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5138. {
  5139. front: {
  5140. height: math.unit(2.8, "meter"),
  5141. weight: math.unit(200, "kg"),
  5142. name: "Front",
  5143. image: {
  5144. source: "./media/characters/elory/front.svg",
  5145. }
  5146. }
  5147. },
  5148. [
  5149. {
  5150. name: "Normal",
  5151. height: math.unit(2.8, "meter"),
  5152. default: true
  5153. },
  5154. {
  5155. name: "Macro",
  5156. height: math.unit(38, "meter")
  5157. }
  5158. ]
  5159. ))
  5160. characterMakers.push(() => makeCharacter(
  5161. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5162. {
  5163. front: {
  5164. height: math.unit(470, "feet"),
  5165. weight: math.unit(924, "tons"),
  5166. name: "Front",
  5167. image: {
  5168. source: "./media/characters/angelpatamon/front.svg",
  5169. }
  5170. }
  5171. },
  5172. [
  5173. {
  5174. name: "Normal",
  5175. height: math.unit(470, "feet"),
  5176. default: true
  5177. },
  5178. {
  5179. name: "Deity Size I",
  5180. height: math.unit(28651.2, "km")
  5181. },
  5182. {
  5183. name: "Deity Size II",
  5184. height: math.unit(171907.2, "km")
  5185. }
  5186. ]
  5187. ))
  5188. characterMakers.push(() => makeCharacter(
  5189. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5190. {
  5191. side: {
  5192. height: math.unit(7.2, "meter"),
  5193. weight: math.unit(8.2, "tons"),
  5194. name: "Side",
  5195. image: {
  5196. source: "./media/characters/cryae/side.svg",
  5197. extra: 3500 / 1500
  5198. }
  5199. }
  5200. },
  5201. [
  5202. {
  5203. name: "Normal",
  5204. height: math.unit(7.2, "meter"),
  5205. default: true
  5206. }
  5207. ]
  5208. ))
  5209. characterMakers.push(() => makeCharacter(
  5210. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5211. {
  5212. front: {
  5213. height: math.unit(6, "feet"),
  5214. weight: math.unit(175, "lb"),
  5215. name: "Front",
  5216. image: {
  5217. source: "./media/characters/xera/front.svg",
  5218. extra: 2377 / 1972,
  5219. bottom: 75.5 / 2452
  5220. }
  5221. },
  5222. side: {
  5223. height: math.unit(6, "feet"),
  5224. weight: math.unit(175, "lb"),
  5225. name: "Side",
  5226. image: {
  5227. source: "./media/characters/xera/side.svg",
  5228. extra: 2345 / 2019,
  5229. bottom: 39.7 / 2384
  5230. }
  5231. },
  5232. back: {
  5233. height: math.unit(6, "feet"),
  5234. weight: math.unit(175, "lb"),
  5235. name: "Back",
  5236. image: {
  5237. source: "./media/characters/xera/back.svg",
  5238. extra: 2095 / 1984,
  5239. bottom: 67 / 2166
  5240. }
  5241. },
  5242. },
  5243. [
  5244. {
  5245. name: "Small",
  5246. height: math.unit(10, "feet")
  5247. },
  5248. {
  5249. name: "Macro",
  5250. height: math.unit(500, "meters"),
  5251. default: true
  5252. },
  5253. {
  5254. name: "Macro+",
  5255. height: math.unit(10, "km")
  5256. },
  5257. {
  5258. name: "Gigamacro",
  5259. height: math.unit(25000, "km")
  5260. },
  5261. {
  5262. name: "Teramacro",
  5263. height: math.unit(3e6, "km")
  5264. }
  5265. ]
  5266. ))
  5267. characterMakers.push(() => makeCharacter(
  5268. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5269. {
  5270. front: {
  5271. height: math.unit(6, "feet"),
  5272. weight: math.unit(175, "lb"),
  5273. name: "Front",
  5274. image: {
  5275. source: "./media/characters/nebula/front.svg",
  5276. extra: 2566 / 2362,
  5277. bottom: 81 / 2644
  5278. }
  5279. }
  5280. },
  5281. [
  5282. {
  5283. name: "Small",
  5284. height: math.unit(4.5, "meters")
  5285. },
  5286. {
  5287. name: "Macro",
  5288. height: math.unit(1500, "meters"),
  5289. default: true
  5290. },
  5291. {
  5292. name: "Megamacro",
  5293. height: math.unit(150, "km")
  5294. },
  5295. {
  5296. name: "Gigamacro",
  5297. height: math.unit(27000, "km")
  5298. }
  5299. ]
  5300. ))
  5301. characterMakers.push(() => makeCharacter(
  5302. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5303. {
  5304. front: {
  5305. height: math.unit(6, "feet"),
  5306. weight: math.unit(225, "lb"),
  5307. name: "Front",
  5308. image: {
  5309. source: "./media/characters/abysgar/front.svg",
  5310. extra: 1739/1614,
  5311. bottom: 71/1810
  5312. }
  5313. },
  5314. frontNsfw: {
  5315. height: math.unit(6, "feet"),
  5316. weight: math.unit(225, "lb"),
  5317. name: "Front (NSFW)",
  5318. image: {
  5319. source: "./media/characters/abysgar/front-nsfw.svg",
  5320. extra: 1739/1614,
  5321. bottom: 71/1810
  5322. }
  5323. },
  5324. back: {
  5325. height: math.unit(4.6, "feet"),
  5326. weight: math.unit(225, "lb"),
  5327. name: "Back",
  5328. image: {
  5329. source: "./media/characters/abysgar/back.svg",
  5330. extra: 1384/1327,
  5331. bottom: 0/1384
  5332. }
  5333. },
  5334. head: {
  5335. height: math.unit(1.25, "feet"),
  5336. name: "Head",
  5337. image: {
  5338. source: "./media/characters/abysgar/head.svg",
  5339. extra: 669/569,
  5340. bottom: 0/669
  5341. }
  5342. },
  5343. },
  5344. [
  5345. {
  5346. name: "Small",
  5347. height: math.unit(4.5, "meters")
  5348. },
  5349. {
  5350. name: "Macro",
  5351. height: math.unit(1250, "meters"),
  5352. default: true
  5353. },
  5354. {
  5355. name: "Megamacro",
  5356. height: math.unit(125, "km")
  5357. },
  5358. {
  5359. name: "Gigamacro",
  5360. height: math.unit(26000, "km")
  5361. }
  5362. ]
  5363. ))
  5364. characterMakers.push(() => makeCharacter(
  5365. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5366. {
  5367. front: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(180, "lb"),
  5370. name: "Front",
  5371. image: {
  5372. source: "./media/characters/yakuz/front.svg"
  5373. }
  5374. }
  5375. },
  5376. [
  5377. {
  5378. name: "Small",
  5379. height: math.unit(5, "meters")
  5380. },
  5381. {
  5382. name: "Macro",
  5383. height: math.unit(1500, "meters"),
  5384. default: true
  5385. },
  5386. {
  5387. name: "Megamacro",
  5388. height: math.unit(200, "km")
  5389. },
  5390. {
  5391. name: "Gigamacro",
  5392. height: math.unit(100000, "km")
  5393. }
  5394. ]
  5395. ))
  5396. characterMakers.push(() => makeCharacter(
  5397. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5398. {
  5399. front: {
  5400. height: math.unit(6, "feet"),
  5401. weight: math.unit(175, "lb"),
  5402. name: "Front",
  5403. image: {
  5404. source: "./media/characters/mirova/front.svg",
  5405. extra: 3334 / 3071,
  5406. bottom: 42 / 3375.6
  5407. }
  5408. }
  5409. },
  5410. [
  5411. {
  5412. name: "Small",
  5413. height: math.unit(5, "meters")
  5414. },
  5415. {
  5416. name: "Macro",
  5417. height: math.unit(900, "meters"),
  5418. default: true
  5419. },
  5420. {
  5421. name: "Megamacro",
  5422. height: math.unit(135, "km")
  5423. },
  5424. {
  5425. name: "Gigamacro",
  5426. height: math.unit(20000, "km")
  5427. }
  5428. ]
  5429. ))
  5430. characterMakers.push(() => makeCharacter(
  5431. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5432. {
  5433. side: {
  5434. height: math.unit(28.35, "feet"),
  5435. weight: math.unit(99.75, "tons"),
  5436. name: "Side",
  5437. image: {
  5438. source: "./media/characters/asana-mech/side.svg",
  5439. extra: 923 / 699,
  5440. bottom: 50 / 975
  5441. }
  5442. },
  5443. chaingun: {
  5444. height: math.unit(7, "feet"),
  5445. weight: math.unit(2400, "lb"),
  5446. name: "Chaingun",
  5447. image: {
  5448. source: "./media/characters/asana-mech/chaingun.svg"
  5449. }
  5450. },
  5451. laser: {
  5452. height: math.unit(7.12, "feet"),
  5453. weight: math.unit(2000, "lb"),
  5454. name: "Laser",
  5455. image: {
  5456. source: "./media/characters/asana-mech/laser.svg"
  5457. }
  5458. },
  5459. },
  5460. [
  5461. {
  5462. name: "Normal",
  5463. height: math.unit(28.35, "feet"),
  5464. default: true
  5465. },
  5466. {
  5467. name: "Macro",
  5468. height: math.unit(2500, "feet")
  5469. },
  5470. {
  5471. name: "Megamacro",
  5472. height: math.unit(25, "miles")
  5473. },
  5474. {
  5475. name: "Examacro",
  5476. height: math.unit(6e8, "lightyears")
  5477. },
  5478. ]
  5479. ))
  5480. characterMakers.push(() => makeCharacter(
  5481. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5482. {
  5483. front: {
  5484. height: math.unit(5, "meters"),
  5485. weight: math.unit(1000, "kg"),
  5486. name: "Front",
  5487. image: {
  5488. source: "./media/characters/asche/front.svg",
  5489. extra: 1258 / 1190,
  5490. bottom: 47 / 1305
  5491. }
  5492. },
  5493. frontUnderwear: {
  5494. height: math.unit(5, "meters"),
  5495. weight: math.unit(1000, "kg"),
  5496. name: "Front (Underwear)",
  5497. image: {
  5498. source: "./media/characters/asche/front-underwear.svg",
  5499. extra: 1258 / 1190,
  5500. bottom: 47 / 1305
  5501. }
  5502. },
  5503. frontDressed: {
  5504. height: math.unit(5, "meters"),
  5505. weight: math.unit(1000, "kg"),
  5506. name: "Front (Dressed)",
  5507. image: {
  5508. source: "./media/characters/asche/front-dressed.svg",
  5509. extra: 1258 / 1190,
  5510. bottom: 47 / 1305
  5511. }
  5512. },
  5513. frontArmor: {
  5514. height: math.unit(5, "meters"),
  5515. weight: math.unit(1000, "kg"),
  5516. name: "Front (Armored)",
  5517. image: {
  5518. source: "./media/characters/asche/front-armored.svg",
  5519. extra: 1374 / 1308,
  5520. bottom: 23 / 1397
  5521. }
  5522. },
  5523. mp724: {
  5524. height: math.unit(0.96, "meters"),
  5525. weight: math.unit(38, "kg"),
  5526. name: "H&K MP724",
  5527. image: {
  5528. source: "./media/characters/asche/h&k-mp724.svg"
  5529. }
  5530. },
  5531. side: {
  5532. height: math.unit(5, "meters"),
  5533. weight: math.unit(1000, "kg"),
  5534. name: "Side",
  5535. image: {
  5536. source: "./media/characters/asche/side.svg",
  5537. extra: 1717 / 1609,
  5538. bottom: 0.005
  5539. }
  5540. },
  5541. back: {
  5542. height: math.unit(5, "meters"),
  5543. weight: math.unit(1000, "kg"),
  5544. name: "Back",
  5545. image: {
  5546. source: "./media/characters/asche/back.svg",
  5547. extra: 1570 / 1501
  5548. }
  5549. },
  5550. },
  5551. [
  5552. {
  5553. name: "DEFCON 5",
  5554. height: math.unit(5, "meters")
  5555. },
  5556. {
  5557. name: "DEFCON 4",
  5558. height: math.unit(500, "meters"),
  5559. default: true
  5560. },
  5561. {
  5562. name: "DEFCON 3",
  5563. height: math.unit(5, "km")
  5564. },
  5565. {
  5566. name: "DEFCON 2",
  5567. height: math.unit(500, "km")
  5568. },
  5569. {
  5570. name: "DEFCON 1",
  5571. height: math.unit(500000, "km")
  5572. },
  5573. {
  5574. name: "DEFCON 0",
  5575. height: math.unit(3, "gigaparsecs")
  5576. },
  5577. ]
  5578. ))
  5579. characterMakers.push(() => makeCharacter(
  5580. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5581. {
  5582. front: {
  5583. height: math.unit(7, "feet"),
  5584. weight: math.unit(92.7, "kg"),
  5585. name: "Front",
  5586. image: {
  5587. source: "./media/characters/gale/front.svg",
  5588. extra: 977/919,
  5589. bottom: 105/1082
  5590. }
  5591. },
  5592. side: {
  5593. height: math.unit(6.7, "feet"),
  5594. weight: math.unit(92.7, "kg"),
  5595. name: "Side",
  5596. image: {
  5597. source: "./media/characters/gale/side.svg",
  5598. extra: 978/922,
  5599. bottom: 140/1118
  5600. }
  5601. },
  5602. back: {
  5603. height: math.unit(7, "feet"),
  5604. weight: math.unit(92.7, "kg"),
  5605. name: "Back",
  5606. image: {
  5607. source: "./media/characters/gale/back.svg",
  5608. extra: 966/920,
  5609. bottom: 61/1027
  5610. }
  5611. },
  5612. maw: {
  5613. height: math.unit(2.23, "feet"),
  5614. name: "Maw",
  5615. image: {
  5616. source: "./media/characters/gale/maw.svg"
  5617. }
  5618. },
  5619. foot: {
  5620. height: math.unit(2.1, "feet"),
  5621. name: "Foot",
  5622. image: {
  5623. source: "./media/characters/gale/foot.svg"
  5624. }
  5625. },
  5626. },
  5627. [
  5628. {
  5629. name: "Normal",
  5630. height: math.unit(7, "feet")
  5631. },
  5632. {
  5633. name: "Macro",
  5634. height: math.unit(150, "feet"),
  5635. default: true
  5636. },
  5637. {
  5638. name: "Macro+",
  5639. height: math.unit(300, "feet")
  5640. },
  5641. ]
  5642. ))
  5643. characterMakers.push(() => makeCharacter(
  5644. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5645. {
  5646. front: {
  5647. height: math.unit(5 + 10/12, "feet"),
  5648. weight: math.unit(67, "kg"),
  5649. name: "Front",
  5650. image: {
  5651. source: "./media/characters/draylen/front.svg",
  5652. extra: 832/777,
  5653. bottom: 85/917
  5654. }
  5655. }
  5656. },
  5657. [
  5658. {
  5659. name: "Normal",
  5660. height: math.unit(5 + 10/12, "feet")
  5661. },
  5662. {
  5663. name: "Macro",
  5664. height: math.unit(150, "feet"),
  5665. default: true
  5666. }
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5671. {
  5672. front: {
  5673. height: math.unit(7 + 9 / 12, "feet"),
  5674. weight: math.unit(379, "lbs"),
  5675. name: "Front",
  5676. image: {
  5677. source: "./media/characters/chez/front.svg"
  5678. }
  5679. },
  5680. side: {
  5681. height: math.unit(7 + 9 / 12, "feet"),
  5682. weight: math.unit(379, "lbs"),
  5683. name: "Side",
  5684. image: {
  5685. source: "./media/characters/chez/side.svg"
  5686. }
  5687. }
  5688. },
  5689. [
  5690. {
  5691. name: "Normal",
  5692. height: math.unit(7 + 9 / 12, "feet"),
  5693. default: true
  5694. },
  5695. {
  5696. name: "God King",
  5697. height: math.unit(9750000, "meters")
  5698. }
  5699. ]
  5700. ))
  5701. characterMakers.push(() => makeCharacter(
  5702. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5703. {
  5704. front: {
  5705. height: math.unit(6, "feet"),
  5706. weight: math.unit(275, "lbs"),
  5707. name: "Front",
  5708. image: {
  5709. source: "./media/characters/kaylum/front.svg",
  5710. bottom: 0.01,
  5711. extra: 1166 / 1031
  5712. }
  5713. },
  5714. frontWingless: {
  5715. height: math.unit(6, "feet"),
  5716. weight: math.unit(275, "lbs"),
  5717. name: "Front (Wingless)",
  5718. image: {
  5719. source: "./media/characters/kaylum/front-wingless.svg",
  5720. bottom: 0.01,
  5721. extra: 1117 / 1031
  5722. }
  5723. }
  5724. },
  5725. [
  5726. {
  5727. name: "Normal",
  5728. height: math.unit(3.05, "meters")
  5729. },
  5730. {
  5731. name: "Master",
  5732. height: math.unit(5.5, "meters")
  5733. },
  5734. {
  5735. name: "Rampage",
  5736. height: math.unit(19, "meters")
  5737. },
  5738. {
  5739. name: "Macro Lite",
  5740. height: math.unit(37, "meters")
  5741. },
  5742. {
  5743. name: "Hyper Predator",
  5744. height: math.unit(61, "meters")
  5745. },
  5746. {
  5747. name: "Macro",
  5748. height: math.unit(138, "meters"),
  5749. default: true
  5750. }
  5751. ]
  5752. ))
  5753. characterMakers.push(() => makeCharacter(
  5754. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5755. {
  5756. front: {
  5757. height: math.unit(5 + 5 / 12, "feet"),
  5758. weight: math.unit(120, "lbs"),
  5759. name: "Front",
  5760. image: {
  5761. source: "./media/characters/geta/front.svg",
  5762. extra: 1003/933,
  5763. bottom: 21/1024
  5764. }
  5765. },
  5766. paw: {
  5767. height: math.unit(0.35, "feet"),
  5768. name: "Paw",
  5769. image: {
  5770. source: "./media/characters/geta/paw.svg"
  5771. }
  5772. },
  5773. },
  5774. [
  5775. {
  5776. name: "Micro",
  5777. height: math.unit(3, "inches"),
  5778. default: true
  5779. },
  5780. {
  5781. name: "Normal",
  5782. height: math.unit(5 + 5 / 12, "feet")
  5783. }
  5784. ]
  5785. ))
  5786. characterMakers.push(() => makeCharacter(
  5787. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5788. {
  5789. front: {
  5790. height: math.unit(6, "feet"),
  5791. weight: math.unit(300, "lbs"),
  5792. name: "Front",
  5793. image: {
  5794. source: "./media/characters/tyrnn/front.svg"
  5795. }
  5796. }
  5797. },
  5798. [
  5799. {
  5800. name: "Main Height",
  5801. height: math.unit(355, "feet"),
  5802. default: true
  5803. },
  5804. {
  5805. name: "Fave. Height",
  5806. height: math.unit(2400, "feet")
  5807. }
  5808. ]
  5809. ))
  5810. characterMakers.push(() => makeCharacter(
  5811. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5812. {
  5813. front: {
  5814. height: math.unit(6, "feet"),
  5815. weight: math.unit(300, "lbs"),
  5816. name: "Front",
  5817. image: {
  5818. source: "./media/characters/appledectomy/front.svg"
  5819. }
  5820. }
  5821. },
  5822. [
  5823. {
  5824. name: "Macro",
  5825. height: math.unit(2500, "feet")
  5826. },
  5827. {
  5828. name: "Megamacro",
  5829. height: math.unit(50, "miles"),
  5830. default: true
  5831. },
  5832. {
  5833. name: "Gigamacro",
  5834. height: math.unit(5000, "miles")
  5835. },
  5836. {
  5837. name: "Teramacro",
  5838. height: math.unit(250000, "miles")
  5839. },
  5840. ]
  5841. ))
  5842. characterMakers.push(() => makeCharacter(
  5843. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5844. {
  5845. front: {
  5846. height: math.unit(6, "feet"),
  5847. weight: math.unit(200, "lbs"),
  5848. name: "Front",
  5849. image: {
  5850. source: "./media/characters/vulpes/front.svg",
  5851. extra: 573 / 543,
  5852. bottom: 0.033
  5853. }
  5854. },
  5855. side: {
  5856. height: math.unit(6, "feet"),
  5857. weight: math.unit(200, "lbs"),
  5858. name: "Side",
  5859. image: {
  5860. source: "./media/characters/vulpes/side.svg",
  5861. extra: 577 / 549,
  5862. bottom: 11 / 588
  5863. }
  5864. },
  5865. back: {
  5866. height: math.unit(6, "feet"),
  5867. weight: math.unit(200, "lbs"),
  5868. name: "Back",
  5869. image: {
  5870. source: "./media/characters/vulpes/back.svg",
  5871. extra: 573 / 549,
  5872. bottom: 20 / 593
  5873. }
  5874. },
  5875. feet: {
  5876. height: math.unit(1.276, "feet"),
  5877. name: "Feet",
  5878. image: {
  5879. source: "./media/characters/vulpes/feet.svg"
  5880. }
  5881. },
  5882. maw: {
  5883. height: math.unit(1.18, "feet"),
  5884. name: "Maw",
  5885. image: {
  5886. source: "./media/characters/vulpes/maw.svg"
  5887. }
  5888. },
  5889. },
  5890. [
  5891. {
  5892. name: "Micro",
  5893. height: math.unit(2, "inches")
  5894. },
  5895. {
  5896. name: "Normal",
  5897. height: math.unit(6.3, "feet")
  5898. },
  5899. {
  5900. name: "Macro",
  5901. height: math.unit(850, "feet")
  5902. },
  5903. {
  5904. name: "Megamacro",
  5905. height: math.unit(7500, "feet"),
  5906. default: true
  5907. },
  5908. {
  5909. name: "Gigamacro",
  5910. height: math.unit(570000, "miles")
  5911. }
  5912. ]
  5913. ))
  5914. characterMakers.push(() => makeCharacter(
  5915. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5916. {
  5917. front: {
  5918. height: math.unit(6, "feet"),
  5919. weight: math.unit(210, "lbs"),
  5920. name: "Front",
  5921. image: {
  5922. source: "./media/characters/rain-fallen/front.svg"
  5923. }
  5924. },
  5925. side: {
  5926. height: math.unit(6, "feet"),
  5927. weight: math.unit(210, "lbs"),
  5928. name: "Side",
  5929. image: {
  5930. source: "./media/characters/rain-fallen/side.svg"
  5931. }
  5932. },
  5933. back: {
  5934. height: math.unit(6, "feet"),
  5935. weight: math.unit(210, "lbs"),
  5936. name: "Back",
  5937. image: {
  5938. source: "./media/characters/rain-fallen/back.svg"
  5939. }
  5940. },
  5941. feral: {
  5942. height: math.unit(9, "feet"),
  5943. weight: math.unit(700, "lbs"),
  5944. name: "Feral",
  5945. image: {
  5946. source: "./media/characters/rain-fallen/feral.svg"
  5947. }
  5948. },
  5949. },
  5950. [
  5951. {
  5952. name: "Meddling with Mortals",
  5953. height: math.unit(8 + 8/12, "feet")
  5954. },
  5955. {
  5956. name: "Normal",
  5957. height: math.unit(5, "meter")
  5958. },
  5959. {
  5960. name: "Macro",
  5961. height: math.unit(150, "meter"),
  5962. default: true
  5963. },
  5964. {
  5965. name: "Megamacro",
  5966. height: math.unit(278e6, "meter")
  5967. },
  5968. {
  5969. name: "Gigamacro",
  5970. height: math.unit(2e9, "meter")
  5971. },
  5972. {
  5973. name: "Teramacro",
  5974. height: math.unit(8e12, "meter")
  5975. },
  5976. {
  5977. name: "Devourer",
  5978. height: math.unit(14, "zettameters")
  5979. },
  5980. {
  5981. name: "Scarlet King",
  5982. height: math.unit(18, "yottameters")
  5983. },
  5984. {
  5985. name: "Void",
  5986. height: math.unit(1e88, "yottameters")
  5987. }
  5988. ]
  5989. ))
  5990. characterMakers.push(() => makeCharacter(
  5991. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5992. {
  5993. standing: {
  5994. height: math.unit(6, "feet"),
  5995. weight: math.unit(180, "lbs"),
  5996. name: "Standing",
  5997. image: {
  5998. source: "./media/characters/zaakira/standing.svg",
  5999. extra: 1599/1504,
  6000. bottom: 39/1638
  6001. }
  6002. },
  6003. laying: {
  6004. height: math.unit(3.3, "feet"),
  6005. weight: math.unit(180, "lbs"),
  6006. name: "Laying",
  6007. image: {
  6008. source: "./media/characters/zaakira/laying.svg"
  6009. }
  6010. },
  6011. },
  6012. [
  6013. {
  6014. name: "Normal",
  6015. height: math.unit(12, "feet")
  6016. },
  6017. {
  6018. name: "Macro",
  6019. height: math.unit(279, "feet"),
  6020. default: true
  6021. }
  6022. ]
  6023. ))
  6024. characterMakers.push(() => makeCharacter(
  6025. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6026. {
  6027. femSfw: {
  6028. height: math.unit(8, "feet"),
  6029. weight: math.unit(350, "lb"),
  6030. name: "Fem",
  6031. image: {
  6032. source: "./media/characters/sigvald/fem-sfw.svg",
  6033. extra: 182 / 164,
  6034. bottom: 8.7 / 190.5
  6035. }
  6036. },
  6037. femNsfw: {
  6038. height: math.unit(8, "feet"),
  6039. weight: math.unit(350, "lb"),
  6040. name: "Fem (NSFW)",
  6041. image: {
  6042. source: "./media/characters/sigvald/fem-nsfw.svg",
  6043. extra: 182 / 164,
  6044. bottom: 8.7 / 190.5
  6045. }
  6046. },
  6047. maleNsfw: {
  6048. height: math.unit(8, "feet"),
  6049. weight: math.unit(350, "lb"),
  6050. name: "Male (NSFW)",
  6051. image: {
  6052. source: "./media/characters/sigvald/male-nsfw.svg",
  6053. extra: 182 / 164,
  6054. bottom: 8.7 / 190.5
  6055. }
  6056. },
  6057. hermNsfw: {
  6058. height: math.unit(8, "feet"),
  6059. weight: math.unit(350, "lb"),
  6060. name: "Herm (NSFW)",
  6061. image: {
  6062. source: "./media/characters/sigvald/herm-nsfw.svg",
  6063. extra: 182 / 164,
  6064. bottom: 8.7 / 190.5
  6065. }
  6066. },
  6067. dick: {
  6068. height: math.unit(2.36, "feet"),
  6069. name: "Dick",
  6070. image: {
  6071. source: "./media/characters/sigvald/dick.svg"
  6072. }
  6073. },
  6074. eye: {
  6075. height: math.unit(0.31, "feet"),
  6076. name: "Eye",
  6077. image: {
  6078. source: "./media/characters/sigvald/eye.svg"
  6079. }
  6080. },
  6081. mouth: {
  6082. height: math.unit(0.92, "feet"),
  6083. name: "Mouth",
  6084. image: {
  6085. source: "./media/characters/sigvald/mouth.svg"
  6086. }
  6087. },
  6088. paws: {
  6089. height: math.unit(2.2, "feet"),
  6090. name: "Paws",
  6091. image: {
  6092. source: "./media/characters/sigvald/paws.svg"
  6093. }
  6094. }
  6095. },
  6096. [
  6097. {
  6098. name: "Normal",
  6099. height: math.unit(8, "feet")
  6100. },
  6101. {
  6102. name: "Large",
  6103. height: math.unit(12, "feet")
  6104. },
  6105. {
  6106. name: "Larger",
  6107. height: math.unit(20, "feet")
  6108. },
  6109. {
  6110. name: "Macro",
  6111. height: math.unit(150, "feet")
  6112. },
  6113. {
  6114. name: "Macro+",
  6115. height: math.unit(200, "feet"),
  6116. default: true
  6117. },
  6118. ]
  6119. ))
  6120. characterMakers.push(() => makeCharacter(
  6121. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6122. {
  6123. side: {
  6124. height: math.unit(12, "feet"),
  6125. weight: math.unit(2000, "kg"),
  6126. name: "Side",
  6127. image: {
  6128. source: "./media/characters/scott/side.svg",
  6129. extra: 754 / 724,
  6130. bottom: 0.069
  6131. }
  6132. },
  6133. upright: {
  6134. height: math.unit(12, "feet"),
  6135. weight: math.unit(2000, "kg"),
  6136. name: "Upright",
  6137. image: {
  6138. source: "./media/characters/scott/upright.svg",
  6139. extra: 3881 / 3722,
  6140. bottom: 0.05
  6141. }
  6142. },
  6143. },
  6144. [
  6145. {
  6146. name: "Normal",
  6147. height: math.unit(12, "feet"),
  6148. default: true
  6149. },
  6150. ]
  6151. ))
  6152. characterMakers.push(() => makeCharacter(
  6153. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6154. {
  6155. side: {
  6156. height: math.unit(8, "meters"),
  6157. weight: math.unit(84755, "lbs"),
  6158. name: "Side",
  6159. image: {
  6160. source: "./media/characters/tobias/side.svg",
  6161. extra: 1474 / 1096,
  6162. bottom: 38.9 / 1513.1235
  6163. }
  6164. },
  6165. maw: {
  6166. height: math.unit(2.3, "meters"),
  6167. name: "Maw",
  6168. image: {
  6169. source: "./media/characters/tobias/maw.svg"
  6170. }
  6171. },
  6172. burp: {
  6173. height: math.unit(2.85, "meters"),
  6174. name: "Burp",
  6175. image: {
  6176. source: "./media/characters/tobias/burp.svg"
  6177. }
  6178. },
  6179. },
  6180. [
  6181. {
  6182. name: "Normal",
  6183. height: math.unit(8, "meters"),
  6184. default: true
  6185. },
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6190. {
  6191. front: {
  6192. height: math.unit(5.5, "feet"),
  6193. weight: math.unit(400, "lbs"),
  6194. name: "Front",
  6195. image: {
  6196. source: "./media/characters/kieran/front.svg",
  6197. extra: 2694 / 2364,
  6198. bottom: 217 / 2908
  6199. }
  6200. },
  6201. side: {
  6202. height: math.unit(5.5, "feet"),
  6203. weight: math.unit(400, "lbs"),
  6204. name: "Side",
  6205. image: {
  6206. source: "./media/characters/kieran/side.svg",
  6207. extra: 875 / 777,
  6208. bottom: 84.6 / 959
  6209. }
  6210. },
  6211. },
  6212. [
  6213. {
  6214. name: "Normal",
  6215. height: math.unit(5.5, "feet"),
  6216. default: true
  6217. },
  6218. ]
  6219. ))
  6220. characterMakers.push(() => makeCharacter(
  6221. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6222. {
  6223. side: {
  6224. height: math.unit(2, "meters"),
  6225. weight: math.unit(70, "kg"),
  6226. name: "Side",
  6227. image: {
  6228. source: "./media/characters/sanya/side.svg",
  6229. bottom: 0.02,
  6230. extra: 1.02
  6231. }
  6232. },
  6233. },
  6234. [
  6235. {
  6236. name: "Small",
  6237. height: math.unit(2, "meters")
  6238. },
  6239. {
  6240. name: "Normal",
  6241. height: math.unit(3, "meters")
  6242. },
  6243. {
  6244. name: "Macro",
  6245. height: math.unit(16, "meters"),
  6246. default: true
  6247. },
  6248. ]
  6249. ))
  6250. characterMakers.push(() => makeCharacter(
  6251. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6252. {
  6253. front: {
  6254. height: math.unit(2, "meters"),
  6255. weight: math.unit(120, "kg"),
  6256. name: "Front",
  6257. image: {
  6258. source: "./media/characters/miranda/front.svg",
  6259. extra: 195 / 185,
  6260. bottom: 10.9 / 206.5
  6261. }
  6262. },
  6263. back: {
  6264. height: math.unit(2, "meters"),
  6265. weight: math.unit(120, "kg"),
  6266. name: "Back",
  6267. image: {
  6268. source: "./media/characters/miranda/back.svg",
  6269. extra: 201 / 193,
  6270. bottom: 2.3 / 203.7
  6271. }
  6272. },
  6273. },
  6274. [
  6275. {
  6276. name: "Normal",
  6277. height: math.unit(10, "feet"),
  6278. default: true
  6279. }
  6280. ]
  6281. ))
  6282. characterMakers.push(() => makeCharacter(
  6283. { name: "James", species: ["deer"], tags: ["anthro"] },
  6284. {
  6285. side: {
  6286. height: math.unit(2, "meters"),
  6287. weight: math.unit(100, "kg"),
  6288. name: "Front",
  6289. image: {
  6290. source: "./media/characters/james/front.svg",
  6291. extra: 10 / 8.5
  6292. }
  6293. },
  6294. },
  6295. [
  6296. {
  6297. name: "Normal",
  6298. height: math.unit(8.5, "feet"),
  6299. default: true
  6300. }
  6301. ]
  6302. ))
  6303. characterMakers.push(() => makeCharacter(
  6304. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6305. {
  6306. side: {
  6307. height: math.unit(9.5, "feet"),
  6308. weight: math.unit(2500, "lbs"),
  6309. name: "Side",
  6310. image: {
  6311. source: "./media/characters/heather/side.svg"
  6312. }
  6313. },
  6314. },
  6315. [
  6316. {
  6317. name: "Normal",
  6318. height: math.unit(9.5, "feet"),
  6319. default: true
  6320. }
  6321. ]
  6322. ))
  6323. characterMakers.push(() => makeCharacter(
  6324. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6325. {
  6326. side: {
  6327. height: math.unit(6.5, "feet"),
  6328. weight: math.unit(400, "lbs"),
  6329. name: "Side",
  6330. image: {
  6331. source: "./media/characters/lukas/side.svg",
  6332. extra: 7.25 / 6.5
  6333. }
  6334. },
  6335. },
  6336. [
  6337. {
  6338. name: "Normal",
  6339. height: math.unit(6.5, "feet"),
  6340. default: true
  6341. }
  6342. ]
  6343. ))
  6344. characterMakers.push(() => makeCharacter(
  6345. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6346. {
  6347. side: {
  6348. height: math.unit(5, "feet"),
  6349. weight: math.unit(3000, "lbs"),
  6350. name: "Side",
  6351. image: {
  6352. source: "./media/characters/louise/side.svg"
  6353. }
  6354. },
  6355. },
  6356. [
  6357. {
  6358. name: "Normal",
  6359. height: math.unit(5, "feet"),
  6360. default: true
  6361. }
  6362. ]
  6363. ))
  6364. characterMakers.push(() => makeCharacter(
  6365. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6366. {
  6367. side: {
  6368. height: math.unit(6, "feet"),
  6369. weight: math.unit(150, "lbs"),
  6370. name: "Side",
  6371. image: {
  6372. source: "./media/characters/ramona/side.svg",
  6373. extra: 871/854,
  6374. bottom: 41/912
  6375. }
  6376. },
  6377. },
  6378. [
  6379. {
  6380. name: "Normal",
  6381. height: math.unit(6 + 4/12, "feet")
  6382. },
  6383. {
  6384. name: "Minimacro",
  6385. height: math.unit(5.3, "meters"),
  6386. default: true
  6387. },
  6388. {
  6389. name: "Macro",
  6390. height: math.unit(20, "stories")
  6391. },
  6392. {
  6393. name: "Macro+",
  6394. height: math.unit(50, "stories")
  6395. },
  6396. ]
  6397. ))
  6398. characterMakers.push(() => makeCharacter(
  6399. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6400. {
  6401. standing: {
  6402. height: math.unit(5.75, "feet"),
  6403. weight: math.unit(160, "lbs"),
  6404. name: "Standing",
  6405. image: {
  6406. source: "./media/characters/deerpuff/standing.svg",
  6407. extra: 682 / 624
  6408. }
  6409. },
  6410. sitting: {
  6411. height: math.unit(5.75 / 1.79, "feet"),
  6412. weight: math.unit(160, "lbs"),
  6413. name: "Sitting",
  6414. image: {
  6415. source: "./media/characters/deerpuff/sitting.svg",
  6416. bottom: 44 / 400,
  6417. extra: 1
  6418. }
  6419. },
  6420. taurLaying: {
  6421. height: math.unit(6, "feet"),
  6422. weight: math.unit(400, "lbs"),
  6423. name: "Taur (Laying)",
  6424. image: {
  6425. source: "./media/characters/deerpuff/taur-laying.svg"
  6426. }
  6427. },
  6428. },
  6429. [
  6430. {
  6431. name: "Puffball",
  6432. height: math.unit(6, "inches")
  6433. },
  6434. {
  6435. name: "Normalpuff",
  6436. height: math.unit(5.75, "feet")
  6437. },
  6438. {
  6439. name: "Macropuff",
  6440. height: math.unit(1500, "feet"),
  6441. default: true
  6442. },
  6443. {
  6444. name: "Megapuff",
  6445. height: math.unit(500, "miles")
  6446. },
  6447. {
  6448. name: "Gigapuff",
  6449. height: math.unit(250000, "miles")
  6450. },
  6451. {
  6452. name: "Omegapuff",
  6453. height: math.unit(1000, "lightyears")
  6454. },
  6455. ]
  6456. ))
  6457. characterMakers.push(() => makeCharacter(
  6458. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6459. {
  6460. stomping: {
  6461. height: math.unit(6, "feet"),
  6462. weight: math.unit(170, "lbs"),
  6463. name: "Stomping",
  6464. image: {
  6465. source: "./media/characters/vivian/stomping.svg"
  6466. }
  6467. },
  6468. sitting: {
  6469. height: math.unit(6 / 1.75, "feet"),
  6470. weight: math.unit(170, "lbs"),
  6471. name: "Sitting",
  6472. image: {
  6473. source: "./media/characters/vivian/sitting.svg",
  6474. bottom: 1 / 6.4,
  6475. extra: 1,
  6476. }
  6477. },
  6478. },
  6479. [
  6480. {
  6481. name: "Normal",
  6482. height: math.unit(7, "feet"),
  6483. default: true
  6484. },
  6485. {
  6486. name: "Macro",
  6487. height: math.unit(10, "stories")
  6488. },
  6489. {
  6490. name: "Macro+",
  6491. height: math.unit(30, "stories")
  6492. },
  6493. {
  6494. name: "Megamacro",
  6495. height: math.unit(10, "miles")
  6496. },
  6497. {
  6498. name: "Megamacro+",
  6499. height: math.unit(2750000, "meters")
  6500. },
  6501. ]
  6502. ))
  6503. characterMakers.push(() => makeCharacter(
  6504. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6505. {
  6506. front: {
  6507. height: math.unit(6, "feet"),
  6508. weight: math.unit(160, "lbs"),
  6509. name: "Front",
  6510. image: {
  6511. source: "./media/characters/prince/front.svg",
  6512. extra: 1938/1682,
  6513. bottom: 45/1983
  6514. }
  6515. },
  6516. back: {
  6517. height: math.unit(6, "feet"),
  6518. weight: math.unit(160, "lbs"),
  6519. name: "Back",
  6520. image: {
  6521. source: "./media/characters/prince/back.svg",
  6522. extra: 1955/1726,
  6523. bottom: 6/1961
  6524. }
  6525. },
  6526. },
  6527. [
  6528. {
  6529. name: "Normal",
  6530. height: math.unit(7.75, "feet"),
  6531. default: true
  6532. },
  6533. {
  6534. name: "Not cute",
  6535. height: math.unit(17, "feet")
  6536. },
  6537. {
  6538. name: "I said NOT",
  6539. height: math.unit(91, "feet")
  6540. },
  6541. {
  6542. name: "Please stop",
  6543. height: math.unit(560, "feet")
  6544. },
  6545. {
  6546. name: "What have you done",
  6547. height: math.unit(2200, "feet")
  6548. },
  6549. {
  6550. name: "Deer God",
  6551. height: math.unit(3.6, "miles")
  6552. },
  6553. ]
  6554. ))
  6555. characterMakers.push(() => makeCharacter(
  6556. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6557. {
  6558. standing: {
  6559. height: math.unit(6, "feet"),
  6560. weight: math.unit(300, "lbs"),
  6561. name: "Standing",
  6562. image: {
  6563. source: "./media/characters/psymon/standing.svg",
  6564. extra: 1888 / 1810,
  6565. bottom: 0.05
  6566. }
  6567. },
  6568. slithering: {
  6569. height: math.unit(6, "feet"),
  6570. weight: math.unit(300, "lbs"),
  6571. name: "Slithering",
  6572. image: {
  6573. source: "./media/characters/psymon/slithering.svg",
  6574. extra: 1330 / 1224
  6575. }
  6576. },
  6577. slitheringAlt: {
  6578. height: math.unit(6, "feet"),
  6579. weight: math.unit(300, "lbs"),
  6580. name: "Slithering (Alt)",
  6581. image: {
  6582. source: "./media/characters/psymon/slithering-alt.svg",
  6583. extra: 1330 / 1224
  6584. }
  6585. },
  6586. },
  6587. [
  6588. {
  6589. name: "Normal",
  6590. height: math.unit(11.25, "feet"),
  6591. default: true
  6592. },
  6593. {
  6594. name: "Large",
  6595. height: math.unit(27, "feet")
  6596. },
  6597. {
  6598. name: "Giant",
  6599. height: math.unit(87, "feet")
  6600. },
  6601. {
  6602. name: "Macro",
  6603. height: math.unit(365, "feet")
  6604. },
  6605. {
  6606. name: "Megamacro",
  6607. height: math.unit(3, "miles")
  6608. },
  6609. {
  6610. name: "World Serpent",
  6611. height: math.unit(8000, "miles")
  6612. },
  6613. ]
  6614. ))
  6615. characterMakers.push(() => makeCharacter(
  6616. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6617. {
  6618. front: {
  6619. height: math.unit(6, "feet"),
  6620. weight: math.unit(180, "lbs"),
  6621. name: "Front",
  6622. image: {
  6623. source: "./media/characters/daimos/front.svg",
  6624. extra: 4160 / 3897,
  6625. bottom: 0.021
  6626. }
  6627. }
  6628. },
  6629. [
  6630. {
  6631. name: "Normal",
  6632. height: math.unit(8, "feet"),
  6633. default: true
  6634. },
  6635. {
  6636. name: "Big Dog",
  6637. height: math.unit(22, "feet")
  6638. },
  6639. {
  6640. name: "Macro",
  6641. height: math.unit(127, "feet")
  6642. },
  6643. {
  6644. name: "Megamacro",
  6645. height: math.unit(3600, "feet")
  6646. },
  6647. ]
  6648. ))
  6649. characterMakers.push(() => makeCharacter(
  6650. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6651. {
  6652. side: {
  6653. height: math.unit(6, "feet"),
  6654. weight: math.unit(180, "lbs"),
  6655. name: "Side",
  6656. image: {
  6657. source: "./media/characters/blake/side.svg",
  6658. extra: 1212 / 1120,
  6659. bottom: 0.05
  6660. }
  6661. },
  6662. crouched: {
  6663. height: math.unit(6 * 0.57, "feet"),
  6664. weight: math.unit(180, "lbs"),
  6665. name: "Crouched",
  6666. image: {
  6667. source: "./media/characters/blake/crouched.svg",
  6668. extra: 840 / 587,
  6669. bottom: 0.04
  6670. }
  6671. },
  6672. bent: {
  6673. height: math.unit(6 * 0.75, "feet"),
  6674. weight: math.unit(180, "lbs"),
  6675. name: "Bent",
  6676. image: {
  6677. source: "./media/characters/blake/bent.svg",
  6678. extra: 592 / 544,
  6679. bottom: 0.035
  6680. }
  6681. },
  6682. },
  6683. [
  6684. {
  6685. name: "Normal",
  6686. height: math.unit(8 + 1 / 6, "feet"),
  6687. default: true
  6688. },
  6689. {
  6690. name: "Big Backside",
  6691. height: math.unit(37, "feet")
  6692. },
  6693. {
  6694. name: "Subway Shredder",
  6695. height: math.unit(72, "feet")
  6696. },
  6697. {
  6698. name: "City Carver",
  6699. height: math.unit(1675, "feet")
  6700. },
  6701. {
  6702. name: "Tectonic Tweaker",
  6703. height: math.unit(2300, "miles")
  6704. },
  6705. ]
  6706. ))
  6707. characterMakers.push(() => makeCharacter(
  6708. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6709. {
  6710. front: {
  6711. height: math.unit(6, "feet"),
  6712. weight: math.unit(180, "lbs"),
  6713. name: "Front",
  6714. image: {
  6715. source: "./media/characters/guisetto/front.svg",
  6716. extra: 856 / 817,
  6717. bottom: 0.06
  6718. }
  6719. },
  6720. airborne: {
  6721. height: math.unit(6, "feet"),
  6722. weight: math.unit(180, "lbs"),
  6723. name: "Airborne",
  6724. image: {
  6725. source: "./media/characters/guisetto/airborne.svg",
  6726. extra: 584 / 525
  6727. }
  6728. },
  6729. },
  6730. [
  6731. {
  6732. name: "Normal",
  6733. height: math.unit(10 + 11 / 12, "feet"),
  6734. default: true
  6735. },
  6736. {
  6737. name: "Large",
  6738. height: math.unit(35, "feet")
  6739. },
  6740. {
  6741. name: "Macro",
  6742. height: math.unit(475, "feet")
  6743. },
  6744. ]
  6745. ))
  6746. characterMakers.push(() => makeCharacter(
  6747. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6748. {
  6749. front: {
  6750. height: math.unit(6, "feet"),
  6751. weight: math.unit(180, "lbs"),
  6752. name: "Front",
  6753. image: {
  6754. source: "./media/characters/luxor/front.svg",
  6755. extra: 2940 / 2152
  6756. }
  6757. },
  6758. back: {
  6759. height: math.unit(6, "feet"),
  6760. weight: math.unit(180, "lbs"),
  6761. name: "Back",
  6762. image: {
  6763. source: "./media/characters/luxor/back.svg",
  6764. extra: 1083 / 960
  6765. }
  6766. },
  6767. },
  6768. [
  6769. {
  6770. name: "Normal",
  6771. height: math.unit(5 + 5 / 6, "feet"),
  6772. default: true
  6773. },
  6774. {
  6775. name: "Lamp",
  6776. height: math.unit(50, "feet")
  6777. },
  6778. {
  6779. name: "Lämp",
  6780. height: math.unit(300, "feet")
  6781. },
  6782. {
  6783. name: "The sun is a lamp",
  6784. height: math.unit(250000, "miles")
  6785. },
  6786. ]
  6787. ))
  6788. characterMakers.push(() => makeCharacter(
  6789. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6790. {
  6791. front: {
  6792. height: math.unit(6, "feet"),
  6793. weight: math.unit(50, "lbs"),
  6794. name: "Front",
  6795. image: {
  6796. source: "./media/characters/huoyan/front.svg"
  6797. }
  6798. },
  6799. side: {
  6800. height: math.unit(6, "feet"),
  6801. weight: math.unit(180, "lbs"),
  6802. name: "Side",
  6803. image: {
  6804. source: "./media/characters/huoyan/side.svg"
  6805. }
  6806. },
  6807. },
  6808. [
  6809. {
  6810. name: "Chef",
  6811. height: math.unit(9, "feet")
  6812. },
  6813. {
  6814. name: "Normal",
  6815. height: math.unit(65, "feet"),
  6816. default: true
  6817. },
  6818. {
  6819. name: "Macro",
  6820. height: math.unit(780, "feet")
  6821. },
  6822. {
  6823. name: "Flaming Mountain",
  6824. height: math.unit(4.8, "miles")
  6825. },
  6826. {
  6827. name: "Celestial",
  6828. height: math.unit(765000, "miles")
  6829. },
  6830. ]
  6831. ))
  6832. characterMakers.push(() => makeCharacter(
  6833. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6834. {
  6835. front: {
  6836. height: math.unit(5 + 3 / 4, "feet"),
  6837. weight: math.unit(120, "lbs"),
  6838. name: "Front",
  6839. image: {
  6840. source: "./media/characters/tails/front.svg"
  6841. }
  6842. }
  6843. },
  6844. [
  6845. {
  6846. name: "Normal",
  6847. height: math.unit(5 + 3 / 4, "feet"),
  6848. default: true
  6849. }
  6850. ]
  6851. ))
  6852. characterMakers.push(() => makeCharacter(
  6853. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6854. {
  6855. front: {
  6856. height: math.unit(4, "feet"),
  6857. weight: math.unit(50, "lbs"),
  6858. name: "Front",
  6859. image: {
  6860. source: "./media/characters/rainy/front.svg"
  6861. }
  6862. }
  6863. },
  6864. [
  6865. {
  6866. name: "Macro",
  6867. height: math.unit(800, "feet"),
  6868. default: true
  6869. }
  6870. ]
  6871. ))
  6872. characterMakers.push(() => makeCharacter(
  6873. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6874. {
  6875. front: {
  6876. height: math.unit(6, "feet"),
  6877. weight: math.unit(150, "lbs"),
  6878. name: "Front",
  6879. image: {
  6880. source: "./media/characters/rainier/front.svg"
  6881. }
  6882. }
  6883. },
  6884. [
  6885. {
  6886. name: "Micro",
  6887. height: math.unit(2, "mm"),
  6888. default: true
  6889. }
  6890. ]
  6891. ))
  6892. characterMakers.push(() => makeCharacter(
  6893. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6894. {
  6895. front: {
  6896. height: math.unit(8 + 4/12, "feet"),
  6897. weight: math.unit(450, "kilograms"),
  6898. name: "Front",
  6899. image: {
  6900. source: "./media/characters/andy-renard/front.svg",
  6901. extra: 862/809,
  6902. bottom: 85/947
  6903. },
  6904. extraAttributes: {
  6905. "pawSize": {
  6906. name: "Paw Size",
  6907. power: 2,
  6908. type: "area",
  6909. base: math.unit(0.45*0.3, "meters^2")
  6910. },
  6911. "handSize": {
  6912. name: "Hand Size",
  6913. power: 2,
  6914. type: "area",
  6915. base: math.unit(0.4 * 0.3, "meters^2")
  6916. },
  6917. "cockSize": {
  6918. name: "Cock Length",
  6919. power: 1,
  6920. type: "length",
  6921. base: math.unit(0.75, "meters")
  6922. },
  6923. "ballDiameter": {
  6924. name: "Ball Diameter",
  6925. power: 1,
  6926. type: "length",
  6927. base: math.unit(0.3, "meters")
  6928. },
  6929. "ballVolume": {
  6930. name: "Ball Volume",
  6931. power: 3,
  6932. type: "volume",
  6933. base: math.unit(0.01413716694, "meters^3")
  6934. },
  6935. }
  6936. },
  6937. back: {
  6938. height: math.unit(8 + 4/12, "feet"),
  6939. weight: math.unit(450, "kilograms"),
  6940. name: "Back",
  6941. image: {
  6942. source: "./media/characters/andy-renard/back.svg",
  6943. extra: 1112/1033,
  6944. bottom: 64/1176
  6945. },
  6946. extraAttributes: {
  6947. "pawSize": {
  6948. name: "Paw Size",
  6949. power: 2,
  6950. type: "area",
  6951. base: math.unit(0.45*0.3, "meters^2")
  6952. },
  6953. "handSize": {
  6954. name: "Hand Size",
  6955. power: 2,
  6956. type: "area",
  6957. base: math.unit(0.4 * 0.3, "meters^2")
  6958. },
  6959. "cockSize": {
  6960. name: "Cock Length",
  6961. power: 1,
  6962. type: "length",
  6963. base: math.unit(0.75, "meters")
  6964. },
  6965. "ballDiameter": {
  6966. name: "Ball Diameter",
  6967. power: 1,
  6968. type: "length",
  6969. base: math.unit(0.3, "meters")
  6970. },
  6971. "ballVolume": {
  6972. name: "Ball Volume",
  6973. power: 3,
  6974. type: "volume",
  6975. base: math.unit(0.01413716694, "meters^3")
  6976. },
  6977. }
  6978. },
  6979. },
  6980. [
  6981. {
  6982. name: "Tall",
  6983. height: math.unit(6 + 8/12, "feet")
  6984. },
  6985. {
  6986. name: "Very Tall",
  6987. height: math.unit(8 + 4/12, "feet")
  6988. },
  6989. {
  6990. name: "Mini Macro",
  6991. height: math.unit(15, "feet"),
  6992. default: true
  6993. },
  6994. {
  6995. name: "Giant",
  6996. height: math.unit(50, "feet")
  6997. },
  6998. {
  6999. name: "Nice",
  7000. height: math.unit(69, "feet")
  7001. },
  7002. {
  7003. name: "Macro",
  7004. height: math.unit(100, "feet")
  7005. },
  7006. {
  7007. name: "Enormous",
  7008. height: math.unit(500, "feet")
  7009. },
  7010. {
  7011. name: "Gargantuan",
  7012. height: math.unit(1000, "feet")
  7013. },
  7014. {
  7015. name: "Mega",
  7016. height: math.unit(1, "mile")
  7017. },
  7018. {
  7019. name: "Giga",
  7020. height: math.unit(50, "miles")
  7021. },
  7022. {
  7023. name: "Tera",
  7024. height: math.unit(1000, "miles")
  7025. },
  7026. {
  7027. name: "Cosmic",
  7028. height: math.unit(1.5, "galaxies")
  7029. },
  7030. {
  7031. name: "God",
  7032. height: math.unit(1.5, "universes")
  7033. },
  7034. {
  7035. name: "Chief Execute God",
  7036. height: math.unit(1.5, "multiverses")
  7037. },
  7038. ]
  7039. ))
  7040. characterMakers.push(() => makeCharacter(
  7041. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7042. {
  7043. front: {
  7044. height: math.unit(6, "feet"),
  7045. weight: math.unit(210, "lbs"),
  7046. name: "Front",
  7047. image: {
  7048. source: "./media/characters/cimmaron/front-sfw.svg",
  7049. extra: 701 / 676,
  7050. bottom: 0.046
  7051. }
  7052. },
  7053. back: {
  7054. height: math.unit(6, "feet"),
  7055. weight: math.unit(210, "lbs"),
  7056. name: "Back",
  7057. image: {
  7058. source: "./media/characters/cimmaron/back-sfw.svg",
  7059. extra: 701 / 676,
  7060. bottom: 0.046
  7061. }
  7062. },
  7063. frontNsfw: {
  7064. height: math.unit(6, "feet"),
  7065. weight: math.unit(210, "lbs"),
  7066. name: "Front (NSFW)",
  7067. image: {
  7068. source: "./media/characters/cimmaron/front-nsfw.svg",
  7069. extra: 701 / 676,
  7070. bottom: 0.046
  7071. }
  7072. },
  7073. backNsfw: {
  7074. height: math.unit(6, "feet"),
  7075. weight: math.unit(210, "lbs"),
  7076. name: "Back (NSFW)",
  7077. image: {
  7078. source: "./media/characters/cimmaron/back-nsfw.svg",
  7079. extra: 701 / 676,
  7080. bottom: 0.046
  7081. }
  7082. },
  7083. dick: {
  7084. height: math.unit(1.714, "feet"),
  7085. name: "Dick",
  7086. image: {
  7087. source: "./media/characters/cimmaron/dick.svg"
  7088. }
  7089. },
  7090. },
  7091. [
  7092. {
  7093. name: "Normal",
  7094. height: math.unit(6, "feet"),
  7095. default: true
  7096. },
  7097. {
  7098. name: "Macro Mayor",
  7099. height: math.unit(350, "meters")
  7100. },
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7105. {
  7106. front: {
  7107. height: math.unit(6, "feet"),
  7108. weight: math.unit(200, "lbs"),
  7109. name: "Front",
  7110. image: {
  7111. source: "./media/characters/akari/front.svg",
  7112. extra: 962 / 901,
  7113. bottom: 0.04
  7114. }
  7115. }
  7116. },
  7117. [
  7118. {
  7119. name: "Micro",
  7120. height: math.unit(5, "inches"),
  7121. default: true
  7122. },
  7123. {
  7124. name: "Normal",
  7125. height: math.unit(7, "feet")
  7126. },
  7127. ]
  7128. ))
  7129. characterMakers.push(() => makeCharacter(
  7130. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7131. {
  7132. front: {
  7133. height: math.unit(6, "feet"),
  7134. weight: math.unit(140, "lbs"),
  7135. name: "Front",
  7136. image: {
  7137. source: "./media/characters/cynosura/front.svg",
  7138. extra: 437/410,
  7139. bottom: 9/446
  7140. }
  7141. },
  7142. back: {
  7143. height: math.unit(6, "feet"),
  7144. weight: math.unit(140, "lbs"),
  7145. name: "Back",
  7146. image: {
  7147. source: "./media/characters/cynosura/back.svg",
  7148. extra: 1304/1160,
  7149. bottom: 71/1375
  7150. }
  7151. },
  7152. },
  7153. [
  7154. {
  7155. name: "Micro",
  7156. height: math.unit(4, "inches")
  7157. },
  7158. {
  7159. name: "Normal",
  7160. height: math.unit(5.75, "feet"),
  7161. default: true
  7162. },
  7163. {
  7164. name: "Tall",
  7165. height: math.unit(10, "feet")
  7166. },
  7167. {
  7168. name: "Big",
  7169. height: math.unit(20, "feet")
  7170. },
  7171. {
  7172. name: "Macro",
  7173. height: math.unit(50, "feet")
  7174. },
  7175. ]
  7176. ))
  7177. characterMakers.push(() => makeCharacter(
  7178. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7179. {
  7180. front: {
  7181. height: math.unit(13 + 2/12, "feet"),
  7182. weight: math.unit(800, "kg"),
  7183. name: "Front",
  7184. image: {
  7185. source: "./media/characters/gin/front.svg",
  7186. extra: 1312/1191,
  7187. bottom: 45/1357
  7188. }
  7189. },
  7190. mouth: {
  7191. height: math.unit(2.39 * 1.8, "feet"),
  7192. name: "Mouth",
  7193. image: {
  7194. source: "./media/characters/gin/mouth.svg"
  7195. }
  7196. },
  7197. hand: {
  7198. height: math.unit(1.57 * 2.19, "feet"),
  7199. name: "Hand",
  7200. image: {
  7201. source: "./media/characters/gin/hand.svg"
  7202. }
  7203. },
  7204. foot: {
  7205. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7206. name: "Foot",
  7207. image: {
  7208. source: "./media/characters/gin/foot.svg"
  7209. }
  7210. },
  7211. sole: {
  7212. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7213. name: "Sole",
  7214. image: {
  7215. source: "./media/characters/gin/sole.svg"
  7216. }
  7217. },
  7218. },
  7219. [
  7220. {
  7221. name: "Very Small",
  7222. height: math.unit(13 + 2 / 12, "feet")
  7223. },
  7224. {
  7225. name: "Micro",
  7226. height: math.unit(600, "miles")
  7227. },
  7228. {
  7229. name: "Regular",
  7230. height: math.unit(20, "earths"),
  7231. default: true
  7232. },
  7233. {
  7234. name: "Macro",
  7235. height: math.unit(2.2, "solarradii")
  7236. },
  7237. {
  7238. name: "Teramacro",
  7239. height: math.unit(1.2, "galaxies")
  7240. },
  7241. {
  7242. name: "Omegamacro",
  7243. height: math.unit(200, "universes")
  7244. },
  7245. ]
  7246. ))
  7247. characterMakers.push(() => makeCharacter(
  7248. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7249. {
  7250. front: {
  7251. height: math.unit(6 + 1 / 6, "feet"),
  7252. weight: math.unit(178, "lbs"),
  7253. name: "Front",
  7254. image: {
  7255. source: "./media/characters/guy/front.svg"
  7256. }
  7257. }
  7258. },
  7259. [
  7260. {
  7261. name: "Normal",
  7262. height: math.unit(6 + 1 / 6, "feet"),
  7263. default: true
  7264. },
  7265. {
  7266. name: "Large",
  7267. height: math.unit(25 + 7 / 12, "feet")
  7268. },
  7269. {
  7270. name: "Macro",
  7271. height: math.unit(60 + 9 / 12, "feet")
  7272. },
  7273. {
  7274. name: "Macro+",
  7275. height: math.unit(246, "feet")
  7276. },
  7277. {
  7278. name: "Macro++",
  7279. height: math.unit(878, "feet")
  7280. }
  7281. ]
  7282. ))
  7283. characterMakers.push(() => makeCharacter(
  7284. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7285. {
  7286. front: {
  7287. height: math.unit(9, "feet"),
  7288. weight: math.unit(800, "lbs"),
  7289. name: "Front",
  7290. image: {
  7291. source: "./media/characters/tiberius/front.svg",
  7292. extra: 2295 / 2071
  7293. }
  7294. },
  7295. back: {
  7296. height: math.unit(9, "feet"),
  7297. weight: math.unit(800, "lbs"),
  7298. name: "Back",
  7299. image: {
  7300. source: "./media/characters/tiberius/back.svg",
  7301. extra: 2373 / 2160
  7302. }
  7303. },
  7304. },
  7305. [
  7306. {
  7307. name: "Normal",
  7308. height: math.unit(9, "feet"),
  7309. default: true
  7310. }
  7311. ]
  7312. ))
  7313. characterMakers.push(() => makeCharacter(
  7314. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7315. {
  7316. front: {
  7317. height: math.unit(6, "feet"),
  7318. weight: math.unit(600, "lbs"),
  7319. name: "Front",
  7320. image: {
  7321. source: "./media/characters/surgo/front.svg",
  7322. extra: 3591 / 2227
  7323. }
  7324. },
  7325. back: {
  7326. height: math.unit(6, "feet"),
  7327. weight: math.unit(600, "lbs"),
  7328. name: "Back",
  7329. image: {
  7330. source: "./media/characters/surgo/back.svg",
  7331. extra: 3557 / 2228
  7332. }
  7333. },
  7334. laying: {
  7335. height: math.unit(6 * 0.85, "feet"),
  7336. weight: math.unit(600, "lbs"),
  7337. name: "Laying",
  7338. image: {
  7339. source: "./media/characters/surgo/laying.svg"
  7340. }
  7341. },
  7342. },
  7343. [
  7344. {
  7345. name: "Normal",
  7346. height: math.unit(6, "feet"),
  7347. default: true
  7348. }
  7349. ]
  7350. ))
  7351. characterMakers.push(() => makeCharacter(
  7352. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7353. {
  7354. side: {
  7355. height: math.unit(6, "feet"),
  7356. weight: math.unit(150, "lbs"),
  7357. name: "Side",
  7358. image: {
  7359. source: "./media/characters/cibus/side.svg",
  7360. extra: 800 / 400
  7361. }
  7362. },
  7363. },
  7364. [
  7365. {
  7366. name: "Normal",
  7367. height: math.unit(6, "feet"),
  7368. default: true
  7369. }
  7370. ]
  7371. ))
  7372. characterMakers.push(() => makeCharacter(
  7373. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7374. {
  7375. front: {
  7376. height: math.unit(6, "feet"),
  7377. weight: math.unit(240, "lbs"),
  7378. name: "Front",
  7379. image: {
  7380. source: "./media/characters/nibbles/front.svg"
  7381. }
  7382. },
  7383. side: {
  7384. height: math.unit(6, "feet"),
  7385. weight: math.unit(240, "lbs"),
  7386. name: "Side",
  7387. image: {
  7388. source: "./media/characters/nibbles/side.svg"
  7389. }
  7390. },
  7391. },
  7392. [
  7393. {
  7394. name: "Normal",
  7395. height: math.unit(9, "feet"),
  7396. default: true
  7397. }
  7398. ]
  7399. ))
  7400. characterMakers.push(() => makeCharacter(
  7401. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7402. {
  7403. side: {
  7404. height: math.unit(5 + 1 / 6, "feet"),
  7405. weight: math.unit(130, "lbs"),
  7406. name: "Side",
  7407. image: {
  7408. source: "./media/characters/rikky/side.svg",
  7409. extra: 851 / 801
  7410. }
  7411. },
  7412. },
  7413. [
  7414. {
  7415. name: "Normal",
  7416. height: math.unit(5 + 1 / 6, "feet")
  7417. },
  7418. {
  7419. name: "Macro",
  7420. height: math.unit(152, "feet"),
  7421. default: true
  7422. },
  7423. {
  7424. name: "Megamacro",
  7425. height: math.unit(7, "miles")
  7426. }
  7427. ]
  7428. ))
  7429. characterMakers.push(() => makeCharacter(
  7430. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7431. {
  7432. side: {
  7433. height: math.unit(370, "cm"),
  7434. weight: math.unit(350, "lbs"),
  7435. name: "Side",
  7436. image: {
  7437. source: "./media/characters/malfressa/side.svg"
  7438. }
  7439. },
  7440. walking: {
  7441. height: math.unit(370, "cm"),
  7442. weight: math.unit(350, "lbs"),
  7443. name: "Walking",
  7444. image: {
  7445. source: "./media/characters/malfressa/walking.svg"
  7446. }
  7447. },
  7448. feral: {
  7449. height: math.unit(2500, "cm"),
  7450. weight: math.unit(100000, "lbs"),
  7451. name: "Feral",
  7452. image: {
  7453. source: "./media/characters/malfressa/feral.svg",
  7454. extra: 2108 / 837,
  7455. bottom: 0.02
  7456. }
  7457. },
  7458. },
  7459. [
  7460. {
  7461. name: "Normal",
  7462. height: math.unit(370, "cm")
  7463. },
  7464. {
  7465. name: "Macro",
  7466. height: math.unit(300, "meters"),
  7467. default: true
  7468. }
  7469. ]
  7470. ))
  7471. characterMakers.push(() => makeCharacter(
  7472. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7473. {
  7474. front: {
  7475. height: math.unit(6, "feet"),
  7476. weight: math.unit(60, "kg"),
  7477. name: "Front",
  7478. image: {
  7479. source: "./media/characters/jaro/front.svg",
  7480. extra: 845/817,
  7481. bottom: 45/890
  7482. }
  7483. },
  7484. back: {
  7485. height: math.unit(6, "feet"),
  7486. weight: math.unit(60, "kg"),
  7487. name: "Back",
  7488. image: {
  7489. source: "./media/characters/jaro/back.svg",
  7490. extra: 847/817,
  7491. bottom: 34/881
  7492. }
  7493. },
  7494. },
  7495. [
  7496. {
  7497. name: "Micro",
  7498. height: math.unit(7, "inches")
  7499. },
  7500. {
  7501. name: "Normal",
  7502. height: math.unit(5.5, "feet"),
  7503. default: true
  7504. },
  7505. {
  7506. name: "Minimacro",
  7507. height: math.unit(20, "feet")
  7508. },
  7509. {
  7510. name: "Macro",
  7511. height: math.unit(200, "meters")
  7512. }
  7513. ]
  7514. ))
  7515. characterMakers.push(() => makeCharacter(
  7516. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7517. {
  7518. front: {
  7519. height: math.unit(6, "feet"),
  7520. weight: math.unit(195, "lb"),
  7521. name: "Front",
  7522. image: {
  7523. source: "./media/characters/rogue/front.svg"
  7524. }
  7525. },
  7526. },
  7527. [
  7528. {
  7529. name: "Macro",
  7530. height: math.unit(90, "feet"),
  7531. default: true
  7532. },
  7533. ]
  7534. ))
  7535. characterMakers.push(() => makeCharacter(
  7536. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7537. {
  7538. standing: {
  7539. height: math.unit(5 + 8 / 12, "feet"),
  7540. weight: math.unit(140, "lb"),
  7541. name: "Standing",
  7542. image: {
  7543. source: "./media/characters/piper/standing.svg",
  7544. extra: 1440/1284,
  7545. bottom: 66/1506
  7546. }
  7547. },
  7548. running: {
  7549. height: math.unit(5 + 8 / 12, "feet"),
  7550. weight: math.unit(140, "lb"),
  7551. name: "Running",
  7552. image: {
  7553. source: "./media/characters/piper/running.svg",
  7554. extra: 3948/3655,
  7555. bottom: 0/3948
  7556. }
  7557. },
  7558. sole: {
  7559. height: math.unit(0.81, "feet"),
  7560. weight: math.unit(2, "kg"),
  7561. name: "Sole",
  7562. image: {
  7563. source: "./media/characters/piper/sole.svg"
  7564. }
  7565. },
  7566. nipple: {
  7567. height: math.unit(0.25, "feet"),
  7568. weight: math.unit(1.5, "lb"),
  7569. name: "Nipple",
  7570. image: {
  7571. source: "./media/characters/piper/nipple.svg"
  7572. }
  7573. },
  7574. head: {
  7575. height: math.unit(1.1, "feet"),
  7576. name: "Head",
  7577. image: {
  7578. source: "./media/characters/piper/head.svg"
  7579. }
  7580. },
  7581. },
  7582. [
  7583. {
  7584. name: "Micro",
  7585. height: math.unit(2, "inches")
  7586. },
  7587. {
  7588. name: "Normal",
  7589. height: math.unit(5 + 8 / 12, "feet")
  7590. },
  7591. {
  7592. name: "Macro",
  7593. height: math.unit(250, "feet"),
  7594. default: true
  7595. },
  7596. {
  7597. name: "Megamacro",
  7598. height: math.unit(7, "miles")
  7599. },
  7600. ]
  7601. ))
  7602. characterMakers.push(() => makeCharacter(
  7603. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7604. {
  7605. front: {
  7606. height: math.unit(6, "feet"),
  7607. weight: math.unit(220, "lb"),
  7608. name: "Front",
  7609. image: {
  7610. source: "./media/characters/gemini/front.svg"
  7611. }
  7612. },
  7613. back: {
  7614. height: math.unit(6, "feet"),
  7615. weight: math.unit(220, "lb"),
  7616. name: "Back",
  7617. image: {
  7618. source: "./media/characters/gemini/back.svg"
  7619. }
  7620. },
  7621. kneeling: {
  7622. height: math.unit(6 / 1.5, "feet"),
  7623. weight: math.unit(220, "lb"),
  7624. name: "Kneeling",
  7625. image: {
  7626. source: "./media/characters/gemini/kneeling.svg",
  7627. bottom: 0.02
  7628. }
  7629. },
  7630. },
  7631. [
  7632. {
  7633. name: "Macro",
  7634. height: math.unit(300, "meters"),
  7635. default: true
  7636. },
  7637. {
  7638. name: "Megamacro",
  7639. height: math.unit(6900, "meters")
  7640. },
  7641. ]
  7642. ))
  7643. characterMakers.push(() => makeCharacter(
  7644. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7645. {
  7646. anthro: {
  7647. height: math.unit(2.35, "meters"),
  7648. weight: math.unit(73, "kg"),
  7649. name: "Anthro",
  7650. image: {
  7651. source: "./media/characters/alicia/anthro.svg",
  7652. extra: 2571 / 2385,
  7653. bottom: 75 / 2648
  7654. }
  7655. },
  7656. paw: {
  7657. height: math.unit(1.32, "feet"),
  7658. name: "Paw",
  7659. image: {
  7660. source: "./media/characters/alicia/paw.svg"
  7661. }
  7662. },
  7663. feral: {
  7664. height: math.unit(1.69, "meters"),
  7665. weight: math.unit(73, "kg"),
  7666. name: "Feral",
  7667. image: {
  7668. source: "./media/characters/alicia/feral.svg",
  7669. extra: 2123 / 1715,
  7670. bottom: 222 / 2349
  7671. }
  7672. },
  7673. },
  7674. [
  7675. {
  7676. name: "Normal",
  7677. height: math.unit(2.35, "meters")
  7678. },
  7679. {
  7680. name: "Macro",
  7681. height: math.unit(60, "meters"),
  7682. default: true
  7683. },
  7684. {
  7685. name: "Megamacro",
  7686. height: math.unit(10000, "kilometers")
  7687. },
  7688. ]
  7689. ))
  7690. characterMakers.push(() => makeCharacter(
  7691. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7692. {
  7693. front: {
  7694. height: math.unit(7, "feet"),
  7695. weight: math.unit(250, "lbs"),
  7696. name: "Front",
  7697. image: {
  7698. source: "./media/characters/archy/front.svg"
  7699. }
  7700. }
  7701. },
  7702. [
  7703. {
  7704. name: "Micro",
  7705. height: math.unit(1, "inch")
  7706. },
  7707. {
  7708. name: "Shorty",
  7709. height: math.unit(5, "feet")
  7710. },
  7711. {
  7712. name: "Normal",
  7713. height: math.unit(7, "feet")
  7714. },
  7715. {
  7716. name: "Macro",
  7717. height: math.unit(600, "meters"),
  7718. default: true
  7719. },
  7720. {
  7721. name: "Megamacro",
  7722. height: math.unit(1, "mile")
  7723. },
  7724. ]
  7725. ))
  7726. characterMakers.push(() => makeCharacter(
  7727. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7728. {
  7729. front: {
  7730. height: math.unit(1.65, "meters"),
  7731. weight: math.unit(74, "kg"),
  7732. name: "Front",
  7733. image: {
  7734. source: "./media/characters/berri/front.svg",
  7735. extra: 857 / 837,
  7736. bottom: 18 / 877
  7737. }
  7738. },
  7739. bum: {
  7740. height: math.unit(1.46, "feet"),
  7741. name: "Bum",
  7742. image: {
  7743. source: "./media/characters/berri/bum.svg"
  7744. }
  7745. },
  7746. mouth: {
  7747. height: math.unit(0.44, "feet"),
  7748. name: "Mouth",
  7749. image: {
  7750. source: "./media/characters/berri/mouth.svg"
  7751. }
  7752. },
  7753. paw: {
  7754. height: math.unit(0.826, "feet"),
  7755. name: "Paw",
  7756. image: {
  7757. source: "./media/characters/berri/paw.svg"
  7758. }
  7759. },
  7760. },
  7761. [
  7762. {
  7763. name: "Normal",
  7764. height: math.unit(1.65, "meters")
  7765. },
  7766. {
  7767. name: "Macro",
  7768. height: math.unit(60, "m"),
  7769. default: true
  7770. },
  7771. {
  7772. name: "Megamacro",
  7773. height: math.unit(9.213, "km")
  7774. },
  7775. {
  7776. name: "Planet Eater",
  7777. height: math.unit(489, "megameters")
  7778. },
  7779. {
  7780. name: "Teramacro",
  7781. height: math.unit(2471635000000, "meters")
  7782. },
  7783. {
  7784. name: "Examacro",
  7785. height: math.unit(8.0624e+26, "meters")
  7786. }
  7787. ]
  7788. ))
  7789. characterMakers.push(() => makeCharacter(
  7790. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7791. {
  7792. front: {
  7793. height: math.unit(1.72, "meters"),
  7794. weight: math.unit(68, "kg"),
  7795. name: "Front",
  7796. image: {
  7797. source: "./media/characters/lexi/front.svg"
  7798. }
  7799. }
  7800. },
  7801. [
  7802. {
  7803. name: "Very Smol",
  7804. height: math.unit(10, "mm")
  7805. },
  7806. {
  7807. name: "Micro",
  7808. height: math.unit(6.8, "cm"),
  7809. default: true
  7810. },
  7811. {
  7812. name: "Normal",
  7813. height: math.unit(1.72, "m")
  7814. }
  7815. ]
  7816. ))
  7817. characterMakers.push(() => makeCharacter(
  7818. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7819. {
  7820. front: {
  7821. height: math.unit(1.69, "meters"),
  7822. weight: math.unit(68, "kg"),
  7823. name: "Front",
  7824. image: {
  7825. source: "./media/characters/martin/front.svg",
  7826. extra: 596 / 581
  7827. }
  7828. }
  7829. },
  7830. [
  7831. {
  7832. name: "Micro",
  7833. height: math.unit(6.85, "cm"),
  7834. default: true
  7835. },
  7836. {
  7837. name: "Normal",
  7838. height: math.unit(1.69, "m")
  7839. }
  7840. ]
  7841. ))
  7842. characterMakers.push(() => makeCharacter(
  7843. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7844. {
  7845. front: {
  7846. height: math.unit(1.69, "meters"),
  7847. weight: math.unit(68, "kg"),
  7848. name: "Front",
  7849. image: {
  7850. source: "./media/characters/juno/front.svg"
  7851. }
  7852. }
  7853. },
  7854. [
  7855. {
  7856. name: "Micro",
  7857. height: math.unit(7, "cm")
  7858. },
  7859. {
  7860. name: "Normal",
  7861. height: math.unit(1.89, "m")
  7862. },
  7863. {
  7864. name: "Macro",
  7865. height: math.unit(353, "meters"),
  7866. default: true
  7867. }
  7868. ]
  7869. ))
  7870. characterMakers.push(() => makeCharacter(
  7871. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7872. {
  7873. front: {
  7874. height: math.unit(1.93, "meters"),
  7875. weight: math.unit(83, "kg"),
  7876. name: "Front",
  7877. image: {
  7878. source: "./media/characters/samantha/front.svg"
  7879. }
  7880. },
  7881. frontClothed: {
  7882. height: math.unit(1.93, "meters"),
  7883. weight: math.unit(83, "kg"),
  7884. name: "Front (Clothed)",
  7885. image: {
  7886. source: "./media/characters/samantha/front-clothed.svg"
  7887. }
  7888. },
  7889. back: {
  7890. height: math.unit(1.93, "meters"),
  7891. weight: math.unit(83, "kg"),
  7892. name: "Back",
  7893. image: {
  7894. source: "./media/characters/samantha/back.svg"
  7895. }
  7896. },
  7897. },
  7898. [
  7899. {
  7900. name: "Normal",
  7901. height: math.unit(1.93, "m")
  7902. },
  7903. {
  7904. name: "Macro",
  7905. height: math.unit(74, "meters"),
  7906. default: true
  7907. },
  7908. {
  7909. name: "Macro+",
  7910. height: math.unit(223, "meters"),
  7911. },
  7912. {
  7913. name: "Megamacro",
  7914. height: math.unit(8381, "meters"),
  7915. },
  7916. {
  7917. name: "Megamacro+",
  7918. height: math.unit(12000, "kilometers")
  7919. },
  7920. ]
  7921. ))
  7922. characterMakers.push(() => makeCharacter(
  7923. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7924. {
  7925. front: {
  7926. height: math.unit(1.92, "meters"),
  7927. weight: math.unit(80, "kg"),
  7928. name: "Front",
  7929. image: {
  7930. source: "./media/characters/dr-clay/front.svg"
  7931. }
  7932. },
  7933. frontClothed: {
  7934. height: math.unit(1.92, "meters"),
  7935. weight: math.unit(80, "kg"),
  7936. name: "Front (Clothed)",
  7937. image: {
  7938. source: "./media/characters/dr-clay/front-clothed.svg"
  7939. }
  7940. }
  7941. },
  7942. [
  7943. {
  7944. name: "Normal",
  7945. height: math.unit(1.92, "m")
  7946. },
  7947. {
  7948. name: "Macro",
  7949. height: math.unit(214, "meters"),
  7950. default: true
  7951. },
  7952. {
  7953. name: "Macro+",
  7954. height: math.unit(12.237, "meters"),
  7955. },
  7956. {
  7957. name: "Megamacro",
  7958. height: math.unit(557, "megameters"),
  7959. },
  7960. {
  7961. name: "Unimaginable",
  7962. height: math.unit(120e9, "lightyears")
  7963. },
  7964. ]
  7965. ))
  7966. characterMakers.push(() => makeCharacter(
  7967. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7968. {
  7969. front: {
  7970. height: math.unit(2, "meters"),
  7971. weight: math.unit(80, "kg"),
  7972. name: "Front",
  7973. image: {
  7974. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7975. }
  7976. }
  7977. },
  7978. [
  7979. {
  7980. name: "Teramacro",
  7981. height: math.unit(500000, "lightyears"),
  7982. default: true
  7983. },
  7984. ]
  7985. ))
  7986. characterMakers.push(() => makeCharacter(
  7987. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7988. {
  7989. crux: {
  7990. height: math.unit(2, "meters"),
  7991. weight: math.unit(150, "kg"),
  7992. name: "Crux",
  7993. image: {
  7994. source: "./media/characters/vemus/crux.svg",
  7995. extra: 1074/936,
  7996. bottom: 23/1097
  7997. }
  7998. },
  7999. skunkTanuki: {
  8000. height: math.unit(2, "meters"),
  8001. weight: math.unit(150, "kg"),
  8002. name: "Skunk-Tanuki",
  8003. image: {
  8004. source: "./media/characters/vemus/skunk-tanuki.svg",
  8005. extra: 926/893,
  8006. bottom: 20/946
  8007. }
  8008. },
  8009. },
  8010. [
  8011. {
  8012. name: "Normal",
  8013. height: math.unit(4, "meters"),
  8014. default: true
  8015. },
  8016. {
  8017. name: "Big",
  8018. height: math.unit(8, "meters")
  8019. },
  8020. {
  8021. name: "Macro",
  8022. height: math.unit(100, "meters")
  8023. },
  8024. {
  8025. name: "Macro+",
  8026. height: math.unit(1500, "meters")
  8027. },
  8028. {
  8029. name: "Stellar",
  8030. height: math.unit(14e8, "meters")
  8031. },
  8032. ]
  8033. ))
  8034. characterMakers.push(() => makeCharacter(
  8035. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8036. {
  8037. front: {
  8038. height: math.unit(2, "meters"),
  8039. weight: math.unit(70, "kg"),
  8040. name: "Front",
  8041. image: {
  8042. source: "./media/characters/beherit/front.svg",
  8043. extra: 1234/1109,
  8044. bottom: 55/1289
  8045. }
  8046. }
  8047. },
  8048. [
  8049. {
  8050. name: "Normal",
  8051. height: math.unit(6, "feet")
  8052. },
  8053. {
  8054. name: "Lorg",
  8055. height: math.unit(25, "feet"),
  8056. default: true
  8057. },
  8058. {
  8059. name: "Lorger",
  8060. height: math.unit(75, "feet")
  8061. },
  8062. {
  8063. name: "Macro",
  8064. height: math.unit(200, "meters")
  8065. },
  8066. ]
  8067. ))
  8068. characterMakers.push(() => makeCharacter(
  8069. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8070. {
  8071. front: {
  8072. height: math.unit(2, "meters"),
  8073. weight: math.unit(150, "kg"),
  8074. name: "Front",
  8075. image: {
  8076. source: "./media/characters/everett/front.svg",
  8077. extra: 1017/866,
  8078. bottom: 86/1103
  8079. }
  8080. },
  8081. paw: {
  8082. height: math.unit(2 / 3.6, "meters"),
  8083. name: "Paw",
  8084. image: {
  8085. source: "./media/characters/everett/paw.svg"
  8086. }
  8087. },
  8088. },
  8089. [
  8090. {
  8091. name: "Normal",
  8092. height: math.unit(15, "feet"),
  8093. default: true
  8094. },
  8095. {
  8096. name: "Lorg",
  8097. height: math.unit(70, "feet"),
  8098. default: true
  8099. },
  8100. {
  8101. name: "Lorger",
  8102. height: math.unit(250, "feet")
  8103. },
  8104. {
  8105. name: "Macro",
  8106. height: math.unit(500, "meters")
  8107. },
  8108. ]
  8109. ))
  8110. characterMakers.push(() => makeCharacter(
  8111. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8112. {
  8113. front: {
  8114. height: math.unit(2, "meters"),
  8115. weight: math.unit(86, "kg"),
  8116. name: "Front",
  8117. image: {
  8118. source: "./media/characters/rose/front.svg",
  8119. extra: 1785/1636,
  8120. bottom: 30/1815
  8121. },
  8122. form: "liom",
  8123. default: true
  8124. },
  8125. frontSporty: {
  8126. height: math.unit(2, "meters"),
  8127. weight: math.unit(86, "kg"),
  8128. name: "Front (Sporty)",
  8129. image: {
  8130. source: "./media/characters/rose/front-sporty.svg",
  8131. extra: 350/335,
  8132. bottom: 10/360
  8133. },
  8134. form: "liom"
  8135. },
  8136. frontAlt: {
  8137. height: math.unit(1.6, "meters"),
  8138. weight: math.unit(86, "kg"),
  8139. name: "Front (Alt)",
  8140. image: {
  8141. source: "./media/characters/rose/front-alt.svg",
  8142. extra: 299/283,
  8143. bottom: 3/302
  8144. },
  8145. form: "liom"
  8146. },
  8147. plush: {
  8148. height: math.unit(2, "meters"),
  8149. weight: math.unit(86/3, "kg"),
  8150. name: "Plush",
  8151. image: {
  8152. source: "./media/characters/rose/plush.svg",
  8153. extra: 361/337,
  8154. bottom: 11/372
  8155. },
  8156. form: "plush",
  8157. default: true
  8158. },
  8159. faeStanding: {
  8160. height: math.unit(10, "cm"),
  8161. weight: math.unit(10, "grams"),
  8162. name: "Standing",
  8163. image: {
  8164. source: "./media/characters/rose/fae-standing.svg",
  8165. extra: 1189/1060,
  8166. bottom: 27/1216
  8167. },
  8168. form: "fae",
  8169. default: true
  8170. },
  8171. faeSitting: {
  8172. height: math.unit(5, "cm"),
  8173. weight: math.unit(10, "grams"),
  8174. name: "Sitting",
  8175. image: {
  8176. source: "./media/characters/rose/fae-sitting.svg",
  8177. extra: 737/577,
  8178. bottom: 356/1093
  8179. },
  8180. form: "fae"
  8181. },
  8182. faePaw: {
  8183. height: math.unit(1.35, "cm"),
  8184. name: "Paw",
  8185. image: {
  8186. source: "./media/characters/rose/fae-paw.svg"
  8187. },
  8188. form: "fae"
  8189. },
  8190. },
  8191. [
  8192. {
  8193. name: "True Micro",
  8194. height: math.unit(9, "cm"),
  8195. form: "liom"
  8196. },
  8197. {
  8198. name: "Micro",
  8199. height: math.unit(16, "cm"),
  8200. form: "liom"
  8201. },
  8202. {
  8203. name: "Normal",
  8204. height: math.unit(1.85, "meters"),
  8205. default: true,
  8206. form: "liom"
  8207. },
  8208. {
  8209. name: "Mini-Macro",
  8210. height: math.unit(5, "meters"),
  8211. form: "liom"
  8212. },
  8213. {
  8214. name: "Macro",
  8215. height: math.unit(15, "meters"),
  8216. form: "liom"
  8217. },
  8218. {
  8219. name: "True Macro",
  8220. height: math.unit(40, "meters"),
  8221. form: "liom"
  8222. },
  8223. {
  8224. name: "City Scale",
  8225. height: math.unit(1, "km"),
  8226. form: "liom"
  8227. },
  8228. {
  8229. name: "Plushie",
  8230. height: math.unit(9, "cm"),
  8231. form: "plush",
  8232. default: true
  8233. },
  8234. {
  8235. name: "Fae",
  8236. height: math.unit(10, "cm"),
  8237. form: "fae",
  8238. default: true
  8239. },
  8240. ],
  8241. {
  8242. "liom": {
  8243. name: "Liom"
  8244. },
  8245. "plush": {
  8246. name: "Plush"
  8247. },
  8248. "fae": {
  8249. name: "Fae Fox",
  8250. default: true
  8251. }
  8252. }
  8253. ))
  8254. characterMakers.push(() => makeCharacter(
  8255. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8256. {
  8257. front: {
  8258. height: math.unit(2, "meters"),
  8259. weight: math.unit(350, "lbs"),
  8260. name: "Front",
  8261. image: {
  8262. source: "./media/characters/regal/front.svg"
  8263. }
  8264. },
  8265. back: {
  8266. height: math.unit(2, "meters"),
  8267. weight: math.unit(350, "lbs"),
  8268. name: "Back",
  8269. image: {
  8270. source: "./media/characters/regal/back.svg"
  8271. }
  8272. },
  8273. },
  8274. [
  8275. {
  8276. name: "Macro",
  8277. height: math.unit(350, "feet"),
  8278. default: true
  8279. }
  8280. ]
  8281. ))
  8282. characterMakers.push(() => makeCharacter(
  8283. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8284. {
  8285. standing: {
  8286. height: math.unit(4 + 11/12, "feet"),
  8287. weight: math.unit(100, "lb"),
  8288. name: "Standing",
  8289. image: {
  8290. source: "./media/characters/opal/standing.svg",
  8291. extra: 1588/1513,
  8292. bottom: 23/1611
  8293. }
  8294. },
  8295. sitting: {
  8296. height: math.unit(2.3, "feet"),
  8297. weight: math.unit(100, "lb"),
  8298. name: "Sitting",
  8299. image: {
  8300. source: "./media/characters/opal/sitting.svg",
  8301. extra: 1031/892,
  8302. bottom: 142/1173
  8303. }
  8304. },
  8305. hand: {
  8306. height: math.unit(0.59, "feet"),
  8307. name: "Hand",
  8308. image: {
  8309. source: "./media/characters/opal/hand.svg"
  8310. }
  8311. },
  8312. foot: {
  8313. height: math.unit(0.61, "feet"),
  8314. name: "Foot",
  8315. image: {
  8316. source: "./media/characters/opal/foot.svg"
  8317. }
  8318. },
  8319. },
  8320. [
  8321. {
  8322. name: "Small",
  8323. height: math.unit(4 + 11 / 12, "feet")
  8324. },
  8325. {
  8326. name: "Normal",
  8327. height: math.unit(20, "feet"),
  8328. default: true
  8329. },
  8330. {
  8331. name: "Macro",
  8332. height: math.unit(120, "feet")
  8333. },
  8334. {
  8335. name: "Megamacro",
  8336. height: math.unit(80, "miles")
  8337. },
  8338. {
  8339. name: "True Size",
  8340. height: math.unit(100000, "lightyears")
  8341. },
  8342. ]
  8343. ))
  8344. characterMakers.push(() => makeCharacter(
  8345. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8346. {
  8347. front: {
  8348. height: math.unit(6, "feet"),
  8349. weight: math.unit(200, "lbs"),
  8350. name: "Front",
  8351. image: {
  8352. source: "./media/characters/vector-wuff/front.svg"
  8353. }
  8354. }
  8355. },
  8356. [
  8357. {
  8358. name: "Normal",
  8359. height: math.unit(2.8, "meters")
  8360. },
  8361. {
  8362. name: "Macro",
  8363. height: math.unit(450, "meters"),
  8364. default: true
  8365. },
  8366. {
  8367. name: "Megamacro",
  8368. height: math.unit(15, "kilometers")
  8369. }
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8374. {
  8375. front: {
  8376. height: math.unit(6, "feet"),
  8377. weight: math.unit(256, "lbs"),
  8378. name: "Front",
  8379. image: {
  8380. source: "./media/characters/dannik/front.svg"
  8381. }
  8382. }
  8383. },
  8384. [
  8385. {
  8386. name: "Macro",
  8387. height: math.unit(69.57, "meters"),
  8388. default: true
  8389. },
  8390. ]
  8391. ))
  8392. characterMakers.push(() => makeCharacter(
  8393. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8394. {
  8395. front: {
  8396. height: math.unit(6, "feet"),
  8397. weight: math.unit(120, "lbs"),
  8398. name: "Front",
  8399. image: {
  8400. source: "./media/characters/azura-saharah/front.svg"
  8401. }
  8402. },
  8403. back: {
  8404. height: math.unit(6, "feet"),
  8405. weight: math.unit(120, "lbs"),
  8406. name: "Back",
  8407. image: {
  8408. source: "./media/characters/azura-saharah/back.svg"
  8409. }
  8410. },
  8411. },
  8412. [
  8413. {
  8414. name: "Macro",
  8415. height: math.unit(100, "feet"),
  8416. default: true
  8417. },
  8418. ]
  8419. ))
  8420. characterMakers.push(() => makeCharacter(
  8421. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8422. {
  8423. side: {
  8424. height: math.unit(5 + 4 / 12, "feet"),
  8425. weight: math.unit(163, "lbs"),
  8426. name: "Side",
  8427. image: {
  8428. source: "./media/characters/kennedy/side.svg"
  8429. }
  8430. }
  8431. },
  8432. [
  8433. {
  8434. name: "Standard Doggo",
  8435. height: math.unit(5 + 4 / 12, "feet")
  8436. },
  8437. {
  8438. name: "Big Doggo",
  8439. height: math.unit(25 + 3 / 12, "feet"),
  8440. default: true
  8441. },
  8442. ]
  8443. ))
  8444. characterMakers.push(() => makeCharacter(
  8445. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8446. {
  8447. front: {
  8448. height: math.unit(5 + 5/12, "feet"),
  8449. weight: math.unit(100, "lbs"),
  8450. name: "Front",
  8451. image: {
  8452. source: "./media/characters/odios-de-lunar/front.svg",
  8453. extra: 1468/1323,
  8454. bottom: 22/1490
  8455. }
  8456. }
  8457. },
  8458. [
  8459. {
  8460. name: "Micro",
  8461. height: math.unit(3, "inches")
  8462. },
  8463. {
  8464. name: "Normal",
  8465. height: math.unit(5.5, "feet"),
  8466. default: true
  8467. },
  8468. {
  8469. name: "Macro",
  8470. height: math.unit(100, "feet")
  8471. },
  8472. ]
  8473. ))
  8474. characterMakers.push(() => makeCharacter(
  8475. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8476. {
  8477. back: {
  8478. height: math.unit(6, "feet"),
  8479. weight: math.unit(220, "lbs"),
  8480. name: "Back",
  8481. image: {
  8482. source: "./media/characters/mandake/back.svg"
  8483. }
  8484. }
  8485. },
  8486. [
  8487. {
  8488. name: "Normal",
  8489. height: math.unit(7, "feet"),
  8490. default: true
  8491. },
  8492. {
  8493. name: "Macro",
  8494. height: math.unit(78, "feet")
  8495. },
  8496. {
  8497. name: "Macro+",
  8498. height: math.unit(300, "meters")
  8499. },
  8500. {
  8501. name: "Macro++",
  8502. height: math.unit(2400, "feet")
  8503. },
  8504. {
  8505. name: "Megamacro",
  8506. height: math.unit(5167, "meters")
  8507. },
  8508. {
  8509. name: "Gigamacro",
  8510. height: math.unit(41769, "miles")
  8511. },
  8512. ]
  8513. ))
  8514. characterMakers.push(() => makeCharacter(
  8515. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8516. {
  8517. front: {
  8518. height: math.unit(6, "feet"),
  8519. weight: math.unit(120, "lbs"),
  8520. name: "Front",
  8521. image: {
  8522. source: "./media/characters/yozey/front.svg"
  8523. }
  8524. },
  8525. frontAlt: {
  8526. height: math.unit(6, "feet"),
  8527. weight: math.unit(120, "lbs"),
  8528. name: "Front (Alt)",
  8529. image: {
  8530. source: "./media/characters/yozey/front-alt.svg"
  8531. }
  8532. },
  8533. side: {
  8534. height: math.unit(6, "feet"),
  8535. weight: math.unit(120, "lbs"),
  8536. name: "Side",
  8537. image: {
  8538. source: "./media/characters/yozey/side.svg"
  8539. }
  8540. },
  8541. },
  8542. [
  8543. {
  8544. name: "Micro",
  8545. height: math.unit(3, "inches"),
  8546. default: true
  8547. },
  8548. {
  8549. name: "Normal",
  8550. height: math.unit(6, "feet")
  8551. }
  8552. ]
  8553. ))
  8554. characterMakers.push(() => makeCharacter(
  8555. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8556. {
  8557. front: {
  8558. height: math.unit(6, "feet"),
  8559. weight: math.unit(103, "lbs"),
  8560. name: "Front",
  8561. image: {
  8562. source: "./media/characters/valeska-voss/front.svg"
  8563. }
  8564. }
  8565. },
  8566. [
  8567. {
  8568. name: "Mini-Sized Sub",
  8569. height: math.unit(3.1, "inches")
  8570. },
  8571. {
  8572. name: "Mid-Sized Sub",
  8573. height: math.unit(6.2, "inches")
  8574. },
  8575. {
  8576. name: "Full-Sized Sub",
  8577. height: math.unit(9.3, "inches")
  8578. },
  8579. {
  8580. name: "Normal",
  8581. height: math.unit(5 + 2 / 12, "foot"),
  8582. default: true
  8583. },
  8584. ]
  8585. ))
  8586. characterMakers.push(() => makeCharacter(
  8587. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8588. {
  8589. front: {
  8590. height: math.unit(6, "feet"),
  8591. weight: math.unit(160, "lbs"),
  8592. name: "Front",
  8593. image: {
  8594. source: "./media/characters/gene-zeta/front.svg",
  8595. extra: 3006 / 2826,
  8596. bottom: 182 / 3188
  8597. }
  8598. }
  8599. },
  8600. [
  8601. {
  8602. name: "Micro",
  8603. height: math.unit(6, "inches")
  8604. },
  8605. {
  8606. name: "Normal",
  8607. height: math.unit(5 + 11 / 12, "foot"),
  8608. default: true
  8609. },
  8610. {
  8611. name: "Macro",
  8612. height: math.unit(140, "feet")
  8613. },
  8614. {
  8615. name: "Supercharged",
  8616. height: math.unit(2500, "feet")
  8617. },
  8618. ]
  8619. ))
  8620. characterMakers.push(() => makeCharacter(
  8621. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8622. {
  8623. front: {
  8624. height: math.unit(6, "feet"),
  8625. weight: math.unit(350, "lbs"),
  8626. name: "Front",
  8627. image: {
  8628. source: "./media/characters/razinox/front.svg",
  8629. extra: 1686 / 1548,
  8630. bottom: 28.2 / 1868
  8631. }
  8632. },
  8633. back: {
  8634. height: math.unit(6, "feet"),
  8635. weight: math.unit(350, "lbs"),
  8636. name: "Back",
  8637. image: {
  8638. source: "./media/characters/razinox/back.svg",
  8639. extra: 1660 / 1590,
  8640. bottom: 15 / 1665
  8641. }
  8642. },
  8643. },
  8644. [
  8645. {
  8646. name: "Normal",
  8647. height: math.unit(10 + 8 / 12, "foot")
  8648. },
  8649. {
  8650. name: "Minimacro",
  8651. height: math.unit(15, "foot")
  8652. },
  8653. {
  8654. name: "Macro",
  8655. height: math.unit(60, "foot"),
  8656. default: true
  8657. },
  8658. {
  8659. name: "Megamacro",
  8660. height: math.unit(5, "miles")
  8661. },
  8662. {
  8663. name: "Gigamacro",
  8664. height: math.unit(6000, "miles")
  8665. },
  8666. ]
  8667. ))
  8668. characterMakers.push(() => makeCharacter(
  8669. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8670. {
  8671. front: {
  8672. height: math.unit(6, "feet"),
  8673. weight: math.unit(150, "lbs"),
  8674. name: "Front",
  8675. image: {
  8676. source: "./media/characters/cobalt/front.svg"
  8677. }
  8678. }
  8679. },
  8680. [
  8681. {
  8682. name: "Normal",
  8683. height: math.unit(8 + 1 / 12, "foot")
  8684. },
  8685. {
  8686. name: "Macro",
  8687. height: math.unit(111, "foot"),
  8688. default: true
  8689. },
  8690. {
  8691. name: "Supracosmic",
  8692. height: math.unit(1e42, "feet")
  8693. },
  8694. ]
  8695. ))
  8696. characterMakers.push(() => makeCharacter(
  8697. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8698. {
  8699. front: {
  8700. height: math.unit(5, "inches"),
  8701. name: "Front",
  8702. image: {
  8703. source: "./media/characters/amanda/front.svg",
  8704. extra: 926/791,
  8705. bottom: 38/964
  8706. }
  8707. },
  8708. back: {
  8709. height: math.unit(5, "inches"),
  8710. name: "Back",
  8711. image: {
  8712. source: "./media/characters/amanda/back.svg",
  8713. extra: 909/805,
  8714. bottom: 43/952
  8715. }
  8716. },
  8717. },
  8718. [
  8719. {
  8720. name: "Micro",
  8721. height: math.unit(5, "inches"),
  8722. default: true
  8723. },
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(2.75, "meters"),
  8731. weight: math.unit(1200, "lb"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/teal/front.svg",
  8735. extra: 2463 / 2320,
  8736. bottom: 166 / 2629
  8737. }
  8738. },
  8739. back: {
  8740. height: math.unit(2.75, "meters"),
  8741. weight: math.unit(1200, "lb"),
  8742. name: "Back",
  8743. image: {
  8744. source: "./media/characters/teal/back.svg",
  8745. extra: 2580 / 2489,
  8746. bottom: 151 / 2731
  8747. }
  8748. },
  8749. sitting: {
  8750. height: math.unit(1.9, "meters"),
  8751. weight: math.unit(1200, "lb"),
  8752. name: "Sitting",
  8753. image: {
  8754. source: "./media/characters/teal/sitting.svg",
  8755. extra: 623 / 590,
  8756. bottom: 121 / 744
  8757. }
  8758. },
  8759. standing: {
  8760. height: math.unit(2.75, "meters"),
  8761. weight: math.unit(1200, "lb"),
  8762. name: "Standing",
  8763. image: {
  8764. source: "./media/characters/teal/standing.svg",
  8765. extra: 923 / 893,
  8766. bottom: 60 / 983
  8767. }
  8768. },
  8769. stretching: {
  8770. height: math.unit(3.65, "meters"),
  8771. weight: math.unit(1200, "lb"),
  8772. name: "Stretching",
  8773. image: {
  8774. source: "./media/characters/teal/stretching.svg",
  8775. extra: 1276 / 1244,
  8776. bottom: 0 / 1276
  8777. }
  8778. },
  8779. legged: {
  8780. height: math.unit(1.3, "meters"),
  8781. weight: math.unit(100, "lb"),
  8782. name: "Legged",
  8783. image: {
  8784. source: "./media/characters/teal/legged.svg",
  8785. extra: 462 / 437,
  8786. bottom: 24 / 486
  8787. }
  8788. },
  8789. naga: {
  8790. height: math.unit(5.4, "meters"),
  8791. weight: math.unit(4000, "lb"),
  8792. name: "Naga",
  8793. image: {
  8794. source: "./media/characters/teal/naga.svg",
  8795. extra: 1902 / 1858,
  8796. bottom: 0 / 1902
  8797. }
  8798. },
  8799. hand: {
  8800. height: math.unit(0.52, "meters"),
  8801. name: "Hand",
  8802. image: {
  8803. source: "./media/characters/teal/hand.svg"
  8804. }
  8805. },
  8806. maw: {
  8807. height: math.unit(0.43, "meters"),
  8808. name: "Maw",
  8809. image: {
  8810. source: "./media/characters/teal/maw.svg"
  8811. }
  8812. },
  8813. slit: {
  8814. height: math.unit(0.25, "meters"),
  8815. name: "Slit",
  8816. image: {
  8817. source: "./media/characters/teal/slit.svg"
  8818. }
  8819. },
  8820. },
  8821. [
  8822. {
  8823. name: "Normal",
  8824. height: math.unit(2.75, "meters"),
  8825. default: true
  8826. },
  8827. {
  8828. name: "Macro",
  8829. height: math.unit(300, "feet")
  8830. },
  8831. {
  8832. name: "Macro+",
  8833. height: math.unit(2000, "feet")
  8834. },
  8835. ]
  8836. ))
  8837. characterMakers.push(() => makeCharacter(
  8838. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8839. {
  8840. frontCat: {
  8841. height: math.unit(6, "feet"),
  8842. weight: math.unit(180, "lbs"),
  8843. name: "Front (Cat)",
  8844. image: {
  8845. source: "./media/characters/ravin-amulet/front-cat.svg"
  8846. }
  8847. },
  8848. frontCatAlt: {
  8849. height: math.unit(6, "feet"),
  8850. weight: math.unit(180, "lbs"),
  8851. name: "Front (Alt, Cat)",
  8852. image: {
  8853. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8854. }
  8855. },
  8856. frontWerewolf: {
  8857. height: math.unit(6 * 1.2, "feet"),
  8858. weight: math.unit(225, "lbs"),
  8859. name: "Front (Werewolf)",
  8860. image: {
  8861. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8862. }
  8863. },
  8864. backWerewolf: {
  8865. height: math.unit(6 * 1.2, "feet"),
  8866. weight: math.unit(225, "lbs"),
  8867. name: "Back (Werewolf)",
  8868. image: {
  8869. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8870. }
  8871. },
  8872. },
  8873. [
  8874. {
  8875. name: "Nano",
  8876. height: math.unit(1, "micrometer")
  8877. },
  8878. {
  8879. name: "Micro",
  8880. height: math.unit(1, "inch")
  8881. },
  8882. {
  8883. name: "Normal",
  8884. height: math.unit(6, "feet"),
  8885. default: true
  8886. },
  8887. {
  8888. name: "Macro",
  8889. height: math.unit(60, "feet")
  8890. }
  8891. ]
  8892. ))
  8893. characterMakers.push(() => makeCharacter(
  8894. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8895. {
  8896. front: {
  8897. height: math.unit(6, "feet"),
  8898. weight: math.unit(165, "lbs"),
  8899. name: "Front",
  8900. image: {
  8901. source: "./media/characters/fluoresce/front.svg"
  8902. }
  8903. }
  8904. },
  8905. [
  8906. {
  8907. name: "Micro",
  8908. height: math.unit(6, "cm")
  8909. },
  8910. {
  8911. name: "Normal",
  8912. height: math.unit(5 + 7 / 12, "feet"),
  8913. default: true
  8914. },
  8915. {
  8916. name: "Macro",
  8917. height: math.unit(56, "feet")
  8918. },
  8919. {
  8920. name: "Megamacro",
  8921. height: math.unit(1.9, "miles")
  8922. },
  8923. ]
  8924. ))
  8925. characterMakers.push(() => makeCharacter(
  8926. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8927. {
  8928. front: {
  8929. height: math.unit(9 + 6 / 12, "feet"),
  8930. weight: math.unit(523, "lbs"),
  8931. name: "Side",
  8932. image: {
  8933. source: "./media/characters/aurora/side.svg",
  8934. extra: 474/393,
  8935. bottom: 5/479
  8936. }
  8937. }
  8938. },
  8939. [
  8940. {
  8941. name: "Normal",
  8942. height: math.unit(9 + 6 / 12, "feet")
  8943. },
  8944. {
  8945. name: "Macro",
  8946. height: math.unit(96, "feet"),
  8947. default: true
  8948. },
  8949. {
  8950. name: "Macro+",
  8951. height: math.unit(243, "feet")
  8952. },
  8953. ]
  8954. ))
  8955. characterMakers.push(() => makeCharacter(
  8956. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8957. {
  8958. front: {
  8959. height: math.unit(194, "cm"),
  8960. weight: math.unit(90, "kg"),
  8961. name: "Front",
  8962. image: {
  8963. source: "./media/characters/ranek/front.svg",
  8964. extra: 1862/1791,
  8965. bottom: 80/1942
  8966. }
  8967. },
  8968. back: {
  8969. height: math.unit(194, "cm"),
  8970. weight: math.unit(90, "kg"),
  8971. name: "Back",
  8972. image: {
  8973. source: "./media/characters/ranek/back.svg",
  8974. extra: 1853/1787,
  8975. bottom: 74/1927
  8976. }
  8977. },
  8978. feral: {
  8979. height: math.unit(30, "cm"),
  8980. weight: math.unit(1.6, "lbs"),
  8981. name: "Feral",
  8982. image: {
  8983. source: "./media/characters/ranek/feral.svg",
  8984. extra: 990/631,
  8985. bottom: 29/1019
  8986. }
  8987. },
  8988. },
  8989. [
  8990. {
  8991. name: "Normal",
  8992. height: math.unit(194, "cm"),
  8993. default: true
  8994. },
  8995. {
  8996. name: "Macro",
  8997. height: math.unit(100, "meters")
  8998. },
  8999. ]
  9000. ))
  9001. characterMakers.push(() => makeCharacter(
  9002. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9003. {
  9004. front: {
  9005. height: math.unit(5 + 6 / 12, "feet"),
  9006. weight: math.unit(153, "lbs"),
  9007. name: "Front",
  9008. image: {
  9009. source: "./media/characters/andrew-cooper/front.svg"
  9010. }
  9011. },
  9012. },
  9013. [
  9014. {
  9015. name: "Nano",
  9016. height: math.unit(1, "mm")
  9017. },
  9018. {
  9019. name: "Micro",
  9020. height: math.unit(2, "inches")
  9021. },
  9022. {
  9023. name: "Normal",
  9024. height: math.unit(5 + 6 / 12, "feet"),
  9025. default: true
  9026. }
  9027. ]
  9028. ))
  9029. characterMakers.push(() => makeCharacter(
  9030. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9031. {
  9032. front: {
  9033. height: math.unit(6, "feet"),
  9034. weight: math.unit(180, "lbs"),
  9035. name: "Front",
  9036. image: {
  9037. source: "./media/characters/akane-sato/front.svg",
  9038. extra: 1219 / 1140
  9039. }
  9040. },
  9041. back: {
  9042. height: math.unit(6, "feet"),
  9043. weight: math.unit(180, "lbs"),
  9044. name: "Back",
  9045. image: {
  9046. source: "./media/characters/akane-sato/back.svg",
  9047. extra: 1219 / 1170
  9048. }
  9049. },
  9050. },
  9051. [
  9052. {
  9053. name: "Normal",
  9054. height: math.unit(2.5, "meters")
  9055. },
  9056. {
  9057. name: "Macro",
  9058. height: math.unit(250, "meters"),
  9059. default: true
  9060. },
  9061. {
  9062. name: "Megamacro",
  9063. height: math.unit(25, "km")
  9064. },
  9065. ]
  9066. ))
  9067. characterMakers.push(() => makeCharacter(
  9068. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9069. {
  9070. front: {
  9071. height: math.unit(6, "feet"),
  9072. weight: math.unit(65, "kg"),
  9073. name: "Front",
  9074. image: {
  9075. source: "./media/characters/rook/front.svg",
  9076. extra: 960 / 950
  9077. }
  9078. }
  9079. },
  9080. [
  9081. {
  9082. name: "Normal",
  9083. height: math.unit(8.8, "feet")
  9084. },
  9085. {
  9086. name: "Macro",
  9087. height: math.unit(88, "feet"),
  9088. default: true
  9089. },
  9090. {
  9091. name: "Megamacro",
  9092. height: math.unit(8, "miles")
  9093. },
  9094. ]
  9095. ))
  9096. characterMakers.push(() => makeCharacter(
  9097. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9098. {
  9099. front: {
  9100. height: math.unit(12 + 2 / 12, "feet"),
  9101. weight: math.unit(808, "lbs"),
  9102. name: "Front",
  9103. image: {
  9104. source: "./media/characters/prodigy/front.svg"
  9105. }
  9106. }
  9107. },
  9108. [
  9109. {
  9110. name: "Normal",
  9111. height: math.unit(12 + 2 / 12, "feet"),
  9112. default: true
  9113. },
  9114. {
  9115. name: "Macro",
  9116. height: math.unit(143, "feet")
  9117. },
  9118. {
  9119. name: "Macro+",
  9120. height: math.unit(400, "feet")
  9121. },
  9122. ]
  9123. ))
  9124. characterMakers.push(() => makeCharacter(
  9125. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9126. {
  9127. front: {
  9128. height: math.unit(6, "feet"),
  9129. weight: math.unit(225, "lbs"),
  9130. name: "Front",
  9131. image: {
  9132. source: "./media/characters/daniel/front.svg"
  9133. }
  9134. },
  9135. leaning: {
  9136. height: math.unit(6, "feet"),
  9137. weight: math.unit(225, "lbs"),
  9138. name: "Leaning",
  9139. image: {
  9140. source: "./media/characters/daniel/leaning.svg"
  9141. }
  9142. },
  9143. },
  9144. [
  9145. {
  9146. name: "Macro",
  9147. height: math.unit(1000, "feet"),
  9148. default: true
  9149. },
  9150. ]
  9151. ))
  9152. characterMakers.push(() => makeCharacter(
  9153. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9154. {
  9155. front: {
  9156. height: math.unit(6, "feet"),
  9157. weight: math.unit(88, "lbs"),
  9158. name: "Front",
  9159. image: {
  9160. source: "./media/characters/chiros/front.svg",
  9161. extra: 306 / 226
  9162. }
  9163. },
  9164. side: {
  9165. height: math.unit(6, "feet"),
  9166. weight: math.unit(88, "lbs"),
  9167. name: "Side",
  9168. image: {
  9169. source: "./media/characters/chiros/side.svg",
  9170. extra: 306 / 226
  9171. }
  9172. },
  9173. },
  9174. [
  9175. {
  9176. name: "Normal",
  9177. height: math.unit(6, "cm"),
  9178. default: true
  9179. },
  9180. ]
  9181. ))
  9182. characterMakers.push(() => makeCharacter(
  9183. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9184. {
  9185. front: {
  9186. height: math.unit(6, "feet"),
  9187. weight: math.unit(100, "lbs"),
  9188. name: "Front",
  9189. image: {
  9190. source: "./media/characters/selka/front.svg",
  9191. extra: 947 / 887
  9192. }
  9193. }
  9194. },
  9195. [
  9196. {
  9197. name: "Normal",
  9198. height: math.unit(5, "cm"),
  9199. default: true
  9200. },
  9201. ]
  9202. ))
  9203. characterMakers.push(() => makeCharacter(
  9204. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9205. {
  9206. front: {
  9207. height: math.unit(8 + 3 / 12, "feet"),
  9208. weight: math.unit(424, "lbs"),
  9209. name: "Front",
  9210. image: {
  9211. source: "./media/characters/verin/front.svg",
  9212. extra: 1845 / 1550
  9213. }
  9214. },
  9215. frontArmored: {
  9216. height: math.unit(8 + 3 / 12, "feet"),
  9217. weight: math.unit(424, "lbs"),
  9218. name: "Front (Armored)",
  9219. image: {
  9220. source: "./media/characters/verin/front-armor.svg",
  9221. extra: 1845 / 1550,
  9222. bottom: 0.01
  9223. }
  9224. },
  9225. back: {
  9226. height: math.unit(8 + 3 / 12, "feet"),
  9227. weight: math.unit(424, "lbs"),
  9228. name: "Back",
  9229. image: {
  9230. source: "./media/characters/verin/back.svg",
  9231. bottom: 0.1,
  9232. extra: 1
  9233. }
  9234. },
  9235. foot: {
  9236. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9237. name: "Foot",
  9238. image: {
  9239. source: "./media/characters/verin/foot.svg"
  9240. }
  9241. },
  9242. },
  9243. [
  9244. {
  9245. name: "Normal",
  9246. height: math.unit(8 + 3 / 12, "feet")
  9247. },
  9248. {
  9249. name: "Minimacro",
  9250. height: math.unit(21, "feet"),
  9251. default: true
  9252. },
  9253. {
  9254. name: "Macro",
  9255. height: math.unit(626, "feet")
  9256. },
  9257. ]
  9258. ))
  9259. characterMakers.push(() => makeCharacter(
  9260. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9261. {
  9262. front: {
  9263. height: math.unit(2.718, "meters"),
  9264. weight: math.unit(150, "lbs"),
  9265. name: "Front",
  9266. image: {
  9267. source: "./media/characters/sovrim-terraquian/front.svg",
  9268. extra: 1752/1689,
  9269. bottom: 36/1788
  9270. }
  9271. },
  9272. back: {
  9273. height: math.unit(2.718, "meters"),
  9274. weight: math.unit(150, "lbs"),
  9275. name: "Back",
  9276. image: {
  9277. source: "./media/characters/sovrim-terraquian/back.svg",
  9278. extra: 1698/1657,
  9279. bottom: 58/1756
  9280. }
  9281. },
  9282. tongue: {
  9283. height: math.unit(2.865, "feet"),
  9284. name: "Tongue",
  9285. image: {
  9286. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9287. }
  9288. },
  9289. hand: {
  9290. height: math.unit(1.61, "feet"),
  9291. name: "Hand",
  9292. image: {
  9293. source: "./media/characters/sovrim-terraquian/hand.svg"
  9294. }
  9295. },
  9296. foot: {
  9297. height: math.unit(1.05, "feet"),
  9298. name: "Foot",
  9299. image: {
  9300. source: "./media/characters/sovrim-terraquian/foot.svg"
  9301. }
  9302. },
  9303. footAlt: {
  9304. height: math.unit(0.88, "feet"),
  9305. name: "Foot (Alt)",
  9306. image: {
  9307. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9308. }
  9309. },
  9310. },
  9311. [
  9312. {
  9313. name: "Micro",
  9314. height: math.unit(2, "inches")
  9315. },
  9316. {
  9317. name: "Small",
  9318. height: math.unit(1, "meter")
  9319. },
  9320. {
  9321. name: "Normal",
  9322. height: math.unit(Math.E, "meters"),
  9323. default: true
  9324. },
  9325. {
  9326. name: "Macro",
  9327. height: math.unit(20, "meters")
  9328. },
  9329. {
  9330. name: "Macro+",
  9331. height: math.unit(400, "meters")
  9332. },
  9333. ]
  9334. ))
  9335. characterMakers.push(() => makeCharacter(
  9336. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9337. {
  9338. front: {
  9339. height: math.unit(7, "feet"),
  9340. weight: math.unit(489, "lbs"),
  9341. name: "Front",
  9342. image: {
  9343. source: "./media/characters/reece-silvermane/front.svg",
  9344. bottom: 0.02,
  9345. extra: 1
  9346. }
  9347. },
  9348. },
  9349. [
  9350. {
  9351. name: "Macro",
  9352. height: math.unit(1.5, "miles"),
  9353. default: true
  9354. },
  9355. ]
  9356. ))
  9357. characterMakers.push(() => makeCharacter(
  9358. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9359. {
  9360. front: {
  9361. height: math.unit(6, "feet"),
  9362. weight: math.unit(78, "kg"),
  9363. name: "Front",
  9364. image: {
  9365. source: "./media/characters/kane/front.svg",
  9366. extra: 978 / 899
  9367. }
  9368. },
  9369. back: {
  9370. height: math.unit(6, "feet"),
  9371. weight: math.unit(78, "kg"),
  9372. name: "Back",
  9373. image: {
  9374. source: "./media/characters/kane/back.svg",
  9375. extra: 1966/1800,
  9376. bottom: 0/1966
  9377. }
  9378. },
  9379. head: {
  9380. height: math.unit(1.4, "feet"),
  9381. name: "Head",
  9382. image: {
  9383. source: "./media/characters/kane/head.svg"
  9384. }
  9385. },
  9386. },
  9387. [
  9388. {
  9389. name: "Normal",
  9390. height: math.unit(2.1, "m"),
  9391. },
  9392. {
  9393. name: "Macro",
  9394. height: math.unit(1, "km"),
  9395. default: true
  9396. },
  9397. ]
  9398. ))
  9399. characterMakers.push(() => makeCharacter(
  9400. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9401. {
  9402. front: {
  9403. height: math.unit(6, "feet"),
  9404. weight: math.unit(200, "kg"),
  9405. name: "Front",
  9406. image: {
  9407. source: "./media/characters/tegon/front.svg",
  9408. bottom: 0.01,
  9409. extra: 1
  9410. }
  9411. },
  9412. },
  9413. [
  9414. {
  9415. name: "Micro",
  9416. height: math.unit(1, "inch")
  9417. },
  9418. {
  9419. name: "Normal",
  9420. height: math.unit(6 + 3 / 12, "feet"),
  9421. default: true
  9422. },
  9423. {
  9424. name: "Macro",
  9425. height: math.unit(300, "feet")
  9426. },
  9427. {
  9428. name: "Megamacro",
  9429. height: math.unit(69, "miles")
  9430. },
  9431. ]
  9432. ))
  9433. characterMakers.push(() => makeCharacter(
  9434. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9435. {
  9436. side: {
  9437. height: math.unit(6, "feet"),
  9438. weight: math.unit(2304, "lbs"),
  9439. name: "Side",
  9440. image: {
  9441. source: "./media/characters/arcturax/side.svg",
  9442. extra: 790 / 376,
  9443. bottom: 0.01
  9444. }
  9445. },
  9446. },
  9447. [
  9448. {
  9449. name: "Micro",
  9450. height: math.unit(2, "inch")
  9451. },
  9452. {
  9453. name: "Normal",
  9454. height: math.unit(6, "feet")
  9455. },
  9456. {
  9457. name: "Macro",
  9458. height: math.unit(39, "feet"),
  9459. default: true
  9460. },
  9461. {
  9462. name: "Megamacro",
  9463. height: math.unit(7, "miles")
  9464. },
  9465. ]
  9466. ))
  9467. characterMakers.push(() => makeCharacter(
  9468. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9469. {
  9470. front: {
  9471. height: math.unit(6, "feet"),
  9472. weight: math.unit(50, "lbs"),
  9473. name: "Front",
  9474. image: {
  9475. source: "./media/characters/sentri/front.svg",
  9476. extra: 1750 / 1570,
  9477. bottom: 0.025
  9478. }
  9479. },
  9480. frontAlt: {
  9481. height: math.unit(6, "feet"),
  9482. weight: math.unit(50, "lbs"),
  9483. name: "Front (Alt)",
  9484. image: {
  9485. source: "./media/characters/sentri/front-alt.svg",
  9486. extra: 1750 / 1570,
  9487. bottom: 0.025
  9488. }
  9489. },
  9490. },
  9491. [
  9492. {
  9493. name: "Normal",
  9494. height: math.unit(15, "feet"),
  9495. default: true
  9496. },
  9497. {
  9498. name: "Macro",
  9499. height: math.unit(2500, "feet")
  9500. }
  9501. ]
  9502. ))
  9503. characterMakers.push(() => makeCharacter(
  9504. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9505. {
  9506. front: {
  9507. height: math.unit(5 + 8 / 12, "feet"),
  9508. weight: math.unit(130, "lbs"),
  9509. name: "Front",
  9510. image: {
  9511. source: "./media/characters/corvin/front.svg",
  9512. extra: 1803 / 1629
  9513. }
  9514. },
  9515. frontShirt: {
  9516. height: math.unit(5 + 8 / 12, "feet"),
  9517. weight: math.unit(130, "lbs"),
  9518. name: "Front (Shirt)",
  9519. image: {
  9520. source: "./media/characters/corvin/front-shirt.svg",
  9521. extra: 1803 / 1629
  9522. }
  9523. },
  9524. frontPoncho: {
  9525. height: math.unit(5 + 8 / 12, "feet"),
  9526. weight: math.unit(130, "lbs"),
  9527. name: "Front (Poncho)",
  9528. image: {
  9529. source: "./media/characters/corvin/front-poncho.svg",
  9530. extra: 1803 / 1629
  9531. }
  9532. },
  9533. side: {
  9534. height: math.unit(5 + 8 / 12, "feet"),
  9535. weight: math.unit(130, "lbs"),
  9536. name: "Side",
  9537. image: {
  9538. source: "./media/characters/corvin/side.svg",
  9539. extra: 1012 / 945
  9540. }
  9541. },
  9542. back: {
  9543. height: math.unit(5 + 8 / 12, "feet"),
  9544. weight: math.unit(130, "lbs"),
  9545. name: "Back",
  9546. image: {
  9547. source: "./media/characters/corvin/back.svg",
  9548. extra: 1803 / 1629
  9549. }
  9550. },
  9551. },
  9552. [
  9553. {
  9554. name: "Micro",
  9555. height: math.unit(3, "inches")
  9556. },
  9557. {
  9558. name: "Normal",
  9559. height: math.unit(5 + 8 / 12, "feet")
  9560. },
  9561. {
  9562. name: "Macro",
  9563. height: math.unit(300, "feet"),
  9564. default: true
  9565. },
  9566. {
  9567. name: "Megamacro",
  9568. height: math.unit(500, "miles")
  9569. }
  9570. ]
  9571. ))
  9572. characterMakers.push(() => makeCharacter(
  9573. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9574. {
  9575. front: {
  9576. height: math.unit(6, "feet"),
  9577. weight: math.unit(135, "lbs"),
  9578. name: "Front",
  9579. image: {
  9580. source: "./media/characters/q/front.svg",
  9581. extra: 854 / 752,
  9582. bottom: 0.005
  9583. }
  9584. },
  9585. back: {
  9586. height: math.unit(6, "feet"),
  9587. weight: math.unit(130, "lbs"),
  9588. name: "Back",
  9589. image: {
  9590. source: "./media/characters/q/back.svg",
  9591. extra: 854 / 752
  9592. }
  9593. },
  9594. },
  9595. [
  9596. {
  9597. name: "Macro",
  9598. height: math.unit(90, "feet"),
  9599. default: true
  9600. },
  9601. {
  9602. name: "Extra Macro",
  9603. height: math.unit(300, "feet"),
  9604. },
  9605. {
  9606. name: "BIG WALF",
  9607. height: math.unit(750, "feet"),
  9608. },
  9609. ]
  9610. ))
  9611. characterMakers.push(() => makeCharacter(
  9612. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9613. {
  9614. front: {
  9615. height: math.unit(3, "feet"),
  9616. weight: math.unit(28, "lbs"),
  9617. name: "Front",
  9618. image: {
  9619. source: "./media/characters/citrine/front.svg"
  9620. }
  9621. }
  9622. },
  9623. [
  9624. {
  9625. name: "Normal",
  9626. height: math.unit(3, "feet"),
  9627. default: true
  9628. }
  9629. ]
  9630. ))
  9631. characterMakers.push(() => makeCharacter(
  9632. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9633. {
  9634. front: {
  9635. height: math.unit(14, "feet"),
  9636. weight: math.unit(1450, "kg"),
  9637. preyCapacity: math.unit(15, "people"),
  9638. name: "Front",
  9639. image: {
  9640. source: "./media/characters/aura-starwind/front.svg",
  9641. extra: 1440/1327,
  9642. bottom: 11/1451
  9643. }
  9644. },
  9645. side: {
  9646. height: math.unit(14, "feet"),
  9647. weight: math.unit(1450, "kg"),
  9648. preyCapacity: math.unit(15, "people"),
  9649. name: "Side",
  9650. image: {
  9651. source: "./media/characters/aura-starwind/side.svg",
  9652. extra: 1654 / 1497
  9653. }
  9654. },
  9655. taur: {
  9656. height: math.unit(18, "feet"),
  9657. weight: math.unit(5500, "kg"),
  9658. preyCapacity: math.unit(50, "people"),
  9659. name: "Taur",
  9660. image: {
  9661. source: "./media/characters/aura-starwind/taur.svg",
  9662. extra: 1760 / 1650
  9663. }
  9664. },
  9665. feral: {
  9666. height: math.unit(46, "feet"),
  9667. weight: math.unit(25000, "kg"),
  9668. preyCapacity: math.unit(120, "people"),
  9669. name: "Feral",
  9670. image: {
  9671. source: "./media/characters/aura-starwind/feral.svg"
  9672. }
  9673. },
  9674. },
  9675. [
  9676. {
  9677. name: "Normal",
  9678. height: math.unit(14, "feet"),
  9679. default: true
  9680. },
  9681. {
  9682. name: "Macro",
  9683. height: math.unit(50, "meters")
  9684. },
  9685. {
  9686. name: "Megamacro",
  9687. height: math.unit(5000, "meters")
  9688. },
  9689. {
  9690. name: "Gigamacro",
  9691. height: math.unit(100000, "kilometers")
  9692. },
  9693. ]
  9694. ))
  9695. characterMakers.push(() => makeCharacter(
  9696. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9697. {
  9698. front: {
  9699. height: math.unit(2 + 7 / 12, "feet"),
  9700. weight: math.unit(32, "lbs"),
  9701. name: "Front",
  9702. image: {
  9703. source: "./media/characters/rivet/front.svg",
  9704. extra: 1716 / 1658,
  9705. bottom: 0.03
  9706. }
  9707. },
  9708. foot: {
  9709. height: math.unit(0.551, "feet"),
  9710. name: "Rivet's Foot",
  9711. image: {
  9712. source: "./media/characters/rivet/foot.svg"
  9713. },
  9714. rename: true
  9715. }
  9716. },
  9717. [
  9718. {
  9719. name: "Micro",
  9720. height: math.unit(1.5, "inches"),
  9721. },
  9722. {
  9723. name: "Normal",
  9724. height: math.unit(2 + 7 / 12, "feet"),
  9725. default: true
  9726. },
  9727. {
  9728. name: "Macro",
  9729. height: math.unit(85, "feet")
  9730. },
  9731. {
  9732. name: "Megamacro",
  9733. height: math.unit(2.2, "km")
  9734. }
  9735. ]
  9736. ))
  9737. characterMakers.push(() => makeCharacter(
  9738. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9739. {
  9740. front: {
  9741. height: math.unit(5 + 9 / 12, "feet"),
  9742. weight: math.unit(150, "lbs"),
  9743. name: "Front",
  9744. image: {
  9745. source: "./media/characters/coffee/front.svg",
  9746. extra: 946/880,
  9747. bottom: 66/1012
  9748. }
  9749. },
  9750. foot: {
  9751. height: math.unit(1.29, "feet"),
  9752. name: "Foot",
  9753. image: {
  9754. source: "./media/characters/coffee/foot.svg"
  9755. }
  9756. },
  9757. },
  9758. [
  9759. {
  9760. name: "Micro",
  9761. height: math.unit(2, "inches"),
  9762. },
  9763. {
  9764. name: "Normal",
  9765. height: math.unit(5 + 9 / 12, "feet"),
  9766. default: true
  9767. },
  9768. {
  9769. name: "Macro",
  9770. height: math.unit(800, "feet")
  9771. },
  9772. {
  9773. name: "Megamacro",
  9774. height: math.unit(25, "miles")
  9775. }
  9776. ]
  9777. ))
  9778. characterMakers.push(() => makeCharacter(
  9779. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9780. {
  9781. front: {
  9782. height: math.unit(6, "feet"),
  9783. weight: math.unit(200, "lbs"),
  9784. name: "Front",
  9785. image: {
  9786. source: "./media/characters/chari-gal/front.svg",
  9787. extra: 735/649,
  9788. bottom: 55/790
  9789. },
  9790. form: "normal",
  9791. default: true
  9792. },
  9793. back: {
  9794. height: math.unit(6, "feet"),
  9795. weight: math.unit(200, "lb"),
  9796. name: "Back",
  9797. image: {
  9798. source: "./media/characters/chari-gal/back.svg",
  9799. extra: 762/666,
  9800. bottom: 31/793
  9801. },
  9802. form: "normal"
  9803. },
  9804. mouth: {
  9805. height: math.unit(1.35, "feet"),
  9806. name: "Mouth",
  9807. image: {
  9808. source: "./media/characters/chari-gal/mouth.svg"
  9809. },
  9810. form: "normal"
  9811. },
  9812. gigantamax: {
  9813. height: math.unit(6 * 16, "feet"),
  9814. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9815. name: "Gigantamax",
  9816. image: {
  9817. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9818. extra: 1507/1149,
  9819. bottom: 254/1761
  9820. },
  9821. form: "gigantamax",
  9822. default: true
  9823. },
  9824. },
  9825. [
  9826. {
  9827. name: "Normal",
  9828. height: math.unit(5 + 7 / 12, "feet"),
  9829. form: "normal",
  9830. },
  9831. {
  9832. name: "Macro",
  9833. height: math.unit(200, "feet"),
  9834. default: true,
  9835. form: "normal"
  9836. },
  9837. {
  9838. name: "Normal",
  9839. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9840. form: "gigantamax",
  9841. },
  9842. {
  9843. name: "Macro",
  9844. height: math.unit(16 * 200, "feet"),
  9845. default: true,
  9846. form: "gigantamax"
  9847. },
  9848. ],
  9849. {
  9850. "normal": {
  9851. name: "Normal",
  9852. default: true
  9853. },
  9854. "gigantamax": {
  9855. name: "Gigantamax",
  9856. },
  9857. }
  9858. ))
  9859. characterMakers.push(() => makeCharacter(
  9860. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9861. {
  9862. front: {
  9863. height: math.unit(6, "feet"),
  9864. weight: math.unit(150, "lbs"),
  9865. name: "Front",
  9866. image: {
  9867. source: "./media/characters/nova/front.svg",
  9868. extra: 5000 / 4722,
  9869. bottom: 0.02
  9870. }
  9871. }
  9872. },
  9873. [
  9874. {
  9875. name: "Micro-",
  9876. height: math.unit(0.8, "inches")
  9877. },
  9878. {
  9879. name: "Micro",
  9880. height: math.unit(2, "inches"),
  9881. default: true
  9882. },
  9883. ]
  9884. ))
  9885. characterMakers.push(() => makeCharacter(
  9886. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9887. {
  9888. koboldFront: {
  9889. height: math.unit(3 + 1 / 12, "feet"),
  9890. weight: math.unit(21.7, "lbs"),
  9891. name: "Front",
  9892. image: {
  9893. source: "./media/characters/argent/kobold-front.svg",
  9894. extra: 1471 / 1331,
  9895. bottom: 100.8 / 1575.5
  9896. },
  9897. form: "kobold",
  9898. default: true
  9899. },
  9900. dragonFront: {
  9901. height: math.unit(75, "inches"),
  9902. name: "Front",
  9903. image: {
  9904. source: "./media/characters/argent/dragon-front.svg",
  9905. extra: 1389/1248,
  9906. bottom: 54/1443
  9907. },
  9908. form: "dragon",
  9909. },
  9910. dragonBack: {
  9911. height: math.unit(75, "inches"),
  9912. name: "Back",
  9913. image: {
  9914. source: "./media/characters/argent/dragon-back.svg",
  9915. extra: 1399/1271,
  9916. bottom: 23/1422
  9917. },
  9918. form: "dragon",
  9919. },
  9920. dragonDressed: {
  9921. height: math.unit(75, "inches"),
  9922. name: "Dressed",
  9923. image: {
  9924. source: "./media/characters/argent/dragon-dressed.svg",
  9925. extra: 1350/1215,
  9926. bottom: 26/1376
  9927. },
  9928. form: "dragon"
  9929. },
  9930. dragonHead: {
  9931. height: math.unit(23.5, "inches"),
  9932. name: "Head",
  9933. image: {
  9934. source: "./media/characters/argent/dragon-head.svg"
  9935. },
  9936. form: "dragon",
  9937. },
  9938. },
  9939. [
  9940. {
  9941. name: "Micro",
  9942. height: math.unit(2, "inches"),
  9943. form: "kobold",
  9944. },
  9945. {
  9946. name: "Normal",
  9947. height: math.unit(3 + 1 / 12, "feet"),
  9948. form: "kobold",
  9949. default: true
  9950. },
  9951. {
  9952. name: "Macro",
  9953. height: math.unit(120, "feet"),
  9954. form: "kobold",
  9955. },
  9956. {
  9957. name: "Speck",
  9958. height: math.unit(1, "mm"),
  9959. form: "dragon",
  9960. },
  9961. {
  9962. name: "Tiny",
  9963. height: math.unit(1, "cm"),
  9964. form: "dragon",
  9965. },
  9966. {
  9967. name: "Micro",
  9968. height: math.unit(5, "cm"),
  9969. form: "dragon",
  9970. },
  9971. {
  9972. name: "Normal",
  9973. height: math.unit(75, "inches"),
  9974. form: "dragon",
  9975. default: true
  9976. },
  9977. {
  9978. name: "Extra Tall",
  9979. height: math.unit(9, "feet"),
  9980. form: "dragon",
  9981. },
  9982. {
  9983. name: "Inconvenient",
  9984. height: math.unit(5, "meters"),
  9985. form: "dragon",
  9986. },
  9987. {
  9988. name: "Macro",
  9989. height: math.unit(70, "meters"),
  9990. form: "dragon",
  9991. },
  9992. {
  9993. name: "Macro+",
  9994. height: math.unit(250, "meters"),
  9995. form: "dragon",
  9996. },
  9997. {
  9998. name: "Megamacro",
  9999. height: math.unit(20, "km"),
  10000. form: "dragon",
  10001. },
  10002. {
  10003. name: "Mountainous",
  10004. height: math.unit(100, "km"),
  10005. form: "dragon",
  10006. },
  10007. {
  10008. name: "Continental",
  10009. height: math.unit(2, "megameters"),
  10010. form: "dragon",
  10011. },
  10012. {
  10013. name: "Too Big",
  10014. height: math.unit(900, "megameters"),
  10015. form: "dragon",
  10016. },
  10017. ],
  10018. {
  10019. "kobold": {
  10020. name: "Kobold",
  10021. default: true
  10022. },
  10023. "dragon": {
  10024. name: "Dragon",
  10025. },
  10026. }
  10027. ))
  10028. characterMakers.push(() => makeCharacter(
  10029. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10030. {
  10031. lamp: {
  10032. height: math.unit(7 * 1559 / 989, "feet"),
  10033. name: "Magic Lamp",
  10034. image: {
  10035. source: "./media/characters/mira-al-cul/lamp.svg",
  10036. extra: 1617 / 1559
  10037. }
  10038. },
  10039. front: {
  10040. height: math.unit(7, "feet"),
  10041. name: "Front",
  10042. image: {
  10043. source: "./media/characters/mira-al-cul/front.svg",
  10044. extra: 1044 / 990
  10045. }
  10046. },
  10047. },
  10048. [
  10049. {
  10050. name: "Heavily Restricted",
  10051. height: math.unit(7 * 1559 / 989, "feet")
  10052. },
  10053. {
  10054. name: "Freshly Freed",
  10055. height: math.unit(50 * 1559 / 989, "feet")
  10056. },
  10057. {
  10058. name: "World Encompassing",
  10059. height: math.unit(10000 * 1559 / 989, "miles")
  10060. },
  10061. {
  10062. name: "Galactic",
  10063. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10064. },
  10065. {
  10066. name: "Palmed Universe",
  10067. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10068. default: true
  10069. },
  10070. {
  10071. name: "Multiversal Matriarch",
  10072. height: math.unit(8.87e10, "yottameters")
  10073. },
  10074. {
  10075. name: "Void Mother",
  10076. height: math.unit(3.14e110, "yottaparsecs")
  10077. },
  10078. {
  10079. name: "Toying with Transcendence",
  10080. height: math.unit(1e307, "meters")
  10081. },
  10082. ]
  10083. ))
  10084. characterMakers.push(() => makeCharacter(
  10085. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10086. {
  10087. front: {
  10088. height: math.unit(17 + 1 / 12, "feet"),
  10089. weight: math.unit(476.2 * 5, "lbs"),
  10090. name: "Front",
  10091. image: {
  10092. source: "./media/characters/kuro-shi-uchū/front.svg",
  10093. extra: 2329 / 1835,
  10094. bottom: 0.02
  10095. }
  10096. },
  10097. },
  10098. [
  10099. {
  10100. name: "Micro",
  10101. height: math.unit(2, "inches")
  10102. },
  10103. {
  10104. name: "Normal",
  10105. height: math.unit(12, "meters")
  10106. },
  10107. {
  10108. name: "Planetary",
  10109. height: math.unit(0.00929, "AU"),
  10110. default: true
  10111. },
  10112. {
  10113. name: "Universal",
  10114. height: math.unit(20, "gigaparsecs")
  10115. },
  10116. ]
  10117. ))
  10118. characterMakers.push(() => makeCharacter(
  10119. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10120. {
  10121. front: {
  10122. height: math.unit(5 + 2 / 12, "feet"),
  10123. weight: math.unit(120, "lbs"),
  10124. name: "Front",
  10125. image: {
  10126. source: "./media/characters/katherine/front.svg",
  10127. extra: 2075 / 1969
  10128. }
  10129. },
  10130. dress: {
  10131. height: math.unit(5 + 2 / 12, "feet"),
  10132. weight: math.unit(120, "lbs"),
  10133. name: "Dress",
  10134. image: {
  10135. source: "./media/characters/katherine/dress.svg",
  10136. extra: 2258 / 2064
  10137. }
  10138. },
  10139. },
  10140. [
  10141. {
  10142. name: "Micro",
  10143. height: math.unit(1, "inches"),
  10144. default: true
  10145. },
  10146. {
  10147. name: "Normal",
  10148. height: math.unit(5 + 2 / 12, "feet")
  10149. },
  10150. {
  10151. name: "Macro",
  10152. height: math.unit(100, "meters")
  10153. },
  10154. {
  10155. name: "Megamacro",
  10156. height: math.unit(80, "miles")
  10157. },
  10158. ]
  10159. ))
  10160. characterMakers.push(() => makeCharacter(
  10161. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10162. {
  10163. front: {
  10164. height: math.unit(7 + 8 / 12, "feet"),
  10165. weight: math.unit(250, "lbs"),
  10166. name: "Front",
  10167. image: {
  10168. source: "./media/characters/yevis/front.svg",
  10169. extra: 1938 / 1755
  10170. }
  10171. }
  10172. },
  10173. [
  10174. {
  10175. name: "Mortal",
  10176. height: math.unit(7 + 8 / 12, "feet")
  10177. },
  10178. {
  10179. name: "Battle",
  10180. height: math.unit(25 + 11 / 12, "feet")
  10181. },
  10182. {
  10183. name: "Wrath",
  10184. height: math.unit(1654 + 11 / 12, "feet")
  10185. },
  10186. {
  10187. name: "Planet Destroyer",
  10188. height: math.unit(12000, "miles")
  10189. },
  10190. {
  10191. name: "Galaxy Conqueror",
  10192. height: math.unit(1.45, "zettameters"),
  10193. default: true
  10194. },
  10195. {
  10196. name: "Universal War",
  10197. height: math.unit(184, "gigaparsecs")
  10198. },
  10199. {
  10200. name: "Eternity War",
  10201. height: math.unit(1.98e55, "yottaparsecs")
  10202. },
  10203. ]
  10204. ))
  10205. characterMakers.push(() => makeCharacter(
  10206. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10207. {
  10208. front: {
  10209. height: math.unit(5 + 8 / 12, "feet"),
  10210. weight: math.unit(63, "kg"),
  10211. name: "Front",
  10212. image: {
  10213. source: "./media/characters/xavier/front.svg",
  10214. extra: 944 / 883
  10215. }
  10216. },
  10217. frontStretch: {
  10218. height: math.unit(5 + 8 / 12, "feet"),
  10219. weight: math.unit(63, "kg"),
  10220. name: "Stretching",
  10221. image: {
  10222. source: "./media/characters/xavier/front-stretch.svg",
  10223. extra: 962 / 820
  10224. }
  10225. },
  10226. },
  10227. [
  10228. {
  10229. name: "Normal",
  10230. height: math.unit(5 + 8 / 12, "feet")
  10231. },
  10232. {
  10233. name: "Macro",
  10234. height: math.unit(100, "meters"),
  10235. default: true
  10236. },
  10237. {
  10238. name: "McLargeHuge",
  10239. height: math.unit(10, "miles")
  10240. },
  10241. ]
  10242. ))
  10243. characterMakers.push(() => makeCharacter(
  10244. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10245. {
  10246. front: {
  10247. height: math.unit(5 + 5 / 12, "feet"),
  10248. weight: math.unit(150, "lb"),
  10249. name: "Front",
  10250. image: {
  10251. source: "./media/characters/joshii/front.svg",
  10252. extra: 765 / 653,
  10253. bottom: 51 / 816
  10254. }
  10255. },
  10256. foot: {
  10257. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10258. name: "Foot",
  10259. image: {
  10260. source: "./media/characters/joshii/foot.svg"
  10261. }
  10262. },
  10263. },
  10264. [
  10265. {
  10266. name: "Micro",
  10267. height: math.unit(2, "inches")
  10268. },
  10269. {
  10270. name: "Normal",
  10271. height: math.unit(5 + 5 / 12, "feet")
  10272. },
  10273. {
  10274. name: "Macro",
  10275. height: math.unit(785, "feet"),
  10276. default: true
  10277. },
  10278. {
  10279. name: "Megamacro",
  10280. height: math.unit(24.5, "miles")
  10281. },
  10282. ]
  10283. ))
  10284. characterMakers.push(() => makeCharacter(
  10285. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10286. {
  10287. front: {
  10288. height: math.unit(6, "feet"),
  10289. weight: math.unit(150, "lb"),
  10290. name: "Front",
  10291. image: {
  10292. source: "./media/characters/goddess-elizabeth/front.svg",
  10293. extra: 1800 / 1525,
  10294. bottom: 0.005
  10295. }
  10296. },
  10297. foot: {
  10298. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10299. name: "Foot",
  10300. image: {
  10301. source: "./media/characters/goddess-elizabeth/foot.svg"
  10302. }
  10303. },
  10304. mouth: {
  10305. height: math.unit(6, "feet"),
  10306. name: "Mouth",
  10307. image: {
  10308. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10309. }
  10310. },
  10311. },
  10312. [
  10313. {
  10314. name: "Micro",
  10315. height: math.unit(12, "feet")
  10316. },
  10317. {
  10318. name: "Normal",
  10319. height: math.unit(80, "miles"),
  10320. default: true
  10321. },
  10322. {
  10323. name: "Macro",
  10324. height: math.unit(15000, "parsecs")
  10325. },
  10326. ]
  10327. ))
  10328. characterMakers.push(() => makeCharacter(
  10329. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10330. {
  10331. front: {
  10332. height: math.unit(5 + 9 / 12, "feet"),
  10333. weight: math.unit(144, "lb"),
  10334. name: "Front",
  10335. image: {
  10336. source: "./media/characters/kara/front.svg"
  10337. }
  10338. },
  10339. feet: {
  10340. height: math.unit(6 / 6.765, "feet"),
  10341. name: "Kara's Feet",
  10342. rename: true,
  10343. image: {
  10344. source: "./media/characters/kara/feet.svg"
  10345. }
  10346. },
  10347. },
  10348. [
  10349. {
  10350. name: "Normal",
  10351. height: math.unit(5 + 9 / 12, "feet")
  10352. },
  10353. {
  10354. name: "Macro",
  10355. height: math.unit(174, "feet"),
  10356. default: true
  10357. },
  10358. ]
  10359. ))
  10360. characterMakers.push(() => makeCharacter(
  10361. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10362. {
  10363. front: {
  10364. height: math.unit(18, "feet"),
  10365. weight: math.unit(4050, "lb"),
  10366. name: "Front",
  10367. image: {
  10368. source: "./media/characters/tyrone/front.svg",
  10369. extra: 2405 / 2270,
  10370. bottom: 182 / 2587
  10371. }
  10372. },
  10373. },
  10374. [
  10375. {
  10376. name: "Normal",
  10377. height: math.unit(18, "feet"),
  10378. default: true
  10379. },
  10380. {
  10381. name: "Macro",
  10382. height: math.unit(300, "feet")
  10383. },
  10384. {
  10385. name: "Megamacro",
  10386. height: math.unit(15, "km")
  10387. },
  10388. {
  10389. name: "Gigamacro",
  10390. height: math.unit(500, "km")
  10391. },
  10392. {
  10393. name: "Teramacro",
  10394. height: math.unit(0.5, "gigameters")
  10395. },
  10396. {
  10397. name: "Omnimacro",
  10398. height: math.unit(1e252, "yottauniverse")
  10399. },
  10400. ]
  10401. ))
  10402. characterMakers.push(() => makeCharacter(
  10403. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10404. {
  10405. front: {
  10406. height: math.unit(7 + 8 / 12, "feet"),
  10407. weight: math.unit(120, "lb"),
  10408. name: "Front",
  10409. image: {
  10410. source: "./media/characters/danny/front.svg",
  10411. extra: 1490 / 1350
  10412. }
  10413. },
  10414. back: {
  10415. height: math.unit(7 + 8 / 12, "feet"),
  10416. weight: math.unit(120, "lb"),
  10417. name: "Back",
  10418. image: {
  10419. source: "./media/characters/danny/back.svg",
  10420. extra: 1490 / 1350
  10421. }
  10422. },
  10423. },
  10424. [
  10425. {
  10426. name: "Normal",
  10427. height: math.unit(7 + 8 / 12, "feet"),
  10428. default: true
  10429. },
  10430. ]
  10431. ))
  10432. characterMakers.push(() => makeCharacter(
  10433. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10434. {
  10435. front: {
  10436. height: math.unit(3.5, "inches"),
  10437. weight: math.unit(19, "grams"),
  10438. name: "Front",
  10439. image: {
  10440. source: "./media/characters/mallow/front.svg",
  10441. extra: 471 / 431
  10442. }
  10443. },
  10444. back: {
  10445. height: math.unit(3.5, "inches"),
  10446. weight: math.unit(19, "grams"),
  10447. name: "Back",
  10448. image: {
  10449. source: "./media/characters/mallow/back.svg",
  10450. extra: 471 / 431
  10451. }
  10452. },
  10453. },
  10454. [
  10455. {
  10456. name: "Normal",
  10457. height: math.unit(3.5, "inches"),
  10458. default: true
  10459. },
  10460. ]
  10461. ))
  10462. characterMakers.push(() => makeCharacter(
  10463. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10464. {
  10465. front: {
  10466. height: math.unit(9, "feet"),
  10467. weight: math.unit(230, "kg"),
  10468. name: "Front",
  10469. image: {
  10470. source: "./media/characters/starry-aqua/front.svg"
  10471. }
  10472. },
  10473. back: {
  10474. height: math.unit(9, "feet"),
  10475. weight: math.unit(230, "kg"),
  10476. name: "Back",
  10477. image: {
  10478. source: "./media/characters/starry-aqua/back.svg"
  10479. }
  10480. },
  10481. hand: {
  10482. height: math.unit(9 * 0.1168, "feet"),
  10483. name: "Hand",
  10484. image: {
  10485. source: "./media/characters/starry-aqua/hand.svg"
  10486. }
  10487. },
  10488. foot: {
  10489. height: math.unit(9 * 0.18, "feet"),
  10490. name: "Foot",
  10491. image: {
  10492. source: "./media/characters/starry-aqua/foot.svg"
  10493. }
  10494. }
  10495. },
  10496. [
  10497. {
  10498. name: "Micro",
  10499. height: math.unit(3, "inches")
  10500. },
  10501. {
  10502. name: "Normal",
  10503. height: math.unit(9, "feet")
  10504. },
  10505. {
  10506. name: "Macro",
  10507. height: math.unit(300, "feet"),
  10508. default: true
  10509. },
  10510. {
  10511. name: "Megamacro",
  10512. height: math.unit(3200, "feet")
  10513. }
  10514. ]
  10515. ))
  10516. characterMakers.push(() => makeCharacter(
  10517. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10518. {
  10519. front: {
  10520. height: math.unit(15, "feet"),
  10521. weight: math.unit(5026, "lb"),
  10522. name: "Front",
  10523. image: {
  10524. source: "./media/characters/luka-towers/front.svg",
  10525. extra: 1269/1133,
  10526. bottom: 51/1320
  10527. }
  10528. },
  10529. },
  10530. [
  10531. {
  10532. name: "Normal",
  10533. height: math.unit(15, "feet"),
  10534. default: true
  10535. },
  10536. {
  10537. name: "Minimacro",
  10538. height: math.unit(25, "feet")
  10539. },
  10540. {
  10541. name: "Macro",
  10542. height: math.unit(320, "feet")
  10543. },
  10544. {
  10545. name: "Megamacro",
  10546. height: math.unit(35000, "feet")
  10547. },
  10548. {
  10549. name: "Gigamacro",
  10550. height: math.unit(4000, "miles")
  10551. },
  10552. {
  10553. name: "Teramacro",
  10554. height: math.unit(15000, "miles")
  10555. },
  10556. ]
  10557. ))
  10558. characterMakers.push(() => makeCharacter(
  10559. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10560. {
  10561. front: {
  10562. height: math.unit(6, "feet"),
  10563. weight: math.unit(150, "lb"),
  10564. name: "Front",
  10565. image: {
  10566. source: "./media/characters/natalie-nightring/front.svg",
  10567. extra: 1,
  10568. bottom: 0.06
  10569. }
  10570. },
  10571. },
  10572. [
  10573. {
  10574. name: "Uh Oh",
  10575. height: math.unit(0.1, "mm")
  10576. },
  10577. {
  10578. name: "Small",
  10579. height: math.unit(3, "inches")
  10580. },
  10581. {
  10582. name: "Human Scale",
  10583. height: math.unit(6, "feet")
  10584. },
  10585. {
  10586. name: "Librarian",
  10587. height: math.unit(50, "feet"),
  10588. default: true
  10589. },
  10590. {
  10591. name: "Immense",
  10592. height: math.unit(200, "miles")
  10593. },
  10594. ]
  10595. ))
  10596. characterMakers.push(() => makeCharacter(
  10597. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10598. {
  10599. front: {
  10600. height: math.unit(6, "feet"),
  10601. weight: math.unit(180, "lbs"),
  10602. name: "Front",
  10603. image: {
  10604. source: "./media/characters/danni-rosie/front.svg",
  10605. extra: 1260 / 1128,
  10606. bottom: 0.022
  10607. }
  10608. },
  10609. },
  10610. [
  10611. {
  10612. name: "Micro",
  10613. height: math.unit(2, "inches"),
  10614. default: true
  10615. },
  10616. ]
  10617. ))
  10618. characterMakers.push(() => makeCharacter(
  10619. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10620. {
  10621. front: {
  10622. height: math.unit(5 + 9 / 12, "feet"),
  10623. weight: math.unit(220, "lb"),
  10624. name: "Front",
  10625. image: {
  10626. source: "./media/characters/samantha-kruse/front.svg",
  10627. extra: (985 / 935),
  10628. bottom: 0.03
  10629. }
  10630. },
  10631. frontUndressed: {
  10632. height: math.unit(5 + 9 / 12, "feet"),
  10633. weight: math.unit(220, "lb"),
  10634. name: "Front (Undressed)",
  10635. image: {
  10636. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10637. extra: (973 / 923),
  10638. bottom: 0.025
  10639. }
  10640. },
  10641. fat: {
  10642. height: math.unit(5 + 9 / 12, "feet"),
  10643. weight: math.unit(900, "lb"),
  10644. name: "Front (Fat)",
  10645. image: {
  10646. source: "./media/characters/samantha-kruse/fat.svg",
  10647. extra: 2688 / 2561
  10648. }
  10649. },
  10650. },
  10651. [
  10652. {
  10653. name: "Normal",
  10654. height: math.unit(5 + 9 / 12, "feet"),
  10655. default: true
  10656. }
  10657. ]
  10658. ))
  10659. characterMakers.push(() => makeCharacter(
  10660. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10661. {
  10662. back: {
  10663. height: math.unit(5 + 4 / 12, "feet"),
  10664. weight: math.unit(4963, "lb"),
  10665. name: "Back",
  10666. image: {
  10667. source: "./media/characters/amelia-rosie/back.svg",
  10668. extra: 1113 / 963,
  10669. bottom: 0.01
  10670. }
  10671. },
  10672. },
  10673. [
  10674. {
  10675. name: "Level 0",
  10676. height: math.unit(5 + 4 / 12, "feet")
  10677. },
  10678. {
  10679. name: "Level 1",
  10680. height: math.unit(164597, "feet"),
  10681. default: true
  10682. },
  10683. {
  10684. name: "Level 2",
  10685. height: math.unit(956243, "miles")
  10686. },
  10687. {
  10688. name: "Level 3",
  10689. height: math.unit(29421709423, "miles")
  10690. },
  10691. {
  10692. name: "Level 4",
  10693. height: math.unit(154, "lightyears")
  10694. },
  10695. {
  10696. name: "Level 5",
  10697. height: math.unit(4738272, "lightyears")
  10698. },
  10699. {
  10700. name: "Level 6",
  10701. height: math.unit(145787152896, "lightyears")
  10702. },
  10703. ]
  10704. ))
  10705. characterMakers.push(() => makeCharacter(
  10706. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10707. {
  10708. front: {
  10709. height: math.unit(5 + 11 / 12, "feet"),
  10710. weight: math.unit(65, "kg"),
  10711. name: "Front",
  10712. image: {
  10713. source: "./media/characters/rook-kitara/front.svg",
  10714. extra: 1347 / 1274,
  10715. bottom: 0.005
  10716. }
  10717. },
  10718. },
  10719. [
  10720. {
  10721. name: "Totally Unfair",
  10722. height: math.unit(1.8, "mm")
  10723. },
  10724. {
  10725. name: "Lap Rookie",
  10726. height: math.unit(1.4, "feet")
  10727. },
  10728. {
  10729. name: "Normal",
  10730. height: math.unit(5 + 11 / 12, "feet"),
  10731. default: true
  10732. },
  10733. {
  10734. name: "How Did This Happen",
  10735. height: math.unit(80, "miles")
  10736. }
  10737. ]
  10738. ))
  10739. characterMakers.push(() => makeCharacter(
  10740. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10741. {
  10742. front: {
  10743. height: math.unit(7, "feet"),
  10744. weight: math.unit(300, "lb"),
  10745. name: "Front",
  10746. image: {
  10747. source: "./media/characters/pisces/front.svg",
  10748. extra: 2255 / 2115,
  10749. bottom: 0.03
  10750. }
  10751. },
  10752. back: {
  10753. height: math.unit(7, "feet"),
  10754. weight: math.unit(300, "lb"),
  10755. name: "Back",
  10756. image: {
  10757. source: "./media/characters/pisces/back.svg",
  10758. extra: 2146 / 2055,
  10759. bottom: 0.04
  10760. }
  10761. },
  10762. },
  10763. [
  10764. {
  10765. name: "Normal",
  10766. height: math.unit(7, "feet"),
  10767. default: true
  10768. },
  10769. {
  10770. name: "Swimming Pool",
  10771. height: math.unit(12.2, "meters")
  10772. },
  10773. {
  10774. name: "Olympic Swimming Pool",
  10775. height: math.unit(56.3, "meters")
  10776. },
  10777. {
  10778. name: "Lake Superior",
  10779. height: math.unit(93900, "meters")
  10780. },
  10781. {
  10782. name: "Mediterranean Sea",
  10783. height: math.unit(644457, "meters")
  10784. },
  10785. {
  10786. name: "World's Oceans",
  10787. height: math.unit(4567491, "meters")
  10788. },
  10789. ]
  10790. ))
  10791. characterMakers.push(() => makeCharacter(
  10792. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10793. {
  10794. front: {
  10795. height: math.unit(2.3, "meters"),
  10796. weight: math.unit(120, "kg"),
  10797. name: "Front",
  10798. image: {
  10799. source: "./media/characters/zelas/front.svg"
  10800. }
  10801. },
  10802. side: {
  10803. height: math.unit(2.3, "meters"),
  10804. weight: math.unit(120, "kg"),
  10805. name: "Side",
  10806. image: {
  10807. source: "./media/characters/zelas/side.svg"
  10808. }
  10809. },
  10810. back: {
  10811. height: math.unit(2.3, "meters"),
  10812. weight: math.unit(120, "kg"),
  10813. name: "Back",
  10814. image: {
  10815. source: "./media/characters/zelas/back.svg"
  10816. }
  10817. },
  10818. foot: {
  10819. height: math.unit(1.116, "feet"),
  10820. name: "Foot",
  10821. image: {
  10822. source: "./media/characters/zelas/foot.svg"
  10823. }
  10824. },
  10825. },
  10826. [
  10827. {
  10828. name: "Normal",
  10829. height: math.unit(2.3, "meters")
  10830. },
  10831. {
  10832. name: "Macro",
  10833. height: math.unit(30, "meters"),
  10834. default: true
  10835. },
  10836. ]
  10837. ))
  10838. characterMakers.push(() => makeCharacter(
  10839. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10840. {
  10841. front: {
  10842. height: math.unit(1, "inch"),
  10843. weight: math.unit(0.21, "grams"),
  10844. name: "Front",
  10845. image: {
  10846. source: "./media/characters/talbot/front.svg",
  10847. extra: 594 / 544
  10848. }
  10849. },
  10850. },
  10851. [
  10852. {
  10853. name: "Micro",
  10854. height: math.unit(1, "inch"),
  10855. default: true
  10856. },
  10857. ]
  10858. ))
  10859. characterMakers.push(() => makeCharacter(
  10860. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10861. {
  10862. front: {
  10863. height: math.unit(3 + 3 / 12, "feet"),
  10864. weight: math.unit(51.8, "lb"),
  10865. name: "Front",
  10866. image: {
  10867. source: "./media/characters/fliss/front.svg",
  10868. extra: 840 / 640
  10869. }
  10870. },
  10871. },
  10872. [
  10873. {
  10874. name: "Teeny Tiny",
  10875. height: math.unit(1, "mm")
  10876. },
  10877. {
  10878. name: "Small",
  10879. height: math.unit(1, "inch"),
  10880. default: true
  10881. },
  10882. {
  10883. name: "Standard Sylveon",
  10884. height: math.unit(3 + 3 / 12, "feet")
  10885. },
  10886. {
  10887. name: "Large Nuisance",
  10888. height: math.unit(33, "feet")
  10889. },
  10890. {
  10891. name: "City Filler",
  10892. height: math.unit(3000, "feet")
  10893. },
  10894. {
  10895. name: "New Horizon",
  10896. height: math.unit(6000, "miles")
  10897. },
  10898. ]
  10899. ))
  10900. characterMakers.push(() => makeCharacter(
  10901. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10902. {
  10903. front: {
  10904. height: math.unit(5, "cm"),
  10905. weight: math.unit(1.94, "g"),
  10906. name: "Front",
  10907. image: {
  10908. source: "./media/characters/fleta/front.svg",
  10909. extra: 835 / 803
  10910. }
  10911. },
  10912. back: {
  10913. height: math.unit(5, "cm"),
  10914. weight: math.unit(1.94, "g"),
  10915. name: "Back",
  10916. image: {
  10917. source: "./media/characters/fleta/back.svg",
  10918. extra: 835 / 803
  10919. }
  10920. },
  10921. },
  10922. [
  10923. {
  10924. name: "Micro",
  10925. height: math.unit(5, "cm"),
  10926. default: true
  10927. },
  10928. ]
  10929. ))
  10930. characterMakers.push(() => makeCharacter(
  10931. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10932. {
  10933. front: {
  10934. height: math.unit(6, "feet"),
  10935. weight: math.unit(225, "lb"),
  10936. name: "Front",
  10937. image: {
  10938. source: "./media/characters/dominic/front.svg",
  10939. extra: 1770 / 1620,
  10940. bottom: 0.025
  10941. }
  10942. },
  10943. back: {
  10944. height: math.unit(6, "feet"),
  10945. weight: math.unit(225, "lb"),
  10946. name: "Back",
  10947. image: {
  10948. source: "./media/characters/dominic/back.svg",
  10949. extra: 1745 / 1620,
  10950. bottom: 0.065
  10951. }
  10952. },
  10953. },
  10954. [
  10955. {
  10956. name: "Nano",
  10957. height: math.unit(0.1, "mm")
  10958. },
  10959. {
  10960. name: "Micro-",
  10961. height: math.unit(1, "mm")
  10962. },
  10963. {
  10964. name: "Micro",
  10965. height: math.unit(4, "inches")
  10966. },
  10967. {
  10968. name: "Normal",
  10969. height: math.unit(6 + 4 / 12, "feet"),
  10970. default: true
  10971. },
  10972. {
  10973. name: "Macro",
  10974. height: math.unit(115, "feet")
  10975. },
  10976. {
  10977. name: "Macro+",
  10978. height: math.unit(955, "feet")
  10979. },
  10980. {
  10981. name: "Megamacro",
  10982. height: math.unit(8990, "feet")
  10983. },
  10984. {
  10985. name: "Gigmacro",
  10986. height: math.unit(9310, "miles")
  10987. },
  10988. {
  10989. name: "Teramacro",
  10990. height: math.unit(1567005010, "miles")
  10991. },
  10992. {
  10993. name: "Examacro",
  10994. height: math.unit(1425, "parsecs")
  10995. },
  10996. ]
  10997. ))
  10998. characterMakers.push(() => makeCharacter(
  10999. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11000. {
  11001. front: {
  11002. height: math.unit(400, "feet"),
  11003. weight: math.unit(44444444, "lb"),
  11004. name: "Front",
  11005. image: {
  11006. source: "./media/characters/major-colonel/front.svg"
  11007. }
  11008. },
  11009. back: {
  11010. height: math.unit(400, "feet"),
  11011. weight: math.unit(44444444, "lb"),
  11012. name: "Back",
  11013. image: {
  11014. source: "./media/characters/major-colonel/back.svg"
  11015. }
  11016. },
  11017. },
  11018. [
  11019. {
  11020. name: "Macro",
  11021. height: math.unit(400, "feet"),
  11022. default: true
  11023. },
  11024. ]
  11025. ))
  11026. characterMakers.push(() => makeCharacter(
  11027. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11028. {
  11029. catFront: {
  11030. height: math.unit(6, "feet"),
  11031. weight: math.unit(120, "lb"),
  11032. name: "Front (Cat Side)",
  11033. image: {
  11034. source: "./media/characters/axel-lycan/cat-front.svg",
  11035. extra: 430 / 402,
  11036. bottom: 43 / 472.35
  11037. }
  11038. },
  11039. catBack: {
  11040. height: math.unit(6, "feet"),
  11041. weight: math.unit(120, "lb"),
  11042. name: "Back (Cat Side)",
  11043. image: {
  11044. source: "./media/characters/axel-lycan/cat-back.svg",
  11045. extra: 447 / 419,
  11046. bottom: 23.3 / 469
  11047. }
  11048. },
  11049. wolfFront: {
  11050. height: math.unit(6, "feet"),
  11051. weight: math.unit(120, "lb"),
  11052. name: "Front (Wolf Side)",
  11053. image: {
  11054. source: "./media/characters/axel-lycan/wolf-front.svg",
  11055. extra: 485 / 456,
  11056. bottom: 19 / 504
  11057. }
  11058. },
  11059. wolfBack: {
  11060. height: math.unit(6, "feet"),
  11061. weight: math.unit(120, "lb"),
  11062. name: "Back (Wolf Side)",
  11063. image: {
  11064. source: "./media/characters/axel-lycan/wolf-back.svg",
  11065. extra: 475 / 438,
  11066. bottom: 39.2 / 514
  11067. }
  11068. },
  11069. },
  11070. [
  11071. {
  11072. name: "Macro",
  11073. height: math.unit(1, "km"),
  11074. default: true
  11075. },
  11076. ]
  11077. ))
  11078. characterMakers.push(() => makeCharacter(
  11079. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11080. {
  11081. front: {
  11082. height: math.unit(5 + 9 / 12, "feet"),
  11083. weight: math.unit(175, "lb"),
  11084. name: "Front",
  11085. image: {
  11086. source: "./media/characters/vanrel-hyena/front.svg",
  11087. extra: 1086 / 1010,
  11088. bottom: 0.04
  11089. }
  11090. },
  11091. },
  11092. [
  11093. {
  11094. name: "Normal",
  11095. height: math.unit(5 + 9 / 12, "feet"),
  11096. default: true
  11097. },
  11098. ]
  11099. ))
  11100. characterMakers.push(() => makeCharacter(
  11101. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11102. {
  11103. front: {
  11104. height: math.unit(6, "feet"),
  11105. weight: math.unit(103, "lb"),
  11106. name: "Front",
  11107. image: {
  11108. source: "./media/characters/abbott-absol/front.svg",
  11109. extra: 765/694,
  11110. bottom: 47/812
  11111. }
  11112. },
  11113. },
  11114. [
  11115. {
  11116. name: "Megamicro",
  11117. height: math.unit(0.1, "mm")
  11118. },
  11119. {
  11120. name: "Micro",
  11121. height: math.unit(1, "inch")
  11122. },
  11123. {
  11124. name: "Normal",
  11125. height: math.unit(6, "feet"),
  11126. default: true
  11127. },
  11128. ]
  11129. ))
  11130. characterMakers.push(() => makeCharacter(
  11131. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11132. {
  11133. front: {
  11134. height: math.unit(6, "feet"),
  11135. weight: math.unit(264, "lb"),
  11136. name: "Front",
  11137. image: {
  11138. source: "./media/characters/hector/front.svg",
  11139. extra: 2280 / 2130,
  11140. bottom: 0.07
  11141. }
  11142. },
  11143. },
  11144. [
  11145. {
  11146. name: "Normal",
  11147. height: math.unit(12.25, "foot"),
  11148. default: true
  11149. },
  11150. {
  11151. name: "Macro",
  11152. height: math.unit(160, "feet")
  11153. },
  11154. ]
  11155. ))
  11156. characterMakers.push(() => makeCharacter(
  11157. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11158. {
  11159. front: {
  11160. height: math.unit(6, "feet"),
  11161. weight: math.unit(150, "lb"),
  11162. name: "Front",
  11163. image: {
  11164. source: "./media/characters/sal/front.svg",
  11165. extra: 1846 / 1699,
  11166. bottom: 0.04
  11167. }
  11168. },
  11169. },
  11170. [
  11171. {
  11172. name: "Megamacro",
  11173. height: math.unit(10, "miles"),
  11174. default: true
  11175. },
  11176. ]
  11177. ))
  11178. characterMakers.push(() => makeCharacter(
  11179. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11180. {
  11181. front: {
  11182. height: math.unit(3, "meters"),
  11183. weight: math.unit(450, "kg"),
  11184. name: "front",
  11185. image: {
  11186. source: "./media/characters/ranger/front.svg",
  11187. extra: 2401 / 2243,
  11188. bottom: 0.05
  11189. }
  11190. },
  11191. },
  11192. [
  11193. {
  11194. name: "Normal",
  11195. height: math.unit(3, "meters"),
  11196. default: true
  11197. },
  11198. ]
  11199. ))
  11200. characterMakers.push(() => makeCharacter(
  11201. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11202. {
  11203. front: {
  11204. height: math.unit(14, "feet"),
  11205. weight: math.unit(800, "kg"),
  11206. name: "Front",
  11207. image: {
  11208. source: "./media/characters/theresa/front.svg",
  11209. extra: 3575 / 3346,
  11210. bottom: 0.03
  11211. }
  11212. },
  11213. },
  11214. [
  11215. {
  11216. name: "Normal",
  11217. height: math.unit(14, "feet"),
  11218. default: true
  11219. },
  11220. ]
  11221. ))
  11222. characterMakers.push(() => makeCharacter(
  11223. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11224. {
  11225. front: {
  11226. height: math.unit(6, "feet"),
  11227. weight: math.unit(3, "kg"),
  11228. name: "Front",
  11229. image: {
  11230. source: "./media/characters/ine/front.svg",
  11231. extra: 678 / 539,
  11232. bottom: 0.023
  11233. }
  11234. },
  11235. },
  11236. [
  11237. {
  11238. name: "Normal",
  11239. height: math.unit(2.265, "feet"),
  11240. default: true
  11241. },
  11242. ]
  11243. ))
  11244. characterMakers.push(() => makeCharacter(
  11245. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11246. {
  11247. front: {
  11248. height: math.unit(5, "feet"),
  11249. weight: math.unit(30, "kg"),
  11250. name: "Front",
  11251. image: {
  11252. source: "./media/characters/vial/front.svg",
  11253. extra: 1365 / 1277,
  11254. bottom: 0.04
  11255. }
  11256. },
  11257. },
  11258. [
  11259. {
  11260. name: "Normal",
  11261. height: math.unit(5, "feet"),
  11262. default: true
  11263. },
  11264. ]
  11265. ))
  11266. characterMakers.push(() => makeCharacter(
  11267. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11268. {
  11269. side: {
  11270. height: math.unit(3.4, "meters"),
  11271. weight: math.unit(1000, "lb"),
  11272. name: "Side",
  11273. image: {
  11274. source: "./media/characters/rovoska/side.svg",
  11275. extra: 4403 / 1515
  11276. }
  11277. },
  11278. },
  11279. [
  11280. {
  11281. name: "Normal",
  11282. height: math.unit(3.4, "meters"),
  11283. default: true
  11284. },
  11285. ]
  11286. ))
  11287. characterMakers.push(() => makeCharacter(
  11288. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11289. {
  11290. front: {
  11291. height: math.unit(8, "feet"),
  11292. weight: math.unit(315, "lb"),
  11293. name: "Front",
  11294. image: {
  11295. source: "./media/characters/gunner-rotthbauer/front.svg"
  11296. }
  11297. },
  11298. back: {
  11299. height: math.unit(8, "feet"),
  11300. weight: math.unit(315, "lb"),
  11301. name: "Back",
  11302. image: {
  11303. source: "./media/characters/gunner-rotthbauer/back.svg"
  11304. }
  11305. },
  11306. },
  11307. [
  11308. {
  11309. name: "Micro",
  11310. height: math.unit(3.5, "inches")
  11311. },
  11312. {
  11313. name: "Normal",
  11314. height: math.unit(8, "feet"),
  11315. default: true
  11316. },
  11317. {
  11318. name: "Macro",
  11319. height: math.unit(250, "feet")
  11320. },
  11321. {
  11322. name: "Megamacro",
  11323. height: math.unit(1, "AU")
  11324. },
  11325. ]
  11326. ))
  11327. characterMakers.push(() => makeCharacter(
  11328. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11329. {
  11330. front: {
  11331. height: math.unit(5 + 5 / 12, "feet"),
  11332. weight: math.unit(140, "lb"),
  11333. name: "Front",
  11334. image: {
  11335. source: "./media/characters/allatia/front.svg",
  11336. extra: 1227 / 1180,
  11337. bottom: 0.027
  11338. }
  11339. },
  11340. },
  11341. [
  11342. {
  11343. name: "Normal",
  11344. height: math.unit(5 + 5 / 12, "feet")
  11345. },
  11346. {
  11347. name: "Macro",
  11348. height: math.unit(250, "feet"),
  11349. default: true
  11350. },
  11351. {
  11352. name: "Megamacro",
  11353. height: math.unit(8, "miles")
  11354. }
  11355. ]
  11356. ))
  11357. characterMakers.push(() => makeCharacter(
  11358. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11359. {
  11360. front: {
  11361. height: math.unit(6, "feet"),
  11362. weight: math.unit(120, "lb"),
  11363. name: "Front",
  11364. image: {
  11365. source: "./media/characters/tene/front.svg",
  11366. extra: 814/750,
  11367. bottom: 36/850
  11368. }
  11369. },
  11370. stomping: {
  11371. height: math.unit(2.025, "meters"),
  11372. weight: math.unit(120, "lb"),
  11373. name: "Stomping",
  11374. image: {
  11375. source: "./media/characters/tene/stomping.svg",
  11376. extra: 885/821,
  11377. bottom: 15/900
  11378. }
  11379. },
  11380. sitting: {
  11381. height: math.unit(1, "meter"),
  11382. weight: math.unit(120, "lb"),
  11383. name: "Sitting",
  11384. image: {
  11385. source: "./media/characters/tene/sitting.svg",
  11386. extra: 396/366,
  11387. bottom: 79/475
  11388. }
  11389. },
  11390. smiling: {
  11391. height: math.unit(1.2, "feet"),
  11392. name: "Smiling",
  11393. image: {
  11394. source: "./media/characters/tene/smiling.svg",
  11395. extra: 1364/1071,
  11396. bottom: 0/1364
  11397. }
  11398. },
  11399. smug: {
  11400. height: math.unit(1.3, "feet"),
  11401. name: "Smug",
  11402. image: {
  11403. source: "./media/characters/tene/smug.svg",
  11404. extra: 1323/1082,
  11405. bottom: 0/1323
  11406. }
  11407. },
  11408. feral: {
  11409. height: math.unit(3.9, "feet"),
  11410. weight: math.unit(250, "lb"),
  11411. name: "Feral",
  11412. image: {
  11413. source: "./media/characters/tene/feral.svg",
  11414. extra: 717 / 458,
  11415. bottom: 0.179
  11416. }
  11417. },
  11418. },
  11419. [
  11420. {
  11421. name: "Normal",
  11422. height: math.unit(6, "feet")
  11423. },
  11424. {
  11425. name: "Macro",
  11426. height: math.unit(300, "feet"),
  11427. default: true
  11428. },
  11429. {
  11430. name: "Megamacro",
  11431. height: math.unit(5, "miles")
  11432. },
  11433. ]
  11434. ))
  11435. characterMakers.push(() => makeCharacter(
  11436. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11437. {
  11438. side: {
  11439. height: math.unit(6, "feet"),
  11440. name: "Side",
  11441. image: {
  11442. source: "./media/characters/evander/side.svg",
  11443. extra: 877 / 477
  11444. }
  11445. },
  11446. },
  11447. [
  11448. {
  11449. name: "Normal",
  11450. height: math.unit(0.83, "meters"),
  11451. default: true
  11452. },
  11453. ]
  11454. ))
  11455. characterMakers.push(() => makeCharacter(
  11456. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11457. {
  11458. front: {
  11459. height: math.unit(12, "feet"),
  11460. weight: math.unit(1000, "lb"),
  11461. name: "Front",
  11462. image: {
  11463. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11464. extra: 1762 / 1611
  11465. }
  11466. },
  11467. back: {
  11468. height: math.unit(12, "feet"),
  11469. weight: math.unit(1000, "lb"),
  11470. name: "Back",
  11471. image: {
  11472. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11473. extra: 1762 / 1611
  11474. }
  11475. },
  11476. },
  11477. [
  11478. {
  11479. name: "Normal",
  11480. height: math.unit(12, "feet"),
  11481. default: true
  11482. },
  11483. {
  11484. name: "Kaiju",
  11485. height: math.unit(150, "feet")
  11486. },
  11487. ]
  11488. ))
  11489. characterMakers.push(() => makeCharacter(
  11490. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11491. {
  11492. front: {
  11493. height: math.unit(6, "feet"),
  11494. weight: math.unit(150, "lb"),
  11495. name: "Front",
  11496. image: {
  11497. source: "./media/characters/zero-alurus/front.svg"
  11498. }
  11499. },
  11500. back: {
  11501. height: math.unit(6, "feet"),
  11502. weight: math.unit(150, "lb"),
  11503. name: "Back",
  11504. image: {
  11505. source: "./media/characters/zero-alurus/back.svg"
  11506. }
  11507. },
  11508. },
  11509. [
  11510. {
  11511. name: "Normal",
  11512. height: math.unit(5 + 10 / 12, "feet")
  11513. },
  11514. {
  11515. name: "Macro",
  11516. height: math.unit(60, "feet"),
  11517. default: true
  11518. },
  11519. {
  11520. name: "Macro+",
  11521. height: math.unit(450, "feet")
  11522. },
  11523. ]
  11524. ))
  11525. characterMakers.push(() => makeCharacter(
  11526. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11527. {
  11528. front: {
  11529. height: math.unit(6, "feet"),
  11530. weight: math.unit(200, "lb"),
  11531. name: "Front",
  11532. image: {
  11533. source: "./media/characters/mega-shi/front.svg",
  11534. extra: 1279 / 1250,
  11535. bottom: 0.02
  11536. }
  11537. },
  11538. back: {
  11539. height: math.unit(6, "feet"),
  11540. weight: math.unit(200, "lb"),
  11541. name: "Back",
  11542. image: {
  11543. source: "./media/characters/mega-shi/back.svg",
  11544. extra: 1279 / 1250,
  11545. bottom: 0.02
  11546. }
  11547. },
  11548. },
  11549. [
  11550. {
  11551. name: "Micro",
  11552. height: math.unit(16 + 6 / 12, "feet")
  11553. },
  11554. {
  11555. name: "Third Dimension",
  11556. height: math.unit(40, "meters")
  11557. },
  11558. {
  11559. name: "Normal",
  11560. height: math.unit(660, "feet"),
  11561. default: true
  11562. },
  11563. {
  11564. name: "Megamacro",
  11565. height: math.unit(10, "miles")
  11566. },
  11567. {
  11568. name: "Planetary Launch",
  11569. height: math.unit(500, "miles")
  11570. },
  11571. {
  11572. name: "Interstellar",
  11573. height: math.unit(1e9, "miles")
  11574. },
  11575. {
  11576. name: "Leaving the Universe",
  11577. height: math.unit(1, "gigaparsec")
  11578. },
  11579. {
  11580. name: "Travelling Universes",
  11581. height: math.unit(30e15, "parsecs")
  11582. },
  11583. ]
  11584. ))
  11585. characterMakers.push(() => makeCharacter(
  11586. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11587. {
  11588. front: {
  11589. height: math.unit(5 + 4/12, "feet"),
  11590. weight: math.unit(120, "lb"),
  11591. name: "Front",
  11592. image: {
  11593. source: "./media/characters/odyssey/front.svg",
  11594. extra: 1747/1571,
  11595. bottom: 47/1794
  11596. }
  11597. },
  11598. side: {
  11599. height: math.unit(5.1, "feet"),
  11600. weight: math.unit(120, "lb"),
  11601. name: "Side",
  11602. image: {
  11603. source: "./media/characters/odyssey/side.svg",
  11604. extra: 1847/1619,
  11605. bottom: 47/1894
  11606. }
  11607. },
  11608. lounging: {
  11609. height: math.unit(1.464, "feet"),
  11610. weight: math.unit(120, "lb"),
  11611. name: "Lounging",
  11612. image: {
  11613. source: "./media/characters/odyssey/lounging.svg",
  11614. extra: 1235/837,
  11615. bottom: 551/1786
  11616. }
  11617. },
  11618. },
  11619. [
  11620. {
  11621. name: "Normal",
  11622. height: math.unit(5 + 4 / 12, "feet")
  11623. },
  11624. {
  11625. name: "Macro",
  11626. height: math.unit(1, "km")
  11627. },
  11628. {
  11629. name: "Megamacro",
  11630. height: math.unit(3000, "km")
  11631. },
  11632. {
  11633. name: "Gigamacro",
  11634. height: math.unit(1, "AU"),
  11635. default: true
  11636. },
  11637. {
  11638. name: "Omniversal",
  11639. height: math.unit(100e14, "lightyears")
  11640. },
  11641. ]
  11642. ))
  11643. characterMakers.push(() => makeCharacter(
  11644. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11645. {
  11646. front: {
  11647. height: math.unit(5 + 10/12, "feet"),
  11648. name: "Front",
  11649. image: {
  11650. source: "./media/characters/mekuto/front.svg",
  11651. extra: 875/835,
  11652. bottom: 46/921
  11653. }
  11654. },
  11655. },
  11656. [
  11657. {
  11658. name: "Minimicro",
  11659. height: math.unit(0.2, "inches")
  11660. },
  11661. {
  11662. name: "Micro",
  11663. height: math.unit(1.5, "inches")
  11664. },
  11665. {
  11666. name: "Normal",
  11667. height: math.unit(5 + 10 / 12, "feet"),
  11668. default: true
  11669. },
  11670. {
  11671. name: "Minimacro",
  11672. height: math.unit(17 + 9 / 12, "feet")
  11673. },
  11674. {
  11675. name: "Macro",
  11676. height: math.unit(177.5, "feet")
  11677. },
  11678. {
  11679. name: "Megamacro",
  11680. height: math.unit(152, "miles")
  11681. },
  11682. ]
  11683. ))
  11684. characterMakers.push(() => makeCharacter(
  11685. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11686. {
  11687. front: {
  11688. height: math.unit(6.5, "inches"),
  11689. weight: math.unit(13, "oz"),
  11690. name: "Front",
  11691. image: {
  11692. source: "./media/characters/dafydd-tomos/front.svg",
  11693. extra: 2990 / 2603,
  11694. bottom: 0.03
  11695. }
  11696. },
  11697. },
  11698. [
  11699. {
  11700. name: "Micro",
  11701. height: math.unit(6.5, "inches"),
  11702. default: true
  11703. },
  11704. ]
  11705. ))
  11706. characterMakers.push(() => makeCharacter(
  11707. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11708. {
  11709. front: {
  11710. height: math.unit(6, "feet"),
  11711. weight: math.unit(150, "lb"),
  11712. name: "Front",
  11713. image: {
  11714. source: "./media/characters/splinter/front.svg",
  11715. extra: 2990 / 2882,
  11716. bottom: 0.04
  11717. }
  11718. },
  11719. back: {
  11720. height: math.unit(6, "feet"),
  11721. weight: math.unit(150, "lb"),
  11722. name: "Back",
  11723. image: {
  11724. source: "./media/characters/splinter/back.svg",
  11725. extra: 2990 / 2882,
  11726. bottom: 0.04
  11727. }
  11728. },
  11729. },
  11730. [
  11731. {
  11732. name: "Normal",
  11733. height: math.unit(6, "feet")
  11734. },
  11735. {
  11736. name: "Macro",
  11737. height: math.unit(230, "meters"),
  11738. default: true
  11739. },
  11740. ]
  11741. ))
  11742. characterMakers.push(() => makeCharacter(
  11743. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11744. {
  11745. front: {
  11746. height: math.unit(4 + 10 / 12, "feet"),
  11747. weight: math.unit(480, "lb"),
  11748. name: "Front",
  11749. image: {
  11750. source: "./media/characters/snow-gabumon/front.svg",
  11751. extra: 1140 / 963,
  11752. bottom: 0.058
  11753. }
  11754. },
  11755. back: {
  11756. height: math.unit(4 + 10 / 12, "feet"),
  11757. weight: math.unit(480, "lb"),
  11758. name: "Back",
  11759. image: {
  11760. source: "./media/characters/snow-gabumon/back.svg",
  11761. extra: 1115 / 962,
  11762. bottom: 0.041
  11763. }
  11764. },
  11765. frontUndresed: {
  11766. height: math.unit(4 + 10 / 12, "feet"),
  11767. weight: math.unit(480, "lb"),
  11768. name: "Front (Undressed)",
  11769. image: {
  11770. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11771. extra: 1061 / 960,
  11772. bottom: 0.045
  11773. }
  11774. },
  11775. },
  11776. [
  11777. {
  11778. name: "Micro",
  11779. height: math.unit(1, "inch")
  11780. },
  11781. {
  11782. name: "Normal",
  11783. height: math.unit(4 + 10 / 12, "feet"),
  11784. default: true
  11785. },
  11786. {
  11787. name: "Macro",
  11788. height: math.unit(200, "feet")
  11789. },
  11790. {
  11791. name: "Megamacro",
  11792. height: math.unit(120, "miles")
  11793. },
  11794. {
  11795. name: "Gigamacro",
  11796. height: math.unit(9800, "miles")
  11797. },
  11798. ]
  11799. ))
  11800. characterMakers.push(() => makeCharacter(
  11801. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11802. {
  11803. front: {
  11804. height: math.unit(1.7, "meters"),
  11805. weight: math.unit(140, "lb"),
  11806. name: "Front",
  11807. image: {
  11808. source: "./media/characters/moody/front.svg",
  11809. extra: 3226 / 3007,
  11810. bottom: 0.087
  11811. }
  11812. },
  11813. },
  11814. [
  11815. {
  11816. name: "Micro",
  11817. height: math.unit(1, "mm")
  11818. },
  11819. {
  11820. name: "Normal",
  11821. height: math.unit(1.7, "meters"),
  11822. default: true
  11823. },
  11824. {
  11825. name: "Macro",
  11826. height: math.unit(80, "meters")
  11827. },
  11828. {
  11829. name: "Macro+",
  11830. height: math.unit(500, "meters")
  11831. },
  11832. ]
  11833. ))
  11834. characterMakers.push(() => makeCharacter(
  11835. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11836. {
  11837. front: {
  11838. height: math.unit(6, "feet"),
  11839. weight: math.unit(150, "lb"),
  11840. name: "Front",
  11841. image: {
  11842. source: "./media/characters/zyas/front.svg",
  11843. extra: 1180 / 1120,
  11844. bottom: 0.045
  11845. }
  11846. },
  11847. },
  11848. [
  11849. {
  11850. name: "Normal",
  11851. height: math.unit(10, "feet"),
  11852. default: true
  11853. },
  11854. {
  11855. name: "Macro",
  11856. height: math.unit(500, "feet")
  11857. },
  11858. {
  11859. name: "Megamacro",
  11860. height: math.unit(5, "miles")
  11861. },
  11862. {
  11863. name: "Teramacro",
  11864. height: math.unit(150000, "miles")
  11865. },
  11866. ]
  11867. ))
  11868. characterMakers.push(() => makeCharacter(
  11869. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11870. {
  11871. front: {
  11872. height: math.unit(6, "feet"),
  11873. weight: math.unit(150, "lb"),
  11874. name: "Front",
  11875. image: {
  11876. source: "./media/characters/cuon/front.svg",
  11877. extra: 1390 / 1320,
  11878. bottom: 0.008
  11879. }
  11880. },
  11881. },
  11882. [
  11883. {
  11884. name: "Micro",
  11885. height: math.unit(3, "inches")
  11886. },
  11887. {
  11888. name: "Normal",
  11889. height: math.unit(18 + 9 / 12, "feet"),
  11890. default: true
  11891. },
  11892. {
  11893. name: "Macro",
  11894. height: math.unit(360, "feet")
  11895. },
  11896. {
  11897. name: "Megamacro",
  11898. height: math.unit(360, "miles")
  11899. },
  11900. ]
  11901. ))
  11902. characterMakers.push(() => makeCharacter(
  11903. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11904. {
  11905. front: {
  11906. height: math.unit(2.4, "meters"),
  11907. weight: math.unit(70, "kg"),
  11908. name: "Front",
  11909. image: {
  11910. source: "./media/characters/nyanuxk/front.svg",
  11911. extra: 1172 / 1084,
  11912. bottom: 0.065
  11913. }
  11914. },
  11915. side: {
  11916. height: math.unit(2.4, "meters"),
  11917. weight: math.unit(70, "kg"),
  11918. name: "Side",
  11919. image: {
  11920. source: "./media/characters/nyanuxk/side.svg",
  11921. extra: 1190 / 1132,
  11922. bottom: 0.007
  11923. }
  11924. },
  11925. back: {
  11926. height: math.unit(2.4, "meters"),
  11927. weight: math.unit(70, "kg"),
  11928. name: "Back",
  11929. image: {
  11930. source: "./media/characters/nyanuxk/back.svg",
  11931. extra: 1200 / 1141,
  11932. bottom: 0.015
  11933. }
  11934. },
  11935. foot: {
  11936. height: math.unit(0.52, "meters"),
  11937. name: "Foot",
  11938. image: {
  11939. source: "./media/characters/nyanuxk/foot.svg"
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Micro",
  11946. height: math.unit(2, "cm")
  11947. },
  11948. {
  11949. name: "Normal",
  11950. height: math.unit(2.4, "meters"),
  11951. default: true
  11952. },
  11953. {
  11954. name: "Smaller Macro",
  11955. height: math.unit(120, "meters")
  11956. },
  11957. {
  11958. name: "Bigger Macro",
  11959. height: math.unit(1.2, "km")
  11960. },
  11961. {
  11962. name: "Megamacro",
  11963. height: math.unit(15, "kilometers")
  11964. },
  11965. {
  11966. name: "Gigamacro",
  11967. height: math.unit(2000, "km")
  11968. },
  11969. {
  11970. name: "Teramacro",
  11971. height: math.unit(500000, "km")
  11972. },
  11973. ]
  11974. ))
  11975. characterMakers.push(() => makeCharacter(
  11976. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11977. {
  11978. side: {
  11979. height: math.unit(6, "feet"),
  11980. name: "Side",
  11981. image: {
  11982. source: "./media/characters/ailbhe/side.svg",
  11983. extra: 757 / 464,
  11984. bottom: 0.041
  11985. }
  11986. },
  11987. },
  11988. [
  11989. {
  11990. name: "Normal",
  11991. height: math.unit(1.07, "meters"),
  11992. default: true
  11993. },
  11994. ]
  11995. ))
  11996. characterMakers.push(() => makeCharacter(
  11997. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11998. {
  11999. front: {
  12000. height: math.unit(6, "feet"),
  12001. weight: math.unit(120, "kg"),
  12002. name: "Front",
  12003. image: {
  12004. source: "./media/characters/zevulfius/front.svg",
  12005. extra: 965 / 903
  12006. }
  12007. },
  12008. side: {
  12009. height: math.unit(6, "feet"),
  12010. weight: math.unit(120, "kg"),
  12011. name: "Side",
  12012. image: {
  12013. source: "./media/characters/zevulfius/side.svg",
  12014. extra: 939 / 900
  12015. }
  12016. },
  12017. back: {
  12018. height: math.unit(6, "feet"),
  12019. weight: math.unit(120, "kg"),
  12020. name: "Back",
  12021. image: {
  12022. source: "./media/characters/zevulfius/back.svg",
  12023. extra: 918 / 854,
  12024. bottom: 0.005
  12025. }
  12026. },
  12027. foot: {
  12028. height: math.unit(6 / 3.72, "feet"),
  12029. name: "Foot",
  12030. image: {
  12031. source: "./media/characters/zevulfius/foot.svg"
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Macro",
  12038. height: math.unit(750, "meters")
  12039. },
  12040. {
  12041. name: "Megamacro",
  12042. height: math.unit(20, "km"),
  12043. default: true
  12044. },
  12045. {
  12046. name: "Gigamacro",
  12047. height: math.unit(2000, "km")
  12048. },
  12049. {
  12050. name: "Teramacro",
  12051. height: math.unit(250000, "km")
  12052. },
  12053. ]
  12054. ))
  12055. characterMakers.push(() => makeCharacter(
  12056. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12057. {
  12058. front: {
  12059. height: math.unit(100, "feet"),
  12060. weight: math.unit(350, "kg"),
  12061. name: "Front",
  12062. image: {
  12063. source: "./media/characters/rikes/front.svg",
  12064. extra: 1565 / 1483,
  12065. bottom: 0.017
  12066. }
  12067. },
  12068. },
  12069. [
  12070. {
  12071. name: "Macro",
  12072. height: math.unit(100, "feet"),
  12073. default: true
  12074. },
  12075. ]
  12076. ))
  12077. characterMakers.push(() => makeCharacter(
  12078. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12079. {
  12080. front: {
  12081. height: math.unit(8, "feet"),
  12082. weight: math.unit(356, "lb"),
  12083. name: "Front",
  12084. image: {
  12085. source: "./media/characters/adam-silver-mane/front.svg",
  12086. extra: 1036/937,
  12087. bottom: 63/1099
  12088. }
  12089. },
  12090. side: {
  12091. height: math.unit(8, "feet"),
  12092. weight: math.unit(356, "lb"),
  12093. name: "Side",
  12094. image: {
  12095. source: "./media/characters/adam-silver-mane/side.svg",
  12096. extra: 997/901,
  12097. bottom: 59/1056
  12098. }
  12099. },
  12100. frontNsfw: {
  12101. height: math.unit(8, "feet"),
  12102. weight: math.unit(356, "lb"),
  12103. name: "Front (NSFW)",
  12104. image: {
  12105. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12106. extra: 1036/937,
  12107. bottom: 63/1099
  12108. }
  12109. },
  12110. sideNsfw: {
  12111. height: math.unit(8, "feet"),
  12112. weight: math.unit(356, "lb"),
  12113. name: "Side (NSFW)",
  12114. image: {
  12115. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12116. extra: 997/901,
  12117. bottom: 59/1056
  12118. }
  12119. },
  12120. dick: {
  12121. height: math.unit(2.1, "feet"),
  12122. name: "Dick",
  12123. image: {
  12124. source: "./media/characters/adam-silver-mane/dick.svg"
  12125. }
  12126. },
  12127. taur: {
  12128. height: math.unit(16, "feet"),
  12129. weight: math.unit(1500, "kg"),
  12130. name: "Taur",
  12131. image: {
  12132. source: "./media/characters/adam-silver-mane/taur.svg",
  12133. extra: 1713 / 1571,
  12134. bottom: 0.01
  12135. }
  12136. },
  12137. },
  12138. [
  12139. {
  12140. name: "Normal",
  12141. height: math.unit(8, "feet")
  12142. },
  12143. {
  12144. name: "Minimacro",
  12145. height: math.unit(80, "feet")
  12146. },
  12147. {
  12148. name: "MDA",
  12149. height: math.unit(80, "meters")
  12150. },
  12151. {
  12152. name: "Macro",
  12153. height: math.unit(800, "feet"),
  12154. default: true
  12155. },
  12156. {
  12157. name: "Megamacro",
  12158. height: math.unit(8000, "feet")
  12159. },
  12160. {
  12161. name: "Gigamacro",
  12162. height: math.unit(800, "miles")
  12163. },
  12164. {
  12165. name: "Teramacro",
  12166. height: math.unit(80000, "miles")
  12167. },
  12168. {
  12169. name: "Celestial",
  12170. height: math.unit(8e6, "miles")
  12171. },
  12172. {
  12173. name: "Star Dragon",
  12174. height: math.unit(800000, "parsecs")
  12175. },
  12176. {
  12177. name: "Godly",
  12178. height: math.unit(800, "teraparsecs")
  12179. },
  12180. ]
  12181. ))
  12182. characterMakers.push(() => makeCharacter(
  12183. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12184. {
  12185. front: {
  12186. height: math.unit(6, "feet"),
  12187. weight: math.unit(150, "lb"),
  12188. name: "Front",
  12189. image: {
  12190. source: "./media/characters/ky'owin/front.svg",
  12191. extra: 3862/3053,
  12192. bottom: 74/3936
  12193. }
  12194. },
  12195. },
  12196. [
  12197. {
  12198. name: "Normal",
  12199. height: math.unit(6 + 8 / 12, "feet")
  12200. },
  12201. {
  12202. name: "Large",
  12203. height: math.unit(68, "feet")
  12204. },
  12205. {
  12206. name: "Macro",
  12207. height: math.unit(132, "feet")
  12208. },
  12209. {
  12210. name: "Macro+",
  12211. height: math.unit(340, "feet")
  12212. },
  12213. {
  12214. name: "Macro++",
  12215. height: math.unit(680, "feet"),
  12216. default: true
  12217. },
  12218. {
  12219. name: "Megamacro",
  12220. height: math.unit(1, "mile")
  12221. },
  12222. {
  12223. name: "Megamacro+",
  12224. height: math.unit(10, "miles")
  12225. },
  12226. ]
  12227. ))
  12228. characterMakers.push(() => makeCharacter(
  12229. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12230. {
  12231. front: {
  12232. height: math.unit(4, "feet"),
  12233. weight: math.unit(50, "lb"),
  12234. name: "Front",
  12235. image: {
  12236. source: "./media/characters/mal/front.svg",
  12237. extra: 785 / 724,
  12238. bottom: 0.07
  12239. }
  12240. },
  12241. },
  12242. [
  12243. {
  12244. name: "Micro",
  12245. height: math.unit(4, "inches")
  12246. },
  12247. {
  12248. name: "Normal",
  12249. height: math.unit(4, "feet"),
  12250. default: true
  12251. },
  12252. {
  12253. name: "Macro",
  12254. height: math.unit(200, "feet")
  12255. },
  12256. ]
  12257. ))
  12258. characterMakers.push(() => makeCharacter(
  12259. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12260. {
  12261. front: {
  12262. height: math.unit(6, "feet"),
  12263. weight: math.unit(150, "lb"),
  12264. name: "Front",
  12265. image: {
  12266. source: "./media/characters/jordan-deware/front.svg",
  12267. extra: 1191 / 1012
  12268. }
  12269. },
  12270. },
  12271. [
  12272. {
  12273. name: "Nano",
  12274. height: math.unit(0.01, "mm")
  12275. },
  12276. {
  12277. name: "Minimicro",
  12278. height: math.unit(1, "mm")
  12279. },
  12280. {
  12281. name: "Micro",
  12282. height: math.unit(0.5, "inches")
  12283. },
  12284. {
  12285. name: "Normal",
  12286. height: math.unit(4, "feet"),
  12287. default: true
  12288. },
  12289. {
  12290. name: "Minimacro",
  12291. height: math.unit(40, "meters")
  12292. },
  12293. {
  12294. name: "Small Macro",
  12295. height: math.unit(400, "meters")
  12296. },
  12297. {
  12298. name: "Macro",
  12299. height: math.unit(4, "miles")
  12300. },
  12301. {
  12302. name: "Megamacro",
  12303. height: math.unit(40, "miles")
  12304. },
  12305. {
  12306. name: "Megamacro+",
  12307. height: math.unit(400, "miles")
  12308. },
  12309. {
  12310. name: "Gigamacro",
  12311. height: math.unit(400000, "miles")
  12312. },
  12313. ]
  12314. ))
  12315. characterMakers.push(() => makeCharacter(
  12316. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12317. {
  12318. side: {
  12319. height: math.unit(6, "feet"),
  12320. weight: math.unit(150, "lb"),
  12321. name: "Side",
  12322. image: {
  12323. source: "./media/characters/kimiko/side.svg",
  12324. extra: 600 / 358
  12325. }
  12326. },
  12327. },
  12328. [
  12329. {
  12330. name: "Normal",
  12331. height: math.unit(15, "feet"),
  12332. default: true
  12333. },
  12334. {
  12335. name: "Macro",
  12336. height: math.unit(220, "feet")
  12337. },
  12338. {
  12339. name: "Macro+",
  12340. height: math.unit(1450, "feet")
  12341. },
  12342. {
  12343. name: "Megamacro",
  12344. height: math.unit(11500, "feet")
  12345. },
  12346. {
  12347. name: "Gigamacro",
  12348. height: math.unit(9500, "miles")
  12349. },
  12350. {
  12351. name: "Teramacro",
  12352. height: math.unit(2208005005, "miles")
  12353. },
  12354. {
  12355. name: "Examacro",
  12356. height: math.unit(2750, "parsecs")
  12357. },
  12358. {
  12359. name: "Zettamacro",
  12360. height: math.unit(101500, "parsecs")
  12361. },
  12362. ]
  12363. ))
  12364. characterMakers.push(() => makeCharacter(
  12365. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12366. {
  12367. front: {
  12368. height: math.unit(6, "feet"),
  12369. weight: math.unit(70, "kg"),
  12370. name: "Front",
  12371. image: {
  12372. source: "./media/characters/andrew-sleepy/front.svg"
  12373. }
  12374. },
  12375. side: {
  12376. height: math.unit(6, "feet"),
  12377. weight: math.unit(70, "kg"),
  12378. name: "Side",
  12379. image: {
  12380. source: "./media/characters/andrew-sleepy/side.svg"
  12381. }
  12382. },
  12383. },
  12384. [
  12385. {
  12386. name: "Micro",
  12387. height: math.unit(1, "mm"),
  12388. default: true
  12389. },
  12390. ]
  12391. ))
  12392. characterMakers.push(() => makeCharacter(
  12393. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12394. {
  12395. front: {
  12396. height: math.unit(6, "feet"),
  12397. weight: math.unit(150, "lb"),
  12398. name: "Front",
  12399. image: {
  12400. source: "./media/characters/judio/front.svg",
  12401. extra: 1258 / 1110
  12402. }
  12403. },
  12404. },
  12405. [
  12406. {
  12407. name: "Normal",
  12408. height: math.unit(5 + 6 / 12, "feet")
  12409. },
  12410. {
  12411. name: "Macro",
  12412. height: math.unit(1000, "feet"),
  12413. default: true
  12414. },
  12415. {
  12416. name: "Megamacro",
  12417. height: math.unit(10, "miles")
  12418. },
  12419. ]
  12420. ))
  12421. characterMakers.push(() => makeCharacter(
  12422. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12423. {
  12424. frontDressed: {
  12425. height: math.unit(6, "feet"),
  12426. weight: math.unit(68, "kg"),
  12427. name: "Front (Dressed)",
  12428. image: {
  12429. source: "./media/characters/nomaxice/front-dressed.svg",
  12430. extra: 1137/824,
  12431. bottom: 74/1211
  12432. }
  12433. },
  12434. frontShorts: {
  12435. height: math.unit(6, "feet"),
  12436. weight: math.unit(68, "kg"),
  12437. name: "Front (Shorts)",
  12438. image: {
  12439. source: "./media/characters/nomaxice/front-shorts.svg",
  12440. extra: 1137/824,
  12441. bottom: 74/1211
  12442. }
  12443. },
  12444. back: {
  12445. height: math.unit(6, "feet"),
  12446. weight: math.unit(68, "kg"),
  12447. name: "Back",
  12448. image: {
  12449. source: "./media/characters/nomaxice/back.svg",
  12450. extra: 822/786,
  12451. bottom: 39/861
  12452. }
  12453. },
  12454. hand: {
  12455. height: math.unit(0.565, "feet"),
  12456. name: "Hand",
  12457. image: {
  12458. source: "./media/characters/nomaxice/hand.svg"
  12459. }
  12460. },
  12461. foot: {
  12462. height: math.unit(1, "feet"),
  12463. name: "Foot",
  12464. image: {
  12465. source: "./media/characters/nomaxice/foot.svg"
  12466. }
  12467. },
  12468. },
  12469. [
  12470. {
  12471. name: "Micro",
  12472. height: math.unit(8, "cm")
  12473. },
  12474. {
  12475. name: "Norm",
  12476. height: math.unit(1.82, "m")
  12477. },
  12478. {
  12479. name: "Norm+",
  12480. height: math.unit(8.8, "feet"),
  12481. default: true
  12482. },
  12483. {
  12484. name: "Big",
  12485. height: math.unit(8, "meters")
  12486. },
  12487. {
  12488. name: "Macro",
  12489. height: math.unit(18, "meters")
  12490. },
  12491. {
  12492. name: "Macro+",
  12493. height: math.unit(88, "meters")
  12494. },
  12495. ]
  12496. ))
  12497. characterMakers.push(() => makeCharacter(
  12498. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12499. {
  12500. front: {
  12501. height: math.unit(12, "feet"),
  12502. weight: math.unit(1.5, "tons"),
  12503. name: "Front",
  12504. image: {
  12505. source: "./media/characters/dydros/front.svg",
  12506. extra: 863 / 800,
  12507. bottom: 0.015
  12508. }
  12509. },
  12510. back: {
  12511. height: math.unit(12, "feet"),
  12512. weight: math.unit(1.5, "tons"),
  12513. name: "Back",
  12514. image: {
  12515. source: "./media/characters/dydros/back.svg",
  12516. extra: 900 / 843,
  12517. bottom: 0.005
  12518. }
  12519. },
  12520. },
  12521. [
  12522. {
  12523. name: "Normal",
  12524. height: math.unit(12, "feet"),
  12525. default: true
  12526. },
  12527. ]
  12528. ))
  12529. characterMakers.push(() => makeCharacter(
  12530. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12531. {
  12532. front: {
  12533. height: math.unit(6, "feet"),
  12534. weight: math.unit(100, "kg"),
  12535. name: "Front",
  12536. image: {
  12537. source: "./media/characters/riggi/front.svg",
  12538. extra: 5787 / 5303
  12539. }
  12540. },
  12541. hyper: {
  12542. height: math.unit(6 * 5 / 3, "feet"),
  12543. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12544. name: "Hyper",
  12545. image: {
  12546. source: "./media/characters/riggi/hyper.svg",
  12547. extra: 3595 / 3485
  12548. }
  12549. },
  12550. },
  12551. [
  12552. {
  12553. name: "Small Macro",
  12554. height: math.unit(50, "feet")
  12555. },
  12556. {
  12557. name: "Default",
  12558. height: math.unit(200, "feet"),
  12559. default: true
  12560. },
  12561. {
  12562. name: "Loom",
  12563. height: math.unit(10000, "feet")
  12564. },
  12565. {
  12566. name: "Cruising Altitude",
  12567. height: math.unit(30000, "feet")
  12568. },
  12569. {
  12570. name: "Megamacro",
  12571. height: math.unit(100, "miles")
  12572. },
  12573. {
  12574. name: "Continent Sized",
  12575. height: math.unit(2800, "miles")
  12576. },
  12577. {
  12578. name: "Earth Sized",
  12579. height: math.unit(8000, "miles")
  12580. },
  12581. ]
  12582. ))
  12583. characterMakers.push(() => makeCharacter(
  12584. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12585. {
  12586. front: {
  12587. height: math.unit(6, "feet"),
  12588. weight: math.unit(250, "lb"),
  12589. name: "Front",
  12590. image: {
  12591. source: "./media/characters/alexi/front.svg",
  12592. extra: 3483 / 3291,
  12593. bottom: 0.04
  12594. }
  12595. },
  12596. back: {
  12597. height: math.unit(6, "feet"),
  12598. weight: math.unit(250, "lb"),
  12599. name: "Back",
  12600. image: {
  12601. source: "./media/characters/alexi/back.svg",
  12602. extra: 3533 / 3356,
  12603. bottom: 0.021
  12604. }
  12605. },
  12606. frontTransforming: {
  12607. height: math.unit(8.58, "feet"),
  12608. weight: math.unit(1300, "lb"),
  12609. name: "Transforming",
  12610. image: {
  12611. source: "./media/characters/alexi/front-transforming.svg",
  12612. extra: 437 / 409,
  12613. bottom: 19 / 458.66
  12614. }
  12615. },
  12616. frontTransformed: {
  12617. height: math.unit(12.5, "feet"),
  12618. weight: math.unit(4000, "lb"),
  12619. name: "Transformed",
  12620. image: {
  12621. source: "./media/characters/alexi/front-transformed.svg",
  12622. extra: 639 / 614,
  12623. bottom: 30.55 / 671
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Normal",
  12630. height: math.unit(14, "feet"),
  12631. default: true
  12632. },
  12633. {
  12634. name: "Minimacro",
  12635. height: math.unit(30, "meters")
  12636. },
  12637. {
  12638. name: "Macro",
  12639. height: math.unit(500, "meters")
  12640. },
  12641. {
  12642. name: "Megamacro",
  12643. height: math.unit(9000, "km")
  12644. },
  12645. {
  12646. name: "Teramacro",
  12647. height: math.unit(384000, "km")
  12648. },
  12649. ]
  12650. ))
  12651. characterMakers.push(() => makeCharacter(
  12652. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12653. {
  12654. front: {
  12655. height: math.unit(6, "feet"),
  12656. weight: math.unit(150, "lb"),
  12657. name: "Front",
  12658. image: {
  12659. source: "./media/characters/kayroo/front.svg",
  12660. extra: 1153 / 1038,
  12661. bottom: 0.06
  12662. }
  12663. },
  12664. foot: {
  12665. height: math.unit(6, "feet"),
  12666. weight: math.unit(150, "lb"),
  12667. name: "Foot",
  12668. image: {
  12669. source: "./media/characters/kayroo/foot.svg"
  12670. }
  12671. },
  12672. },
  12673. [
  12674. {
  12675. name: "Normal",
  12676. height: math.unit(8, "feet"),
  12677. default: true
  12678. },
  12679. {
  12680. name: "Minimacro",
  12681. height: math.unit(250, "feet")
  12682. },
  12683. {
  12684. name: "Macro",
  12685. height: math.unit(2800, "feet")
  12686. },
  12687. {
  12688. name: "Megamacro",
  12689. height: math.unit(5200, "feet")
  12690. },
  12691. {
  12692. name: "Gigamacro",
  12693. height: math.unit(27000, "feet")
  12694. },
  12695. {
  12696. name: "Omega",
  12697. height: math.unit(45000, "feet")
  12698. },
  12699. ]
  12700. ))
  12701. characterMakers.push(() => makeCharacter(
  12702. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12703. {
  12704. front: {
  12705. height: math.unit(18, "feet"),
  12706. weight: math.unit(5800, "lb"),
  12707. name: "Front",
  12708. image: {
  12709. source: "./media/characters/rhys/front.svg",
  12710. extra: 3386 / 3090,
  12711. bottom: 0.07
  12712. }
  12713. },
  12714. },
  12715. [
  12716. {
  12717. name: "Normal",
  12718. height: math.unit(18, "feet"),
  12719. default: true
  12720. },
  12721. {
  12722. name: "Working Size",
  12723. height: math.unit(200, "feet")
  12724. },
  12725. {
  12726. name: "Demolition Size",
  12727. height: math.unit(2000, "feet")
  12728. },
  12729. {
  12730. name: "Maximum Licensed Size",
  12731. height: math.unit(5, "miles")
  12732. },
  12733. {
  12734. name: "Maximum Observed Size",
  12735. height: math.unit(10, "yottameters")
  12736. },
  12737. ]
  12738. ))
  12739. characterMakers.push(() => makeCharacter(
  12740. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12741. {
  12742. front: {
  12743. height: math.unit(6, "feet"),
  12744. weight: math.unit(250, "lb"),
  12745. name: "Front",
  12746. image: {
  12747. source: "./media/characters/toto/front.svg",
  12748. extra: 527 / 479,
  12749. bottom: 0.05
  12750. }
  12751. },
  12752. },
  12753. [
  12754. {
  12755. name: "Micro",
  12756. height: math.unit(3, "feet")
  12757. },
  12758. {
  12759. name: "Normal",
  12760. height: math.unit(10, "feet")
  12761. },
  12762. {
  12763. name: "Macro",
  12764. height: math.unit(150, "feet"),
  12765. default: true
  12766. },
  12767. {
  12768. name: "Megamacro",
  12769. height: math.unit(1200, "feet")
  12770. },
  12771. ]
  12772. ))
  12773. characterMakers.push(() => makeCharacter(
  12774. { name: "King", species: ["lion"], tags: ["anthro"] },
  12775. {
  12776. back: {
  12777. height: math.unit(6, "feet"),
  12778. weight: math.unit(150, "lb"),
  12779. name: "Back",
  12780. image: {
  12781. source: "./media/characters/king/back.svg"
  12782. }
  12783. },
  12784. },
  12785. [
  12786. {
  12787. name: "Micro",
  12788. height: math.unit(2, "inches")
  12789. },
  12790. {
  12791. name: "Normal",
  12792. height: math.unit(8, "feet")
  12793. },
  12794. {
  12795. name: "Macro",
  12796. height: math.unit(200, "feet"),
  12797. default: true
  12798. },
  12799. {
  12800. name: "Megamacro",
  12801. height: math.unit(50, "miles")
  12802. },
  12803. ]
  12804. ))
  12805. characterMakers.push(() => makeCharacter(
  12806. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12807. {
  12808. front: {
  12809. height: math.unit(11, "feet"),
  12810. weight: math.unit(1400, "lb"),
  12811. name: "Front",
  12812. image: {
  12813. source: "./media/characters/cordite/front.svg",
  12814. extra: 1919/1827,
  12815. bottom: 40/1959
  12816. }
  12817. },
  12818. side: {
  12819. height: math.unit(11, "feet"),
  12820. weight: math.unit(1400, "lb"),
  12821. name: "Side",
  12822. image: {
  12823. source: "./media/characters/cordite/side.svg",
  12824. extra: 1908/1793,
  12825. bottom: 38/1946
  12826. }
  12827. },
  12828. back: {
  12829. height: math.unit(11, "feet"),
  12830. weight: math.unit(1400, "lb"),
  12831. name: "Back",
  12832. image: {
  12833. source: "./media/characters/cordite/back.svg",
  12834. extra: 1938/1837,
  12835. bottom: 10/1948
  12836. }
  12837. },
  12838. feral: {
  12839. height: math.unit(2, "feet"),
  12840. weight: math.unit(90, "lb"),
  12841. name: "Feral",
  12842. image: {
  12843. source: "./media/characters/cordite/feral.svg",
  12844. extra: 1260 / 755,
  12845. bottom: 0.05
  12846. }
  12847. },
  12848. },
  12849. [
  12850. {
  12851. name: "Normal",
  12852. height: math.unit(11, "feet"),
  12853. default: true
  12854. },
  12855. ]
  12856. ))
  12857. characterMakers.push(() => makeCharacter(
  12858. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12859. {
  12860. front: {
  12861. height: math.unit(6, "feet"),
  12862. weight: math.unit(150, "lb"),
  12863. name: "Front",
  12864. image: {
  12865. source: "./media/characters/pianostrong/front.svg",
  12866. extra: 6577 / 6254,
  12867. bottom: 0.02
  12868. }
  12869. },
  12870. side: {
  12871. height: math.unit(6, "feet"),
  12872. weight: math.unit(150, "lb"),
  12873. name: "Side",
  12874. image: {
  12875. source: "./media/characters/pianostrong/side.svg",
  12876. extra: 6106 / 5730
  12877. }
  12878. },
  12879. back: {
  12880. height: math.unit(6, "feet"),
  12881. weight: math.unit(150, "lb"),
  12882. name: "Back",
  12883. image: {
  12884. source: "./media/characters/pianostrong/back.svg",
  12885. extra: 6085 / 5733,
  12886. bottom: 0.01
  12887. }
  12888. },
  12889. },
  12890. [
  12891. {
  12892. name: "Macro",
  12893. height: math.unit(100, "feet")
  12894. },
  12895. {
  12896. name: "Macro+",
  12897. height: math.unit(300, "feet"),
  12898. default: true
  12899. },
  12900. {
  12901. name: "Macro++",
  12902. height: math.unit(1000, "feet")
  12903. },
  12904. ]
  12905. ))
  12906. characterMakers.push(() => makeCharacter(
  12907. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12908. {
  12909. front: {
  12910. height: math.unit(6, "feet"),
  12911. weight: math.unit(150, "lb"),
  12912. name: "Front",
  12913. image: {
  12914. source: "./media/characters/kona/front.svg",
  12915. extra: 2960 / 2629,
  12916. bottom: 0.005
  12917. }
  12918. },
  12919. },
  12920. [
  12921. {
  12922. name: "Normal",
  12923. height: math.unit(11 + 8 / 12, "feet")
  12924. },
  12925. {
  12926. name: "Macro",
  12927. height: math.unit(850, "feet"),
  12928. default: true
  12929. },
  12930. {
  12931. name: "Macro+",
  12932. height: math.unit(1.5, "km"),
  12933. default: true
  12934. },
  12935. {
  12936. name: "Megamacro",
  12937. height: math.unit(80, "miles")
  12938. },
  12939. {
  12940. name: "Gigamacro",
  12941. height: math.unit(3500, "miles")
  12942. },
  12943. ]
  12944. ))
  12945. characterMakers.push(() => makeCharacter(
  12946. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12947. {
  12948. side: {
  12949. height: math.unit(1.9, "meters"),
  12950. weight: math.unit(326, "kg"),
  12951. name: "Side",
  12952. image: {
  12953. source: "./media/characters/levi/side.svg",
  12954. extra: 1704 / 1334,
  12955. bottom: 0.02
  12956. }
  12957. },
  12958. },
  12959. [
  12960. {
  12961. name: "Normal",
  12962. height: math.unit(1.9, "meters"),
  12963. default: true
  12964. },
  12965. {
  12966. name: "Macro",
  12967. height: math.unit(20, "meters")
  12968. },
  12969. {
  12970. name: "Macro+",
  12971. height: math.unit(200, "meters")
  12972. },
  12973. {
  12974. name: "Megamacro",
  12975. height: math.unit(2, "km")
  12976. },
  12977. {
  12978. name: "Megamacro+",
  12979. height: math.unit(20, "km")
  12980. },
  12981. {
  12982. name: "Gigamacro",
  12983. height: math.unit(2500, "km")
  12984. },
  12985. {
  12986. name: "Gigamacro+",
  12987. height: math.unit(120000, "km")
  12988. },
  12989. {
  12990. name: "Teramacro",
  12991. height: math.unit(7.77e6, "km")
  12992. },
  12993. ]
  12994. ))
  12995. characterMakers.push(() => makeCharacter(
  12996. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12997. {
  12998. front: {
  12999. height: math.unit(6 + 4/12, "feet"),
  13000. weight: math.unit(190, "lb"),
  13001. name: "Front",
  13002. image: {
  13003. source: "./media/characters/bmc/front.svg",
  13004. extra: 1626/1472,
  13005. bottom: 79/1705
  13006. }
  13007. },
  13008. back: {
  13009. height: math.unit(6 + 4/12, "feet"),
  13010. weight: math.unit(190, "lb"),
  13011. name: "Back",
  13012. image: {
  13013. source: "./media/characters/bmc/back.svg",
  13014. extra: 1640/1479,
  13015. bottom: 45/1685
  13016. }
  13017. },
  13018. frontArmor: {
  13019. height: math.unit(6 + 4/12, "feet"),
  13020. weight: math.unit(190, "lb"),
  13021. name: "Front-armor",
  13022. image: {
  13023. source: "./media/characters/bmc/front-armor.svg",
  13024. extra: 1538/1468,
  13025. bottom: 79/1617
  13026. }
  13027. },
  13028. },
  13029. [
  13030. {
  13031. name: "Human-sized",
  13032. height: math.unit(6 + 4 / 12, "feet")
  13033. },
  13034. {
  13035. name: "Interactive Size",
  13036. height: math.unit(25, "feet")
  13037. },
  13038. {
  13039. name: "Small",
  13040. height: math.unit(250, "feet")
  13041. },
  13042. {
  13043. name: "Normal",
  13044. height: math.unit(1250, "feet"),
  13045. default: true
  13046. },
  13047. {
  13048. name: "Good Day",
  13049. height: math.unit(88, "miles")
  13050. },
  13051. {
  13052. name: "Largest Measured Size",
  13053. height: math.unit(105.960, "galaxies")
  13054. },
  13055. ]
  13056. ))
  13057. characterMakers.push(() => makeCharacter(
  13058. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13059. {
  13060. front: {
  13061. height: math.unit(20, "feet"),
  13062. weight: math.unit(2016, "kg"),
  13063. name: "Front",
  13064. image: {
  13065. source: "./media/characters/sven-the-kaiju/front.svg",
  13066. extra: 1277/1250,
  13067. bottom: 35/1312
  13068. }
  13069. },
  13070. mouth: {
  13071. height: math.unit(1.85, "feet"),
  13072. name: "Mouth",
  13073. image: {
  13074. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13075. }
  13076. },
  13077. },
  13078. [
  13079. {
  13080. name: "Fairy",
  13081. height: math.unit(6, "inches")
  13082. },
  13083. {
  13084. name: "Normal",
  13085. height: math.unit(20, "feet"),
  13086. default: true
  13087. },
  13088. {
  13089. name: "Rampage",
  13090. height: math.unit(200, "feet")
  13091. },
  13092. {
  13093. name: "Archfey Forest Guardian",
  13094. height: math.unit(1, "mile")
  13095. },
  13096. ]
  13097. ))
  13098. characterMakers.push(() => makeCharacter(
  13099. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13100. {
  13101. front: {
  13102. height: math.unit(4, "meters"),
  13103. weight: math.unit(2, "tons"),
  13104. name: "Front",
  13105. image: {
  13106. source: "./media/characters/marik/front.svg",
  13107. extra: 1057 / 1003,
  13108. bottom: 0.08
  13109. }
  13110. },
  13111. },
  13112. [
  13113. {
  13114. name: "Normal",
  13115. height: math.unit(4, "meters"),
  13116. default: true
  13117. },
  13118. {
  13119. name: "Macro",
  13120. height: math.unit(20, "meters")
  13121. },
  13122. {
  13123. name: "Megamacro",
  13124. height: math.unit(50, "km")
  13125. },
  13126. {
  13127. name: "Gigamacro",
  13128. height: math.unit(100, "km")
  13129. },
  13130. {
  13131. name: "Alpha Macro",
  13132. height: math.unit(7.88e7, "yottameters")
  13133. },
  13134. ]
  13135. ))
  13136. characterMakers.push(() => makeCharacter(
  13137. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13138. {
  13139. front: {
  13140. height: math.unit(6, "feet"),
  13141. weight: math.unit(110, "lb"),
  13142. name: "Front",
  13143. image: {
  13144. source: "./media/characters/mel/front.svg",
  13145. extra: 736 / 617,
  13146. bottom: 0.017
  13147. }
  13148. },
  13149. },
  13150. [
  13151. {
  13152. name: "Pico",
  13153. height: math.unit(3, "pm")
  13154. },
  13155. {
  13156. name: "Nano",
  13157. height: math.unit(3, "nm")
  13158. },
  13159. {
  13160. name: "Micro",
  13161. height: math.unit(0.3, "mm"),
  13162. default: true
  13163. },
  13164. {
  13165. name: "Micro+",
  13166. height: math.unit(3, "mm")
  13167. },
  13168. {
  13169. name: "Normal",
  13170. height: math.unit(5 + 10.5 / 12, "feet")
  13171. },
  13172. ]
  13173. ))
  13174. characterMakers.push(() => makeCharacter(
  13175. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13176. {
  13177. kaiju: {
  13178. height: math.unit(1.75, "meters"),
  13179. weight: math.unit(55, "kg"),
  13180. name: "Kaiju",
  13181. image: {
  13182. source: "./media/characters/lykonous/kaiju.svg",
  13183. extra: 1055 / 946,
  13184. bottom: 0.135
  13185. }
  13186. },
  13187. },
  13188. [
  13189. {
  13190. name: "Normal",
  13191. height: math.unit(2.5, "meters"),
  13192. default: true
  13193. },
  13194. {
  13195. name: "Kaiju Dragon",
  13196. height: math.unit(60, "meters")
  13197. },
  13198. {
  13199. name: "Mega Kaiju",
  13200. height: math.unit(120, "km")
  13201. },
  13202. {
  13203. name: "Giga Kaiju",
  13204. height: math.unit(200, "megameters")
  13205. },
  13206. {
  13207. name: "Terra Kaiju",
  13208. height: math.unit(400, "gigameters")
  13209. },
  13210. {
  13211. name: "Kaiju Dragon God",
  13212. height: math.unit(13000, "exaparsecs")
  13213. },
  13214. ]
  13215. ))
  13216. characterMakers.push(() => makeCharacter(
  13217. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13218. {
  13219. front: {
  13220. height: math.unit(6, "feet"),
  13221. weight: math.unit(150, "lb"),
  13222. name: "Front",
  13223. image: {
  13224. source: "./media/characters/blü/front.svg",
  13225. extra: 1883 / 1564,
  13226. bottom: 0.031
  13227. }
  13228. },
  13229. },
  13230. [
  13231. {
  13232. name: "Normal",
  13233. height: math.unit(13, "feet"),
  13234. default: true
  13235. },
  13236. {
  13237. name: "Big Boi",
  13238. height: math.unit(150, "meters")
  13239. },
  13240. {
  13241. name: "Mini Stomper",
  13242. height: math.unit(300, "meters")
  13243. },
  13244. {
  13245. name: "Macro",
  13246. height: math.unit(1000, "meters")
  13247. },
  13248. {
  13249. name: "Megamacro",
  13250. height: math.unit(11000, "meters")
  13251. },
  13252. {
  13253. name: "Gigamacro",
  13254. height: math.unit(11000, "km")
  13255. },
  13256. {
  13257. name: "Teramacro",
  13258. height: math.unit(420000, "km")
  13259. },
  13260. {
  13261. name: "Examacro",
  13262. height: math.unit(120, "parsecs")
  13263. },
  13264. {
  13265. name: "God Tho",
  13266. height: math.unit(98000000000, "parsecs")
  13267. },
  13268. ]
  13269. ))
  13270. characterMakers.push(() => makeCharacter(
  13271. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13272. {
  13273. taurFront: {
  13274. height: math.unit(6, "feet"),
  13275. weight: math.unit(200, "lb"),
  13276. name: "Taur (Front)",
  13277. image: {
  13278. source: "./media/characters/scales/taur-front.svg",
  13279. extra: 1,
  13280. bottom: 0.05
  13281. }
  13282. },
  13283. taurBack: {
  13284. height: math.unit(6, "feet"),
  13285. weight: math.unit(200, "lb"),
  13286. name: "Taur (Back)",
  13287. image: {
  13288. source: "./media/characters/scales/taur-back.svg",
  13289. extra: 1,
  13290. bottom: 0.08
  13291. }
  13292. },
  13293. anthro: {
  13294. height: math.unit(6 * 7 / 12, "feet"),
  13295. weight: math.unit(100, "lb"),
  13296. name: "Anthro",
  13297. image: {
  13298. source: "./media/characters/scales/anthro.svg",
  13299. extra: 1,
  13300. bottom: 0.06
  13301. }
  13302. },
  13303. },
  13304. [
  13305. {
  13306. name: "Normal",
  13307. height: math.unit(12, "feet"),
  13308. default: true
  13309. },
  13310. ]
  13311. ))
  13312. characterMakers.push(() => makeCharacter(
  13313. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13314. {
  13315. front: {
  13316. height: math.unit(6, "feet"),
  13317. weight: math.unit(150, "lb"),
  13318. name: "Front",
  13319. image: {
  13320. source: "./media/characters/koragos/front.svg",
  13321. extra: 841 / 794,
  13322. bottom: 0.035
  13323. }
  13324. },
  13325. back: {
  13326. height: math.unit(6, "feet"),
  13327. weight: math.unit(150, "lb"),
  13328. name: "Back",
  13329. image: {
  13330. source: "./media/characters/koragos/back.svg",
  13331. extra: 841 / 810,
  13332. bottom: 0.022
  13333. }
  13334. },
  13335. },
  13336. [
  13337. {
  13338. name: "Normal",
  13339. height: math.unit(6 + 11 / 12, "feet"),
  13340. default: true
  13341. },
  13342. {
  13343. name: "Macro",
  13344. height: math.unit(490, "feet")
  13345. },
  13346. {
  13347. name: "Megamacro",
  13348. height: math.unit(10, "miles")
  13349. },
  13350. {
  13351. name: "Gigamacro",
  13352. height: math.unit(50, "miles")
  13353. },
  13354. ]
  13355. ))
  13356. characterMakers.push(() => makeCharacter(
  13357. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13358. {
  13359. front: {
  13360. height: math.unit(6, "feet"),
  13361. weight: math.unit(250, "lb"),
  13362. name: "Front",
  13363. image: {
  13364. source: "./media/characters/xylrem/front.svg",
  13365. extra: 3323 / 3050,
  13366. bottom: 0.065
  13367. }
  13368. },
  13369. },
  13370. [
  13371. {
  13372. name: "Micro",
  13373. height: math.unit(4, "feet")
  13374. },
  13375. {
  13376. name: "Normal",
  13377. height: math.unit(16, "feet"),
  13378. default: true
  13379. },
  13380. {
  13381. name: "Macro",
  13382. height: math.unit(2720, "feet")
  13383. },
  13384. {
  13385. name: "Megamacro",
  13386. height: math.unit(25000, "miles")
  13387. },
  13388. ]
  13389. ))
  13390. characterMakers.push(() => makeCharacter(
  13391. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13392. {
  13393. front: {
  13394. height: math.unit(8, "feet"),
  13395. weight: math.unit(250, "kg"),
  13396. name: "Front",
  13397. image: {
  13398. source: "./media/characters/ikideru/front.svg",
  13399. extra: 930 / 870,
  13400. bottom: 0.087
  13401. }
  13402. },
  13403. back: {
  13404. height: math.unit(8, "feet"),
  13405. weight: math.unit(250, "kg"),
  13406. name: "Back",
  13407. image: {
  13408. source: "./media/characters/ikideru/back.svg",
  13409. extra: 919 / 852,
  13410. bottom: 0.055
  13411. }
  13412. },
  13413. },
  13414. [
  13415. {
  13416. name: "Rare",
  13417. height: math.unit(8, "feet"),
  13418. default: true
  13419. },
  13420. {
  13421. name: "Playful Loom",
  13422. height: math.unit(80, "feet")
  13423. },
  13424. {
  13425. name: "City Leaner",
  13426. height: math.unit(230, "feet")
  13427. },
  13428. {
  13429. name: "Megamacro",
  13430. height: math.unit(2500, "feet")
  13431. },
  13432. {
  13433. name: "Gigamacro",
  13434. height: math.unit(26400, "feet")
  13435. },
  13436. {
  13437. name: "Tectonic Shifter",
  13438. height: math.unit(1.7, "megameters")
  13439. },
  13440. {
  13441. name: "Planet Carer",
  13442. height: math.unit(21, "megameters")
  13443. },
  13444. {
  13445. name: "God",
  13446. height: math.unit(11157.22, "parsecs")
  13447. },
  13448. ]
  13449. ))
  13450. characterMakers.push(() => makeCharacter(
  13451. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13452. {
  13453. front: {
  13454. height: math.unit(6, "feet"),
  13455. weight: math.unit(120, "lb"),
  13456. name: "Front",
  13457. image: {
  13458. source: "./media/characters/neo/front.svg"
  13459. }
  13460. },
  13461. },
  13462. [
  13463. {
  13464. name: "Micro",
  13465. height: math.unit(2, "inches"),
  13466. default: true
  13467. },
  13468. {
  13469. name: "Human Size",
  13470. height: math.unit(5 + 8 / 12, "feet")
  13471. },
  13472. ]
  13473. ))
  13474. characterMakers.push(() => makeCharacter(
  13475. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13476. {
  13477. front: {
  13478. height: math.unit(13 + 10 / 12, "feet"),
  13479. weight: math.unit(5320, "lb"),
  13480. name: "Front",
  13481. image: {
  13482. source: "./media/characters/chauncey-chantz/front.svg",
  13483. extra: 1587 / 1435,
  13484. bottom: 0.02
  13485. }
  13486. },
  13487. },
  13488. [
  13489. {
  13490. name: "Normal",
  13491. height: math.unit(13 + 10 / 12, "feet"),
  13492. default: true
  13493. },
  13494. {
  13495. name: "Macro",
  13496. height: math.unit(45, "feet")
  13497. },
  13498. {
  13499. name: "Megamacro",
  13500. height: math.unit(250, "miles")
  13501. },
  13502. {
  13503. name: "Planetary",
  13504. height: math.unit(10000, "miles")
  13505. },
  13506. {
  13507. name: "Galactic",
  13508. height: math.unit(40000, "parsecs")
  13509. },
  13510. {
  13511. name: "Universal",
  13512. height: math.unit(1, "yottameter")
  13513. },
  13514. ]
  13515. ))
  13516. characterMakers.push(() => makeCharacter(
  13517. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13518. {
  13519. front: {
  13520. height: math.unit(6, "feet"),
  13521. weight: math.unit(150, "lb"),
  13522. name: "Front",
  13523. image: {
  13524. source: "./media/characters/epifox/front.svg",
  13525. extra: 1,
  13526. bottom: 0.075
  13527. }
  13528. },
  13529. },
  13530. [
  13531. {
  13532. name: "Micro",
  13533. height: math.unit(6, "inches")
  13534. },
  13535. {
  13536. name: "Normal",
  13537. height: math.unit(12, "feet"),
  13538. default: true
  13539. },
  13540. {
  13541. name: "Macro",
  13542. height: math.unit(3810, "feet")
  13543. },
  13544. {
  13545. name: "Megamacro",
  13546. height: math.unit(500, "miles")
  13547. },
  13548. ]
  13549. ))
  13550. characterMakers.push(() => makeCharacter(
  13551. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13552. {
  13553. front: {
  13554. height: math.unit(1.8796, "m"),
  13555. weight: math.unit(230, "lb"),
  13556. name: "Front",
  13557. image: {
  13558. source: "./media/characters/colin-t/front.svg",
  13559. extra: 1272 / 1193,
  13560. bottom: 0.07
  13561. }
  13562. },
  13563. },
  13564. [
  13565. {
  13566. name: "Micro",
  13567. height: math.unit(0.571, "meters")
  13568. },
  13569. {
  13570. name: "Normal",
  13571. height: math.unit(1.8796, "meters"),
  13572. default: true
  13573. },
  13574. {
  13575. name: "Tall",
  13576. height: math.unit(4, "meters")
  13577. },
  13578. {
  13579. name: "Macro",
  13580. height: math.unit(67.241, "meters")
  13581. },
  13582. {
  13583. name: "Megamacro",
  13584. height: math.unit(371.856, "meters")
  13585. },
  13586. {
  13587. name: "Planetary",
  13588. height: math.unit(12631.5689, "km")
  13589. },
  13590. ]
  13591. ))
  13592. characterMakers.push(() => makeCharacter(
  13593. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13594. {
  13595. front: {
  13596. height: math.unit(1.85, "meters"),
  13597. weight: math.unit(80, "kg"),
  13598. name: "Front",
  13599. image: {
  13600. source: "./media/characters/matvei/front.svg",
  13601. extra: 456/447,
  13602. bottom: 8/464
  13603. }
  13604. },
  13605. back: {
  13606. height: math.unit(1.85, "meters"),
  13607. weight: math.unit(80, "kg"),
  13608. name: "Back",
  13609. image: {
  13610. source: "./media/characters/matvei/back.svg",
  13611. extra: 434/427,
  13612. bottom: 11/445
  13613. }
  13614. },
  13615. },
  13616. [
  13617. {
  13618. name: "Normal",
  13619. height: math.unit(1.85, "meters"),
  13620. default: true
  13621. },
  13622. ]
  13623. ))
  13624. characterMakers.push(() => makeCharacter(
  13625. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13626. {
  13627. front: {
  13628. height: math.unit(5 + 9 / 12, "feet"),
  13629. weight: math.unit(70, "lb"),
  13630. name: "Front",
  13631. image: {
  13632. source: "./media/characters/quincy/front.svg",
  13633. extra: 3041 / 2751
  13634. }
  13635. },
  13636. back: {
  13637. height: math.unit(5 + 9 / 12, "feet"),
  13638. weight: math.unit(70, "lb"),
  13639. name: "Back",
  13640. image: {
  13641. source: "./media/characters/quincy/back.svg",
  13642. extra: 3041 / 2751
  13643. }
  13644. },
  13645. flying: {
  13646. height: math.unit(5 + 4 / 12, "feet"),
  13647. weight: math.unit(70, "lb"),
  13648. name: "Flying",
  13649. image: {
  13650. source: "./media/characters/quincy/flying.svg",
  13651. extra: 1044 / 930
  13652. }
  13653. },
  13654. },
  13655. [
  13656. {
  13657. name: "Micro",
  13658. height: math.unit(3, "cm")
  13659. },
  13660. {
  13661. name: "Normal",
  13662. height: math.unit(5 + 9 / 12, "feet")
  13663. },
  13664. {
  13665. name: "Macro",
  13666. height: math.unit(200, "meters"),
  13667. default: true
  13668. },
  13669. {
  13670. name: "Megamacro",
  13671. height: math.unit(1000, "meters")
  13672. },
  13673. ]
  13674. ))
  13675. characterMakers.push(() => makeCharacter(
  13676. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13677. {
  13678. front: {
  13679. height: math.unit(3 + 11/12, "feet"),
  13680. weight: math.unit(50, "lb"),
  13681. name: "Front",
  13682. image: {
  13683. source: "./media/characters/vanrel/front.svg",
  13684. extra: 1104/949,
  13685. bottom: 52/1156
  13686. }
  13687. },
  13688. back: {
  13689. height: math.unit(3 + 11/12, "feet"),
  13690. weight: math.unit(50, "lb"),
  13691. name: "Back",
  13692. image: {
  13693. source: "./media/characters/vanrel/back.svg",
  13694. extra: 1119/976,
  13695. bottom: 37/1156
  13696. }
  13697. },
  13698. tome: {
  13699. height: math.unit(1.35, "feet"),
  13700. weight: math.unit(10, "lb"),
  13701. name: "Vanrel's Tome",
  13702. rename: true,
  13703. image: {
  13704. source: "./media/characters/vanrel/tome.svg"
  13705. }
  13706. },
  13707. beans: {
  13708. height: math.unit(0.89, "feet"),
  13709. name: "Beans",
  13710. image: {
  13711. source: "./media/characters/vanrel/beans.svg"
  13712. }
  13713. },
  13714. },
  13715. [
  13716. {
  13717. name: "Normal",
  13718. height: math.unit(3 + 11/12, "feet"),
  13719. default: true
  13720. },
  13721. ]
  13722. ))
  13723. characterMakers.push(() => makeCharacter(
  13724. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13725. {
  13726. front: {
  13727. height: math.unit(7 + 5 / 12, "feet"),
  13728. name: "Front",
  13729. image: {
  13730. source: "./media/characters/kuiper-vanrel/front.svg",
  13731. extra: 1219/1169,
  13732. bottom: 69/1288
  13733. }
  13734. },
  13735. back: {
  13736. height: math.unit(7 + 5 / 12, "feet"),
  13737. name: "Back",
  13738. image: {
  13739. source: "./media/characters/kuiper-vanrel/back.svg",
  13740. extra: 1236/1193,
  13741. bottom: 27/1263
  13742. }
  13743. },
  13744. foot: {
  13745. height: math.unit(0.55, "meters"),
  13746. name: "Foot",
  13747. image: {
  13748. source: "./media/characters/kuiper-vanrel/foot.svg",
  13749. }
  13750. },
  13751. battle: {
  13752. height: math.unit(6.824, "feet"),
  13753. name: "Battle",
  13754. image: {
  13755. source: "./media/characters/kuiper-vanrel/battle.svg",
  13756. extra: 1466 / 1327,
  13757. bottom: 29 / 1492.5
  13758. }
  13759. },
  13760. meerkui: {
  13761. height: math.unit(18, "inches"),
  13762. name: "Meerkui",
  13763. image: {
  13764. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13765. extra: 1354/1289,
  13766. bottom: 69/1423
  13767. }
  13768. },
  13769. },
  13770. [
  13771. {
  13772. name: "Normal",
  13773. height: math.unit(7 + 5 / 12, "feet"),
  13774. default: true
  13775. },
  13776. ]
  13777. ))
  13778. characterMakers.push(() => makeCharacter(
  13779. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13780. {
  13781. front: {
  13782. height: math.unit(8 + 5 / 12, "feet"),
  13783. name: "Front",
  13784. image: {
  13785. source: "./media/characters/keset-vanrel/front.svg",
  13786. extra: 1231/1148,
  13787. bottom: 82/1313
  13788. }
  13789. },
  13790. back: {
  13791. height: math.unit(8 + 5 / 12, "feet"),
  13792. name: "Back",
  13793. image: {
  13794. source: "./media/characters/keset-vanrel/back.svg",
  13795. extra: 1240/1174,
  13796. bottom: 33/1273
  13797. }
  13798. },
  13799. hand: {
  13800. height: math.unit(0.6, "meters"),
  13801. name: "Hand",
  13802. image: {
  13803. source: "./media/characters/keset-vanrel/hand.svg"
  13804. }
  13805. },
  13806. foot: {
  13807. height: math.unit(0.94978, "meters"),
  13808. name: "Foot",
  13809. image: {
  13810. source: "./media/characters/keset-vanrel/foot.svg"
  13811. }
  13812. },
  13813. battle: {
  13814. height: math.unit(7.408, "feet"),
  13815. name: "Battle",
  13816. image: {
  13817. source: "./media/characters/keset-vanrel/battle.svg",
  13818. extra: 1890 / 1386,
  13819. bottom: 73.28 / 1970
  13820. }
  13821. },
  13822. },
  13823. [
  13824. {
  13825. name: "Normal",
  13826. height: math.unit(8 + 5 / 12, "feet"),
  13827. default: true
  13828. },
  13829. ]
  13830. ))
  13831. characterMakers.push(() => makeCharacter(
  13832. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13833. {
  13834. front: {
  13835. height: math.unit(6, "feet"),
  13836. weight: math.unit(150, "lb"),
  13837. name: "Front",
  13838. image: {
  13839. source: "./media/characters/neos/front.svg",
  13840. extra: 1696 / 992,
  13841. bottom: 0.14
  13842. }
  13843. },
  13844. },
  13845. [
  13846. {
  13847. name: "Normal",
  13848. height: math.unit(54, "cm"),
  13849. default: true
  13850. },
  13851. {
  13852. name: "Macro",
  13853. height: math.unit(100, "m")
  13854. },
  13855. {
  13856. name: "Megamacro",
  13857. height: math.unit(10, "km")
  13858. },
  13859. {
  13860. name: "Megamacro+",
  13861. height: math.unit(100, "km")
  13862. },
  13863. {
  13864. name: "Gigamacro",
  13865. height: math.unit(100, "Mm")
  13866. },
  13867. {
  13868. name: "Teramacro",
  13869. height: math.unit(100, "Gm")
  13870. },
  13871. {
  13872. name: "Examacro",
  13873. height: math.unit(100, "Em")
  13874. },
  13875. {
  13876. name: "Godly",
  13877. height: math.unit(10000, "Ym")
  13878. },
  13879. {
  13880. name: "Beyond Godly",
  13881. height: math.unit(25, "multiverses")
  13882. },
  13883. ]
  13884. ))
  13885. characterMakers.push(() => makeCharacter(
  13886. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13887. {
  13888. fluide_tame: {
  13889. height: math.unit(5, "feet"),
  13890. name: "Tame",
  13891. image: {
  13892. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  13893. extra: 1655/1574,
  13894. bottom: 231/1886
  13895. },
  13896. form: "fluide",
  13897. default: true
  13898. },
  13899. fluide_nude: {
  13900. height: math.unit(5, "feet"),
  13901. name: "Nude",
  13902. image: {
  13903. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  13904. extra: 1655/1574,
  13905. bottom: 231/1886
  13906. },
  13907. form: "fluide",
  13908. },
  13909. male_tame: {
  13910. height: math.unit(5, "feet"),
  13911. name: "Tame",
  13912. image: {
  13913. source: "./media/characters/sammy-mouse/male-tame.svg",
  13914. extra: 1655/1574,
  13915. bottom: 231/1886
  13916. },
  13917. form: "male",
  13918. default: true
  13919. },
  13920. male_nude: {
  13921. height: math.unit(5, "feet"),
  13922. name: "Nude",
  13923. image: {
  13924. source: "./media/characters/sammy-mouse/male-nude.svg",
  13925. extra: 1655/1574,
  13926. bottom: 231/1886
  13927. },
  13928. form: "male",
  13929. },
  13930. female_nude: {
  13931. height: math.unit(5, "feet"),
  13932. name: "Nude",
  13933. image: {
  13934. source: "./media/characters/sammy-mouse/female-nude.svg",
  13935. extra: 1655/1574,
  13936. bottom: 231/1886
  13937. },
  13938. form: "female",
  13939. default: true
  13940. },
  13941. mouth: {
  13942. height: math.unit(0.32, "feet"),
  13943. name: "Mouth",
  13944. image: {
  13945. source: "./media/characters/sammy-mouse/mouth.svg"
  13946. },
  13947. allForms: true
  13948. },
  13949. paw: {
  13950. height: math.unit(0.42, "feet"),
  13951. name: "Paw",
  13952. image: {
  13953. source: "./media/characters/sammy-mouse/paw.svg"
  13954. },
  13955. allForms: true
  13956. },
  13957. },
  13958. [
  13959. {
  13960. name: "Micro",
  13961. height: math.unit(5, "inches"),
  13962. allForms: true
  13963. },
  13964. {
  13965. name: "Normal",
  13966. height: math.unit(5, "feet"),
  13967. default: true,
  13968. allForms: true
  13969. },
  13970. {
  13971. name: "Macro",
  13972. height: math.unit(60, "feet"),
  13973. allForms: true
  13974. },
  13975. ],
  13976. {
  13977. "fluide": {
  13978. name: "Fluide",
  13979. default: true
  13980. },
  13981. "male": {
  13982. name: "Male",
  13983. },
  13984. "female": {
  13985. name: "Female",
  13986. },
  13987. }
  13988. ))
  13989. characterMakers.push(() => makeCharacter(
  13990. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13991. {
  13992. front: {
  13993. height: math.unit(4, "feet"),
  13994. weight: math.unit(50, "lb"),
  13995. name: "Front",
  13996. image: {
  13997. source: "./media/characters/kole/front.svg",
  13998. extra: 1423 / 1303,
  13999. bottom: 0.025
  14000. }
  14001. },
  14002. back: {
  14003. height: math.unit(4, "feet"),
  14004. weight: math.unit(50, "lb"),
  14005. name: "Back",
  14006. image: {
  14007. source: "./media/characters/kole/back.svg",
  14008. extra: 1426 / 1280,
  14009. bottom: 0.02
  14010. }
  14011. },
  14012. },
  14013. [
  14014. {
  14015. name: "Normal",
  14016. height: math.unit(4, "feet"),
  14017. default: true
  14018. },
  14019. ]
  14020. ))
  14021. characterMakers.push(() => makeCharacter(
  14022. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14023. {
  14024. front: {
  14025. height: math.unit(2.5, "feet"),
  14026. weight: math.unit(32, "lb"),
  14027. name: "Front",
  14028. image: {
  14029. source: "./media/characters/rufran/front.svg",
  14030. extra: 1313/885,
  14031. bottom: 94/1407
  14032. }
  14033. },
  14034. side: {
  14035. height: math.unit(2.5, "feet"),
  14036. weight: math.unit(32, "lb"),
  14037. name: "Side",
  14038. image: {
  14039. source: "./media/characters/rufran/side.svg",
  14040. extra: 1109/852,
  14041. bottom: 118/1227
  14042. }
  14043. },
  14044. back: {
  14045. height: math.unit(2.5, "feet"),
  14046. weight: math.unit(32, "lb"),
  14047. name: "Back",
  14048. image: {
  14049. source: "./media/characters/rufran/back.svg",
  14050. extra: 1280/878,
  14051. bottom: 131/1411
  14052. }
  14053. },
  14054. mouth: {
  14055. height: math.unit(1.13, "feet"),
  14056. name: "Mouth",
  14057. image: {
  14058. source: "./media/characters/rufran/mouth.svg"
  14059. }
  14060. },
  14061. foot: {
  14062. height: math.unit(1.33, "feet"),
  14063. name: "Foot",
  14064. image: {
  14065. source: "./media/characters/rufran/foot.svg"
  14066. }
  14067. },
  14068. koboldFront: {
  14069. height: math.unit(2 + 6 / 12, "feet"),
  14070. weight: math.unit(20, "lb"),
  14071. name: "Front (Kobold)",
  14072. image: {
  14073. source: "./media/characters/rufran/kobold-front.svg",
  14074. extra: 2041 / 1839,
  14075. bottom: 0.055
  14076. }
  14077. },
  14078. koboldBack: {
  14079. height: math.unit(2 + 6 / 12, "feet"),
  14080. weight: math.unit(20, "lb"),
  14081. name: "Back (Kobold)",
  14082. image: {
  14083. source: "./media/characters/rufran/kobold-back.svg",
  14084. extra: 2054 / 1839,
  14085. bottom: 0.01
  14086. }
  14087. },
  14088. koboldHand: {
  14089. height: math.unit(0.2166, "meters"),
  14090. name: "Hand (Kobold)",
  14091. image: {
  14092. source: "./media/characters/rufran/kobold-hand.svg"
  14093. }
  14094. },
  14095. koboldFoot: {
  14096. height: math.unit(0.185, "meters"),
  14097. name: "Foot (Kobold)",
  14098. image: {
  14099. source: "./media/characters/rufran/kobold-foot.svg"
  14100. }
  14101. },
  14102. },
  14103. [
  14104. {
  14105. name: "Micro",
  14106. height: math.unit(1, "inch")
  14107. },
  14108. {
  14109. name: "Normal",
  14110. height: math.unit(2 + 6 / 12, "feet"),
  14111. default: true
  14112. },
  14113. {
  14114. name: "Big",
  14115. height: math.unit(60, "feet")
  14116. },
  14117. {
  14118. name: "Macro",
  14119. height: math.unit(325, "feet")
  14120. },
  14121. ]
  14122. ))
  14123. characterMakers.push(() => makeCharacter(
  14124. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14125. {
  14126. front: {
  14127. height: math.unit(0.3, "meters"),
  14128. weight: math.unit(3.5, "kg"),
  14129. name: "Front",
  14130. image: {
  14131. source: "./media/characters/chip/front.svg",
  14132. extra: 748 / 674
  14133. }
  14134. },
  14135. },
  14136. [
  14137. {
  14138. name: "Micro",
  14139. height: math.unit(1, "inch"),
  14140. default: true
  14141. },
  14142. ]
  14143. ))
  14144. characterMakers.push(() => makeCharacter(
  14145. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14146. {
  14147. side: {
  14148. height: math.unit(2.3, "meters"),
  14149. weight: math.unit(3500, "lb"),
  14150. name: "Side",
  14151. image: {
  14152. source: "./media/characters/torvid/side.svg",
  14153. extra: 1972 / 722,
  14154. bottom: 0.035
  14155. }
  14156. },
  14157. },
  14158. [
  14159. {
  14160. name: "Normal",
  14161. height: math.unit(2.3, "meters"),
  14162. default: true
  14163. },
  14164. ]
  14165. ))
  14166. characterMakers.push(() => makeCharacter(
  14167. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14168. {
  14169. front: {
  14170. height: math.unit(2, "meters"),
  14171. weight: math.unit(150.5, "kg"),
  14172. name: "Front",
  14173. image: {
  14174. source: "./media/characters/susan/front.svg",
  14175. extra: 693 / 635,
  14176. bottom: 0.05
  14177. }
  14178. },
  14179. },
  14180. [
  14181. {
  14182. name: "Megamacro",
  14183. height: math.unit(505, "miles"),
  14184. default: true
  14185. },
  14186. ]
  14187. ))
  14188. characterMakers.push(() => makeCharacter(
  14189. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14190. {
  14191. front: {
  14192. height: math.unit(6, "feet"),
  14193. weight: math.unit(150, "lb"),
  14194. name: "Front",
  14195. image: {
  14196. source: "./media/characters/raindrops/front.svg",
  14197. extra: 2655 / 2461,
  14198. bottom: 49 / 2705
  14199. }
  14200. },
  14201. back: {
  14202. height: math.unit(6, "feet"),
  14203. weight: math.unit(150, "lb"),
  14204. name: "Back",
  14205. image: {
  14206. source: "./media/characters/raindrops/back.svg",
  14207. extra: 2574 / 2400,
  14208. bottom: 65 / 2634
  14209. }
  14210. },
  14211. },
  14212. [
  14213. {
  14214. name: "Micro",
  14215. height: math.unit(6, "inches")
  14216. },
  14217. {
  14218. name: "Normal",
  14219. height: math.unit(6 + 2 / 12, "feet")
  14220. },
  14221. {
  14222. name: "Macro",
  14223. height: math.unit(131, "feet"),
  14224. default: true
  14225. },
  14226. {
  14227. name: "Megamacro",
  14228. height: math.unit(15, "miles")
  14229. },
  14230. {
  14231. name: "Gigamacro",
  14232. height: math.unit(4000, "miles")
  14233. },
  14234. {
  14235. name: "Teramacro",
  14236. height: math.unit(315000, "miles")
  14237. },
  14238. ]
  14239. ))
  14240. characterMakers.push(() => makeCharacter(
  14241. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14242. {
  14243. front: {
  14244. height: math.unit(2.794, "meters"),
  14245. weight: math.unit(325, "kg"),
  14246. name: "Front",
  14247. image: {
  14248. source: "./media/characters/tezwa/front.svg",
  14249. extra: 2083 / 1906,
  14250. bottom: 0.031
  14251. }
  14252. },
  14253. foot: {
  14254. height: math.unit(0.687, "meters"),
  14255. name: "Foot",
  14256. image: {
  14257. source: "./media/characters/tezwa/foot.svg"
  14258. }
  14259. },
  14260. },
  14261. [
  14262. {
  14263. name: "Normal",
  14264. height: math.unit(9 + 2 / 12, "feet"),
  14265. default: true
  14266. },
  14267. ]
  14268. ))
  14269. characterMakers.push(() => makeCharacter(
  14270. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14271. {
  14272. front: {
  14273. height: math.unit(58, "feet"),
  14274. weight: math.unit(89000, "lb"),
  14275. name: "Front",
  14276. image: {
  14277. source: "./media/characters/typhus/front.svg",
  14278. extra: 816 / 800,
  14279. bottom: 0.065
  14280. }
  14281. },
  14282. },
  14283. [
  14284. {
  14285. name: "Macro",
  14286. height: math.unit(58, "feet"),
  14287. default: true
  14288. },
  14289. ]
  14290. ))
  14291. characterMakers.push(() => makeCharacter(
  14292. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14293. {
  14294. front: {
  14295. height: math.unit(12, "feet"),
  14296. weight: math.unit(6, "tonnes"),
  14297. name: "Front",
  14298. image: {
  14299. source: "./media/characters/lyra-von-wulf/front.svg",
  14300. extra: 1,
  14301. bottom: 0.10
  14302. }
  14303. },
  14304. frontMecha: {
  14305. height: math.unit(12, "feet"),
  14306. weight: math.unit(12, "tonnes"),
  14307. name: "Front (Mecha)",
  14308. image: {
  14309. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14310. extra: 1,
  14311. bottom: 0.042
  14312. }
  14313. },
  14314. maw: {
  14315. height: math.unit(2.2, "feet"),
  14316. name: "Maw",
  14317. image: {
  14318. source: "./media/characters/lyra-von-wulf/maw.svg"
  14319. }
  14320. },
  14321. },
  14322. [
  14323. {
  14324. name: "Normal",
  14325. height: math.unit(12, "feet"),
  14326. default: true
  14327. },
  14328. {
  14329. name: "Classic",
  14330. height: math.unit(50, "feet")
  14331. },
  14332. {
  14333. name: "Macro",
  14334. height: math.unit(500, "feet")
  14335. },
  14336. {
  14337. name: "Megamacro",
  14338. height: math.unit(1, "mile")
  14339. },
  14340. {
  14341. name: "Gigamacro",
  14342. height: math.unit(400, "miles")
  14343. },
  14344. {
  14345. name: "Teramacro",
  14346. height: math.unit(22000, "miles")
  14347. },
  14348. {
  14349. name: "Solarmacro",
  14350. height: math.unit(8600000, "miles")
  14351. },
  14352. {
  14353. name: "Galactic",
  14354. height: math.unit(1057000, "lightyears")
  14355. },
  14356. ]
  14357. ))
  14358. characterMakers.push(() => makeCharacter(
  14359. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14360. {
  14361. front: {
  14362. height: math.unit(6 + 10 / 12, "feet"),
  14363. weight: math.unit(150, "lb"),
  14364. name: "Front",
  14365. image: {
  14366. source: "./media/characters/dixon/front.svg",
  14367. extra: 3361 / 3209,
  14368. bottom: 0.01
  14369. }
  14370. },
  14371. },
  14372. [
  14373. {
  14374. name: "Normal",
  14375. height: math.unit(6 + 10 / 12, "feet"),
  14376. default: true
  14377. },
  14378. {
  14379. name: "Big",
  14380. height: math.unit(12, "meters")
  14381. },
  14382. {
  14383. name: "Macro",
  14384. height: math.unit(500, "meters")
  14385. },
  14386. {
  14387. name: "Megamacro",
  14388. height: math.unit(2, "km")
  14389. },
  14390. ]
  14391. ))
  14392. characterMakers.push(() => makeCharacter(
  14393. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14394. {
  14395. front: {
  14396. height: math.unit(185, "cm"),
  14397. weight: math.unit(68, "kg"),
  14398. name: "Front",
  14399. image: {
  14400. source: "./media/characters/kauko/front.svg",
  14401. extra: 1455 / 1421,
  14402. bottom: 0.03
  14403. }
  14404. },
  14405. back: {
  14406. height: math.unit(185, "cm"),
  14407. weight: math.unit(68, "kg"),
  14408. name: "Back",
  14409. image: {
  14410. source: "./media/characters/kauko/back.svg",
  14411. extra: 1455 / 1421,
  14412. bottom: 0.004
  14413. }
  14414. },
  14415. },
  14416. [
  14417. {
  14418. name: "Normal",
  14419. height: math.unit(185, "cm"),
  14420. default: true
  14421. },
  14422. ]
  14423. ))
  14424. characterMakers.push(() => makeCharacter(
  14425. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14426. {
  14427. frontSfw: {
  14428. height: math.unit(5, "meters"),
  14429. weight: math.unit(4250, "lb"),
  14430. name: "Front",
  14431. image: {
  14432. source: "./media/characters/varg/front-sfw.svg",
  14433. extra: 1103/1010,
  14434. bottom: 50/1153
  14435. },
  14436. form: "anthro",
  14437. default: true
  14438. },
  14439. backSfw: {
  14440. height: math.unit(5, "meters"),
  14441. weight: math.unit(4250, "lb"),
  14442. name: "Back",
  14443. image: {
  14444. source: "./media/characters/varg/back-sfw.svg",
  14445. extra: 1038/1022,
  14446. bottom: 36/1074
  14447. },
  14448. form: "anthro"
  14449. },
  14450. frontNsfw: {
  14451. height: math.unit(5, "meters"),
  14452. weight: math.unit(4250, "lb"),
  14453. name: "Front (NSFW)",
  14454. image: {
  14455. source: "./media/characters/varg/front-nsfw.svg",
  14456. extra: 1103/1010,
  14457. bottom: 50/1153
  14458. },
  14459. form: "anthro"
  14460. },
  14461. sheath: {
  14462. height: math.unit(3.8, "feet"),
  14463. weight: math.unit(90, "kilograms"),
  14464. name: "Sheath",
  14465. image: {
  14466. source: "./media/characters/varg/sheath.svg"
  14467. },
  14468. form: "anthro"
  14469. },
  14470. dick: {
  14471. height: math.unit(4.6, "feet"),
  14472. weight: math.unit(451, "kilograms"),
  14473. name: "Dick",
  14474. image: {
  14475. source: "./media/characters/varg/dick.svg"
  14476. },
  14477. form: "anthro"
  14478. },
  14479. feralSfw: {
  14480. height: math.unit(5, "meters"),
  14481. weight: math.unit(100000, "lb"),
  14482. name: "Side",
  14483. image: {
  14484. source: "./media/characters/varg/feral-sfw.svg",
  14485. extra: 1065/511,
  14486. bottom: 211/1276
  14487. },
  14488. form: "feral",
  14489. default: true
  14490. },
  14491. feralNsfw: {
  14492. height: math.unit(5, "meters"),
  14493. weight: math.unit(100000, "lb"),
  14494. name: "Side (NSFW)",
  14495. image: {
  14496. source: "./media/characters/varg/feral-nsfw.svg",
  14497. extra: 1065/511,
  14498. bottom: 211/1276
  14499. },
  14500. form: "feral",
  14501. },
  14502. feralSheath: {
  14503. height: math.unit(9.8, "feet"),
  14504. weight: math.unit(2000, "kilograms"),
  14505. name: "Sheath",
  14506. image: {
  14507. source: "./media/characters/varg/sheath.svg"
  14508. },
  14509. form: "feral"
  14510. },
  14511. feralDick: {
  14512. height: math.unit(13.11, "feet"),
  14513. weight: math.unit(10440, "kilograms"),
  14514. name: "Dick",
  14515. image: {
  14516. source: "./media/characters/varg/dick.svg"
  14517. },
  14518. form: "feral"
  14519. },
  14520. },
  14521. [
  14522. {
  14523. name: "Normal",
  14524. height: math.unit(5, "meters"),
  14525. form: "anthro"
  14526. },
  14527. {
  14528. name: "Macro",
  14529. height: math.unit(200, "meters"),
  14530. form: "anthro"
  14531. },
  14532. {
  14533. name: "Megamacro",
  14534. height: math.unit(20, "kilometers"),
  14535. form: "anthro"
  14536. },
  14537. {
  14538. name: "True Size",
  14539. height: math.unit(211, "km"),
  14540. form: "anthro",
  14541. default: true
  14542. },
  14543. {
  14544. name: "Gigamacro",
  14545. height: math.unit(1000, "km"),
  14546. form: "anthro"
  14547. },
  14548. {
  14549. name: "Gigamacro+",
  14550. height: math.unit(8000, "km"),
  14551. form: "anthro"
  14552. },
  14553. {
  14554. name: "Teramacro",
  14555. height: math.unit(1000000, "km"),
  14556. form: "anthro"
  14557. },
  14558. {
  14559. name: "Normal",
  14560. height: math.unit(5, "meters"),
  14561. form: "feral"
  14562. },
  14563. {
  14564. name: "Macro",
  14565. height: math.unit(200, "meters"),
  14566. form: "feral"
  14567. },
  14568. {
  14569. name: "Megamacro",
  14570. height: math.unit(20, "kilometers"),
  14571. form: "feral"
  14572. },
  14573. {
  14574. name: "True Size",
  14575. height: math.unit(211, "km"),
  14576. form: "feral",
  14577. default: true
  14578. },
  14579. {
  14580. name: "Gigamacro",
  14581. height: math.unit(1000, "km"),
  14582. form: "feral"
  14583. },
  14584. {
  14585. name: "Gigamacro+",
  14586. height: math.unit(8000, "km"),
  14587. form: "feral"
  14588. },
  14589. {
  14590. name: "Teramacro",
  14591. height: math.unit(1000000, "km"),
  14592. form: "feral"
  14593. },
  14594. ],
  14595. {
  14596. "anthro": {
  14597. name: "Anthro",
  14598. default: true
  14599. },
  14600. "feral": {
  14601. name: "Feral",
  14602. },
  14603. }
  14604. ))
  14605. characterMakers.push(() => makeCharacter(
  14606. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14607. {
  14608. front: {
  14609. height: math.unit(7 + 7 / 12, "feet"),
  14610. weight: math.unit(267, "lb"),
  14611. name: "Front",
  14612. image: {
  14613. source: "./media/characters/dayza/front.svg",
  14614. extra: 1262 / 1200,
  14615. bottom: 0.035
  14616. }
  14617. },
  14618. side: {
  14619. height: math.unit(7 + 7 / 12, "feet"),
  14620. weight: math.unit(267, "lb"),
  14621. name: "Side",
  14622. image: {
  14623. source: "./media/characters/dayza/side.svg",
  14624. extra: 1295 / 1245,
  14625. bottom: 0.05
  14626. }
  14627. },
  14628. back: {
  14629. height: math.unit(7 + 7 / 12, "feet"),
  14630. weight: math.unit(267, "lb"),
  14631. name: "Back",
  14632. image: {
  14633. source: "./media/characters/dayza/back.svg",
  14634. extra: 1241 / 1170
  14635. }
  14636. },
  14637. },
  14638. [
  14639. {
  14640. name: "Normal",
  14641. height: math.unit(7 + 7 / 12, "feet"),
  14642. default: true
  14643. },
  14644. {
  14645. name: "Macro",
  14646. height: math.unit(155, "feet")
  14647. },
  14648. ]
  14649. ))
  14650. characterMakers.push(() => makeCharacter(
  14651. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14652. {
  14653. front: {
  14654. height: math.unit(6 + 5 / 12, "feet"),
  14655. weight: math.unit(160, "lb"),
  14656. name: "Front",
  14657. image: {
  14658. source: "./media/characters/xanthos/front.svg",
  14659. extra: 1,
  14660. bottom: 0.04
  14661. }
  14662. },
  14663. back: {
  14664. height: math.unit(6 + 5 / 12, "feet"),
  14665. weight: math.unit(160, "lb"),
  14666. name: "Back",
  14667. image: {
  14668. source: "./media/characters/xanthos/back.svg",
  14669. extra: 1,
  14670. bottom: 0.03
  14671. }
  14672. },
  14673. hand: {
  14674. height: math.unit(0.928, "feet"),
  14675. name: "Hand",
  14676. image: {
  14677. source: "./media/characters/xanthos/hand.svg"
  14678. }
  14679. },
  14680. foot: {
  14681. height: math.unit(1.286, "feet"),
  14682. name: "Foot",
  14683. image: {
  14684. source: "./media/characters/xanthos/foot.svg"
  14685. }
  14686. },
  14687. },
  14688. [
  14689. {
  14690. name: "Normal",
  14691. height: math.unit(6 + 5 / 12, "feet"),
  14692. default: true
  14693. },
  14694. {
  14695. name: "Normal+",
  14696. height: math.unit(6, "meters")
  14697. },
  14698. {
  14699. name: "Macro",
  14700. height: math.unit(40, "feet")
  14701. },
  14702. {
  14703. name: "Macro+",
  14704. height: math.unit(200, "meters")
  14705. },
  14706. {
  14707. name: "Megamacro",
  14708. height: math.unit(20, "km")
  14709. },
  14710. {
  14711. name: "Megamacro+",
  14712. height: math.unit(100, "km")
  14713. },
  14714. {
  14715. name: "Gigamacro",
  14716. height: math.unit(200, "megameters")
  14717. },
  14718. {
  14719. name: "Gigamacro+",
  14720. height: math.unit(1.5, "gigameters")
  14721. },
  14722. ]
  14723. ))
  14724. characterMakers.push(() => makeCharacter(
  14725. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14726. {
  14727. front: {
  14728. height: math.unit(6 + 3 / 12, "feet"),
  14729. weight: math.unit(215, "lb"),
  14730. name: "Front",
  14731. image: {
  14732. source: "./media/characters/grynn/front.svg",
  14733. extra: 4627 / 4209,
  14734. bottom: 0.047
  14735. }
  14736. },
  14737. },
  14738. [
  14739. {
  14740. name: "Micro",
  14741. height: math.unit(6, "inches")
  14742. },
  14743. {
  14744. name: "Normal",
  14745. height: math.unit(6 + 3 / 12, "feet"),
  14746. default: true
  14747. },
  14748. {
  14749. name: "Big",
  14750. height: math.unit(104, "feet")
  14751. },
  14752. {
  14753. name: "Macro",
  14754. height: math.unit(944, "feet")
  14755. },
  14756. {
  14757. name: "Macro+",
  14758. height: math.unit(9480, "feet")
  14759. },
  14760. {
  14761. name: "Megamacro",
  14762. height: math.unit(78752, "feet")
  14763. },
  14764. {
  14765. name: "Megamacro+",
  14766. height: math.unit(630128, "feet")
  14767. },
  14768. {
  14769. name: "Megamacro++",
  14770. height: math.unit(3150695, "feet")
  14771. },
  14772. ]
  14773. ))
  14774. characterMakers.push(() => makeCharacter(
  14775. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14776. {
  14777. front: {
  14778. height: math.unit(7 + 5 / 12, "feet"),
  14779. weight: math.unit(450, "lb"),
  14780. name: "Front",
  14781. image: {
  14782. source: "./media/characters/mocha-aura/front.svg",
  14783. extra: 1907 / 1817,
  14784. bottom: 0.04
  14785. }
  14786. },
  14787. back: {
  14788. height: math.unit(7 + 5 / 12, "feet"),
  14789. weight: math.unit(450, "lb"),
  14790. name: "Back",
  14791. image: {
  14792. source: "./media/characters/mocha-aura/back.svg",
  14793. extra: 1900 / 1825,
  14794. bottom: 0.045
  14795. }
  14796. },
  14797. },
  14798. [
  14799. {
  14800. name: "Nano",
  14801. height: math.unit(1, "nm")
  14802. },
  14803. {
  14804. name: "Megamicro",
  14805. height: math.unit(1, "mm")
  14806. },
  14807. {
  14808. name: "Micro",
  14809. height: math.unit(3, "inches")
  14810. },
  14811. {
  14812. name: "Normal",
  14813. height: math.unit(7 + 5 / 12, "feet"),
  14814. default: true
  14815. },
  14816. {
  14817. name: "Macro",
  14818. height: math.unit(30, "feet")
  14819. },
  14820. {
  14821. name: "Megamacro",
  14822. height: math.unit(3500, "feet")
  14823. },
  14824. {
  14825. name: "Teramacro",
  14826. height: math.unit(500000, "miles")
  14827. },
  14828. {
  14829. name: "Petamacro",
  14830. height: math.unit(50000000000000000, "parsecs")
  14831. },
  14832. ]
  14833. ))
  14834. characterMakers.push(() => makeCharacter(
  14835. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14836. {
  14837. front: {
  14838. height: math.unit(6, "feet"),
  14839. weight: math.unit(150, "lb"),
  14840. name: "Front",
  14841. image: {
  14842. source: "./media/characters/ilisha-devya/front.svg",
  14843. extra: 1053/1049,
  14844. bottom: 270/1323
  14845. }
  14846. },
  14847. back: {
  14848. height: math.unit(6, "feet"),
  14849. weight: math.unit(150, "lb"),
  14850. name: "Back",
  14851. image: {
  14852. source: "./media/characters/ilisha-devya/back.svg",
  14853. extra: 1131/1128,
  14854. bottom: 39/1170
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Macro",
  14861. height: math.unit(500, "feet"),
  14862. default: true
  14863. },
  14864. {
  14865. name: "Megamacro",
  14866. height: math.unit(10, "miles")
  14867. },
  14868. {
  14869. name: "Gigamacro",
  14870. height: math.unit(100000, "miles")
  14871. },
  14872. {
  14873. name: "Examacro",
  14874. height: math.unit(1e9, "lightyears")
  14875. },
  14876. {
  14877. name: "Omniversal",
  14878. height: math.unit(1e33, "lightyears")
  14879. },
  14880. {
  14881. name: "Beyond Infinite",
  14882. height: math.unit(1e100, "lightyears")
  14883. },
  14884. ]
  14885. ))
  14886. characterMakers.push(() => makeCharacter(
  14887. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14888. {
  14889. Side: {
  14890. height: math.unit(6, "feet"),
  14891. weight: math.unit(150, "lb"),
  14892. name: "Side",
  14893. image: {
  14894. source: "./media/characters/mira/side.svg",
  14895. extra: 900 / 799,
  14896. bottom: 0.02
  14897. }
  14898. },
  14899. },
  14900. [
  14901. {
  14902. name: "Human Size",
  14903. height: math.unit(6, "feet")
  14904. },
  14905. {
  14906. name: "Macro",
  14907. height: math.unit(100, "feet"),
  14908. default: true
  14909. },
  14910. {
  14911. name: "Megamacro",
  14912. height: math.unit(10, "miles")
  14913. },
  14914. {
  14915. name: "Gigamacro",
  14916. height: math.unit(25000, "miles")
  14917. },
  14918. {
  14919. name: "Teramacro",
  14920. height: math.unit(300, "AU")
  14921. },
  14922. {
  14923. name: "Full Size",
  14924. height: math.unit(4.5e10, "lightyears")
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14930. {
  14931. front: {
  14932. height: math.unit(6, "feet"),
  14933. weight: math.unit(150, "lb"),
  14934. name: "Front",
  14935. image: {
  14936. source: "./media/characters/holly/front.svg",
  14937. extra: 639 / 606
  14938. }
  14939. },
  14940. back: {
  14941. height: math.unit(6, "feet"),
  14942. weight: math.unit(150, "lb"),
  14943. name: "Back",
  14944. image: {
  14945. source: "./media/characters/holly/back.svg",
  14946. extra: 623 / 598
  14947. }
  14948. },
  14949. frontWorking: {
  14950. height: math.unit(6, "feet"),
  14951. weight: math.unit(150, "lb"),
  14952. name: "Front (Working)",
  14953. image: {
  14954. source: "./media/characters/holly/front-working.svg",
  14955. extra: 607 / 577,
  14956. bottom: 0.048
  14957. }
  14958. },
  14959. },
  14960. [
  14961. {
  14962. name: "Normal",
  14963. height: math.unit(12 + 3 / 12, "feet"),
  14964. default: true
  14965. },
  14966. ]
  14967. ))
  14968. characterMakers.push(() => makeCharacter(
  14969. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14970. {
  14971. front: {
  14972. height: math.unit(6, "feet"),
  14973. weight: math.unit(150, "lb"),
  14974. name: "Front",
  14975. image: {
  14976. source: "./media/characters/porter/front.svg",
  14977. extra: 1,
  14978. bottom: 0.01
  14979. }
  14980. },
  14981. frontRobes: {
  14982. height: math.unit(6, "feet"),
  14983. weight: math.unit(150, "lb"),
  14984. name: "Front (Robes)",
  14985. image: {
  14986. source: "./media/characters/porter/front-robes.svg",
  14987. extra: 1.01,
  14988. bottom: 0.01
  14989. }
  14990. },
  14991. },
  14992. [
  14993. {
  14994. name: "Normal",
  14995. height: math.unit(11 + 9 / 12, "feet"),
  14996. default: true
  14997. },
  14998. ]
  14999. ))
  15000. characterMakers.push(() => makeCharacter(
  15001. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15002. {
  15003. legendary: {
  15004. height: math.unit(6, "feet"),
  15005. weight: math.unit(150, "lb"),
  15006. name: "Legendary",
  15007. image: {
  15008. source: "./media/characters/lucy/legendary.svg",
  15009. extra: 1355 / 1100,
  15010. bottom: 0.045
  15011. }
  15012. },
  15013. },
  15014. [
  15015. {
  15016. name: "Legendary",
  15017. height: math.unit(86882 * 2, "miles"),
  15018. default: true
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15024. {
  15025. front: {
  15026. height: math.unit(6, "feet"),
  15027. weight: math.unit(150, "lb"),
  15028. name: "Front",
  15029. image: {
  15030. source: "./media/characters/drusilla/front.svg",
  15031. extra: 678 / 635,
  15032. bottom: 0.03
  15033. }
  15034. },
  15035. back: {
  15036. height: math.unit(6, "feet"),
  15037. weight: math.unit(150, "lb"),
  15038. name: "Back",
  15039. image: {
  15040. source: "./media/characters/drusilla/back.svg",
  15041. extra: 678 / 635,
  15042. bottom: 0.005
  15043. }
  15044. },
  15045. },
  15046. [
  15047. {
  15048. name: "Macro",
  15049. height: math.unit(100, "feet")
  15050. },
  15051. {
  15052. name: "Canon Height",
  15053. height: math.unit(2000, "feet"),
  15054. default: true
  15055. },
  15056. ]
  15057. ))
  15058. characterMakers.push(() => makeCharacter(
  15059. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15060. {
  15061. front: {
  15062. height: math.unit(6, "feet"),
  15063. weight: math.unit(180, "lb"),
  15064. name: "Front",
  15065. image: {
  15066. source: "./media/characters/renard-thatch/front.svg",
  15067. extra: 2411 / 2275,
  15068. bottom: 0.01
  15069. }
  15070. },
  15071. frontPosing: {
  15072. height: math.unit(6, "feet"),
  15073. weight: math.unit(180, "lb"),
  15074. name: "Front (Posing)",
  15075. image: {
  15076. source: "./media/characters/renard-thatch/front-posing.svg",
  15077. extra: 2381 / 2261,
  15078. bottom: 0.01
  15079. }
  15080. },
  15081. back: {
  15082. height: math.unit(6, "feet"),
  15083. weight: math.unit(180, "lb"),
  15084. name: "Back",
  15085. image: {
  15086. source: "./media/characters/renard-thatch/back.svg",
  15087. extra: 2428 / 2288
  15088. }
  15089. },
  15090. },
  15091. [
  15092. {
  15093. name: "Micro",
  15094. height: math.unit(3, "inches")
  15095. },
  15096. {
  15097. name: "Default",
  15098. height: math.unit(6, "feet"),
  15099. default: true
  15100. },
  15101. {
  15102. name: "Macro",
  15103. height: math.unit(75, "feet")
  15104. },
  15105. ]
  15106. ))
  15107. characterMakers.push(() => makeCharacter(
  15108. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15109. {
  15110. front: {
  15111. height: math.unit(1450, "feet"),
  15112. weight: math.unit(1.21e6, "tons"),
  15113. name: "Front",
  15114. image: {
  15115. source: "./media/characters/sekvra/front.svg",
  15116. extra: 1193/1190,
  15117. bottom: 78/1271
  15118. }
  15119. },
  15120. side: {
  15121. height: math.unit(1450, "feet"),
  15122. weight: math.unit(1.21e6, "tons"),
  15123. name: "Side",
  15124. image: {
  15125. source: "./media/characters/sekvra/side.svg",
  15126. extra: 1193/1190,
  15127. bottom: 52/1245
  15128. }
  15129. },
  15130. back: {
  15131. height: math.unit(1450, "feet"),
  15132. weight: math.unit(1.21e6, "tons"),
  15133. name: "Back",
  15134. image: {
  15135. source: "./media/characters/sekvra/back.svg",
  15136. extra: 1219/1216,
  15137. bottom: 21/1240
  15138. }
  15139. },
  15140. frontClothed: {
  15141. height: math.unit(1450, "feet"),
  15142. weight: math.unit(1.21e6, "tons"),
  15143. name: "Front (Clothed)",
  15144. image: {
  15145. source: "./media/characters/sekvra/front-clothed.svg",
  15146. extra: 1192/1189,
  15147. bottom: 79/1271
  15148. }
  15149. },
  15150. },
  15151. [
  15152. {
  15153. name: "Macro",
  15154. height: math.unit(1450, "feet"),
  15155. default: true
  15156. },
  15157. {
  15158. name: "Megamacro",
  15159. height: math.unit(15000, "feet")
  15160. },
  15161. ]
  15162. ))
  15163. characterMakers.push(() => makeCharacter(
  15164. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15165. {
  15166. front: {
  15167. height: math.unit(6, "feet"),
  15168. weight: math.unit(150, "lb"),
  15169. name: "Front",
  15170. image: {
  15171. source: "./media/characters/carmine/front.svg",
  15172. extra: 1557/1538,
  15173. bottom: 68/1625
  15174. }
  15175. },
  15176. frontArmor: {
  15177. height: math.unit(6, "feet"),
  15178. weight: math.unit(150, "lb"),
  15179. name: "Front (Armor)",
  15180. image: {
  15181. source: "./media/characters/carmine/front-armor.svg",
  15182. extra: 1549/1530,
  15183. bottom: 82/1631
  15184. }
  15185. },
  15186. mouth: {
  15187. height: math.unit(0.55, "feet"),
  15188. name: "Mouth",
  15189. image: {
  15190. source: "./media/characters/carmine/mouth.svg"
  15191. }
  15192. },
  15193. hand: {
  15194. height: math.unit(1.05, "feet"),
  15195. name: "Hand",
  15196. image: {
  15197. source: "./media/characters/carmine/hand.svg"
  15198. }
  15199. },
  15200. foot: {
  15201. height: math.unit(0.6, "feet"),
  15202. name: "Foot",
  15203. image: {
  15204. source: "./media/characters/carmine/foot.svg"
  15205. }
  15206. },
  15207. },
  15208. [
  15209. {
  15210. name: "Large",
  15211. height: math.unit(1, "mile")
  15212. },
  15213. {
  15214. name: "Huge",
  15215. height: math.unit(40, "miles"),
  15216. default: true
  15217. },
  15218. {
  15219. name: "Colossal",
  15220. height: math.unit(2500, "miles")
  15221. },
  15222. ]
  15223. ))
  15224. characterMakers.push(() => makeCharacter(
  15225. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15226. {
  15227. front: {
  15228. height: math.unit(6, "feet"),
  15229. weight: math.unit(150, "lb"),
  15230. name: "Front",
  15231. image: {
  15232. source: "./media/characters/elyssia/front.svg",
  15233. extra: 2201 / 2035,
  15234. bottom: 0.05
  15235. }
  15236. },
  15237. frontClothed: {
  15238. height: math.unit(6, "feet"),
  15239. weight: math.unit(150, "lb"),
  15240. name: "Front (Clothed)",
  15241. image: {
  15242. source: "./media/characters/elyssia/front-clothed.svg",
  15243. extra: 2201 / 2035,
  15244. bottom: 0.05
  15245. }
  15246. },
  15247. back: {
  15248. height: math.unit(6, "feet"),
  15249. weight: math.unit(150, "lb"),
  15250. name: "Back",
  15251. image: {
  15252. source: "./media/characters/elyssia/back.svg",
  15253. extra: 2201 / 2035,
  15254. bottom: 0.013
  15255. }
  15256. },
  15257. },
  15258. [
  15259. {
  15260. name: "Smaller",
  15261. height: math.unit(150, "feet")
  15262. },
  15263. {
  15264. name: "Standard",
  15265. height: math.unit(1400, "feet"),
  15266. default: true
  15267. },
  15268. {
  15269. name: "Distracted",
  15270. height: math.unit(15000, "feet")
  15271. },
  15272. ]
  15273. ))
  15274. characterMakers.push(() => makeCharacter(
  15275. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15276. {
  15277. front: {
  15278. height: math.unit(7 + 4/12, "feet"),
  15279. weight: math.unit(690, "lb"),
  15280. name: "Front",
  15281. image: {
  15282. source: "./media/characters/geno-maxwell/front.svg",
  15283. extra: 984/856,
  15284. bottom: 87/1071
  15285. }
  15286. },
  15287. back: {
  15288. height: math.unit(7 + 4/12, "feet"),
  15289. weight: math.unit(690, "lb"),
  15290. name: "Back",
  15291. image: {
  15292. source: "./media/characters/geno-maxwell/back.svg",
  15293. extra: 981/854,
  15294. bottom: 57/1038
  15295. }
  15296. },
  15297. frontCostume: {
  15298. height: math.unit(7 + 4/12, "feet"),
  15299. weight: math.unit(690, "lb"),
  15300. name: "Front (Costume)",
  15301. image: {
  15302. source: "./media/characters/geno-maxwell/front-costume.svg",
  15303. extra: 984/856,
  15304. bottom: 87/1071
  15305. }
  15306. },
  15307. backcostume: {
  15308. height: math.unit(7 + 4/12, "feet"),
  15309. weight: math.unit(690, "lb"),
  15310. name: "Back (Costume)",
  15311. image: {
  15312. source: "./media/characters/geno-maxwell/back-costume.svg",
  15313. extra: 981/854,
  15314. bottom: 57/1038
  15315. }
  15316. },
  15317. },
  15318. [
  15319. {
  15320. name: "Micro",
  15321. height: math.unit(3, "inches")
  15322. },
  15323. {
  15324. name: "Normal",
  15325. height: math.unit(7 + 4 / 12, "feet"),
  15326. default: true
  15327. },
  15328. {
  15329. name: "Macro",
  15330. height: math.unit(220, "feet")
  15331. },
  15332. {
  15333. name: "Megamacro",
  15334. height: math.unit(11, "miles")
  15335. },
  15336. ]
  15337. ))
  15338. characterMakers.push(() => makeCharacter(
  15339. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15340. {
  15341. front: {
  15342. height: math.unit(7 + 4/12, "feet"),
  15343. weight: math.unit(750, "lb"),
  15344. name: "Front",
  15345. image: {
  15346. source: "./media/characters/regena-maxwell/front.svg",
  15347. extra: 984/856,
  15348. bottom: 87/1071
  15349. }
  15350. },
  15351. back: {
  15352. height: math.unit(7 + 4/12, "feet"),
  15353. weight: math.unit(750, "lb"),
  15354. name: "Back",
  15355. image: {
  15356. source: "./media/characters/regena-maxwell/back.svg",
  15357. extra: 981/854,
  15358. bottom: 57/1038
  15359. }
  15360. },
  15361. frontCostume: {
  15362. height: math.unit(7 + 4/12, "feet"),
  15363. weight: math.unit(750, "lb"),
  15364. name: "Front (Costume)",
  15365. image: {
  15366. source: "./media/characters/regena-maxwell/front-costume.svg",
  15367. extra: 984/856,
  15368. bottom: 87/1071
  15369. }
  15370. },
  15371. backcostume: {
  15372. height: math.unit(7 + 4/12, "feet"),
  15373. weight: math.unit(750, "lb"),
  15374. name: "Back (Costume)",
  15375. image: {
  15376. source: "./media/characters/regena-maxwell/back-costume.svg",
  15377. extra: 981/854,
  15378. bottom: 57/1038
  15379. }
  15380. },
  15381. },
  15382. [
  15383. {
  15384. name: "Normal",
  15385. height: math.unit(7 + 4 / 12, "feet"),
  15386. default: true
  15387. },
  15388. {
  15389. name: "Macro",
  15390. height: math.unit(220, "feet")
  15391. },
  15392. {
  15393. name: "Megamacro",
  15394. height: math.unit(11, "miles")
  15395. },
  15396. ]
  15397. ))
  15398. characterMakers.push(() => makeCharacter(
  15399. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15400. {
  15401. front: {
  15402. height: math.unit(6, "feet"),
  15403. weight: math.unit(150, "lb"),
  15404. name: "Front",
  15405. image: {
  15406. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15407. extra: 860 / 690,
  15408. bottom: 0.03
  15409. }
  15410. },
  15411. },
  15412. [
  15413. {
  15414. name: "Normal",
  15415. height: math.unit(1.7, "meters"),
  15416. default: true
  15417. },
  15418. ]
  15419. ))
  15420. characterMakers.push(() => makeCharacter(
  15421. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15422. {
  15423. front: {
  15424. height: math.unit(6, "feet"),
  15425. weight: math.unit(150, "lb"),
  15426. name: "Front",
  15427. image: {
  15428. source: "./media/characters/quilly/front.svg",
  15429. extra: 890 / 776
  15430. }
  15431. },
  15432. },
  15433. [
  15434. {
  15435. name: "Gigamacro",
  15436. height: math.unit(404090, "miles"),
  15437. default: true
  15438. },
  15439. ]
  15440. ))
  15441. characterMakers.push(() => makeCharacter(
  15442. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15443. {
  15444. front: {
  15445. height: math.unit(7 + 8 / 12, "feet"),
  15446. weight: math.unit(350, "lb"),
  15447. name: "Front",
  15448. image: {
  15449. source: "./media/characters/tempest/front.svg",
  15450. extra: 1175 / 1086,
  15451. bottom: 0.02
  15452. }
  15453. },
  15454. },
  15455. [
  15456. {
  15457. name: "Normal",
  15458. height: math.unit(7 + 8 / 12, "feet"),
  15459. default: true
  15460. },
  15461. ]
  15462. ))
  15463. characterMakers.push(() => makeCharacter(
  15464. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15465. {
  15466. side: {
  15467. height: math.unit(4 + 5 / 12, "feet"),
  15468. weight: math.unit(80, "lb"),
  15469. name: "Side",
  15470. image: {
  15471. source: "./media/characters/rodger/side.svg",
  15472. extra: 1235 / 1118
  15473. }
  15474. },
  15475. },
  15476. [
  15477. {
  15478. name: "Micro",
  15479. height: math.unit(1, "inch")
  15480. },
  15481. {
  15482. name: "Normal",
  15483. height: math.unit(4 + 5 / 12, "feet"),
  15484. default: true
  15485. },
  15486. {
  15487. name: "Macro",
  15488. height: math.unit(120, "feet")
  15489. },
  15490. ]
  15491. ))
  15492. characterMakers.push(() => makeCharacter(
  15493. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15494. {
  15495. front: {
  15496. height: math.unit(6, "feet"),
  15497. weight: math.unit(150, "lb"),
  15498. name: "Front",
  15499. image: {
  15500. source: "./media/characters/danyel/front.svg",
  15501. extra: 1185 / 1123,
  15502. bottom: 0.05
  15503. }
  15504. },
  15505. },
  15506. [
  15507. {
  15508. name: "Shrunken",
  15509. height: math.unit(0.5, "mm")
  15510. },
  15511. {
  15512. name: "Micro",
  15513. height: math.unit(1, "mm"),
  15514. default: true
  15515. },
  15516. {
  15517. name: "Upsized",
  15518. height: math.unit(5 + 5 / 12, "feet")
  15519. },
  15520. ]
  15521. ))
  15522. characterMakers.push(() => makeCharacter(
  15523. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15524. {
  15525. front: {
  15526. height: math.unit(5 + 6 / 12, "feet"),
  15527. weight: math.unit(200, "lb"),
  15528. name: "Front",
  15529. image: {
  15530. source: "./media/characters/vivian-bijoux/front.svg",
  15531. extra: 1217/1209,
  15532. bottom: 76/1293
  15533. }
  15534. },
  15535. back: {
  15536. height: math.unit(5 + 6 / 12, "feet"),
  15537. weight: math.unit(200, "lb"),
  15538. name: "Back",
  15539. image: {
  15540. source: "./media/characters/vivian-bijoux/back.svg",
  15541. extra: 1214/1208,
  15542. bottom: 51/1265
  15543. }
  15544. },
  15545. dressed: {
  15546. height: math.unit(5 + 6 / 12, "feet"),
  15547. weight: math.unit(200, "lb"),
  15548. name: "Dressed",
  15549. image: {
  15550. source: "./media/characters/vivian-bijoux/dressed.svg",
  15551. extra: 1217/1209,
  15552. bottom: 76/1293
  15553. }
  15554. },
  15555. },
  15556. [
  15557. {
  15558. name: "Normal",
  15559. height: math.unit(5 + 6 / 12, "feet"),
  15560. default: true
  15561. },
  15562. {
  15563. name: "Bad Dream",
  15564. height: math.unit(500, "feet")
  15565. },
  15566. {
  15567. name: "Nightmare",
  15568. height: math.unit(500, "miles")
  15569. },
  15570. ]
  15571. ))
  15572. characterMakers.push(() => makeCharacter(
  15573. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15574. {
  15575. front: {
  15576. height: math.unit(6 + 1 / 12, "feet"),
  15577. weight: math.unit(260, "lb"),
  15578. name: "Front",
  15579. image: {
  15580. source: "./media/characters/zeta/front.svg",
  15581. extra: 1968 / 1889,
  15582. bottom: 0.06
  15583. }
  15584. },
  15585. back: {
  15586. height: math.unit(6 + 1 / 12, "feet"),
  15587. weight: math.unit(260, "lb"),
  15588. name: "Back",
  15589. image: {
  15590. source: "./media/characters/zeta/back.svg",
  15591. extra: 1944 / 1858,
  15592. bottom: 0.03
  15593. }
  15594. },
  15595. hand: {
  15596. height: math.unit(1.112, "feet"),
  15597. name: "Hand",
  15598. image: {
  15599. source: "./media/characters/zeta/hand.svg"
  15600. }
  15601. },
  15602. foot: {
  15603. height: math.unit(1.48, "feet"),
  15604. name: "Foot",
  15605. image: {
  15606. source: "./media/characters/zeta/foot.svg"
  15607. }
  15608. },
  15609. },
  15610. [
  15611. {
  15612. name: "Micro",
  15613. height: math.unit(6, "inches")
  15614. },
  15615. {
  15616. name: "Normal",
  15617. height: math.unit(6 + 1 / 12, "feet"),
  15618. default: true
  15619. },
  15620. {
  15621. name: "Macro",
  15622. height: math.unit(20, "feet")
  15623. },
  15624. ]
  15625. ))
  15626. characterMakers.push(() => makeCharacter(
  15627. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15628. {
  15629. front: {
  15630. height: math.unit(6, "feet"),
  15631. weight: math.unit(150, "lb"),
  15632. name: "Front",
  15633. image: {
  15634. source: "./media/characters/jamie-larsen/front.svg",
  15635. extra: 962 / 933,
  15636. bottom: 0.02
  15637. }
  15638. },
  15639. back: {
  15640. height: math.unit(6, "feet"),
  15641. weight: math.unit(150, "lb"),
  15642. name: "Back",
  15643. image: {
  15644. source: "./media/characters/jamie-larsen/back.svg",
  15645. extra: 997 / 946
  15646. }
  15647. },
  15648. },
  15649. [
  15650. {
  15651. name: "Macro",
  15652. height: math.unit(28 + 7 / 12, "feet"),
  15653. default: true
  15654. },
  15655. {
  15656. name: "Macro+",
  15657. height: math.unit(180, "feet")
  15658. },
  15659. {
  15660. name: "Megamacro",
  15661. height: math.unit(10, "miles")
  15662. },
  15663. {
  15664. name: "Gigamacro",
  15665. height: math.unit(200000, "miles")
  15666. },
  15667. ]
  15668. ))
  15669. characterMakers.push(() => makeCharacter(
  15670. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15671. {
  15672. front: {
  15673. height: math.unit(6, "feet"),
  15674. weight: math.unit(120, "lb"),
  15675. name: "Front",
  15676. image: {
  15677. source: "./media/characters/vance/front.svg",
  15678. extra: 1980 / 1890,
  15679. bottom: 0.09
  15680. }
  15681. },
  15682. back: {
  15683. height: math.unit(6, "feet"),
  15684. weight: math.unit(120, "lb"),
  15685. name: "Back",
  15686. image: {
  15687. source: "./media/characters/vance/back.svg",
  15688. extra: 2081 / 1994,
  15689. bottom: 0.014
  15690. }
  15691. },
  15692. hand: {
  15693. height: math.unit(0.88, "feet"),
  15694. name: "Hand",
  15695. image: {
  15696. source: "./media/characters/vance/hand.svg"
  15697. }
  15698. },
  15699. foot: {
  15700. height: math.unit(0.64, "feet"),
  15701. name: "Foot",
  15702. image: {
  15703. source: "./media/characters/vance/foot.svg"
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "Small",
  15710. height: math.unit(90, "feet"),
  15711. default: true
  15712. },
  15713. {
  15714. name: "Macro",
  15715. height: math.unit(100, "meters")
  15716. },
  15717. {
  15718. name: "Megamacro",
  15719. height: math.unit(15, "miles")
  15720. },
  15721. ]
  15722. ))
  15723. characterMakers.push(() => makeCharacter(
  15724. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15725. {
  15726. front: {
  15727. height: math.unit(6, "feet"),
  15728. weight: math.unit(180, "lb"),
  15729. name: "Front",
  15730. image: {
  15731. source: "./media/characters/xochitl/front.svg",
  15732. extra: 2297 / 2261,
  15733. bottom: 0.065
  15734. }
  15735. },
  15736. back: {
  15737. height: math.unit(6, "feet"),
  15738. weight: math.unit(180, "lb"),
  15739. name: "Back",
  15740. image: {
  15741. source: "./media/characters/xochitl/back.svg",
  15742. extra: 2386 / 2354,
  15743. bottom: 0.01
  15744. }
  15745. },
  15746. foot: {
  15747. height: math.unit(6 / 5 * 1.15, "feet"),
  15748. weight: math.unit(150, "lb"),
  15749. name: "Foot",
  15750. image: {
  15751. source: "./media/characters/xochitl/foot.svg"
  15752. }
  15753. },
  15754. },
  15755. [
  15756. {
  15757. name: "Macro",
  15758. height: math.unit(80, "feet")
  15759. },
  15760. {
  15761. name: "Macro+",
  15762. height: math.unit(400, "feet"),
  15763. default: true
  15764. },
  15765. {
  15766. name: "Gigamacro",
  15767. height: math.unit(80000, "miles")
  15768. },
  15769. {
  15770. name: "Gigamacro+",
  15771. height: math.unit(400000, "miles")
  15772. },
  15773. {
  15774. name: "Teramacro",
  15775. height: math.unit(300, "AU")
  15776. },
  15777. ]
  15778. ))
  15779. characterMakers.push(() => makeCharacter(
  15780. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15781. {
  15782. front: {
  15783. height: math.unit(6, "feet"),
  15784. weight: math.unit(150, "lb"),
  15785. name: "Front",
  15786. image: {
  15787. source: "./media/characters/vincent/front.svg",
  15788. extra: 1130 / 1080,
  15789. bottom: 0.055
  15790. }
  15791. },
  15792. beak: {
  15793. height: math.unit(6 * 0.1, "feet"),
  15794. name: "Beak",
  15795. image: {
  15796. source: "./media/characters/vincent/beak.svg"
  15797. }
  15798. },
  15799. hand: {
  15800. height: math.unit(6 * 0.85, "feet"),
  15801. weight: math.unit(150, "lb"),
  15802. name: "Hand",
  15803. image: {
  15804. source: "./media/characters/vincent/hand.svg"
  15805. }
  15806. },
  15807. foot: {
  15808. height: math.unit(6 * 0.19, "feet"),
  15809. weight: math.unit(150, "lb"),
  15810. name: "Foot",
  15811. image: {
  15812. source: "./media/characters/vincent/foot.svg"
  15813. }
  15814. },
  15815. },
  15816. [
  15817. {
  15818. name: "Base",
  15819. height: math.unit(6 + 5 / 12, "feet"),
  15820. default: true
  15821. },
  15822. {
  15823. name: "Macro",
  15824. height: math.unit(300, "feet")
  15825. },
  15826. {
  15827. name: "Megamacro",
  15828. height: math.unit(2, "miles")
  15829. },
  15830. {
  15831. name: "Gigamacro",
  15832. height: math.unit(1000, "miles")
  15833. },
  15834. ]
  15835. ))
  15836. characterMakers.push(() => makeCharacter(
  15837. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15838. {
  15839. front: {
  15840. height: math.unit(2, "meters"),
  15841. weight: math.unit(500, "kg"),
  15842. name: "Front",
  15843. image: {
  15844. source: "./media/characters/coatl/front.svg",
  15845. extra: 3948 / 3500,
  15846. bottom: 0.082
  15847. }
  15848. },
  15849. },
  15850. [
  15851. {
  15852. name: "Normal",
  15853. height: math.unit(4, "meters")
  15854. },
  15855. {
  15856. name: "Macro",
  15857. height: math.unit(100, "meters"),
  15858. default: true
  15859. },
  15860. {
  15861. name: "Macro+",
  15862. height: math.unit(300, "meters")
  15863. },
  15864. {
  15865. name: "Megamacro",
  15866. height: math.unit(3, "gigameters")
  15867. },
  15868. {
  15869. name: "Megamacro+",
  15870. height: math.unit(300, "terameters")
  15871. },
  15872. {
  15873. name: "Megamacro++",
  15874. height: math.unit(3, "lightyears")
  15875. },
  15876. ]
  15877. ))
  15878. characterMakers.push(() => makeCharacter(
  15879. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15880. {
  15881. front: {
  15882. height: math.unit(6, "feet"),
  15883. weight: math.unit(50, "kg"),
  15884. name: "front",
  15885. image: {
  15886. source: "./media/characters/shiroryu/front.svg",
  15887. extra: 1990 / 1935
  15888. }
  15889. },
  15890. },
  15891. [
  15892. {
  15893. name: "Mortal Mingling",
  15894. height: math.unit(3, "meters")
  15895. },
  15896. {
  15897. name: "Kaiju-ish",
  15898. height: math.unit(250, "meters")
  15899. },
  15900. {
  15901. name: "Somewhat Godly",
  15902. height: math.unit(400, "km"),
  15903. default: true
  15904. },
  15905. {
  15906. name: "Planetary",
  15907. height: math.unit(300, "megameters")
  15908. },
  15909. {
  15910. name: "Galaxy-dwarfing",
  15911. height: math.unit(450, "kiloparsecs")
  15912. },
  15913. {
  15914. name: "Universe Eater",
  15915. height: math.unit(150, "gigaparsecs")
  15916. },
  15917. {
  15918. name: "Almost Immeasurable",
  15919. height: math.unit(1.3e266, "yottaparsecs")
  15920. },
  15921. ]
  15922. ))
  15923. characterMakers.push(() => makeCharacter(
  15924. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15925. {
  15926. front: {
  15927. height: math.unit(6, "feet"),
  15928. weight: math.unit(150, "lb"),
  15929. name: "Front",
  15930. image: {
  15931. source: "./media/characters/umeko/front.svg",
  15932. extra: 1,
  15933. bottom: 0.019
  15934. }
  15935. },
  15936. frontArmored: {
  15937. height: math.unit(6, "feet"),
  15938. weight: math.unit(150, "lb"),
  15939. name: "Front (Armored)",
  15940. image: {
  15941. source: "./media/characters/umeko/front-armored.svg",
  15942. extra: 1,
  15943. bottom: 0.021
  15944. }
  15945. },
  15946. },
  15947. [
  15948. {
  15949. name: "Macro",
  15950. height: math.unit(220, "feet"),
  15951. default: true
  15952. },
  15953. {
  15954. name: "Guardian Dragon",
  15955. height: math.unit(50, "miles")
  15956. },
  15957. {
  15958. name: "Cosmic",
  15959. height: math.unit(800000, "miles")
  15960. },
  15961. ]
  15962. ))
  15963. characterMakers.push(() => makeCharacter(
  15964. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15965. {
  15966. front: {
  15967. height: math.unit(6, "feet"),
  15968. weight: math.unit(150, "lb"),
  15969. name: "Front",
  15970. image: {
  15971. source: "./media/characters/cassidy/front.svg",
  15972. extra: 810/808,
  15973. bottom: 41/851
  15974. }
  15975. },
  15976. },
  15977. [
  15978. {
  15979. name: "Canon Height",
  15980. height: math.unit(120, "feet"),
  15981. default: true
  15982. },
  15983. {
  15984. name: "Macro+",
  15985. height: math.unit(400, "feet")
  15986. },
  15987. {
  15988. name: "Macro++",
  15989. height: math.unit(4000, "feet")
  15990. },
  15991. {
  15992. name: "Megamacro",
  15993. height: math.unit(3, "miles")
  15994. },
  15995. ]
  15996. ))
  15997. characterMakers.push(() => makeCharacter(
  15998. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15999. {
  16000. front: {
  16001. height: math.unit(6, "feet"),
  16002. weight: math.unit(150, "lb"),
  16003. name: "Front",
  16004. image: {
  16005. source: "./media/characters/isaac/front.svg",
  16006. extra: 896 / 815,
  16007. bottom: 0.11
  16008. }
  16009. },
  16010. },
  16011. [
  16012. {
  16013. name: "Human Size",
  16014. height: math.unit(8, "feet"),
  16015. default: true
  16016. },
  16017. {
  16018. name: "Macro",
  16019. height: math.unit(400, "feet")
  16020. },
  16021. {
  16022. name: "Megamacro",
  16023. height: math.unit(50, "miles")
  16024. },
  16025. {
  16026. name: "Canon Height",
  16027. height: math.unit(200, "AU")
  16028. },
  16029. ]
  16030. ))
  16031. characterMakers.push(() => makeCharacter(
  16032. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16033. {
  16034. front: {
  16035. height: math.unit(6, "feet"),
  16036. weight: math.unit(72, "kg"),
  16037. name: "Front",
  16038. image: {
  16039. source: "./media/characters/sleekit/front.svg",
  16040. extra: 4693 / 4487,
  16041. bottom: 0.012
  16042. }
  16043. },
  16044. },
  16045. [
  16046. {
  16047. name: "Minimum Height",
  16048. height: math.unit(10, "meters")
  16049. },
  16050. {
  16051. name: "Smaller",
  16052. height: math.unit(25, "meters")
  16053. },
  16054. {
  16055. name: "Larger",
  16056. height: math.unit(38, "meters"),
  16057. default: true
  16058. },
  16059. {
  16060. name: "Maximum height",
  16061. height: math.unit(100, "meters")
  16062. },
  16063. ]
  16064. ))
  16065. characterMakers.push(() => makeCharacter(
  16066. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16067. {
  16068. front: {
  16069. height: math.unit(6, "feet"),
  16070. weight: math.unit(150, "lb"),
  16071. name: "Front",
  16072. image: {
  16073. source: "./media/characters/nillia/front.svg",
  16074. extra: 719/665,
  16075. bottom: 6/725
  16076. }
  16077. },
  16078. back: {
  16079. height: math.unit(6, "feet"),
  16080. weight: math.unit(150, "lb"),
  16081. name: "Back",
  16082. image: {
  16083. source: "./media/characters/nillia/back.svg",
  16084. extra: 705/651,
  16085. bottom: 5/710
  16086. }
  16087. },
  16088. },
  16089. [
  16090. {
  16091. name: "Canon Height",
  16092. height: math.unit(489, "feet"),
  16093. default: true
  16094. }
  16095. ]
  16096. ))
  16097. characterMakers.push(() => makeCharacter(
  16098. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16099. {
  16100. front: {
  16101. height: math.unit(6, "feet"),
  16102. weight: math.unit(150, "lb"),
  16103. name: "Front",
  16104. image: {
  16105. source: "./media/characters/mesmyriza/front.svg",
  16106. extra: 1541/1291,
  16107. bottom: 87/1628
  16108. }
  16109. },
  16110. foot: {
  16111. height: math.unit(6 / (250 / 35), "feet"),
  16112. name: "Foot",
  16113. image: {
  16114. source: "./media/characters/mesmyriza/foot.svg"
  16115. }
  16116. },
  16117. },
  16118. [
  16119. {
  16120. name: "Macro",
  16121. height: math.unit(457, "meters"),
  16122. default: true
  16123. },
  16124. {
  16125. name: "Megamacro",
  16126. height: math.unit(8, "megameters")
  16127. },
  16128. ]
  16129. ))
  16130. characterMakers.push(() => makeCharacter(
  16131. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16132. {
  16133. front: {
  16134. height: math.unit(6, "feet"),
  16135. weight: math.unit(250, "lb"),
  16136. name: "Front",
  16137. image: {
  16138. source: "./media/characters/saudade/front.svg",
  16139. extra: 1172 / 1139,
  16140. bottom: 0.035
  16141. }
  16142. },
  16143. },
  16144. [
  16145. {
  16146. name: "Micro",
  16147. height: math.unit(3, "inches")
  16148. },
  16149. {
  16150. name: "Normal",
  16151. height: math.unit(6, "feet"),
  16152. default: true
  16153. },
  16154. {
  16155. name: "Macro",
  16156. height: math.unit(50, "feet")
  16157. },
  16158. {
  16159. name: "Megamacro",
  16160. height: math.unit(2800, "feet")
  16161. },
  16162. ]
  16163. ))
  16164. characterMakers.push(() => makeCharacter(
  16165. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16166. {
  16167. front: {
  16168. height: math.unit(5 + 4 / 12, "feet"),
  16169. weight: math.unit(100, "lb"),
  16170. name: "Front",
  16171. image: {
  16172. source: "./media/characters/keireer/front.svg",
  16173. extra: 716 / 666,
  16174. bottom: 0.05
  16175. }
  16176. },
  16177. },
  16178. [
  16179. {
  16180. name: "Normal",
  16181. height: math.unit(5 + 4 / 12, "feet"),
  16182. default: true
  16183. },
  16184. ]
  16185. ))
  16186. characterMakers.push(() => makeCharacter(
  16187. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16188. {
  16189. front: {
  16190. height: math.unit(5.5, "feet"),
  16191. weight: math.unit(90, "kg"),
  16192. name: "Front",
  16193. image: {
  16194. source: "./media/characters/mirja/front.svg",
  16195. extra: 1452/1262,
  16196. bottom: 67/1519
  16197. }
  16198. },
  16199. frontDressed: {
  16200. height: math.unit(5.5, "feet"),
  16201. weight: math.unit(90, "lb"),
  16202. name: "Front (Dressed)",
  16203. image: {
  16204. source: "./media/characters/mirja/dressed.svg",
  16205. extra: 1452/1262,
  16206. bottom: 67/1519
  16207. }
  16208. },
  16209. back: {
  16210. height: math.unit(6, "feet"),
  16211. weight: math.unit(90, "lb"),
  16212. name: "Back",
  16213. image: {
  16214. source: "./media/characters/mirja/back.svg",
  16215. extra: 1892/1795,
  16216. bottom: 48/1940
  16217. }
  16218. },
  16219. maw: {
  16220. height: math.unit(1.312, "feet"),
  16221. name: "Maw",
  16222. image: {
  16223. source: "./media/characters/mirja/maw.svg"
  16224. }
  16225. },
  16226. paw: {
  16227. height: math.unit(1.15, "feet"),
  16228. name: "Paw",
  16229. image: {
  16230. source: "./media/characters/mirja/paw.svg"
  16231. }
  16232. },
  16233. },
  16234. [
  16235. {
  16236. name: "\"Incognito\"",
  16237. height: math.unit(3, "meters")
  16238. },
  16239. {
  16240. name: "Strolling Size",
  16241. height: math.unit(15, "km")
  16242. },
  16243. {
  16244. name: "Larger Strolling Size",
  16245. height: math.unit(400, "km")
  16246. },
  16247. {
  16248. name: "Preferred Size",
  16249. height: math.unit(5000, "km"),
  16250. default: true
  16251. },
  16252. {
  16253. name: "True Size",
  16254. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16255. },
  16256. ]
  16257. ))
  16258. characterMakers.push(() => makeCharacter(
  16259. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16260. {
  16261. front: {
  16262. height: math.unit(15, "feet"),
  16263. weight: math.unit(880, "kg"),
  16264. name: "Front",
  16265. image: {
  16266. source: "./media/characters/nightraver/front.svg",
  16267. extra: 2444 / 2160,
  16268. bottom: 0.027
  16269. }
  16270. },
  16271. back: {
  16272. height: math.unit(15, "feet"),
  16273. weight: math.unit(880, "kg"),
  16274. name: "Back",
  16275. image: {
  16276. source: "./media/characters/nightraver/back.svg",
  16277. extra: 2309 / 2180,
  16278. bottom: 0.005
  16279. }
  16280. },
  16281. sole: {
  16282. height: math.unit(2.878, "feet"),
  16283. name: "Sole",
  16284. image: {
  16285. source: "./media/characters/nightraver/sole.svg"
  16286. }
  16287. },
  16288. foot: {
  16289. height: math.unit(2.285, "feet"),
  16290. name: "Foot",
  16291. image: {
  16292. source: "./media/characters/nightraver/foot.svg"
  16293. }
  16294. },
  16295. maw: {
  16296. height: math.unit(2.67, "feet"),
  16297. name: "Maw",
  16298. image: {
  16299. source: "./media/characters/nightraver/maw.svg"
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Micro",
  16306. height: math.unit(1, "cm")
  16307. },
  16308. {
  16309. name: "Normal",
  16310. height: math.unit(15, "feet"),
  16311. default: true
  16312. },
  16313. {
  16314. name: "Macro",
  16315. height: math.unit(300, "feet")
  16316. },
  16317. {
  16318. name: "Megamacro",
  16319. height: math.unit(300, "miles")
  16320. },
  16321. {
  16322. name: "Gigamacro",
  16323. height: math.unit(10000, "miles")
  16324. },
  16325. ]
  16326. ))
  16327. characterMakers.push(() => makeCharacter(
  16328. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16329. {
  16330. side: {
  16331. height: math.unit(2, "inches"),
  16332. weight: math.unit(5, "grams"),
  16333. name: "Side",
  16334. image: {
  16335. source: "./media/characters/arc/side.svg"
  16336. }
  16337. },
  16338. },
  16339. [
  16340. {
  16341. name: "Micro",
  16342. height: math.unit(2, "inches"),
  16343. default: true
  16344. },
  16345. ]
  16346. ))
  16347. characterMakers.push(() => makeCharacter(
  16348. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16349. {
  16350. front: {
  16351. height: math.unit(1.1938, "meters"),
  16352. weight: math.unit(54, "kg"),
  16353. name: "Front",
  16354. image: {
  16355. source: "./media/characters/nebula-shahar/front.svg",
  16356. extra: 1642 / 1436,
  16357. bottom: 0.06
  16358. }
  16359. },
  16360. },
  16361. [
  16362. {
  16363. name: "Megamicro",
  16364. height: math.unit(0.3, "mm")
  16365. },
  16366. {
  16367. name: "Micro",
  16368. height: math.unit(3, "cm")
  16369. },
  16370. {
  16371. name: "Normal",
  16372. height: math.unit(138, "cm"),
  16373. default: true
  16374. },
  16375. {
  16376. name: "Macro",
  16377. height: math.unit(30, "m")
  16378. },
  16379. ]
  16380. ))
  16381. characterMakers.push(() => makeCharacter(
  16382. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16383. {
  16384. front: {
  16385. height: math.unit(5.24, "feet"),
  16386. weight: math.unit(150, "lb"),
  16387. name: "Front",
  16388. image: {
  16389. source: "./media/characters/shayla/front.svg",
  16390. extra: 1512 / 1414,
  16391. bottom: 0.01
  16392. }
  16393. },
  16394. back: {
  16395. height: math.unit(5.24, "feet"),
  16396. weight: math.unit(150, "lb"),
  16397. name: "Back",
  16398. image: {
  16399. source: "./media/characters/shayla/back.svg",
  16400. extra: 1512 / 1414
  16401. }
  16402. },
  16403. hand: {
  16404. height: math.unit(0.7781496062992126, "feet"),
  16405. name: "Hand",
  16406. image: {
  16407. source: "./media/characters/shayla/hand.svg"
  16408. }
  16409. },
  16410. foot: {
  16411. height: math.unit(1.4206036745406823, "feet"),
  16412. name: "Foot",
  16413. image: {
  16414. source: "./media/characters/shayla/foot.svg"
  16415. }
  16416. },
  16417. },
  16418. [
  16419. {
  16420. name: "Micro",
  16421. height: math.unit(0.32, "feet")
  16422. },
  16423. {
  16424. name: "Normal",
  16425. height: math.unit(5.24, "feet"),
  16426. default: true
  16427. },
  16428. {
  16429. name: "Macro",
  16430. height: math.unit(492.12, "feet")
  16431. },
  16432. {
  16433. name: "Megamacro",
  16434. height: math.unit(186.41, "miles")
  16435. },
  16436. ]
  16437. ))
  16438. characterMakers.push(() => makeCharacter(
  16439. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16440. {
  16441. front: {
  16442. height: math.unit(2.2, "m"),
  16443. weight: math.unit(120, "kg"),
  16444. name: "Front",
  16445. image: {
  16446. source: "./media/characters/pia-jr/front.svg",
  16447. extra: 1000 / 970,
  16448. bottom: 0.035
  16449. }
  16450. },
  16451. hand: {
  16452. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16453. name: "Hand",
  16454. image: {
  16455. source: "./media/characters/pia-jr/hand.svg"
  16456. }
  16457. },
  16458. paw: {
  16459. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16460. name: "Paw",
  16461. image: {
  16462. source: "./media/characters/pia-jr/paw.svg"
  16463. }
  16464. },
  16465. },
  16466. [
  16467. {
  16468. name: "Micro",
  16469. height: math.unit(1.2, "cm")
  16470. },
  16471. {
  16472. name: "Normal",
  16473. height: math.unit(2.2, "m"),
  16474. default: true
  16475. },
  16476. {
  16477. name: "Macro",
  16478. height: math.unit(180, "m")
  16479. },
  16480. {
  16481. name: "Megamacro",
  16482. height: math.unit(420, "km")
  16483. },
  16484. ]
  16485. ))
  16486. characterMakers.push(() => makeCharacter(
  16487. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16488. {
  16489. front: {
  16490. height: math.unit(2, "m"),
  16491. weight: math.unit(115, "kg"),
  16492. name: "Front",
  16493. image: {
  16494. source: "./media/characters/pia-sr/front.svg",
  16495. extra: 760 / 730,
  16496. bottom: 0.015
  16497. }
  16498. },
  16499. back: {
  16500. height: math.unit(2, "m"),
  16501. weight: math.unit(115, "kg"),
  16502. name: "Back",
  16503. image: {
  16504. source: "./media/characters/pia-sr/back.svg",
  16505. extra: 760 / 730,
  16506. bottom: 0.01
  16507. }
  16508. },
  16509. hand: {
  16510. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16511. name: "Hand",
  16512. image: {
  16513. source: "./media/characters/pia-sr/hand.svg"
  16514. }
  16515. },
  16516. foot: {
  16517. height: math.unit(1.83, "feet"),
  16518. name: "Foot",
  16519. image: {
  16520. source: "./media/characters/pia-sr/foot.svg"
  16521. }
  16522. },
  16523. },
  16524. [
  16525. {
  16526. name: "Micro",
  16527. height: math.unit(88, "mm")
  16528. },
  16529. {
  16530. name: "Normal",
  16531. height: math.unit(2, "m"),
  16532. default: true
  16533. },
  16534. {
  16535. name: "Macro",
  16536. height: math.unit(200, "m")
  16537. },
  16538. {
  16539. name: "Megamacro",
  16540. height: math.unit(420, "km")
  16541. },
  16542. ]
  16543. ))
  16544. characterMakers.push(() => makeCharacter(
  16545. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16546. {
  16547. front: {
  16548. height: math.unit(8 + 2 / 12, "feet"),
  16549. weight: math.unit(300, "lb"),
  16550. name: "Front",
  16551. image: {
  16552. source: "./media/characters/kibibyte/front.svg",
  16553. extra: 2221 / 2098,
  16554. bottom: 0.04
  16555. }
  16556. },
  16557. },
  16558. [
  16559. {
  16560. name: "Normal",
  16561. height: math.unit(8 + 2 / 12, "feet"),
  16562. default: true
  16563. },
  16564. {
  16565. name: "Socialable Macro",
  16566. height: math.unit(50, "feet")
  16567. },
  16568. {
  16569. name: "Macro",
  16570. height: math.unit(300, "feet")
  16571. },
  16572. {
  16573. name: "Megamacro",
  16574. height: math.unit(500, "miles")
  16575. },
  16576. ]
  16577. ))
  16578. characterMakers.push(() => makeCharacter(
  16579. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16580. {
  16581. front: {
  16582. height: math.unit(6, "feet"),
  16583. weight: math.unit(150, "lb"),
  16584. name: "Front",
  16585. image: {
  16586. source: "./media/characters/felix/front.svg",
  16587. extra: 762 / 722,
  16588. bottom: 0.02
  16589. }
  16590. },
  16591. frontClothed: {
  16592. height: math.unit(6, "feet"),
  16593. weight: math.unit(150, "lb"),
  16594. name: "Front (Clothed)",
  16595. image: {
  16596. source: "./media/characters/felix/front-clothed.svg",
  16597. extra: 762 / 722,
  16598. bottom: 0.02
  16599. }
  16600. },
  16601. },
  16602. [
  16603. {
  16604. name: "Normal",
  16605. height: math.unit(6 + 8 / 12, "feet"),
  16606. default: true
  16607. },
  16608. {
  16609. name: "Macro",
  16610. height: math.unit(2600, "feet")
  16611. },
  16612. {
  16613. name: "Megamacro",
  16614. height: math.unit(450, "miles")
  16615. },
  16616. ]
  16617. ))
  16618. characterMakers.push(() => makeCharacter(
  16619. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16620. {
  16621. front: {
  16622. height: math.unit(6 + 1 / 12, "feet"),
  16623. weight: math.unit(250, "lb"),
  16624. name: "Front",
  16625. image: {
  16626. source: "./media/characters/tobo/front.svg",
  16627. extra: 608 / 586,
  16628. bottom: 0.023
  16629. }
  16630. },
  16631. back: {
  16632. height: math.unit(6 + 1 / 12, "feet"),
  16633. weight: math.unit(250, "lb"),
  16634. name: "Back",
  16635. image: {
  16636. source: "./media/characters/tobo/back.svg",
  16637. extra: 608 / 586
  16638. }
  16639. },
  16640. },
  16641. [
  16642. {
  16643. name: "Nano",
  16644. height: math.unit(2, "nm")
  16645. },
  16646. {
  16647. name: "Megamicro",
  16648. height: math.unit(0.1, "mm")
  16649. },
  16650. {
  16651. name: "Micro",
  16652. height: math.unit(1, "inch"),
  16653. default: true
  16654. },
  16655. {
  16656. name: "Human-sized",
  16657. height: math.unit(6 + 1 / 12, "feet")
  16658. },
  16659. {
  16660. name: "Macro",
  16661. height: math.unit(250, "feet")
  16662. },
  16663. {
  16664. name: "Megamacro",
  16665. height: math.unit(75, "miles")
  16666. },
  16667. {
  16668. name: "Texas-sized",
  16669. height: math.unit(750, "miles")
  16670. },
  16671. {
  16672. name: "Teramacro",
  16673. height: math.unit(50000, "miles")
  16674. },
  16675. ]
  16676. ))
  16677. characterMakers.push(() => makeCharacter(
  16678. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16679. {
  16680. front: {
  16681. height: math.unit(6, "feet"),
  16682. weight: math.unit(269, "lb"),
  16683. name: "Front",
  16684. image: {
  16685. source: "./media/characters/danny-kapowsky/front.svg",
  16686. extra: 766 / 736,
  16687. bottom: 0.044
  16688. }
  16689. },
  16690. back: {
  16691. height: math.unit(6, "feet"),
  16692. weight: math.unit(269, "lb"),
  16693. name: "Back",
  16694. image: {
  16695. source: "./media/characters/danny-kapowsky/back.svg",
  16696. extra: 797 / 760,
  16697. bottom: 0.025
  16698. }
  16699. },
  16700. },
  16701. [
  16702. {
  16703. name: "Macro",
  16704. height: math.unit(150, "feet"),
  16705. default: true
  16706. },
  16707. {
  16708. name: "Macro+",
  16709. height: math.unit(200, "feet")
  16710. },
  16711. {
  16712. name: "Macro++",
  16713. height: math.unit(300, "feet")
  16714. },
  16715. {
  16716. name: "Macro+++",
  16717. height: math.unit(400, "feet")
  16718. },
  16719. ]
  16720. ))
  16721. characterMakers.push(() => makeCharacter(
  16722. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16723. {
  16724. side: {
  16725. height: math.unit(6, "feet"),
  16726. weight: math.unit(170, "lb"),
  16727. name: "Side",
  16728. image: {
  16729. source: "./media/characters/finn/side.svg",
  16730. extra: 1953 / 1807,
  16731. bottom: 0.057
  16732. }
  16733. },
  16734. },
  16735. [
  16736. {
  16737. name: "Megamacro",
  16738. height: math.unit(14445, "feet"),
  16739. default: true
  16740. },
  16741. ]
  16742. ))
  16743. characterMakers.push(() => makeCharacter(
  16744. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16745. {
  16746. front: {
  16747. height: math.unit(5 + 6 / 12, "feet"),
  16748. weight: math.unit(125, "lb"),
  16749. name: "Front",
  16750. image: {
  16751. source: "./media/characters/roy/front.svg",
  16752. extra: 1,
  16753. bottom: 0.11
  16754. }
  16755. },
  16756. },
  16757. [
  16758. {
  16759. name: "Micro",
  16760. height: math.unit(3, "inches"),
  16761. default: true
  16762. },
  16763. {
  16764. name: "Normal",
  16765. height: math.unit(5 + 6 / 12, "feet")
  16766. },
  16767. {
  16768. name: "Lesser Macro",
  16769. height: math.unit(60, "feet")
  16770. },
  16771. {
  16772. name: "Greater Macro",
  16773. height: math.unit(120, "feet")
  16774. },
  16775. ]
  16776. ))
  16777. characterMakers.push(() => makeCharacter(
  16778. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16779. {
  16780. front: {
  16781. height: math.unit(6, "feet"),
  16782. weight: math.unit(100, "lb"),
  16783. name: "Front",
  16784. image: {
  16785. source: "./media/characters/aevsivs/front.svg",
  16786. extra: 1,
  16787. bottom: 0.03
  16788. }
  16789. },
  16790. back: {
  16791. height: math.unit(6, "feet"),
  16792. weight: math.unit(100, "lb"),
  16793. name: "Back",
  16794. image: {
  16795. source: "./media/characters/aevsivs/back.svg"
  16796. }
  16797. },
  16798. },
  16799. [
  16800. {
  16801. name: "Micro",
  16802. height: math.unit(2, "inches"),
  16803. default: true
  16804. },
  16805. {
  16806. name: "Normal",
  16807. height: math.unit(5, "feet")
  16808. },
  16809. ]
  16810. ))
  16811. characterMakers.push(() => makeCharacter(
  16812. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16813. {
  16814. front: {
  16815. height: math.unit(5 + 7 / 12, "feet"),
  16816. weight: math.unit(159, "lb"),
  16817. name: "Front",
  16818. image: {
  16819. source: "./media/characters/hildegard/front.svg",
  16820. extra: 289 / 269,
  16821. bottom: 7.63 / 297.8
  16822. }
  16823. },
  16824. back: {
  16825. height: math.unit(5 + 7 / 12, "feet"),
  16826. weight: math.unit(159, "lb"),
  16827. name: "Back",
  16828. image: {
  16829. source: "./media/characters/hildegard/back.svg",
  16830. extra: 280 / 260,
  16831. bottom: 2.3 / 282
  16832. }
  16833. },
  16834. },
  16835. [
  16836. {
  16837. name: "Normal",
  16838. height: math.unit(5 + 7 / 12, "feet"),
  16839. default: true
  16840. },
  16841. ]
  16842. ))
  16843. characterMakers.push(() => makeCharacter(
  16844. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16845. {
  16846. bernard: {
  16847. height: math.unit(2 + 7 / 12, "feet"),
  16848. weight: math.unit(66, "lb"),
  16849. name: "Bernard",
  16850. rename: true,
  16851. image: {
  16852. source: "./media/characters/bernard-wilder/bernard.svg",
  16853. extra: 192 / 128,
  16854. bottom: 0.05
  16855. }
  16856. },
  16857. wilder: {
  16858. height: math.unit(5 + 8 / 12, "feet"),
  16859. weight: math.unit(143, "lb"),
  16860. name: "Wilder",
  16861. rename: true,
  16862. image: {
  16863. source: "./media/characters/bernard-wilder/wilder.svg",
  16864. extra: 361 / 312,
  16865. bottom: 0.02
  16866. }
  16867. },
  16868. },
  16869. [
  16870. {
  16871. name: "Normal",
  16872. height: math.unit(2 + 7 / 12, "feet"),
  16873. default: true
  16874. },
  16875. ]
  16876. ))
  16877. characterMakers.push(() => makeCharacter(
  16878. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16879. {
  16880. anthro: {
  16881. height: math.unit(6 + 1 / 12, "feet"),
  16882. weight: math.unit(155, "lb"),
  16883. name: "Anthro",
  16884. image: {
  16885. source: "./media/characters/hearth/anthro.svg",
  16886. extra: 1178/1136,
  16887. bottom: 28/1206
  16888. }
  16889. },
  16890. feral: {
  16891. height: math.unit(3.78, "feet"),
  16892. weight: math.unit(35, "kg"),
  16893. name: "Feral",
  16894. image: {
  16895. source: "./media/characters/hearth/feral.svg",
  16896. extra: 153 / 135,
  16897. bottom: 0.03
  16898. }
  16899. },
  16900. },
  16901. [
  16902. {
  16903. name: "Normal",
  16904. height: math.unit(6 + 1 / 12, "feet"),
  16905. default: true
  16906. },
  16907. ]
  16908. ))
  16909. characterMakers.push(() => makeCharacter(
  16910. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16911. {
  16912. front: {
  16913. height: math.unit(6, "feet"),
  16914. weight: math.unit(182, "lb"),
  16915. name: "Front",
  16916. image: {
  16917. source: "./media/characters/ingrid/front.svg",
  16918. extra: 294 / 268,
  16919. bottom: 0.027
  16920. }
  16921. },
  16922. },
  16923. [
  16924. {
  16925. name: "Normal",
  16926. height: math.unit(6, "feet"),
  16927. default: true
  16928. },
  16929. ]
  16930. ))
  16931. characterMakers.push(() => makeCharacter(
  16932. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16933. {
  16934. eevee: {
  16935. height: math.unit(2 + 10 / 12, "feet"),
  16936. weight: math.unit(86, "lb"),
  16937. name: "Malgam",
  16938. image: {
  16939. source: "./media/characters/malgam/eevee.svg",
  16940. extra: 952/784,
  16941. bottom: 38/990
  16942. }
  16943. },
  16944. sylveon: {
  16945. height: math.unit(4, "feet"),
  16946. weight: math.unit(101, "lb"),
  16947. name: "Future Malgam",
  16948. rename: true,
  16949. image: {
  16950. source: "./media/characters/malgam/sylveon.svg",
  16951. extra: 371 / 325,
  16952. bottom: 0.015
  16953. }
  16954. },
  16955. gigantamax: {
  16956. height: math.unit(50, "feet"),
  16957. name: "Gigantamax Malgam",
  16958. rename: true,
  16959. image: {
  16960. source: "./media/characters/malgam/gigantamax.svg"
  16961. }
  16962. },
  16963. },
  16964. [
  16965. {
  16966. name: "Normal",
  16967. height: math.unit(2 + 10 / 12, "feet"),
  16968. default: true
  16969. },
  16970. ]
  16971. ))
  16972. characterMakers.push(() => makeCharacter(
  16973. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16974. {
  16975. front: {
  16976. height: math.unit(5 + 11 / 12, "feet"),
  16977. weight: math.unit(188, "lb"),
  16978. name: "Front",
  16979. image: {
  16980. source: "./media/characters/fleur/front.svg",
  16981. extra: 309 / 283,
  16982. bottom: 0.007
  16983. }
  16984. },
  16985. },
  16986. [
  16987. {
  16988. name: "Normal",
  16989. height: math.unit(5 + 11 / 12, "feet"),
  16990. default: true
  16991. },
  16992. ]
  16993. ))
  16994. characterMakers.push(() => makeCharacter(
  16995. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16996. {
  16997. front: {
  16998. height: math.unit(5 + 4 / 12, "feet"),
  16999. weight: math.unit(122, "lb"),
  17000. name: "Front",
  17001. image: {
  17002. source: "./media/characters/jude/front.svg",
  17003. extra: 288 / 273,
  17004. bottom: 0.03
  17005. }
  17006. },
  17007. },
  17008. [
  17009. {
  17010. name: "Normal",
  17011. height: math.unit(5 + 4 / 12, "feet"),
  17012. default: true
  17013. },
  17014. ]
  17015. ))
  17016. characterMakers.push(() => makeCharacter(
  17017. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17018. {
  17019. front: {
  17020. height: math.unit(5 + 11 / 12, "feet"),
  17021. weight: math.unit(190, "lb"),
  17022. name: "Front",
  17023. image: {
  17024. source: "./media/characters/seara/front.svg",
  17025. extra: 1,
  17026. bottom: 0.05
  17027. }
  17028. },
  17029. },
  17030. [
  17031. {
  17032. name: "Normal",
  17033. height: math.unit(5 + 11 / 12, "feet"),
  17034. default: true
  17035. },
  17036. ]
  17037. ))
  17038. characterMakers.push(() => makeCharacter(
  17039. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17040. {
  17041. front: {
  17042. height: math.unit(16 + 5 / 12, "feet"),
  17043. weight: math.unit(524, "lb"),
  17044. name: "Front",
  17045. image: {
  17046. source: "./media/characters/caspian-lugia/front.svg",
  17047. extra: 1,
  17048. bottom: 0.04
  17049. }
  17050. },
  17051. },
  17052. [
  17053. {
  17054. name: "Normal",
  17055. height: math.unit(16 + 5 / 12, "feet"),
  17056. default: true
  17057. },
  17058. ]
  17059. ))
  17060. characterMakers.push(() => makeCharacter(
  17061. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17062. {
  17063. front: {
  17064. height: math.unit(5 + 7 / 12, "feet"),
  17065. weight: math.unit(170, "lb"),
  17066. name: "Front",
  17067. image: {
  17068. source: "./media/characters/mika/front.svg",
  17069. extra: 1,
  17070. bottom: 0.016
  17071. }
  17072. },
  17073. },
  17074. [
  17075. {
  17076. name: "Normal",
  17077. height: math.unit(5 + 7 / 12, "feet"),
  17078. default: true
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17084. {
  17085. front: {
  17086. height: math.unit(6 + 2 / 12, "feet"),
  17087. weight: math.unit(268, "lb"),
  17088. name: "Front",
  17089. image: {
  17090. source: "./media/characters/sol/front.svg",
  17091. extra: 247 / 231,
  17092. bottom: 0.05
  17093. }
  17094. },
  17095. },
  17096. [
  17097. {
  17098. name: "Normal",
  17099. height: math.unit(6 + 2 / 12, "feet"),
  17100. default: true
  17101. },
  17102. ]
  17103. ))
  17104. characterMakers.push(() => makeCharacter(
  17105. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17106. {
  17107. buizel: {
  17108. height: math.unit(2 + 5 / 12, "feet"),
  17109. weight: math.unit(87, "lb"),
  17110. name: "Front",
  17111. image: {
  17112. source: "./media/characters/umiko/buizel.svg",
  17113. extra: 172 / 157,
  17114. bottom: 0.01
  17115. },
  17116. form: "buizel",
  17117. default: true
  17118. },
  17119. floatzel: {
  17120. height: math.unit(5 + 9 / 12, "feet"),
  17121. weight: math.unit(250, "lb"),
  17122. name: "Front",
  17123. image: {
  17124. source: "./media/characters/umiko/floatzel.svg",
  17125. extra: 1076/1006,
  17126. bottom: 15/1091
  17127. },
  17128. form: "floatzel",
  17129. default: true
  17130. },
  17131. },
  17132. [
  17133. {
  17134. name: "Normal",
  17135. height: math.unit(2 + 5 / 12, "feet"),
  17136. form: "buizel",
  17137. default: true
  17138. },
  17139. {
  17140. name: "Normal",
  17141. height: math.unit(5 + 9 / 12, "feet"),
  17142. form: "floatzel",
  17143. default: true
  17144. },
  17145. ],
  17146. {
  17147. "buizel": {
  17148. name: "Buizel"
  17149. },
  17150. "floatzel": {
  17151. name: "Floatzel",
  17152. default: true
  17153. }
  17154. }
  17155. ))
  17156. characterMakers.push(() => makeCharacter(
  17157. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17158. {
  17159. front: {
  17160. height: math.unit(6 + 2 / 12, "feet"),
  17161. weight: math.unit(146, "lb"),
  17162. name: "Front",
  17163. image: {
  17164. source: "./media/characters/iliac/front.svg",
  17165. extra: 389 / 365,
  17166. bottom: 0.035
  17167. }
  17168. },
  17169. },
  17170. [
  17171. {
  17172. name: "Normal",
  17173. height: math.unit(6 + 2 / 12, "feet"),
  17174. default: true
  17175. },
  17176. ]
  17177. ))
  17178. characterMakers.push(() => makeCharacter(
  17179. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17180. {
  17181. front: {
  17182. height: math.unit(6, "feet"),
  17183. weight: math.unit(170, "lb"),
  17184. name: "Front",
  17185. image: {
  17186. source: "./media/characters/topaz/front.svg",
  17187. extra: 317 / 303,
  17188. bottom: 0.055
  17189. }
  17190. },
  17191. },
  17192. [
  17193. {
  17194. name: "Normal",
  17195. height: math.unit(6, "feet"),
  17196. default: true
  17197. },
  17198. ]
  17199. ))
  17200. characterMakers.push(() => makeCharacter(
  17201. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17202. {
  17203. front: {
  17204. height: math.unit(5 + 11 / 12, "feet"),
  17205. weight: math.unit(144, "lb"),
  17206. name: "Front",
  17207. image: {
  17208. source: "./media/characters/gabriel/front.svg",
  17209. extra: 285 / 262,
  17210. bottom: 0.004
  17211. }
  17212. },
  17213. },
  17214. [
  17215. {
  17216. name: "Normal",
  17217. height: math.unit(5 + 11 / 12, "feet"),
  17218. default: true
  17219. },
  17220. ]
  17221. ))
  17222. characterMakers.push(() => makeCharacter(
  17223. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17224. {
  17225. side: {
  17226. height: math.unit(6 + 5 / 12, "feet"),
  17227. weight: math.unit(300, "lb"),
  17228. name: "Side",
  17229. image: {
  17230. source: "./media/characters/tempest-suicune/side.svg",
  17231. extra: 195 / 154,
  17232. bottom: 0.04
  17233. }
  17234. },
  17235. },
  17236. [
  17237. {
  17238. name: "Normal",
  17239. height: math.unit(6 + 5 / 12, "feet"),
  17240. default: true
  17241. },
  17242. ]
  17243. ))
  17244. characterMakers.push(() => makeCharacter(
  17245. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17246. {
  17247. front: {
  17248. height: math.unit(7 + 2 / 12, "feet"),
  17249. weight: math.unit(322, "lb"),
  17250. name: "Front",
  17251. image: {
  17252. source: "./media/characters/vulcan/front.svg",
  17253. extra: 154 / 147,
  17254. bottom: 0.04
  17255. }
  17256. },
  17257. },
  17258. [
  17259. {
  17260. name: "Normal",
  17261. height: math.unit(7 + 2 / 12, "feet"),
  17262. default: true
  17263. },
  17264. ]
  17265. ))
  17266. characterMakers.push(() => makeCharacter(
  17267. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17268. {
  17269. front: {
  17270. height: math.unit(5 + 10 / 12, "feet"),
  17271. weight: math.unit(264, "lb"),
  17272. name: "Front",
  17273. image: {
  17274. source: "./media/characters/gault/front.svg",
  17275. extra: 161 / 140,
  17276. bottom: 0.028
  17277. }
  17278. },
  17279. },
  17280. [
  17281. {
  17282. name: "Normal",
  17283. height: math.unit(5 + 10 / 12, "feet"),
  17284. default: true
  17285. },
  17286. ]
  17287. ))
  17288. characterMakers.push(() => makeCharacter(
  17289. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17290. {
  17291. front: {
  17292. height: math.unit(6, "feet"),
  17293. weight: math.unit(150, "lb"),
  17294. name: "Front",
  17295. image: {
  17296. source: "./media/characters/shard/front.svg",
  17297. extra: 273 / 238,
  17298. bottom: 0.02
  17299. }
  17300. },
  17301. },
  17302. [
  17303. {
  17304. name: "Normal",
  17305. height: math.unit(3 + 6 / 12, "feet"),
  17306. default: true
  17307. },
  17308. ]
  17309. ))
  17310. characterMakers.push(() => makeCharacter(
  17311. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17312. {
  17313. front: {
  17314. height: math.unit(5 + 11 / 12, "feet"),
  17315. weight: math.unit(146, "lb"),
  17316. name: "Front",
  17317. image: {
  17318. source: "./media/characters/ashe/front.svg",
  17319. extra: 400 / 373,
  17320. bottom: 0.01
  17321. }
  17322. },
  17323. },
  17324. [
  17325. {
  17326. name: "Normal",
  17327. height: math.unit(5 + 11 / 12, "feet"),
  17328. default: true
  17329. },
  17330. ]
  17331. ))
  17332. characterMakers.push(() => makeCharacter(
  17333. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17334. {
  17335. front: {
  17336. height: math.unit(5 + 5 / 12, "feet"),
  17337. weight: math.unit(135, "lb"),
  17338. name: "Front",
  17339. image: {
  17340. source: "./media/characters/beatrix/front.svg",
  17341. extra: 392 / 379,
  17342. bottom: 0.01
  17343. }
  17344. },
  17345. },
  17346. [
  17347. {
  17348. name: "Normal",
  17349. height: math.unit(6, "feet"),
  17350. default: true
  17351. },
  17352. ]
  17353. ))
  17354. characterMakers.push(() => makeCharacter(
  17355. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17356. {
  17357. front: {
  17358. height: math.unit(6 + 2/12, "feet"),
  17359. weight: math.unit(135, "lb"),
  17360. name: "Front",
  17361. image: {
  17362. source: "./media/characters/ignatius/front.svg",
  17363. extra: 1380/1259,
  17364. bottom: 27/1407
  17365. }
  17366. },
  17367. },
  17368. [
  17369. {
  17370. name: "Normal",
  17371. height: math.unit(6 + 2/12, "feet"),
  17372. default: true
  17373. },
  17374. ]
  17375. ))
  17376. characterMakers.push(() => makeCharacter(
  17377. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17378. {
  17379. front: {
  17380. height: math.unit(6 + 2 / 12, "feet"),
  17381. weight: math.unit(138, "lb"),
  17382. name: "Front",
  17383. image: {
  17384. source: "./media/characters/mei-li/front.svg",
  17385. extra: 237 / 229,
  17386. bottom: 0.03
  17387. }
  17388. },
  17389. },
  17390. [
  17391. {
  17392. name: "Normal",
  17393. height: math.unit(6 + 2 / 12, "feet"),
  17394. default: true
  17395. },
  17396. ]
  17397. ))
  17398. characterMakers.push(() => makeCharacter(
  17399. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17400. {
  17401. front: {
  17402. height: math.unit(2 + 4 / 12, "feet"),
  17403. weight: math.unit(62, "lb"),
  17404. name: "Front",
  17405. image: {
  17406. source: "./media/characters/puru/front.svg",
  17407. extra: 206 / 149,
  17408. bottom: 0.06
  17409. }
  17410. },
  17411. },
  17412. [
  17413. {
  17414. name: "Normal",
  17415. height: math.unit(2 + 4 / 12, "feet"),
  17416. default: true
  17417. },
  17418. ]
  17419. ))
  17420. characterMakers.push(() => makeCharacter(
  17421. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17422. {
  17423. anthro: {
  17424. height: math.unit(5 + 8/12, "feet"),
  17425. weight: math.unit(200, "lb"),
  17426. energyNeed: math.unit(2000, "kcal"),
  17427. name: "Anthro",
  17428. image: {
  17429. source: "./media/characters/kee/anthro.svg",
  17430. extra: 3251/3184,
  17431. bottom: 250/3501
  17432. }
  17433. },
  17434. taur: {
  17435. height: math.unit(11, "feet"),
  17436. weight: math.unit(500, "lb"),
  17437. energyNeed: math.unit(5000, "kcal"),
  17438. name: "Taur",
  17439. image: {
  17440. source: "./media/characters/kee/taur.svg",
  17441. extra: 1362/1320,
  17442. bottom: 83/1445
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Normal",
  17449. height: math.unit(5 + 8/12, "feet"),
  17450. default: true
  17451. },
  17452. {
  17453. name: "Macro",
  17454. height: math.unit(35, "feet")
  17455. },
  17456. ]
  17457. ))
  17458. characterMakers.push(() => makeCharacter(
  17459. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17460. {
  17461. anthro: {
  17462. height: math.unit(7, "feet"),
  17463. weight: math.unit(190, "lb"),
  17464. name: "Anthro",
  17465. image: {
  17466. source: "./media/characters/cobalt-dracha/anthro.svg",
  17467. extra: 231 / 225,
  17468. bottom: 0.04
  17469. }
  17470. },
  17471. feral: {
  17472. height: math.unit(9 + 7 / 12, "feet"),
  17473. weight: math.unit(294, "lb"),
  17474. name: "Feral",
  17475. image: {
  17476. source: "./media/characters/cobalt-dracha/feral.svg",
  17477. extra: 692 / 633,
  17478. bottom: 0.05
  17479. }
  17480. },
  17481. },
  17482. [
  17483. {
  17484. name: "Normal",
  17485. height: math.unit(7, "feet"),
  17486. default: true
  17487. },
  17488. ]
  17489. ))
  17490. characterMakers.push(() => makeCharacter(
  17491. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17492. {
  17493. fallen: {
  17494. height: math.unit(11 + 8 / 12, "feet"),
  17495. weight: math.unit(485, "lb"),
  17496. name: "Java (Fallen)",
  17497. rename: true,
  17498. image: {
  17499. source: "./media/characters/java/fallen.svg",
  17500. extra: 226 / 208,
  17501. bottom: 0.005
  17502. }
  17503. },
  17504. godkin: {
  17505. height: math.unit(10 + 6 / 12, "feet"),
  17506. weight: math.unit(328, "lb"),
  17507. name: "Java (Godkin)",
  17508. rename: true,
  17509. image: {
  17510. source: "./media/characters/java/godkin.svg",
  17511. extra: 1104/1068,
  17512. bottom: 36/1140
  17513. }
  17514. },
  17515. },
  17516. [
  17517. {
  17518. name: "Normal",
  17519. height: math.unit(11 + 8 / 12, "feet"),
  17520. default: true
  17521. },
  17522. ]
  17523. ))
  17524. characterMakers.push(() => makeCharacter(
  17525. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17526. {
  17527. front: {
  17528. height: math.unit(5 + 9 / 12, "feet"),
  17529. weight: math.unit(170, "lb"),
  17530. name: "Front",
  17531. image: {
  17532. source: "./media/characters/purna/front.svg",
  17533. extra: 239 / 229,
  17534. bottom: 0.01
  17535. }
  17536. },
  17537. },
  17538. [
  17539. {
  17540. name: "Normal",
  17541. height: math.unit(5 + 9 / 12, "feet"),
  17542. default: true
  17543. },
  17544. ]
  17545. ))
  17546. characterMakers.push(() => makeCharacter(
  17547. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17548. {
  17549. front: {
  17550. height: math.unit(5 + 9 / 12, "feet"),
  17551. weight: math.unit(142, "lb"),
  17552. name: "Front",
  17553. image: {
  17554. source: "./media/characters/kuva/front.svg",
  17555. extra: 281 / 271,
  17556. bottom: 0.006
  17557. }
  17558. },
  17559. },
  17560. [
  17561. {
  17562. name: "Normal",
  17563. height: math.unit(5 + 9 / 12, "feet"),
  17564. default: true
  17565. },
  17566. ]
  17567. ))
  17568. characterMakers.push(() => makeCharacter(
  17569. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17570. {
  17571. anthro: {
  17572. height: math.unit(9 + 2 / 12, "feet"),
  17573. weight: math.unit(270, "lb"),
  17574. name: "Anthro",
  17575. image: {
  17576. source: "./media/characters/embra/anthro.svg",
  17577. extra: 200 / 187,
  17578. bottom: 0.02
  17579. }
  17580. },
  17581. feral: {
  17582. height: math.unit(18 + 8 / 12, "feet"),
  17583. weight: math.unit(576, "lb"),
  17584. name: "Feral",
  17585. image: {
  17586. source: "./media/characters/embra/feral.svg",
  17587. extra: 152 / 137,
  17588. bottom: 0.037
  17589. }
  17590. },
  17591. },
  17592. [
  17593. {
  17594. name: "Normal",
  17595. height: math.unit(9 + 2 / 12, "feet"),
  17596. default: true
  17597. },
  17598. ]
  17599. ))
  17600. characterMakers.push(() => makeCharacter(
  17601. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17602. {
  17603. anthro: {
  17604. height: math.unit(10 + 9 / 12, "feet"),
  17605. weight: math.unit(224, "lb"),
  17606. name: "Anthro",
  17607. image: {
  17608. source: "./media/characters/grottos/anthro.svg",
  17609. extra: 350 / 332,
  17610. bottom: 0.045
  17611. }
  17612. },
  17613. feral: {
  17614. height: math.unit(20 + 7 / 12, "feet"),
  17615. weight: math.unit(629, "lb"),
  17616. name: "Feral",
  17617. image: {
  17618. source: "./media/characters/grottos/feral.svg",
  17619. extra: 207 / 190,
  17620. bottom: 0.05
  17621. }
  17622. },
  17623. },
  17624. [
  17625. {
  17626. name: "Normal",
  17627. height: math.unit(10 + 9 / 12, "feet"),
  17628. default: true
  17629. },
  17630. ]
  17631. ))
  17632. characterMakers.push(() => makeCharacter(
  17633. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17634. {
  17635. anthro: {
  17636. height: math.unit(9 + 6 / 12, "feet"),
  17637. weight: math.unit(298, "lb"),
  17638. name: "Anthro",
  17639. image: {
  17640. source: "./media/characters/frifna/anthro.svg",
  17641. extra: 282 / 269,
  17642. bottom: 0.015
  17643. }
  17644. },
  17645. feral: {
  17646. height: math.unit(16 + 2 / 12, "feet"),
  17647. weight: math.unit(624, "lb"),
  17648. name: "Feral",
  17649. image: {
  17650. source: "./media/characters/frifna/feral.svg"
  17651. }
  17652. },
  17653. },
  17654. [
  17655. {
  17656. name: "Normal",
  17657. height: math.unit(9 + 6 / 12, "feet"),
  17658. default: true
  17659. },
  17660. ]
  17661. ))
  17662. characterMakers.push(() => makeCharacter(
  17663. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17664. {
  17665. front: {
  17666. height: math.unit(6 + 2 / 12, "feet"),
  17667. weight: math.unit(168, "lb"),
  17668. name: "Front",
  17669. image: {
  17670. source: "./media/characters/elise/front.svg",
  17671. extra: 276 / 271
  17672. }
  17673. },
  17674. },
  17675. [
  17676. {
  17677. name: "Normal",
  17678. height: math.unit(6 + 2 / 12, "feet"),
  17679. default: true
  17680. },
  17681. ]
  17682. ))
  17683. characterMakers.push(() => makeCharacter(
  17684. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17685. {
  17686. front: {
  17687. height: math.unit(5 + 10 / 12, "feet"),
  17688. weight: math.unit(210, "lb"),
  17689. name: "Front",
  17690. image: {
  17691. source: "./media/characters/glade/front.svg",
  17692. extra: 258 / 247,
  17693. bottom: 0.008
  17694. }
  17695. },
  17696. },
  17697. [
  17698. {
  17699. name: "Normal",
  17700. height: math.unit(5 + 10 / 12, "feet"),
  17701. default: true
  17702. },
  17703. ]
  17704. ))
  17705. characterMakers.push(() => makeCharacter(
  17706. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17707. {
  17708. front: {
  17709. height: math.unit(5 + 10 / 12, "feet"),
  17710. weight: math.unit(129, "lb"),
  17711. name: "Front",
  17712. image: {
  17713. source: "./media/characters/rina/front.svg",
  17714. extra: 266 / 255,
  17715. bottom: 0.005
  17716. }
  17717. },
  17718. },
  17719. [
  17720. {
  17721. name: "Normal",
  17722. height: math.unit(5 + 10 / 12, "feet"),
  17723. default: true
  17724. },
  17725. ]
  17726. ))
  17727. characterMakers.push(() => makeCharacter(
  17728. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17729. {
  17730. front: {
  17731. height: math.unit(6 + 1 / 12, "feet"),
  17732. weight: math.unit(192, "lb"),
  17733. name: "Front",
  17734. image: {
  17735. source: "./media/characters/veronica/front.svg",
  17736. extra: 319 / 309,
  17737. bottom: 0.005
  17738. }
  17739. },
  17740. },
  17741. [
  17742. {
  17743. name: "Normal",
  17744. height: math.unit(6 + 1 / 12, "feet"),
  17745. default: true
  17746. },
  17747. ]
  17748. ))
  17749. characterMakers.push(() => makeCharacter(
  17750. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17751. {
  17752. front: {
  17753. height: math.unit(9 + 3 / 12, "feet"),
  17754. weight: math.unit(1100, "lb"),
  17755. name: "Front",
  17756. image: {
  17757. source: "./media/characters/braxton/front.svg",
  17758. extra: 1057 / 984,
  17759. bottom: 0.05
  17760. }
  17761. },
  17762. },
  17763. [
  17764. {
  17765. name: "Normal",
  17766. height: math.unit(9 + 3 / 12, "feet")
  17767. },
  17768. {
  17769. name: "Giant",
  17770. height: math.unit(300, "feet"),
  17771. default: true
  17772. },
  17773. {
  17774. name: "Macro",
  17775. height: math.unit(700, "feet")
  17776. },
  17777. {
  17778. name: "Megamacro",
  17779. height: math.unit(6000, "feet")
  17780. },
  17781. ]
  17782. ))
  17783. characterMakers.push(() => makeCharacter(
  17784. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17785. {
  17786. front: {
  17787. height: math.unit(6 + 7 / 12, "feet"),
  17788. weight: math.unit(150, "lb"),
  17789. name: "Front",
  17790. image: {
  17791. source: "./media/characters/blue-feyonics/front.svg",
  17792. extra: 1403 / 1306,
  17793. bottom: 0.047
  17794. }
  17795. },
  17796. },
  17797. [
  17798. {
  17799. name: "Normal",
  17800. height: math.unit(6 + 7 / 12, "feet"),
  17801. default: true
  17802. },
  17803. ]
  17804. ))
  17805. characterMakers.push(() => makeCharacter(
  17806. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17807. {
  17808. front: {
  17809. height: math.unit(1.8, "meters"),
  17810. weight: math.unit(60, "kg"),
  17811. name: "Front",
  17812. image: {
  17813. source: "./media/characters/maxwell/front.svg",
  17814. extra: 2060 / 1873
  17815. }
  17816. },
  17817. },
  17818. [
  17819. {
  17820. name: "Micro",
  17821. height: math.unit(1, "mm")
  17822. },
  17823. {
  17824. name: "Normal",
  17825. height: math.unit(1.8, "meter"),
  17826. default: true
  17827. },
  17828. {
  17829. name: "Macro",
  17830. height: math.unit(30, "meters")
  17831. },
  17832. {
  17833. name: "Megamacro",
  17834. height: math.unit(10, "km")
  17835. },
  17836. ]
  17837. ))
  17838. characterMakers.push(() => makeCharacter(
  17839. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17840. {
  17841. front: {
  17842. height: math.unit(6, "feet"),
  17843. weight: math.unit(150, "lb"),
  17844. name: "Front",
  17845. image: {
  17846. source: "./media/characters/jack/front.svg",
  17847. extra: 1754 / 1640,
  17848. bottom: 0.01
  17849. }
  17850. },
  17851. },
  17852. [
  17853. {
  17854. name: "Normal",
  17855. height: math.unit(80000, "feet"),
  17856. default: true
  17857. },
  17858. {
  17859. name: "Max size",
  17860. height: math.unit(10, "lightyears")
  17861. },
  17862. ]
  17863. ))
  17864. characterMakers.push(() => makeCharacter(
  17865. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17866. {
  17867. urban: {
  17868. height: math.unit(5, "feet"),
  17869. weight: math.unit(240, "lb"),
  17870. name: "Urban",
  17871. image: {
  17872. source: "./media/characters/cafat/urban.svg",
  17873. extra: 1223/1126,
  17874. bottom: 205/1428
  17875. }
  17876. },
  17877. summer: {
  17878. height: math.unit(5, "feet"),
  17879. weight: math.unit(240, "lb"),
  17880. name: "Summer",
  17881. image: {
  17882. source: "./media/characters/cafat/summer.svg",
  17883. extra: 1223/1126,
  17884. bottom: 205/1428
  17885. }
  17886. },
  17887. winter: {
  17888. height: math.unit(5, "feet"),
  17889. weight: math.unit(240, "lb"),
  17890. name: "Winter",
  17891. image: {
  17892. source: "./media/characters/cafat/winter.svg",
  17893. extra: 1223/1126,
  17894. bottom: 205/1428
  17895. }
  17896. },
  17897. lingerie: {
  17898. height: math.unit(5, "feet"),
  17899. weight: math.unit(240, "lb"),
  17900. name: "Lingerie",
  17901. image: {
  17902. source: "./media/characters/cafat/lingerie.svg",
  17903. extra: 1223/1126,
  17904. bottom: 205/1428
  17905. }
  17906. },
  17907. upright: {
  17908. height: math.unit(6.3, "feet"),
  17909. weight: math.unit(240, "lb"),
  17910. name: "Upright",
  17911. image: {
  17912. source: "./media/characters/cafat/upright.svg",
  17913. bottom: 0.01
  17914. }
  17915. },
  17916. uprightFull: {
  17917. height: math.unit(6.3, "feet"),
  17918. weight: math.unit(240, "lb"),
  17919. name: "Upright (Full)",
  17920. image: {
  17921. source: "./media/characters/cafat/upright-full.svg",
  17922. bottom: 0.01
  17923. }
  17924. },
  17925. },
  17926. [
  17927. {
  17928. name: "Small",
  17929. height: math.unit(5, "feet"),
  17930. default: true
  17931. },
  17932. {
  17933. name: "Large",
  17934. height: math.unit(13, "feet")
  17935. },
  17936. ]
  17937. ))
  17938. characterMakers.push(() => makeCharacter(
  17939. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17940. {
  17941. front: {
  17942. height: math.unit(6, "feet"),
  17943. weight: math.unit(150, "lb"),
  17944. name: "Front",
  17945. image: {
  17946. source: "./media/characters/verin-raharra/front.svg",
  17947. extra: 5019 / 4835,
  17948. bottom: 0.023
  17949. }
  17950. },
  17951. },
  17952. [
  17953. {
  17954. name: "Normal",
  17955. height: math.unit(7 + 5 / 12, "feet"),
  17956. default: true
  17957. },
  17958. {
  17959. name: "Upsized",
  17960. height: math.unit(20, "feet")
  17961. },
  17962. ]
  17963. ))
  17964. characterMakers.push(() => makeCharacter(
  17965. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17966. {
  17967. front: {
  17968. height: math.unit(7, "feet"),
  17969. weight: math.unit(230, "lb"),
  17970. name: "Front",
  17971. image: {
  17972. source: "./media/characters/nakata/front.svg",
  17973. extra: 1.005,
  17974. bottom: 0.01
  17975. }
  17976. },
  17977. },
  17978. [
  17979. {
  17980. name: "Normal",
  17981. height: math.unit(7, "feet"),
  17982. default: true
  17983. },
  17984. {
  17985. name: "Big",
  17986. height: math.unit(14, "feet")
  17987. },
  17988. {
  17989. name: "Macro",
  17990. height: math.unit(400, "feet")
  17991. },
  17992. ]
  17993. ))
  17994. characterMakers.push(() => makeCharacter(
  17995. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17996. {
  17997. front: {
  17998. height: math.unit(4.91, "feet"),
  17999. weight: math.unit(100, "lb"),
  18000. name: "Front",
  18001. image: {
  18002. source: "./media/characters/lily/front.svg",
  18003. extra: 1585 / 1415,
  18004. bottom: 0.02
  18005. }
  18006. },
  18007. },
  18008. [
  18009. {
  18010. name: "Normal",
  18011. height: math.unit(4.91, "feet"),
  18012. default: true
  18013. },
  18014. ]
  18015. ))
  18016. characterMakers.push(() => makeCharacter(
  18017. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18018. {
  18019. laying: {
  18020. height: math.unit(4 + 4 / 12, "feet"),
  18021. weight: math.unit(600, "lb"),
  18022. name: "Laying",
  18023. image: {
  18024. source: "./media/characters/sheila/laying.svg",
  18025. extra: 1333 / 1265,
  18026. bottom: 0.16
  18027. }
  18028. },
  18029. },
  18030. [
  18031. {
  18032. name: "Normal",
  18033. height: math.unit(4 + 4 / 12, "feet"),
  18034. default: true
  18035. },
  18036. ]
  18037. ))
  18038. characterMakers.push(() => makeCharacter(
  18039. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18040. {
  18041. front: {
  18042. height: math.unit(6, "feet"),
  18043. weight: math.unit(190, "lb"),
  18044. name: "Front",
  18045. image: {
  18046. source: "./media/characters/sax/front.svg",
  18047. extra: 1187 / 973,
  18048. bottom: 0.042
  18049. }
  18050. },
  18051. },
  18052. [
  18053. {
  18054. name: "Micro",
  18055. height: math.unit(4, "inches"),
  18056. default: true
  18057. },
  18058. ]
  18059. ))
  18060. characterMakers.push(() => makeCharacter(
  18061. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18062. {
  18063. front: {
  18064. height: math.unit(6, "feet"),
  18065. weight: math.unit(150, "lb"),
  18066. name: "Front",
  18067. image: {
  18068. source: "./media/characters/pandora/front.svg",
  18069. extra: 2720 / 2556,
  18070. bottom: 0.015
  18071. }
  18072. },
  18073. back: {
  18074. height: math.unit(6, "feet"),
  18075. weight: math.unit(150, "lb"),
  18076. name: "Back",
  18077. image: {
  18078. source: "./media/characters/pandora/back.svg",
  18079. extra: 2720 / 2556,
  18080. bottom: 0.01
  18081. }
  18082. },
  18083. beans: {
  18084. height: math.unit(6 / 8, "feet"),
  18085. name: "Beans",
  18086. image: {
  18087. source: "./media/characters/pandora/beans.svg"
  18088. }
  18089. },
  18090. collar: {
  18091. height: math.unit(0.31, "feet"),
  18092. name: "Collar",
  18093. image: {
  18094. source: "./media/characters/pandora/collar.svg"
  18095. }
  18096. },
  18097. skirt: {
  18098. height: math.unit(6, "feet"),
  18099. weight: math.unit(150, "lb"),
  18100. name: "Skirt",
  18101. image: {
  18102. source: "./media/characters/pandora/skirt.svg",
  18103. extra: 1622 / 1525,
  18104. bottom: 0.015
  18105. }
  18106. },
  18107. hoodie: {
  18108. height: math.unit(6, "feet"),
  18109. weight: math.unit(150, "lb"),
  18110. name: "Hoodie",
  18111. image: {
  18112. source: "./media/characters/pandora/hoodie.svg",
  18113. extra: 1622 / 1525,
  18114. bottom: 0.015
  18115. }
  18116. },
  18117. casual: {
  18118. height: math.unit(6, "feet"),
  18119. weight: math.unit(150, "lb"),
  18120. name: "Casual",
  18121. image: {
  18122. source: "./media/characters/pandora/casual.svg",
  18123. extra: 1622 / 1525,
  18124. bottom: 0.015
  18125. }
  18126. },
  18127. },
  18128. [
  18129. {
  18130. name: "Normal",
  18131. height: math.unit(6, "feet")
  18132. },
  18133. {
  18134. name: "Big Steppy",
  18135. height: math.unit(1, "km"),
  18136. default: true
  18137. },
  18138. {
  18139. name: "Galactic Steppy",
  18140. height: math.unit(2, "gigameters")
  18141. },
  18142. ]
  18143. ))
  18144. characterMakers.push(() => makeCharacter(
  18145. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18146. {
  18147. side: {
  18148. height: math.unit(10, "feet"),
  18149. weight: math.unit(800, "kg"),
  18150. name: "Side",
  18151. image: {
  18152. source: "./media/characters/venio-darcony/side.svg",
  18153. extra: 1373 / 1003,
  18154. bottom: 0.037
  18155. }
  18156. },
  18157. front: {
  18158. height: math.unit(19, "feet"),
  18159. weight: math.unit(800, "kg"),
  18160. name: "Front",
  18161. image: {
  18162. source: "./media/characters/venio-darcony/front.svg"
  18163. }
  18164. },
  18165. back: {
  18166. height: math.unit(19, "feet"),
  18167. weight: math.unit(800, "kg"),
  18168. name: "Back",
  18169. image: {
  18170. source: "./media/characters/venio-darcony/back.svg"
  18171. }
  18172. },
  18173. sideNsfw: {
  18174. height: math.unit(10, "feet"),
  18175. weight: math.unit(800, "kg"),
  18176. name: "Side (NSFW)",
  18177. image: {
  18178. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18179. extra: 1373 / 1003,
  18180. bottom: 0.037
  18181. }
  18182. },
  18183. frontNsfw: {
  18184. height: math.unit(19, "feet"),
  18185. weight: math.unit(800, "kg"),
  18186. name: "Front (NSFW)",
  18187. image: {
  18188. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18189. }
  18190. },
  18191. backNsfw: {
  18192. height: math.unit(19, "feet"),
  18193. weight: math.unit(800, "kg"),
  18194. name: "Back (NSFW)",
  18195. image: {
  18196. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18197. }
  18198. },
  18199. sideArmored: {
  18200. height: math.unit(10, "feet"),
  18201. weight: math.unit(800, "kg"),
  18202. name: "Side (Armored)",
  18203. image: {
  18204. source: "./media/characters/venio-darcony/side-armored.svg",
  18205. extra: 1373 / 1003,
  18206. bottom: 0.037
  18207. }
  18208. },
  18209. frontArmored: {
  18210. height: math.unit(19, "feet"),
  18211. weight: math.unit(900, "kg"),
  18212. name: "Front (Armored)",
  18213. image: {
  18214. source: "./media/characters/venio-darcony/front-armored.svg"
  18215. }
  18216. },
  18217. backArmored: {
  18218. height: math.unit(19, "feet"),
  18219. weight: math.unit(900, "kg"),
  18220. name: "Back (Armored)",
  18221. image: {
  18222. source: "./media/characters/venio-darcony/back-armored.svg"
  18223. }
  18224. },
  18225. sword: {
  18226. height: math.unit(10, "feet"),
  18227. weight: math.unit(50, "lb"),
  18228. name: "Sword",
  18229. image: {
  18230. source: "./media/characters/venio-darcony/sword.svg"
  18231. }
  18232. },
  18233. },
  18234. [
  18235. {
  18236. name: "Normal",
  18237. height: math.unit(10, "feet")
  18238. },
  18239. {
  18240. name: "Macro",
  18241. height: math.unit(130, "feet"),
  18242. default: true
  18243. },
  18244. {
  18245. name: "Macro+",
  18246. height: math.unit(240, "feet")
  18247. },
  18248. ]
  18249. ))
  18250. characterMakers.push(() => makeCharacter(
  18251. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18252. {
  18253. front: {
  18254. height: math.unit(6, "feet"),
  18255. weight: math.unit(150, "lb"),
  18256. name: "Front",
  18257. image: {
  18258. source: "./media/characters/veski/front.svg",
  18259. extra: 1299 / 1225,
  18260. bottom: 0.04
  18261. }
  18262. },
  18263. back: {
  18264. height: math.unit(6, "feet"),
  18265. weight: math.unit(150, "lb"),
  18266. name: "Back",
  18267. image: {
  18268. source: "./media/characters/veski/back.svg",
  18269. extra: 1299 / 1225,
  18270. bottom: 0.008
  18271. }
  18272. },
  18273. maw: {
  18274. height: math.unit(1.5 * 1.21, "feet"),
  18275. name: "Maw",
  18276. image: {
  18277. source: "./media/characters/veski/maw.svg"
  18278. }
  18279. },
  18280. },
  18281. [
  18282. {
  18283. name: "Macro",
  18284. height: math.unit(2, "km"),
  18285. default: true
  18286. },
  18287. ]
  18288. ))
  18289. characterMakers.push(() => makeCharacter(
  18290. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18291. {
  18292. front: {
  18293. height: math.unit(5 + 7 / 12, "feet"),
  18294. name: "Front",
  18295. image: {
  18296. source: "./media/characters/isabelle/front.svg",
  18297. extra: 2130 / 1976,
  18298. bottom: 0.05
  18299. }
  18300. },
  18301. },
  18302. [
  18303. {
  18304. name: "Supermicro",
  18305. height: math.unit(10, "micrometers")
  18306. },
  18307. {
  18308. name: "Micro",
  18309. height: math.unit(1, "inch")
  18310. },
  18311. {
  18312. name: "Tiny",
  18313. height: math.unit(5, "inches")
  18314. },
  18315. {
  18316. name: "Standard",
  18317. height: math.unit(5 + 7 / 12, "inches")
  18318. },
  18319. {
  18320. name: "Macro",
  18321. height: math.unit(80, "meters"),
  18322. default: true
  18323. },
  18324. {
  18325. name: "Megamacro",
  18326. height: math.unit(250, "meters")
  18327. },
  18328. {
  18329. name: "Gigamacro",
  18330. height: math.unit(5, "km")
  18331. },
  18332. {
  18333. name: "Cosmic",
  18334. height: math.unit(2.5e6, "miles")
  18335. },
  18336. ]
  18337. ))
  18338. characterMakers.push(() => makeCharacter(
  18339. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18340. {
  18341. front: {
  18342. height: math.unit(6, "feet"),
  18343. weight: math.unit(150, "lb"),
  18344. name: "Front",
  18345. image: {
  18346. source: "./media/characters/hanzo/front.svg",
  18347. extra: 374 / 344,
  18348. bottom: 0.02
  18349. }
  18350. },
  18351. },
  18352. [
  18353. {
  18354. name: "Normal",
  18355. height: math.unit(8, "feet"),
  18356. default: true
  18357. },
  18358. ]
  18359. ))
  18360. characterMakers.push(() => makeCharacter(
  18361. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18362. {
  18363. front: {
  18364. height: math.unit(7, "feet"),
  18365. weight: math.unit(130, "lb"),
  18366. name: "Front",
  18367. image: {
  18368. source: "./media/characters/anna/front.svg",
  18369. extra: 169 / 145,
  18370. bottom: 0.06
  18371. }
  18372. },
  18373. full: {
  18374. height: math.unit(4.96, "feet"),
  18375. weight: math.unit(220, "lb"),
  18376. name: "Full",
  18377. image: {
  18378. source: "./media/characters/anna/full.svg",
  18379. extra: 138 / 114,
  18380. bottom: 0.15
  18381. }
  18382. },
  18383. tongue: {
  18384. height: math.unit(2.53, "feet"),
  18385. name: "Tongue",
  18386. image: {
  18387. source: "./media/characters/anna/tongue.svg"
  18388. }
  18389. },
  18390. },
  18391. [
  18392. {
  18393. name: "Normal",
  18394. height: math.unit(7, "feet"),
  18395. default: true
  18396. },
  18397. ]
  18398. ))
  18399. characterMakers.push(() => makeCharacter(
  18400. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18401. {
  18402. front: {
  18403. height: math.unit(7, "feet"),
  18404. weight: math.unit(150, "lb"),
  18405. name: "Front",
  18406. image: {
  18407. source: "./media/characters/ian-corvid/front.svg",
  18408. extra: 150 / 142,
  18409. bottom: 0.02
  18410. }
  18411. },
  18412. back: {
  18413. height: math.unit(7, "feet"),
  18414. weight: math.unit(150, "lb"),
  18415. name: "Back",
  18416. image: {
  18417. source: "./media/characters/ian-corvid/back.svg",
  18418. extra: 150 / 143,
  18419. bottom: 0.01
  18420. }
  18421. },
  18422. stomping: {
  18423. height: math.unit(7, "feet"),
  18424. weight: math.unit(150, "lb"),
  18425. name: "Stomping",
  18426. image: {
  18427. source: "./media/characters/ian-corvid/stomping.svg",
  18428. extra: 76 / 72
  18429. }
  18430. },
  18431. sitting: {
  18432. height: math.unit(7 / 1.8, "feet"),
  18433. weight: math.unit(150, "lb"),
  18434. name: "Sitting",
  18435. image: {
  18436. source: "./media/characters/ian-corvid/sitting.svg",
  18437. extra: 1400 / 1269,
  18438. bottom: 0.15
  18439. }
  18440. },
  18441. },
  18442. [
  18443. {
  18444. name: "Tiny Microw",
  18445. height: math.unit(1, "inch")
  18446. },
  18447. {
  18448. name: "Microw",
  18449. height: math.unit(6, "inches")
  18450. },
  18451. {
  18452. name: "Crow",
  18453. height: math.unit(7 + 1 / 12, "feet"),
  18454. default: true
  18455. },
  18456. {
  18457. name: "Macrow",
  18458. height: math.unit(176, "feet")
  18459. },
  18460. ]
  18461. ))
  18462. characterMakers.push(() => makeCharacter(
  18463. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18464. {
  18465. front: {
  18466. height: math.unit(5 + 7 / 12, "feet"),
  18467. weight: math.unit(147, "lb"),
  18468. name: "Front",
  18469. image: {
  18470. source: "./media/characters/natalie-kellon/front.svg",
  18471. extra: 1214 / 1141,
  18472. bottom: 0.02
  18473. }
  18474. },
  18475. },
  18476. [
  18477. {
  18478. name: "Micro",
  18479. height: math.unit(1 / 16, "inch")
  18480. },
  18481. {
  18482. name: "Tiny",
  18483. height: math.unit(4, "inches")
  18484. },
  18485. {
  18486. name: "Normal",
  18487. height: math.unit(5 + 7 / 12, "feet"),
  18488. default: true
  18489. },
  18490. {
  18491. name: "Amazon",
  18492. height: math.unit(12, "feet")
  18493. },
  18494. {
  18495. name: "Giantess",
  18496. height: math.unit(160, "meters")
  18497. },
  18498. {
  18499. name: "Titaness",
  18500. height: math.unit(800, "meters")
  18501. },
  18502. ]
  18503. ))
  18504. characterMakers.push(() => makeCharacter(
  18505. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18506. {
  18507. front: {
  18508. height: math.unit(6, "feet"),
  18509. weight: math.unit(150, "lb"),
  18510. name: "Front",
  18511. image: {
  18512. source: "./media/characters/alluria/front.svg",
  18513. extra: 806 / 738,
  18514. bottom: 0.01
  18515. }
  18516. },
  18517. side: {
  18518. height: math.unit(6, "feet"),
  18519. weight: math.unit(150, "lb"),
  18520. name: "Side",
  18521. image: {
  18522. source: "./media/characters/alluria/side.svg",
  18523. extra: 800 / 750,
  18524. }
  18525. },
  18526. back: {
  18527. height: math.unit(6, "feet"),
  18528. weight: math.unit(150, "lb"),
  18529. name: "Back",
  18530. image: {
  18531. source: "./media/characters/alluria/back.svg",
  18532. extra: 806 / 738,
  18533. }
  18534. },
  18535. frontMaid: {
  18536. height: math.unit(6, "feet"),
  18537. weight: math.unit(150, "lb"),
  18538. name: "Front (Maid)",
  18539. image: {
  18540. source: "./media/characters/alluria/front-maid.svg",
  18541. extra: 806 / 738,
  18542. bottom: 0.01
  18543. }
  18544. },
  18545. sideMaid: {
  18546. height: math.unit(6, "feet"),
  18547. weight: math.unit(150, "lb"),
  18548. name: "Side (Maid)",
  18549. image: {
  18550. source: "./media/characters/alluria/side-maid.svg",
  18551. extra: 800 / 750,
  18552. bottom: 0.005
  18553. }
  18554. },
  18555. backMaid: {
  18556. height: math.unit(6, "feet"),
  18557. weight: math.unit(150, "lb"),
  18558. name: "Back (Maid)",
  18559. image: {
  18560. source: "./media/characters/alluria/back-maid.svg",
  18561. extra: 806 / 738,
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Micro",
  18568. height: math.unit(6, "inches"),
  18569. default: true
  18570. },
  18571. ]
  18572. ))
  18573. characterMakers.push(() => makeCharacter(
  18574. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18575. {
  18576. front: {
  18577. height: math.unit(6, "feet"),
  18578. weight: math.unit(150, "lb"),
  18579. name: "Front",
  18580. image: {
  18581. source: "./media/characters/kyle/front.svg",
  18582. extra: 1069 / 962,
  18583. bottom: 77.228 / 1727.45
  18584. }
  18585. },
  18586. },
  18587. [
  18588. {
  18589. name: "Macro",
  18590. height: math.unit(150, "feet"),
  18591. default: true
  18592. },
  18593. ]
  18594. ))
  18595. characterMakers.push(() => makeCharacter(
  18596. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18597. {
  18598. front: {
  18599. height: math.unit(6, "feet"),
  18600. weight: math.unit(300, "lb"),
  18601. name: "Front",
  18602. image: {
  18603. source: "./media/characters/duncan/front.svg",
  18604. extra: 1650 / 1482,
  18605. bottom: 0.05
  18606. }
  18607. },
  18608. },
  18609. [
  18610. {
  18611. name: "Macro",
  18612. height: math.unit(100, "feet"),
  18613. default: true
  18614. },
  18615. ]
  18616. ))
  18617. characterMakers.push(() => makeCharacter(
  18618. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18619. {
  18620. front: {
  18621. height: math.unit(5 + 4 / 12, "feet"),
  18622. weight: math.unit(220, "lb"),
  18623. name: "Front",
  18624. image: {
  18625. source: "./media/characters/memory/front.svg",
  18626. extra: 3641 / 3545,
  18627. bottom: 0.03
  18628. }
  18629. },
  18630. back: {
  18631. height: math.unit(5 + 4 / 12, "feet"),
  18632. weight: math.unit(220, "lb"),
  18633. name: "Back",
  18634. image: {
  18635. source: "./media/characters/memory/back.svg",
  18636. extra: 3641 / 3545,
  18637. bottom: 0.025
  18638. }
  18639. },
  18640. frontSkirt: {
  18641. height: math.unit(5 + 4 / 12, "feet"),
  18642. weight: math.unit(220, "lb"),
  18643. name: "Front (Skirt)",
  18644. image: {
  18645. source: "./media/characters/memory/front-skirt.svg",
  18646. extra: 3641 / 3545,
  18647. bottom: 0.03
  18648. }
  18649. },
  18650. frontDress: {
  18651. height: math.unit(5 + 4 / 12, "feet"),
  18652. weight: math.unit(220, "lb"),
  18653. name: "Front (Dress)",
  18654. image: {
  18655. source: "./media/characters/memory/front-dress.svg",
  18656. extra: 3641 / 3545,
  18657. bottom: 0.03
  18658. }
  18659. },
  18660. },
  18661. [
  18662. {
  18663. name: "Micro",
  18664. height: math.unit(6, "inches"),
  18665. default: true
  18666. },
  18667. {
  18668. name: "Normal",
  18669. height: math.unit(5 + 4 / 12, "feet")
  18670. },
  18671. ]
  18672. ))
  18673. characterMakers.push(() => makeCharacter(
  18674. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18675. {
  18676. front: {
  18677. height: math.unit(4 + 11 / 12, "feet"),
  18678. weight: math.unit(100, "lb"),
  18679. name: "Front",
  18680. image: {
  18681. source: "./media/characters/luno/front.svg",
  18682. extra: 1535 / 1487,
  18683. bottom: 0.03
  18684. }
  18685. },
  18686. },
  18687. [
  18688. {
  18689. name: "Micro",
  18690. height: math.unit(3, "inches")
  18691. },
  18692. {
  18693. name: "Normal",
  18694. height: math.unit(4 + 11 / 12, "feet"),
  18695. default: true
  18696. },
  18697. {
  18698. name: "Macro",
  18699. height: math.unit(300, "feet")
  18700. },
  18701. {
  18702. name: "Megamacro",
  18703. height: math.unit(700, "miles")
  18704. },
  18705. ]
  18706. ))
  18707. characterMakers.push(() => makeCharacter(
  18708. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18709. {
  18710. front: {
  18711. height: math.unit(6 + 2 / 12, "feet"),
  18712. weight: math.unit(170, "lb"),
  18713. name: "Front",
  18714. image: {
  18715. source: "./media/characters/jamesy/front.svg",
  18716. extra: 440 / 382,
  18717. bottom: 0.005
  18718. }
  18719. },
  18720. },
  18721. [
  18722. {
  18723. name: "Micro",
  18724. height: math.unit(3, "inches")
  18725. },
  18726. {
  18727. name: "Normal",
  18728. height: math.unit(6 + 2 / 12, "feet"),
  18729. default: true
  18730. },
  18731. {
  18732. name: "Macro",
  18733. height: math.unit(300, "feet")
  18734. },
  18735. {
  18736. name: "Megamacro",
  18737. height: math.unit(700, "miles")
  18738. },
  18739. ]
  18740. ))
  18741. characterMakers.push(() => makeCharacter(
  18742. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18743. {
  18744. front: {
  18745. height: math.unit(6, "feet"),
  18746. weight: math.unit(160, "lb"),
  18747. name: "Front",
  18748. image: {
  18749. source: "./media/characters/mark/front.svg",
  18750. extra: 3300 / 3100,
  18751. bottom: 136.42 / 3440.47
  18752. }
  18753. },
  18754. },
  18755. [
  18756. {
  18757. name: "Macro",
  18758. height: math.unit(120, "meters")
  18759. },
  18760. {
  18761. name: "Bigger Macro",
  18762. height: math.unit(350, "meters")
  18763. },
  18764. {
  18765. name: "Megamacro",
  18766. height: math.unit(8, "km"),
  18767. default: true
  18768. },
  18769. {
  18770. name: "Continental",
  18771. height: math.unit(4550, "km")
  18772. },
  18773. {
  18774. name: "Planetary",
  18775. height: math.unit(65000, "km")
  18776. },
  18777. ]
  18778. ))
  18779. characterMakers.push(() => makeCharacter(
  18780. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18781. {
  18782. front: {
  18783. height: math.unit(6, "feet"),
  18784. weight: math.unit(400, "lb"),
  18785. name: "Front",
  18786. image: {
  18787. source: "./media/characters/mac/front.svg",
  18788. extra: 1048 / 987.7,
  18789. bottom: 60 / 1107.6,
  18790. }
  18791. },
  18792. },
  18793. [
  18794. {
  18795. name: "Macro",
  18796. height: math.unit(500, "feet"),
  18797. default: true
  18798. },
  18799. ]
  18800. ))
  18801. characterMakers.push(() => makeCharacter(
  18802. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18803. {
  18804. front: {
  18805. height: math.unit(5 + 2 / 12, "feet"),
  18806. weight: math.unit(190, "lb"),
  18807. name: "Front",
  18808. image: {
  18809. source: "./media/characters/bari/front.svg",
  18810. extra: 3156 / 2880,
  18811. bottom: 0.03
  18812. }
  18813. },
  18814. back: {
  18815. height: math.unit(5 + 2 / 12, "feet"),
  18816. weight: math.unit(190, "lb"),
  18817. name: "Back",
  18818. image: {
  18819. source: "./media/characters/bari/back.svg",
  18820. extra: 3260 / 2834,
  18821. bottom: 0.025
  18822. }
  18823. },
  18824. frontPlush: {
  18825. height: math.unit(5 + 2 / 12, "feet"),
  18826. weight: math.unit(190, "lb"),
  18827. name: "Front (Plush)",
  18828. image: {
  18829. source: "./media/characters/bari/front-plush.svg",
  18830. extra: 1112 / 1061,
  18831. bottom: 0.002
  18832. }
  18833. },
  18834. },
  18835. [
  18836. {
  18837. name: "Micro",
  18838. height: math.unit(3, "inches")
  18839. },
  18840. {
  18841. name: "Normal",
  18842. height: math.unit(5 + 2 / 12, "feet"),
  18843. default: true
  18844. },
  18845. {
  18846. name: "Macro",
  18847. height: math.unit(20, "feet")
  18848. },
  18849. ]
  18850. ))
  18851. characterMakers.push(() => makeCharacter(
  18852. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18853. {
  18854. front: {
  18855. height: math.unit(6 + 1 / 12, "feet"),
  18856. weight: math.unit(275, "lb"),
  18857. name: "Front",
  18858. image: {
  18859. source: "./media/characters/hunter-misha-raven/front.svg"
  18860. }
  18861. },
  18862. },
  18863. [
  18864. {
  18865. name: "Mortal",
  18866. height: math.unit(6 + 1 / 12, "feet")
  18867. },
  18868. {
  18869. name: "Divine",
  18870. height: math.unit(1.12134e34, "parsecs"),
  18871. default: true
  18872. },
  18873. ]
  18874. ))
  18875. characterMakers.push(() => makeCharacter(
  18876. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18877. {
  18878. front: {
  18879. height: math.unit(6 + 3 / 12, "feet"),
  18880. weight: math.unit(220, "lb"),
  18881. name: "Front",
  18882. image: {
  18883. source: "./media/characters/max-calore/front.svg",
  18884. extra: 1700 / 1648,
  18885. bottom: 0.01
  18886. }
  18887. },
  18888. back: {
  18889. height: math.unit(6 + 3 / 12, "feet"),
  18890. weight: math.unit(220, "lb"),
  18891. name: "Back",
  18892. image: {
  18893. source: "./media/characters/max-calore/back.svg",
  18894. extra: 1700 / 1648,
  18895. bottom: 0.01
  18896. }
  18897. },
  18898. },
  18899. [
  18900. {
  18901. name: "Normal",
  18902. height: math.unit(6 + 3 / 12, "feet"),
  18903. default: true
  18904. },
  18905. ]
  18906. ))
  18907. characterMakers.push(() => makeCharacter(
  18908. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18909. {
  18910. side: {
  18911. height: math.unit(2 + 8 / 12, "feet"),
  18912. weight: math.unit(99, "lb"),
  18913. name: "Side",
  18914. image: {
  18915. source: "./media/characters/aspen/side.svg",
  18916. extra: 152 / 138,
  18917. bottom: 0.032
  18918. }
  18919. },
  18920. },
  18921. [
  18922. {
  18923. name: "Normal",
  18924. height: math.unit(2 + 8 / 12, "feet"),
  18925. default: true
  18926. },
  18927. ]
  18928. ))
  18929. characterMakers.push(() => makeCharacter(
  18930. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18931. {
  18932. side: {
  18933. height: math.unit(3 + 2 / 12, "feet"),
  18934. weight: math.unit(224, "lb"),
  18935. name: "Side",
  18936. image: {
  18937. source: "./media/characters/sheila-feral-wolf/side.svg",
  18938. extra: 179 / 166,
  18939. bottom: 0.03
  18940. }
  18941. },
  18942. },
  18943. [
  18944. {
  18945. name: "Normal",
  18946. height: math.unit(3 + 2 / 12, "feet"),
  18947. default: true
  18948. },
  18949. ]
  18950. ))
  18951. characterMakers.push(() => makeCharacter(
  18952. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18953. {
  18954. side: {
  18955. height: math.unit(1 + 9 / 12, "feet"),
  18956. weight: math.unit(38, "lb"),
  18957. name: "Side",
  18958. image: {
  18959. source: "./media/characters/michelle/side.svg",
  18960. extra: 147 / 136.7,
  18961. bottom: 0.03
  18962. }
  18963. },
  18964. },
  18965. [
  18966. {
  18967. name: "Normal",
  18968. height: math.unit(1 + 9 / 12, "feet"),
  18969. default: true
  18970. },
  18971. ]
  18972. ))
  18973. characterMakers.push(() => makeCharacter(
  18974. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18975. {
  18976. front: {
  18977. height: math.unit(1.54, "feet"),
  18978. weight: math.unit(50, "lb"),
  18979. name: "Front",
  18980. image: {
  18981. source: "./media/characters/nino/front.svg"
  18982. }
  18983. },
  18984. },
  18985. [
  18986. {
  18987. name: "Normal",
  18988. height: math.unit(1.54, "feet"),
  18989. default: true
  18990. },
  18991. ]
  18992. ))
  18993. characterMakers.push(() => makeCharacter(
  18994. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18995. {
  18996. front: {
  18997. height: math.unit(1.49, "feet"),
  18998. weight: math.unit(45, "lb"),
  18999. name: "Front",
  19000. image: {
  19001. source: "./media/characters/viola/front.svg"
  19002. }
  19003. },
  19004. },
  19005. [
  19006. {
  19007. name: "Normal",
  19008. height: math.unit(1.49, "feet"),
  19009. default: true
  19010. },
  19011. ]
  19012. ))
  19013. characterMakers.push(() => makeCharacter(
  19014. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19015. {
  19016. front: {
  19017. height: math.unit(6 + 5 / 12, "feet"),
  19018. weight: math.unit(580, "lb"),
  19019. name: "Front",
  19020. image: {
  19021. source: "./media/characters/atlas/front.svg",
  19022. extra: 298.5 / 290,
  19023. bottom: 0.015
  19024. }
  19025. },
  19026. },
  19027. [
  19028. {
  19029. name: "Normal",
  19030. height: math.unit(6 + 5 / 12, "feet"),
  19031. default: true
  19032. },
  19033. ]
  19034. ))
  19035. characterMakers.push(() => makeCharacter(
  19036. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19037. {
  19038. side: {
  19039. height: math.unit(15.6, "inches"),
  19040. weight: math.unit(10, "lb"),
  19041. name: "Side",
  19042. image: {
  19043. source: "./media/characters/davy/side.svg",
  19044. extra: 200 / 170,
  19045. bottom: 0.01
  19046. }
  19047. },
  19048. },
  19049. [
  19050. {
  19051. name: "Normal",
  19052. height: math.unit(15.6, "inches"),
  19053. default: true
  19054. },
  19055. ]
  19056. ))
  19057. characterMakers.push(() => makeCharacter(
  19058. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19059. {
  19060. side: {
  19061. height: math.unit(4 + 8 / 12, "feet"),
  19062. weight: math.unit(166, "lb"),
  19063. name: "Side",
  19064. image: {
  19065. source: "./media/characters/fiona/side.svg",
  19066. extra: 232 / 220,
  19067. bottom: 0.03
  19068. }
  19069. },
  19070. },
  19071. [
  19072. {
  19073. name: "Normal",
  19074. height: math.unit(4 + 8 / 12, "feet"),
  19075. default: true
  19076. },
  19077. ]
  19078. ))
  19079. characterMakers.push(() => makeCharacter(
  19080. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19081. {
  19082. front: {
  19083. height: math.unit(26, "inches"),
  19084. weight: math.unit(35, "lb"),
  19085. name: "Front",
  19086. image: {
  19087. source: "./media/characters/lyla/front.svg",
  19088. bottom: 0.1
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(3, "feet"),
  19096. default: true
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19102. {
  19103. side: {
  19104. height: math.unit(1.8, "feet"),
  19105. weight: math.unit(44, "lb"),
  19106. name: "Side",
  19107. image: {
  19108. source: "./media/characters/perseus/side.svg",
  19109. bottom: 0.21
  19110. }
  19111. },
  19112. },
  19113. [
  19114. {
  19115. name: "Normal",
  19116. height: math.unit(1.8, "feet"),
  19117. default: true
  19118. },
  19119. ]
  19120. ))
  19121. characterMakers.push(() => makeCharacter(
  19122. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19123. {
  19124. side: {
  19125. height: math.unit(4 + 2 / 12, "feet"),
  19126. weight: math.unit(20, "lb"),
  19127. name: "Side",
  19128. image: {
  19129. source: "./media/characters/remus/side.svg"
  19130. }
  19131. },
  19132. },
  19133. [
  19134. {
  19135. name: "Normal",
  19136. height: math.unit(4 + 2 / 12, "feet"),
  19137. default: true
  19138. },
  19139. ]
  19140. ))
  19141. characterMakers.push(() => makeCharacter(
  19142. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19143. {
  19144. front: {
  19145. height: math.unit(4 + 11 / 12, "feet"),
  19146. weight: math.unit(114, "lb"),
  19147. name: "Front",
  19148. image: {
  19149. source: "./media/characters/raf/front.svg",
  19150. extra: 1504/1339,
  19151. bottom: 26/1530
  19152. }
  19153. },
  19154. side: {
  19155. height: math.unit(4 + 11 / 12, "feet"),
  19156. weight: math.unit(114, "lb"),
  19157. name: "Side",
  19158. image: {
  19159. source: "./media/characters/raf/side.svg",
  19160. extra: 1466/1316,
  19161. bottom: 29/1495
  19162. }
  19163. },
  19164. paw: {
  19165. height: math.unit(1.45, "feet"),
  19166. name: "Paw",
  19167. image: {
  19168. source: "./media/characters/raf/paw.svg"
  19169. },
  19170. extraAttributes: {
  19171. "toeSize": {
  19172. name: "Toe Size",
  19173. power: 2,
  19174. type: "area",
  19175. base: math.unit(0.004, "m^2")
  19176. },
  19177. "padSize": {
  19178. name: "Pad Size",
  19179. power: 2,
  19180. type: "area",
  19181. base: math.unit(0.04, "m^2")
  19182. },
  19183. "footSize": {
  19184. name: "Foot Size",
  19185. power: 2,
  19186. type: "area",
  19187. base: math.unit(0.08, "m^2")
  19188. },
  19189. }
  19190. },
  19191. },
  19192. [
  19193. {
  19194. name: "Micro",
  19195. height: math.unit(2, "inches")
  19196. },
  19197. {
  19198. name: "Normal",
  19199. height: math.unit(4 + 11 / 12, "feet"),
  19200. default: true
  19201. },
  19202. {
  19203. name: "Macro",
  19204. height: math.unit(70, "feet")
  19205. },
  19206. ]
  19207. ))
  19208. characterMakers.push(() => makeCharacter(
  19209. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19210. {
  19211. front: {
  19212. height: math.unit(1.5, "meters"),
  19213. weight: math.unit(68, "kg"),
  19214. name: "Front",
  19215. image: {
  19216. source: "./media/characters/liam-einarr/front.svg",
  19217. extra: 2822 / 2666
  19218. }
  19219. },
  19220. back: {
  19221. height: math.unit(1.5, "meters"),
  19222. weight: math.unit(68, "kg"),
  19223. name: "Back",
  19224. image: {
  19225. source: "./media/characters/liam-einarr/back.svg",
  19226. extra: 2822 / 2666,
  19227. bottom: 0.015
  19228. }
  19229. },
  19230. },
  19231. [
  19232. {
  19233. name: "Normal",
  19234. height: math.unit(1.5, "meters"),
  19235. default: true
  19236. },
  19237. {
  19238. name: "Macro",
  19239. height: math.unit(150, "meters")
  19240. },
  19241. {
  19242. name: "Megamacro",
  19243. height: math.unit(35, "km")
  19244. },
  19245. ]
  19246. ))
  19247. characterMakers.push(() => makeCharacter(
  19248. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19249. {
  19250. front: {
  19251. height: math.unit(6, "feet"),
  19252. weight: math.unit(75, "kg"),
  19253. name: "Front",
  19254. image: {
  19255. source: "./media/characters/linda/front.svg",
  19256. extra: 930 / 874,
  19257. bottom: 0.004
  19258. }
  19259. },
  19260. },
  19261. [
  19262. {
  19263. name: "Normal",
  19264. height: math.unit(6, "feet"),
  19265. default: true
  19266. },
  19267. ]
  19268. ))
  19269. characterMakers.push(() => makeCharacter(
  19270. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19271. {
  19272. front: {
  19273. height: math.unit(6 + 8 / 12, "feet"),
  19274. weight: math.unit(220, "lb"),
  19275. name: "Front",
  19276. image: {
  19277. source: "./media/characters/caylex/front.svg",
  19278. extra: 821 / 772,
  19279. bottom: 0.07
  19280. }
  19281. },
  19282. back: {
  19283. height: math.unit(6 + 8 / 12, "feet"),
  19284. weight: math.unit(220, "lb"),
  19285. name: "Back",
  19286. image: {
  19287. source: "./media/characters/caylex/back.svg",
  19288. extra: 821 / 772,
  19289. bottom: 0.022
  19290. }
  19291. },
  19292. hand: {
  19293. height: math.unit(1.25, "feet"),
  19294. name: "Hand",
  19295. image: {
  19296. source: "./media/characters/caylex/hand.svg"
  19297. }
  19298. },
  19299. foot: {
  19300. height: math.unit(1.6, "feet"),
  19301. name: "Foot",
  19302. image: {
  19303. source: "./media/characters/caylex/foot.svg"
  19304. }
  19305. },
  19306. armored: {
  19307. height: math.unit(6 + 8 / 12, "feet"),
  19308. weight: math.unit(250, "lb"),
  19309. name: "Armored",
  19310. image: {
  19311. source: "./media/characters/caylex/armored.svg",
  19312. extra: 1420 / 1310,
  19313. bottom: 0.045
  19314. }
  19315. },
  19316. },
  19317. [
  19318. {
  19319. name: "Normal",
  19320. height: math.unit(6 + 8 / 12, "feet"),
  19321. default: true
  19322. },
  19323. {
  19324. name: "Normal+",
  19325. height: math.unit(12, "feet")
  19326. },
  19327. ]
  19328. ))
  19329. characterMakers.push(() => makeCharacter(
  19330. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19331. {
  19332. front: {
  19333. height: math.unit(7 + 6 / 12, "feet"),
  19334. weight: math.unit(288, "lb"),
  19335. name: "Front",
  19336. image: {
  19337. source: "./media/characters/alana/front.svg",
  19338. extra: 679 / 653,
  19339. bottom: 22.5 / 701
  19340. }
  19341. },
  19342. },
  19343. [
  19344. {
  19345. name: "Normal",
  19346. height: math.unit(7 + 6 / 12, "feet")
  19347. },
  19348. {
  19349. name: "Large",
  19350. height: math.unit(50, "feet")
  19351. },
  19352. {
  19353. name: "Macro",
  19354. height: math.unit(100, "feet"),
  19355. default: true
  19356. },
  19357. {
  19358. name: "Macro+",
  19359. height: math.unit(200, "feet")
  19360. },
  19361. ]
  19362. ))
  19363. characterMakers.push(() => makeCharacter(
  19364. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19365. {
  19366. front: {
  19367. height: math.unit(6 + 1 / 12, "feet"),
  19368. weight: math.unit(210, "lb"),
  19369. name: "Front",
  19370. image: {
  19371. source: "./media/characters/hasani/front.svg",
  19372. extra: 244 / 232,
  19373. bottom: 0.01
  19374. }
  19375. },
  19376. back: {
  19377. height: math.unit(6 + 1 / 12, "feet"),
  19378. weight: math.unit(210, "lb"),
  19379. name: "Back",
  19380. image: {
  19381. source: "./media/characters/hasani/back.svg",
  19382. extra: 244 / 232,
  19383. bottom: 0.01
  19384. }
  19385. },
  19386. },
  19387. [
  19388. {
  19389. name: "Normal",
  19390. height: math.unit(6 + 1 / 12, "feet")
  19391. },
  19392. {
  19393. name: "Macro",
  19394. height: math.unit(175, "feet"),
  19395. default: true
  19396. },
  19397. ]
  19398. ))
  19399. characterMakers.push(() => makeCharacter(
  19400. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19401. {
  19402. front: {
  19403. height: math.unit(1.82, "meters"),
  19404. weight: math.unit(140, "lb"),
  19405. name: "Front",
  19406. image: {
  19407. source: "./media/characters/nita/front.svg",
  19408. extra: 2473 / 2363,
  19409. bottom: 0.01
  19410. }
  19411. },
  19412. },
  19413. [
  19414. {
  19415. name: "Normal",
  19416. height: math.unit(1.82, "m")
  19417. },
  19418. {
  19419. name: "Macro",
  19420. height: math.unit(300, "m")
  19421. },
  19422. {
  19423. name: "Mistake Canon",
  19424. height: math.unit(0.5, "miles"),
  19425. default: true
  19426. },
  19427. {
  19428. name: "Big Mistake",
  19429. height: math.unit(13, "miles")
  19430. },
  19431. {
  19432. name: "Playing God",
  19433. height: math.unit(2450, "miles")
  19434. },
  19435. ]
  19436. ))
  19437. characterMakers.push(() => makeCharacter(
  19438. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19439. {
  19440. front: {
  19441. height: math.unit(4, "feet"),
  19442. weight: math.unit(120, "lb"),
  19443. name: "Front",
  19444. image: {
  19445. source: "./media/characters/shiriko/front.svg",
  19446. extra: 970/934,
  19447. bottom: 5/975
  19448. }
  19449. },
  19450. },
  19451. [
  19452. {
  19453. name: "Normal",
  19454. height: math.unit(4, "feet"),
  19455. default: true
  19456. },
  19457. ]
  19458. ))
  19459. characterMakers.push(() => makeCharacter(
  19460. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19461. {
  19462. front: {
  19463. height: math.unit(6, "feet"),
  19464. name: "front",
  19465. image: {
  19466. source: "./media/characters/deja/front.svg",
  19467. extra: 926 / 840,
  19468. bottom: 0.07
  19469. }
  19470. },
  19471. },
  19472. [
  19473. {
  19474. name: "Planck Length",
  19475. height: math.unit(1.6e-35, "meters")
  19476. },
  19477. {
  19478. name: "Normal",
  19479. height: math.unit(30.48, "meters"),
  19480. default: true
  19481. },
  19482. {
  19483. name: "Universal",
  19484. height: math.unit(8.8e26, "meters")
  19485. },
  19486. ]
  19487. ))
  19488. characterMakers.push(() => makeCharacter(
  19489. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19490. {
  19491. side: {
  19492. height: math.unit(8, "feet"),
  19493. weight: math.unit(6300, "lb"),
  19494. name: "Side",
  19495. image: {
  19496. source: "./media/characters/anima/side.svg",
  19497. bottom: 0.035
  19498. }
  19499. },
  19500. },
  19501. [
  19502. {
  19503. name: "Normal",
  19504. height: math.unit(8, "feet"),
  19505. default: true
  19506. },
  19507. ]
  19508. ))
  19509. characterMakers.push(() => makeCharacter(
  19510. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19511. {
  19512. front: {
  19513. height: math.unit(8, "feet"),
  19514. weight: math.unit(350, "lb"),
  19515. name: "Front",
  19516. image: {
  19517. source: "./media/characters/bianca/front.svg",
  19518. extra: 234 / 225,
  19519. bottom: 0.03
  19520. }
  19521. },
  19522. },
  19523. [
  19524. {
  19525. name: "Normal",
  19526. height: math.unit(8, "feet"),
  19527. default: true
  19528. },
  19529. ]
  19530. ))
  19531. characterMakers.push(() => makeCharacter(
  19532. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19533. {
  19534. front: {
  19535. height: math.unit(11 + 5/12, "feet"),
  19536. weight: math.unit(1200, "lb"),
  19537. name: "Front",
  19538. image: {
  19539. source: "./media/characters/adinia/front.svg",
  19540. extra: 1767/1641,
  19541. bottom: 44/1811
  19542. },
  19543. extraAttributes: {
  19544. "energyIntake": {
  19545. name: "Energy Intake",
  19546. power: 3,
  19547. type: "energy",
  19548. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19549. },
  19550. }
  19551. },
  19552. back: {
  19553. height: math.unit(11 + 5/12, "feet"),
  19554. weight: math.unit(1200, "lb"),
  19555. name: "Back",
  19556. image: {
  19557. source: "./media/characters/adinia/back.svg",
  19558. extra: 1834/1684,
  19559. bottom: 14/1848
  19560. },
  19561. extraAttributes: {
  19562. "energyIntake": {
  19563. name: "Energy Intake",
  19564. power: 3,
  19565. type: "energy",
  19566. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19567. },
  19568. }
  19569. },
  19570. maw: {
  19571. height: math.unit(3.79, "feet"),
  19572. name: "Maw",
  19573. image: {
  19574. source: "./media/characters/adinia/maw.svg"
  19575. }
  19576. },
  19577. rump: {
  19578. height: math.unit(4.6, "feet"),
  19579. name: "Rump",
  19580. image: {
  19581. source: "./media/characters/adinia/rump.svg"
  19582. }
  19583. },
  19584. },
  19585. [
  19586. {
  19587. name: "Normal",
  19588. height: math.unit(11 + 5 / 12, "feet"),
  19589. default: true
  19590. },
  19591. ]
  19592. ))
  19593. characterMakers.push(() => makeCharacter(
  19594. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19595. {
  19596. front: {
  19597. height: math.unit(3, "meters"),
  19598. weight: math.unit(200, "kg"),
  19599. name: "Front",
  19600. image: {
  19601. source: "./media/characters/lykasa/front.svg",
  19602. extra: 1076 / 976,
  19603. bottom: 0.06
  19604. }
  19605. },
  19606. },
  19607. [
  19608. {
  19609. name: "Normal",
  19610. height: math.unit(3, "meters")
  19611. },
  19612. {
  19613. name: "Kaiju",
  19614. height: math.unit(120, "meters"),
  19615. default: true
  19616. },
  19617. {
  19618. name: "Mega Kaiju",
  19619. height: math.unit(240, "km")
  19620. },
  19621. {
  19622. name: "Giga Kaiju",
  19623. height: math.unit(400, "megameters")
  19624. },
  19625. {
  19626. name: "Tera Kaiju",
  19627. height: math.unit(800, "gigameters")
  19628. },
  19629. {
  19630. name: "Kaiju Dragon Goddess",
  19631. height: math.unit(26, "zettaparsecs")
  19632. },
  19633. ]
  19634. ))
  19635. characterMakers.push(() => makeCharacter(
  19636. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19637. {
  19638. side: {
  19639. height: math.unit(283 / 124 * 6, "feet"),
  19640. weight: math.unit(35000, "lb"),
  19641. name: "Side",
  19642. image: {
  19643. source: "./media/characters/malfaren/side.svg",
  19644. extra: 1310/529,
  19645. bottom: 24/1334
  19646. }
  19647. },
  19648. front: {
  19649. height: math.unit(22.36, "feet"),
  19650. weight: math.unit(35000, "lb"),
  19651. name: "Front",
  19652. image: {
  19653. source: "./media/characters/malfaren/front.svg",
  19654. extra: 1237/1115,
  19655. bottom: 32/1269
  19656. }
  19657. },
  19658. maw: {
  19659. height: math.unit(6.9, "feet"),
  19660. name: "Maw",
  19661. image: {
  19662. source: "./media/characters/malfaren/maw.svg"
  19663. }
  19664. },
  19665. dick: {
  19666. height: math.unit(6.19, "feet"),
  19667. name: "Dick",
  19668. image: {
  19669. source: "./media/characters/malfaren/dick.svg"
  19670. }
  19671. },
  19672. eye: {
  19673. height: math.unit(0.69, "feet"),
  19674. name: "Eye",
  19675. image: {
  19676. source: "./media/characters/malfaren/eye.svg"
  19677. }
  19678. },
  19679. },
  19680. [
  19681. {
  19682. name: "Big",
  19683. height: math.unit(283 / 162 * 6, "feet"),
  19684. },
  19685. {
  19686. name: "Bigger",
  19687. height: math.unit(283 / 124 * 6, "feet")
  19688. },
  19689. {
  19690. name: "Massive",
  19691. height: math.unit(283 / 92 * 6, "feet"),
  19692. default: true
  19693. },
  19694. {
  19695. name: "👀💦",
  19696. height: math.unit(283 / 73 * 6, "feet"),
  19697. },
  19698. ]
  19699. ))
  19700. characterMakers.push(() => makeCharacter(
  19701. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19702. {
  19703. front: {
  19704. height: math.unit(1.7, "m"),
  19705. weight: math.unit(70, "kg"),
  19706. name: "Front",
  19707. image: {
  19708. source: "./media/characters/kernel/front.svg",
  19709. extra: 222 / 210,
  19710. bottom: 0.007
  19711. }
  19712. },
  19713. },
  19714. [
  19715. {
  19716. name: "Nano",
  19717. height: math.unit(17, "micrometers")
  19718. },
  19719. {
  19720. name: "Micro",
  19721. height: math.unit(1.7, "mm")
  19722. },
  19723. {
  19724. name: "Small",
  19725. height: math.unit(1.7, "cm")
  19726. },
  19727. {
  19728. name: "Normal",
  19729. height: math.unit(1.7, "m"),
  19730. default: true
  19731. },
  19732. ]
  19733. ))
  19734. characterMakers.push(() => makeCharacter(
  19735. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19736. {
  19737. front: {
  19738. height: math.unit(1.75, "meters"),
  19739. weight: math.unit(65, "kg"),
  19740. name: "Front",
  19741. image: {
  19742. source: "./media/characters/jayne-folest/front.svg",
  19743. extra: 2115 / 2007,
  19744. bottom: 0.02
  19745. }
  19746. },
  19747. back: {
  19748. height: math.unit(1.75, "meters"),
  19749. weight: math.unit(65, "kg"),
  19750. name: "Back",
  19751. image: {
  19752. source: "./media/characters/jayne-folest/back.svg",
  19753. extra: 2115 / 2007,
  19754. bottom: 0.005
  19755. }
  19756. },
  19757. frontClothed: {
  19758. height: math.unit(1.75, "meters"),
  19759. weight: math.unit(65, "kg"),
  19760. name: "Front (Clothed)",
  19761. image: {
  19762. source: "./media/characters/jayne-folest/front-clothed.svg",
  19763. extra: 2115 / 2007,
  19764. bottom: 0.035
  19765. }
  19766. },
  19767. hand: {
  19768. height: math.unit(1 / 1.260, "feet"),
  19769. name: "Hand",
  19770. image: {
  19771. source: "./media/characters/jayne-folest/hand.svg"
  19772. }
  19773. },
  19774. foot: {
  19775. height: math.unit(1 / 0.918, "feet"),
  19776. name: "Foot",
  19777. image: {
  19778. source: "./media/characters/jayne-folest/foot.svg"
  19779. }
  19780. },
  19781. },
  19782. [
  19783. {
  19784. name: "Micro",
  19785. height: math.unit(4, "cm")
  19786. },
  19787. {
  19788. name: "Normal",
  19789. height: math.unit(1.75, "meters")
  19790. },
  19791. {
  19792. name: "Macro",
  19793. height: math.unit(47.5, "meters"),
  19794. default: true
  19795. },
  19796. ]
  19797. ))
  19798. characterMakers.push(() => makeCharacter(
  19799. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19800. {
  19801. front: {
  19802. height: math.unit(180, "cm"),
  19803. weight: math.unit(70, "kg"),
  19804. name: "Front",
  19805. image: {
  19806. source: "./media/characters/algier/front.svg",
  19807. extra: 596 / 572,
  19808. bottom: 0.04
  19809. }
  19810. },
  19811. back: {
  19812. height: math.unit(180, "cm"),
  19813. weight: math.unit(70, "kg"),
  19814. name: "Back",
  19815. image: {
  19816. source: "./media/characters/algier/back.svg",
  19817. extra: 596 / 572,
  19818. bottom: 0.025
  19819. }
  19820. },
  19821. frontdressed: {
  19822. height: math.unit(180, "cm"),
  19823. weight: math.unit(150, "kg"),
  19824. name: "Front-dressed",
  19825. image: {
  19826. source: "./media/characters/algier/front-dressed.svg",
  19827. extra: 596 / 572,
  19828. bottom: 0.038
  19829. }
  19830. },
  19831. },
  19832. [
  19833. {
  19834. name: "Micro",
  19835. height: math.unit(5, "cm")
  19836. },
  19837. {
  19838. name: "Normal",
  19839. height: math.unit(180, "cm"),
  19840. default: true
  19841. },
  19842. {
  19843. name: "Macro",
  19844. height: math.unit(64, "m")
  19845. },
  19846. ]
  19847. ))
  19848. characterMakers.push(() => makeCharacter(
  19849. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19850. {
  19851. upright: {
  19852. height: math.unit(7, "feet"),
  19853. weight: math.unit(300, "lb"),
  19854. name: "Upright",
  19855. image: {
  19856. source: "./media/characters/pretzel/upright.svg",
  19857. extra: 534 / 522,
  19858. bottom: 0.065
  19859. }
  19860. },
  19861. sprawling: {
  19862. height: math.unit(3.75, "feet"),
  19863. weight: math.unit(300, "lb"),
  19864. name: "Sprawling",
  19865. image: {
  19866. source: "./media/characters/pretzel/sprawling.svg",
  19867. extra: 314 / 281,
  19868. bottom: 0.1
  19869. }
  19870. },
  19871. tongue: {
  19872. height: math.unit(2, "feet"),
  19873. name: "Tongue",
  19874. image: {
  19875. source: "./media/characters/pretzel/tongue.svg"
  19876. }
  19877. },
  19878. },
  19879. [
  19880. {
  19881. name: "Normal",
  19882. height: math.unit(7, "feet"),
  19883. default: true
  19884. },
  19885. {
  19886. name: "Oversized",
  19887. height: math.unit(15, "feet")
  19888. },
  19889. {
  19890. name: "Huge",
  19891. height: math.unit(30, "feet")
  19892. },
  19893. {
  19894. name: "Macro",
  19895. height: math.unit(250, "feet")
  19896. },
  19897. ]
  19898. ))
  19899. characterMakers.push(() => makeCharacter(
  19900. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19901. {
  19902. sideFront: {
  19903. height: math.unit(5 + 2 / 12, "feet"),
  19904. weight: math.unit(120, "lb"),
  19905. name: "Front Side",
  19906. image: {
  19907. source: "./media/characters/roxi/side-front.svg",
  19908. extra: 2924 / 2717,
  19909. bottom: 0.08
  19910. }
  19911. },
  19912. sideBack: {
  19913. height: math.unit(5 + 2 / 12, "feet"),
  19914. weight: math.unit(120, "lb"),
  19915. name: "Back Side",
  19916. image: {
  19917. source: "./media/characters/roxi/side-back.svg",
  19918. extra: 2904 / 2693,
  19919. bottom: 0.06
  19920. }
  19921. },
  19922. front: {
  19923. height: math.unit(5 + 2 / 12, "feet"),
  19924. weight: math.unit(120, "lb"),
  19925. name: "Front",
  19926. image: {
  19927. source: "./media/characters/roxi/front.svg",
  19928. extra: 2028 / 1907,
  19929. bottom: 0.01
  19930. }
  19931. },
  19932. frontAlt: {
  19933. height: math.unit(5 + 2 / 12, "feet"),
  19934. weight: math.unit(120, "lb"),
  19935. name: "Front (Alt)",
  19936. image: {
  19937. source: "./media/characters/roxi/front-alt.svg",
  19938. extra: 1828 / 1798,
  19939. bottom: 0.01
  19940. }
  19941. },
  19942. sitting: {
  19943. height: math.unit(2.8, "feet"),
  19944. weight: math.unit(120, "lb"),
  19945. name: "Sitting",
  19946. image: {
  19947. source: "./media/characters/roxi/sitting.svg",
  19948. extra: 2660 / 2462,
  19949. bottom: 0.1
  19950. }
  19951. },
  19952. },
  19953. [
  19954. {
  19955. name: "Normal",
  19956. height: math.unit(5 + 2 / 12, "feet"),
  19957. default: true
  19958. },
  19959. ]
  19960. ))
  19961. characterMakers.push(() => makeCharacter(
  19962. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19963. {
  19964. side: {
  19965. height: math.unit(55, "feet"),
  19966. weight: math.unit(153, "tons"),
  19967. name: "Side",
  19968. image: {
  19969. source: "./media/characters/shadow/side.svg",
  19970. extra: 701 / 628,
  19971. bottom: 0.02
  19972. }
  19973. },
  19974. flying: {
  19975. height: math.unit(145, "feet"),
  19976. weight: math.unit(153, "tons"),
  19977. name: "Flying",
  19978. image: {
  19979. source: "./media/characters/shadow/flying.svg"
  19980. }
  19981. },
  19982. },
  19983. [
  19984. {
  19985. name: "Normal",
  19986. height: math.unit(55, "feet"),
  19987. default: true
  19988. },
  19989. ]
  19990. ))
  19991. characterMakers.push(() => makeCharacter(
  19992. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19993. {
  19994. front: {
  19995. height: math.unit(6, "feet"),
  19996. weight: math.unit(200, "lb"),
  19997. name: "Front",
  19998. image: {
  19999. source: "./media/characters/marcie/front.svg",
  20000. extra: 960 / 876,
  20001. bottom: 58 / 1017.87
  20002. }
  20003. },
  20004. },
  20005. [
  20006. {
  20007. name: "Macro",
  20008. height: math.unit(1, "mile"),
  20009. default: true
  20010. },
  20011. ]
  20012. ))
  20013. characterMakers.push(() => makeCharacter(
  20014. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20015. {
  20016. front: {
  20017. height: math.unit(7, "feet"),
  20018. weight: math.unit(200, "lb"),
  20019. name: "Front",
  20020. image: {
  20021. source: "./media/characters/kachina/front.svg",
  20022. extra: 1290.68 / 1119,
  20023. bottom: 36.5 / 1327.18
  20024. }
  20025. },
  20026. },
  20027. [
  20028. {
  20029. name: "Normal",
  20030. height: math.unit(7, "feet"),
  20031. default: true
  20032. },
  20033. ]
  20034. ))
  20035. characterMakers.push(() => makeCharacter(
  20036. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20037. {
  20038. looking: {
  20039. height: math.unit(2, "meters"),
  20040. weight: math.unit(300, "kg"),
  20041. name: "Looking",
  20042. image: {
  20043. source: "./media/characters/kash/looking.svg",
  20044. extra: 474 / 344,
  20045. bottom: 0.03
  20046. }
  20047. },
  20048. side: {
  20049. height: math.unit(2, "meters"),
  20050. weight: math.unit(300, "kg"),
  20051. name: "Side",
  20052. image: {
  20053. source: "./media/characters/kash/side.svg",
  20054. extra: 302 / 251,
  20055. bottom: 0.03
  20056. }
  20057. },
  20058. front: {
  20059. height: math.unit(2, "meters"),
  20060. weight: math.unit(300, "kg"),
  20061. name: "Front",
  20062. image: {
  20063. source: "./media/characters/kash/front.svg",
  20064. extra: 495 / 360,
  20065. bottom: 0.015
  20066. }
  20067. },
  20068. },
  20069. [
  20070. {
  20071. name: "Normal",
  20072. height: math.unit(2, "meters"),
  20073. default: true
  20074. },
  20075. {
  20076. name: "Big",
  20077. height: math.unit(3, "meters")
  20078. },
  20079. {
  20080. name: "Large",
  20081. height: math.unit(5, "meters")
  20082. },
  20083. ]
  20084. ))
  20085. characterMakers.push(() => makeCharacter(
  20086. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20087. {
  20088. feeding: {
  20089. height: math.unit(6.7, "feet"),
  20090. weight: math.unit(350, "lb"),
  20091. name: "Feeding",
  20092. image: {
  20093. source: "./media/characters/lalim/feeding.svg",
  20094. }
  20095. },
  20096. },
  20097. [
  20098. {
  20099. name: "Normal",
  20100. height: math.unit(6.7, "feet"),
  20101. default: true
  20102. },
  20103. ]
  20104. ))
  20105. characterMakers.push(() => makeCharacter(
  20106. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20107. {
  20108. front: {
  20109. height: math.unit(9.5, "feet"),
  20110. weight: math.unit(600, "lb"),
  20111. name: "Front",
  20112. image: {
  20113. source: "./media/characters/de'vout/front.svg",
  20114. extra: 1443 / 1328,
  20115. bottom: 0.025
  20116. }
  20117. },
  20118. back: {
  20119. height: math.unit(9.5, "feet"),
  20120. weight: math.unit(600, "lb"),
  20121. name: "Back",
  20122. image: {
  20123. source: "./media/characters/de'vout/back.svg",
  20124. extra: 1443 / 1328
  20125. }
  20126. },
  20127. frontDressed: {
  20128. height: math.unit(9.5, "feet"),
  20129. weight: math.unit(600, "lb"),
  20130. name: "Front (Dressed",
  20131. image: {
  20132. source: "./media/characters/de'vout/front-dressed.svg",
  20133. extra: 1443 / 1328,
  20134. bottom: 0.025
  20135. }
  20136. },
  20137. backDressed: {
  20138. height: math.unit(9.5, "feet"),
  20139. weight: math.unit(600, "lb"),
  20140. name: "Back (Dressed",
  20141. image: {
  20142. source: "./media/characters/de'vout/back-dressed.svg",
  20143. extra: 1443 / 1328
  20144. }
  20145. },
  20146. },
  20147. [
  20148. {
  20149. name: "Normal",
  20150. height: math.unit(9.5, "feet"),
  20151. default: true
  20152. },
  20153. ]
  20154. ))
  20155. characterMakers.push(() => makeCharacter(
  20156. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20157. {
  20158. front: {
  20159. height: math.unit(8, "feet"),
  20160. weight: math.unit(225, "lb"),
  20161. name: "Front",
  20162. image: {
  20163. source: "./media/characters/talana/front.svg",
  20164. extra: 1410 / 1300,
  20165. bottom: 0.015
  20166. }
  20167. },
  20168. frontDressed: {
  20169. height: math.unit(8, "feet"),
  20170. weight: math.unit(225, "lb"),
  20171. name: "Front (Dressed",
  20172. image: {
  20173. source: "./media/characters/talana/front-dressed.svg",
  20174. extra: 1410 / 1300,
  20175. bottom: 0.015
  20176. }
  20177. },
  20178. },
  20179. [
  20180. {
  20181. name: "Normal",
  20182. height: math.unit(8, "feet"),
  20183. default: true
  20184. },
  20185. ]
  20186. ))
  20187. characterMakers.push(() => makeCharacter(
  20188. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20189. {
  20190. side: {
  20191. height: math.unit(7.2, "feet"),
  20192. weight: math.unit(150, "lb"),
  20193. name: "Side",
  20194. image: {
  20195. source: "./media/characters/xeauvok/side.svg",
  20196. extra: 1975 / 1523,
  20197. bottom: 0.07
  20198. }
  20199. },
  20200. },
  20201. [
  20202. {
  20203. name: "Normal",
  20204. height: math.unit(7.2, "feet"),
  20205. default: true
  20206. },
  20207. ]
  20208. ))
  20209. characterMakers.push(() => makeCharacter(
  20210. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20211. {
  20212. side: {
  20213. height: math.unit(4, "meters"),
  20214. weight: math.unit(2200, "kg"),
  20215. name: "Side",
  20216. image: {
  20217. source: "./media/characters/zara/side.svg",
  20218. extra: 765/744,
  20219. bottom: 156/921
  20220. }
  20221. },
  20222. },
  20223. [
  20224. {
  20225. name: "Normal",
  20226. height: math.unit(4, "meters"),
  20227. default: true
  20228. },
  20229. ]
  20230. ))
  20231. characterMakers.push(() => makeCharacter(
  20232. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20233. {
  20234. side: {
  20235. height: math.unit(6, "feet"),
  20236. weight: math.unit(150, "lb"),
  20237. name: "Side",
  20238. image: {
  20239. source: "./media/characters/richard-dragon/side.svg",
  20240. extra: 845 / 340,
  20241. bottom: 0.017
  20242. }
  20243. },
  20244. maw: {
  20245. height: math.unit(2.97, "feet"),
  20246. name: "Maw",
  20247. image: {
  20248. source: "./media/characters/richard-dragon/maw.svg"
  20249. }
  20250. },
  20251. },
  20252. [
  20253. ]
  20254. ))
  20255. characterMakers.push(() => makeCharacter(
  20256. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20257. {
  20258. front: {
  20259. height: math.unit(4, "feet"),
  20260. weight: math.unit(100, "lb"),
  20261. name: "Front",
  20262. image: {
  20263. source: "./media/characters/richard-smeargle/front.svg",
  20264. extra: 2952 / 2820,
  20265. bottom: 0.028
  20266. }
  20267. },
  20268. },
  20269. [
  20270. {
  20271. name: "Normal",
  20272. height: math.unit(4, "feet"),
  20273. default: true
  20274. },
  20275. {
  20276. name: "Dynamax",
  20277. height: math.unit(20, "meters")
  20278. },
  20279. ]
  20280. ))
  20281. characterMakers.push(() => makeCharacter(
  20282. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20283. {
  20284. front: {
  20285. height: math.unit(6, "feet"),
  20286. weight: math.unit(110, "lb"),
  20287. name: "Front",
  20288. image: {
  20289. source: "./media/characters/klay/front.svg",
  20290. extra: 962 / 883,
  20291. bottom: 0.04
  20292. }
  20293. },
  20294. back: {
  20295. height: math.unit(6, "feet"),
  20296. weight: math.unit(110, "lb"),
  20297. name: "Back",
  20298. image: {
  20299. source: "./media/characters/klay/back.svg",
  20300. extra: 962 / 883
  20301. }
  20302. },
  20303. beans: {
  20304. height: math.unit(1.15, "feet"),
  20305. name: "Beans",
  20306. image: {
  20307. source: "./media/characters/klay/beans.svg"
  20308. }
  20309. },
  20310. },
  20311. [
  20312. {
  20313. name: "Micro",
  20314. height: math.unit(6, "inches")
  20315. },
  20316. {
  20317. name: "Mini",
  20318. height: math.unit(3, "feet")
  20319. },
  20320. {
  20321. name: "Normal",
  20322. height: math.unit(6, "feet"),
  20323. default: true
  20324. },
  20325. {
  20326. name: "Big",
  20327. height: math.unit(25, "feet")
  20328. },
  20329. {
  20330. name: "Macro",
  20331. height: math.unit(100, "feet")
  20332. },
  20333. {
  20334. name: "Megamacro",
  20335. height: math.unit(400, "feet")
  20336. },
  20337. ]
  20338. ))
  20339. characterMakers.push(() => makeCharacter(
  20340. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20341. {
  20342. front: {
  20343. height: math.unit(6, "feet"),
  20344. weight: math.unit(160, "lb"),
  20345. name: "Front",
  20346. image: {
  20347. source: "./media/characters/marcus/front.svg",
  20348. extra: 734 / 676,
  20349. bottom: 0.03
  20350. }
  20351. },
  20352. },
  20353. [
  20354. {
  20355. name: "Little",
  20356. height: math.unit(6, "feet")
  20357. },
  20358. {
  20359. name: "Normal",
  20360. height: math.unit(110, "feet"),
  20361. default: true
  20362. },
  20363. {
  20364. name: "Macro",
  20365. height: math.unit(250, "feet")
  20366. },
  20367. {
  20368. name: "Megamacro",
  20369. height: math.unit(1000, "feet")
  20370. },
  20371. ]
  20372. ))
  20373. characterMakers.push(() => makeCharacter(
  20374. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20375. {
  20376. front: {
  20377. height: math.unit(7, "feet"),
  20378. weight: math.unit(275, "lb"),
  20379. name: "Front",
  20380. image: {
  20381. source: "./media/characters/claude-delroute/front.svg",
  20382. extra: 902/827,
  20383. bottom: 26/928
  20384. }
  20385. },
  20386. side: {
  20387. height: math.unit(7, "feet"),
  20388. weight: math.unit(275, "lb"),
  20389. name: "Side",
  20390. image: {
  20391. source: "./media/characters/claude-delroute/side.svg",
  20392. extra: 908/853,
  20393. bottom: 16/924
  20394. }
  20395. },
  20396. back: {
  20397. height: math.unit(7, "feet"),
  20398. weight: math.unit(275, "lb"),
  20399. name: "Back",
  20400. image: {
  20401. source: "./media/characters/claude-delroute/back.svg",
  20402. extra: 911/829,
  20403. bottom: 18/929
  20404. }
  20405. },
  20406. maw: {
  20407. height: math.unit(0.6407, "meters"),
  20408. name: "Maw",
  20409. image: {
  20410. source: "./media/characters/claude-delroute/maw.svg"
  20411. }
  20412. },
  20413. },
  20414. [
  20415. {
  20416. name: "Normal",
  20417. height: math.unit(7, "feet"),
  20418. default: true
  20419. },
  20420. {
  20421. name: "Lorge",
  20422. height: math.unit(20, "feet")
  20423. },
  20424. ]
  20425. ))
  20426. characterMakers.push(() => makeCharacter(
  20427. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20428. {
  20429. front: {
  20430. height: math.unit(8 + 4 / 12, "feet"),
  20431. weight: math.unit(600, "lb"),
  20432. name: "Front",
  20433. image: {
  20434. source: "./media/characters/dragonien/front.svg",
  20435. extra: 100 / 94,
  20436. bottom: 3.3 / 103.3445
  20437. }
  20438. },
  20439. back: {
  20440. height: math.unit(8 + 4 / 12, "feet"),
  20441. weight: math.unit(600, "lb"),
  20442. name: "Back",
  20443. image: {
  20444. source: "./media/characters/dragonien/back.svg",
  20445. extra: 776 / 746,
  20446. bottom: 6.4 / 782.0616
  20447. }
  20448. },
  20449. foot: {
  20450. height: math.unit(1.54, "feet"),
  20451. name: "Foot",
  20452. image: {
  20453. source: "./media/characters/dragonien/foot.svg",
  20454. }
  20455. },
  20456. },
  20457. [
  20458. {
  20459. name: "Normal",
  20460. height: math.unit(8 + 4 / 12, "feet"),
  20461. default: true
  20462. },
  20463. {
  20464. name: "Macro",
  20465. height: math.unit(200, "feet")
  20466. },
  20467. {
  20468. name: "Megamacro",
  20469. height: math.unit(1, "mile")
  20470. },
  20471. {
  20472. name: "Gigamacro",
  20473. height: math.unit(1000, "miles")
  20474. },
  20475. ]
  20476. ))
  20477. characterMakers.push(() => makeCharacter(
  20478. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20479. {
  20480. front: {
  20481. height: math.unit(5 + 2 / 12, "feet"),
  20482. weight: math.unit(110, "lb"),
  20483. name: "Front",
  20484. image: {
  20485. source: "./media/characters/desta/front.svg",
  20486. extra: 767 / 726,
  20487. bottom: 11.7 / 779
  20488. }
  20489. },
  20490. back: {
  20491. height: math.unit(5 + 2 / 12, "feet"),
  20492. weight: math.unit(110, "lb"),
  20493. name: "Back",
  20494. image: {
  20495. source: "./media/characters/desta/back.svg",
  20496. extra: 777 / 728,
  20497. bottom: 6 / 784
  20498. }
  20499. },
  20500. frontAlt: {
  20501. height: math.unit(5 + 2 / 12, "feet"),
  20502. weight: math.unit(110, "lb"),
  20503. name: "Front",
  20504. image: {
  20505. source: "./media/characters/desta/front-alt.svg",
  20506. extra: 1482 / 1417
  20507. }
  20508. },
  20509. side: {
  20510. height: math.unit(5 + 2 / 12, "feet"),
  20511. weight: math.unit(110, "lb"),
  20512. name: "Side",
  20513. image: {
  20514. source: "./media/characters/desta/side.svg",
  20515. extra: 2579 / 2491,
  20516. bottom: 0.053
  20517. }
  20518. },
  20519. },
  20520. [
  20521. {
  20522. name: "Micro",
  20523. height: math.unit(6, "inches")
  20524. },
  20525. {
  20526. name: "Normal",
  20527. height: math.unit(5 + 2 / 12, "feet"),
  20528. default: true
  20529. },
  20530. {
  20531. name: "Macro",
  20532. height: math.unit(62, "feet")
  20533. },
  20534. {
  20535. name: "Megamacro",
  20536. height: math.unit(1800, "feet")
  20537. },
  20538. ]
  20539. ))
  20540. characterMakers.push(() => makeCharacter(
  20541. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20542. {
  20543. front: {
  20544. height: math.unit(10, "feet"),
  20545. weight: math.unit(700, "lb"),
  20546. name: "Front",
  20547. image: {
  20548. source: "./media/characters/storm-alystar/front.svg",
  20549. extra: 2112 / 1898,
  20550. bottom: 0.034
  20551. }
  20552. },
  20553. },
  20554. [
  20555. {
  20556. name: "Micro",
  20557. height: math.unit(3.5, "inches")
  20558. },
  20559. {
  20560. name: "Normal",
  20561. height: math.unit(10, "feet"),
  20562. default: true
  20563. },
  20564. {
  20565. name: "Macro",
  20566. height: math.unit(400, "feet")
  20567. },
  20568. {
  20569. name: "Deific",
  20570. height: math.unit(60, "miles")
  20571. },
  20572. ]
  20573. ))
  20574. characterMakers.push(() => makeCharacter(
  20575. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20576. {
  20577. front: {
  20578. height: math.unit(2.35, "meters"),
  20579. weight: math.unit(119, "kg"),
  20580. name: "Front",
  20581. image: {
  20582. source: "./media/characters/ilia/front.svg",
  20583. extra: 1285 / 1255,
  20584. bottom: 0.06
  20585. }
  20586. },
  20587. },
  20588. [
  20589. {
  20590. name: "Normal",
  20591. height: math.unit(2.35, "meters")
  20592. },
  20593. {
  20594. name: "Macro",
  20595. height: math.unit(140, "meters"),
  20596. default: true
  20597. },
  20598. {
  20599. name: "Megamacro",
  20600. height: math.unit(100, "miles")
  20601. },
  20602. ]
  20603. ))
  20604. characterMakers.push(() => makeCharacter(
  20605. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20606. {
  20607. front: {
  20608. height: math.unit(6 + 5 / 12, "feet"),
  20609. weight: math.unit(190, "lb"),
  20610. name: "Front",
  20611. image: {
  20612. source: "./media/characters/kingdead/front.svg",
  20613. extra: 1228 / 1177
  20614. }
  20615. },
  20616. },
  20617. [
  20618. {
  20619. name: "Micro",
  20620. height: math.unit(7, "inches")
  20621. },
  20622. {
  20623. name: "Normal",
  20624. height: math.unit(6 + 5 / 12, "feet")
  20625. },
  20626. {
  20627. name: "Macro",
  20628. height: math.unit(150, "feet"),
  20629. default: true
  20630. },
  20631. {
  20632. name: "Megamacro",
  20633. height: math.unit(200, "miles")
  20634. },
  20635. ]
  20636. ))
  20637. characterMakers.push(() => makeCharacter(
  20638. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20639. {
  20640. front: {
  20641. height: math.unit(8, "feet"),
  20642. weight: math.unit(600, "lb"),
  20643. name: "Front",
  20644. image: {
  20645. source: "./media/characters/kyrehx/front.svg",
  20646. extra: 1195 / 1095,
  20647. bottom: 0.034
  20648. }
  20649. },
  20650. },
  20651. [
  20652. {
  20653. name: "Micro",
  20654. height: math.unit(2, "inches")
  20655. },
  20656. {
  20657. name: "Normal",
  20658. height: math.unit(8, "feet"),
  20659. default: true
  20660. },
  20661. {
  20662. name: "Macro",
  20663. height: math.unit(255, "feet")
  20664. },
  20665. ]
  20666. ))
  20667. characterMakers.push(() => makeCharacter(
  20668. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20669. {
  20670. front: {
  20671. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20672. weight: math.unit(184, "lb"),
  20673. name: "Front",
  20674. image: {
  20675. source: "./media/characters/xang/front.svg",
  20676. extra: 845 / 755
  20677. }
  20678. },
  20679. },
  20680. [
  20681. {
  20682. name: "Normal",
  20683. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20684. default: true
  20685. },
  20686. {
  20687. name: "Macro",
  20688. height: math.unit(0.935 * 146, "feet")
  20689. },
  20690. {
  20691. name: "Megamacro",
  20692. height: math.unit(0.935 * 3, "miles")
  20693. },
  20694. ]
  20695. ))
  20696. characterMakers.push(() => makeCharacter(
  20697. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20698. {
  20699. frontDressed: {
  20700. height: math.unit(5 + 7 / 12, "feet"),
  20701. weight: math.unit(140, "lb"),
  20702. name: "Front (Dressed)",
  20703. image: {
  20704. source: "./media/characters/doc-weardno/front-dressed.svg",
  20705. extra: 263 / 234
  20706. }
  20707. },
  20708. backDressed: {
  20709. height: math.unit(5 + 7 / 12, "feet"),
  20710. weight: math.unit(140, "lb"),
  20711. name: "Back (Dressed)",
  20712. image: {
  20713. source: "./media/characters/doc-weardno/back-dressed.svg",
  20714. extra: 266 / 238
  20715. }
  20716. },
  20717. front: {
  20718. height: math.unit(5 + 7 / 12, "feet"),
  20719. weight: math.unit(140, "lb"),
  20720. name: "Front",
  20721. image: {
  20722. source: "./media/characters/doc-weardno/front.svg",
  20723. extra: 254 / 233
  20724. }
  20725. },
  20726. },
  20727. [
  20728. {
  20729. name: "Micro",
  20730. height: math.unit(3, "inches")
  20731. },
  20732. {
  20733. name: "Normal",
  20734. height: math.unit(5 + 7 / 12, "feet"),
  20735. default: true
  20736. },
  20737. {
  20738. name: "Macro",
  20739. height: math.unit(25, "feet")
  20740. },
  20741. {
  20742. name: "Megamacro",
  20743. height: math.unit(2, "miles")
  20744. },
  20745. ]
  20746. ))
  20747. characterMakers.push(() => makeCharacter(
  20748. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20749. {
  20750. front: {
  20751. height: math.unit(6 + 2 / 12, "feet"),
  20752. weight: math.unit(153, "lb"),
  20753. name: "Front",
  20754. image: {
  20755. source: "./media/characters/seth-whilst/front.svg",
  20756. bottom: 0.07
  20757. }
  20758. },
  20759. },
  20760. [
  20761. {
  20762. name: "Micro",
  20763. height: math.unit(5, "inches")
  20764. },
  20765. {
  20766. name: "Normal",
  20767. height: math.unit(6 + 2 / 12, "feet"),
  20768. default: true
  20769. },
  20770. ]
  20771. ))
  20772. characterMakers.push(() => makeCharacter(
  20773. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20774. {
  20775. front: {
  20776. height: math.unit(3, "inches"),
  20777. weight: math.unit(8, "grams"),
  20778. name: "Front",
  20779. image: {
  20780. source: "./media/characters/pocket-jabari/front.svg",
  20781. extra: 1024 / 974,
  20782. bottom: 0.039
  20783. }
  20784. },
  20785. },
  20786. [
  20787. {
  20788. name: "Minimicro",
  20789. height: math.unit(8, "mm")
  20790. },
  20791. {
  20792. name: "Micro",
  20793. height: math.unit(3, "inches"),
  20794. default: true
  20795. },
  20796. {
  20797. name: "Normal",
  20798. height: math.unit(3, "feet")
  20799. },
  20800. ]
  20801. ))
  20802. characterMakers.push(() => makeCharacter(
  20803. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20804. {
  20805. frontDressed: {
  20806. height: math.unit(15, "feet"),
  20807. weight: math.unit(3280, "lb"),
  20808. name: "Front (Dressed)",
  20809. image: {
  20810. source: "./media/characters/sapphy/front-dressed.svg",
  20811. extra: 1951/1654,
  20812. bottom: 194/2145
  20813. },
  20814. form: "anthro",
  20815. default: true
  20816. },
  20817. backDressed: {
  20818. height: math.unit(15, "feet"),
  20819. weight: math.unit(3280, "lb"),
  20820. name: "Back (Dressed)",
  20821. image: {
  20822. source: "./media/characters/sapphy/back-dressed.svg",
  20823. extra: 2058/1918,
  20824. bottom: 125/2183
  20825. },
  20826. form: "anthro"
  20827. },
  20828. frontNude: {
  20829. height: math.unit(15, "feet"),
  20830. weight: math.unit(3280, "lb"),
  20831. name: "Front (Nude)",
  20832. image: {
  20833. source: "./media/characters/sapphy/front-nude.svg",
  20834. extra: 1951/1654,
  20835. bottom: 194/2145
  20836. },
  20837. form: "anthro"
  20838. },
  20839. backNude: {
  20840. height: math.unit(15, "feet"),
  20841. weight: math.unit(3280, "lb"),
  20842. name: "Back (Nude)",
  20843. image: {
  20844. source: "./media/characters/sapphy/back-nude.svg",
  20845. extra: 2058/1918,
  20846. bottom: 125/2183
  20847. },
  20848. form: "anthro"
  20849. },
  20850. full: {
  20851. height: math.unit(15, "feet"),
  20852. weight: math.unit(3280, "lb"),
  20853. name: "Full",
  20854. image: {
  20855. source: "./media/characters/sapphy/full.svg",
  20856. extra: 1396/1317,
  20857. bottom: 44/1440
  20858. },
  20859. form: "anthro"
  20860. },
  20861. dick: {
  20862. height: math.unit(3.8, "feet"),
  20863. name: "Dick",
  20864. image: {
  20865. source: "./media/characters/sapphy/dick.svg"
  20866. },
  20867. form: "anthro"
  20868. },
  20869. feral: {
  20870. height: math.unit(35, "feet"),
  20871. weight: math.unit(160, "tons"),
  20872. name: "Feral",
  20873. image: {
  20874. source: "./media/characters/sapphy/feral.svg",
  20875. extra: 1050/573,
  20876. bottom: 60/1110
  20877. },
  20878. form: "feral",
  20879. default: true
  20880. },
  20881. },
  20882. [
  20883. {
  20884. name: "Normal",
  20885. height: math.unit(15, "feet"),
  20886. form: "anthro"
  20887. },
  20888. {
  20889. name: "Casual Macro",
  20890. height: math.unit(120, "feet"),
  20891. form: "anthro"
  20892. },
  20893. {
  20894. name: "Macro",
  20895. height: math.unit(2150, "feet"),
  20896. default: true,
  20897. form: "anthro"
  20898. },
  20899. {
  20900. name: "Megamacro",
  20901. height: math.unit(8, "miles"),
  20902. form: "anthro"
  20903. },
  20904. {
  20905. name: "Galaxy Mom",
  20906. height: math.unit(6, "megalightyears"),
  20907. form: "anthro"
  20908. },
  20909. {
  20910. name: "Normal",
  20911. height: math.unit(35, "feet"),
  20912. form: "feral",
  20913. default: true
  20914. },
  20915. {
  20916. name: "Macro",
  20917. height: math.unit(300, "feet"),
  20918. form: "feral"
  20919. },
  20920. {
  20921. name: "Galaxy Mom",
  20922. height: math.unit(10, "megalightyears"),
  20923. form: "feral"
  20924. },
  20925. ],
  20926. {
  20927. "anthro": {
  20928. name: "Anthro",
  20929. default: true
  20930. },
  20931. "feral": {
  20932. name: "Feral"
  20933. }
  20934. }
  20935. ))
  20936. characterMakers.push(() => makeCharacter(
  20937. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20938. {
  20939. hyenaFront: {
  20940. height: math.unit(6, "feet"),
  20941. weight: math.unit(190, "lb"),
  20942. name: "Front",
  20943. image: {
  20944. source: "./media/characters/kiro/hyena-front.svg",
  20945. extra: 927/839,
  20946. bottom: 91/1018
  20947. },
  20948. form: "hyena",
  20949. default: true
  20950. },
  20951. front: {
  20952. height: math.unit(6, "feet"),
  20953. weight: math.unit(170, "lb"),
  20954. name: "Front",
  20955. image: {
  20956. source: "./media/characters/kiro/front.svg",
  20957. extra: 1064 / 1012,
  20958. bottom: 0.052
  20959. },
  20960. form: "folf",
  20961. default: true
  20962. },
  20963. },
  20964. [
  20965. {
  20966. name: "Micro",
  20967. height: math.unit(6, "inches"),
  20968. form: "folf"
  20969. },
  20970. {
  20971. name: "Normal",
  20972. height: math.unit(6, "feet"),
  20973. form: "folf",
  20974. default: true
  20975. },
  20976. {
  20977. name: "Macro",
  20978. height: math.unit(72, "feet"),
  20979. form: "folf"
  20980. },
  20981. {
  20982. name: "Micro",
  20983. height: math.unit(6, "inches"),
  20984. form: "hyena"
  20985. },
  20986. {
  20987. name: "Normal",
  20988. height: math.unit(6, "feet"),
  20989. form: "hyena",
  20990. default: true
  20991. },
  20992. {
  20993. name: "Macro",
  20994. height: math.unit(72, "feet"),
  20995. form: "hyena"
  20996. },
  20997. ],
  20998. {
  20999. "hyena": {
  21000. name: "Hyena",
  21001. default: true
  21002. },
  21003. "folf": {
  21004. name: "Folf",
  21005. },
  21006. }
  21007. ))
  21008. characterMakers.push(() => makeCharacter(
  21009. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21010. {
  21011. front: {
  21012. height: math.unit(5 + 9 / 12, "feet"),
  21013. weight: math.unit(175, "lb"),
  21014. name: "Front",
  21015. image: {
  21016. source: "./media/characters/irishfox/front.svg",
  21017. extra: 1912 / 1680,
  21018. bottom: 0.02
  21019. }
  21020. },
  21021. },
  21022. [
  21023. {
  21024. name: "Nano",
  21025. height: math.unit(1, "mm")
  21026. },
  21027. {
  21028. name: "Micro",
  21029. height: math.unit(2, "inches")
  21030. },
  21031. {
  21032. name: "Normal",
  21033. height: math.unit(5 + 9 / 12, "feet"),
  21034. default: true
  21035. },
  21036. {
  21037. name: "Macro",
  21038. height: math.unit(45, "feet")
  21039. },
  21040. ]
  21041. ))
  21042. characterMakers.push(() => makeCharacter(
  21043. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21044. {
  21045. front: {
  21046. height: math.unit(6 + 1 / 12, "feet"),
  21047. weight: math.unit(75, "lb"),
  21048. name: "Front",
  21049. image: {
  21050. source: "./media/characters/aronai-sieyes/front.svg",
  21051. extra: 1532/1450,
  21052. bottom: 42/1574
  21053. }
  21054. },
  21055. side: {
  21056. height: math.unit(6 + 1 / 12, "feet"),
  21057. weight: math.unit(75, "lb"),
  21058. name: "Side",
  21059. image: {
  21060. source: "./media/characters/aronai-sieyes/side.svg",
  21061. extra: 1422/1365,
  21062. bottom: 148/1570
  21063. }
  21064. },
  21065. back: {
  21066. height: math.unit(6 + 1 / 12, "feet"),
  21067. weight: math.unit(75, "lb"),
  21068. name: "Back",
  21069. image: {
  21070. source: "./media/characters/aronai-sieyes/back.svg",
  21071. extra: 1526/1464,
  21072. bottom: 51/1577
  21073. }
  21074. },
  21075. dressed: {
  21076. height: math.unit(6 + 1 / 12, "feet"),
  21077. weight: math.unit(75, "lb"),
  21078. name: "Dressed",
  21079. image: {
  21080. source: "./media/characters/aronai-sieyes/dressed.svg",
  21081. extra: 1559/1483,
  21082. bottom: 39/1598
  21083. }
  21084. },
  21085. slit: {
  21086. height: math.unit(1.3, "feet"),
  21087. name: "Slit",
  21088. image: {
  21089. source: "./media/characters/aronai-sieyes/slit.svg"
  21090. }
  21091. },
  21092. slitSpread: {
  21093. height: math.unit(0.9, "feet"),
  21094. name: "Slit (Spread)",
  21095. image: {
  21096. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21097. }
  21098. },
  21099. rump: {
  21100. height: math.unit(1.3, "feet"),
  21101. name: "Rump",
  21102. image: {
  21103. source: "./media/characters/aronai-sieyes/rump.svg"
  21104. }
  21105. },
  21106. maw: {
  21107. height: math.unit(1.25, "feet"),
  21108. name: "Maw",
  21109. image: {
  21110. source: "./media/characters/aronai-sieyes/maw.svg"
  21111. }
  21112. },
  21113. feral: {
  21114. height: math.unit(18, "feet"),
  21115. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21116. name: "Feral",
  21117. image: {
  21118. source: "./media/characters/aronai-sieyes/feral.svg",
  21119. extra: 1530 / 1240,
  21120. bottom: 0.035
  21121. }
  21122. },
  21123. },
  21124. [
  21125. {
  21126. name: "Micro",
  21127. height: math.unit(2, "inches")
  21128. },
  21129. {
  21130. name: "Normal",
  21131. height: math.unit(6 + 1 / 12, "feet"),
  21132. default: true
  21133. }
  21134. ]
  21135. ))
  21136. characterMakers.push(() => makeCharacter(
  21137. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21138. {
  21139. front: {
  21140. height: math.unit(12, "feet"),
  21141. weight: math.unit(410, "kg"),
  21142. name: "Front",
  21143. image: {
  21144. source: "./media/characters/xuna/front.svg",
  21145. extra: 2184 / 1980
  21146. }
  21147. },
  21148. side: {
  21149. height: math.unit(12, "feet"),
  21150. weight: math.unit(410, "kg"),
  21151. name: "Side",
  21152. image: {
  21153. source: "./media/characters/xuna/side.svg",
  21154. extra: 2184 / 1980
  21155. }
  21156. },
  21157. back: {
  21158. height: math.unit(12, "feet"),
  21159. weight: math.unit(410, "kg"),
  21160. name: "Back",
  21161. image: {
  21162. source: "./media/characters/xuna/back.svg",
  21163. extra: 2184 / 1980
  21164. }
  21165. },
  21166. },
  21167. [
  21168. {
  21169. name: "Nano glow",
  21170. height: math.unit(10, "nm")
  21171. },
  21172. {
  21173. name: "Micro floof",
  21174. height: math.unit(0.3, "m")
  21175. },
  21176. {
  21177. name: "Huggable softy boi",
  21178. height: math.unit(3.6576, "m"),
  21179. default: true
  21180. },
  21181. {
  21182. name: "Admirable floof",
  21183. height: math.unit(80, "meters")
  21184. },
  21185. {
  21186. name: "Gentle macro",
  21187. height: math.unit(300, "meters")
  21188. },
  21189. {
  21190. name: "Very careful floof",
  21191. height: math.unit(3200, "meters")
  21192. },
  21193. {
  21194. name: "The mega floof",
  21195. height: math.unit(36000, "meters")
  21196. },
  21197. {
  21198. name: "Giga-fur-Wicker",
  21199. height: math.unit(4800000, "meters")
  21200. },
  21201. {
  21202. name: "Licky world",
  21203. height: math.unit(20000000, "meters")
  21204. },
  21205. {
  21206. name: "Floofy cyan sun",
  21207. height: math.unit(1500000000, "meters")
  21208. },
  21209. {
  21210. name: "Milky Wicker",
  21211. height: math.unit(1000000000000000000000, "meters")
  21212. },
  21213. {
  21214. name: "The observing Wicker",
  21215. height: math.unit(999999999999999999999999999, "meters")
  21216. },
  21217. ]
  21218. ))
  21219. characterMakers.push(() => makeCharacter(
  21220. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21221. {
  21222. front: {
  21223. height: math.unit(5 + 9 / 12, "feet"),
  21224. weight: math.unit(150, "lb"),
  21225. name: "Front",
  21226. image: {
  21227. source: "./media/characters/arokha-sieyes/front.svg",
  21228. extra: 1425 / 1284,
  21229. bottom: 0.05
  21230. }
  21231. },
  21232. },
  21233. [
  21234. {
  21235. name: "Normal",
  21236. height: math.unit(5 + 9 / 12, "feet")
  21237. },
  21238. {
  21239. name: "Macro",
  21240. height: math.unit(30, "meters"),
  21241. default: true
  21242. },
  21243. ]
  21244. ))
  21245. characterMakers.push(() => makeCharacter(
  21246. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21247. {
  21248. front: {
  21249. height: math.unit(6, "feet"),
  21250. weight: math.unit(180, "lb"),
  21251. name: "Front",
  21252. image: {
  21253. source: "./media/characters/arokh-sieyes/front.svg",
  21254. extra: 1830 / 1769,
  21255. bottom: 0.01
  21256. }
  21257. },
  21258. },
  21259. [
  21260. {
  21261. name: "Normal",
  21262. height: math.unit(6, "feet")
  21263. },
  21264. {
  21265. name: "Macro",
  21266. height: math.unit(30, "meters"),
  21267. default: true
  21268. },
  21269. ]
  21270. ))
  21271. characterMakers.push(() => makeCharacter(
  21272. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21273. {
  21274. side: {
  21275. height: math.unit(13 + 1 / 12, "feet"),
  21276. weight: math.unit(8.5, "tonnes"),
  21277. preyCapacity: math.unit(36, "people"),
  21278. name: "Side",
  21279. image: {
  21280. source: "./media/characters/goldeneye/side.svg",
  21281. extra: 1139/741,
  21282. bottom: 98/1237
  21283. }
  21284. },
  21285. front: {
  21286. height: math.unit(5.1, "feet"),
  21287. weight: math.unit(8.5, "tonnes"),
  21288. preyCapacity: math.unit(36, "people"),
  21289. name: "Front",
  21290. image: {
  21291. source: "./media/characters/goldeneye/front.svg",
  21292. extra: 635/365,
  21293. bottom: 598/1233
  21294. }
  21295. },
  21296. maw: {
  21297. height: math.unit(6.6, "feet"),
  21298. name: "Maw",
  21299. image: {
  21300. source: "./media/characters/goldeneye/maw.svg"
  21301. }
  21302. },
  21303. headFront: {
  21304. height: math.unit(8, "feet"),
  21305. name: "Head (Front)",
  21306. image: {
  21307. source: "./media/characters/goldeneye/head-front.svg"
  21308. }
  21309. },
  21310. headSide: {
  21311. height: math.unit(6, "feet"),
  21312. name: "Head (Side)",
  21313. image: {
  21314. source: "./media/characters/goldeneye/head-side.svg"
  21315. }
  21316. },
  21317. headBack: {
  21318. height: math.unit(8, "feet"),
  21319. name: "Head (Back)",
  21320. image: {
  21321. source: "./media/characters/goldeneye/head-back.svg"
  21322. }
  21323. },
  21324. paw: {
  21325. height: math.unit(3.4, "feet"),
  21326. name: "Paw",
  21327. image: {
  21328. source: "./media/characters/goldeneye/paw.svg"
  21329. }
  21330. },
  21331. toering: {
  21332. height: math.unit(0.45, "feet"),
  21333. name: "Toering",
  21334. image: {
  21335. source: "./media/characters/goldeneye/toering.svg"
  21336. }
  21337. },
  21338. eyes: {
  21339. height: math.unit(0.5, "feet"),
  21340. name: "Eyes",
  21341. image: {
  21342. source: "./media/characters/goldeneye/eyes.svg"
  21343. }
  21344. },
  21345. },
  21346. [
  21347. {
  21348. name: "Normal",
  21349. height: math.unit(13 + 1 / 12, "feet"),
  21350. default: true
  21351. },
  21352. ]
  21353. ))
  21354. characterMakers.push(() => makeCharacter(
  21355. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21356. {
  21357. front: {
  21358. height: math.unit(6 + 1 / 12, "feet"),
  21359. weight: math.unit(210, "lb"),
  21360. name: "Front",
  21361. image: {
  21362. source: "./media/characters/leonardo-lycheborne/front.svg",
  21363. extra: 776/723,
  21364. bottom: 34/810
  21365. }
  21366. },
  21367. side: {
  21368. height: math.unit(6 + 1 / 12, "feet"),
  21369. weight: math.unit(210, "lb"),
  21370. name: "Side",
  21371. image: {
  21372. source: "./media/characters/leonardo-lycheborne/side.svg",
  21373. extra: 780/728,
  21374. bottom: 12/792
  21375. }
  21376. },
  21377. back: {
  21378. height: math.unit(6 + 1 / 12, "feet"),
  21379. weight: math.unit(210, "lb"),
  21380. name: "Back",
  21381. image: {
  21382. source: "./media/characters/leonardo-lycheborne/back.svg",
  21383. extra: 775/721,
  21384. bottom: 17/792
  21385. }
  21386. },
  21387. hand: {
  21388. height: math.unit(1.08, "feet"),
  21389. name: "Hand",
  21390. image: {
  21391. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21392. }
  21393. },
  21394. foot: {
  21395. height: math.unit(1.32, "feet"),
  21396. name: "Foot",
  21397. image: {
  21398. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21399. }
  21400. },
  21401. maw: {
  21402. height: math.unit(1, "feet"),
  21403. name: "Maw",
  21404. image: {
  21405. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21406. }
  21407. },
  21408. were: {
  21409. height: math.unit(20, "feet"),
  21410. weight: math.unit(7800, "lb"),
  21411. name: "Were",
  21412. image: {
  21413. source: "./media/characters/leonardo-lycheborne/were.svg",
  21414. extra: 1224/1165,
  21415. bottom: 72/1296
  21416. }
  21417. },
  21418. feral: {
  21419. height: math.unit(7.5, "feet"),
  21420. weight: math.unit(600, "lb"),
  21421. name: "Feral",
  21422. image: {
  21423. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21424. extra: 797/702,
  21425. bottom: 139/936
  21426. }
  21427. },
  21428. taur: {
  21429. height: math.unit(11, "feet"),
  21430. weight: math.unit(3300, "lb"),
  21431. name: "Taur",
  21432. image: {
  21433. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21434. extra: 1271/1197,
  21435. bottom: 47/1318
  21436. }
  21437. },
  21438. barghest: {
  21439. height: math.unit(11, "feet"),
  21440. weight: math.unit(1300, "lb"),
  21441. name: "Barghest",
  21442. image: {
  21443. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21444. extra: 1291/1204,
  21445. bottom: 37/1328
  21446. }
  21447. },
  21448. dick: {
  21449. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21450. name: "Dick",
  21451. image: {
  21452. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21453. }
  21454. },
  21455. dickWere: {
  21456. height: math.unit((20) / 3.8, "feet"),
  21457. name: "Dick (Were)",
  21458. image: {
  21459. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21460. }
  21461. },
  21462. },
  21463. [
  21464. {
  21465. name: "Normal",
  21466. height: math.unit(6 + 1 / 12, "feet"),
  21467. default: true
  21468. },
  21469. ]
  21470. ))
  21471. characterMakers.push(() => makeCharacter(
  21472. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21473. {
  21474. front: {
  21475. height: math.unit(10, "feet"),
  21476. weight: math.unit(350, "lb"),
  21477. name: "Front",
  21478. image: {
  21479. source: "./media/characters/jet/front.svg",
  21480. extra: 2050 / 1980,
  21481. bottom: 0.013
  21482. }
  21483. },
  21484. back: {
  21485. height: math.unit(10, "feet"),
  21486. weight: math.unit(350, "lb"),
  21487. name: "Back",
  21488. image: {
  21489. source: "./media/characters/jet/back.svg",
  21490. extra: 2050 / 1980,
  21491. bottom: 0.013
  21492. }
  21493. },
  21494. },
  21495. [
  21496. {
  21497. name: "Micro",
  21498. height: math.unit(6, "inches")
  21499. },
  21500. {
  21501. name: "Normal",
  21502. height: math.unit(10, "feet"),
  21503. default: true
  21504. },
  21505. {
  21506. name: "Macro",
  21507. height: math.unit(100, "feet")
  21508. },
  21509. ]
  21510. ))
  21511. characterMakers.push(() => makeCharacter(
  21512. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21513. {
  21514. front: {
  21515. height: math.unit(15, "feet"),
  21516. weight: math.unit(2800, "lb"),
  21517. name: "Front",
  21518. image: {
  21519. source: "./media/characters/tanarath/front.svg",
  21520. extra: 2392 / 2220,
  21521. bottom: 0.03
  21522. }
  21523. },
  21524. back: {
  21525. height: math.unit(15, "feet"),
  21526. weight: math.unit(2800, "lb"),
  21527. name: "Back",
  21528. image: {
  21529. source: "./media/characters/tanarath/back.svg",
  21530. extra: 2392 / 2220,
  21531. bottom: 0.03
  21532. }
  21533. },
  21534. },
  21535. [
  21536. {
  21537. name: "Normal",
  21538. height: math.unit(15, "feet"),
  21539. default: true
  21540. },
  21541. ]
  21542. ))
  21543. characterMakers.push(() => makeCharacter(
  21544. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21545. {
  21546. front: {
  21547. height: math.unit(7 + 1 / 12, "feet"),
  21548. weight: math.unit(175, "lb"),
  21549. name: "Front",
  21550. image: {
  21551. source: "./media/characters/patty-cattybatty/front.svg",
  21552. extra: 908 / 874,
  21553. bottom: 0.025
  21554. }
  21555. },
  21556. },
  21557. [
  21558. {
  21559. name: "Micro",
  21560. height: math.unit(1, "inch")
  21561. },
  21562. {
  21563. name: "Normal",
  21564. height: math.unit(7 + 1 / 12, "feet")
  21565. },
  21566. {
  21567. name: "Mini Macro",
  21568. height: math.unit(155, "feet")
  21569. },
  21570. {
  21571. name: "Macro",
  21572. height: math.unit(1077, "feet")
  21573. },
  21574. {
  21575. name: "Mega Macro",
  21576. height: math.unit(47650, "feet"),
  21577. default: true
  21578. },
  21579. {
  21580. name: "Giga Macro",
  21581. height: math.unit(440, "miles")
  21582. },
  21583. {
  21584. name: "Tera Macro",
  21585. height: math.unit(8700, "miles")
  21586. },
  21587. {
  21588. name: "Planetary Macro",
  21589. height: math.unit(32700, "miles")
  21590. },
  21591. {
  21592. name: "Solar Macro",
  21593. height: math.unit(550000, "miles")
  21594. },
  21595. {
  21596. name: "Celestial Macro",
  21597. height: math.unit(2.5, "AU")
  21598. },
  21599. ]
  21600. ))
  21601. characterMakers.push(() => makeCharacter(
  21602. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21603. {
  21604. front: {
  21605. height: math.unit(4 + 5 / 12, "feet"),
  21606. weight: math.unit(90, "lb"),
  21607. name: "Front",
  21608. image: {
  21609. source: "./media/characters/cappu/front.svg",
  21610. extra: 1247 / 1152,
  21611. bottom: 0.012
  21612. }
  21613. },
  21614. },
  21615. [
  21616. {
  21617. name: "Normal",
  21618. height: math.unit(4 + 5 / 12, "feet"),
  21619. default: true
  21620. },
  21621. ]
  21622. ))
  21623. characterMakers.push(() => makeCharacter(
  21624. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21625. {
  21626. frontDressed: {
  21627. height: math.unit(70, "cm"),
  21628. weight: math.unit(6, "kg"),
  21629. name: "Front (Dressed)",
  21630. image: {
  21631. source: "./media/characters/sebi/front-dressed.svg",
  21632. extra: 713.5 / 686.5,
  21633. bottom: 0.003
  21634. }
  21635. },
  21636. front: {
  21637. height: math.unit(70, "cm"),
  21638. weight: math.unit(5, "kg"),
  21639. name: "Front",
  21640. image: {
  21641. source: "./media/characters/sebi/front.svg",
  21642. extra: 713.5 / 686.5,
  21643. bottom: 0.003
  21644. }
  21645. }
  21646. },
  21647. [
  21648. {
  21649. name: "Normal",
  21650. height: math.unit(70, "cm"),
  21651. default: true
  21652. },
  21653. {
  21654. name: "Macro",
  21655. height: math.unit(8, "meters")
  21656. },
  21657. ]
  21658. ))
  21659. characterMakers.push(() => makeCharacter(
  21660. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21661. {
  21662. front: {
  21663. height: math.unit(6, "feet"),
  21664. weight: math.unit(150, "lb"),
  21665. name: "Front",
  21666. image: {
  21667. source: "./media/characters/typhek/front.svg",
  21668. extra: 1948 / 1929,
  21669. bottom: 0.025
  21670. }
  21671. },
  21672. side: {
  21673. height: math.unit(6, "feet"),
  21674. weight: math.unit(150, "lb"),
  21675. name: "Side",
  21676. image: {
  21677. source: "./media/characters/typhek/side.svg",
  21678. extra: 2034 / 2010,
  21679. bottom: 0.003
  21680. }
  21681. },
  21682. back: {
  21683. height: math.unit(6, "feet"),
  21684. weight: math.unit(150, "lb"),
  21685. name: "Back",
  21686. image: {
  21687. source: "./media/characters/typhek/back.svg",
  21688. extra: 2005 / 1978,
  21689. bottom: 0.004
  21690. }
  21691. },
  21692. palm: {
  21693. height: math.unit(1.2, "feet"),
  21694. name: "Palm",
  21695. image: {
  21696. source: "./media/characters/typhek/palm.svg"
  21697. }
  21698. },
  21699. fist: {
  21700. height: math.unit(1.1, "feet"),
  21701. name: "Fist",
  21702. image: {
  21703. source: "./media/characters/typhek/fist.svg"
  21704. }
  21705. },
  21706. foot: {
  21707. height: math.unit(1.57, "feet"),
  21708. name: "Foot",
  21709. image: {
  21710. source: "./media/characters/typhek/foot.svg"
  21711. }
  21712. },
  21713. sole: {
  21714. height: math.unit(2.05, "feet"),
  21715. name: "Sole",
  21716. image: {
  21717. source: "./media/characters/typhek/sole.svg"
  21718. }
  21719. },
  21720. },
  21721. [
  21722. {
  21723. name: "Macro",
  21724. height: math.unit(40, "stories"),
  21725. default: true
  21726. },
  21727. {
  21728. name: "Megamacro",
  21729. height: math.unit(1, "mile")
  21730. },
  21731. {
  21732. name: "Gigamacro",
  21733. height: math.unit(4000, "solarradii")
  21734. },
  21735. {
  21736. name: "Universal",
  21737. height: math.unit(1.1, "universes")
  21738. }
  21739. ]
  21740. ))
  21741. characterMakers.push(() => makeCharacter(
  21742. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21743. {
  21744. side: {
  21745. height: math.unit(5 + 7 / 12, "feet"),
  21746. weight: math.unit(150, "lb"),
  21747. name: "Side",
  21748. image: {
  21749. source: "./media/characters/kassy/side.svg",
  21750. extra: 1280 / 1225,
  21751. bottom: 0.002
  21752. }
  21753. },
  21754. front: {
  21755. height: math.unit(5 + 7 / 12, "feet"),
  21756. weight: math.unit(150, "lb"),
  21757. name: "Front",
  21758. image: {
  21759. source: "./media/characters/kassy/front.svg",
  21760. extra: 1280 / 1225,
  21761. bottom: 0.025
  21762. }
  21763. },
  21764. back: {
  21765. height: math.unit(5 + 7 / 12, "feet"),
  21766. weight: math.unit(150, "lb"),
  21767. name: "Back",
  21768. image: {
  21769. source: "./media/characters/kassy/back.svg",
  21770. extra: 1280 / 1225,
  21771. bottom: 0.002
  21772. }
  21773. },
  21774. foot: {
  21775. height: math.unit(1.266, "feet"),
  21776. name: "Foot",
  21777. image: {
  21778. source: "./media/characters/kassy/foot.svg"
  21779. }
  21780. },
  21781. },
  21782. [
  21783. {
  21784. name: "Normal",
  21785. height: math.unit(5 + 7 / 12, "feet")
  21786. },
  21787. {
  21788. name: "Macro",
  21789. height: math.unit(137, "feet"),
  21790. default: true
  21791. },
  21792. {
  21793. name: "Megamacro",
  21794. height: math.unit(1, "mile")
  21795. },
  21796. ]
  21797. ))
  21798. characterMakers.push(() => makeCharacter(
  21799. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21800. {
  21801. front: {
  21802. height: math.unit(6 + 1 / 12, "feet"),
  21803. weight: math.unit(200, "lb"),
  21804. name: "Front",
  21805. image: {
  21806. source: "./media/characters/neil/front.svg",
  21807. extra: 1326 / 1250,
  21808. bottom: 0.023
  21809. }
  21810. },
  21811. },
  21812. [
  21813. {
  21814. name: "Normal",
  21815. height: math.unit(6 + 1 / 12, "feet"),
  21816. default: true
  21817. },
  21818. {
  21819. name: "Macro",
  21820. height: math.unit(200, "feet")
  21821. },
  21822. ]
  21823. ))
  21824. characterMakers.push(() => makeCharacter(
  21825. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21826. {
  21827. front: {
  21828. height: math.unit(5 + 9 / 12, "feet"),
  21829. weight: math.unit(190, "lb"),
  21830. name: "Front",
  21831. image: {
  21832. source: "./media/characters/atticus/front.svg",
  21833. extra: 2934 / 2785,
  21834. bottom: 0.025
  21835. }
  21836. },
  21837. },
  21838. [
  21839. {
  21840. name: "Normal",
  21841. height: math.unit(5 + 9 / 12, "feet"),
  21842. default: true
  21843. },
  21844. {
  21845. name: "Macro",
  21846. height: math.unit(180, "feet")
  21847. },
  21848. ]
  21849. ))
  21850. characterMakers.push(() => makeCharacter(
  21851. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21852. {
  21853. side: {
  21854. height: math.unit(9, "feet"),
  21855. weight: math.unit(650, "lb"),
  21856. name: "Side",
  21857. image: {
  21858. source: "./media/characters/milo/side.svg",
  21859. extra: 2644 / 2310,
  21860. bottom: 0.032
  21861. }
  21862. },
  21863. },
  21864. [
  21865. {
  21866. name: "Normal",
  21867. height: math.unit(9, "feet"),
  21868. default: true
  21869. },
  21870. {
  21871. name: "Macro",
  21872. height: math.unit(300, "feet")
  21873. },
  21874. ]
  21875. ))
  21876. characterMakers.push(() => makeCharacter(
  21877. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21878. {
  21879. side: {
  21880. height: math.unit(8, "meters"),
  21881. weight: math.unit(90000, "kg"),
  21882. name: "Side",
  21883. image: {
  21884. source: "./media/characters/ijzer/side.svg",
  21885. extra: 2756 / 1600,
  21886. bottom: 0.01
  21887. }
  21888. },
  21889. },
  21890. [
  21891. {
  21892. name: "Small",
  21893. height: math.unit(3, "meters")
  21894. },
  21895. {
  21896. name: "Normal",
  21897. height: math.unit(8, "meters"),
  21898. default: true
  21899. },
  21900. {
  21901. name: "Normal+",
  21902. height: math.unit(10, "meters")
  21903. },
  21904. {
  21905. name: "Bigger",
  21906. height: math.unit(24, "meters")
  21907. },
  21908. {
  21909. name: "Huge",
  21910. height: math.unit(80, "meters")
  21911. },
  21912. ]
  21913. ))
  21914. characterMakers.push(() => makeCharacter(
  21915. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21916. {
  21917. front: {
  21918. height: math.unit(6 + 2 / 12, "feet"),
  21919. weight: math.unit(153, "lb"),
  21920. name: "Front",
  21921. image: {
  21922. source: "./media/characters/luca-cervicum/front.svg",
  21923. extra: 370 / 327,
  21924. bottom: 0.015
  21925. }
  21926. },
  21927. back: {
  21928. height: math.unit(6 + 2 / 12, "feet"),
  21929. weight: math.unit(153, "lb"),
  21930. name: "Back",
  21931. image: {
  21932. source: "./media/characters/luca-cervicum/back.svg",
  21933. extra: 367 / 333,
  21934. bottom: 0.005
  21935. }
  21936. },
  21937. frontGear: {
  21938. height: math.unit(6 + 2 / 12, "feet"),
  21939. weight: math.unit(173, "lb"),
  21940. name: "Front (Gear)",
  21941. image: {
  21942. source: "./media/characters/luca-cervicum/front-gear.svg",
  21943. extra: 377 / 333,
  21944. bottom: 0.006
  21945. }
  21946. },
  21947. },
  21948. [
  21949. {
  21950. name: "Normal",
  21951. height: math.unit(6 + 2 / 12, "feet"),
  21952. default: true
  21953. },
  21954. ]
  21955. ))
  21956. characterMakers.push(() => makeCharacter(
  21957. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21958. {
  21959. front: {
  21960. height: math.unit(6 + 1 / 12, "feet"),
  21961. weight: math.unit(304, "lb"),
  21962. name: "Front",
  21963. image: {
  21964. source: "./media/characters/oliver/front.svg",
  21965. extra: 157 / 143,
  21966. bottom: 0.08
  21967. }
  21968. },
  21969. },
  21970. [
  21971. {
  21972. name: "Normal",
  21973. height: math.unit(6 + 1 / 12, "feet"),
  21974. default: true
  21975. },
  21976. ]
  21977. ))
  21978. characterMakers.push(() => makeCharacter(
  21979. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21980. {
  21981. front: {
  21982. height: math.unit(5 + 7 / 12, "feet"),
  21983. weight: math.unit(140, "lb"),
  21984. name: "Front",
  21985. image: {
  21986. source: "./media/characters/shane/front.svg",
  21987. extra: 304 / 289,
  21988. bottom: 0.005
  21989. }
  21990. },
  21991. },
  21992. [
  21993. {
  21994. name: "Normal",
  21995. height: math.unit(5 + 7 / 12, "feet"),
  21996. default: true
  21997. },
  21998. ]
  21999. ))
  22000. characterMakers.push(() => makeCharacter(
  22001. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22002. {
  22003. front: {
  22004. height: math.unit(5 + 9 / 12, "feet"),
  22005. weight: math.unit(178, "lb"),
  22006. name: "Front",
  22007. image: {
  22008. source: "./media/characters/shin/front.svg",
  22009. extra: 159 / 151,
  22010. bottom: 0.015
  22011. }
  22012. },
  22013. },
  22014. [
  22015. {
  22016. name: "Normal",
  22017. height: math.unit(5 + 9 / 12, "feet"),
  22018. default: true
  22019. },
  22020. ]
  22021. ))
  22022. characterMakers.push(() => makeCharacter(
  22023. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22024. {
  22025. front: {
  22026. height: math.unit(5 + 10 / 12, "feet"),
  22027. weight: math.unit(168, "lb"),
  22028. name: "Front",
  22029. image: {
  22030. source: "./media/characters/xerxes/front.svg",
  22031. extra: 282 / 260,
  22032. bottom: 0.045
  22033. }
  22034. },
  22035. },
  22036. [
  22037. {
  22038. name: "Normal",
  22039. height: math.unit(5 + 10 / 12, "feet"),
  22040. default: true
  22041. },
  22042. ]
  22043. ))
  22044. characterMakers.push(() => makeCharacter(
  22045. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22046. {
  22047. front: {
  22048. height: math.unit(6 + 7 / 12, "feet"),
  22049. weight: math.unit(208, "lb"),
  22050. name: "Front",
  22051. image: {
  22052. source: "./media/characters/chaska/front.svg",
  22053. extra: 332 / 319,
  22054. bottom: 0.015
  22055. }
  22056. },
  22057. },
  22058. [
  22059. {
  22060. name: "Normal",
  22061. height: math.unit(6 + 7 / 12, "feet"),
  22062. default: true
  22063. },
  22064. ]
  22065. ))
  22066. characterMakers.push(() => makeCharacter(
  22067. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22068. {
  22069. front: {
  22070. height: math.unit(5 + 8 / 12, "feet"),
  22071. weight: math.unit(208, "lb"),
  22072. name: "Front",
  22073. image: {
  22074. source: "./media/characters/enuk/front.svg",
  22075. extra: 437 / 406,
  22076. bottom: 0.02
  22077. }
  22078. },
  22079. },
  22080. [
  22081. {
  22082. name: "Normal",
  22083. height: math.unit(5 + 8 / 12, "feet"),
  22084. default: true
  22085. },
  22086. ]
  22087. ))
  22088. characterMakers.push(() => makeCharacter(
  22089. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22090. {
  22091. front: {
  22092. height: math.unit(5 + 10 / 12, "feet"),
  22093. weight: math.unit(252, "lb"),
  22094. name: "Front",
  22095. image: {
  22096. source: "./media/characters/bruun/front.svg",
  22097. extra: 197 / 187,
  22098. bottom: 0.012
  22099. }
  22100. },
  22101. },
  22102. [
  22103. {
  22104. name: "Normal",
  22105. height: math.unit(5 + 10 / 12, "feet"),
  22106. default: true
  22107. },
  22108. ]
  22109. ))
  22110. characterMakers.push(() => makeCharacter(
  22111. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22112. {
  22113. front: {
  22114. height: math.unit(6 + 10 / 12, "feet"),
  22115. weight: math.unit(255, "lb"),
  22116. name: "Front",
  22117. image: {
  22118. source: "./media/characters/alexeev/front.svg",
  22119. extra: 213 / 200,
  22120. bottom: 0.05
  22121. }
  22122. },
  22123. },
  22124. [
  22125. {
  22126. name: "Normal",
  22127. height: math.unit(6 + 10 / 12, "feet"),
  22128. default: true
  22129. },
  22130. ]
  22131. ))
  22132. characterMakers.push(() => makeCharacter(
  22133. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22134. {
  22135. front: {
  22136. height: math.unit(2 + 8 / 12, "feet"),
  22137. weight: math.unit(22, "lb"),
  22138. name: "Front",
  22139. image: {
  22140. source: "./media/characters/evelyn/front.svg",
  22141. extra: 208 / 180
  22142. }
  22143. },
  22144. },
  22145. [
  22146. {
  22147. name: "Normal",
  22148. height: math.unit(2 + 8 / 12, "feet"),
  22149. default: true
  22150. },
  22151. ]
  22152. ))
  22153. characterMakers.push(() => makeCharacter(
  22154. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22155. {
  22156. front: {
  22157. height: math.unit(5 + 9 / 12, "feet"),
  22158. weight: math.unit(139, "lb"),
  22159. name: "Front",
  22160. image: {
  22161. source: "./media/characters/inca/front.svg",
  22162. extra: 294 / 291,
  22163. bottom: 0.03
  22164. }
  22165. },
  22166. },
  22167. [
  22168. {
  22169. name: "Normal",
  22170. height: math.unit(5 + 9 / 12, "feet"),
  22171. default: true
  22172. },
  22173. ]
  22174. ))
  22175. characterMakers.push(() => makeCharacter(
  22176. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22177. {
  22178. front: {
  22179. height: math.unit(6 + 3 / 12, "feet"),
  22180. weight: math.unit(185, "lb"),
  22181. name: "Front",
  22182. image: {
  22183. source: "./media/characters/mera/front.svg",
  22184. extra: 291 / 277,
  22185. bottom: 0.03
  22186. }
  22187. },
  22188. },
  22189. [
  22190. {
  22191. name: "Normal",
  22192. height: math.unit(6 + 3 / 12, "feet"),
  22193. default: true
  22194. },
  22195. ]
  22196. ))
  22197. characterMakers.push(() => makeCharacter(
  22198. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22199. {
  22200. front: {
  22201. height: math.unit(6 + 7 / 12, "feet"),
  22202. weight: math.unit(160, "lb"),
  22203. name: "Front",
  22204. image: {
  22205. source: "./media/characters/ceres/front.svg",
  22206. extra: 1023 / 950,
  22207. bottom: 0.027
  22208. }
  22209. },
  22210. back: {
  22211. height: math.unit(6 + 7 / 12, "feet"),
  22212. weight: math.unit(160, "lb"),
  22213. name: "Back",
  22214. image: {
  22215. source: "./media/characters/ceres/back.svg",
  22216. extra: 1023 / 950
  22217. }
  22218. },
  22219. },
  22220. [
  22221. {
  22222. name: "Normal",
  22223. height: math.unit(6 + 7 / 12, "feet"),
  22224. default: true
  22225. },
  22226. ]
  22227. ))
  22228. characterMakers.push(() => makeCharacter(
  22229. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22230. {
  22231. front: {
  22232. height: math.unit(5 + 10 / 12, "feet"),
  22233. weight: math.unit(150, "lb"),
  22234. name: "Front",
  22235. image: {
  22236. source: "./media/characters/kris/front.svg",
  22237. extra: 885 / 803,
  22238. bottom: 0.03
  22239. }
  22240. },
  22241. },
  22242. [
  22243. {
  22244. name: "Normal",
  22245. height: math.unit(5 + 10 / 12, "feet"),
  22246. default: true
  22247. },
  22248. ]
  22249. ))
  22250. characterMakers.push(() => makeCharacter(
  22251. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22252. {
  22253. dragon_front: {
  22254. height: math.unit(5, "feet"),
  22255. name: "Front",
  22256. image: {
  22257. source: "./media/characters/taluthus/dragon-front.svg",
  22258. extra: 1203/1098,
  22259. bottom: 46/1249
  22260. },
  22261. form: "dragon",
  22262. default: true
  22263. },
  22264. dragon_maw: {
  22265. height: math.unit(2.35, "feet"),
  22266. name: "Maw",
  22267. image: {
  22268. source: "./media/characters/taluthus/dragon-maw.svg"
  22269. },
  22270. form: "dragon",
  22271. },
  22272. kitsune_front: {
  22273. height: math.unit(7, "feet"),
  22274. name: "Front",
  22275. image: {
  22276. source: "./media/characters/taluthus/kitsune-front.svg",
  22277. extra: 900/841,
  22278. bottom: 65/965
  22279. },
  22280. form: "kitsune",
  22281. default: true
  22282. },
  22283. },
  22284. [
  22285. {
  22286. name: "Normal",
  22287. height: math.unit(5, "feet"),
  22288. form: "dragon",
  22289. default: true,
  22290. },
  22291. {
  22292. name: "Normal",
  22293. height: math.unit(7, "feet"),
  22294. form: "kitsune",
  22295. default: true
  22296. },
  22297. {
  22298. name: "Macro",
  22299. height: math.unit(300, "feet"),
  22300. allForms: true
  22301. },
  22302. ],
  22303. {
  22304. "dragon": {
  22305. name: "Dragon",
  22306. default: true
  22307. },
  22308. "kitsune": {
  22309. name: "Kitsune",
  22310. },
  22311. }
  22312. ))
  22313. characterMakers.push(() => makeCharacter(
  22314. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22315. {
  22316. front: {
  22317. height: math.unit(5 + 9 / 12, "feet"),
  22318. weight: math.unit(145, "lb"),
  22319. name: "Front",
  22320. image: {
  22321. source: "./media/characters/dawn/front.svg",
  22322. extra: 2094 / 2016,
  22323. bottom: 0.025
  22324. }
  22325. },
  22326. back: {
  22327. height: math.unit(5 + 9 / 12, "feet"),
  22328. weight: math.unit(160, "lb"),
  22329. name: "Back",
  22330. image: {
  22331. source: "./media/characters/dawn/back.svg",
  22332. extra: 2112 / 2080,
  22333. bottom: 0.005
  22334. }
  22335. },
  22336. },
  22337. [
  22338. {
  22339. name: "Normal",
  22340. height: math.unit(6 + 7 / 12, "feet"),
  22341. default: true
  22342. },
  22343. ]
  22344. ))
  22345. characterMakers.push(() => makeCharacter(
  22346. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22347. {
  22348. anthro: {
  22349. height: math.unit(8 + 3 / 12, "feet"),
  22350. weight: math.unit(450, "lb"),
  22351. name: "Anthro",
  22352. image: {
  22353. source: "./media/characters/arador/anthro.svg",
  22354. extra: 1835 / 1718,
  22355. bottom: 0.025
  22356. }
  22357. },
  22358. feral: {
  22359. height: math.unit(4, "feet"),
  22360. weight: math.unit(200, "lb"),
  22361. name: "Feral",
  22362. image: {
  22363. source: "./media/characters/arador/feral.svg",
  22364. extra: 1683 / 1514,
  22365. bottom: 0.07
  22366. }
  22367. },
  22368. },
  22369. [
  22370. {
  22371. name: "Normal",
  22372. height: math.unit(8 + 3 / 12, "feet")
  22373. },
  22374. {
  22375. name: "Macro",
  22376. height: math.unit(82.5, "feet"),
  22377. default: true
  22378. },
  22379. ]
  22380. ))
  22381. characterMakers.push(() => makeCharacter(
  22382. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22383. {
  22384. front: {
  22385. height: math.unit(5 + 10 / 12, "feet"),
  22386. weight: math.unit(125, "lb"),
  22387. name: "Front",
  22388. image: {
  22389. source: "./media/characters/dharsi/front.svg",
  22390. extra: 716 / 630,
  22391. bottom: 0.035
  22392. }
  22393. },
  22394. },
  22395. [
  22396. {
  22397. name: "Nano",
  22398. height: math.unit(100, "nm")
  22399. },
  22400. {
  22401. name: "Micro",
  22402. height: math.unit(2, "inches")
  22403. },
  22404. {
  22405. name: "Normal",
  22406. height: math.unit(5 + 10 / 12, "feet"),
  22407. default: true
  22408. },
  22409. {
  22410. name: "Macro",
  22411. height: math.unit(1000, "feet")
  22412. },
  22413. {
  22414. name: "Megamacro",
  22415. height: math.unit(10, "miles")
  22416. },
  22417. {
  22418. name: "Gigamacro",
  22419. height: math.unit(3000, "miles")
  22420. },
  22421. {
  22422. name: "Teramacro",
  22423. height: math.unit(500000, "miles")
  22424. },
  22425. {
  22426. name: "Teramacro+",
  22427. height: math.unit(30, "galaxies")
  22428. },
  22429. ]
  22430. ))
  22431. characterMakers.push(() => makeCharacter(
  22432. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22433. {
  22434. front: {
  22435. height: math.unit(6, "feet"),
  22436. weight: math.unit(150, "lb"),
  22437. name: "Front",
  22438. image: {
  22439. source: "./media/characters/deathy/front.svg",
  22440. extra: 1552 / 1463,
  22441. bottom: 0.025
  22442. }
  22443. },
  22444. side: {
  22445. height: math.unit(6, "feet"),
  22446. weight: math.unit(150, "lb"),
  22447. name: "Side",
  22448. image: {
  22449. source: "./media/characters/deathy/side.svg",
  22450. extra: 1604 / 1455,
  22451. bottom: 0.025
  22452. }
  22453. },
  22454. back: {
  22455. height: math.unit(6, "feet"),
  22456. weight: math.unit(150, "lb"),
  22457. name: "Back",
  22458. image: {
  22459. source: "./media/characters/deathy/back.svg",
  22460. extra: 1580 / 1463,
  22461. bottom: 0.005
  22462. }
  22463. },
  22464. },
  22465. [
  22466. {
  22467. name: "Micro",
  22468. height: math.unit(5, "millimeters")
  22469. },
  22470. {
  22471. name: "Normal",
  22472. height: math.unit(6 + 5 / 12, "feet"),
  22473. default: true
  22474. },
  22475. ]
  22476. ))
  22477. characterMakers.push(() => makeCharacter(
  22478. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22479. {
  22480. front: {
  22481. height: math.unit(16, "feet"),
  22482. weight: math.unit(4000, "lb"),
  22483. name: "Front",
  22484. image: {
  22485. source: "./media/characters/juniper/front.svg",
  22486. bottom: 0.04
  22487. }
  22488. },
  22489. },
  22490. [
  22491. {
  22492. name: "Normal",
  22493. height: math.unit(16, "feet"),
  22494. default: true
  22495. },
  22496. ]
  22497. ))
  22498. characterMakers.push(() => makeCharacter(
  22499. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22500. {
  22501. front: {
  22502. height: math.unit(6, "feet"),
  22503. weight: math.unit(150, "lb"),
  22504. name: "Front",
  22505. image: {
  22506. source: "./media/characters/hipster/front.svg",
  22507. extra: 1312 / 1209,
  22508. bottom: 0.025
  22509. }
  22510. },
  22511. back: {
  22512. height: math.unit(6, "feet"),
  22513. weight: math.unit(150, "lb"),
  22514. name: "Back",
  22515. image: {
  22516. source: "./media/characters/hipster/back.svg",
  22517. extra: 1281 / 1196,
  22518. bottom: 0.01
  22519. }
  22520. },
  22521. },
  22522. [
  22523. {
  22524. name: "Micro",
  22525. height: math.unit(1, "mm")
  22526. },
  22527. {
  22528. name: "Normal",
  22529. height: math.unit(4, "inches"),
  22530. default: true
  22531. },
  22532. {
  22533. name: "Macro",
  22534. height: math.unit(500, "feet")
  22535. },
  22536. {
  22537. name: "Megamacro",
  22538. height: math.unit(1000, "miles")
  22539. },
  22540. ]
  22541. ))
  22542. characterMakers.push(() => makeCharacter(
  22543. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22544. {
  22545. front: {
  22546. height: math.unit(6, "feet"),
  22547. weight: math.unit(150, "lb"),
  22548. name: "Front",
  22549. image: {
  22550. source: "./media/characters/tendirmuldr/front.svg",
  22551. extra: 1878 / 1772,
  22552. bottom: 0.015
  22553. }
  22554. },
  22555. },
  22556. [
  22557. {
  22558. name: "Megamacro",
  22559. height: math.unit(1500, "miles"),
  22560. default: true
  22561. },
  22562. ]
  22563. ))
  22564. characterMakers.push(() => makeCharacter(
  22565. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22566. {
  22567. front: {
  22568. height: math.unit(14, "feet"),
  22569. weight: math.unit(12000, "lb"),
  22570. name: "Front",
  22571. image: {
  22572. source: "./media/characters/mort/front.svg",
  22573. extra: 365 / 318,
  22574. bottom: 0.01
  22575. }
  22576. },
  22577. side: {
  22578. height: math.unit(14, "feet"),
  22579. weight: math.unit(12000, "lb"),
  22580. name: "Side",
  22581. image: {
  22582. source: "./media/characters/mort/side.svg",
  22583. extra: 365 / 318,
  22584. bottom: 0.052
  22585. },
  22586. default: true
  22587. },
  22588. back: {
  22589. height: math.unit(14, "feet"),
  22590. weight: math.unit(12000, "lb"),
  22591. name: "Back",
  22592. image: {
  22593. source: "./media/characters/mort/back.svg",
  22594. extra: 371 / 332,
  22595. bottom: 0.18
  22596. }
  22597. },
  22598. },
  22599. [
  22600. {
  22601. name: "Normal",
  22602. height: math.unit(14, "feet"),
  22603. default: true
  22604. },
  22605. ]
  22606. ))
  22607. characterMakers.push(() => makeCharacter(
  22608. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22609. {
  22610. front: {
  22611. height: math.unit(8, "feet"),
  22612. weight: math.unit(1, "ton"),
  22613. name: "Front",
  22614. image: {
  22615. source: "./media/characters/lycoa/front.svg",
  22616. extra: 1836/1728,
  22617. bottom: 81/1917
  22618. }
  22619. },
  22620. back: {
  22621. height: math.unit(8, "feet"),
  22622. weight: math.unit(1, "ton"),
  22623. name: "Back",
  22624. image: {
  22625. source: "./media/characters/lycoa/back.svg",
  22626. extra: 1785/1720,
  22627. bottom: 91/1876
  22628. }
  22629. },
  22630. head: {
  22631. height: math.unit(1.6243, "feet"),
  22632. name: "Head",
  22633. image: {
  22634. source: "./media/characters/lycoa/head.svg",
  22635. extra: 1011/782,
  22636. bottom: 0/1011
  22637. }
  22638. },
  22639. tailmaw: {
  22640. height: math.unit(1.9, "feet"),
  22641. name: "Tailmaw",
  22642. image: {
  22643. source: "./media/characters/lycoa/tailmaw.svg"
  22644. }
  22645. },
  22646. tentacles: {
  22647. height: math.unit(2.1, "feet"),
  22648. name: "Tentacles",
  22649. image: {
  22650. source: "./media/characters/lycoa/tentacles.svg"
  22651. }
  22652. },
  22653. dick: {
  22654. height: math.unit(1.73, "feet"),
  22655. name: "Dick",
  22656. image: {
  22657. source: "./media/characters/lycoa/dick.svg"
  22658. }
  22659. },
  22660. },
  22661. [
  22662. {
  22663. name: "Normal",
  22664. height: math.unit(8, "feet"),
  22665. default: true
  22666. },
  22667. {
  22668. name: "Macro",
  22669. height: math.unit(30, "feet")
  22670. },
  22671. ]
  22672. ))
  22673. characterMakers.push(() => makeCharacter(
  22674. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22675. {
  22676. front: {
  22677. height: math.unit(4 + 2 / 12, "feet"),
  22678. weight: math.unit(70, "lb"),
  22679. name: "Front",
  22680. image: {
  22681. source: "./media/characters/naldara/front.svg",
  22682. extra: 1664/1387,
  22683. bottom: 81/1745
  22684. },
  22685. form: "anthro",
  22686. default: true
  22687. },
  22688. naga: {
  22689. height: math.unit(20, "feet"),
  22690. weight: math.unit(15000, "kg"),
  22691. name: "Front",
  22692. image: {
  22693. source: "./media/characters/naldara/naga.svg",
  22694. extra: 1590/1396,
  22695. bottom: 285/1875
  22696. },
  22697. form: "naga",
  22698. default: true
  22699. },
  22700. },
  22701. [
  22702. {
  22703. name: "Normal",
  22704. height: math.unit(4 + 2 / 12, "feet"),
  22705. form: "anthro",
  22706. default: true
  22707. },
  22708. {
  22709. name: "Normal",
  22710. height: math.unit(20, "feet"),
  22711. form: "naga",
  22712. default: true
  22713. },
  22714. ],
  22715. {
  22716. "anthro": {
  22717. name: "Anthro",
  22718. default: true
  22719. },
  22720. "naga": {
  22721. name: "Naga"
  22722. }
  22723. }
  22724. ))
  22725. characterMakers.push(() => makeCharacter(
  22726. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22727. {
  22728. front: {
  22729. height: math.unit(13 + 7 / 12, "feet"),
  22730. weight: math.unit(1500, "lb"),
  22731. name: "Front",
  22732. image: {
  22733. source: "./media/characters/briar/front.svg",
  22734. extra: 1223/1157,
  22735. bottom: 123/1346
  22736. }
  22737. },
  22738. },
  22739. [
  22740. {
  22741. name: "Normal",
  22742. height: math.unit(13 + 7 / 12, "feet"),
  22743. default: true
  22744. },
  22745. ]
  22746. ))
  22747. characterMakers.push(() => makeCharacter(
  22748. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22749. {
  22750. side: {
  22751. height: math.unit(16, "feet"),
  22752. weight: math.unit(500, "lb"),
  22753. name: "Side",
  22754. image: {
  22755. source: "./media/characters/vanguard/side.svg",
  22756. extra: 1022/914,
  22757. bottom: 30/1052
  22758. }
  22759. },
  22760. sideAlt: {
  22761. height: math.unit(10, "feet"),
  22762. weight: math.unit(500, "lb"),
  22763. name: "Side (Alt)",
  22764. image: {
  22765. source: "./media/characters/vanguard/side-alt.svg",
  22766. extra: 502 / 425,
  22767. bottom: 0.087
  22768. }
  22769. },
  22770. },
  22771. [
  22772. {
  22773. name: "Normal",
  22774. height: math.unit(17.71, "feet"),
  22775. default: true
  22776. },
  22777. ]
  22778. ))
  22779. characterMakers.push(() => makeCharacter(
  22780. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22781. {
  22782. front: {
  22783. height: math.unit(7.5, "feet"),
  22784. weight: math.unit(2, "lb"),
  22785. name: "Front",
  22786. image: {
  22787. source: "./media/characters/artemis/work-safe-front.svg",
  22788. extra: 1192 / 1075,
  22789. bottom: 0.07
  22790. },
  22791. form: "work-safe",
  22792. default: true
  22793. },
  22794. frontNsfw: {
  22795. height: math.unit(7.5, "feet"),
  22796. weight: math.unit(2, "lb"),
  22797. name: "Front",
  22798. image: {
  22799. source: "./media/characters/artemis/calibrating-front.svg",
  22800. extra: 1192 / 1075,
  22801. bottom: 0.07
  22802. },
  22803. form: "calibrating",
  22804. default: true
  22805. },
  22806. frontNsfwer: {
  22807. height: math.unit(7.5, "feet"),
  22808. weight: math.unit(2, "lb"),
  22809. name: "Front",
  22810. image: {
  22811. source: "./media/characters/artemis/oversize-load-front.svg",
  22812. extra: 1192 / 1075,
  22813. bottom: 0.07
  22814. },
  22815. form: "oversize-load",
  22816. default: true
  22817. },
  22818. side: {
  22819. height: math.unit(7.5, "feet"),
  22820. weight: math.unit(2, "lb"),
  22821. name: "Side",
  22822. image: {
  22823. source: "./media/characters/artemis/work-safe-side.svg",
  22824. extra: 1192 / 1075,
  22825. bottom: 0.07
  22826. },
  22827. form: "work-safe"
  22828. },
  22829. sideNsfw: {
  22830. height: math.unit(7.5, "feet"),
  22831. weight: math.unit(2, "lb"),
  22832. name: "Side",
  22833. image: {
  22834. source: "./media/characters/artemis/calibrating-side.svg",
  22835. extra: 1192 / 1075,
  22836. bottom: 0.07
  22837. },
  22838. form: "calibrating"
  22839. },
  22840. sideNsfwer: {
  22841. height: math.unit(7.5, "feet"),
  22842. weight: math.unit(2, "lb"),
  22843. name: "Side",
  22844. image: {
  22845. source: "./media/characters/artemis/oversize-load-side.svg",
  22846. extra: 1192 / 1075,
  22847. bottom: 0.07
  22848. },
  22849. form: "oversize-load"
  22850. },
  22851. maw: {
  22852. height: math.unit(1.1, "feet"),
  22853. name: "Maw",
  22854. image: {
  22855. source: "./media/characters/artemis/maw.svg"
  22856. },
  22857. form: "work-safe"
  22858. },
  22859. stomach: {
  22860. height: math.unit(0.95, "feet"),
  22861. name: "Stomach",
  22862. image: {
  22863. source: "./media/characters/artemis/stomach.svg"
  22864. },
  22865. form: "work-safe"
  22866. },
  22867. dickCanine: {
  22868. height: math.unit(1, "feet"),
  22869. name: "Dick (Canine)",
  22870. image: {
  22871. source: "./media/characters/artemis/dick-canine.svg"
  22872. },
  22873. form: "calibrating"
  22874. },
  22875. dickEquine: {
  22876. height: math.unit(0.85, "feet"),
  22877. name: "Dick (Equine)",
  22878. image: {
  22879. source: "./media/characters/artemis/dick-equine.svg"
  22880. },
  22881. form: "calibrating"
  22882. },
  22883. dickExotic: {
  22884. height: math.unit(0.85, "feet"),
  22885. name: "Dick (Exotic)",
  22886. image: {
  22887. source: "./media/characters/artemis/dick-exotic.svg"
  22888. },
  22889. form: "calibrating"
  22890. },
  22891. dickCanineBigger: {
  22892. height: math.unit(1 * 1.33, "feet"),
  22893. name: "Dick (Canine)",
  22894. image: {
  22895. source: "./media/characters/artemis/dick-canine.svg"
  22896. },
  22897. form: "oversize-load"
  22898. },
  22899. dickEquineBigger: {
  22900. height: math.unit(0.85 * 1.33, "feet"),
  22901. name: "Dick (Equine)",
  22902. image: {
  22903. source: "./media/characters/artemis/dick-equine.svg"
  22904. },
  22905. form: "oversize-load"
  22906. },
  22907. dickExoticBigger: {
  22908. height: math.unit(0.85 * 1.33, "feet"),
  22909. name: "Dick (Exotic)",
  22910. image: {
  22911. source: "./media/characters/artemis/dick-exotic.svg"
  22912. },
  22913. form: "oversize-load"
  22914. },
  22915. },
  22916. [
  22917. {
  22918. name: "Normal",
  22919. height: math.unit(7.5, "feet"),
  22920. form: "work-safe",
  22921. default: true
  22922. },
  22923. {
  22924. name: "Normal",
  22925. height: math.unit(7.5, "feet"),
  22926. form: "calibrating",
  22927. default: true
  22928. },
  22929. {
  22930. name: "Normal",
  22931. height: math.unit(7.5, "feet"),
  22932. form: "oversize-load",
  22933. default: true
  22934. },
  22935. {
  22936. name: "Enlarged",
  22937. height: math.unit(12, "feet"),
  22938. form: "work-safe",
  22939. },
  22940. {
  22941. name: "Enlarged",
  22942. height: math.unit(12, "feet"),
  22943. form: "calibrating",
  22944. },
  22945. {
  22946. name: "Enlarged",
  22947. height: math.unit(12, "feet"),
  22948. form: "oversize-load",
  22949. },
  22950. ],
  22951. {
  22952. "work-safe": {
  22953. name: "Work-Safe",
  22954. default: true
  22955. },
  22956. "calibrating": {
  22957. name: "Calibrating"
  22958. },
  22959. "oversize-load": {
  22960. name: "Oversize Load"
  22961. }
  22962. }
  22963. ))
  22964. characterMakers.push(() => makeCharacter(
  22965. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22966. {
  22967. front: {
  22968. height: math.unit(5 + 3 / 12, "feet"),
  22969. weight: math.unit(160, "lb"),
  22970. name: "Front",
  22971. image: {
  22972. source: "./media/characters/kira/front.svg",
  22973. extra: 906 / 786,
  22974. bottom: 0.01
  22975. }
  22976. },
  22977. back: {
  22978. height: math.unit(5 + 3 / 12, "feet"),
  22979. weight: math.unit(160, "lb"),
  22980. name: "Back",
  22981. image: {
  22982. source: "./media/characters/kira/back.svg",
  22983. extra: 882 / 757,
  22984. bottom: 0.005
  22985. }
  22986. },
  22987. frontDressed: {
  22988. height: math.unit(5 + 3 / 12, "feet"),
  22989. weight: math.unit(160, "lb"),
  22990. name: "Front (Dressed)",
  22991. image: {
  22992. source: "./media/characters/kira/front-dressed.svg",
  22993. extra: 906 / 786,
  22994. bottom: 0.01
  22995. }
  22996. },
  22997. beans: {
  22998. height: math.unit(0.92, "feet"),
  22999. name: "Beans",
  23000. image: {
  23001. source: "./media/characters/kira/beans.svg"
  23002. }
  23003. },
  23004. },
  23005. [
  23006. {
  23007. name: "Normal",
  23008. height: math.unit(5 + 3 / 12, "feet"),
  23009. default: true
  23010. },
  23011. ]
  23012. ))
  23013. characterMakers.push(() => makeCharacter(
  23014. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23015. {
  23016. front: {
  23017. height: math.unit(5 + 4 / 12, "feet"),
  23018. weight: math.unit(145, "lb"),
  23019. name: "Front",
  23020. image: {
  23021. source: "./media/characters/scramble/front.svg",
  23022. extra: 763 / 727,
  23023. bottom: 0.05
  23024. }
  23025. },
  23026. back: {
  23027. height: math.unit(5 + 4 / 12, "feet"),
  23028. weight: math.unit(145, "lb"),
  23029. name: "Back",
  23030. image: {
  23031. source: "./media/characters/scramble/back.svg",
  23032. extra: 826 / 737,
  23033. bottom: 0.002
  23034. }
  23035. },
  23036. },
  23037. [
  23038. {
  23039. name: "Normal",
  23040. height: math.unit(5 + 4 / 12, "feet"),
  23041. default: true
  23042. },
  23043. ]
  23044. ))
  23045. characterMakers.push(() => makeCharacter(
  23046. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23047. {
  23048. side: {
  23049. height: math.unit(6 + 2 / 12, "feet"),
  23050. weight: math.unit(190, "lb"),
  23051. name: "Side",
  23052. image: {
  23053. source: "./media/characters/biscuit/side.svg",
  23054. extra: 858 / 791,
  23055. bottom: 0.044
  23056. }
  23057. },
  23058. },
  23059. [
  23060. {
  23061. name: "Normal",
  23062. height: math.unit(6 + 2 / 12, "feet"),
  23063. default: true
  23064. },
  23065. ]
  23066. ))
  23067. characterMakers.push(() => makeCharacter(
  23068. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23069. {
  23070. front: {
  23071. height: math.unit(5 + 2 / 12, "feet"),
  23072. weight: math.unit(120, "lb"),
  23073. name: "Front",
  23074. image: {
  23075. source: "./media/characters/poffin/front.svg",
  23076. extra: 786 / 680,
  23077. bottom: 0.005
  23078. }
  23079. },
  23080. },
  23081. [
  23082. {
  23083. name: "Normal",
  23084. height: math.unit(5 + 2 / 12, "feet"),
  23085. default: true
  23086. },
  23087. ]
  23088. ))
  23089. characterMakers.push(() => makeCharacter(
  23090. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23091. {
  23092. front: {
  23093. height: math.unit(6 + 3 / 12, "feet"),
  23094. weight: math.unit(519, "lb"),
  23095. name: "Front",
  23096. image: {
  23097. source: "./media/characters/dhari/front.svg",
  23098. extra: 1048 / 946,
  23099. bottom: 0.015
  23100. }
  23101. },
  23102. back: {
  23103. height: math.unit(6 + 3 / 12, "feet"),
  23104. weight: math.unit(519, "lb"),
  23105. name: "Back",
  23106. image: {
  23107. source: "./media/characters/dhari/back.svg",
  23108. extra: 1048 / 931,
  23109. bottom: 0.005
  23110. }
  23111. },
  23112. frontDressed: {
  23113. height: math.unit(6 + 3 / 12, "feet"),
  23114. weight: math.unit(519, "lb"),
  23115. name: "Front (Dressed)",
  23116. image: {
  23117. source: "./media/characters/dhari/front-dressed.svg",
  23118. extra: 1713 / 1546,
  23119. bottom: 0.02
  23120. }
  23121. },
  23122. backDressed: {
  23123. height: math.unit(6 + 3 / 12, "feet"),
  23124. weight: math.unit(519, "lb"),
  23125. name: "Back (Dressed)",
  23126. image: {
  23127. source: "./media/characters/dhari/back-dressed.svg",
  23128. extra: 1699 / 1537,
  23129. bottom: 0.01
  23130. }
  23131. },
  23132. maw: {
  23133. height: math.unit(0.95, "feet"),
  23134. name: "Maw",
  23135. image: {
  23136. source: "./media/characters/dhari/maw.svg"
  23137. }
  23138. },
  23139. wereFront: {
  23140. height: math.unit(12 + 8 / 12, "feet"),
  23141. weight: math.unit(4000, "lb"),
  23142. name: "Front (Were)",
  23143. image: {
  23144. source: "./media/characters/dhari/were-front.svg",
  23145. extra: 1065 / 969,
  23146. bottom: 0.015
  23147. }
  23148. },
  23149. wereBack: {
  23150. height: math.unit(12 + 8 / 12, "feet"),
  23151. weight: math.unit(4000, "lb"),
  23152. name: "Back (Were)",
  23153. image: {
  23154. source: "./media/characters/dhari/were-back.svg",
  23155. extra: 1065 / 969,
  23156. bottom: 0.012
  23157. }
  23158. },
  23159. wereMaw: {
  23160. height: math.unit(0.625, "meters"),
  23161. name: "Maw (Were)",
  23162. image: {
  23163. source: "./media/characters/dhari/were-maw.svg"
  23164. }
  23165. },
  23166. },
  23167. [
  23168. {
  23169. name: "Normal",
  23170. height: math.unit(6 + 3 / 12, "feet"),
  23171. default: true
  23172. },
  23173. ]
  23174. ))
  23175. characterMakers.push(() => makeCharacter(
  23176. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23177. {
  23178. anthro: {
  23179. height: math.unit(5 + 7 / 12, "feet"),
  23180. weight: math.unit(175, "lb"),
  23181. name: "Anthro",
  23182. image: {
  23183. source: "./media/characters/rena-dyne/anthro.svg",
  23184. extra: 1849 / 1785,
  23185. bottom: 0.005
  23186. }
  23187. },
  23188. taur: {
  23189. height: math.unit(15 + 6 / 12, "feet"),
  23190. weight: math.unit(8000, "lb"),
  23191. name: "Taur",
  23192. image: {
  23193. source: "./media/characters/rena-dyne/taur.svg",
  23194. extra: 2315 / 2234,
  23195. bottom: 0.033
  23196. }
  23197. },
  23198. },
  23199. [
  23200. {
  23201. name: "Normal",
  23202. height: math.unit(5 + 7 / 12, "feet"),
  23203. default: true
  23204. },
  23205. ]
  23206. ))
  23207. characterMakers.push(() => makeCharacter(
  23208. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23209. {
  23210. front: {
  23211. height: math.unit(8, "feet"),
  23212. weight: math.unit(600, "lb"),
  23213. name: "Front",
  23214. image: {
  23215. source: "./media/characters/weremeep/front.svg",
  23216. extra: 970/849,
  23217. bottom: 7/977
  23218. }
  23219. },
  23220. },
  23221. [
  23222. {
  23223. name: "Normal",
  23224. height: math.unit(8, "feet"),
  23225. default: true
  23226. },
  23227. {
  23228. name: "Lorg",
  23229. height: math.unit(12, "feet")
  23230. },
  23231. {
  23232. name: "Oh Lawd She Comin'",
  23233. height: math.unit(20, "feet")
  23234. },
  23235. ]
  23236. ))
  23237. characterMakers.push(() => makeCharacter(
  23238. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23239. {
  23240. front: {
  23241. height: math.unit(4, "feet"),
  23242. weight: math.unit(90, "lb"),
  23243. name: "Front",
  23244. image: {
  23245. source: "./media/characters/reza/front.svg",
  23246. extra: 1183 / 1111,
  23247. bottom: 0.017
  23248. }
  23249. },
  23250. back: {
  23251. height: math.unit(4, "feet"),
  23252. weight: math.unit(90, "lb"),
  23253. name: "Back",
  23254. image: {
  23255. source: "./media/characters/reza/back.svg",
  23256. extra: 1183 / 1111,
  23257. bottom: 0.01
  23258. }
  23259. },
  23260. drake: {
  23261. height: math.unit(30, "feet"),
  23262. weight: math.unit(246960, "lb"),
  23263. name: "Drake",
  23264. image: {
  23265. source: "./media/characters/reza/drake.svg",
  23266. extra: 2350 / 2024,
  23267. bottom: 60.7 / 2403
  23268. }
  23269. },
  23270. },
  23271. [
  23272. {
  23273. name: "Normal",
  23274. height: math.unit(4, "feet"),
  23275. default: true
  23276. },
  23277. ]
  23278. ))
  23279. characterMakers.push(() => makeCharacter(
  23280. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23281. {
  23282. side: {
  23283. height: math.unit(15, "feet"),
  23284. weight: math.unit(14, "tons"),
  23285. name: "Side",
  23286. image: {
  23287. source: "./media/characters/athea/side.svg",
  23288. extra: 960 / 540,
  23289. bottom: 0.003
  23290. }
  23291. },
  23292. sitting: {
  23293. height: math.unit(6 * 2.85, "feet"),
  23294. weight: math.unit(14, "tons"),
  23295. name: "Sitting",
  23296. image: {
  23297. source: "./media/characters/athea/sitting.svg",
  23298. extra: 621 / 581,
  23299. bottom: 0.075
  23300. }
  23301. },
  23302. maw: {
  23303. height: math.unit(7.59498031496063, "feet"),
  23304. name: "Maw",
  23305. image: {
  23306. source: "./media/characters/athea/maw.svg"
  23307. }
  23308. },
  23309. },
  23310. [
  23311. {
  23312. name: "Lap Cat",
  23313. height: math.unit(2.5, "feet")
  23314. },
  23315. {
  23316. name: "Minimacro",
  23317. height: math.unit(15, "feet"),
  23318. default: true
  23319. },
  23320. {
  23321. name: "Macro",
  23322. height: math.unit(120, "feet")
  23323. },
  23324. {
  23325. name: "Macro+",
  23326. height: math.unit(640, "feet")
  23327. },
  23328. {
  23329. name: "Colossus",
  23330. height: math.unit(2.2, "miles")
  23331. },
  23332. ]
  23333. ))
  23334. characterMakers.push(() => makeCharacter(
  23335. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23336. {
  23337. front: {
  23338. height: math.unit(8 + 8 / 12, "feet"),
  23339. weight: math.unit(130, "kg"),
  23340. name: "Front",
  23341. image: {
  23342. source: "./media/characters/seroko/front.svg",
  23343. extra: 1385 / 1280,
  23344. bottom: 0.025
  23345. }
  23346. },
  23347. back: {
  23348. height: math.unit(8 + 8 / 12, "feet"),
  23349. weight: math.unit(130, "kg"),
  23350. name: "Back",
  23351. image: {
  23352. source: "./media/characters/seroko/back.svg",
  23353. extra: 1369 / 1238,
  23354. bottom: 0.018
  23355. }
  23356. },
  23357. frontDressed: {
  23358. height: math.unit(8 + 8 / 12, "feet"),
  23359. weight: math.unit(130, "kg"),
  23360. name: "Front (Dressed)",
  23361. image: {
  23362. source: "./media/characters/seroko/front-dressed.svg",
  23363. extra: 1366 / 1275,
  23364. bottom: 0.03
  23365. }
  23366. },
  23367. },
  23368. [
  23369. {
  23370. name: "Normal",
  23371. height: math.unit(8 + 8 / 12, "feet"),
  23372. default: true
  23373. },
  23374. ]
  23375. ))
  23376. characterMakers.push(() => makeCharacter(
  23377. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23378. {
  23379. front: {
  23380. height: math.unit(5.5, "feet"),
  23381. weight: math.unit(160, "lb"),
  23382. name: "Front",
  23383. image: {
  23384. source: "./media/characters/quatzi/front.svg",
  23385. extra: 2346 / 2242,
  23386. bottom: 0.015
  23387. }
  23388. },
  23389. },
  23390. [
  23391. {
  23392. name: "Normal",
  23393. height: math.unit(5.5, "feet"),
  23394. default: true
  23395. },
  23396. {
  23397. name: "Big",
  23398. height: math.unit(7.7, "feet")
  23399. },
  23400. ]
  23401. ))
  23402. characterMakers.push(() => makeCharacter(
  23403. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23404. {
  23405. front: {
  23406. height: math.unit(5 + 11 / 12, "feet"),
  23407. weight: math.unit(180, "lb"),
  23408. name: "Front",
  23409. image: {
  23410. source: "./media/characters/sen/front.svg",
  23411. extra: 1321 / 1254,
  23412. bottom: 0.015
  23413. }
  23414. },
  23415. side: {
  23416. height: math.unit(5 + 11 / 12, "feet"),
  23417. weight: math.unit(180, "lb"),
  23418. name: "Side",
  23419. image: {
  23420. source: "./media/characters/sen/side.svg",
  23421. extra: 1321 / 1254,
  23422. bottom: 0.007
  23423. }
  23424. },
  23425. back: {
  23426. height: math.unit(5 + 11 / 12, "feet"),
  23427. weight: math.unit(180, "lb"),
  23428. name: "Back",
  23429. image: {
  23430. source: "./media/characters/sen/back.svg",
  23431. extra: 1321 / 1254
  23432. }
  23433. },
  23434. },
  23435. [
  23436. {
  23437. name: "Normal",
  23438. height: math.unit(5 + 11 / 12, "feet"),
  23439. default: true
  23440. },
  23441. ]
  23442. ))
  23443. characterMakers.push(() => makeCharacter(
  23444. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23445. {
  23446. front: {
  23447. height: math.unit(166.6, "cm"),
  23448. weight: math.unit(66.6, "kg"),
  23449. name: "Front",
  23450. image: {
  23451. source: "./media/characters/fruity/front.svg",
  23452. extra: 1510 / 1386,
  23453. bottom: 0.04
  23454. }
  23455. },
  23456. back: {
  23457. height: math.unit(166.6, "cm"),
  23458. weight: math.unit(66.6, "lb"),
  23459. name: "Back",
  23460. image: {
  23461. source: "./media/characters/fruity/back.svg",
  23462. extra: 1563 / 1435,
  23463. bottom: 0.005
  23464. }
  23465. },
  23466. },
  23467. [
  23468. {
  23469. name: "Normal",
  23470. height: math.unit(166.6, "cm"),
  23471. default: true
  23472. },
  23473. {
  23474. name: "Demonic",
  23475. height: math.unit(166.6, "feet")
  23476. },
  23477. ]
  23478. ))
  23479. characterMakers.push(() => makeCharacter(
  23480. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23481. {
  23482. side: {
  23483. height: math.unit(10, "feet"),
  23484. weight: math.unit(500, "lb"),
  23485. name: "Side",
  23486. image: {
  23487. source: "./media/characters/zost/side.svg",
  23488. extra: 2870/2533,
  23489. bottom: 252/3122
  23490. }
  23491. },
  23492. mawFront: {
  23493. height: math.unit(1.08, "meters"),
  23494. name: "Maw (Front)",
  23495. image: {
  23496. source: "./media/characters/zost/maw-front.svg"
  23497. }
  23498. },
  23499. mawSide: {
  23500. height: math.unit(2.66, "feet"),
  23501. name: "Maw (Side)",
  23502. image: {
  23503. source: "./media/characters/zost/maw-side.svg"
  23504. }
  23505. },
  23506. wingspan: {
  23507. height: math.unit(7.4, "feet"),
  23508. name: "Wingspan",
  23509. image: {
  23510. source: "./media/characters/zost/wingspan.svg"
  23511. }
  23512. },
  23513. },
  23514. [
  23515. {
  23516. name: "Normal",
  23517. height: math.unit(10, "feet"),
  23518. default: true
  23519. },
  23520. ]
  23521. ))
  23522. characterMakers.push(() => makeCharacter(
  23523. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23524. {
  23525. front: {
  23526. height: math.unit(5 + 4 / 12, "feet"),
  23527. weight: math.unit(120, "lb"),
  23528. name: "Front",
  23529. image: {
  23530. source: "./media/characters/luci/front.svg",
  23531. extra: 1985 / 1884,
  23532. bottom: 0.04
  23533. }
  23534. },
  23535. back: {
  23536. height: math.unit(5 + 4 / 12, "feet"),
  23537. weight: math.unit(120, "lb"),
  23538. name: "Back",
  23539. image: {
  23540. source: "./media/characters/luci/back.svg",
  23541. extra: 1892 / 1791,
  23542. bottom: 0.002
  23543. }
  23544. },
  23545. },
  23546. [
  23547. {
  23548. name: "Normal",
  23549. height: math.unit(5 + 4 / 12, "feet"),
  23550. default: true
  23551. },
  23552. ]
  23553. ))
  23554. characterMakers.push(() => makeCharacter(
  23555. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23556. {
  23557. front: {
  23558. height: math.unit(1500, "feet"),
  23559. weight: math.unit(3.8e6, "tons"),
  23560. name: "Front",
  23561. image: {
  23562. source: "./media/characters/2th/front.svg",
  23563. extra: 3489 / 3350,
  23564. bottom: 0.1
  23565. }
  23566. },
  23567. foot: {
  23568. height: math.unit(461, "feet"),
  23569. name: "Foot",
  23570. image: {
  23571. source: "./media/characters/2th/foot.svg"
  23572. }
  23573. },
  23574. },
  23575. [
  23576. {
  23577. name: "\"Micro\"",
  23578. height: math.unit(15 + 7 / 12, "feet")
  23579. },
  23580. {
  23581. name: "Normal",
  23582. height: math.unit(1500, "feet"),
  23583. default: true
  23584. },
  23585. {
  23586. name: "Macro",
  23587. height: math.unit(5000, "feet")
  23588. },
  23589. {
  23590. name: "Megamacro",
  23591. height: math.unit(15, "miles")
  23592. },
  23593. {
  23594. name: "Gigamacro",
  23595. height: math.unit(4000, "miles")
  23596. },
  23597. {
  23598. name: "Galactic",
  23599. height: math.unit(50, "AU")
  23600. },
  23601. ]
  23602. ))
  23603. characterMakers.push(() => makeCharacter(
  23604. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23605. {
  23606. front: {
  23607. height: math.unit(5 + 6 / 12, "feet"),
  23608. weight: math.unit(220, "lb"),
  23609. name: "Front",
  23610. image: {
  23611. source: "./media/characters/amethyst/front.svg",
  23612. extra: 2078 / 2040,
  23613. bottom: 0.045
  23614. }
  23615. },
  23616. back: {
  23617. height: math.unit(5 + 6 / 12, "feet"),
  23618. weight: math.unit(220, "lb"),
  23619. name: "Back",
  23620. image: {
  23621. source: "./media/characters/amethyst/back.svg",
  23622. extra: 2021 / 1989,
  23623. bottom: 0.02
  23624. }
  23625. },
  23626. },
  23627. [
  23628. {
  23629. name: "Normal",
  23630. height: math.unit(5 + 6 / 12, "feet"),
  23631. default: true
  23632. },
  23633. ]
  23634. ))
  23635. characterMakers.push(() => makeCharacter(
  23636. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23637. {
  23638. front: {
  23639. height: math.unit(4 + 11 / 12, "feet"),
  23640. weight: math.unit(120, "lb"),
  23641. name: "Front",
  23642. image: {
  23643. source: "./media/characters/yumi-akiyama/front.svg",
  23644. extra: 1327 / 1235,
  23645. bottom: 0.02
  23646. }
  23647. },
  23648. back: {
  23649. height: math.unit(4 + 11 / 12, "feet"),
  23650. weight: math.unit(120, "lb"),
  23651. name: "Back",
  23652. image: {
  23653. source: "./media/characters/yumi-akiyama/back.svg",
  23654. extra: 1287 / 1245,
  23655. bottom: 0.002
  23656. }
  23657. },
  23658. },
  23659. [
  23660. {
  23661. name: "Galactic",
  23662. height: math.unit(50, "galaxies"),
  23663. default: true
  23664. },
  23665. {
  23666. name: "Universal",
  23667. height: math.unit(100, "universes")
  23668. },
  23669. ]
  23670. ))
  23671. characterMakers.push(() => makeCharacter(
  23672. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23673. {
  23674. front: {
  23675. height: math.unit(8, "feet"),
  23676. weight: math.unit(500, "lb"),
  23677. name: "Front",
  23678. image: {
  23679. source: "./media/characters/rifter-yrmori/front.svg",
  23680. extra: 1180 / 1125,
  23681. bottom: 0.02
  23682. }
  23683. },
  23684. back: {
  23685. height: math.unit(8, "feet"),
  23686. weight: math.unit(500, "lb"),
  23687. name: "Back",
  23688. image: {
  23689. source: "./media/characters/rifter-yrmori/back.svg",
  23690. extra: 1190 / 1145,
  23691. bottom: 0.001
  23692. }
  23693. },
  23694. wings: {
  23695. height: math.unit(7.75, "feet"),
  23696. weight: math.unit(500, "lb"),
  23697. name: "Wings",
  23698. image: {
  23699. source: "./media/characters/rifter-yrmori/wings.svg",
  23700. extra: 1357 / 1285
  23701. }
  23702. },
  23703. maw: {
  23704. height: math.unit(0.8, "feet"),
  23705. name: "Maw",
  23706. image: {
  23707. source: "./media/characters/rifter-yrmori/maw.svg"
  23708. }
  23709. },
  23710. mawfront: {
  23711. height: math.unit(1.45, "feet"),
  23712. name: "Maw (Front)",
  23713. image: {
  23714. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23715. }
  23716. },
  23717. },
  23718. [
  23719. {
  23720. name: "Normal",
  23721. height: math.unit(8, "feet"),
  23722. default: true
  23723. },
  23724. {
  23725. name: "Macro",
  23726. height: math.unit(42, "meters")
  23727. },
  23728. ]
  23729. ))
  23730. characterMakers.push(() => makeCharacter(
  23731. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23732. {
  23733. were: {
  23734. height: math.unit(25 + 6 / 12, "feet"),
  23735. weight: math.unit(10000, "lb"),
  23736. name: "Were",
  23737. image: {
  23738. source: "./media/characters/tahajin/were.svg",
  23739. extra: 801 / 770,
  23740. bottom: 0.042
  23741. }
  23742. },
  23743. aquatic: {
  23744. height: math.unit(6 + 4 / 12, "feet"),
  23745. weight: math.unit(160, "lb"),
  23746. name: "Aquatic",
  23747. image: {
  23748. source: "./media/characters/tahajin/aquatic.svg",
  23749. extra: 572 / 542,
  23750. bottom: 0.04
  23751. }
  23752. },
  23753. chow: {
  23754. height: math.unit(8 + 11 / 12, "feet"),
  23755. weight: math.unit(450, "lb"),
  23756. name: "Chow",
  23757. image: {
  23758. source: "./media/characters/tahajin/chow.svg",
  23759. extra: 660 / 640,
  23760. bottom: 0.015
  23761. }
  23762. },
  23763. demiNaga: {
  23764. height: math.unit(6 + 8 / 12, "feet"),
  23765. weight: math.unit(300, "lb"),
  23766. name: "Demi Naga",
  23767. image: {
  23768. source: "./media/characters/tahajin/demi-naga.svg",
  23769. extra: 643 / 615,
  23770. bottom: 0.1
  23771. }
  23772. },
  23773. data: {
  23774. height: math.unit(5, "inches"),
  23775. weight: math.unit(0.1, "lb"),
  23776. name: "Data",
  23777. image: {
  23778. source: "./media/characters/tahajin/data.svg"
  23779. }
  23780. },
  23781. fluu: {
  23782. height: math.unit(5 + 7 / 12, "feet"),
  23783. weight: math.unit(140, "lb"),
  23784. name: "Fluu",
  23785. image: {
  23786. source: "./media/characters/tahajin/fluu.svg",
  23787. extra: 628 / 592,
  23788. bottom: 0.02
  23789. }
  23790. },
  23791. starWarrior: {
  23792. height: math.unit(4 + 5 / 12, "feet"),
  23793. weight: math.unit(50, "lb"),
  23794. name: "Star Warrior",
  23795. image: {
  23796. source: "./media/characters/tahajin/star-warrior.svg"
  23797. }
  23798. },
  23799. },
  23800. [
  23801. {
  23802. name: "Normal",
  23803. height: math.unit(25 + 6 / 12, "feet"),
  23804. default: true
  23805. },
  23806. ]
  23807. ))
  23808. characterMakers.push(() => makeCharacter(
  23809. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23810. {
  23811. front: {
  23812. height: math.unit(8, "feet"),
  23813. weight: math.unit(350, "lb"),
  23814. name: "Front",
  23815. image: {
  23816. source: "./media/characters/gabira/front.svg",
  23817. extra: 1261/1154,
  23818. bottom: 51/1312
  23819. }
  23820. },
  23821. back: {
  23822. height: math.unit(8, "feet"),
  23823. weight: math.unit(350, "lb"),
  23824. name: "Back",
  23825. image: {
  23826. source: "./media/characters/gabira/back.svg",
  23827. extra: 1265/1163,
  23828. bottom: 46/1311
  23829. }
  23830. },
  23831. head: {
  23832. height: math.unit(2.85, "feet"),
  23833. name: "Head",
  23834. image: {
  23835. source: "./media/characters/gabira/head.svg"
  23836. }
  23837. },
  23838. },
  23839. [
  23840. {
  23841. name: "Normal",
  23842. height: math.unit(8, "feet"),
  23843. default: true
  23844. },
  23845. ]
  23846. ))
  23847. characterMakers.push(() => makeCharacter(
  23848. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23849. {
  23850. front: {
  23851. height: math.unit(5 + 3 / 12, "feet"),
  23852. weight: math.unit(137, "lb"),
  23853. name: "Front",
  23854. image: {
  23855. source: "./media/characters/sasha-katraine/front.svg",
  23856. extra: 1745/1694,
  23857. bottom: 37/1782
  23858. }
  23859. },
  23860. back: {
  23861. height: math.unit(5 + 3 / 12, "feet"),
  23862. weight: math.unit(137, "lb"),
  23863. name: "Back",
  23864. image: {
  23865. source: "./media/characters/sasha-katraine/back.svg",
  23866. extra: 1776/1699,
  23867. bottom: 26/1802
  23868. }
  23869. },
  23870. },
  23871. [
  23872. {
  23873. name: "Micro",
  23874. height: math.unit(5, "inches")
  23875. },
  23876. {
  23877. name: "Normal",
  23878. height: math.unit(5 + 3 / 12, "feet"),
  23879. default: true
  23880. },
  23881. ]
  23882. ))
  23883. characterMakers.push(() => makeCharacter(
  23884. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23885. {
  23886. side: {
  23887. height: math.unit(4, "inches"),
  23888. weight: math.unit(200, "grams"),
  23889. name: "Side",
  23890. image: {
  23891. source: "./media/characters/der/side.svg",
  23892. extra: 719 / 400,
  23893. bottom: 30.6 / 749.9187
  23894. }
  23895. },
  23896. },
  23897. [
  23898. {
  23899. name: "Micro",
  23900. height: math.unit(4, "inches"),
  23901. default: true
  23902. },
  23903. ]
  23904. ))
  23905. characterMakers.push(() => makeCharacter(
  23906. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23907. {
  23908. side: {
  23909. height: math.unit(30, "meters"),
  23910. weight: math.unit(700, "tonnes"),
  23911. name: "Side",
  23912. image: {
  23913. source: "./media/characters/fixerdragon/side.svg",
  23914. extra: (1293.0514 - 116.03) / 1106.86,
  23915. bottom: 116.03 / 1293.0514
  23916. }
  23917. },
  23918. },
  23919. [
  23920. {
  23921. name: "Planck",
  23922. height: math.unit(1.6e-35, "meters")
  23923. },
  23924. {
  23925. name: "Micro",
  23926. height: math.unit(0.4, "meters")
  23927. },
  23928. {
  23929. name: "Normal",
  23930. height: math.unit(30, "meters"),
  23931. default: true
  23932. },
  23933. {
  23934. name: "Megamacro",
  23935. height: math.unit(1.2, "megameters")
  23936. },
  23937. {
  23938. name: "Teramacro",
  23939. height: math.unit(130, "terameters")
  23940. },
  23941. {
  23942. name: "Yottamacro",
  23943. height: math.unit(6200, "yottameters")
  23944. },
  23945. ]
  23946. ));
  23947. characterMakers.push(() => makeCharacter(
  23948. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23949. {
  23950. front: {
  23951. height: math.unit(8, "feet"),
  23952. weight: math.unit(250, "lb"),
  23953. name: "Front",
  23954. image: {
  23955. source: "./media/characters/kite/front.svg",
  23956. extra: 2796 / 2659,
  23957. bottom: 0.002
  23958. }
  23959. },
  23960. },
  23961. [
  23962. {
  23963. name: "Normal",
  23964. height: math.unit(8, "feet"),
  23965. default: true
  23966. },
  23967. {
  23968. name: "Macro",
  23969. height: math.unit(360, "feet")
  23970. },
  23971. {
  23972. name: "Megamacro",
  23973. height: math.unit(1500, "feet")
  23974. },
  23975. ]
  23976. ))
  23977. characterMakers.push(() => makeCharacter(
  23978. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23979. {
  23980. anthro_front: {
  23981. height: math.unit(5 + 11/12, "feet"),
  23982. weight: math.unit(170, "lb"),
  23983. name: "Front",
  23984. image: {
  23985. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23986. extra: 1735/1585,
  23987. bottom: 96/1831
  23988. },
  23989. form: "anthro",
  23990. default: true
  23991. },
  23992. anthro_back: {
  23993. height: math.unit(5 + 11/12, "feet"),
  23994. weight: math.unit(170, "lb"),
  23995. name: "Back",
  23996. image: {
  23997. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23998. extra: 1749/1607,
  23999. bottom: 28/1777
  24000. },
  24001. form: "anthro"
  24002. },
  24003. anthro_male: {
  24004. height: math.unit(5 + 11/12, "feet"),
  24005. weight: math.unit(170, "lb"),
  24006. name: "Male",
  24007. image: {
  24008. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24009. extra: 1855/1713,
  24010. bottom: 63/1918
  24011. },
  24012. form: "anthro"
  24013. },
  24014. taur_front: {
  24015. height: math.unit(5 + 7/12, "feet"),
  24016. weight: math.unit(170, "lb"),
  24017. name: "Front",
  24018. image: {
  24019. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24020. extra: 1151/1059,
  24021. bottom: 356/1507
  24022. },
  24023. form: "taur",
  24024. default: true
  24025. },
  24026. anthro_frontDressed: {
  24027. height: math.unit(5 + 11/12, "feet"),
  24028. weight: math.unit(170, "lb"),
  24029. name: "Front (Dressed)",
  24030. image: {
  24031. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24032. extra: 1735/1585,
  24033. bottom: 96/1831
  24034. },
  24035. form: "anthro"
  24036. },
  24037. anthro_backDressed: {
  24038. height: math.unit(5 + 11/12, "feet"),
  24039. weight: math.unit(170, "lb"),
  24040. name: "Back (Dressed)",
  24041. image: {
  24042. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24043. extra: 1749/1607,
  24044. bottom: 28/1777
  24045. },
  24046. form: "anthro"
  24047. },
  24048. anthro_maleDressed: {
  24049. height: math.unit(5 + 11/12, "feet"),
  24050. weight: math.unit(170, "lb"),
  24051. name: "Male (Dressed)",
  24052. image: {
  24053. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24054. extra: 1855/1713,
  24055. bottom: 63/1918
  24056. },
  24057. form: "anthro"
  24058. },
  24059. taur_frontDressed: {
  24060. height: math.unit(5 + 7/12, "feet"),
  24061. weight: math.unit(170, "lb"),
  24062. name: "Front (Dressed)",
  24063. image: {
  24064. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24065. extra: 1151/1059,
  24066. bottom: 356/1507
  24067. },
  24068. form: "taur"
  24069. },
  24070. maw: {
  24071. height: math.unit(1.46, "feet"),
  24072. name: "Maw",
  24073. image: {
  24074. source: "./media/characters/poojawa-vynar/maw.svg"
  24075. },
  24076. allForms: true
  24077. },
  24078. head: {
  24079. height: math.unit(2.34, "feet"),
  24080. name: "Head",
  24081. image: {
  24082. source: "./media/characters/poojawa-vynar/head.svg"
  24083. },
  24084. allForms: true
  24085. },
  24086. leftPaw: {
  24087. height: math.unit(1.72, "feet"),
  24088. name: "Left Paw",
  24089. image: {
  24090. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24091. },
  24092. allForms: true
  24093. },
  24094. rightPaw: {
  24095. height: math.unit(1.61, "feet"),
  24096. name: "Right Paw",
  24097. image: {
  24098. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24099. },
  24100. allForms: true
  24101. },
  24102. toering: {
  24103. height: math.unit(2.9, "inches"),
  24104. name: "Toering",
  24105. image: {
  24106. source: "./media/characters/poojawa-vynar/toering.svg"
  24107. },
  24108. allForms: true
  24109. },
  24110. shaft: {
  24111. height: math.unit(0.625, "feet"),
  24112. name: "Shaft",
  24113. image: {
  24114. source: "./media/characters/poojawa-vynar/shaft.svg"
  24115. },
  24116. allForms: true
  24117. },
  24118. spade: {
  24119. height: math.unit(0.42, "feet"),
  24120. name: "Spade",
  24121. image: {
  24122. source: "./media/characters/poojawa-vynar/spade.svg"
  24123. },
  24124. allForms: true
  24125. },
  24126. },
  24127. [
  24128. {
  24129. name: "Shortstack",
  24130. height: math.unit(4, "feet"),
  24131. form: "anthro"
  24132. },
  24133. {
  24134. name: "Normal",
  24135. height: math.unit(5 + 11 / 12, "feet"),
  24136. form: "anthro",
  24137. default: true
  24138. },
  24139. {
  24140. name: "Tauric",
  24141. height: math.unit(4, "meters"),
  24142. form: "taur",
  24143. default: true
  24144. },
  24145. ],
  24146. {
  24147. "anthro": {
  24148. name: "Anthro",
  24149. default: true
  24150. },
  24151. "taur": {
  24152. name: "Taur",
  24153. },
  24154. }
  24155. ))
  24156. characterMakers.push(() => makeCharacter(
  24157. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24158. {
  24159. front: {
  24160. height: math.unit(293, "meters"),
  24161. weight: math.unit(70400, "tons"),
  24162. name: "Front",
  24163. image: {
  24164. source: "./media/characters/violette/front.svg",
  24165. extra: 1227 / 1180,
  24166. bottom: 0.005
  24167. }
  24168. },
  24169. back: {
  24170. height: math.unit(293, "meters"),
  24171. weight: math.unit(70400, "tons"),
  24172. name: "Back",
  24173. image: {
  24174. source: "./media/characters/violette/back.svg",
  24175. extra: 1227 / 1180,
  24176. bottom: 0.005
  24177. }
  24178. },
  24179. },
  24180. [
  24181. {
  24182. name: "Macro",
  24183. height: math.unit(293, "meters"),
  24184. default: true
  24185. },
  24186. ]
  24187. ))
  24188. characterMakers.push(() => makeCharacter(
  24189. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24190. {
  24191. front: {
  24192. height: math.unit(1050, "feet"),
  24193. weight: math.unit(200000, "tons"),
  24194. name: "Front",
  24195. image: {
  24196. source: "./media/characters/alessandra/front.svg",
  24197. extra: 960 / 912,
  24198. bottom: 0.06
  24199. }
  24200. },
  24201. },
  24202. [
  24203. {
  24204. name: "Macro",
  24205. height: math.unit(1050, "feet")
  24206. },
  24207. {
  24208. name: "Macro+",
  24209. height: math.unit(900, "meters"),
  24210. default: true
  24211. },
  24212. ]
  24213. ))
  24214. characterMakers.push(() => makeCharacter(
  24215. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24216. {
  24217. front: {
  24218. height: math.unit(5, "feet"),
  24219. weight: math.unit(187, "lb"),
  24220. name: "Front",
  24221. image: {
  24222. source: "./media/characters/person/front.svg",
  24223. extra: 3087 / 2945,
  24224. bottom: 91 / 3181
  24225. }
  24226. },
  24227. },
  24228. [
  24229. {
  24230. name: "Micro",
  24231. height: math.unit(3, "inches")
  24232. },
  24233. {
  24234. name: "Normal",
  24235. height: math.unit(5, "feet"),
  24236. default: true
  24237. },
  24238. {
  24239. name: "Macro",
  24240. height: math.unit(90, "feet")
  24241. },
  24242. {
  24243. name: "Max Size",
  24244. height: math.unit(280, "feet")
  24245. },
  24246. ]
  24247. ))
  24248. characterMakers.push(() => makeCharacter(
  24249. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24250. {
  24251. front: {
  24252. height: math.unit(4.5, "meters"),
  24253. weight: math.unit(3200, "lb"),
  24254. name: "Front",
  24255. image: {
  24256. source: "./media/characters/ty/front.svg",
  24257. extra: 1038 / 960,
  24258. bottom: 31.156 / 1068
  24259. }
  24260. },
  24261. back: {
  24262. height: math.unit(4.5, "meters"),
  24263. weight: math.unit(3200, "lb"),
  24264. name: "Back",
  24265. image: {
  24266. source: "./media/characters/ty/back.svg",
  24267. extra: 1044 / 966,
  24268. bottom: 7.48 / 1049
  24269. }
  24270. },
  24271. },
  24272. [
  24273. {
  24274. name: "Normal",
  24275. height: math.unit(4.5, "meters"),
  24276. default: true
  24277. },
  24278. ]
  24279. ))
  24280. characterMakers.push(() => makeCharacter(
  24281. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24282. {
  24283. front: {
  24284. height: math.unit(5 + 4 / 12, "feet"),
  24285. weight: math.unit(115, "lb"),
  24286. name: "Front",
  24287. image: {
  24288. source: "./media/characters/rocky/front.svg",
  24289. extra: 1012 / 975,
  24290. bottom: 54 / 1066
  24291. }
  24292. },
  24293. },
  24294. [
  24295. {
  24296. name: "Normal",
  24297. height: math.unit(5 + 4 / 12, "feet"),
  24298. default: true
  24299. },
  24300. ]
  24301. ))
  24302. characterMakers.push(() => makeCharacter(
  24303. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24304. {
  24305. upright: {
  24306. height: math.unit(6, "meters"),
  24307. weight: math.unit(4000, "kg"),
  24308. name: "Upright",
  24309. image: {
  24310. source: "./media/characters/ruin/upright.svg",
  24311. extra: 668 / 661,
  24312. bottom: 42 / 799.8396
  24313. }
  24314. },
  24315. },
  24316. [
  24317. {
  24318. name: "Normal",
  24319. height: math.unit(6, "meters"),
  24320. default: true
  24321. },
  24322. ]
  24323. ))
  24324. characterMakers.push(() => makeCharacter(
  24325. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24326. {
  24327. front: {
  24328. height: math.unit(5, "feet"),
  24329. weight: math.unit(106, "lb"),
  24330. name: "Front",
  24331. image: {
  24332. source: "./media/characters/robin/front.svg",
  24333. extra: 862 / 799,
  24334. bottom: 42.4 / 914.8856
  24335. }
  24336. },
  24337. },
  24338. [
  24339. {
  24340. name: "Normal",
  24341. height: math.unit(5, "feet"),
  24342. default: true
  24343. },
  24344. ]
  24345. ))
  24346. characterMakers.push(() => makeCharacter(
  24347. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24348. {
  24349. side: {
  24350. height: math.unit(3, "feet"),
  24351. weight: math.unit(225, "lb"),
  24352. name: "Side",
  24353. image: {
  24354. source: "./media/characters/saian/side.svg",
  24355. extra: 566 / 356,
  24356. bottom: 79.7 / 643
  24357. }
  24358. },
  24359. maw: {
  24360. height: math.unit(2.85, "feet"),
  24361. name: "Maw",
  24362. image: {
  24363. source: "./media/characters/saian/maw.svg"
  24364. }
  24365. },
  24366. },
  24367. [
  24368. {
  24369. name: "Normal",
  24370. height: math.unit(3, "feet"),
  24371. default: true
  24372. },
  24373. ]
  24374. ))
  24375. characterMakers.push(() => makeCharacter(
  24376. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24377. {
  24378. side: {
  24379. height: math.unit(8, "feet"),
  24380. weight: math.unit(300, "lb"),
  24381. name: "Side",
  24382. image: {
  24383. source: "./media/characters/equus-silvermane/side.svg",
  24384. extra: 2176 / 2050,
  24385. bottom: 65.7 / 2245
  24386. }
  24387. },
  24388. front: {
  24389. height: math.unit(8, "feet"),
  24390. weight: math.unit(300, "lb"),
  24391. name: "Front",
  24392. image: {
  24393. source: "./media/characters/equus-silvermane/front.svg",
  24394. extra: 4633 / 4400,
  24395. bottom: 71.3 / 4706.915
  24396. }
  24397. },
  24398. sideStepping: {
  24399. height: math.unit(8, "feet"),
  24400. weight: math.unit(300, "lb"),
  24401. name: "Side (Stepping)",
  24402. image: {
  24403. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24404. extra: 1968 / 1860,
  24405. bottom: 16.4 / 1989
  24406. }
  24407. },
  24408. },
  24409. [
  24410. {
  24411. name: "Normal",
  24412. height: math.unit(8, "feet")
  24413. },
  24414. {
  24415. name: "Minimacro",
  24416. height: math.unit(75, "feet"),
  24417. default: true
  24418. },
  24419. {
  24420. name: "Macro",
  24421. height: math.unit(150, "feet")
  24422. },
  24423. {
  24424. name: "Macro+",
  24425. height: math.unit(1000, "feet")
  24426. },
  24427. {
  24428. name: "Megamacro",
  24429. height: math.unit(1, "mile")
  24430. },
  24431. ]
  24432. ))
  24433. characterMakers.push(() => makeCharacter(
  24434. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24435. {
  24436. side: {
  24437. height: math.unit(20, "feet"),
  24438. weight: math.unit(30000, "kg"),
  24439. name: "Side",
  24440. image: {
  24441. source: "./media/characters/windar/side.svg",
  24442. extra: 1491 / 1248,
  24443. bottom: 82.56 / 1568
  24444. }
  24445. },
  24446. },
  24447. [
  24448. {
  24449. name: "Normal",
  24450. height: math.unit(20, "feet"),
  24451. default: true
  24452. },
  24453. ]
  24454. ))
  24455. characterMakers.push(() => makeCharacter(
  24456. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24457. {
  24458. side: {
  24459. height: math.unit(15.66, "feet"),
  24460. weight: math.unit(150, "lb"),
  24461. name: "Side",
  24462. image: {
  24463. source: "./media/characters/melody/side.svg",
  24464. extra: 1097 / 944,
  24465. bottom: 11.8 / 1109
  24466. }
  24467. },
  24468. sideOutfit: {
  24469. height: math.unit(15.66, "feet"),
  24470. weight: math.unit(150, "lb"),
  24471. name: "Side (Outfit)",
  24472. image: {
  24473. source: "./media/characters/melody/side-outfit.svg",
  24474. extra: 1097 / 944,
  24475. bottom: 11.8 / 1109
  24476. }
  24477. },
  24478. },
  24479. [
  24480. {
  24481. name: "Normal",
  24482. height: math.unit(15.66, "feet"),
  24483. default: true
  24484. },
  24485. ]
  24486. ))
  24487. characterMakers.push(() => makeCharacter(
  24488. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24489. {
  24490. armoredFront: {
  24491. height: math.unit(8, "feet"),
  24492. weight: math.unit(325, "lb"),
  24493. name: "Front",
  24494. image: {
  24495. source: "./media/characters/windera/armored-front.svg",
  24496. extra: 1830/1598,
  24497. bottom: 151/1981
  24498. },
  24499. form: "armored",
  24500. default: true
  24501. },
  24502. macroFront: {
  24503. height: math.unit(70, "feet"),
  24504. weight: math.unit(315453, "lb"),
  24505. name: "Front",
  24506. image: {
  24507. source: "./media/characters/windera/macro-front.svg",
  24508. extra: 963/883,
  24509. bottom: 23/986
  24510. },
  24511. form: "macro",
  24512. default: true
  24513. },
  24514. },
  24515. [
  24516. {
  24517. name: "Normal",
  24518. height: math.unit(8, "feet"),
  24519. default: true,
  24520. form: "armored"
  24521. },
  24522. {
  24523. name: "Normal",
  24524. height: math.unit(70, "feet"),
  24525. default: true,
  24526. form: "macro"
  24527. },
  24528. ],
  24529. {
  24530. "armored": {
  24531. name: "Armored",
  24532. default: true
  24533. },
  24534. "macro": {
  24535. name: "Macro",
  24536. },
  24537. }
  24538. ))
  24539. characterMakers.push(() => makeCharacter(
  24540. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24541. {
  24542. front: {
  24543. height: math.unit(28.75, "feet"),
  24544. weight: math.unit(2000, "kg"),
  24545. name: "Front",
  24546. image: {
  24547. source: "./media/characters/sonear/front.svg",
  24548. extra: 1041.1 / 964.9,
  24549. bottom: 53.7 / 1096.6
  24550. }
  24551. },
  24552. },
  24553. [
  24554. {
  24555. name: "Normal",
  24556. height: math.unit(28.75, "feet"),
  24557. default: true
  24558. },
  24559. ]
  24560. ))
  24561. characterMakers.push(() => makeCharacter(
  24562. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24563. {
  24564. side: {
  24565. height: math.unit(25.5, "feet"),
  24566. weight: math.unit(23000, "kg"),
  24567. name: "Side",
  24568. image: {
  24569. source: "./media/characters/kanara/side.svg"
  24570. }
  24571. },
  24572. },
  24573. [
  24574. {
  24575. name: "Normal",
  24576. height: math.unit(25.5, "feet"),
  24577. default: true
  24578. },
  24579. ]
  24580. ))
  24581. characterMakers.push(() => makeCharacter(
  24582. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24583. {
  24584. side: {
  24585. height: math.unit(10, "feet"),
  24586. weight: math.unit(1000, "kg"),
  24587. name: "Side",
  24588. image: {
  24589. source: "./media/characters/ereus/side.svg",
  24590. extra: 1157 / 959,
  24591. bottom: 153 / 1312.5
  24592. }
  24593. },
  24594. },
  24595. [
  24596. {
  24597. name: "Normal",
  24598. height: math.unit(10, "feet"),
  24599. default: true
  24600. },
  24601. ]
  24602. ))
  24603. characterMakers.push(() => makeCharacter(
  24604. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24605. {
  24606. side: {
  24607. height: math.unit(4.5, "feet"),
  24608. weight: math.unit(500, "lb"),
  24609. name: "Side",
  24610. image: {
  24611. source: "./media/characters/e-ter/side.svg",
  24612. extra: 1550 / 1248,
  24613. bottom: 146 / 1694
  24614. }
  24615. },
  24616. },
  24617. [
  24618. {
  24619. name: "Normal",
  24620. height: math.unit(4.5, "feet"),
  24621. default: true
  24622. },
  24623. ]
  24624. ))
  24625. characterMakers.push(() => makeCharacter(
  24626. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24627. {
  24628. side: {
  24629. height: math.unit(9.7, "feet"),
  24630. weight: math.unit(4000, "kg"),
  24631. name: "Side",
  24632. image: {
  24633. source: "./media/characters/yamie/side.svg"
  24634. }
  24635. },
  24636. },
  24637. [
  24638. {
  24639. name: "Normal",
  24640. height: math.unit(9.7, "feet"),
  24641. default: true
  24642. },
  24643. ]
  24644. ))
  24645. characterMakers.push(() => makeCharacter(
  24646. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24647. {
  24648. front: {
  24649. height: math.unit(50, "feet"),
  24650. weight: math.unit(50000, "kg"),
  24651. name: "Front",
  24652. image: {
  24653. source: "./media/characters/anders/front.svg",
  24654. extra: 570 / 539,
  24655. bottom: 14.7 / 586.7
  24656. }
  24657. },
  24658. },
  24659. [
  24660. {
  24661. name: "Large",
  24662. height: math.unit(50, "feet")
  24663. },
  24664. {
  24665. name: "Macro",
  24666. height: math.unit(2000, "feet"),
  24667. default: true
  24668. },
  24669. {
  24670. name: "Megamacro",
  24671. height: math.unit(12, "miles")
  24672. },
  24673. ]
  24674. ))
  24675. characterMakers.push(() => makeCharacter(
  24676. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24677. {
  24678. front: {
  24679. height: math.unit(7 + 2 / 12, "feet"),
  24680. weight: math.unit(300, "lb"),
  24681. name: "Front",
  24682. image: {
  24683. source: "./media/characters/reban/front.svg",
  24684. extra: 1287/1212,
  24685. bottom: 148/1435
  24686. }
  24687. },
  24688. head: {
  24689. height: math.unit(1.95, "feet"),
  24690. name: "Head",
  24691. image: {
  24692. source: "./media/characters/reban/head.svg"
  24693. }
  24694. },
  24695. maw: {
  24696. height: math.unit(0.95, "feet"),
  24697. name: "Maw",
  24698. image: {
  24699. source: "./media/characters/reban/maw.svg"
  24700. }
  24701. },
  24702. foot: {
  24703. height: math.unit(1.65, "feet"),
  24704. name: "Foot",
  24705. image: {
  24706. source: "./media/characters/reban/foot.svg"
  24707. }
  24708. },
  24709. dick: {
  24710. height: math.unit(7 / 5, "feet"),
  24711. name: "Dick",
  24712. image: {
  24713. source: "./media/characters/reban/dick.svg"
  24714. }
  24715. },
  24716. },
  24717. [
  24718. {
  24719. name: "Natural Height",
  24720. height: math.unit(7 + 2 / 12, "feet")
  24721. },
  24722. {
  24723. name: "Macro",
  24724. height: math.unit(500, "feet"),
  24725. default: true
  24726. },
  24727. {
  24728. name: "Canon Height",
  24729. height: math.unit(50, "AU")
  24730. },
  24731. ]
  24732. ))
  24733. characterMakers.push(() => makeCharacter(
  24734. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24735. {
  24736. front: {
  24737. height: math.unit(6, "feet"),
  24738. weight: math.unit(150, "lb"),
  24739. name: "Front",
  24740. image: {
  24741. source: "./media/characters/terrance-keayes/front.svg",
  24742. extra: 1.005,
  24743. bottom: 151 / 1615
  24744. }
  24745. },
  24746. side: {
  24747. height: math.unit(6, "feet"),
  24748. weight: math.unit(150, "lb"),
  24749. name: "Side",
  24750. image: {
  24751. source: "./media/characters/terrance-keayes/side.svg",
  24752. extra: 1.005,
  24753. bottom: 129.4 / 1544
  24754. }
  24755. },
  24756. back: {
  24757. height: math.unit(6, "feet"),
  24758. weight: math.unit(150, "lb"),
  24759. name: "Back",
  24760. image: {
  24761. source: "./media/characters/terrance-keayes/back.svg",
  24762. extra: 1.005,
  24763. bottom: 58.4 / 1557.3
  24764. }
  24765. },
  24766. dick: {
  24767. height: math.unit(6 * 0.208, "feet"),
  24768. name: "Dick",
  24769. image: {
  24770. source: "./media/characters/terrance-keayes/dick.svg"
  24771. }
  24772. },
  24773. },
  24774. [
  24775. {
  24776. name: "Canon Height",
  24777. height: math.unit(35, "miles"),
  24778. default: true
  24779. },
  24780. ]
  24781. ))
  24782. characterMakers.push(() => makeCharacter(
  24783. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24784. {
  24785. front: {
  24786. height: math.unit(6, "feet"),
  24787. weight: math.unit(150, "lb"),
  24788. name: "Front",
  24789. image: {
  24790. source: "./media/characters/ofelia/front.svg",
  24791. extra: 1130/1117,
  24792. bottom: 91/1221
  24793. }
  24794. },
  24795. back: {
  24796. height: math.unit(6, "feet"),
  24797. weight: math.unit(150, "lb"),
  24798. name: "Back",
  24799. image: {
  24800. source: "./media/characters/ofelia/back.svg",
  24801. extra: 1172/1159,
  24802. bottom: 28/1200
  24803. }
  24804. },
  24805. maw: {
  24806. height: math.unit(1, "feet"),
  24807. name: "Maw",
  24808. image: {
  24809. source: "./media/characters/ofelia/maw.svg"
  24810. }
  24811. },
  24812. foot: {
  24813. height: math.unit(1.949, "feet"),
  24814. name: "Foot",
  24815. image: {
  24816. source: "./media/characters/ofelia/foot.svg"
  24817. }
  24818. },
  24819. },
  24820. [
  24821. {
  24822. name: "Canon Height",
  24823. height: math.unit(2000, "miles"),
  24824. default: true
  24825. },
  24826. ]
  24827. ))
  24828. characterMakers.push(() => makeCharacter(
  24829. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24830. {
  24831. front: {
  24832. height: math.unit(6, "feet"),
  24833. weight: math.unit(150, "lb"),
  24834. name: "Front",
  24835. image: {
  24836. source: "./media/characters/samuel/front.svg",
  24837. extra: 265 / 258,
  24838. bottom: 2 / 266.1566
  24839. }
  24840. },
  24841. },
  24842. [
  24843. {
  24844. name: "Macro",
  24845. height: math.unit(100, "feet"),
  24846. default: true
  24847. },
  24848. {
  24849. name: "Full Size",
  24850. height: math.unit(1000, "miles")
  24851. },
  24852. ]
  24853. ))
  24854. characterMakers.push(() => makeCharacter(
  24855. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24856. {
  24857. front: {
  24858. height: math.unit(6, "feet"),
  24859. weight: math.unit(300, "lb"),
  24860. name: "Front",
  24861. image: {
  24862. source: "./media/characters/beishir-kiel/front.svg",
  24863. extra: 569 / 547,
  24864. bottom: 41.9 / 609
  24865. }
  24866. },
  24867. maw: {
  24868. height: math.unit(6 * 0.202, "feet"),
  24869. name: "Maw",
  24870. image: {
  24871. source: "./media/characters/beishir-kiel/maw.svg"
  24872. }
  24873. },
  24874. },
  24875. [
  24876. {
  24877. name: "Macro",
  24878. height: math.unit(300, "feet"),
  24879. default: true
  24880. },
  24881. ]
  24882. ))
  24883. characterMakers.push(() => makeCharacter(
  24884. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24885. {
  24886. front: {
  24887. height: math.unit(5 + 7/12, "feet"),
  24888. weight: math.unit(120, "lb"),
  24889. name: "Front",
  24890. image: {
  24891. source: "./media/characters/logan-grey/front.svg",
  24892. extra: 1836/1738,
  24893. bottom: 108/1944
  24894. }
  24895. },
  24896. back: {
  24897. height: math.unit(5 + 7/12, "feet"),
  24898. weight: math.unit(120, "lb"),
  24899. name: "Back",
  24900. image: {
  24901. source: "./media/characters/logan-grey/back.svg",
  24902. extra: 1880/1794,
  24903. bottom: 24/1904
  24904. }
  24905. },
  24906. frontSfw: {
  24907. height: math.unit(5 + 7/12, "feet"),
  24908. weight: math.unit(120, "lb"),
  24909. name: "Front (SFW)",
  24910. image: {
  24911. source: "./media/characters/logan-grey/front-sfw.svg",
  24912. extra: 1836/1738,
  24913. bottom: 108/1944
  24914. }
  24915. },
  24916. backSfw: {
  24917. height: math.unit(5 + 7/12, "feet"),
  24918. weight: math.unit(120, "lb"),
  24919. name: "Back (SFW)",
  24920. image: {
  24921. source: "./media/characters/logan-grey/back-sfw.svg",
  24922. extra: 1880/1794,
  24923. bottom: 24/1904
  24924. }
  24925. },
  24926. hands: {
  24927. height: math.unit(0.84, "feet"),
  24928. name: "Hands",
  24929. image: {
  24930. source: "./media/characters/logan-grey/hands.svg"
  24931. }
  24932. },
  24933. paws: {
  24934. height: math.unit(0.72, "feet"),
  24935. name: "Paws",
  24936. image: {
  24937. source: "./media/characters/logan-grey/paws.svg"
  24938. }
  24939. },
  24940. cock: {
  24941. height: math.unit(1.45, "feet"),
  24942. name: "Cock",
  24943. image: {
  24944. source: "./media/characters/logan-grey/cock.svg"
  24945. }
  24946. },
  24947. cockAlt: {
  24948. height: math.unit(1.437, "feet"),
  24949. name: "Cock (alt)",
  24950. image: {
  24951. source: "./media/characters/logan-grey/cock-alt.svg"
  24952. }
  24953. },
  24954. },
  24955. [
  24956. {
  24957. name: "Normal",
  24958. height: math.unit(5 + 8 / 12, "feet")
  24959. },
  24960. {
  24961. name: "The 500 Foot Femboy",
  24962. height: math.unit(500, "feet"),
  24963. default: true
  24964. },
  24965. {
  24966. name: "Megmacro",
  24967. height: math.unit(20, "miles")
  24968. },
  24969. ]
  24970. ))
  24971. characterMakers.push(() => makeCharacter(
  24972. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24973. {
  24974. front: {
  24975. height: math.unit(8 + 2 / 12, "feet"),
  24976. weight: math.unit(275, "lb"),
  24977. name: "Front",
  24978. image: {
  24979. source: "./media/characters/draganta/front.svg",
  24980. extra: 1177 / 1135,
  24981. bottom: 33.46 / 1212.1
  24982. }
  24983. },
  24984. },
  24985. [
  24986. {
  24987. name: "Normal",
  24988. height: math.unit(8 + 6 / 12, "feet"),
  24989. default: true
  24990. },
  24991. {
  24992. name: "Macro",
  24993. height: math.unit(150, "feet")
  24994. },
  24995. {
  24996. name: "Megamacro",
  24997. height: math.unit(1000, "miles")
  24998. },
  24999. ]
  25000. ))
  25001. characterMakers.push(() => makeCharacter(
  25002. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25003. {
  25004. front: {
  25005. height: math.unit(1.72, "m"),
  25006. weight: math.unit(80, "lb"),
  25007. name: "Front",
  25008. image: {
  25009. source: "./media/characters/voski/front.svg",
  25010. extra: 2076.22 / 2022.4,
  25011. bottom: 102.7 / 2177.3866
  25012. }
  25013. },
  25014. frontFlaccid: {
  25015. height: math.unit(1.72, "m"),
  25016. weight: math.unit(80, "lb"),
  25017. name: "Front (Flaccid)",
  25018. image: {
  25019. source: "./media/characters/voski/front-flaccid.svg",
  25020. extra: 2076.22 / 2022.4,
  25021. bottom: 102.7 / 2177.3866
  25022. }
  25023. },
  25024. frontErect: {
  25025. height: math.unit(1.72, "m"),
  25026. weight: math.unit(80, "lb"),
  25027. name: "Front (Erect)",
  25028. image: {
  25029. source: "./media/characters/voski/front-erect.svg",
  25030. extra: 2076.22 / 2022.4,
  25031. bottom: 102.7 / 2177.3866
  25032. }
  25033. },
  25034. back: {
  25035. height: math.unit(1.72, "m"),
  25036. weight: math.unit(80, "lb"),
  25037. name: "Back",
  25038. image: {
  25039. source: "./media/characters/voski/back.svg",
  25040. extra: 2104 / 2051,
  25041. bottom: 10.45 / 2113.63
  25042. }
  25043. },
  25044. },
  25045. [
  25046. {
  25047. name: "Normal",
  25048. height: math.unit(1.72, "m")
  25049. },
  25050. {
  25051. name: "Macro",
  25052. height: math.unit(55, "m"),
  25053. default: true
  25054. },
  25055. {
  25056. name: "Macro+",
  25057. height: math.unit(300, "m")
  25058. },
  25059. {
  25060. name: "Macro++",
  25061. height: math.unit(700, "m")
  25062. },
  25063. {
  25064. name: "Macro+++",
  25065. height: math.unit(4500, "m")
  25066. },
  25067. {
  25068. name: "Macro++++",
  25069. height: math.unit(45, "km")
  25070. },
  25071. {
  25072. name: "Macro+++++",
  25073. height: math.unit(1220, "km")
  25074. },
  25075. ]
  25076. ))
  25077. characterMakers.push(() => makeCharacter(
  25078. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25079. {
  25080. front: {
  25081. height: math.unit(2.3, "m"),
  25082. weight: math.unit(304, "kg"),
  25083. name: "Front",
  25084. image: {
  25085. source: "./media/characters/icowom-lee/front.svg",
  25086. extra: 985 / 955,
  25087. bottom: 25.4 / 1012
  25088. }
  25089. },
  25090. fronttentacles: {
  25091. height: math.unit(2.3, "m"),
  25092. weight: math.unit(304, "kg"),
  25093. name: "Front-tentacles",
  25094. image: {
  25095. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25096. extra: 985 / 955,
  25097. bottom: 25.4 / 1012
  25098. }
  25099. },
  25100. back: {
  25101. height: math.unit(2.3, "m"),
  25102. weight: math.unit(304, "kg"),
  25103. name: "Back",
  25104. image: {
  25105. source: "./media/characters/icowom-lee/back.svg",
  25106. extra: 975 / 954,
  25107. bottom: 9.5 / 985
  25108. }
  25109. },
  25110. backtentacles: {
  25111. height: math.unit(2.3, "m"),
  25112. weight: math.unit(304, "kg"),
  25113. name: "Back-tentacles",
  25114. image: {
  25115. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25116. extra: 975 / 954,
  25117. bottom: 9.5 / 985
  25118. }
  25119. },
  25120. frontDressed: {
  25121. height: math.unit(2.3, "m"),
  25122. weight: math.unit(304, "kg"),
  25123. name: "Front (Dressed)",
  25124. image: {
  25125. source: "./media/characters/icowom-lee/front-dressed.svg",
  25126. extra: 3076 / 2933,
  25127. bottom: 51.4 / 3125.1889
  25128. }
  25129. },
  25130. rump: {
  25131. height: math.unit(0.776, "meters"),
  25132. name: "Rump",
  25133. image: {
  25134. source: "./media/characters/icowom-lee/rump.svg"
  25135. }
  25136. },
  25137. genitals: {
  25138. height: math.unit(0.78, "meters"),
  25139. name: "Genitals",
  25140. image: {
  25141. source: "./media/characters/icowom-lee/genitals.svg"
  25142. }
  25143. },
  25144. },
  25145. [
  25146. {
  25147. name: "Normal",
  25148. height: math.unit(2.3, "meters"),
  25149. default: true
  25150. },
  25151. {
  25152. name: "Macro",
  25153. height: math.unit(94, "meters"),
  25154. default: true
  25155. },
  25156. ]
  25157. ))
  25158. characterMakers.push(() => makeCharacter(
  25159. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25160. {
  25161. front: {
  25162. height: math.unit(22, "meters"),
  25163. weight: math.unit(21000, "kg"),
  25164. name: "Front",
  25165. image: {
  25166. source: "./media/characters/shock-diamond/front.svg",
  25167. extra: 2204 / 2053,
  25168. bottom: 65 / 2239.47
  25169. }
  25170. },
  25171. frontNude: {
  25172. height: math.unit(22, "meters"),
  25173. weight: math.unit(21000, "kg"),
  25174. name: "Front (Nude)",
  25175. image: {
  25176. source: "./media/characters/shock-diamond/front-nude.svg",
  25177. extra: 2514 / 2285,
  25178. bottom: 13 / 2527.56
  25179. }
  25180. },
  25181. },
  25182. [
  25183. {
  25184. name: "Normal",
  25185. height: math.unit(3, "meters")
  25186. },
  25187. {
  25188. name: "Macro",
  25189. height: math.unit(22, "meters"),
  25190. default: true
  25191. },
  25192. ]
  25193. ))
  25194. characterMakers.push(() => makeCharacter(
  25195. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25196. {
  25197. front: {
  25198. height: math.unit(5 + 4/12, "feet"),
  25199. weight: math.unit(125, "lb"),
  25200. name: "Front",
  25201. image: {
  25202. source: "./media/characters/rory/front.svg",
  25203. extra: 1790/1681,
  25204. bottom: 66/1856
  25205. },
  25206. form: "normal",
  25207. default: true
  25208. },
  25209. back: {
  25210. height: math.unit(5 + 4/12, "feet"),
  25211. weight: math.unit(125, "lb"),
  25212. name: "Back",
  25213. image: {
  25214. source: "./media/characters/rory/back.svg",
  25215. extra: 1805/1690,
  25216. bottom: 56/1861
  25217. },
  25218. form: "normal"
  25219. },
  25220. frontDressed: {
  25221. height: math.unit(5 + 4/12, "feet"),
  25222. weight: math.unit(125, "lb"),
  25223. name: "Front (Dressed)",
  25224. image: {
  25225. source: "./media/characters/rory/front-dressed.svg",
  25226. extra: 1790/1681,
  25227. bottom: 66/1856
  25228. },
  25229. form: "normal"
  25230. },
  25231. backDressed: {
  25232. height: math.unit(5 + 4/12, "feet"),
  25233. weight: math.unit(125, "lb"),
  25234. name: "Back (Dressed)",
  25235. image: {
  25236. source: "./media/characters/rory/back-dressed.svg",
  25237. extra: 1805/1690,
  25238. bottom: 56/1861
  25239. },
  25240. form: "normal"
  25241. },
  25242. frontNsfw: {
  25243. height: math.unit(5 + 4/12, "feet"),
  25244. weight: math.unit(125, "lb"),
  25245. name: "Front (NSFW)",
  25246. image: {
  25247. source: "./media/characters/rory/front-nsfw.svg",
  25248. extra: 1790/1681,
  25249. bottom: 66/1856
  25250. },
  25251. form: "normal"
  25252. },
  25253. backNsfw: {
  25254. height: math.unit(5 + 4/12, "feet"),
  25255. weight: math.unit(125, "lb"),
  25256. name: "Back (NSFW)",
  25257. image: {
  25258. source: "./media/characters/rory/back-nsfw.svg",
  25259. extra: 1805/1690,
  25260. bottom: 56/1861
  25261. },
  25262. form: "normal"
  25263. },
  25264. dick: {
  25265. height: math.unit(0.8, "feet"),
  25266. name: "Dick",
  25267. image: {
  25268. source: "./media/characters/rory/dick.svg"
  25269. },
  25270. form: "normal"
  25271. },
  25272. thicc_front: {
  25273. height: math.unit(5 + 4/12, "feet"),
  25274. weight: math.unit(195, "lb"),
  25275. name: "Front",
  25276. image: {
  25277. source: "./media/characters/rory/thicc-front.svg",
  25278. extra: 1220/1100,
  25279. bottom: 103/1323
  25280. },
  25281. form: "thicc",
  25282. default: true
  25283. },
  25284. thicc_back: {
  25285. height: math.unit(5 + 4/12, "feet"),
  25286. weight: math.unit(195, "lb"),
  25287. name: "Back",
  25288. image: {
  25289. source: "./media/characters/rory/thicc-back.svg",
  25290. extra: 1166/1086,
  25291. bottom: 35/1201
  25292. },
  25293. form: "thicc"
  25294. },
  25295. },
  25296. [
  25297. {
  25298. name: "Micro",
  25299. height: math.unit(3, "inches"),
  25300. allForms: true
  25301. },
  25302. {
  25303. name: "Normal",
  25304. height: math.unit(5 + 4/12, "feet"),
  25305. allForms: true,
  25306. default: true
  25307. },
  25308. {
  25309. name: "Macro",
  25310. height: math.unit(90, "feet"),
  25311. allForms: true
  25312. },
  25313. {
  25314. name: "Supercharged",
  25315. height: math.unit(270, "feet"),
  25316. allForms: true
  25317. },
  25318. ],
  25319. {
  25320. "normal": {
  25321. name: "Normal",
  25322. default: true
  25323. },
  25324. "thicc": {
  25325. name: "Thicc",
  25326. },
  25327. }
  25328. ))
  25329. characterMakers.push(() => makeCharacter(
  25330. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25331. {
  25332. front: {
  25333. height: math.unit(5 + 9 / 12, "feet"),
  25334. weight: math.unit(190, "lb"),
  25335. name: "Front",
  25336. image: {
  25337. source: "./media/characters/sprisk/front.svg",
  25338. extra: 1225 / 1180,
  25339. bottom: 42.7 / 1266.4
  25340. }
  25341. },
  25342. frontNsfw: {
  25343. height: math.unit(5 + 9 / 12, "feet"),
  25344. weight: math.unit(190, "lb"),
  25345. name: "Front (NSFW)",
  25346. image: {
  25347. source: "./media/characters/sprisk/front-nsfw.svg",
  25348. extra: 1225 / 1180,
  25349. bottom: 42.7 / 1266.4
  25350. }
  25351. },
  25352. back: {
  25353. height: math.unit(5 + 9 / 12, "feet"),
  25354. weight: math.unit(190, "lb"),
  25355. name: "Back",
  25356. image: {
  25357. source: "./media/characters/sprisk/back.svg",
  25358. extra: 1247 / 1200,
  25359. bottom: 5.6 / 1253.04
  25360. }
  25361. },
  25362. },
  25363. [
  25364. {
  25365. name: "Tiny",
  25366. height: math.unit(2, "inches")
  25367. },
  25368. {
  25369. name: "Normal",
  25370. height: math.unit(5 + 9 / 12, "feet"),
  25371. default: true
  25372. },
  25373. {
  25374. name: "Mini Macro",
  25375. height: math.unit(18, "feet")
  25376. },
  25377. {
  25378. name: "Macro",
  25379. height: math.unit(100, "feet")
  25380. },
  25381. {
  25382. name: "MACRO",
  25383. height: math.unit(50, "miles")
  25384. },
  25385. {
  25386. name: "M A C R O",
  25387. height: math.unit(300, "miles")
  25388. },
  25389. ]
  25390. ))
  25391. characterMakers.push(() => makeCharacter(
  25392. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25393. {
  25394. side: {
  25395. height: math.unit(15.6, "meters"),
  25396. weight: math.unit(700000, "kg"),
  25397. name: "Side",
  25398. image: {
  25399. source: "./media/characters/bunsen/side.svg",
  25400. extra: 1644 / 358
  25401. }
  25402. },
  25403. foot: {
  25404. height: math.unit(1.611 * 1644 / 358, "meter"),
  25405. name: "Foot",
  25406. image: {
  25407. source: "./media/characters/bunsen/foot.svg"
  25408. }
  25409. },
  25410. },
  25411. [
  25412. {
  25413. name: "Small",
  25414. height: math.unit(10, "feet")
  25415. },
  25416. {
  25417. name: "Normal",
  25418. height: math.unit(15.6, "meters"),
  25419. default: true
  25420. },
  25421. ]
  25422. ))
  25423. characterMakers.push(() => makeCharacter(
  25424. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25425. {
  25426. front: {
  25427. height: math.unit(4 + 11 / 12, "feet"),
  25428. weight: math.unit(140, "lb"),
  25429. name: "Front",
  25430. image: {
  25431. source: "./media/characters/sesh/front.svg",
  25432. extra: 3420 / 3231,
  25433. bottom: 72 / 3949.5
  25434. }
  25435. },
  25436. },
  25437. [
  25438. {
  25439. name: "Normal",
  25440. height: math.unit(4 + 11 / 12, "feet")
  25441. },
  25442. {
  25443. name: "Grown",
  25444. height: math.unit(15, "feet"),
  25445. default: true
  25446. },
  25447. {
  25448. name: "Macro",
  25449. height: math.unit(1500, "feet")
  25450. },
  25451. {
  25452. name: "Megamacro",
  25453. height: math.unit(30, "miles")
  25454. },
  25455. {
  25456. name: "Continental",
  25457. height: math.unit(3000, "miles")
  25458. },
  25459. {
  25460. name: "Gravity Mass",
  25461. height: math.unit(300000, "miles")
  25462. },
  25463. {
  25464. name: "Planet Buster",
  25465. height: math.unit(30000000, "miles")
  25466. },
  25467. {
  25468. name: "Big",
  25469. height: math.unit(3000000000, "miles")
  25470. },
  25471. ]
  25472. ))
  25473. characterMakers.push(() => makeCharacter(
  25474. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25475. {
  25476. front: {
  25477. height: math.unit(9, "feet"),
  25478. weight: math.unit(350, "lb"),
  25479. name: "Front",
  25480. image: {
  25481. source: "./media/characters/pepper/front.svg",
  25482. extra: 1448 / 1312,
  25483. bottom: 9.4 / 1457.88
  25484. }
  25485. },
  25486. back: {
  25487. height: math.unit(9, "feet"),
  25488. weight: math.unit(350, "lb"),
  25489. name: "Back",
  25490. image: {
  25491. source: "./media/characters/pepper/back.svg",
  25492. extra: 1423 / 1300,
  25493. bottom: 4.6 / 1429
  25494. }
  25495. },
  25496. maw: {
  25497. height: math.unit(0.932, "feet"),
  25498. name: "Maw",
  25499. image: {
  25500. source: "./media/characters/pepper/maw.svg"
  25501. }
  25502. },
  25503. },
  25504. [
  25505. {
  25506. name: "Normal",
  25507. height: math.unit(9, "feet"),
  25508. default: true
  25509. },
  25510. ]
  25511. ))
  25512. characterMakers.push(() => makeCharacter(
  25513. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25514. {
  25515. front: {
  25516. height: math.unit(6, "feet"),
  25517. weight: math.unit(150, "lb"),
  25518. name: "Front",
  25519. image: {
  25520. source: "./media/characters/maelstrom/front.svg",
  25521. extra: 2100 / 1883,
  25522. bottom: 94 / 2196.7
  25523. }
  25524. },
  25525. },
  25526. [
  25527. {
  25528. name: "Less Kaiju",
  25529. height: math.unit(200, "feet")
  25530. },
  25531. {
  25532. name: "Kaiju",
  25533. height: math.unit(400, "feet"),
  25534. default: true
  25535. },
  25536. {
  25537. name: "Kaiju-er",
  25538. height: math.unit(600, "feet")
  25539. },
  25540. ]
  25541. ))
  25542. characterMakers.push(() => makeCharacter(
  25543. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25544. {
  25545. front: {
  25546. height: math.unit(6 + 5 / 12, "feet"),
  25547. weight: math.unit(180, "lb"),
  25548. name: "Front",
  25549. image: {
  25550. source: "./media/characters/lexir/front.svg",
  25551. extra: 180 / 172,
  25552. bottom: 12 / 192
  25553. }
  25554. },
  25555. back: {
  25556. height: math.unit(6 + 5 / 12, "feet"),
  25557. weight: math.unit(180, "lb"),
  25558. name: "Back",
  25559. image: {
  25560. source: "./media/characters/lexir/back.svg",
  25561. extra: 1273/1201,
  25562. bottom: 39/1312
  25563. }
  25564. },
  25565. },
  25566. [
  25567. {
  25568. name: "Very Smal",
  25569. height: math.unit(1, "nm")
  25570. },
  25571. {
  25572. name: "Normal",
  25573. height: math.unit(6 + 5 / 12, "feet"),
  25574. default: true
  25575. },
  25576. {
  25577. name: "Macro",
  25578. height: math.unit(1, "mile")
  25579. },
  25580. {
  25581. name: "Megamacro",
  25582. height: math.unit(50, "miles")
  25583. },
  25584. ]
  25585. ))
  25586. characterMakers.push(() => makeCharacter(
  25587. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25588. {
  25589. front: {
  25590. height: math.unit(1.5, "meters"),
  25591. weight: math.unit(100, "lb"),
  25592. name: "Front",
  25593. image: {
  25594. source: "./media/characters/maksio/front.svg",
  25595. extra: 1549 / 1531,
  25596. bottom: 123.7 / 1674.5429
  25597. }
  25598. },
  25599. back: {
  25600. height: math.unit(1.5, "meters"),
  25601. weight: math.unit(100, "lb"),
  25602. name: "Back",
  25603. image: {
  25604. source: "./media/characters/maksio/back.svg",
  25605. extra: 1541 / 1509,
  25606. bottom: 97 / 1639
  25607. }
  25608. },
  25609. hand: {
  25610. height: math.unit(0.621, "feet"),
  25611. name: "Hand",
  25612. image: {
  25613. source: "./media/characters/maksio/hand.svg"
  25614. }
  25615. },
  25616. foot: {
  25617. height: math.unit(1.611, "feet"),
  25618. name: "Foot",
  25619. image: {
  25620. source: "./media/characters/maksio/foot.svg"
  25621. }
  25622. },
  25623. },
  25624. [
  25625. {
  25626. name: "Shrunken",
  25627. height: math.unit(10, "cm")
  25628. },
  25629. {
  25630. name: "Normal",
  25631. height: math.unit(150, "cm"),
  25632. default: true
  25633. },
  25634. ]
  25635. ))
  25636. characterMakers.push(() => makeCharacter(
  25637. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25638. {
  25639. front: {
  25640. height: math.unit(100, "feet"),
  25641. name: "Front",
  25642. image: {
  25643. source: "./media/characters/erza-bear/front.svg",
  25644. extra: 2449 / 2390,
  25645. bottom: 46 / 2494
  25646. }
  25647. },
  25648. back: {
  25649. height: math.unit(100, "feet"),
  25650. name: "Back",
  25651. image: {
  25652. source: "./media/characters/erza-bear/back.svg",
  25653. extra: 2489 / 2430,
  25654. bottom: 85.4 / 2480
  25655. }
  25656. },
  25657. tail: {
  25658. height: math.unit(42, "feet"),
  25659. name: "Tail",
  25660. image: {
  25661. source: "./media/characters/erza-bear/tail.svg"
  25662. }
  25663. },
  25664. tongue: {
  25665. height: math.unit(8, "feet"),
  25666. name: "Tongue",
  25667. image: {
  25668. source: "./media/characters/erza-bear/tongue.svg"
  25669. }
  25670. },
  25671. dick: {
  25672. height: math.unit(10.5, "feet"),
  25673. name: "Dick",
  25674. image: {
  25675. source: "./media/characters/erza-bear/dick.svg"
  25676. }
  25677. },
  25678. dickVertical: {
  25679. height: math.unit(16.9, "feet"),
  25680. name: "Dick (Vertical)",
  25681. image: {
  25682. source: "./media/characters/erza-bear/dick-vertical.svg"
  25683. }
  25684. },
  25685. },
  25686. [
  25687. {
  25688. name: "Macro",
  25689. height: math.unit(100, "feet"),
  25690. default: true
  25691. },
  25692. ]
  25693. ))
  25694. characterMakers.push(() => makeCharacter(
  25695. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25696. {
  25697. front: {
  25698. height: math.unit(172, "cm"),
  25699. weight: math.unit(73, "kg"),
  25700. name: "Front",
  25701. image: {
  25702. source: "./media/characters/violet-flor/front.svg",
  25703. extra: 1530 / 1442,
  25704. bottom: 61.9 / 1588.8
  25705. }
  25706. },
  25707. back: {
  25708. height: math.unit(180, "cm"),
  25709. weight: math.unit(73, "kg"),
  25710. name: "Back",
  25711. image: {
  25712. source: "./media/characters/violet-flor/back.svg",
  25713. extra: 1692 / 1630,
  25714. bottom: 20 / 1712
  25715. }
  25716. },
  25717. },
  25718. [
  25719. {
  25720. name: "Normal",
  25721. height: math.unit(172, "cm"),
  25722. default: true
  25723. },
  25724. ]
  25725. ))
  25726. characterMakers.push(() => makeCharacter(
  25727. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25728. {
  25729. front: {
  25730. height: math.unit(6, "feet"),
  25731. weight: math.unit(220, "lb"),
  25732. name: "Front",
  25733. image: {
  25734. source: "./media/characters/lynn-rhea/front.svg",
  25735. extra: 310 / 273
  25736. }
  25737. },
  25738. back: {
  25739. height: math.unit(6, "feet"),
  25740. weight: math.unit(220, "lb"),
  25741. name: "Back",
  25742. image: {
  25743. source: "./media/characters/lynn-rhea/back.svg",
  25744. extra: 310 / 273
  25745. }
  25746. },
  25747. dicks: {
  25748. height: math.unit(0.9, "feet"),
  25749. name: "Dicks",
  25750. image: {
  25751. source: "./media/characters/lynn-rhea/dicks.svg"
  25752. }
  25753. },
  25754. slit: {
  25755. height: math.unit(0.4, "feet"),
  25756. name: "Slit",
  25757. image: {
  25758. source: "./media/characters/lynn-rhea/slit.svg"
  25759. }
  25760. },
  25761. },
  25762. [
  25763. {
  25764. name: "Micro",
  25765. height: math.unit(1, "inch")
  25766. },
  25767. {
  25768. name: "Macro",
  25769. height: math.unit(60, "feet"),
  25770. default: true
  25771. },
  25772. {
  25773. name: "Megamacro",
  25774. height: math.unit(2, "miles")
  25775. },
  25776. {
  25777. name: "Gigamacro",
  25778. height: math.unit(3, "earths")
  25779. },
  25780. {
  25781. name: "Galactic",
  25782. height: math.unit(0.8, "galaxies")
  25783. },
  25784. ]
  25785. ))
  25786. characterMakers.push(() => makeCharacter(
  25787. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25788. {
  25789. front: {
  25790. height: math.unit(1600, "feet"),
  25791. weight: math.unit(85758785169, "kg"),
  25792. name: "Front",
  25793. image: {
  25794. source: "./media/characters/valathos/front.svg",
  25795. extra: 1451 / 1339
  25796. }
  25797. },
  25798. },
  25799. [
  25800. {
  25801. name: "Macro",
  25802. height: math.unit(1600, "feet"),
  25803. default: true
  25804. },
  25805. ]
  25806. ))
  25807. characterMakers.push(() => makeCharacter(
  25808. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25809. {
  25810. front: {
  25811. height: math.unit(7 + 5 / 12, "feet"),
  25812. weight: math.unit(300, "lb"),
  25813. name: "Front",
  25814. image: {
  25815. source: "./media/characters/azula/front.svg",
  25816. extra: 3208 / 2880,
  25817. bottom: 80.2 / 3277
  25818. }
  25819. },
  25820. back: {
  25821. height: math.unit(7 + 5 / 12, "feet"),
  25822. weight: math.unit(300, "lb"),
  25823. name: "Back",
  25824. image: {
  25825. source: "./media/characters/azula/back.svg",
  25826. extra: 3169 / 2822,
  25827. bottom: 150.6 / 3321
  25828. }
  25829. },
  25830. },
  25831. [
  25832. {
  25833. name: "Normal",
  25834. height: math.unit(7 + 5 / 12, "feet"),
  25835. default: true
  25836. },
  25837. {
  25838. name: "Big",
  25839. height: math.unit(20, "feet")
  25840. },
  25841. ]
  25842. ))
  25843. characterMakers.push(() => makeCharacter(
  25844. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25845. {
  25846. front: {
  25847. height: math.unit(5 + 1 / 12, "feet"),
  25848. weight: math.unit(110, "lb"),
  25849. name: "Front",
  25850. image: {
  25851. source: "./media/characters/rupert/front.svg",
  25852. extra: 1549 / 1495,
  25853. bottom: 54.2 / 1604.4
  25854. }
  25855. },
  25856. },
  25857. [
  25858. {
  25859. name: "Normal",
  25860. height: math.unit(5 + 1 / 12, "feet"),
  25861. default: true
  25862. },
  25863. ]
  25864. ))
  25865. characterMakers.push(() => makeCharacter(
  25866. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25867. {
  25868. front: {
  25869. height: math.unit(8 + 4 / 12, "feet"),
  25870. weight: math.unit(350, "lb"),
  25871. name: "Front",
  25872. image: {
  25873. source: "./media/characters/sheera-castellar/front.svg",
  25874. extra: 1957 / 1894,
  25875. bottom: 26.97 / 1975.017
  25876. }
  25877. },
  25878. side: {
  25879. height: math.unit(8 + 4 / 12, "feet"),
  25880. weight: math.unit(350, "lb"),
  25881. name: "Side",
  25882. image: {
  25883. source: "./media/characters/sheera-castellar/side.svg",
  25884. extra: 1957 / 1894
  25885. }
  25886. },
  25887. back: {
  25888. height: math.unit(8 + 4 / 12, "feet"),
  25889. weight: math.unit(350, "lb"),
  25890. name: "Back",
  25891. image: {
  25892. source: "./media/characters/sheera-castellar/back.svg",
  25893. extra: 1957 / 1894
  25894. }
  25895. },
  25896. angled: {
  25897. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25898. weight: math.unit(350, "lb"),
  25899. name: "Angled",
  25900. image: {
  25901. source: "./media/characters/sheera-castellar/angled.svg",
  25902. extra: 1807 / 1707,
  25903. bottom: 68 / 1875
  25904. }
  25905. },
  25906. genitals: {
  25907. height: math.unit(2.2, "feet"),
  25908. name: "Genitals",
  25909. image: {
  25910. source: "./media/characters/sheera-castellar/genitals.svg"
  25911. }
  25912. },
  25913. taur: {
  25914. height: math.unit(10 + 6/12, "feet"),
  25915. name: "Taur",
  25916. image: {
  25917. source: "./media/characters/sheera-castellar/taur.svg",
  25918. extra: 2017/1909,
  25919. bottom: 185/2202
  25920. }
  25921. },
  25922. },
  25923. [
  25924. {
  25925. name: "Normal",
  25926. height: math.unit(8 + 4 / 12, "feet")
  25927. },
  25928. {
  25929. name: "Macro",
  25930. height: math.unit(150, "feet"),
  25931. default: true
  25932. },
  25933. {
  25934. name: "Macro+",
  25935. height: math.unit(800, "feet")
  25936. },
  25937. ]
  25938. ))
  25939. characterMakers.push(() => makeCharacter(
  25940. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25941. {
  25942. front: {
  25943. height: math.unit(6, "feet"),
  25944. weight: math.unit(150, "lb"),
  25945. name: "Front",
  25946. image: {
  25947. source: "./media/characters/jaipur/front.svg",
  25948. extra: 3860 / 3731,
  25949. bottom: 287 / 4140
  25950. }
  25951. },
  25952. back: {
  25953. height: math.unit(6, "feet"),
  25954. weight: math.unit(150, "lb"),
  25955. name: "Back",
  25956. image: {
  25957. source: "./media/characters/jaipur/back.svg",
  25958. extra: 1637/1561,
  25959. bottom: 154/1791
  25960. }
  25961. },
  25962. },
  25963. [
  25964. {
  25965. name: "Normal",
  25966. height: math.unit(1.85, "meters"),
  25967. default: true
  25968. },
  25969. {
  25970. name: "Macro",
  25971. height: math.unit(150, "meters")
  25972. },
  25973. {
  25974. name: "Macro+",
  25975. height: math.unit(0.5, "miles")
  25976. },
  25977. {
  25978. name: "Macro++",
  25979. height: math.unit(2.5, "miles")
  25980. },
  25981. {
  25982. name: "Macro+++",
  25983. height: math.unit(12, "miles")
  25984. },
  25985. {
  25986. name: "Macro++++",
  25987. height: math.unit(120, "miles")
  25988. },
  25989. {
  25990. name: "Macro+++++",
  25991. height: math.unit(1200, "miles")
  25992. },
  25993. ]
  25994. ))
  25995. characterMakers.push(() => makeCharacter(
  25996. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25997. {
  25998. front: {
  25999. height: math.unit(6, "feet"),
  26000. weight: math.unit(150, "lb"),
  26001. name: "Front",
  26002. image: {
  26003. source: "./media/characters/sheila-wolf/front.svg",
  26004. extra: 1931 / 1808,
  26005. bottom: 29.5 / 1960
  26006. }
  26007. },
  26008. dick: {
  26009. height: math.unit(1.464, "feet"),
  26010. name: "Dick",
  26011. image: {
  26012. source: "./media/characters/sheila-wolf/dick.svg"
  26013. }
  26014. },
  26015. muzzle: {
  26016. height: math.unit(0.513, "feet"),
  26017. name: "Muzzle",
  26018. image: {
  26019. source: "./media/characters/sheila-wolf/muzzle.svg"
  26020. }
  26021. },
  26022. },
  26023. [
  26024. {
  26025. name: "Macro",
  26026. height: math.unit(70, "feet"),
  26027. default: true
  26028. },
  26029. ]
  26030. ))
  26031. characterMakers.push(() => makeCharacter(
  26032. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26033. {
  26034. front: {
  26035. height: math.unit(32, "meters"),
  26036. weight: math.unit(300000, "kg"),
  26037. name: "Front",
  26038. image: {
  26039. source: "./media/characters/almor/front.svg",
  26040. extra: 1408 / 1322,
  26041. bottom: 94.6 / 1506.5
  26042. }
  26043. },
  26044. },
  26045. [
  26046. {
  26047. name: "Macro",
  26048. height: math.unit(32, "meters"),
  26049. default: true
  26050. },
  26051. ]
  26052. ))
  26053. characterMakers.push(() => makeCharacter(
  26054. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26055. {
  26056. front: {
  26057. height: math.unit(7, "feet"),
  26058. weight: math.unit(200, "lb"),
  26059. name: "Front",
  26060. image: {
  26061. source: "./media/characters/silver/front.svg",
  26062. extra: 472.1 / 450.5,
  26063. bottom: 26.5 / 499.424
  26064. }
  26065. },
  26066. },
  26067. [
  26068. {
  26069. name: "Normal",
  26070. height: math.unit(7, "feet"),
  26071. default: true
  26072. },
  26073. {
  26074. name: "Macro",
  26075. height: math.unit(800, "feet")
  26076. },
  26077. {
  26078. name: "Megamacro",
  26079. height: math.unit(250, "miles")
  26080. },
  26081. ]
  26082. ))
  26083. characterMakers.push(() => makeCharacter(
  26084. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26085. {
  26086. front: {
  26087. height: math.unit(6, "feet"),
  26088. weight: math.unit(150, "lb"),
  26089. name: "Front",
  26090. image: {
  26091. source: "./media/characters/pliskin/front.svg",
  26092. extra: 1469 / 1359,
  26093. bottom: 70 / 1540
  26094. }
  26095. },
  26096. },
  26097. [
  26098. {
  26099. name: "Micro",
  26100. height: math.unit(3, "inches")
  26101. },
  26102. {
  26103. name: "Normal",
  26104. height: math.unit(5 + 11 / 12, "feet"),
  26105. default: true
  26106. },
  26107. {
  26108. name: "Macro",
  26109. height: math.unit(120, "feet")
  26110. },
  26111. ]
  26112. ))
  26113. characterMakers.push(() => makeCharacter(
  26114. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26115. {
  26116. front: {
  26117. height: math.unit(6, "feet"),
  26118. weight: math.unit(150, "lb"),
  26119. name: "Front",
  26120. image: {
  26121. source: "./media/characters/sammy/front.svg",
  26122. extra: 1193 / 1089,
  26123. bottom: 30.5 / 1226
  26124. }
  26125. },
  26126. },
  26127. [
  26128. {
  26129. name: "Macro",
  26130. height: math.unit(1700, "feet"),
  26131. default: true
  26132. },
  26133. {
  26134. name: "Examacro",
  26135. height: math.unit(2.5e9, "lightyears")
  26136. },
  26137. ]
  26138. ))
  26139. characterMakers.push(() => makeCharacter(
  26140. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26141. {
  26142. front: {
  26143. height: math.unit(21, "meters"),
  26144. weight: math.unit(12, "tonnes"),
  26145. name: "Front",
  26146. image: {
  26147. source: "./media/characters/kuru/front.svg",
  26148. extra: 4301 / 3785,
  26149. bottom: 371.3 / 4691
  26150. }
  26151. },
  26152. },
  26153. [
  26154. {
  26155. name: "Macro",
  26156. height: math.unit(21, "meters"),
  26157. default: true
  26158. },
  26159. ]
  26160. ))
  26161. characterMakers.push(() => makeCharacter(
  26162. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26163. {
  26164. front: {
  26165. height: math.unit(23, "meters"),
  26166. weight: math.unit(12.2, "tonnes"),
  26167. name: "Front",
  26168. image: {
  26169. source: "./media/characters/rakka/front.svg",
  26170. extra: 4670 / 4169,
  26171. bottom: 301 / 4968.7
  26172. }
  26173. },
  26174. },
  26175. [
  26176. {
  26177. name: "Macro",
  26178. height: math.unit(23, "meters"),
  26179. default: true
  26180. },
  26181. ]
  26182. ))
  26183. characterMakers.push(() => makeCharacter(
  26184. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26185. {
  26186. front: {
  26187. height: math.unit(6, "feet"),
  26188. weight: math.unit(150, "lb"),
  26189. name: "Front",
  26190. image: {
  26191. source: "./media/characters/rhys-feline/front.svg",
  26192. extra: 2488 / 2308,
  26193. bottom: 35.67 / 2519.19
  26194. }
  26195. },
  26196. },
  26197. [
  26198. {
  26199. name: "Really Small",
  26200. height: math.unit(1, "nm")
  26201. },
  26202. {
  26203. name: "Micro",
  26204. height: math.unit(4, "inches")
  26205. },
  26206. {
  26207. name: "Normal",
  26208. height: math.unit(4 + 10 / 12, "feet"),
  26209. default: true
  26210. },
  26211. {
  26212. name: "Macro",
  26213. height: math.unit(100, "feet")
  26214. },
  26215. {
  26216. name: "Megamacto",
  26217. height: math.unit(50, "miles")
  26218. },
  26219. ]
  26220. ))
  26221. characterMakers.push(() => makeCharacter(
  26222. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26223. {
  26224. side: {
  26225. height: math.unit(30, "feet"),
  26226. weight: math.unit(35000, "kg"),
  26227. name: "Side",
  26228. image: {
  26229. source: "./media/characters/alydar/side.svg",
  26230. extra: 234 / 222,
  26231. bottom: 6.5 / 241
  26232. }
  26233. },
  26234. front: {
  26235. height: math.unit(30, "feet"),
  26236. weight: math.unit(35000, "kg"),
  26237. name: "Front",
  26238. image: {
  26239. source: "./media/characters/alydar/front.svg",
  26240. extra: 223.37 / 210.2,
  26241. bottom: 22.3 / 246.76
  26242. }
  26243. },
  26244. top: {
  26245. height: math.unit(64.54, "feet"),
  26246. weight: math.unit(35000, "kg"),
  26247. name: "Top",
  26248. image: {
  26249. source: "./media/characters/alydar/top.svg"
  26250. }
  26251. },
  26252. anthro: {
  26253. height: math.unit(30, "feet"),
  26254. weight: math.unit(9000, "kg"),
  26255. name: "Anthro",
  26256. image: {
  26257. source: "./media/characters/alydar/anthro.svg",
  26258. extra: 432 / 421,
  26259. bottom: 7.18 / 440
  26260. }
  26261. },
  26262. maw: {
  26263. height: math.unit(11.693, "feet"),
  26264. name: "Maw",
  26265. image: {
  26266. source: "./media/characters/alydar/maw.svg"
  26267. }
  26268. },
  26269. head: {
  26270. height: math.unit(11.693, "feet"),
  26271. name: "Head",
  26272. image: {
  26273. source: "./media/characters/alydar/head.svg"
  26274. }
  26275. },
  26276. headAlt: {
  26277. height: math.unit(12.861, "feet"),
  26278. name: "Head (Alt)",
  26279. image: {
  26280. source: "./media/characters/alydar/head-alt.svg"
  26281. }
  26282. },
  26283. wing: {
  26284. height: math.unit(20.712, "feet"),
  26285. name: "Wing",
  26286. image: {
  26287. source: "./media/characters/alydar/wing.svg"
  26288. }
  26289. },
  26290. wingFeather: {
  26291. height: math.unit(9.662, "feet"),
  26292. name: "Wing Feather",
  26293. image: {
  26294. source: "./media/characters/alydar/wing-feather.svg"
  26295. }
  26296. },
  26297. countourFeather: {
  26298. height: math.unit(4.154, "feet"),
  26299. name: "Contour Feather",
  26300. image: {
  26301. source: "./media/characters/alydar/contour-feather.svg"
  26302. }
  26303. },
  26304. },
  26305. [
  26306. {
  26307. name: "Diplomatic",
  26308. height: math.unit(13, "feet"),
  26309. default: true
  26310. },
  26311. {
  26312. name: "Small",
  26313. height: math.unit(30, "feet")
  26314. },
  26315. {
  26316. name: "Normal",
  26317. height: math.unit(95, "feet"),
  26318. default: true
  26319. },
  26320. {
  26321. name: "Large",
  26322. height: math.unit(285, "feet")
  26323. },
  26324. {
  26325. name: "Incomprehensible",
  26326. height: math.unit(450, "megameters")
  26327. },
  26328. ]
  26329. ))
  26330. characterMakers.push(() => makeCharacter(
  26331. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26332. {
  26333. side: {
  26334. height: math.unit(11, "feet"),
  26335. weight: math.unit(1750, "kg"),
  26336. name: "Side",
  26337. image: {
  26338. source: "./media/characters/selicia/side.svg",
  26339. extra: 440 / 396,
  26340. bottom: 24.8 / 465.979
  26341. }
  26342. },
  26343. maw: {
  26344. height: math.unit(4.665, "feet"),
  26345. name: "Maw",
  26346. image: {
  26347. source: "./media/characters/selicia/maw.svg"
  26348. }
  26349. },
  26350. },
  26351. [
  26352. {
  26353. name: "Normal",
  26354. height: math.unit(11, "feet"),
  26355. default: true
  26356. },
  26357. ]
  26358. ))
  26359. characterMakers.push(() => makeCharacter(
  26360. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26361. {
  26362. side: {
  26363. height: math.unit(2 + 6 / 12, "feet"),
  26364. weight: math.unit(30, "lb"),
  26365. name: "Side",
  26366. image: {
  26367. source: "./media/characters/layla/side.svg",
  26368. extra: 244 / 188,
  26369. bottom: 18.2 / 262.1
  26370. }
  26371. },
  26372. back: {
  26373. height: math.unit(2 + 6 / 12, "feet"),
  26374. weight: math.unit(30, "lb"),
  26375. name: "Back",
  26376. image: {
  26377. source: "./media/characters/layla/back.svg",
  26378. extra: 308 / 241.5,
  26379. bottom: 8.9 / 316.8
  26380. }
  26381. },
  26382. cumming: {
  26383. height: math.unit(2 + 6 / 12, "feet"),
  26384. weight: math.unit(30, "lb"),
  26385. name: "Cumming",
  26386. image: {
  26387. source: "./media/characters/layla/cumming.svg",
  26388. extra: 342 / 279,
  26389. bottom: 595 / 938
  26390. }
  26391. },
  26392. dickFlaccid: {
  26393. height: math.unit(2.595, "feet"),
  26394. name: "Flaccid Genitals",
  26395. image: {
  26396. source: "./media/characters/layla/dick-flaccid.svg"
  26397. }
  26398. },
  26399. dickErect: {
  26400. height: math.unit(2.359, "feet"),
  26401. name: "Erect Genitals",
  26402. image: {
  26403. source: "./media/characters/layla/dick-erect.svg"
  26404. }
  26405. },
  26406. dragon: {
  26407. height: math.unit(40, "feet"),
  26408. name: "Dragon",
  26409. image: {
  26410. source: "./media/characters/layla/dragon.svg",
  26411. extra: 610/535,
  26412. bottom: 367/977
  26413. }
  26414. },
  26415. taur: {
  26416. height: math.unit(30, "feet"),
  26417. name: "Taur",
  26418. image: {
  26419. source: "./media/characters/layla/taur.svg",
  26420. extra: 1268/1199,
  26421. bottom: 112/1380
  26422. }
  26423. },
  26424. },
  26425. [
  26426. {
  26427. name: "Micro",
  26428. height: math.unit(1, "inch")
  26429. },
  26430. {
  26431. name: "Small",
  26432. height: math.unit(1, "foot")
  26433. },
  26434. {
  26435. name: "Normal",
  26436. height: math.unit(2 + 6 / 12, "feet"),
  26437. default: true
  26438. },
  26439. {
  26440. name: "Macro",
  26441. height: math.unit(200, "feet")
  26442. },
  26443. {
  26444. name: "Megamacro",
  26445. height: math.unit(1000, "miles")
  26446. },
  26447. {
  26448. name: "Planetary",
  26449. height: math.unit(8000, "miles")
  26450. },
  26451. {
  26452. name: "True Layla",
  26453. height: math.unit(200000 * 7, "multiverses")
  26454. },
  26455. ]
  26456. ))
  26457. characterMakers.push(() => makeCharacter(
  26458. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26459. {
  26460. back: {
  26461. height: math.unit(10.5, "feet"),
  26462. weight: math.unit(800, "lb"),
  26463. name: "Back",
  26464. image: {
  26465. source: "./media/characters/knox/back.svg",
  26466. extra: 1486 / 1089,
  26467. bottom: 107 / 1601.4
  26468. }
  26469. },
  26470. side: {
  26471. height: math.unit(10.5, "feet"),
  26472. weight: math.unit(800, "lb"),
  26473. name: "Side",
  26474. image: {
  26475. source: "./media/characters/knox/side.svg",
  26476. extra: 244 / 218,
  26477. bottom: 14 / 260
  26478. }
  26479. },
  26480. },
  26481. [
  26482. {
  26483. name: "Compact",
  26484. height: math.unit(10.5, "feet"),
  26485. default: true
  26486. },
  26487. {
  26488. name: "Dynamax",
  26489. height: math.unit(210, "feet")
  26490. },
  26491. {
  26492. name: "Full Macro",
  26493. height: math.unit(850, "feet")
  26494. },
  26495. ]
  26496. ))
  26497. characterMakers.push(() => makeCharacter(
  26498. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26499. {
  26500. front: {
  26501. height: math.unit(28, "feet"),
  26502. weight: math.unit(10500, "lb"),
  26503. name: "Front",
  26504. image: {
  26505. source: "./media/characters/kayda/front.svg",
  26506. extra: 1536 / 1428,
  26507. bottom: 68.7 / 1603
  26508. }
  26509. },
  26510. back: {
  26511. height: math.unit(28, "feet"),
  26512. weight: math.unit(10500, "lb"),
  26513. name: "Back",
  26514. image: {
  26515. source: "./media/characters/kayda/back.svg",
  26516. extra: 1557 / 1464,
  26517. bottom: 39.5 / 1597.49
  26518. }
  26519. },
  26520. dick: {
  26521. height: math.unit(3.858, "feet"),
  26522. name: "Dick",
  26523. image: {
  26524. source: "./media/characters/kayda/dick.svg"
  26525. }
  26526. },
  26527. },
  26528. [
  26529. {
  26530. name: "Macro",
  26531. height: math.unit(28, "feet"),
  26532. default: true
  26533. },
  26534. ]
  26535. ))
  26536. characterMakers.push(() => makeCharacter(
  26537. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26538. {
  26539. front: {
  26540. height: math.unit(10 + 11 / 12, "feet"),
  26541. weight: math.unit(1400, "lb"),
  26542. name: "Front",
  26543. image: {
  26544. source: "./media/characters/brian/front.svg",
  26545. extra: 737 / 692,
  26546. bottom: 55.4 / 785
  26547. }
  26548. },
  26549. },
  26550. [
  26551. {
  26552. name: "Normal",
  26553. height: math.unit(10 + 11 / 12, "feet"),
  26554. default: true
  26555. },
  26556. ]
  26557. ))
  26558. characterMakers.push(() => makeCharacter(
  26559. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26560. {
  26561. front: {
  26562. height: math.unit(5 + 8 / 12, "feet"),
  26563. weight: math.unit(140, "lb"),
  26564. name: "Front",
  26565. image: {
  26566. source: "./media/characters/khemri/front.svg",
  26567. extra: 4780 / 4059,
  26568. bottom: 80.1 / 4859.25
  26569. }
  26570. },
  26571. },
  26572. [
  26573. {
  26574. name: "Micro",
  26575. height: math.unit(6, "inches")
  26576. },
  26577. {
  26578. name: "Normal",
  26579. height: math.unit(5 + 8 / 12, "feet"),
  26580. default: true
  26581. },
  26582. ]
  26583. ))
  26584. characterMakers.push(() => makeCharacter(
  26585. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26586. {
  26587. front: {
  26588. height: math.unit(13, "feet"),
  26589. weight: math.unit(1700, "lb"),
  26590. name: "Front",
  26591. image: {
  26592. source: "./media/characters/felix-braveheart/front.svg",
  26593. extra: 1222 / 1157,
  26594. bottom: 53.2 / 1280
  26595. }
  26596. },
  26597. back: {
  26598. height: math.unit(13, "feet"),
  26599. weight: math.unit(1700, "lb"),
  26600. name: "Back",
  26601. image: {
  26602. source: "./media/characters/felix-braveheart/back.svg",
  26603. extra: 1277 / 1203,
  26604. bottom: 50.2 / 1327
  26605. }
  26606. },
  26607. feral: {
  26608. height: math.unit(6, "feet"),
  26609. weight: math.unit(400, "lb"),
  26610. name: "Feral",
  26611. image: {
  26612. source: "./media/characters/felix-braveheart/feral.svg",
  26613. extra: 682 / 625,
  26614. bottom: 6.9 / 688
  26615. }
  26616. },
  26617. },
  26618. [
  26619. {
  26620. name: "Normal",
  26621. height: math.unit(13, "feet"),
  26622. default: true
  26623. },
  26624. ]
  26625. ))
  26626. characterMakers.push(() => makeCharacter(
  26627. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26628. {
  26629. side: {
  26630. height: math.unit(5 + 11 / 12, "feet"),
  26631. weight: math.unit(1400, "lb"),
  26632. name: "Side",
  26633. image: {
  26634. source: "./media/characters/shadow-blade/side.svg",
  26635. extra: 1726 / 1267,
  26636. bottom: 58.4 / 1785
  26637. }
  26638. },
  26639. },
  26640. [
  26641. {
  26642. name: "Normal",
  26643. height: math.unit(5 + 11 / 12, "feet"),
  26644. default: true
  26645. },
  26646. ]
  26647. ))
  26648. characterMakers.push(() => makeCharacter(
  26649. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26650. {
  26651. front: {
  26652. height: math.unit(1 + 6 / 12, "feet"),
  26653. weight: math.unit(25, "lb"),
  26654. name: "Front",
  26655. image: {
  26656. source: "./media/characters/karla-halldor/front.svg",
  26657. extra: 1459 / 1383,
  26658. bottom: 12 / 1472
  26659. }
  26660. },
  26661. },
  26662. [
  26663. {
  26664. name: "Normal",
  26665. height: math.unit(1 + 6 / 12, "feet"),
  26666. default: true
  26667. },
  26668. ]
  26669. ))
  26670. characterMakers.push(() => makeCharacter(
  26671. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26672. {
  26673. front: {
  26674. height: math.unit(6 + 2 / 12, "feet"),
  26675. weight: math.unit(160, "lb"),
  26676. name: "Front",
  26677. image: {
  26678. source: "./media/characters/ariam/front.svg",
  26679. extra: 1073/976,
  26680. bottom: 52/1125
  26681. }
  26682. },
  26683. back: {
  26684. height: math.unit(6 + 2/12, "feet"),
  26685. weight: math.unit(160, "lb"),
  26686. name: "Back",
  26687. image: {
  26688. source: "./media/characters/ariam/back.svg",
  26689. extra: 1103/1023,
  26690. bottom: 9/1112
  26691. }
  26692. },
  26693. dressed: {
  26694. height: math.unit(6 + 2/12, "feet"),
  26695. weight: math.unit(160, "lb"),
  26696. name: "Dressed",
  26697. image: {
  26698. source: "./media/characters/ariam/dressed.svg",
  26699. extra: 1099/1009,
  26700. bottom: 25/1124
  26701. }
  26702. },
  26703. squatting: {
  26704. height: math.unit(4.1, "feet"),
  26705. weight: math.unit(160, "lb"),
  26706. name: "Squatting",
  26707. image: {
  26708. source: "./media/characters/ariam/squatting.svg",
  26709. extra: 2617 / 2112,
  26710. bottom: 61.2 / 2681,
  26711. }
  26712. },
  26713. },
  26714. [
  26715. {
  26716. name: "Normal",
  26717. height: math.unit(6 + 2 / 12, "feet"),
  26718. default: true
  26719. },
  26720. {
  26721. name: "Normal+",
  26722. height: math.unit(4, "meters")
  26723. },
  26724. {
  26725. name: "Macro",
  26726. height: math.unit(50, "meters")
  26727. },
  26728. {
  26729. name: "Macro+",
  26730. height: math.unit(100, "meters")
  26731. },
  26732. {
  26733. name: "Megamacro",
  26734. height: math.unit(20, "km")
  26735. },
  26736. {
  26737. name: "Caretaker",
  26738. height: math.unit(444, "megameters")
  26739. },
  26740. ]
  26741. ))
  26742. characterMakers.push(() => makeCharacter(
  26743. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26744. {
  26745. front: {
  26746. height: math.unit(1.67, "meters"),
  26747. weight: math.unit(140, "lb"),
  26748. name: "Front",
  26749. image: {
  26750. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26751. extra: 438 / 410,
  26752. bottom: 0.75 / 439
  26753. }
  26754. },
  26755. },
  26756. [
  26757. {
  26758. name: "Shrunken",
  26759. height: math.unit(7.6, "cm")
  26760. },
  26761. {
  26762. name: "Human Scale",
  26763. height: math.unit(1.67, "meters")
  26764. },
  26765. {
  26766. name: "Wolxi Scale",
  26767. height: math.unit(36.7, "meters"),
  26768. default: true
  26769. },
  26770. ]
  26771. ))
  26772. characterMakers.push(() => makeCharacter(
  26773. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26774. {
  26775. front: {
  26776. height: math.unit(1.73, "meters"),
  26777. weight: math.unit(240, "lb"),
  26778. name: "Front",
  26779. image: {
  26780. source: "./media/characters/izue-two-mothers/front.svg",
  26781. extra: 469 / 437,
  26782. bottom: 1.24 / 470.6
  26783. }
  26784. },
  26785. },
  26786. [
  26787. {
  26788. name: "Shrunken",
  26789. height: math.unit(7.86, "cm")
  26790. },
  26791. {
  26792. name: "Human Scale",
  26793. height: math.unit(1.73, "meters")
  26794. },
  26795. {
  26796. name: "Wolxi Scale",
  26797. height: math.unit(38, "meters"),
  26798. default: true
  26799. },
  26800. ]
  26801. ))
  26802. characterMakers.push(() => makeCharacter(
  26803. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26804. {
  26805. front: {
  26806. height: math.unit(1.55, "meters"),
  26807. weight: math.unit(120, "lb"),
  26808. name: "Front",
  26809. image: {
  26810. source: "./media/characters/teeku-love-shack/front.svg",
  26811. extra: 387 / 362,
  26812. bottom: 1.51 / 388
  26813. }
  26814. },
  26815. },
  26816. [
  26817. {
  26818. name: "Shrunken",
  26819. height: math.unit(7, "cm")
  26820. },
  26821. {
  26822. name: "Human Scale",
  26823. height: math.unit(1.55, "meters")
  26824. },
  26825. {
  26826. name: "Wolxi Scale",
  26827. height: math.unit(34.1, "meters"),
  26828. default: true
  26829. },
  26830. ]
  26831. ))
  26832. characterMakers.push(() => makeCharacter(
  26833. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26834. {
  26835. front: {
  26836. height: math.unit(1.83, "meters"),
  26837. weight: math.unit(135, "lb"),
  26838. name: "Front",
  26839. image: {
  26840. source: "./media/characters/dejma-the-red/front.svg",
  26841. extra: 480 / 458,
  26842. bottom: 1.8 / 482
  26843. }
  26844. },
  26845. },
  26846. [
  26847. {
  26848. name: "Shrunken",
  26849. height: math.unit(8.3, "cm")
  26850. },
  26851. {
  26852. name: "Human Scale",
  26853. height: math.unit(1.83, "meters")
  26854. },
  26855. {
  26856. name: "Wolxi Scale",
  26857. height: math.unit(40, "meters"),
  26858. default: true
  26859. },
  26860. ]
  26861. ))
  26862. characterMakers.push(() => makeCharacter(
  26863. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26864. {
  26865. front: {
  26866. height: math.unit(1.78, "meters"),
  26867. weight: math.unit(65, "kg"),
  26868. name: "Front",
  26869. image: {
  26870. source: "./media/characters/aki/front.svg",
  26871. extra: 452 / 415
  26872. }
  26873. },
  26874. frontNsfw: {
  26875. height: math.unit(1.78, "meters"),
  26876. weight: math.unit(65, "kg"),
  26877. name: "Front (NSFW)",
  26878. image: {
  26879. source: "./media/characters/aki/front-nsfw.svg",
  26880. extra: 452 / 415
  26881. }
  26882. },
  26883. back: {
  26884. height: math.unit(1.78, "meters"),
  26885. weight: math.unit(65, "kg"),
  26886. name: "Back",
  26887. image: {
  26888. source: "./media/characters/aki/back.svg",
  26889. extra: 452 / 415
  26890. }
  26891. },
  26892. rump: {
  26893. height: math.unit(2.05, "feet"),
  26894. name: "Rump",
  26895. image: {
  26896. source: "./media/characters/aki/rump.svg"
  26897. }
  26898. },
  26899. dick: {
  26900. height: math.unit(0.95, "feet"),
  26901. name: "Dick",
  26902. image: {
  26903. source: "./media/characters/aki/dick.svg"
  26904. }
  26905. },
  26906. },
  26907. [
  26908. {
  26909. name: "Micro",
  26910. height: math.unit(15, "cm")
  26911. },
  26912. {
  26913. name: "Normal",
  26914. height: math.unit(178, "cm"),
  26915. default: true
  26916. },
  26917. {
  26918. name: "Macro",
  26919. height: math.unit(214, "m")
  26920. },
  26921. {
  26922. name: "Macro+",
  26923. height: math.unit(534, "m")
  26924. },
  26925. ]
  26926. ))
  26927. characterMakers.push(() => makeCharacter(
  26928. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26929. {
  26930. front: {
  26931. height: math.unit(5 + 5 / 12, "feet"),
  26932. weight: math.unit(120, "lb"),
  26933. name: "Front",
  26934. image: {
  26935. source: "./media/characters/ari/front.svg",
  26936. extra: 1550/1471,
  26937. bottom: 39/1589
  26938. }
  26939. },
  26940. },
  26941. [
  26942. {
  26943. name: "Normal",
  26944. height: math.unit(5 + 5 / 12, "feet")
  26945. },
  26946. {
  26947. name: "Macro",
  26948. height: math.unit(100, "feet"),
  26949. default: true
  26950. },
  26951. {
  26952. name: "Megamacro",
  26953. height: math.unit(100, "miles")
  26954. },
  26955. {
  26956. name: "Gigamacro",
  26957. height: math.unit(80000, "miles")
  26958. },
  26959. ]
  26960. ))
  26961. characterMakers.push(() => makeCharacter(
  26962. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26963. {
  26964. side: {
  26965. height: math.unit(9, "feet"),
  26966. weight: math.unit(400, "kg"),
  26967. name: "Side",
  26968. image: {
  26969. source: "./media/characters/bolt/side.svg",
  26970. extra: 1126 / 896,
  26971. bottom: 60 / 1187.3,
  26972. }
  26973. },
  26974. },
  26975. [
  26976. {
  26977. name: "Micro",
  26978. height: math.unit(5, "inches")
  26979. },
  26980. {
  26981. name: "Normal",
  26982. height: math.unit(9, "feet"),
  26983. default: true
  26984. },
  26985. {
  26986. name: "Macro",
  26987. height: math.unit(700, "feet")
  26988. },
  26989. {
  26990. name: "Max Size",
  26991. height: math.unit(1.52e22, "yottameters")
  26992. },
  26993. ]
  26994. ))
  26995. characterMakers.push(() => makeCharacter(
  26996. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26997. {
  26998. front: {
  26999. height: math.unit(4.3, "meters"),
  27000. weight: math.unit(3, "tons"),
  27001. name: "Front",
  27002. image: {
  27003. source: "./media/characters/draekon-sylviar/front.svg",
  27004. extra: 2072/1512,
  27005. bottom: 74/2146
  27006. }
  27007. },
  27008. back: {
  27009. height: math.unit(4.3, "meters"),
  27010. weight: math.unit(3, "tons"),
  27011. name: "Back",
  27012. image: {
  27013. source: "./media/characters/draekon-sylviar/back.svg",
  27014. extra: 1639/1483,
  27015. bottom: 41/1680
  27016. }
  27017. },
  27018. feral: {
  27019. height: math.unit(1.15, "meters"),
  27020. weight: math.unit(3, "tons"),
  27021. name: "Feral",
  27022. image: {
  27023. source: "./media/characters/draekon-sylviar/feral.svg",
  27024. extra: 1033/395,
  27025. bottom: 130/1163
  27026. }
  27027. },
  27028. maw: {
  27029. height: math.unit(1.3, "meters"),
  27030. name: "Maw",
  27031. image: {
  27032. source: "./media/characters/draekon-sylviar/maw.svg"
  27033. }
  27034. },
  27035. mawSeparated: {
  27036. height: math.unit(1.53, "meters"),
  27037. name: "Separated Maw",
  27038. image: {
  27039. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27040. }
  27041. },
  27042. tail: {
  27043. height: math.unit(1.15, "meters"),
  27044. name: "Tail",
  27045. image: {
  27046. source: "./media/characters/draekon-sylviar/tail.svg"
  27047. }
  27048. },
  27049. tailDick: {
  27050. height: math.unit(1.15, "meters"),
  27051. name: "Tail (Dick)",
  27052. image: {
  27053. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27054. }
  27055. },
  27056. tailDickSeparated: {
  27057. height: math.unit(1.19, "meters"),
  27058. name: "Tail (Separated Dick)",
  27059. image: {
  27060. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27061. }
  27062. },
  27063. slit: {
  27064. height: math.unit(1, "meters"),
  27065. name: "Slit",
  27066. image: {
  27067. source: "./media/characters/draekon-sylviar/slit.svg"
  27068. }
  27069. },
  27070. dick: {
  27071. height: math.unit(1.15, "meters"),
  27072. name: "Dick",
  27073. image: {
  27074. source: "./media/characters/draekon-sylviar/dick.svg"
  27075. }
  27076. },
  27077. dickSeparated: {
  27078. height: math.unit(1.1, "meters"),
  27079. name: "Separated Dick",
  27080. image: {
  27081. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27082. }
  27083. },
  27084. sheath: {
  27085. height: math.unit(1.15, "meters"),
  27086. name: "Sheath",
  27087. image: {
  27088. source: "./media/characters/draekon-sylviar/sheath.svg"
  27089. }
  27090. },
  27091. },
  27092. [
  27093. {
  27094. name: "Small",
  27095. height: math.unit(4.53 / 2, "meters"),
  27096. default: true
  27097. },
  27098. {
  27099. name: "Normal",
  27100. height: math.unit(4.53, "meters"),
  27101. default: true
  27102. },
  27103. {
  27104. name: "Large",
  27105. height: math.unit(4.53 * 2, "meters"),
  27106. },
  27107. ]
  27108. ))
  27109. characterMakers.push(() => makeCharacter(
  27110. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27111. {
  27112. front: {
  27113. height: math.unit(6 + 2 / 12, "feet"),
  27114. weight: math.unit(180, "lb"),
  27115. name: "Front",
  27116. image: {
  27117. source: "./media/characters/brawler/front.svg",
  27118. extra: 3301 / 3027,
  27119. bottom: 138 / 3439
  27120. }
  27121. },
  27122. },
  27123. [
  27124. {
  27125. name: "Normal",
  27126. height: math.unit(6 + 2 / 12, "feet"),
  27127. default: true
  27128. },
  27129. ]
  27130. ))
  27131. characterMakers.push(() => makeCharacter(
  27132. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27133. {
  27134. front: {
  27135. height: math.unit(11, "feet"),
  27136. weight: math.unit(1000, "lb"),
  27137. name: "Front",
  27138. image: {
  27139. source: "./media/characters/alex/front.svg",
  27140. bottom: 44.5 / 620
  27141. }
  27142. },
  27143. },
  27144. [
  27145. {
  27146. name: "Micro",
  27147. height: math.unit(5, "inches")
  27148. },
  27149. {
  27150. name: "Normal",
  27151. height: math.unit(11, "feet"),
  27152. default: true
  27153. },
  27154. {
  27155. name: "Macro",
  27156. height: math.unit(9.5e9, "feet")
  27157. },
  27158. {
  27159. name: "Max Size",
  27160. height: math.unit(1.4e283, "yottameters")
  27161. },
  27162. ]
  27163. ))
  27164. characterMakers.push(() => makeCharacter(
  27165. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27166. {
  27167. female: {
  27168. height: math.unit(29.9, "m"),
  27169. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27170. name: "Female",
  27171. image: {
  27172. source: "./media/characters/zenari/female.svg",
  27173. extra: 3281.6 / 3217,
  27174. bottom: 72.2 / 3353
  27175. }
  27176. },
  27177. male: {
  27178. height: math.unit(27.7, "m"),
  27179. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27180. name: "Male",
  27181. image: {
  27182. source: "./media/characters/zenari/male.svg",
  27183. extra: 3008 / 2991,
  27184. bottom: 54.6 / 3069
  27185. }
  27186. },
  27187. },
  27188. [
  27189. {
  27190. name: "Macro",
  27191. height: math.unit(29.7, "meters"),
  27192. default: true
  27193. },
  27194. ]
  27195. ))
  27196. characterMakers.push(() => makeCharacter(
  27197. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27198. {
  27199. female: {
  27200. height: math.unit(23.8, "m"),
  27201. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27202. name: "Female",
  27203. image: {
  27204. source: "./media/characters/mactarian/female.svg",
  27205. extra: 2662 / 2569,
  27206. bottom: 73 / 2736
  27207. }
  27208. },
  27209. male: {
  27210. height: math.unit(23.8, "m"),
  27211. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27212. name: "Male",
  27213. image: {
  27214. source: "./media/characters/mactarian/male.svg",
  27215. extra: 2673 / 2600,
  27216. bottom: 76 / 2750
  27217. }
  27218. },
  27219. },
  27220. [
  27221. {
  27222. name: "Macro",
  27223. height: math.unit(23.8, "meters"),
  27224. default: true
  27225. },
  27226. ]
  27227. ))
  27228. characterMakers.push(() => makeCharacter(
  27229. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27230. {
  27231. female: {
  27232. height: math.unit(19.3, "m"),
  27233. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27234. name: "Female",
  27235. image: {
  27236. source: "./media/characters/umok/female.svg",
  27237. extra: 2186 / 2078,
  27238. bottom: 87 / 2277
  27239. }
  27240. },
  27241. male: {
  27242. height: math.unit(19.5, "m"),
  27243. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27244. name: "Male",
  27245. image: {
  27246. source: "./media/characters/umok/male.svg",
  27247. extra: 2233 / 2140,
  27248. bottom: 24.4 / 2258
  27249. }
  27250. },
  27251. },
  27252. [
  27253. {
  27254. name: "Macro",
  27255. height: math.unit(19.3, "meters"),
  27256. default: true
  27257. },
  27258. ]
  27259. ))
  27260. characterMakers.push(() => makeCharacter(
  27261. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27262. {
  27263. female: {
  27264. height: math.unit(26.15, "m"),
  27265. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27266. name: "Female",
  27267. image: {
  27268. source: "./media/characters/joraxian/female.svg",
  27269. extra: 2912 / 2824,
  27270. bottom: 36 / 2956
  27271. }
  27272. },
  27273. male: {
  27274. height: math.unit(25.4, "m"),
  27275. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27276. name: "Male",
  27277. image: {
  27278. source: "./media/characters/joraxian/male.svg",
  27279. extra: 2877 / 2721,
  27280. bottom: 82 / 2967
  27281. }
  27282. },
  27283. },
  27284. [
  27285. {
  27286. name: "Macro",
  27287. height: math.unit(26.15, "meters"),
  27288. default: true
  27289. },
  27290. ]
  27291. ))
  27292. characterMakers.push(() => makeCharacter(
  27293. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27294. {
  27295. female: {
  27296. height: math.unit(21.6, "m"),
  27297. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27298. name: "Female",
  27299. image: {
  27300. source: "./media/characters/sthara/female.svg",
  27301. extra: 2516 / 2347,
  27302. bottom: 21.5 / 2537
  27303. }
  27304. },
  27305. male: {
  27306. height: math.unit(24, "m"),
  27307. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27308. name: "Male",
  27309. image: {
  27310. source: "./media/characters/sthara/male.svg",
  27311. extra: 2732 / 2607,
  27312. bottom: 23 / 2732
  27313. }
  27314. },
  27315. },
  27316. [
  27317. {
  27318. name: "Macro",
  27319. height: math.unit(21.6, "meters"),
  27320. default: true
  27321. },
  27322. ]
  27323. ))
  27324. characterMakers.push(() => makeCharacter(
  27325. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27326. {
  27327. front: {
  27328. height: math.unit(6 + 4 / 12, "feet"),
  27329. weight: math.unit(175, "lb"),
  27330. name: "Front",
  27331. image: {
  27332. source: "./media/characters/luka-bryzant/front.svg",
  27333. extra: 311 / 289,
  27334. bottom: 4 / 315
  27335. }
  27336. },
  27337. back: {
  27338. height: math.unit(6 + 4 / 12, "feet"),
  27339. weight: math.unit(175, "lb"),
  27340. name: "Back",
  27341. image: {
  27342. source: "./media/characters/luka-bryzant/back.svg",
  27343. extra: 311 / 289,
  27344. bottom: 3.8 / 313.7
  27345. }
  27346. },
  27347. },
  27348. [
  27349. {
  27350. name: "Micro",
  27351. height: math.unit(10, "inches")
  27352. },
  27353. {
  27354. name: "Normal",
  27355. height: math.unit(6 + 4 / 12, "feet"),
  27356. default: true
  27357. },
  27358. {
  27359. name: "Large",
  27360. height: math.unit(12, "feet")
  27361. },
  27362. ]
  27363. ))
  27364. characterMakers.push(() => makeCharacter(
  27365. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27366. {
  27367. front: {
  27368. height: math.unit(5 + 7 / 12, "feet"),
  27369. weight: math.unit(185, "lb"),
  27370. name: "Front",
  27371. image: {
  27372. source: "./media/characters/aman-aquila/front.svg",
  27373. extra: 1013 / 976,
  27374. bottom: 45.6 / 1057
  27375. }
  27376. },
  27377. side: {
  27378. height: math.unit(5 + 7 / 12, "feet"),
  27379. weight: math.unit(185, "lb"),
  27380. name: "Side",
  27381. image: {
  27382. source: "./media/characters/aman-aquila/side.svg",
  27383. extra: 1054 / 1011,
  27384. bottom: 15 / 1070
  27385. }
  27386. },
  27387. back: {
  27388. height: math.unit(5 + 7 / 12, "feet"),
  27389. weight: math.unit(185, "lb"),
  27390. name: "Back",
  27391. image: {
  27392. source: "./media/characters/aman-aquila/back.svg",
  27393. extra: 1026 / 970,
  27394. bottom: 12 / 1039
  27395. }
  27396. },
  27397. head: {
  27398. height: math.unit(1.211, "feet"),
  27399. name: "Head",
  27400. image: {
  27401. source: "./media/characters/aman-aquila/head.svg",
  27402. }
  27403. },
  27404. },
  27405. [
  27406. {
  27407. name: "Minimicro",
  27408. height: math.unit(0.057, "inches")
  27409. },
  27410. {
  27411. name: "Micro",
  27412. height: math.unit(7, "inches")
  27413. },
  27414. {
  27415. name: "Mini",
  27416. height: math.unit(3 + 7 / 12, "feet")
  27417. },
  27418. {
  27419. name: "Normal",
  27420. height: math.unit(5 + 7 / 12, "feet"),
  27421. default: true
  27422. },
  27423. {
  27424. name: "Macro",
  27425. height: math.unit(157 + 7 / 12, "feet")
  27426. },
  27427. {
  27428. name: "Megamacro",
  27429. height: math.unit(1557 + 7 / 12, "feet")
  27430. },
  27431. {
  27432. name: "Gigamacro",
  27433. height: math.unit(15557 + 7 / 12, "feet")
  27434. },
  27435. ]
  27436. ))
  27437. characterMakers.push(() => makeCharacter(
  27438. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27439. {
  27440. front: {
  27441. height: math.unit(3 + 2 / 12, "inches"),
  27442. weight: math.unit(0.3, "ounces"),
  27443. name: "Front",
  27444. image: {
  27445. source: "./media/characters/hiphae/front.svg",
  27446. extra: 1931 / 1683,
  27447. bottom: 24 / 1955
  27448. }
  27449. },
  27450. },
  27451. [
  27452. {
  27453. name: "Normal",
  27454. height: math.unit(3 + 1 / 2, "inches"),
  27455. default: true
  27456. },
  27457. ]
  27458. ))
  27459. characterMakers.push(() => makeCharacter(
  27460. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27461. {
  27462. front: {
  27463. height: math.unit(5 + 10 / 12, "feet"),
  27464. weight: math.unit(165, "lb"),
  27465. name: "Front",
  27466. image: {
  27467. source: "./media/characters/nicky/front.svg",
  27468. extra: 3144 / 2886,
  27469. bottom: 45.6 / 3192
  27470. }
  27471. },
  27472. back: {
  27473. height: math.unit(5 + 10 / 12, "feet"),
  27474. weight: math.unit(165, "lb"),
  27475. name: "Back",
  27476. image: {
  27477. source: "./media/characters/nicky/back.svg",
  27478. extra: 3055 / 2804,
  27479. bottom: 28.4 / 3087
  27480. }
  27481. },
  27482. frontclothed: {
  27483. height: math.unit(5 + 10 / 12, "feet"),
  27484. weight: math.unit(165, "lb"),
  27485. name: "Front-clothed",
  27486. image: {
  27487. source: "./media/characters/nicky/front-clothed.svg",
  27488. extra: 3184.9 / 2926.9,
  27489. bottom: 86.5 / 3239.9
  27490. }
  27491. },
  27492. foot: {
  27493. height: math.unit(1.16, "feet"),
  27494. name: "Foot",
  27495. image: {
  27496. source: "./media/characters/nicky/foot.svg"
  27497. }
  27498. },
  27499. feet: {
  27500. height: math.unit(1.34, "feet"),
  27501. name: "Feet",
  27502. image: {
  27503. source: "./media/characters/nicky/feet.svg"
  27504. }
  27505. },
  27506. maw: {
  27507. height: math.unit(0.9, "feet"),
  27508. name: "Maw",
  27509. image: {
  27510. source: "./media/characters/nicky/maw.svg"
  27511. }
  27512. },
  27513. },
  27514. [
  27515. {
  27516. name: "Normal",
  27517. height: math.unit(5 + 10 / 12, "feet"),
  27518. default: true
  27519. },
  27520. {
  27521. name: "Macro",
  27522. height: math.unit(60, "feet")
  27523. },
  27524. {
  27525. name: "Megamacro",
  27526. height: math.unit(1, "mile")
  27527. },
  27528. ]
  27529. ))
  27530. characterMakers.push(() => makeCharacter(
  27531. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27532. {
  27533. side: {
  27534. height: math.unit(10, "feet"),
  27535. weight: math.unit(600, "lb"),
  27536. name: "Side",
  27537. image: {
  27538. source: "./media/characters/blair/side.svg",
  27539. bottom: 16.6 / 475,
  27540. extra: 458 / 431
  27541. }
  27542. },
  27543. },
  27544. [
  27545. {
  27546. name: "Micro",
  27547. height: math.unit(8, "inches")
  27548. },
  27549. {
  27550. name: "Normal",
  27551. height: math.unit(10, "feet"),
  27552. default: true
  27553. },
  27554. {
  27555. name: "Macro",
  27556. height: math.unit(180, "feet")
  27557. },
  27558. ]
  27559. ))
  27560. characterMakers.push(() => makeCharacter(
  27561. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27562. {
  27563. front: {
  27564. height: math.unit(5 + 4 / 12, "feet"),
  27565. weight: math.unit(125, "lb"),
  27566. name: "Front",
  27567. image: {
  27568. source: "./media/characters/fisher/front.svg",
  27569. extra: 444 / 390,
  27570. bottom: 2 / 444.8
  27571. }
  27572. },
  27573. },
  27574. [
  27575. {
  27576. name: "Micro",
  27577. height: math.unit(4, "inches")
  27578. },
  27579. {
  27580. name: "Normal",
  27581. height: math.unit(5 + 4 / 12, "feet"),
  27582. default: true
  27583. },
  27584. {
  27585. name: "Macro",
  27586. height: math.unit(100, "feet")
  27587. },
  27588. ]
  27589. ))
  27590. characterMakers.push(() => makeCharacter(
  27591. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27592. {
  27593. front: {
  27594. height: math.unit(6.71, "feet"),
  27595. weight: math.unit(200, "lb"),
  27596. preyCapacity: math.unit(1000000, "people"),
  27597. name: "Front",
  27598. image: {
  27599. source: "./media/characters/gliss/front.svg",
  27600. extra: 2347 / 2231,
  27601. bottom: 113 / 2462
  27602. }
  27603. },
  27604. hammerspaceSize: {
  27605. height: math.unit(6.71 * 717, "feet"),
  27606. weight: math.unit(200, "lb"),
  27607. preyCapacity: math.unit(1000000, "people"),
  27608. name: "Hammerspace Size",
  27609. image: {
  27610. source: "./media/characters/gliss/front.svg",
  27611. extra: 2347 / 2231,
  27612. bottom: 113 / 2462
  27613. }
  27614. },
  27615. },
  27616. [
  27617. {
  27618. name: "Normal",
  27619. height: math.unit(6.71, "feet"),
  27620. default: true
  27621. },
  27622. ]
  27623. ))
  27624. characterMakers.push(() => makeCharacter(
  27625. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27626. {
  27627. side: {
  27628. height: math.unit(1.44, "m"),
  27629. weight: math.unit(80, "kg"),
  27630. name: "Side",
  27631. image: {
  27632. source: "./media/characters/dune-anderson/side.svg",
  27633. bottom: 49 / 1426
  27634. }
  27635. },
  27636. },
  27637. [
  27638. {
  27639. name: "Wolf-sized",
  27640. height: math.unit(1.44, "meters")
  27641. },
  27642. {
  27643. name: "Normal",
  27644. height: math.unit(5.05, "meters"),
  27645. default: true
  27646. },
  27647. {
  27648. name: "Big",
  27649. height: math.unit(14.4, "meters")
  27650. },
  27651. {
  27652. name: "Huge",
  27653. height: math.unit(144, "meters")
  27654. },
  27655. ]
  27656. ))
  27657. characterMakers.push(() => makeCharacter(
  27658. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27659. {
  27660. front: {
  27661. height: math.unit(6, "feet"),
  27662. weight: math.unit(220, "lb"),
  27663. name: "Front",
  27664. image: {
  27665. source: "./media/characters/hind/front.svg",
  27666. extra: 1912/1787,
  27667. bottom: 52/1964
  27668. }
  27669. },
  27670. back: {
  27671. height: math.unit(6, "feet"),
  27672. weight: math.unit(220, "lb"),
  27673. name: "Back",
  27674. image: {
  27675. source: "./media/characters/hind/back.svg",
  27676. extra: 1901/1794,
  27677. bottom: 26/1927
  27678. }
  27679. },
  27680. },
  27681. [
  27682. {
  27683. name: "Normal",
  27684. height: math.unit(6, "feet"),
  27685. default: true
  27686. },
  27687. ]
  27688. ))
  27689. characterMakers.push(() => makeCharacter(
  27690. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27691. {
  27692. front: {
  27693. height: math.unit(2.1, "meters"),
  27694. weight: math.unit(150, "lb"),
  27695. name: "Front",
  27696. image: {
  27697. source: "./media/characters/tharquench-sizestealer/front.svg",
  27698. extra: 1605/1470,
  27699. bottom: 36/1641
  27700. }
  27701. },
  27702. frontAlt: {
  27703. height: math.unit(2.1, "meters"),
  27704. weight: math.unit(150, "lb"),
  27705. name: "Front (Alt)",
  27706. image: {
  27707. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27708. extra: 2318 / 2063,
  27709. bottom: 93.4 / 2410
  27710. }
  27711. },
  27712. },
  27713. [
  27714. {
  27715. name: "Nano",
  27716. height: math.unit(1, "mm")
  27717. },
  27718. {
  27719. name: "Micro",
  27720. height: math.unit(1, "cm")
  27721. },
  27722. {
  27723. name: "Normal",
  27724. height: math.unit(2.1, "meters"),
  27725. default: true
  27726. },
  27727. ]
  27728. ))
  27729. characterMakers.push(() => makeCharacter(
  27730. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27731. {
  27732. front: {
  27733. height: math.unit(7 + 5 / 12, "feet"),
  27734. weight: math.unit(357, "lb"),
  27735. name: "Front",
  27736. image: {
  27737. source: "./media/characters/solex-draconov/front.svg",
  27738. extra: 1993 / 1865,
  27739. bottom: 117 / 2111
  27740. }
  27741. },
  27742. },
  27743. [
  27744. {
  27745. name: "Natural Height",
  27746. height: math.unit(7 + 5 / 12, "feet"),
  27747. default: true
  27748. },
  27749. {
  27750. name: "Macro",
  27751. height: math.unit(350, "feet")
  27752. },
  27753. {
  27754. name: "Macro+",
  27755. height: math.unit(1000, "feet")
  27756. },
  27757. {
  27758. name: "Megamacro",
  27759. height: math.unit(20, "km")
  27760. },
  27761. {
  27762. name: "Megamacro+",
  27763. height: math.unit(1000, "km")
  27764. },
  27765. {
  27766. name: "Gigamacro",
  27767. height: math.unit(2.5, "Gm")
  27768. },
  27769. {
  27770. name: "Teramacro",
  27771. height: math.unit(15, "Tm")
  27772. },
  27773. {
  27774. name: "Galactic",
  27775. height: math.unit(30, "Zm")
  27776. },
  27777. {
  27778. name: "Universal",
  27779. height: math.unit(21000, "Ym")
  27780. },
  27781. {
  27782. name: "Omniversal",
  27783. height: math.unit(9.861e50, "Ym")
  27784. },
  27785. {
  27786. name: "Existential",
  27787. height: math.unit(1e300, "meters")
  27788. },
  27789. ]
  27790. ))
  27791. characterMakers.push(() => makeCharacter(
  27792. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27793. {
  27794. side: {
  27795. height: math.unit(25, "feet"),
  27796. weight: math.unit(90000, "lb"),
  27797. name: "Side",
  27798. image: {
  27799. source: "./media/characters/mandarax/side.svg",
  27800. extra: 614 / 332,
  27801. bottom: 55 / 630
  27802. }
  27803. },
  27804. lounging: {
  27805. height: math.unit(15.4, "feet"),
  27806. weight: math.unit(90000, "lb"),
  27807. name: "Lounging",
  27808. image: {
  27809. source: "./media/characters/mandarax/lounging.svg",
  27810. extra: 817/609,
  27811. bottom: 685/1502
  27812. }
  27813. },
  27814. head: {
  27815. height: math.unit(11.4, "feet"),
  27816. name: "Head",
  27817. image: {
  27818. source: "./media/characters/mandarax/head.svg"
  27819. }
  27820. },
  27821. belly: {
  27822. height: math.unit(33, "feet"),
  27823. name: "Belly",
  27824. preyCapacity: math.unit(500, "people"),
  27825. image: {
  27826. source: "./media/characters/mandarax/belly.svg"
  27827. }
  27828. },
  27829. dick: {
  27830. height: math.unit(8.46, "feet"),
  27831. name: "Dick",
  27832. image: {
  27833. source: "./media/characters/mandarax/dick.svg"
  27834. }
  27835. },
  27836. top: {
  27837. height: math.unit(28, "meters"),
  27838. name: "Top",
  27839. image: {
  27840. source: "./media/characters/mandarax/top.svg"
  27841. }
  27842. },
  27843. },
  27844. [
  27845. {
  27846. name: "Normal",
  27847. height: math.unit(25, "feet"),
  27848. default: true
  27849. },
  27850. ]
  27851. ))
  27852. characterMakers.push(() => makeCharacter(
  27853. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27854. {
  27855. front: {
  27856. height: math.unit(5, "feet"),
  27857. weight: math.unit(90, "lb"),
  27858. name: "Front",
  27859. image: {
  27860. source: "./media/characters/pixil/front.svg",
  27861. extra: 2000 / 1618,
  27862. bottom: 12.3 / 2011
  27863. }
  27864. },
  27865. },
  27866. [
  27867. {
  27868. name: "Normal",
  27869. height: math.unit(5, "feet"),
  27870. default: true
  27871. },
  27872. {
  27873. name: "Megamacro",
  27874. height: math.unit(10, "miles"),
  27875. },
  27876. ]
  27877. ))
  27878. characterMakers.push(() => makeCharacter(
  27879. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27880. {
  27881. front: {
  27882. height: math.unit(7 + 2 / 12, "feet"),
  27883. weight: math.unit(200, "lb"),
  27884. name: "Front",
  27885. image: {
  27886. source: "./media/characters/angel/front.svg",
  27887. extra: 1946/1840,
  27888. bottom: 30/1976
  27889. }
  27890. },
  27891. },
  27892. [
  27893. {
  27894. name: "Normal",
  27895. height: math.unit(7 + 2 / 12, "feet"),
  27896. default: true
  27897. },
  27898. {
  27899. name: "Macro",
  27900. height: math.unit(1000, "feet")
  27901. },
  27902. {
  27903. name: "Megamacro",
  27904. height: math.unit(2, "miles")
  27905. },
  27906. {
  27907. name: "Gigamacro",
  27908. height: math.unit(20, "earths")
  27909. },
  27910. ]
  27911. ))
  27912. characterMakers.push(() => makeCharacter(
  27913. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27914. {
  27915. front: {
  27916. height: math.unit(5, "feet"),
  27917. weight: math.unit(180, "lb"),
  27918. name: "Front",
  27919. image: {
  27920. source: "./media/characters/mekana/front.svg",
  27921. extra: 1671 / 1605,
  27922. bottom: 3.5 / 1691
  27923. }
  27924. },
  27925. side: {
  27926. height: math.unit(5, "feet"),
  27927. weight: math.unit(180, "lb"),
  27928. name: "Side",
  27929. image: {
  27930. source: "./media/characters/mekana/side.svg",
  27931. extra: 1671 / 1605,
  27932. bottom: 3.5 / 1691
  27933. }
  27934. },
  27935. back: {
  27936. height: math.unit(5, "feet"),
  27937. weight: math.unit(180, "lb"),
  27938. name: "Back",
  27939. image: {
  27940. source: "./media/characters/mekana/back.svg",
  27941. extra: 1671 / 1605,
  27942. bottom: 3.5 / 1691
  27943. }
  27944. },
  27945. },
  27946. [
  27947. {
  27948. name: "Normal",
  27949. height: math.unit(5, "feet"),
  27950. default: true
  27951. },
  27952. ]
  27953. ))
  27954. characterMakers.push(() => makeCharacter(
  27955. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27956. {
  27957. front: {
  27958. height: math.unit(4 + 6 / 12, "feet"),
  27959. weight: math.unit(80, "lb"),
  27960. name: "Front",
  27961. image: {
  27962. source: "./media/characters/pixie/front.svg",
  27963. extra: 1924 / 1825,
  27964. bottom: 22.4 / 1946
  27965. }
  27966. },
  27967. },
  27968. [
  27969. {
  27970. name: "Normal",
  27971. height: math.unit(4 + 6 / 12, "feet"),
  27972. default: true
  27973. },
  27974. {
  27975. name: "Macro",
  27976. height: math.unit(40, "feet")
  27977. },
  27978. ]
  27979. ))
  27980. characterMakers.push(() => makeCharacter(
  27981. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27982. {
  27983. front: {
  27984. height: math.unit(2.1, "meters"),
  27985. weight: math.unit(200, "lb"),
  27986. name: "Front",
  27987. image: {
  27988. source: "./media/characters/the-lascivious/front.svg",
  27989. extra: 1 / 0.893,
  27990. bottom: 3.5 / 573.7
  27991. }
  27992. },
  27993. },
  27994. [
  27995. {
  27996. name: "Human Scale",
  27997. height: math.unit(2.1, "meters")
  27998. },
  27999. {
  28000. name: "Wolxi Scale",
  28001. height: math.unit(46.2, "m"),
  28002. default: true
  28003. },
  28004. {
  28005. name: "Boinker of Buildings",
  28006. height: math.unit(10, "km")
  28007. },
  28008. {
  28009. name: "Shagger of Skyscrapers",
  28010. height: math.unit(40, "km")
  28011. },
  28012. {
  28013. name: "Banger of Boroughs",
  28014. height: math.unit(4000, "km")
  28015. },
  28016. {
  28017. name: "Screwer of States",
  28018. height: math.unit(100000, "km")
  28019. },
  28020. {
  28021. name: "Pounder of Planets",
  28022. height: math.unit(2000000, "km")
  28023. },
  28024. ]
  28025. ))
  28026. characterMakers.push(() => makeCharacter(
  28027. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28028. {
  28029. front: {
  28030. height: math.unit(6, "feet"),
  28031. weight: math.unit(150, "lb"),
  28032. name: "Front",
  28033. image: {
  28034. source: "./media/characters/aj/front.svg",
  28035. extra: 2039 / 1562,
  28036. bottom: 40 / 2079
  28037. }
  28038. },
  28039. },
  28040. [
  28041. {
  28042. name: "Normal",
  28043. height: math.unit(11 + 6 / 12, "feet"),
  28044. default: true
  28045. },
  28046. {
  28047. name: "Megamacro",
  28048. height: math.unit(60, "megameters")
  28049. },
  28050. ]
  28051. ))
  28052. characterMakers.push(() => makeCharacter(
  28053. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28054. {
  28055. side: {
  28056. height: math.unit(31 + 8 / 12, "feet"),
  28057. weight: math.unit(75000, "kg"),
  28058. name: "Side",
  28059. image: {
  28060. source: "./media/characters/koros/side.svg",
  28061. extra: 1442 / 1297,
  28062. bottom: 122.7 / 1562
  28063. }
  28064. },
  28065. dicksKingsCrown: {
  28066. height: math.unit(6, "feet"),
  28067. name: "Dicks (King's Crown)",
  28068. image: {
  28069. source: "./media/characters/koros/dicks-kings-crown.svg"
  28070. }
  28071. },
  28072. dicksTailSet: {
  28073. height: math.unit(3, "feet"),
  28074. name: "Dicks (Tail Set)",
  28075. image: {
  28076. source: "./media/characters/koros/dicks-tail-set.svg"
  28077. }
  28078. },
  28079. dickCumming: {
  28080. height: math.unit(7.98, "feet"),
  28081. name: "Dick (Cumming)",
  28082. image: {
  28083. source: "./media/characters/koros/dick-cumming.svg"
  28084. }
  28085. },
  28086. dicksBack: {
  28087. height: math.unit(5.9, "feet"),
  28088. name: "Dicks (Back)",
  28089. image: {
  28090. source: "./media/characters/koros/dicks-back.svg"
  28091. }
  28092. },
  28093. dicksFront: {
  28094. height: math.unit(3.72, "feet"),
  28095. name: "Dicks (Front)",
  28096. image: {
  28097. source: "./media/characters/koros/dicks-front.svg"
  28098. }
  28099. },
  28100. dicksPeeking: {
  28101. height: math.unit(3.0, "feet"),
  28102. name: "Dicks (Peeking)",
  28103. image: {
  28104. source: "./media/characters/koros/dicks-peeking.svg"
  28105. }
  28106. },
  28107. eye: {
  28108. height: math.unit(1.7, "feet"),
  28109. name: "Eye",
  28110. image: {
  28111. source: "./media/characters/koros/eye.svg"
  28112. }
  28113. },
  28114. headFront: {
  28115. height: math.unit(11.69, "feet"),
  28116. name: "Head (Front)",
  28117. image: {
  28118. source: "./media/characters/koros/head-front.svg"
  28119. }
  28120. },
  28121. headSide: {
  28122. height: math.unit(14, "feet"),
  28123. name: "Head (Side)",
  28124. image: {
  28125. source: "./media/characters/koros/head-side.svg"
  28126. }
  28127. },
  28128. leg: {
  28129. height: math.unit(17, "feet"),
  28130. name: "Leg",
  28131. image: {
  28132. source: "./media/characters/koros/leg.svg"
  28133. }
  28134. },
  28135. mawSide: {
  28136. height: math.unit(12.8, "feet"),
  28137. name: "Maw (Side)",
  28138. image: {
  28139. source: "./media/characters/koros/maw-side.svg"
  28140. }
  28141. },
  28142. mawSpitting: {
  28143. height: math.unit(17, "feet"),
  28144. name: "Maw (Spitting)",
  28145. image: {
  28146. source: "./media/characters/koros/maw-spitting.svg"
  28147. }
  28148. },
  28149. slit: {
  28150. height: math.unit(2.8, "feet"),
  28151. name: "Slit",
  28152. image: {
  28153. source: "./media/characters/koros/slit.svg"
  28154. }
  28155. },
  28156. stomach: {
  28157. height: math.unit(6.8, "feet"),
  28158. preyCapacity: math.unit(20, "people"),
  28159. name: "Stomach",
  28160. image: {
  28161. source: "./media/characters/koros/stomach.svg"
  28162. }
  28163. },
  28164. wingspanBottom: {
  28165. height: math.unit(114, "feet"),
  28166. name: "Wingspan (Bottom)",
  28167. image: {
  28168. source: "./media/characters/koros/wingspan-bottom.svg"
  28169. }
  28170. },
  28171. wingspanTop: {
  28172. height: math.unit(104, "feet"),
  28173. name: "Wingspan (Top)",
  28174. image: {
  28175. source: "./media/characters/koros/wingspan-top.svg"
  28176. }
  28177. },
  28178. },
  28179. [
  28180. {
  28181. name: "Normal",
  28182. height: math.unit(31 + 8 / 12, "feet"),
  28183. default: true
  28184. },
  28185. ]
  28186. ))
  28187. characterMakers.push(() => makeCharacter(
  28188. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28189. {
  28190. front: {
  28191. height: math.unit(18 + 5 / 12, "feet"),
  28192. weight: math.unit(3750, "kg"),
  28193. name: "Front",
  28194. image: {
  28195. source: "./media/characters/vexx/front.svg",
  28196. extra: 426 / 396,
  28197. bottom: 31.5 / 458
  28198. }
  28199. },
  28200. maw: {
  28201. height: math.unit(6, "feet"),
  28202. name: "Maw",
  28203. image: {
  28204. source: "./media/characters/vexx/maw.svg"
  28205. }
  28206. },
  28207. },
  28208. [
  28209. {
  28210. name: "Normal",
  28211. height: math.unit(18 + 5 / 12, "feet"),
  28212. default: true
  28213. },
  28214. ]
  28215. ))
  28216. characterMakers.push(() => makeCharacter(
  28217. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28218. {
  28219. front: {
  28220. height: math.unit(17 + 6 / 12, "feet"),
  28221. weight: math.unit(150, "lb"),
  28222. name: "Front",
  28223. image: {
  28224. source: "./media/characters/baadra/front.svg",
  28225. extra: 1694/1553,
  28226. bottom: 179/1873
  28227. }
  28228. },
  28229. frontAlt: {
  28230. height: math.unit(17 + 6 / 12, "feet"),
  28231. weight: math.unit(150, "lb"),
  28232. name: "Front (Alt)",
  28233. image: {
  28234. source: "./media/characters/baadra/front-alt.svg",
  28235. extra: 3137 / 2890,
  28236. bottom: 168.4 / 3305
  28237. }
  28238. },
  28239. back: {
  28240. height: math.unit(17 + 6 / 12, "feet"),
  28241. weight: math.unit(150, "lb"),
  28242. name: "Back",
  28243. image: {
  28244. source: "./media/characters/baadra/back.svg",
  28245. extra: 3142 / 2890,
  28246. bottom: 220 / 3371
  28247. }
  28248. },
  28249. head: {
  28250. height: math.unit(5.45, "feet"),
  28251. name: "Head",
  28252. image: {
  28253. source: "./media/characters/baadra/head.svg"
  28254. }
  28255. },
  28256. headAngry: {
  28257. height: math.unit(4.95, "feet"),
  28258. name: "Head (Angry)",
  28259. image: {
  28260. source: "./media/characters/baadra/head-angry.svg"
  28261. }
  28262. },
  28263. headOpen: {
  28264. height: math.unit(6, "feet"),
  28265. name: "Head (Open)",
  28266. image: {
  28267. source: "./media/characters/baadra/head-open.svg"
  28268. }
  28269. },
  28270. },
  28271. [
  28272. {
  28273. name: "Normal",
  28274. height: math.unit(17 + 6 / 12, "feet"),
  28275. default: true
  28276. },
  28277. ]
  28278. ))
  28279. characterMakers.push(() => makeCharacter(
  28280. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28281. {
  28282. front: {
  28283. height: math.unit(7 + 3 / 12, "feet"),
  28284. weight: math.unit(180, "lb"),
  28285. name: "Front",
  28286. image: {
  28287. source: "./media/characters/juri/front.svg",
  28288. extra: 1401 / 1237,
  28289. bottom: 18.5 / 1418
  28290. }
  28291. },
  28292. side: {
  28293. height: math.unit(7 + 3 / 12, "feet"),
  28294. weight: math.unit(180, "lb"),
  28295. name: "Side",
  28296. image: {
  28297. source: "./media/characters/juri/side.svg",
  28298. extra: 1424 / 1242,
  28299. bottom: 18.5 / 1447
  28300. }
  28301. },
  28302. sitting: {
  28303. height: math.unit(6, "feet"),
  28304. weight: math.unit(180, "lb"),
  28305. name: "Sitting",
  28306. image: {
  28307. source: "./media/characters/juri/sitting.svg",
  28308. extra: 1270 / 1143,
  28309. bottom: 100 / 1343
  28310. }
  28311. },
  28312. back: {
  28313. height: math.unit(7 + 3 / 12, "feet"),
  28314. weight: math.unit(180, "lb"),
  28315. name: "Back",
  28316. image: {
  28317. source: "./media/characters/juri/back.svg",
  28318. extra: 1377 / 1240,
  28319. bottom: 23.7 / 1405
  28320. }
  28321. },
  28322. maw: {
  28323. height: math.unit(2.8, "feet"),
  28324. name: "Maw",
  28325. image: {
  28326. source: "./media/characters/juri/maw.svg"
  28327. }
  28328. },
  28329. stomach: {
  28330. height: math.unit(0.89, "feet"),
  28331. preyCapacity: math.unit(4, "liters"),
  28332. name: "Stomach",
  28333. image: {
  28334. source: "./media/characters/juri/stomach.svg"
  28335. }
  28336. },
  28337. },
  28338. [
  28339. {
  28340. name: "Normal",
  28341. height: math.unit(7 + 3 / 12, "feet"),
  28342. default: true
  28343. },
  28344. ]
  28345. ))
  28346. characterMakers.push(() => makeCharacter(
  28347. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28348. {
  28349. fox: {
  28350. height: math.unit(5 + 6 / 12, "feet"),
  28351. weight: math.unit(140, "lb"),
  28352. name: "Fox",
  28353. image: {
  28354. source: "./media/characters/maxene-sita/fox.svg",
  28355. extra: 146 / 138,
  28356. bottom: 2.1 / 148.19
  28357. }
  28358. },
  28359. foxLaying: {
  28360. height: math.unit(1.70, "feet"),
  28361. weight: math.unit(140, "lb"),
  28362. name: "Fox (Laying)",
  28363. image: {
  28364. source: "./media/characters/maxene-sita/fox-laying.svg",
  28365. extra: 910 / 572,
  28366. bottom: 71 / 981
  28367. }
  28368. },
  28369. kitsune: {
  28370. height: math.unit(10, "feet"),
  28371. weight: math.unit(800, "lb"),
  28372. name: "Kitsune",
  28373. image: {
  28374. source: "./media/characters/maxene-sita/kitsune.svg",
  28375. extra: 185 / 176,
  28376. bottom: 4.7 / 189.9
  28377. }
  28378. },
  28379. hellhound: {
  28380. height: math.unit(10, "feet"),
  28381. weight: math.unit(700, "lb"),
  28382. name: "Hellhound",
  28383. image: {
  28384. source: "./media/characters/maxene-sita/hellhound.svg",
  28385. extra: 1600 / 1545,
  28386. bottom: 81 / 1681
  28387. }
  28388. },
  28389. },
  28390. [
  28391. {
  28392. name: "Normal",
  28393. height: math.unit(5 + 6 / 12, "feet"),
  28394. default: true
  28395. },
  28396. ]
  28397. ))
  28398. characterMakers.push(() => makeCharacter(
  28399. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28400. {
  28401. front: {
  28402. height: math.unit(3 + 4 / 12, "feet"),
  28403. weight: math.unit(70, "lb"),
  28404. name: "Front",
  28405. image: {
  28406. source: "./media/characters/maia/front.svg",
  28407. extra: 227 / 219.5,
  28408. bottom: 40 / 267
  28409. }
  28410. },
  28411. back: {
  28412. height: math.unit(3 + 4 / 12, "feet"),
  28413. weight: math.unit(70, "lb"),
  28414. name: "Back",
  28415. image: {
  28416. source: "./media/characters/maia/back.svg",
  28417. extra: 237 / 225
  28418. }
  28419. },
  28420. },
  28421. [
  28422. {
  28423. name: "Normal",
  28424. height: math.unit(3 + 4 / 12, "feet"),
  28425. default: true
  28426. },
  28427. ]
  28428. ))
  28429. characterMakers.push(() => makeCharacter(
  28430. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28431. {
  28432. front: {
  28433. height: math.unit(5 + 10 / 12, "feet"),
  28434. weight: math.unit(197, "lb"),
  28435. name: "Front",
  28436. image: {
  28437. source: "./media/characters/jabaro/front.svg",
  28438. extra: 225 / 216,
  28439. bottom: 5.06 / 230
  28440. }
  28441. },
  28442. back: {
  28443. height: math.unit(5 + 10 / 12, "feet"),
  28444. weight: math.unit(197, "lb"),
  28445. name: "Back",
  28446. image: {
  28447. source: "./media/characters/jabaro/back.svg",
  28448. extra: 225 / 219,
  28449. bottom: 1.9 / 227
  28450. }
  28451. },
  28452. },
  28453. [
  28454. {
  28455. name: "Normal",
  28456. height: math.unit(5 + 10 / 12, "feet"),
  28457. default: true
  28458. },
  28459. ]
  28460. ))
  28461. characterMakers.push(() => makeCharacter(
  28462. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28463. {
  28464. front: {
  28465. height: math.unit(5 + 8 / 12, "feet"),
  28466. weight: math.unit(139, "lb"),
  28467. name: "Front",
  28468. image: {
  28469. source: "./media/characters/risa/front.svg",
  28470. extra: 270 / 260,
  28471. bottom: 11.2 / 282
  28472. }
  28473. },
  28474. back: {
  28475. height: math.unit(5 + 8 / 12, "feet"),
  28476. weight: math.unit(139, "lb"),
  28477. name: "Back",
  28478. image: {
  28479. source: "./media/characters/risa/back.svg",
  28480. extra: 264 / 255,
  28481. bottom: 4 / 268
  28482. }
  28483. },
  28484. },
  28485. [
  28486. {
  28487. name: "Normal",
  28488. height: math.unit(5 + 8 / 12, "feet"),
  28489. default: true
  28490. },
  28491. ]
  28492. ))
  28493. characterMakers.push(() => makeCharacter(
  28494. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28495. {
  28496. front: {
  28497. height: math.unit(2 + 11 / 12, "feet"),
  28498. weight: math.unit(30, "lb"),
  28499. name: "Front",
  28500. image: {
  28501. source: "./media/characters/weatley/front.svg",
  28502. bottom: 10.7 / 414,
  28503. extra: 403.5 / 362
  28504. }
  28505. },
  28506. back: {
  28507. height: math.unit(2 + 11 / 12, "feet"),
  28508. weight: math.unit(30, "lb"),
  28509. name: "Back",
  28510. image: {
  28511. source: "./media/characters/weatley/back.svg",
  28512. bottom: 10.7 / 414,
  28513. extra: 403.5 / 362
  28514. }
  28515. },
  28516. },
  28517. [
  28518. {
  28519. name: "Normal",
  28520. height: math.unit(2 + 11 / 12, "feet"),
  28521. default: true
  28522. },
  28523. ]
  28524. ))
  28525. characterMakers.push(() => makeCharacter(
  28526. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28527. {
  28528. front: {
  28529. height: math.unit(5 + 2 / 12, "feet"),
  28530. weight: math.unit(50, "kg"),
  28531. name: "Front",
  28532. image: {
  28533. source: "./media/characters/mercury-crescent/front.svg",
  28534. extra: 1088 / 1033,
  28535. bottom: 18.9 / 1109
  28536. }
  28537. },
  28538. },
  28539. [
  28540. {
  28541. name: "Normal",
  28542. height: math.unit(5 + 2 / 12, "feet"),
  28543. default: true
  28544. },
  28545. ]
  28546. ))
  28547. characterMakers.push(() => makeCharacter(
  28548. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28549. {
  28550. front: {
  28551. height: math.unit(2, "feet"),
  28552. weight: math.unit(15, "kg"),
  28553. name: "Front",
  28554. image: {
  28555. source: "./media/characters/diamond-jones/front.svg",
  28556. extra: 727/723,
  28557. bottom: 46/773
  28558. }
  28559. },
  28560. },
  28561. [
  28562. {
  28563. name: "Normal",
  28564. height: math.unit(2, "feet"),
  28565. default: true
  28566. },
  28567. ]
  28568. ))
  28569. characterMakers.push(() => makeCharacter(
  28570. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28571. {
  28572. front: {
  28573. height: math.unit(3, "feet"),
  28574. weight: math.unit(30, "kg"),
  28575. name: "Front",
  28576. image: {
  28577. source: "./media/characters/sweet-bit/front.svg",
  28578. extra: 675 / 567,
  28579. bottom: 27.7 / 703
  28580. }
  28581. },
  28582. },
  28583. [
  28584. {
  28585. name: "Normal",
  28586. height: math.unit(3, "feet"),
  28587. default: true
  28588. },
  28589. ]
  28590. ))
  28591. characterMakers.push(() => makeCharacter(
  28592. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28593. {
  28594. side: {
  28595. height: math.unit(9.178, "feet"),
  28596. weight: math.unit(500, "lb"),
  28597. name: "Side",
  28598. image: {
  28599. source: "./media/characters/umbrazen/side.svg",
  28600. extra: 1730 / 1473,
  28601. bottom: 34.6 / 1765
  28602. }
  28603. },
  28604. },
  28605. [
  28606. {
  28607. name: "Normal",
  28608. height: math.unit(9.178, "feet"),
  28609. default: true
  28610. },
  28611. ]
  28612. ))
  28613. characterMakers.push(() => makeCharacter(
  28614. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28615. {
  28616. front: {
  28617. height: math.unit(10, "feet"),
  28618. weight: math.unit(750, "lb"),
  28619. name: "Front",
  28620. image: {
  28621. source: "./media/characters/arlist/front.svg",
  28622. extra: 961 / 778,
  28623. bottom: 6.2 / 986
  28624. }
  28625. },
  28626. },
  28627. [
  28628. {
  28629. name: "Normal",
  28630. height: math.unit(10, "feet"),
  28631. default: true
  28632. },
  28633. ]
  28634. ))
  28635. characterMakers.push(() => makeCharacter(
  28636. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28637. {
  28638. front: {
  28639. height: math.unit(5 + 1 / 12, "feet"),
  28640. weight: math.unit(110, "lb"),
  28641. name: "Front",
  28642. image: {
  28643. source: "./media/characters/aradel/front.svg",
  28644. extra: 324 / 303,
  28645. bottom: 3.6 / 329.4
  28646. }
  28647. },
  28648. },
  28649. [
  28650. {
  28651. name: "Normal",
  28652. height: math.unit(5 + 1 / 12, "feet"),
  28653. default: true
  28654. },
  28655. ]
  28656. ))
  28657. characterMakers.push(() => makeCharacter(
  28658. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28659. {
  28660. dressed: {
  28661. height: math.unit(3 + 8 / 12, "feet"),
  28662. weight: math.unit(50, "lb"),
  28663. name: "Dressed",
  28664. image: {
  28665. source: "./media/characters/serryn/dressed.svg",
  28666. extra: 1792 / 1656,
  28667. bottom: 43.5 / 1840
  28668. }
  28669. },
  28670. nude: {
  28671. height: math.unit(3 + 8 / 12, "feet"),
  28672. weight: math.unit(50, "lb"),
  28673. name: "Nude",
  28674. image: {
  28675. source: "./media/characters/serryn/nude.svg",
  28676. extra: 1792 / 1656,
  28677. bottom: 43.5 / 1840
  28678. }
  28679. },
  28680. },
  28681. [
  28682. {
  28683. name: "Normal",
  28684. height: math.unit(3 + 8 / 12, "feet"),
  28685. default: true
  28686. },
  28687. ]
  28688. ))
  28689. characterMakers.push(() => makeCharacter(
  28690. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28691. {
  28692. front: {
  28693. height: math.unit(7 + 10 / 12, "feet"),
  28694. weight: math.unit(255, "lb"),
  28695. name: "Front",
  28696. image: {
  28697. source: "./media/characters/xavier-thyme/front.svg",
  28698. extra: 3733 / 3642,
  28699. bottom: 131 / 3869
  28700. }
  28701. },
  28702. frontRaven: {
  28703. height: math.unit(7 + 10 / 12, "feet"),
  28704. weight: math.unit(255, "lb"),
  28705. name: "Front (Raven)",
  28706. image: {
  28707. source: "./media/characters/xavier-thyme/front-raven.svg",
  28708. extra: 4385 / 3642,
  28709. bottom: 131 / 4517
  28710. }
  28711. },
  28712. },
  28713. [
  28714. {
  28715. name: "Normal",
  28716. height: math.unit(7 + 10 / 12, "feet"),
  28717. default: true
  28718. },
  28719. ]
  28720. ))
  28721. characterMakers.push(() => makeCharacter(
  28722. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28723. {
  28724. front: {
  28725. height: math.unit(1.6, "m"),
  28726. weight: math.unit(50, "kg"),
  28727. name: "Front",
  28728. image: {
  28729. source: "./media/characters/kiki/front.svg",
  28730. extra: 4682 / 3610,
  28731. bottom: 115 / 4777
  28732. }
  28733. },
  28734. },
  28735. [
  28736. {
  28737. name: "Normal",
  28738. height: math.unit(1.6, "meters"),
  28739. default: true
  28740. },
  28741. ]
  28742. ))
  28743. characterMakers.push(() => makeCharacter(
  28744. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28745. {
  28746. front: {
  28747. height: math.unit(50, "m"),
  28748. weight: math.unit(500, "tonnes"),
  28749. name: "Front",
  28750. image: {
  28751. source: "./media/characters/ryoko/front.svg",
  28752. extra: 4632 / 3926,
  28753. bottom: 193 / 4823
  28754. }
  28755. },
  28756. },
  28757. [
  28758. {
  28759. name: "Normal",
  28760. height: math.unit(50, "meters"),
  28761. default: true
  28762. },
  28763. ]
  28764. ))
  28765. characterMakers.push(() => makeCharacter(
  28766. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28767. {
  28768. front: {
  28769. height: math.unit(30, "m"),
  28770. weight: math.unit(22, "tonnes"),
  28771. name: "Front",
  28772. image: {
  28773. source: "./media/characters/elio/front.svg",
  28774. extra: 4582 / 3720,
  28775. bottom: 236 / 4828
  28776. }
  28777. },
  28778. },
  28779. [
  28780. {
  28781. name: "Normal",
  28782. height: math.unit(30, "meters"),
  28783. default: true
  28784. },
  28785. ]
  28786. ))
  28787. characterMakers.push(() => makeCharacter(
  28788. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28789. {
  28790. front: {
  28791. height: math.unit(6 + 3 / 12, "feet"),
  28792. weight: math.unit(120, "lb"),
  28793. name: "Front",
  28794. image: {
  28795. source: "./media/characters/azura/front.svg",
  28796. extra: 1149 / 1135,
  28797. bottom: 45 / 1194
  28798. }
  28799. },
  28800. frontClothed: {
  28801. height: math.unit(6 + 3 / 12, "feet"),
  28802. weight: math.unit(120, "lb"),
  28803. name: "Front (Clothed)",
  28804. image: {
  28805. source: "./media/characters/azura/front-clothed.svg",
  28806. extra: 1149 / 1135,
  28807. bottom: 45 / 1194
  28808. }
  28809. },
  28810. },
  28811. [
  28812. {
  28813. name: "Normal",
  28814. height: math.unit(6 + 3 / 12, "feet"),
  28815. default: true
  28816. },
  28817. {
  28818. name: "Macro",
  28819. height: math.unit(20 + 6 / 12, "feet")
  28820. },
  28821. {
  28822. name: "Megamacro",
  28823. height: math.unit(12, "miles")
  28824. },
  28825. {
  28826. name: "Gigamacro",
  28827. height: math.unit(10000, "miles")
  28828. },
  28829. {
  28830. name: "Teramacro",
  28831. height: math.unit(900000, "miles")
  28832. },
  28833. ]
  28834. ))
  28835. characterMakers.push(() => makeCharacter(
  28836. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28837. {
  28838. front: {
  28839. height: math.unit(12, "feet"),
  28840. weight: math.unit(1, "ton"),
  28841. capacity: math.unit(660000, "gallons"),
  28842. name: "Front",
  28843. image: {
  28844. source: "./media/characters/zeus/front.svg",
  28845. extra: 5005 / 4717,
  28846. bottom: 363 / 5388
  28847. }
  28848. },
  28849. },
  28850. [
  28851. {
  28852. name: "Normal",
  28853. height: math.unit(12, "feet")
  28854. },
  28855. {
  28856. name: "Preferred Size",
  28857. height: math.unit(0.5, "miles"),
  28858. default: true
  28859. },
  28860. {
  28861. name: "Giga Horse",
  28862. height: math.unit(300, "miles")
  28863. },
  28864. {
  28865. name: "Riding Planets",
  28866. height: math.unit(30, "megameters")
  28867. },
  28868. {
  28869. name: "Cosmic Giant",
  28870. height: math.unit(3, "zettameters")
  28871. },
  28872. {
  28873. name: "Breeding God",
  28874. height: math.unit(9.92e22, "yottameters")
  28875. },
  28876. ]
  28877. ))
  28878. characterMakers.push(() => makeCharacter(
  28879. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28880. {
  28881. side: {
  28882. height: math.unit(9, "feet"),
  28883. weight: math.unit(1500, "kg"),
  28884. name: "Side",
  28885. image: {
  28886. source: "./media/characters/fang/side.svg",
  28887. extra: 924 / 866,
  28888. bottom: 47.5 / 972.3
  28889. }
  28890. },
  28891. },
  28892. [
  28893. {
  28894. name: "Normal",
  28895. height: math.unit(9, "feet"),
  28896. default: true
  28897. },
  28898. {
  28899. name: "Macro",
  28900. height: math.unit(75 + 6 / 12, "feet")
  28901. },
  28902. {
  28903. name: "Teramacro",
  28904. height: math.unit(50000, "miles")
  28905. },
  28906. ]
  28907. ))
  28908. characterMakers.push(() => makeCharacter(
  28909. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28910. {
  28911. front: {
  28912. height: math.unit(10, "feet"),
  28913. weight: math.unit(2, "tons"),
  28914. name: "Front",
  28915. image: {
  28916. source: "./media/characters/rekhit/front.svg",
  28917. extra: 2796 / 2590,
  28918. bottom: 225 / 3022
  28919. }
  28920. },
  28921. },
  28922. [
  28923. {
  28924. name: "Normal",
  28925. height: math.unit(10, "feet"),
  28926. default: true
  28927. },
  28928. {
  28929. name: "Macro",
  28930. height: math.unit(500, "feet")
  28931. },
  28932. ]
  28933. ))
  28934. characterMakers.push(() => makeCharacter(
  28935. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28936. {
  28937. front: {
  28938. height: math.unit(7 + 6.451 / 12, "feet"),
  28939. weight: math.unit(310, "lb"),
  28940. name: "Front",
  28941. image: {
  28942. source: "./media/characters/dahlia-verrick/front.svg",
  28943. extra: 1488 / 1365,
  28944. bottom: 6.2 / 1495
  28945. }
  28946. },
  28947. back: {
  28948. height: math.unit(7 + 6.451 / 12, "feet"),
  28949. weight: math.unit(310, "lb"),
  28950. name: "Back",
  28951. image: {
  28952. source: "./media/characters/dahlia-verrick/back.svg",
  28953. extra: 1472 / 1351,
  28954. bottom: 5.28 / 1477
  28955. }
  28956. },
  28957. frontBusiness: {
  28958. height: math.unit(7 + 6.451 / 12, "feet"),
  28959. weight: math.unit(200, "lb"),
  28960. name: "Front (Business)",
  28961. image: {
  28962. source: "./media/characters/dahlia-verrick/front-business.svg",
  28963. extra: 1478 / 1381,
  28964. bottom: 5.5 / 1484
  28965. }
  28966. },
  28967. frontCasual: {
  28968. height: math.unit(7 + 6.451 / 12, "feet"),
  28969. weight: math.unit(200, "lb"),
  28970. name: "Front (Casual)",
  28971. image: {
  28972. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28973. extra: 1478 / 1381,
  28974. bottom: 5.5 / 1484
  28975. }
  28976. },
  28977. },
  28978. [
  28979. {
  28980. name: "Travel-Sized",
  28981. height: math.unit(7.45, "inches")
  28982. },
  28983. {
  28984. name: "Normal",
  28985. height: math.unit(7 + 6.451 / 12, "feet"),
  28986. default: true
  28987. },
  28988. {
  28989. name: "Hitting the Town",
  28990. height: math.unit(37 + 8 / 12, "feet")
  28991. },
  28992. {
  28993. name: "Stomp in the Suburbs",
  28994. height: math.unit(964 + 9.728 / 12, "feet")
  28995. },
  28996. {
  28997. name: "Sit on the City",
  28998. height: math.unit(61747 + 10.592 / 12, "feet")
  28999. },
  29000. {
  29001. name: "Glomp the Globe",
  29002. height: math.unit(252919327 + 4.832 / 12, "feet")
  29003. },
  29004. ]
  29005. ))
  29006. characterMakers.push(() => makeCharacter(
  29007. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29008. {
  29009. front: {
  29010. height: math.unit(6 + 4 / 12, "feet"),
  29011. weight: math.unit(320, "lb"),
  29012. name: "Front",
  29013. image: {
  29014. source: "./media/characters/balina-mahigan/front.svg",
  29015. extra: 447 / 428,
  29016. bottom: 18 / 466
  29017. }
  29018. },
  29019. back: {
  29020. height: math.unit(6 + 4 / 12, "feet"),
  29021. weight: math.unit(320, "lb"),
  29022. name: "Back",
  29023. image: {
  29024. source: "./media/characters/balina-mahigan/back.svg",
  29025. extra: 445 / 428,
  29026. bottom: 4.07 / 448
  29027. }
  29028. },
  29029. arm: {
  29030. height: math.unit(1.88, "feet"),
  29031. name: "Arm",
  29032. image: {
  29033. source: "./media/characters/balina-mahigan/arm.svg"
  29034. }
  29035. },
  29036. backPort: {
  29037. height: math.unit(0.685, "feet"),
  29038. name: "Back Port",
  29039. image: {
  29040. source: "./media/characters/balina-mahigan/back-port.svg"
  29041. }
  29042. },
  29043. hoofpaw: {
  29044. height: math.unit(1.41, "feet"),
  29045. name: "Hoofpaw",
  29046. image: {
  29047. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29048. }
  29049. },
  29050. leftHandBack: {
  29051. height: math.unit(0.938, "feet"),
  29052. name: "Left Hand (Back)",
  29053. image: {
  29054. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29055. }
  29056. },
  29057. leftHandFront: {
  29058. height: math.unit(0.938, "feet"),
  29059. name: "Left Hand (Front)",
  29060. image: {
  29061. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29062. }
  29063. },
  29064. rightHandBack: {
  29065. height: math.unit(0.95, "feet"),
  29066. name: "Right Hand (Back)",
  29067. image: {
  29068. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29069. }
  29070. },
  29071. rightHandFront: {
  29072. height: math.unit(0.95, "feet"),
  29073. name: "Right Hand (Front)",
  29074. image: {
  29075. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29076. }
  29077. },
  29078. },
  29079. [
  29080. {
  29081. name: "Normal",
  29082. height: math.unit(6 + 4 / 12, "feet"),
  29083. default: true
  29084. },
  29085. ]
  29086. ))
  29087. characterMakers.push(() => makeCharacter(
  29088. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29089. {
  29090. front: {
  29091. height: math.unit(6, "feet"),
  29092. weight: math.unit(320, "lb"),
  29093. name: "Front",
  29094. image: {
  29095. source: "./media/characters/balina-mejeri/front.svg",
  29096. extra: 517 / 488,
  29097. bottom: 44.2 / 561
  29098. }
  29099. },
  29100. },
  29101. [
  29102. {
  29103. name: "Normal",
  29104. height: math.unit(6 + 4 / 12, "feet")
  29105. },
  29106. {
  29107. name: "Business",
  29108. height: math.unit(155, "feet"),
  29109. default: true
  29110. },
  29111. ]
  29112. ))
  29113. characterMakers.push(() => makeCharacter(
  29114. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29115. {
  29116. kneeling: {
  29117. height: math.unit(6 + 4 / 12, "feet"),
  29118. weight: math.unit(300 * 20, "lb"),
  29119. name: "Kneeling",
  29120. image: {
  29121. source: "./media/characters/balbarian/kneeling.svg",
  29122. extra: 922 / 862,
  29123. bottom: 42.4 / 965
  29124. }
  29125. },
  29126. },
  29127. [
  29128. {
  29129. name: "Normal",
  29130. height: math.unit(6 + 4 / 12, "feet")
  29131. },
  29132. {
  29133. name: "Treasured",
  29134. height: math.unit(18 + 9 / 12, "feet"),
  29135. default: true
  29136. },
  29137. {
  29138. name: "Macro",
  29139. height: math.unit(900, "feet")
  29140. },
  29141. ]
  29142. ))
  29143. characterMakers.push(() => makeCharacter(
  29144. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29145. {
  29146. front: {
  29147. height: math.unit(6 + 4 / 12, "feet"),
  29148. weight: math.unit(325, "lb"),
  29149. name: "Front",
  29150. image: {
  29151. source: "./media/characters/balina-amarini/front.svg",
  29152. extra: 415 / 403,
  29153. bottom: 19 / 433.4
  29154. }
  29155. },
  29156. back: {
  29157. height: math.unit(6 + 4 / 12, "feet"),
  29158. weight: math.unit(325, "lb"),
  29159. name: "Back",
  29160. image: {
  29161. source: "./media/characters/balina-amarini/back.svg",
  29162. extra: 415 / 403,
  29163. bottom: 13.5 / 432
  29164. }
  29165. },
  29166. overdrive: {
  29167. height: math.unit(6 + 4 / 12, "feet"),
  29168. weight: math.unit(400, "lb"),
  29169. name: "Overdrive",
  29170. image: {
  29171. source: "./media/characters/balina-amarini/overdrive.svg",
  29172. extra: 269 / 259,
  29173. bottom: 12 / 282
  29174. }
  29175. },
  29176. },
  29177. [
  29178. {
  29179. name: "Boom",
  29180. height: math.unit(9 + 10 / 12, "feet"),
  29181. default: true
  29182. },
  29183. {
  29184. name: "Macro",
  29185. height: math.unit(280, "feet")
  29186. },
  29187. ]
  29188. ))
  29189. characterMakers.push(() => makeCharacter(
  29190. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29191. {
  29192. goddess: {
  29193. height: math.unit(600, "feet"),
  29194. weight: math.unit(2000000, "tons"),
  29195. name: "Goddess",
  29196. image: {
  29197. source: "./media/characters/lady-kubwa/goddess.svg",
  29198. extra: 1240.5 / 1223,
  29199. bottom: 22 / 1263
  29200. }
  29201. },
  29202. goddesser: {
  29203. height: math.unit(900, "feet"),
  29204. weight: math.unit(20000000, "lb"),
  29205. name: "Goddess-er",
  29206. image: {
  29207. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29208. extra: 899 / 888,
  29209. bottom: 12.6 / 912
  29210. }
  29211. },
  29212. },
  29213. [
  29214. {
  29215. name: "Macro",
  29216. height: math.unit(600, "feet"),
  29217. default: true
  29218. },
  29219. {
  29220. name: "Megamacro",
  29221. height: math.unit(250, "miles")
  29222. },
  29223. ]
  29224. ))
  29225. characterMakers.push(() => makeCharacter(
  29226. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29227. {
  29228. front: {
  29229. height: math.unit(7 + 7 / 12, "feet"),
  29230. weight: math.unit(250, "lb"),
  29231. name: "Front",
  29232. image: {
  29233. source: "./media/characters/tala-grovehorn/front.svg",
  29234. extra: 2636 / 2525,
  29235. bottom: 147 / 2781
  29236. }
  29237. },
  29238. back: {
  29239. height: math.unit(7 + 7 / 12, "feet"),
  29240. weight: math.unit(250, "lb"),
  29241. name: "Back",
  29242. image: {
  29243. source: "./media/characters/tala-grovehorn/back.svg",
  29244. extra: 2635 / 2539,
  29245. bottom: 100 / 2732.8
  29246. }
  29247. },
  29248. mouth: {
  29249. height: math.unit(1.15, "feet"),
  29250. name: "Mouth",
  29251. image: {
  29252. source: "./media/characters/tala-grovehorn/mouth.svg"
  29253. }
  29254. },
  29255. dick: {
  29256. height: math.unit(2.36, "feet"),
  29257. name: "Dick",
  29258. image: {
  29259. source: "./media/characters/tala-grovehorn/dick.svg"
  29260. }
  29261. },
  29262. slit: {
  29263. height: math.unit(0.61, "feet"),
  29264. name: "Slit",
  29265. image: {
  29266. source: "./media/characters/tala-grovehorn/slit.svg"
  29267. }
  29268. },
  29269. },
  29270. [
  29271. ]
  29272. ))
  29273. characterMakers.push(() => makeCharacter(
  29274. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29275. {
  29276. front: {
  29277. height: math.unit(7 + 7 / 12, "feet"),
  29278. weight: math.unit(225, "lb"),
  29279. name: "Front",
  29280. image: {
  29281. source: "./media/characters/epona/front.svg",
  29282. extra: 2445 / 2290,
  29283. bottom: 251 / 2696
  29284. }
  29285. },
  29286. back: {
  29287. height: math.unit(7 + 7 / 12, "feet"),
  29288. weight: math.unit(225, "lb"),
  29289. name: "Back",
  29290. image: {
  29291. source: "./media/characters/epona/back.svg",
  29292. extra: 2546 / 2408,
  29293. bottom: 44 / 2589
  29294. }
  29295. },
  29296. genitals: {
  29297. height: math.unit(1.5, "feet"),
  29298. name: "Genitals",
  29299. image: {
  29300. source: "./media/characters/epona/genitals.svg"
  29301. }
  29302. },
  29303. },
  29304. [
  29305. {
  29306. name: "Normal",
  29307. height: math.unit(7 + 7 / 12, "feet"),
  29308. default: true
  29309. },
  29310. ]
  29311. ))
  29312. characterMakers.push(() => makeCharacter(
  29313. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29314. {
  29315. front: {
  29316. height: math.unit(7, "feet"),
  29317. weight: math.unit(518, "lb"),
  29318. name: "Front",
  29319. image: {
  29320. source: "./media/characters/avia-bloodbourn/front.svg",
  29321. extra: 1466 / 1350,
  29322. bottom: 65 / 1527
  29323. }
  29324. },
  29325. },
  29326. [
  29327. ]
  29328. ))
  29329. characterMakers.push(() => makeCharacter(
  29330. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29331. {
  29332. front: {
  29333. height: math.unit(9.35, "feet"),
  29334. weight: math.unit(600, "lb"),
  29335. name: "Front",
  29336. image: {
  29337. source: "./media/characters/amera/front.svg",
  29338. extra: 891 / 818,
  29339. bottom: 30 / 922.7
  29340. }
  29341. },
  29342. back: {
  29343. height: math.unit(9.35, "feet"),
  29344. weight: math.unit(600, "lb"),
  29345. name: "Back",
  29346. image: {
  29347. source: "./media/characters/amera/back.svg",
  29348. extra: 876 / 824,
  29349. bottom: 6.8 / 884
  29350. }
  29351. },
  29352. dick: {
  29353. height: math.unit(2.14, "feet"),
  29354. name: "Dick",
  29355. image: {
  29356. source: "./media/characters/amera/dick.svg"
  29357. }
  29358. },
  29359. },
  29360. [
  29361. {
  29362. name: "Normal",
  29363. height: math.unit(9.35, "feet"),
  29364. default: true
  29365. },
  29366. ]
  29367. ))
  29368. characterMakers.push(() => makeCharacter(
  29369. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29370. {
  29371. kneeling: {
  29372. height: math.unit(3 + 4 / 12, "feet"),
  29373. weight: math.unit(90, "lb"),
  29374. name: "Kneeling",
  29375. image: {
  29376. source: "./media/characters/rosewen/kneeling.svg",
  29377. extra: 1835 / 1571,
  29378. bottom: 27.7 / 1862
  29379. }
  29380. },
  29381. },
  29382. [
  29383. {
  29384. name: "Normal",
  29385. height: math.unit(3 + 4 / 12, "feet"),
  29386. default: true
  29387. },
  29388. ]
  29389. ))
  29390. characterMakers.push(() => makeCharacter(
  29391. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29392. {
  29393. front: {
  29394. height: math.unit(5 + 10 / 12, "feet"),
  29395. weight: math.unit(200, "lb"),
  29396. name: "Front",
  29397. image: {
  29398. source: "./media/characters/sabah/front.svg",
  29399. extra: 849 / 763,
  29400. bottom: 33.9 / 881
  29401. }
  29402. },
  29403. },
  29404. [
  29405. {
  29406. name: "Normal",
  29407. height: math.unit(5 + 10 / 12, "feet"),
  29408. default: true
  29409. },
  29410. ]
  29411. ))
  29412. characterMakers.push(() => makeCharacter(
  29413. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29414. {
  29415. front: {
  29416. height: math.unit(3 + 5 / 12, "feet"),
  29417. weight: math.unit(40, "kg"),
  29418. name: "Front",
  29419. image: {
  29420. source: "./media/characters/purple-flame/front.svg",
  29421. extra: 1577 / 1412,
  29422. bottom: 97 / 1694
  29423. }
  29424. },
  29425. frontDressed: {
  29426. height: math.unit(3 + 5 / 12, "feet"),
  29427. weight: math.unit(40, "kg"),
  29428. name: "Front (Dressed)",
  29429. image: {
  29430. source: "./media/characters/purple-flame/front-dressed.svg",
  29431. extra: 1577 / 1412,
  29432. bottom: 97 / 1694
  29433. }
  29434. },
  29435. headphones: {
  29436. height: math.unit(0.85, "feet"),
  29437. name: "Headphones",
  29438. image: {
  29439. source: "./media/characters/purple-flame/headphones.svg"
  29440. }
  29441. },
  29442. },
  29443. [
  29444. {
  29445. name: "Really Small",
  29446. height: math.unit(5, "cm")
  29447. },
  29448. {
  29449. name: "Micro",
  29450. height: math.unit(1 + 5 / 12, "feet")
  29451. },
  29452. {
  29453. name: "Normal",
  29454. height: math.unit(3 + 5 / 12, "feet"),
  29455. default: true
  29456. },
  29457. {
  29458. name: "Minimacro",
  29459. height: math.unit(125, "feet")
  29460. },
  29461. {
  29462. name: "Macro",
  29463. height: math.unit(0.5, "miles")
  29464. },
  29465. {
  29466. name: "Megamacro",
  29467. height: math.unit(50, "miles")
  29468. },
  29469. {
  29470. name: "Gigantic",
  29471. height: math.unit(750, "miles")
  29472. },
  29473. {
  29474. name: "Planetary",
  29475. height: math.unit(15000, "miles")
  29476. },
  29477. ]
  29478. ))
  29479. characterMakers.push(() => makeCharacter(
  29480. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29481. {
  29482. front: {
  29483. height: math.unit(14, "feet"),
  29484. weight: math.unit(959, "lb"),
  29485. name: "Front",
  29486. image: {
  29487. source: "./media/characters/arsenal/front.svg",
  29488. extra: 2357 / 2157,
  29489. bottom: 93 / 2458
  29490. }
  29491. },
  29492. },
  29493. [
  29494. {
  29495. name: "Normal",
  29496. height: math.unit(14, "feet"),
  29497. default: true
  29498. },
  29499. ]
  29500. ))
  29501. characterMakers.push(() => makeCharacter(
  29502. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29503. {
  29504. front: {
  29505. height: math.unit(6, "feet"),
  29506. weight: math.unit(150, "lb"),
  29507. name: "Front",
  29508. image: {
  29509. source: "./media/characters/adira/front.svg",
  29510. extra: 1078 / 1029,
  29511. bottom: 87 / 1166
  29512. }
  29513. },
  29514. },
  29515. [
  29516. {
  29517. name: "Micro",
  29518. height: math.unit(4, "inches"),
  29519. default: true
  29520. },
  29521. {
  29522. name: "Macro",
  29523. height: math.unit(50, "feet")
  29524. },
  29525. ]
  29526. ))
  29527. characterMakers.push(() => makeCharacter(
  29528. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29529. {
  29530. front: {
  29531. height: math.unit(16, "feet"),
  29532. weight: math.unit(1000, "lb"),
  29533. name: "Front",
  29534. image: {
  29535. source: "./media/characters/grim/front.svg",
  29536. extra: 622 / 614,
  29537. bottom: 18.1 / 642
  29538. }
  29539. },
  29540. back: {
  29541. height: math.unit(16, "feet"),
  29542. weight: math.unit(1000, "lb"),
  29543. name: "Back",
  29544. image: {
  29545. source: "./media/characters/grim/back.svg",
  29546. extra: 610.6 / 602,
  29547. bottom: 40.8 / 652
  29548. }
  29549. },
  29550. hunched: {
  29551. height: math.unit(9.75, "feet"),
  29552. weight: math.unit(1000, "lb"),
  29553. name: "Hunched",
  29554. image: {
  29555. source: "./media/characters/grim/hunched.svg",
  29556. extra: 304 / 297,
  29557. bottom: 35.4 / 394
  29558. }
  29559. },
  29560. },
  29561. [
  29562. {
  29563. name: "Normal",
  29564. height: math.unit(16, "feet"),
  29565. default: true
  29566. },
  29567. ]
  29568. ))
  29569. characterMakers.push(() => makeCharacter(
  29570. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29571. {
  29572. front: {
  29573. height: math.unit(2.3, "meters"),
  29574. weight: math.unit(300, "lb"),
  29575. name: "Front",
  29576. image: {
  29577. source: "./media/characters/sinja/front-sfw.svg",
  29578. extra: 1393 / 1294,
  29579. bottom: 70 / 1463
  29580. }
  29581. },
  29582. frontNsfw: {
  29583. height: math.unit(2.3, "meters"),
  29584. weight: math.unit(300, "lb"),
  29585. name: "Front (NSFW)",
  29586. image: {
  29587. source: "./media/characters/sinja/front-nsfw.svg",
  29588. extra: 1393 / 1294,
  29589. bottom: 70 / 1463
  29590. }
  29591. },
  29592. back: {
  29593. height: math.unit(2.3, "meters"),
  29594. weight: math.unit(300, "lb"),
  29595. name: "Back",
  29596. image: {
  29597. source: "./media/characters/sinja/back.svg",
  29598. extra: 1393 / 1294,
  29599. bottom: 70 / 1463
  29600. }
  29601. },
  29602. head: {
  29603. height: math.unit(1.771, "feet"),
  29604. name: "Head",
  29605. image: {
  29606. source: "./media/characters/sinja/head.svg"
  29607. }
  29608. },
  29609. slit: {
  29610. height: math.unit(0.8, "feet"),
  29611. name: "Slit",
  29612. image: {
  29613. source: "./media/characters/sinja/slit.svg"
  29614. }
  29615. },
  29616. },
  29617. [
  29618. {
  29619. name: "Normal",
  29620. height: math.unit(2.3, "meters")
  29621. },
  29622. {
  29623. name: "Macro",
  29624. height: math.unit(91, "meters"),
  29625. default: true
  29626. },
  29627. {
  29628. name: "Megamacro",
  29629. height: math.unit(91440, "meters")
  29630. },
  29631. {
  29632. name: "Gigamacro",
  29633. height: math.unit(60960000, "meters")
  29634. },
  29635. {
  29636. name: "Teramacro",
  29637. height: math.unit(9144000000, "meters")
  29638. },
  29639. ]
  29640. ))
  29641. characterMakers.push(() => makeCharacter(
  29642. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29643. {
  29644. front: {
  29645. height: math.unit(1.7, "meters"),
  29646. weight: math.unit(130, "lb"),
  29647. name: "Front",
  29648. image: {
  29649. source: "./media/characters/kyu/front.svg",
  29650. extra: 415 / 395,
  29651. bottom: 5 / 420
  29652. }
  29653. },
  29654. head: {
  29655. height: math.unit(1.75, "feet"),
  29656. name: "Head",
  29657. image: {
  29658. source: "./media/characters/kyu/head.svg"
  29659. }
  29660. },
  29661. foot: {
  29662. height: math.unit(0.81, "feet"),
  29663. name: "Foot",
  29664. image: {
  29665. source: "./media/characters/kyu/foot.svg"
  29666. }
  29667. },
  29668. },
  29669. [
  29670. {
  29671. name: "Normal",
  29672. height: math.unit(1.7, "meters")
  29673. },
  29674. {
  29675. name: "Macro",
  29676. height: math.unit(131, "feet"),
  29677. default: true
  29678. },
  29679. {
  29680. name: "Megamacro",
  29681. height: math.unit(91440, "meters")
  29682. },
  29683. {
  29684. name: "Gigamacro",
  29685. height: math.unit(60960000, "meters")
  29686. },
  29687. {
  29688. name: "Teramacro",
  29689. height: math.unit(9144000000, "meters")
  29690. },
  29691. ]
  29692. ))
  29693. characterMakers.push(() => makeCharacter(
  29694. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29695. {
  29696. front: {
  29697. height: math.unit(7 + 1 / 12, "feet"),
  29698. weight: math.unit(250, "lb"),
  29699. name: "Front",
  29700. image: {
  29701. source: "./media/characters/joey/front.svg",
  29702. extra: 1791 / 1537,
  29703. bottom: 28 / 1816
  29704. }
  29705. },
  29706. },
  29707. [
  29708. {
  29709. name: "Micro",
  29710. height: math.unit(3, "inches")
  29711. },
  29712. {
  29713. name: "Normal",
  29714. height: math.unit(7 + 1 / 12, "feet"),
  29715. default: true
  29716. },
  29717. ]
  29718. ))
  29719. characterMakers.push(() => makeCharacter(
  29720. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29721. {
  29722. front: {
  29723. height: math.unit(165, "cm"),
  29724. weight: math.unit(140, "lb"),
  29725. name: "Front",
  29726. image: {
  29727. source: "./media/characters/sam-evans/front.svg",
  29728. extra: 3417 / 3230,
  29729. bottom: 41.3 / 3417
  29730. }
  29731. },
  29732. frontSixTails: {
  29733. height: math.unit(165, "cm"),
  29734. weight: math.unit(140, "lb"),
  29735. name: "Front-six-tails",
  29736. image: {
  29737. source: "./media/characters/sam-evans/front-six-tails.svg",
  29738. extra: 3417 / 3230,
  29739. bottom: 41.3 / 3417
  29740. }
  29741. },
  29742. back: {
  29743. height: math.unit(165, "cm"),
  29744. weight: math.unit(140, "lb"),
  29745. name: "Back",
  29746. image: {
  29747. source: "./media/characters/sam-evans/back.svg",
  29748. extra: 3227 / 3032,
  29749. bottom: 6.8 / 3234
  29750. }
  29751. },
  29752. face: {
  29753. height: math.unit(0.68, "feet"),
  29754. name: "Face",
  29755. image: {
  29756. source: "./media/characters/sam-evans/face.svg"
  29757. }
  29758. },
  29759. },
  29760. [
  29761. {
  29762. name: "Normal",
  29763. height: math.unit(165, "cm"),
  29764. default: true
  29765. },
  29766. {
  29767. name: "Macro",
  29768. height: math.unit(100, "meters")
  29769. },
  29770. {
  29771. name: "Macro+",
  29772. height: math.unit(800, "meters")
  29773. },
  29774. {
  29775. name: "Macro++",
  29776. height: math.unit(3, "km")
  29777. },
  29778. {
  29779. name: "Macro+++",
  29780. height: math.unit(30, "km")
  29781. },
  29782. ]
  29783. ))
  29784. characterMakers.push(() => makeCharacter(
  29785. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29786. {
  29787. front: {
  29788. height: math.unit(10, "feet"),
  29789. weight: math.unit(750, "lb"),
  29790. name: "Front",
  29791. image: {
  29792. source: "./media/characters/juliet-a/front.svg",
  29793. extra: 1766 / 1720,
  29794. bottom: 43 / 1809
  29795. }
  29796. },
  29797. back: {
  29798. height: math.unit(10, "feet"),
  29799. weight: math.unit(750, "lb"),
  29800. name: "Back",
  29801. image: {
  29802. source: "./media/characters/juliet-a/back.svg",
  29803. extra: 1781 / 1734,
  29804. bottom: 35 / 1810,
  29805. }
  29806. },
  29807. },
  29808. [
  29809. {
  29810. name: "Normal",
  29811. height: math.unit(10, "feet"),
  29812. default: true
  29813. },
  29814. {
  29815. name: "Dragon Form",
  29816. height: math.unit(250, "feet")
  29817. },
  29818. {
  29819. name: "Macro",
  29820. height: math.unit(1000, "feet")
  29821. },
  29822. {
  29823. name: "Megamacro",
  29824. height: math.unit(10000, "feet")
  29825. }
  29826. ]
  29827. ))
  29828. characterMakers.push(() => makeCharacter(
  29829. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29830. {
  29831. regular: {
  29832. height: math.unit(7 + 3 / 12, "feet"),
  29833. weight: math.unit(260, "lb"),
  29834. name: "Regular",
  29835. image: {
  29836. source: "./media/characters/wild/regular.svg",
  29837. extra: 97.45 / 92,
  29838. bottom: 6.8 / 104.3
  29839. }
  29840. },
  29841. biggums: {
  29842. height: math.unit(8 + 6 / 12, "feet"),
  29843. weight: math.unit(425, "lb"),
  29844. name: "Biggums",
  29845. image: {
  29846. source: "./media/characters/wild/biggums.svg",
  29847. extra: 97.45 / 92,
  29848. bottom: 7.5 / 132.34
  29849. }
  29850. },
  29851. mawRegular: {
  29852. height: math.unit(1.24, "feet"),
  29853. name: "Maw (Regular)",
  29854. image: {
  29855. source: "./media/characters/wild/maw.svg"
  29856. }
  29857. },
  29858. mawBiggums: {
  29859. height: math.unit(1.47, "feet"),
  29860. name: "Maw (Biggums)",
  29861. image: {
  29862. source: "./media/characters/wild/maw.svg"
  29863. }
  29864. },
  29865. },
  29866. [
  29867. {
  29868. name: "Normal",
  29869. height: math.unit(7 + 3 / 12, "feet"),
  29870. default: true
  29871. },
  29872. ]
  29873. ))
  29874. characterMakers.push(() => makeCharacter(
  29875. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29876. {
  29877. front: {
  29878. height: math.unit(2.5, "meters"),
  29879. weight: math.unit(200, "kg"),
  29880. name: "Front",
  29881. image: {
  29882. source: "./media/characters/vidar/front.svg",
  29883. extra: 2994 / 2795,
  29884. bottom: 56 / 3061
  29885. }
  29886. },
  29887. back: {
  29888. height: math.unit(2.5, "meters"),
  29889. weight: math.unit(200, "kg"),
  29890. name: "Back",
  29891. image: {
  29892. source: "./media/characters/vidar/back.svg",
  29893. extra: 3131 / 2928,
  29894. bottom: 13.5 / 3141.5
  29895. }
  29896. },
  29897. feral: {
  29898. height: math.unit(2.5, "meters"),
  29899. weight: math.unit(2000, "kg"),
  29900. name: "Feral",
  29901. image: {
  29902. source: "./media/characters/vidar/feral.svg",
  29903. extra: 2790 / 1765,
  29904. bottom: 6 / 2796
  29905. }
  29906. },
  29907. },
  29908. [
  29909. {
  29910. name: "Normal",
  29911. height: math.unit(2.5, "meters"),
  29912. default: true
  29913. },
  29914. {
  29915. name: "Macro",
  29916. height: math.unit(100, "meters")
  29917. },
  29918. ]
  29919. ))
  29920. characterMakers.push(() => makeCharacter(
  29921. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29922. {
  29923. front: {
  29924. height: math.unit(5 + 9 / 12, "feet"),
  29925. weight: math.unit(120, "lb"),
  29926. name: "Front",
  29927. image: {
  29928. source: "./media/characters/ash/front.svg",
  29929. extra: 2189 / 1961,
  29930. bottom: 5.2 / 2194
  29931. }
  29932. },
  29933. },
  29934. [
  29935. {
  29936. name: "Normal",
  29937. height: math.unit(5 + 9 / 12, "feet"),
  29938. default: true
  29939. },
  29940. ]
  29941. ))
  29942. characterMakers.push(() => makeCharacter(
  29943. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29944. {
  29945. front: {
  29946. height: math.unit(9, "feet"),
  29947. weight: math.unit(10000, "lb"),
  29948. name: "Front",
  29949. image: {
  29950. source: "./media/characters/gygabite/front.svg",
  29951. bottom: 31.7 / 537.8,
  29952. extra: 505 / 370
  29953. }
  29954. },
  29955. },
  29956. [
  29957. {
  29958. name: "Normal",
  29959. height: math.unit(9, "feet"),
  29960. default: true
  29961. },
  29962. ]
  29963. ))
  29964. characterMakers.push(() => makeCharacter(
  29965. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29966. {
  29967. front: {
  29968. height: math.unit(12, "feet"),
  29969. weight: math.unit(4000, "lb"),
  29970. name: "Front",
  29971. image: {
  29972. source: "./media/characters/p0tat0/front.svg",
  29973. extra: 1065 / 921,
  29974. bottom: 55.7 / 1121.25
  29975. }
  29976. },
  29977. },
  29978. [
  29979. {
  29980. name: "Normal",
  29981. height: math.unit(12, "feet"),
  29982. default: true
  29983. },
  29984. ]
  29985. ))
  29986. characterMakers.push(() => makeCharacter(
  29987. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29988. {
  29989. side: {
  29990. height: math.unit(6.5, "feet"),
  29991. weight: math.unit(800, "lb"),
  29992. name: "Side",
  29993. image: {
  29994. source: "./media/characters/dusk/side.svg",
  29995. extra: 615 / 373,
  29996. bottom: 53 / 664
  29997. }
  29998. },
  29999. sitting: {
  30000. height: math.unit(7, "feet"),
  30001. weight: math.unit(800, "lb"),
  30002. name: "Sitting",
  30003. image: {
  30004. source: "./media/characters/dusk/sitting.svg",
  30005. extra: 753 / 425,
  30006. bottom: 33 / 774
  30007. }
  30008. },
  30009. head: {
  30010. height: math.unit(6.1, "feet"),
  30011. name: "Head",
  30012. image: {
  30013. source: "./media/characters/dusk/head.svg"
  30014. }
  30015. },
  30016. },
  30017. [
  30018. {
  30019. name: "Normal",
  30020. height: math.unit(7, "feet"),
  30021. default: true
  30022. },
  30023. ]
  30024. ))
  30025. characterMakers.push(() => makeCharacter(
  30026. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30027. {
  30028. front: {
  30029. height: math.unit(15, "feet"),
  30030. weight: math.unit(7000, "lb"),
  30031. name: "Front",
  30032. image: {
  30033. source: "./media/characters/jay-direwolf/front.svg",
  30034. extra: 1810 / 1732,
  30035. bottom: 66 / 1892
  30036. }
  30037. },
  30038. },
  30039. [
  30040. {
  30041. name: "Normal",
  30042. height: math.unit(15, "feet"),
  30043. default: true
  30044. },
  30045. ]
  30046. ))
  30047. characterMakers.push(() => makeCharacter(
  30048. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30049. {
  30050. front: {
  30051. height: math.unit(4 + 9 / 12, "feet"),
  30052. weight: math.unit(130, "lb"),
  30053. name: "Front",
  30054. image: {
  30055. source: "./media/characters/anchovie/front.svg",
  30056. extra: 382 / 350,
  30057. bottom: 25 / 409
  30058. }
  30059. },
  30060. back: {
  30061. height: math.unit(4 + 9 / 12, "feet"),
  30062. weight: math.unit(130, "lb"),
  30063. name: "Back",
  30064. image: {
  30065. source: "./media/characters/anchovie/back.svg",
  30066. extra: 385 / 352,
  30067. bottom: 16.6 / 402
  30068. }
  30069. },
  30070. frontDressed: {
  30071. height: math.unit(4 + 9 / 12, "feet"),
  30072. weight: math.unit(130, "lb"),
  30073. name: "Front (Dressed)",
  30074. image: {
  30075. source: "./media/characters/anchovie/front-dressed.svg",
  30076. extra: 382 / 350,
  30077. bottom: 25 / 409
  30078. }
  30079. },
  30080. backDressed: {
  30081. height: math.unit(4 + 9 / 12, "feet"),
  30082. weight: math.unit(130, "lb"),
  30083. name: "Back (Dressed)",
  30084. image: {
  30085. source: "./media/characters/anchovie/back-dressed.svg",
  30086. extra: 385 / 352,
  30087. bottom: 16.6 / 402
  30088. }
  30089. },
  30090. },
  30091. [
  30092. {
  30093. name: "Micro",
  30094. height: math.unit(6.4, "inches")
  30095. },
  30096. {
  30097. name: "Normal",
  30098. height: math.unit(4 + 9 / 12, "feet"),
  30099. default: true
  30100. },
  30101. ]
  30102. ))
  30103. characterMakers.push(() => makeCharacter(
  30104. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30105. {
  30106. front: {
  30107. height: math.unit(2, "meters"),
  30108. weight: math.unit(180, "lb"),
  30109. name: "Front",
  30110. image: {
  30111. source: "./media/characters/acidrenamon/front.svg",
  30112. extra: 987 / 890,
  30113. bottom: 22.8 / 1009
  30114. }
  30115. },
  30116. back: {
  30117. height: math.unit(2, "meters"),
  30118. weight: math.unit(180, "lb"),
  30119. name: "Back",
  30120. image: {
  30121. source: "./media/characters/acidrenamon/back.svg",
  30122. extra: 983 / 891,
  30123. bottom: 8.4 / 992
  30124. }
  30125. },
  30126. head: {
  30127. height: math.unit(1.92, "feet"),
  30128. name: "Head",
  30129. image: {
  30130. source: "./media/characters/acidrenamon/head.svg"
  30131. }
  30132. },
  30133. rump: {
  30134. height: math.unit(1.72, "feet"),
  30135. name: "Rump",
  30136. image: {
  30137. source: "./media/characters/acidrenamon/rump.svg"
  30138. }
  30139. },
  30140. tail: {
  30141. height: math.unit(4.2, "feet"),
  30142. name: "Tail",
  30143. image: {
  30144. source: "./media/characters/acidrenamon/tail.svg"
  30145. }
  30146. },
  30147. },
  30148. [
  30149. {
  30150. name: "Normal",
  30151. height: math.unit(2, "meters"),
  30152. default: true
  30153. },
  30154. {
  30155. name: "Minimacro",
  30156. height: math.unit(7, "meters")
  30157. },
  30158. {
  30159. name: "Macro",
  30160. height: math.unit(200, "meters")
  30161. },
  30162. {
  30163. name: "Gigamacro",
  30164. height: math.unit(0.2, "earths")
  30165. },
  30166. ]
  30167. ))
  30168. characterMakers.push(() => makeCharacter(
  30169. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30170. {
  30171. front: {
  30172. height: math.unit(152, "feet"),
  30173. name: "Front",
  30174. image: {
  30175. source: "./media/characters/kenzie-lee/front.svg",
  30176. extra: 1869/1774,
  30177. bottom: 128/1997
  30178. }
  30179. },
  30180. side: {
  30181. height: math.unit(86, "feet"),
  30182. name: "Side",
  30183. image: {
  30184. source: "./media/characters/kenzie-lee/side.svg",
  30185. extra: 930/815,
  30186. bottom: 177/1107
  30187. }
  30188. },
  30189. paw: {
  30190. height: math.unit(15, "feet"),
  30191. name: "Paw",
  30192. image: {
  30193. source: "./media/characters/kenzie-lee/paw.svg"
  30194. }
  30195. },
  30196. },
  30197. [
  30198. {
  30199. name: "Kenzie Flea",
  30200. height: math.unit(2, "mm"),
  30201. default: true
  30202. },
  30203. {
  30204. name: "Micro",
  30205. height: math.unit(2, "inches")
  30206. },
  30207. {
  30208. name: "Normal",
  30209. height: math.unit(152, "feet")
  30210. },
  30211. {
  30212. name: "Megamacro",
  30213. height: math.unit(7, "miles")
  30214. },
  30215. {
  30216. name: "Gigamacro",
  30217. height: math.unit(8000, "miles")
  30218. },
  30219. ]
  30220. ))
  30221. characterMakers.push(() => makeCharacter(
  30222. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30223. {
  30224. front: {
  30225. height: math.unit(6, "feet"),
  30226. name: "Front",
  30227. image: {
  30228. source: "./media/characters/withers/front.svg",
  30229. extra: 1935/1760,
  30230. bottom: 72/2007
  30231. }
  30232. },
  30233. back: {
  30234. height: math.unit(6, "feet"),
  30235. name: "Back",
  30236. image: {
  30237. source: "./media/characters/withers/back.svg",
  30238. extra: 1944/1792,
  30239. bottom: 12/1956
  30240. }
  30241. },
  30242. dressed: {
  30243. height: math.unit(6, "feet"),
  30244. name: "Dressed",
  30245. image: {
  30246. source: "./media/characters/withers/dressed.svg",
  30247. extra: 1937/1765,
  30248. bottom: 73/2010
  30249. }
  30250. },
  30251. phase1: {
  30252. height: math.unit(1.1, "feet"),
  30253. name: "Phase 1",
  30254. image: {
  30255. source: "./media/characters/withers/phase-1.svg",
  30256. extra: 1885/1232,
  30257. bottom: 0/1885
  30258. }
  30259. },
  30260. phase2: {
  30261. height: math.unit(1.05, "feet"),
  30262. name: "Phase 2",
  30263. image: {
  30264. source: "./media/characters/withers/phase-2.svg",
  30265. extra: 1792/1090,
  30266. bottom: 0/1792
  30267. }
  30268. },
  30269. partyWipe: {
  30270. height: math.unit(1.1, "feet"),
  30271. name: "Party Wipe",
  30272. image: {
  30273. source: "./media/characters/withers/party-wipe.svg",
  30274. extra: 1864/1207,
  30275. bottom: 0/1864
  30276. }
  30277. },
  30278. },
  30279. [
  30280. {
  30281. name: "Macro",
  30282. height: math.unit(167, "feet"),
  30283. default: true
  30284. },
  30285. {
  30286. name: "Megamacro",
  30287. height: math.unit(15, "miles")
  30288. }
  30289. ]
  30290. ))
  30291. characterMakers.push(() => makeCharacter(
  30292. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30293. {
  30294. front: {
  30295. height: math.unit(6 + 7 / 12, "feet"),
  30296. weight: math.unit(250, "lb"),
  30297. name: "Front",
  30298. image: {
  30299. source: "./media/characters/nemoskii/front.svg",
  30300. extra: 2270 / 1734,
  30301. bottom: 86 / 2354
  30302. }
  30303. },
  30304. back: {
  30305. height: math.unit(6 + 7 / 12, "feet"),
  30306. weight: math.unit(250, "lb"),
  30307. name: "Back",
  30308. image: {
  30309. source: "./media/characters/nemoskii/back.svg",
  30310. extra: 1845 / 1788,
  30311. bottom: 10.5 / 1852
  30312. }
  30313. },
  30314. head: {
  30315. height: math.unit(1.31, "feet"),
  30316. name: "Head",
  30317. image: {
  30318. source: "./media/characters/nemoskii/head.svg"
  30319. }
  30320. },
  30321. },
  30322. [
  30323. {
  30324. name: "Micro",
  30325. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30326. },
  30327. {
  30328. name: "Normal",
  30329. height: math.unit(6 + 7 / 12, "feet"),
  30330. default: true
  30331. },
  30332. {
  30333. name: "Macro",
  30334. height: math.unit((6 + 7 / 12) * 150, "feet")
  30335. },
  30336. {
  30337. name: "Macro+",
  30338. height: math.unit((6 + 7 / 12) * 500, "feet")
  30339. },
  30340. {
  30341. name: "Megamacro",
  30342. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30343. },
  30344. ]
  30345. ))
  30346. characterMakers.push(() => makeCharacter(
  30347. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30348. {
  30349. front: {
  30350. height: math.unit(1, "mile"),
  30351. weight: math.unit(265261.9, "lb"),
  30352. name: "Front",
  30353. image: {
  30354. source: "./media/characters/shui/front.svg",
  30355. extra: 1633 / 1564,
  30356. bottom: 91.5 / 1726
  30357. }
  30358. },
  30359. },
  30360. [
  30361. {
  30362. name: "Macro",
  30363. height: math.unit(1, "mile"),
  30364. default: true
  30365. },
  30366. ]
  30367. ))
  30368. characterMakers.push(() => makeCharacter(
  30369. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30370. {
  30371. front: {
  30372. height: math.unit(12 + 6 / 12, "feet"),
  30373. weight: math.unit(1342, "lb"),
  30374. name: "Front",
  30375. image: {
  30376. source: "./media/characters/arokh-takakura/front.svg",
  30377. extra: 1089 / 1043,
  30378. bottom: 77.4 / 1176.7
  30379. }
  30380. },
  30381. back: {
  30382. height: math.unit(12 + 6 / 12, "feet"),
  30383. weight: math.unit(1342, "lb"),
  30384. name: "Back",
  30385. image: {
  30386. source: "./media/characters/arokh-takakura/back.svg",
  30387. extra: 1046 / 1019,
  30388. bottom: 102 / 1150
  30389. }
  30390. },
  30391. },
  30392. [
  30393. {
  30394. name: "Big",
  30395. height: math.unit(12 + 6 / 12, "feet"),
  30396. default: true
  30397. },
  30398. ]
  30399. ))
  30400. characterMakers.push(() => makeCharacter(
  30401. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30402. {
  30403. front: {
  30404. height: math.unit(5 + 6 / 12, "feet"),
  30405. weight: math.unit(150, "lb"),
  30406. name: "Front",
  30407. image: {
  30408. source: "./media/characters/theo/front.svg",
  30409. extra: 1184 / 1131,
  30410. bottom: 7.4 / 1191
  30411. }
  30412. },
  30413. },
  30414. [
  30415. {
  30416. name: "Micro",
  30417. height: math.unit(5, "inches")
  30418. },
  30419. {
  30420. name: "Normal",
  30421. height: math.unit(5 + 6 / 12, "feet"),
  30422. default: true
  30423. },
  30424. ]
  30425. ))
  30426. characterMakers.push(() => makeCharacter(
  30427. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30428. {
  30429. front: {
  30430. height: math.unit(5 + 9 / 12, "feet"),
  30431. weight: math.unit(130, "lb"),
  30432. name: "Front",
  30433. image: {
  30434. source: "./media/characters/cecelia-swift/front.svg",
  30435. extra: 502 / 484,
  30436. bottom: 23 / 523
  30437. }
  30438. },
  30439. back: {
  30440. height: math.unit(5 + 9 / 12, "feet"),
  30441. weight: math.unit(130, "lb"),
  30442. name: "Back",
  30443. image: {
  30444. source: "./media/characters/cecelia-swift/back.svg",
  30445. extra: 499 / 485,
  30446. bottom: 12 / 511
  30447. }
  30448. },
  30449. head: {
  30450. height: math.unit(0.90, "feet"),
  30451. name: "Head",
  30452. image: {
  30453. source: "./media/characters/cecelia-swift/head.svg"
  30454. }
  30455. },
  30456. rump: {
  30457. height: math.unit(1.75, "feet"),
  30458. name: "Rump",
  30459. image: {
  30460. source: "./media/characters/cecelia-swift/rump.svg"
  30461. }
  30462. },
  30463. },
  30464. [
  30465. {
  30466. name: "Normal",
  30467. height: math.unit(5 + 9 / 12, "feet"),
  30468. default: true
  30469. },
  30470. {
  30471. name: "Big",
  30472. height: math.unit(50, "feet")
  30473. },
  30474. {
  30475. name: "Macro",
  30476. height: math.unit(100, "feet")
  30477. },
  30478. {
  30479. name: "Macro+",
  30480. height: math.unit(500, "feet")
  30481. },
  30482. {
  30483. name: "Macro++",
  30484. height: math.unit(1000, "feet")
  30485. },
  30486. ]
  30487. ))
  30488. characterMakers.push(() => makeCharacter(
  30489. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30490. {
  30491. front: {
  30492. height: math.unit(6, "feet"),
  30493. weight: math.unit(150, "lb"),
  30494. name: "Front",
  30495. image: {
  30496. source: "./media/characters/kaunan/front.svg",
  30497. extra: 2890 / 2523,
  30498. bottom: 49 / 2939
  30499. }
  30500. },
  30501. },
  30502. [
  30503. {
  30504. name: "Macro",
  30505. height: math.unit(150, "feet"),
  30506. default: true
  30507. },
  30508. ]
  30509. ))
  30510. characterMakers.push(() => makeCharacter(
  30511. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30512. {
  30513. dressed: {
  30514. height: math.unit(175, "cm"),
  30515. weight: math.unit(60, "kg"),
  30516. name: "Dressed",
  30517. image: {
  30518. source: "./media/characters/fei/dressed.svg",
  30519. extra: 1402/1278,
  30520. bottom: 27/1429
  30521. }
  30522. },
  30523. nude: {
  30524. height: math.unit(175, "cm"),
  30525. weight: math.unit(60, "kg"),
  30526. name: "Nude",
  30527. image: {
  30528. source: "./media/characters/fei/nude.svg",
  30529. extra: 1402/1278,
  30530. bottom: 27/1429
  30531. }
  30532. },
  30533. heels: {
  30534. height: math.unit(0.466, "feet"),
  30535. name: "Heels",
  30536. image: {
  30537. source: "./media/characters/fei/heels.svg",
  30538. extra: 156/152,
  30539. bottom: 28/184
  30540. }
  30541. },
  30542. },
  30543. [
  30544. {
  30545. name: "Mortal",
  30546. height: math.unit(175, "cm")
  30547. },
  30548. {
  30549. name: "Normal",
  30550. height: math.unit(3500, "m")
  30551. },
  30552. {
  30553. name: "Stroll",
  30554. height: math.unit(18.4, "km"),
  30555. default: true
  30556. },
  30557. {
  30558. name: "Showoff",
  30559. height: math.unit(175, "km")
  30560. },
  30561. ]
  30562. ))
  30563. characterMakers.push(() => makeCharacter(
  30564. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30565. {
  30566. front: {
  30567. height: math.unit(7, "feet"),
  30568. weight: math.unit(1000, "kg"),
  30569. name: "Front",
  30570. image: {
  30571. source: "./media/characters/edrax/front.svg",
  30572. extra: 2838 / 2550,
  30573. bottom: 130 / 2968
  30574. }
  30575. },
  30576. },
  30577. [
  30578. {
  30579. name: "Small",
  30580. height: math.unit(7, "feet")
  30581. },
  30582. {
  30583. name: "Normal",
  30584. height: math.unit(1500, "meters")
  30585. },
  30586. {
  30587. name: "Mega",
  30588. height: math.unit(12000000, "km"),
  30589. default: true
  30590. },
  30591. {
  30592. name: "Megamacro",
  30593. height: math.unit(10600000, "lightyears")
  30594. },
  30595. {
  30596. name: "Hypermacro",
  30597. height: math.unit(256, "yottameters")
  30598. },
  30599. ]
  30600. ))
  30601. characterMakers.push(() => makeCharacter(
  30602. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30603. {
  30604. front: {
  30605. height: math.unit(10, "feet"),
  30606. weight: math.unit(750, "lb"),
  30607. name: "Front",
  30608. image: {
  30609. source: "./media/characters/clove/front.svg",
  30610. extra: 1918/1751,
  30611. bottom: 52/1970
  30612. }
  30613. },
  30614. back: {
  30615. height: math.unit(10, "feet"),
  30616. weight: math.unit(750, "lb"),
  30617. name: "Back",
  30618. image: {
  30619. source: "./media/characters/clove/back.svg",
  30620. extra: 1912/1747,
  30621. bottom: 50/1962
  30622. }
  30623. },
  30624. },
  30625. [
  30626. {
  30627. name: "Normal",
  30628. height: math.unit(10, "feet"),
  30629. default: true
  30630. },
  30631. ]
  30632. ))
  30633. characterMakers.push(() => makeCharacter(
  30634. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30635. {
  30636. front: {
  30637. height: math.unit(4, "feet"),
  30638. weight: math.unit(50, "lb"),
  30639. name: "Front",
  30640. image: {
  30641. source: "./media/characters/alex-rabbit/front.svg",
  30642. extra: 507 / 458,
  30643. bottom: 18.5 / 527
  30644. }
  30645. },
  30646. back: {
  30647. height: math.unit(4, "feet"),
  30648. weight: math.unit(50, "lb"),
  30649. name: "Back",
  30650. image: {
  30651. source: "./media/characters/alex-rabbit/back.svg",
  30652. extra: 502 / 460,
  30653. bottom: 18.9 / 521
  30654. }
  30655. },
  30656. },
  30657. [
  30658. {
  30659. name: "Normal",
  30660. height: math.unit(4, "feet"),
  30661. default: true
  30662. },
  30663. ]
  30664. ))
  30665. characterMakers.push(() => makeCharacter(
  30666. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30667. {
  30668. front: {
  30669. height: math.unit(1 + 3 / 12, "feet"),
  30670. weight: math.unit(80, "lb"),
  30671. name: "Front",
  30672. image: {
  30673. source: "./media/characters/zander-rose/front.svg",
  30674. extra: 916 / 797,
  30675. bottom: 17 / 933
  30676. }
  30677. },
  30678. back: {
  30679. height: math.unit(1 + 3 / 12, "feet"),
  30680. weight: math.unit(80, "lb"),
  30681. name: "Back",
  30682. image: {
  30683. source: "./media/characters/zander-rose/back.svg",
  30684. extra: 903 / 779,
  30685. bottom: 31 / 934
  30686. }
  30687. },
  30688. },
  30689. [
  30690. {
  30691. name: "Normal",
  30692. height: math.unit(1 + 3 / 12, "feet"),
  30693. default: true
  30694. },
  30695. ]
  30696. ))
  30697. characterMakers.push(() => makeCharacter(
  30698. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30699. {
  30700. anthro: {
  30701. height: math.unit(6, "feet"),
  30702. weight: math.unit(150, "lb"),
  30703. name: "Anthro",
  30704. image: {
  30705. source: "./media/characters/razz/anthro.svg",
  30706. extra: 1437 / 1343,
  30707. bottom: 48 / 1485
  30708. }
  30709. },
  30710. feral: {
  30711. height: math.unit(6, "feet"),
  30712. weight: math.unit(150, "lb"),
  30713. name: "Feral",
  30714. image: {
  30715. source: "./media/characters/razz/feral.svg",
  30716. extra: 2569 / 1385,
  30717. bottom: 95 / 2664
  30718. }
  30719. },
  30720. },
  30721. [
  30722. {
  30723. name: "Normal",
  30724. height: math.unit(6, "feet"),
  30725. default: true
  30726. },
  30727. ]
  30728. ))
  30729. characterMakers.push(() => makeCharacter(
  30730. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30731. {
  30732. front: {
  30733. height: math.unit(9 + 4 / 12, "feet"),
  30734. weight: math.unit(500, "lb"),
  30735. name: "Front",
  30736. image: {
  30737. source: "./media/characters/morrigan/front.svg",
  30738. extra: 2707 / 2579,
  30739. bottom: 156 / 2863
  30740. }
  30741. },
  30742. },
  30743. [
  30744. {
  30745. name: "Normal",
  30746. height: math.unit(9 + 4 / 12, "feet"),
  30747. default: true
  30748. },
  30749. ]
  30750. ))
  30751. characterMakers.push(() => makeCharacter(
  30752. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30753. {
  30754. front: {
  30755. height: math.unit(5, "stories"),
  30756. weight: math.unit(4000, "lb"),
  30757. name: "Front",
  30758. image: {
  30759. source: "./media/characters/jenene/front.svg",
  30760. extra: 1780 / 1710,
  30761. bottom: 57 / 1837
  30762. }
  30763. },
  30764. },
  30765. [
  30766. {
  30767. name: "Normal",
  30768. height: math.unit(5, "stories"),
  30769. default: true
  30770. },
  30771. ]
  30772. ))
  30773. characterMakers.push(() => makeCharacter(
  30774. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30775. {
  30776. taurSfw: {
  30777. height: math.unit(10, "meters"),
  30778. weight: math.unit(17500, "kg"),
  30779. name: "Taur",
  30780. image: {
  30781. source: "./media/characters/faey/taur-sfw.svg",
  30782. extra: 1200 / 968,
  30783. bottom: 41 / 1241
  30784. }
  30785. },
  30786. chestmaw: {
  30787. height: math.unit(2.01, "meters"),
  30788. name: "Chestmaw",
  30789. image: {
  30790. source: "./media/characters/faey/chestmaw.svg"
  30791. }
  30792. },
  30793. foot: {
  30794. height: math.unit(2.43, "meters"),
  30795. name: "Foot",
  30796. image: {
  30797. source: "./media/characters/faey/foot.svg"
  30798. }
  30799. },
  30800. jaws: {
  30801. height: math.unit(1.66, "meters"),
  30802. name: "Jaws",
  30803. image: {
  30804. source: "./media/characters/faey/jaws.svg"
  30805. }
  30806. },
  30807. tongues: {
  30808. height: math.unit(2.01, "meters"),
  30809. name: "Tongues",
  30810. image: {
  30811. source: "./media/characters/faey/tongues.svg"
  30812. }
  30813. },
  30814. },
  30815. [
  30816. {
  30817. name: "Small",
  30818. height: math.unit(10, "meters"),
  30819. default: true
  30820. },
  30821. {
  30822. name: "Big",
  30823. height: math.unit(500000, "km")
  30824. },
  30825. ]
  30826. ))
  30827. characterMakers.push(() => makeCharacter(
  30828. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30829. {
  30830. front: {
  30831. height: math.unit(7, "feet"),
  30832. weight: math.unit(275, "lb"),
  30833. name: "Front",
  30834. image: {
  30835. source: "./media/characters/roku/front.svg",
  30836. extra: 903 / 878,
  30837. bottom: 37 / 940
  30838. }
  30839. },
  30840. },
  30841. [
  30842. {
  30843. name: "Normal",
  30844. height: math.unit(7, "feet"),
  30845. default: true
  30846. },
  30847. {
  30848. name: "Macro",
  30849. height: math.unit(500, "feet")
  30850. },
  30851. {
  30852. name: "Megamacro",
  30853. height: math.unit(200, "miles")
  30854. },
  30855. ]
  30856. ))
  30857. characterMakers.push(() => makeCharacter(
  30858. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30859. {
  30860. front: {
  30861. height: math.unit(6 + 2 / 12, "feet"),
  30862. weight: math.unit(150, "lb"),
  30863. name: "Front",
  30864. image: {
  30865. source: "./media/characters/lira/front.svg",
  30866. extra: 1727 / 1605,
  30867. bottom: 26 / 1753
  30868. }
  30869. },
  30870. back: {
  30871. height: math.unit(6 + 2 / 12, "feet"),
  30872. weight: math.unit(150, "lb"),
  30873. name: "Back",
  30874. image: {
  30875. source: "./media/characters/lira/back.svg",
  30876. extra: 1713/1621,
  30877. bottom: 20/1733
  30878. }
  30879. },
  30880. hand: {
  30881. height: math.unit(0.75, "feet"),
  30882. name: "Hand",
  30883. image: {
  30884. source: "./media/characters/lira/hand.svg"
  30885. }
  30886. },
  30887. maw: {
  30888. height: math.unit(0.65, "feet"),
  30889. name: "Maw",
  30890. image: {
  30891. source: "./media/characters/lira/maw.svg"
  30892. }
  30893. },
  30894. pawDigi: {
  30895. height: math.unit(1.6, "feet"),
  30896. name: "Paw Digi",
  30897. image: {
  30898. source: "./media/characters/lira/paw-digi.svg"
  30899. }
  30900. },
  30901. pawPlanti: {
  30902. height: math.unit(1.4, "feet"),
  30903. name: "Paw Planti",
  30904. image: {
  30905. source: "./media/characters/lira/paw-planti.svg"
  30906. }
  30907. },
  30908. },
  30909. [
  30910. {
  30911. name: "Normal",
  30912. height: math.unit(6 + 2 / 12, "feet"),
  30913. default: true
  30914. },
  30915. {
  30916. name: "Macro",
  30917. height: math.unit(100, "feet")
  30918. },
  30919. {
  30920. name: "Macro²",
  30921. height: math.unit(1600, "feet")
  30922. },
  30923. {
  30924. name: "Planetary",
  30925. height: math.unit(20, "earths")
  30926. },
  30927. ]
  30928. ))
  30929. characterMakers.push(() => makeCharacter(
  30930. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30931. {
  30932. front: {
  30933. height: math.unit(6, "feet"),
  30934. weight: math.unit(150, "lb"),
  30935. name: "Front",
  30936. image: {
  30937. source: "./media/characters/hadjet/front.svg",
  30938. extra: 1480 / 1346,
  30939. bottom: 26 / 1506
  30940. }
  30941. },
  30942. frontNsfw: {
  30943. height: math.unit(6, "feet"),
  30944. weight: math.unit(150, "lb"),
  30945. name: "Front (NSFW)",
  30946. image: {
  30947. source: "./media/characters/hadjet/front-nsfw.svg",
  30948. extra: 1440 / 1358,
  30949. bottom: 52 / 1492
  30950. }
  30951. },
  30952. },
  30953. [
  30954. {
  30955. name: "Macro",
  30956. height: math.unit(10, "stories"),
  30957. default: true
  30958. },
  30959. {
  30960. name: "Megamacro",
  30961. height: math.unit(1.5, "miles")
  30962. },
  30963. {
  30964. name: "Megamacro+",
  30965. height: math.unit(5, "miles")
  30966. },
  30967. ]
  30968. ))
  30969. characterMakers.push(() => makeCharacter(
  30970. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30971. {
  30972. side: {
  30973. height: math.unit(106, "feet"),
  30974. weight: math.unit(500, "tonnes"),
  30975. name: "Side",
  30976. image: {
  30977. source: "./media/characters/kodran/side.svg",
  30978. extra: 553 / 480,
  30979. bottom: 33 / 586
  30980. }
  30981. },
  30982. front: {
  30983. height: math.unit(132, "feet"),
  30984. weight: math.unit(500, "tonnes"),
  30985. name: "Front",
  30986. image: {
  30987. source: "./media/characters/kodran/front.svg",
  30988. extra: 667 / 643,
  30989. bottom: 42 / 709
  30990. }
  30991. },
  30992. flying: {
  30993. height: math.unit(350, "feet"),
  30994. weight: math.unit(500, "tonnes"),
  30995. name: "Flying",
  30996. image: {
  30997. source: "./media/characters/kodran/flying.svg"
  30998. }
  30999. },
  31000. foot: {
  31001. height: math.unit(33, "feet"),
  31002. name: "Foot",
  31003. image: {
  31004. source: "./media/characters/kodran/foot.svg"
  31005. }
  31006. },
  31007. footFront: {
  31008. height: math.unit(19, "feet"),
  31009. name: "Foot (Front)",
  31010. image: {
  31011. source: "./media/characters/kodran/foot-front.svg",
  31012. extra: 261 / 261,
  31013. bottom: 91 / 352
  31014. }
  31015. },
  31016. headFront: {
  31017. height: math.unit(53, "feet"),
  31018. name: "Head (Front)",
  31019. image: {
  31020. source: "./media/characters/kodran/head-front.svg"
  31021. }
  31022. },
  31023. headSide: {
  31024. height: math.unit(65, "feet"),
  31025. name: "Head (Side)",
  31026. image: {
  31027. source: "./media/characters/kodran/head-side.svg"
  31028. }
  31029. },
  31030. throat: {
  31031. height: math.unit(79, "feet"),
  31032. name: "Throat",
  31033. image: {
  31034. source: "./media/characters/kodran/throat.svg"
  31035. }
  31036. },
  31037. },
  31038. [
  31039. {
  31040. name: "Large",
  31041. height: math.unit(106, "feet"),
  31042. default: true
  31043. },
  31044. ]
  31045. ))
  31046. characterMakers.push(() => makeCharacter(
  31047. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31048. {
  31049. side: {
  31050. height: math.unit(11, "feet"),
  31051. weight: math.unit(150, "lb"),
  31052. name: "Side",
  31053. image: {
  31054. source: "./media/characters/pyxaron/side.svg",
  31055. extra: 305 / 195,
  31056. bottom: 17 / 322
  31057. }
  31058. },
  31059. },
  31060. [
  31061. {
  31062. name: "Normal",
  31063. height: math.unit(11, "feet"),
  31064. default: true
  31065. },
  31066. ]
  31067. ))
  31068. characterMakers.push(() => makeCharacter(
  31069. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31070. {
  31071. front: {
  31072. height: math.unit(6, "feet"),
  31073. weight: math.unit(150, "lb"),
  31074. name: "Front",
  31075. image: {
  31076. source: "./media/characters/meep/front.svg",
  31077. extra: 88 / 80,
  31078. bottom: 6 / 94
  31079. }
  31080. },
  31081. },
  31082. [
  31083. {
  31084. name: "Fun Sized",
  31085. height: math.unit(2, "inches"),
  31086. default: true
  31087. },
  31088. {
  31089. name: "Friend Sized",
  31090. height: math.unit(8, "inches")
  31091. },
  31092. ]
  31093. ))
  31094. characterMakers.push(() => makeCharacter(
  31095. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31096. {
  31097. front: {
  31098. height: math.unit(15, "feet"),
  31099. weight: math.unit(2500, "lb"),
  31100. name: "Front",
  31101. image: {
  31102. source: "./media/characters/holly-rabbit/front.svg",
  31103. extra: 1433 / 1233,
  31104. bottom: 125 / 1558
  31105. }
  31106. },
  31107. dick: {
  31108. height: math.unit(4.6, "feet"),
  31109. name: "Dick",
  31110. image: {
  31111. source: "./media/characters/holly-rabbit/dick.svg"
  31112. }
  31113. },
  31114. },
  31115. [
  31116. {
  31117. name: "Normal",
  31118. height: math.unit(15, "feet"),
  31119. default: true
  31120. },
  31121. {
  31122. name: "Macro",
  31123. height: math.unit(250, "feet")
  31124. },
  31125. {
  31126. name: "Macro+",
  31127. height: math.unit(2500, "feet")
  31128. },
  31129. ]
  31130. ))
  31131. characterMakers.push(() => makeCharacter(
  31132. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31133. {
  31134. front: {
  31135. height: math.unit(3.02, "meters"),
  31136. weight: math.unit(500, "kg"),
  31137. name: "Front",
  31138. image: {
  31139. source: "./media/characters/drena/front.svg",
  31140. extra: 282 / 243,
  31141. bottom: 8 / 290
  31142. }
  31143. },
  31144. side: {
  31145. height: math.unit(3.02, "meters"),
  31146. weight: math.unit(500, "kg"),
  31147. name: "Side",
  31148. image: {
  31149. source: "./media/characters/drena/side.svg",
  31150. extra: 280 / 245,
  31151. bottom: 10 / 290
  31152. }
  31153. },
  31154. back: {
  31155. height: math.unit(3.02, "meters"),
  31156. weight: math.unit(500, "kg"),
  31157. name: "Back",
  31158. image: {
  31159. source: "./media/characters/drena/back.svg",
  31160. extra: 278 / 243,
  31161. bottom: 2 / 280
  31162. }
  31163. },
  31164. foot: {
  31165. height: math.unit(0.75, "meters"),
  31166. name: "Foot",
  31167. image: {
  31168. source: "./media/characters/drena/foot.svg"
  31169. }
  31170. },
  31171. maw: {
  31172. height: math.unit(0.82, "meters"),
  31173. name: "Maw",
  31174. image: {
  31175. source: "./media/characters/drena/maw.svg"
  31176. }
  31177. },
  31178. eating: {
  31179. height: math.unit(0.75, "meters"),
  31180. name: "Eating",
  31181. image: {
  31182. source: "./media/characters/drena/eating.svg"
  31183. }
  31184. },
  31185. rump: {
  31186. height: math.unit(0.93, "meters"),
  31187. name: "Rump",
  31188. image: {
  31189. source: "./media/characters/drena/rump.svg"
  31190. }
  31191. },
  31192. },
  31193. [
  31194. {
  31195. name: "Normal",
  31196. height: math.unit(3.02, "meters"),
  31197. default: true
  31198. },
  31199. ]
  31200. ))
  31201. characterMakers.push(() => makeCharacter(
  31202. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31203. {
  31204. front: {
  31205. height: math.unit(6 + 4 / 12, "feet"),
  31206. weight: math.unit(250, "lb"),
  31207. name: "Front",
  31208. image: {
  31209. source: "./media/characters/remmyzilla/front.svg",
  31210. extra: 4033 / 3588,
  31211. bottom: 123 / 4156
  31212. }
  31213. },
  31214. back: {
  31215. height: math.unit(6 + 4 / 12, "feet"),
  31216. weight: math.unit(250, "lb"),
  31217. name: "Back",
  31218. image: {
  31219. source: "./media/characters/remmyzilla/back.svg",
  31220. extra: 1696/1602,
  31221. bottom: 63/1759
  31222. }
  31223. },
  31224. paw: {
  31225. height: math.unit(1.73, "feet"),
  31226. name: "Paw",
  31227. image: {
  31228. source: "./media/characters/remmyzilla/paw.svg"
  31229. },
  31230. extraAttributes: {
  31231. "toeSize": {
  31232. name: "Toe Size",
  31233. power: 2,
  31234. type: "area",
  31235. base: math.unit(0.0035, "m^2")
  31236. },
  31237. "padSize": {
  31238. name: "Pad Size",
  31239. power: 2,
  31240. type: "area",
  31241. base: math.unit(0.015, "m^2")
  31242. },
  31243. "pawsize": {
  31244. name: "Paw Size",
  31245. power: 2,
  31246. type: "area",
  31247. base: math.unit(0.072, "m^2")
  31248. },
  31249. }
  31250. },
  31251. maw: {
  31252. height: math.unit(1.73, "feet"),
  31253. name: "Maw",
  31254. image: {
  31255. source: "./media/characters/remmyzilla/maw.svg"
  31256. }
  31257. },
  31258. },
  31259. [
  31260. {
  31261. name: "Normal",
  31262. height: math.unit(6 + 4 / 12, "feet")
  31263. },
  31264. {
  31265. name: "Minimacro",
  31266. height: math.unit(12 + 8 / 12, "feet")
  31267. },
  31268. {
  31269. name: "Normal",
  31270. height: math.unit(640, "feet"),
  31271. default: true
  31272. },
  31273. {
  31274. name: "Megamacro",
  31275. height: math.unit(6400, "feet")
  31276. },
  31277. {
  31278. name: "Gigamacro",
  31279. height: math.unit(64000, "miles")
  31280. },
  31281. ]
  31282. ))
  31283. characterMakers.push(() => makeCharacter(
  31284. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31285. {
  31286. front: {
  31287. height: math.unit(2.5, "meters"),
  31288. weight: math.unit(300, "lb"),
  31289. name: "Front",
  31290. image: {
  31291. source: "./media/characters/lawrence/front.svg",
  31292. extra: 357 / 335,
  31293. bottom: 30 / 387
  31294. }
  31295. },
  31296. back: {
  31297. height: math.unit(2.5, "meters"),
  31298. weight: math.unit(300, "lb"),
  31299. name: "Back",
  31300. image: {
  31301. source: "./media/characters/lawrence/back.svg",
  31302. extra: 357 / 338,
  31303. bottom: 16 / 373
  31304. }
  31305. },
  31306. head: {
  31307. height: math.unit(0.9, "meter"),
  31308. name: "Head",
  31309. image: {
  31310. source: "./media/characters/lawrence/head.svg"
  31311. }
  31312. },
  31313. maw: {
  31314. height: math.unit(0.7, "meter"),
  31315. name: "Maw",
  31316. image: {
  31317. source: "./media/characters/lawrence/maw.svg"
  31318. }
  31319. },
  31320. footBottom: {
  31321. height: math.unit(0.5, "meter"),
  31322. name: "Foot (Bottom)",
  31323. image: {
  31324. source: "./media/characters/lawrence/foot-bottom.svg"
  31325. }
  31326. },
  31327. footTop: {
  31328. height: math.unit(0.5, "meter"),
  31329. name: "Foot (Top)",
  31330. image: {
  31331. source: "./media/characters/lawrence/foot-top.svg"
  31332. }
  31333. },
  31334. },
  31335. [
  31336. {
  31337. name: "Normal",
  31338. height: math.unit(2.5, "meters"),
  31339. default: true
  31340. },
  31341. {
  31342. name: "Macro",
  31343. height: math.unit(95, "meters")
  31344. },
  31345. {
  31346. name: "Megamacro",
  31347. height: math.unit(150, "km")
  31348. },
  31349. ]
  31350. ))
  31351. characterMakers.push(() => makeCharacter(
  31352. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31353. {
  31354. front: {
  31355. height: math.unit(4.2, "meters"),
  31356. preyCapacity: math.unit(50, "m^3"),
  31357. weight: math.unit(30, "tonnes"),
  31358. name: "Front",
  31359. image: {
  31360. source: "./media/characters/sydney/front.svg",
  31361. extra: 1177/1129,
  31362. bottom: 197/1374
  31363. },
  31364. extraAttributes: {
  31365. "length": {
  31366. name: "Length",
  31367. power: 1,
  31368. type: "length",
  31369. base: math.unit(21, "meters")
  31370. },
  31371. }
  31372. },
  31373. },
  31374. [
  31375. {
  31376. name: "Normal",
  31377. height: math.unit(4.2, "meters"),
  31378. default: true
  31379. },
  31380. ]
  31381. ))
  31382. characterMakers.push(() => makeCharacter(
  31383. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31384. {
  31385. back: {
  31386. height: math.unit(201, "feet"),
  31387. name: "Back",
  31388. image: {
  31389. source: "./media/characters/jessica/back.svg",
  31390. extra: 273 / 259,
  31391. bottom: 7 / 280
  31392. }
  31393. },
  31394. },
  31395. [
  31396. {
  31397. name: "Normal",
  31398. height: math.unit(201, "feet"),
  31399. default: true
  31400. },
  31401. {
  31402. name: "Megamacro",
  31403. height: math.unit(8, "miles")
  31404. },
  31405. ]
  31406. ))
  31407. characterMakers.push(() => makeCharacter(
  31408. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31409. {
  31410. side: {
  31411. height: math.unit(5.6, "m"),
  31412. weight: math.unit(8000, "kg"),
  31413. name: "Side",
  31414. image: {
  31415. source: "./media/characters/victoria/side.svg",
  31416. extra: 1542/1229,
  31417. bottom: 124/1666
  31418. }
  31419. },
  31420. maw: {
  31421. height: math.unit(7.14, "feet"),
  31422. name: "Maw",
  31423. image: {
  31424. source: "./media/characters/victoria/maw.svg"
  31425. }
  31426. },
  31427. },
  31428. [
  31429. {
  31430. name: "Normal",
  31431. height: math.unit(5.6, "m"),
  31432. default: true
  31433. },
  31434. ]
  31435. ))
  31436. characterMakers.push(() => makeCharacter(
  31437. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31438. {
  31439. front: {
  31440. height: math.unit(5 + 6 / 12, "feet"),
  31441. name: "Front",
  31442. image: {
  31443. source: "./media/characters/cat/front.svg",
  31444. extra: 1449/1295,
  31445. bottom: 34/1483
  31446. },
  31447. form: "cat",
  31448. default: true
  31449. },
  31450. back: {
  31451. height: math.unit(5 + 6 / 12, "feet"),
  31452. name: "Back",
  31453. image: {
  31454. source: "./media/characters/cat/back.svg",
  31455. extra: 1466/1301,
  31456. bottom: 19/1485
  31457. },
  31458. form: "cat"
  31459. },
  31460. taur: {
  31461. height: math.unit(7, "feet"),
  31462. name: "Taur",
  31463. image: {
  31464. source: "./media/characters/cat/taur.svg",
  31465. extra: 1389/1233,
  31466. bottom: 83/1472
  31467. },
  31468. form: "taur",
  31469. default: true
  31470. },
  31471. lucarioFront: {
  31472. height: math.unit(4, "feet"),
  31473. name: "Lucario (Front)",
  31474. image: {
  31475. source: "./media/characters/cat/lucario-front.svg",
  31476. extra: 1149/1019,
  31477. bottom: 84/1233
  31478. },
  31479. form: "lucario",
  31480. default: true
  31481. },
  31482. lucarioBack: {
  31483. height: math.unit(4, "feet"),
  31484. name: "Lucario (Back)",
  31485. image: {
  31486. source: "./media/characters/cat/lucario-back.svg",
  31487. extra: 1190/1059,
  31488. bottom: 33/1223
  31489. },
  31490. form: "lucario"
  31491. },
  31492. megaLucario: {
  31493. height: math.unit(4, "feet"),
  31494. name: "Mega Lucario",
  31495. image: {
  31496. source: "./media/characters/cat/mega-lucario.svg",
  31497. extra: 1515 / 1319,
  31498. bottom: 63 / 1578
  31499. },
  31500. form: "lucario"
  31501. },
  31502. nickit: {
  31503. height: math.unit(2, "feet"),
  31504. name: "Nickit",
  31505. image: {
  31506. source: "./media/characters/cat/nickit.svg",
  31507. extra: 1980 / 1585,
  31508. bottom: 102 / 2082
  31509. },
  31510. form: "nickit",
  31511. default: true
  31512. },
  31513. lopunnyFront: {
  31514. height: math.unit(5, "feet"),
  31515. name: "Lopunny (Front)",
  31516. image: {
  31517. source: "./media/characters/cat/lopunny-front.svg",
  31518. extra: 1782 / 1469,
  31519. bottom: 38 / 1820
  31520. },
  31521. form: "lopunny",
  31522. default: true
  31523. },
  31524. lopunnyBack: {
  31525. height: math.unit(5, "feet"),
  31526. name: "Lopunny (Back)",
  31527. image: {
  31528. source: "./media/characters/cat/lopunny-back.svg",
  31529. extra: 1660 / 1490,
  31530. bottom: 25 / 1685
  31531. },
  31532. form: "lopunny"
  31533. },
  31534. },
  31535. [
  31536. {
  31537. name: "Really small",
  31538. height: math.unit(1, "nm"),
  31539. allForms: true
  31540. },
  31541. {
  31542. name: "Micro",
  31543. height: math.unit(5, "inches"),
  31544. allForms: true
  31545. },
  31546. {
  31547. name: "Normal",
  31548. height: math.unit(5 + 6 / 12, "feet"),
  31549. default: true,
  31550. form: "cat"
  31551. },
  31552. {
  31553. name: "Normal",
  31554. height: math.unit(7, "feet"),
  31555. default: true,
  31556. form: "taur"
  31557. },
  31558. {
  31559. name: "Normal",
  31560. height: math.unit(4, "feet"),
  31561. default: true,
  31562. form: "lucario"
  31563. },
  31564. {
  31565. name: "Normal",
  31566. height: math.unit(2, "feet"),
  31567. default: true,
  31568. form: "nickit"
  31569. },
  31570. {
  31571. name: "Normal",
  31572. height: math.unit(5, "feet"),
  31573. default: true,
  31574. form: "lopunny"
  31575. },
  31576. {
  31577. name: "Macro",
  31578. height: math.unit(50, "feet"),
  31579. allForms: true
  31580. },
  31581. {
  31582. name: "Macro+",
  31583. height: math.unit(150, "feet"),
  31584. allForms: true
  31585. },
  31586. {
  31587. name: "Megamacro",
  31588. height: math.unit(100, "miles"),
  31589. allForms: true
  31590. },
  31591. ],
  31592. {
  31593. "cat": {
  31594. name: "Cat",
  31595. default: true
  31596. },
  31597. "taur": {
  31598. name: "Taur",
  31599. },
  31600. "lucario": {
  31601. name: "Lucario",
  31602. },
  31603. "nickit": {
  31604. name: "Nickit",
  31605. },
  31606. "lopunny": {
  31607. name: "Lopunny",
  31608. }
  31609. }
  31610. ))
  31611. characterMakers.push(() => makeCharacter(
  31612. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31613. {
  31614. front: {
  31615. height: math.unit(63.4, "meters"),
  31616. weight: math.unit(3.28349e+6, "kilograms"),
  31617. name: "Front",
  31618. image: {
  31619. source: "./media/characters/kirina-violet/front.svg",
  31620. extra: 2812 / 2725,
  31621. bottom: 0 / 2812
  31622. }
  31623. },
  31624. back: {
  31625. height: math.unit(63.4, "meters"),
  31626. weight: math.unit(3.28349e+6, "kilograms"),
  31627. name: "Back",
  31628. image: {
  31629. source: "./media/characters/kirina-violet/back.svg",
  31630. extra: 2812 / 2725,
  31631. bottom: 0 / 2812
  31632. }
  31633. },
  31634. mouth: {
  31635. height: math.unit(4.35, "meters"),
  31636. name: "Mouth",
  31637. image: {
  31638. source: "./media/characters/kirina-violet/mouth.svg"
  31639. }
  31640. },
  31641. paw: {
  31642. height: math.unit(5.6, "meters"),
  31643. name: "Paw",
  31644. image: {
  31645. source: "./media/characters/kirina-violet/paw.svg"
  31646. }
  31647. },
  31648. tail: {
  31649. height: math.unit(18, "meters"),
  31650. name: "Tail",
  31651. image: {
  31652. source: "./media/characters/kirina-violet/tail.svg"
  31653. }
  31654. },
  31655. },
  31656. [
  31657. {
  31658. name: "Macro",
  31659. height: math.unit(63.4, "meters"),
  31660. default: true
  31661. },
  31662. ]
  31663. ))
  31664. characterMakers.push(() => makeCharacter(
  31665. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31666. {
  31667. front: {
  31668. height: math.unit(75, "feet"),
  31669. name: "Front",
  31670. image: {
  31671. source: "./media/characters/cat-gigachu/front.svg",
  31672. extra: 1239/1027,
  31673. bottom: 32/1271
  31674. }
  31675. },
  31676. back: {
  31677. height: math.unit(75, "feet"),
  31678. name: "Back",
  31679. image: {
  31680. source: "./media/characters/cat-gigachu/back.svg",
  31681. extra: 1229/1030,
  31682. bottom: 9/1238
  31683. }
  31684. },
  31685. },
  31686. [
  31687. {
  31688. name: "Dynamax",
  31689. height: math.unit(75, "feet"),
  31690. default: true
  31691. },
  31692. ]
  31693. ))
  31694. characterMakers.push(() => makeCharacter(
  31695. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31696. {
  31697. front: {
  31698. height: math.unit(6, "feet"),
  31699. weight: math.unit(150, "lb"),
  31700. name: "Front",
  31701. image: {
  31702. source: "./media/characters/sfaiyan/front.svg",
  31703. extra: 999 / 978,
  31704. bottom: 5 / 1004
  31705. }
  31706. },
  31707. },
  31708. [
  31709. {
  31710. name: "Normal",
  31711. height: math.unit(1.82, "meters")
  31712. },
  31713. {
  31714. name: "Giant",
  31715. height: math.unit(2.27, "km"),
  31716. default: true
  31717. },
  31718. ]
  31719. ))
  31720. characterMakers.push(() => makeCharacter(
  31721. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31722. {
  31723. front: {
  31724. height: math.unit(179, "cm"),
  31725. weight: math.unit(100, "kg"),
  31726. name: "Front",
  31727. image: {
  31728. source: "./media/characters/raunehkeli/front.svg",
  31729. extra: 1934 / 1926,
  31730. bottom: 0 / 1934
  31731. }
  31732. },
  31733. },
  31734. [
  31735. {
  31736. name: "Normal",
  31737. height: math.unit(179, "cm")
  31738. },
  31739. {
  31740. name: "Maximum",
  31741. height: math.unit(575, "meters"),
  31742. default: true
  31743. },
  31744. ]
  31745. ))
  31746. characterMakers.push(() => makeCharacter(
  31747. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31748. {
  31749. front: {
  31750. height: math.unit(6, "feet"),
  31751. weight: math.unit(150, "lb"),
  31752. name: "Front",
  31753. image: {
  31754. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31755. extra: 2625 / 2518,
  31756. bottom: 60 / 2685
  31757. }
  31758. },
  31759. },
  31760. [
  31761. {
  31762. name: "Normal",
  31763. height: math.unit(6 + 2 / 12, "feet")
  31764. },
  31765. {
  31766. name: "Macro",
  31767. height: math.unit(1180, "feet"),
  31768. default: true
  31769. },
  31770. ]
  31771. ))
  31772. characterMakers.push(() => makeCharacter(
  31773. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31774. {
  31775. front: {
  31776. height: math.unit(5 + 6 / 12, "feet"),
  31777. weight: math.unit(108, "lb"),
  31778. name: "Front",
  31779. image: {
  31780. source: "./media/characters/lilith-zott/front.svg",
  31781. extra: 2510 / 2238,
  31782. bottom: 100 / 2610
  31783. }
  31784. },
  31785. frontDressed: {
  31786. height: math.unit(5 + 6 / 12, "feet"),
  31787. weight: math.unit(108, "lb"),
  31788. name: "Front (Dressed)",
  31789. image: {
  31790. source: "./media/characters/lilith-zott/front-dressed.svg",
  31791. extra: 2510 / 2238,
  31792. bottom: 100 / 2610
  31793. }
  31794. },
  31795. },
  31796. [
  31797. {
  31798. name: "Normal",
  31799. height: math.unit(5 + 6 / 12, "feet")
  31800. },
  31801. {
  31802. name: "Macro",
  31803. height: math.unit(1030, "feet"),
  31804. default: true
  31805. },
  31806. ]
  31807. ))
  31808. characterMakers.push(() => makeCharacter(
  31809. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31810. {
  31811. front: {
  31812. height: math.unit(6, "feet"),
  31813. weight: math.unit(150, "lb"),
  31814. name: "Front",
  31815. image: {
  31816. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31817. extra: 2567 / 2435,
  31818. bottom: 39 / 2606
  31819. }
  31820. },
  31821. frontSuper: {
  31822. height: math.unit(6, "feet"),
  31823. name: "Front (Super)",
  31824. image: {
  31825. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31826. extra: 2567 / 2435,
  31827. bottom: 39 / 2606
  31828. }
  31829. },
  31830. },
  31831. [
  31832. {
  31833. name: "Normal",
  31834. height: math.unit(5 + 10 / 12, "feet")
  31835. },
  31836. {
  31837. name: "Macro",
  31838. height: math.unit(1100, "feet"),
  31839. default: true
  31840. },
  31841. ]
  31842. ))
  31843. characterMakers.push(() => makeCharacter(
  31844. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31845. {
  31846. front: {
  31847. height: math.unit(100, "miles"),
  31848. name: "Front",
  31849. image: {
  31850. source: "./media/characters/sona/front.svg",
  31851. extra: 2433 / 2201,
  31852. bottom: 53 / 2486
  31853. }
  31854. },
  31855. foot: {
  31856. height: math.unit(16.1, "miles"),
  31857. name: "Foot",
  31858. image: {
  31859. source: "./media/characters/sona/foot.svg"
  31860. }
  31861. },
  31862. },
  31863. [
  31864. {
  31865. name: "Macro",
  31866. height: math.unit(100, "miles"),
  31867. default: true
  31868. },
  31869. ]
  31870. ))
  31871. characterMakers.push(() => makeCharacter(
  31872. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31873. {
  31874. front: {
  31875. height: math.unit(6, "feet"),
  31876. weight: math.unit(150, "lb"),
  31877. name: "Front",
  31878. image: {
  31879. source: "./media/characters/bailey/front.svg",
  31880. extra: 1778 / 1724,
  31881. bottom: 30 / 1808
  31882. }
  31883. },
  31884. },
  31885. [
  31886. {
  31887. name: "Micro",
  31888. height: math.unit(4, "inches")
  31889. },
  31890. {
  31891. name: "Normal",
  31892. height: math.unit(5 + 5 / 12, "feet"),
  31893. default: true
  31894. },
  31895. {
  31896. name: "Macro",
  31897. height: math.unit(250, "feet")
  31898. },
  31899. {
  31900. name: "Megamacro",
  31901. height: math.unit(100, "miles")
  31902. },
  31903. ]
  31904. ))
  31905. characterMakers.push(() => makeCharacter(
  31906. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31907. {
  31908. front: {
  31909. height: math.unit(5 + 2 / 12, "feet"),
  31910. weight: math.unit(120, "lb"),
  31911. name: "Front",
  31912. image: {
  31913. source: "./media/characters/snaps/front.svg",
  31914. extra: 2370 / 2177,
  31915. bottom: 48 / 2418
  31916. }
  31917. },
  31918. back: {
  31919. height: math.unit(5 + 2 / 12, "feet"),
  31920. weight: math.unit(120, "lb"),
  31921. name: "Back",
  31922. image: {
  31923. source: "./media/characters/snaps/back.svg",
  31924. extra: 2408 / 2258,
  31925. bottom: 15 / 2423
  31926. }
  31927. },
  31928. },
  31929. [
  31930. {
  31931. name: "Micro",
  31932. height: math.unit(9, "inches")
  31933. },
  31934. {
  31935. name: "Normal",
  31936. height: math.unit(5 + 2 / 12, "feet"),
  31937. default: true
  31938. },
  31939. {
  31940. name: "Mini Macro",
  31941. height: math.unit(10, "feet")
  31942. },
  31943. ]
  31944. ))
  31945. characterMakers.push(() => makeCharacter(
  31946. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31947. {
  31948. front: {
  31949. height: math.unit(1.8, "meters"),
  31950. weight: math.unit(85, "kg"),
  31951. name: "Front",
  31952. image: {
  31953. source: "./media/characters/azteck/front.svg",
  31954. extra: 2815 / 2625,
  31955. bottom: 89 / 2904
  31956. }
  31957. },
  31958. back: {
  31959. height: math.unit(1.8, "meters"),
  31960. weight: math.unit(85, "kg"),
  31961. name: "Back",
  31962. image: {
  31963. source: "./media/characters/azteck/back.svg",
  31964. extra: 2856 / 2648,
  31965. bottom: 85 / 2941
  31966. }
  31967. },
  31968. frontDressed: {
  31969. height: math.unit(1.8, "meters"),
  31970. weight: math.unit(85, "kg"),
  31971. name: "Front (Dressed)",
  31972. image: {
  31973. source: "./media/characters/azteck/front-dressed.svg",
  31974. extra: 2147 / 2003,
  31975. bottom: 68 / 2215
  31976. }
  31977. },
  31978. head: {
  31979. height: math.unit(0.47, "meters"),
  31980. weight: math.unit(85, "kg"),
  31981. name: "Head",
  31982. image: {
  31983. source: "./media/characters/azteck/head.svg"
  31984. }
  31985. },
  31986. },
  31987. [
  31988. {
  31989. name: "Bite sized",
  31990. height: math.unit(16, "cm")
  31991. },
  31992. {
  31993. name: "Normal",
  31994. height: math.unit(1.8, "meters"),
  31995. default: true
  31996. },
  31997. ]
  31998. ))
  31999. characterMakers.push(() => makeCharacter(
  32000. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32001. {
  32002. front: {
  32003. height: math.unit(6, "feet"),
  32004. weight: math.unit(150, "lb"),
  32005. name: "Front",
  32006. image: {
  32007. source: "./media/characters/pidge/front.svg",
  32008. extra: 1936/1820,
  32009. bottom: 0/1936
  32010. }
  32011. },
  32012. back: {
  32013. height: math.unit(6, "feet"),
  32014. weight: math.unit(150, "lb"),
  32015. name: "Back",
  32016. image: {
  32017. source: "./media/characters/pidge/back.svg",
  32018. extra: 1938/1843,
  32019. bottom: 0/1938
  32020. }
  32021. },
  32022. casual: {
  32023. height: math.unit(6, "feet"),
  32024. weight: math.unit(150, "lb"),
  32025. name: "Casual",
  32026. image: {
  32027. source: "./media/characters/pidge/casual.svg",
  32028. extra: 1936/1820,
  32029. bottom: 0/1936
  32030. }
  32031. },
  32032. tech: {
  32033. height: math.unit(6, "feet"),
  32034. weight: math.unit(150, "lb"),
  32035. name: "Tech",
  32036. image: {
  32037. source: "./media/characters/pidge/tech.svg",
  32038. extra: 1802/1682,
  32039. bottom: 0/1802
  32040. }
  32041. },
  32042. head: {
  32043. height: math.unit(1.61, "feet"),
  32044. name: "Head",
  32045. image: {
  32046. source: "./media/characters/pidge/head.svg"
  32047. }
  32048. },
  32049. collar: {
  32050. height: math.unit(0.82, "feet"),
  32051. name: "Collar",
  32052. image: {
  32053. source: "./media/characters/pidge/collar.svg"
  32054. }
  32055. },
  32056. },
  32057. [
  32058. {
  32059. name: "Macro",
  32060. height: math.unit(2, "mile"),
  32061. default: true
  32062. },
  32063. {
  32064. name: "PUPPY",
  32065. height: math.unit(20, "miles")
  32066. },
  32067. ]
  32068. ))
  32069. characterMakers.push(() => makeCharacter(
  32070. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32071. {
  32072. front: {
  32073. height: math.unit(6, "feet"),
  32074. weight: math.unit(150, "lb"),
  32075. name: "Front",
  32076. image: {
  32077. source: "./media/characters/en/front.svg",
  32078. extra: 1697 / 1563,
  32079. bottom: 103 / 1800
  32080. }
  32081. },
  32082. back: {
  32083. height: math.unit(6, "feet"),
  32084. weight: math.unit(150, "lb"),
  32085. name: "Back",
  32086. image: {
  32087. source: "./media/characters/en/back.svg",
  32088. extra: 1700 / 1570,
  32089. bottom: 51 / 1751
  32090. }
  32091. },
  32092. frontDressed: {
  32093. height: math.unit(6, "feet"),
  32094. weight: math.unit(150, "lb"),
  32095. name: "Front (Dressed)",
  32096. image: {
  32097. source: "./media/characters/en/front-dressed.svg",
  32098. extra: 1697 / 1563,
  32099. bottom: 103 / 1800
  32100. }
  32101. },
  32102. backDressed: {
  32103. height: math.unit(6, "feet"),
  32104. weight: math.unit(150, "lb"),
  32105. name: "Back (Dressed)",
  32106. image: {
  32107. source: "./media/characters/en/back-dressed.svg",
  32108. extra: 1700 / 1570,
  32109. bottom: 51 / 1751
  32110. }
  32111. },
  32112. },
  32113. [
  32114. {
  32115. name: "Macro",
  32116. height: math.unit(210, "feet"),
  32117. default: true
  32118. },
  32119. ]
  32120. ))
  32121. characterMakers.push(() => makeCharacter(
  32122. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32123. {
  32124. front: {
  32125. height: math.unit(6, "feet"),
  32126. weight: math.unit(150, "lb"),
  32127. name: "Front",
  32128. image: {
  32129. source: "./media/characters/haze-orris/front.svg",
  32130. extra: 3975 / 3525,
  32131. bottom: 137 / 4112
  32132. }
  32133. },
  32134. },
  32135. [
  32136. {
  32137. name: "Micro",
  32138. height: math.unit(150, "mm"),
  32139. default: true
  32140. },
  32141. ]
  32142. ))
  32143. characterMakers.push(() => makeCharacter(
  32144. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32145. {
  32146. front: {
  32147. height: math.unit(6, "feet"),
  32148. weight: math.unit(150, "lb"),
  32149. name: "Front",
  32150. image: {
  32151. source: "./media/characters/casselene-yaro/front.svg",
  32152. extra: 4721 / 4541,
  32153. bottom: 82 / 4803
  32154. }
  32155. },
  32156. back: {
  32157. height: math.unit(6, "feet"),
  32158. weight: math.unit(150, "lb"),
  32159. name: "Back",
  32160. image: {
  32161. source: "./media/characters/casselene-yaro/back.svg",
  32162. extra: 4569 / 4377,
  32163. bottom: 69 / 4638
  32164. }
  32165. },
  32166. dressed: {
  32167. height: math.unit(6, "feet"),
  32168. weight: math.unit(150, "lb"),
  32169. name: "Dressed",
  32170. image: {
  32171. source: "./media/characters/casselene-yaro/dressed.svg",
  32172. extra: 4721 / 4541,
  32173. bottom: 82 / 4803
  32174. }
  32175. },
  32176. maw: {
  32177. height: math.unit(1, "feet"),
  32178. name: "Maw",
  32179. image: {
  32180. source: "./media/characters/casselene-yaro/maw.svg"
  32181. }
  32182. },
  32183. },
  32184. [
  32185. {
  32186. name: "Macro",
  32187. height: math.unit(190, "feet"),
  32188. default: true
  32189. },
  32190. ]
  32191. ))
  32192. characterMakers.push(() => makeCharacter(
  32193. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32194. {
  32195. front: {
  32196. height: math.unit(10, "feet"),
  32197. weight: math.unit(15015, "lb"),
  32198. name: "Front",
  32199. image: {
  32200. source: "./media/characters/platine/front.svg",
  32201. extra: 1741/1650,
  32202. bottom: 84/1825
  32203. }
  32204. },
  32205. side: {
  32206. height: math.unit(10, "feet"),
  32207. weight: math.unit(15015, "lb"),
  32208. name: "Side",
  32209. image: {
  32210. source: "./media/characters/platine/side.svg",
  32211. extra: 1790/1705,
  32212. bottom: 29/1819
  32213. }
  32214. },
  32215. },
  32216. [
  32217. {
  32218. name: "Normal",
  32219. height: math.unit(10, "feet"),
  32220. default: true
  32221. },
  32222. {
  32223. name: "Macro",
  32224. height: math.unit(100, "feet")
  32225. },
  32226. {
  32227. name: "Megamacro",
  32228. height: math.unit(1000, "feet")
  32229. },
  32230. ]
  32231. ))
  32232. characterMakers.push(() => makeCharacter(
  32233. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32234. {
  32235. front: {
  32236. height: math.unit(15 + 5 / 12, "feet"),
  32237. weight: math.unit(4600, "lb"),
  32238. name: "Front",
  32239. image: {
  32240. source: "./media/characters/neapolitan-ananassa/front.svg",
  32241. extra: 2903 / 2736,
  32242. bottom: 0 / 2903
  32243. }
  32244. },
  32245. side: {
  32246. height: math.unit(15 + 5 / 12, "feet"),
  32247. weight: math.unit(4600, "lb"),
  32248. name: "Side",
  32249. image: {
  32250. source: "./media/characters/neapolitan-ananassa/side.svg",
  32251. extra: 2925 / 2719,
  32252. bottom: 0 / 2925
  32253. }
  32254. },
  32255. back: {
  32256. height: math.unit(15 + 5 / 12, "feet"),
  32257. weight: math.unit(4600, "lb"),
  32258. name: "Back",
  32259. image: {
  32260. source: "./media/characters/neapolitan-ananassa/back.svg",
  32261. extra: 2903 / 2736,
  32262. bottom: 0 / 2903
  32263. }
  32264. },
  32265. },
  32266. [
  32267. {
  32268. name: "Normal",
  32269. height: math.unit(15 + 5 / 12, "feet"),
  32270. default: true
  32271. },
  32272. {
  32273. name: "Post-Millenium",
  32274. height: math.unit(35 + 5 / 12, "feet")
  32275. },
  32276. {
  32277. name: "Post-Era",
  32278. height: math.unit(450 + 5 / 12, "feet")
  32279. },
  32280. ]
  32281. ))
  32282. characterMakers.push(() => makeCharacter(
  32283. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32284. {
  32285. front: {
  32286. height: math.unit(300, "meters"),
  32287. weight: math.unit(125000, "tonnes"),
  32288. name: "Front",
  32289. image: {
  32290. source: "./media/characters/pazuzu/front.svg",
  32291. extra: 877 / 794,
  32292. bottom: 47 / 924
  32293. }
  32294. },
  32295. },
  32296. [
  32297. {
  32298. name: "Macro",
  32299. height: math.unit(300, "meters"),
  32300. default: true
  32301. },
  32302. ]
  32303. ))
  32304. characterMakers.push(() => makeCharacter(
  32305. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32306. {
  32307. side: {
  32308. height: math.unit(10 + 7 / 12, "feet"),
  32309. weight: math.unit(2.5, "tons"),
  32310. name: "Side",
  32311. image: {
  32312. source: "./media/characters/aasha/side.svg",
  32313. extra: 1345 / 1245,
  32314. bottom: 111 / 1456
  32315. }
  32316. },
  32317. back: {
  32318. height: math.unit(10 + 7 / 12, "feet"),
  32319. weight: math.unit(2.5, "tons"),
  32320. name: "Back",
  32321. image: {
  32322. source: "./media/characters/aasha/back.svg",
  32323. extra: 1133 / 1057,
  32324. bottom: 257 / 1390
  32325. }
  32326. },
  32327. },
  32328. [
  32329. {
  32330. name: "Normal",
  32331. height: math.unit(10 + 7 / 12, "feet"),
  32332. default: true
  32333. },
  32334. ]
  32335. ))
  32336. characterMakers.push(() => makeCharacter(
  32337. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32338. {
  32339. front: {
  32340. height: math.unit(6 + 3 / 12, "feet"),
  32341. name: "Front",
  32342. image: {
  32343. source: "./media/characters/nevan/front.svg",
  32344. extra: 704 / 704,
  32345. bottom: 28 / 732
  32346. }
  32347. },
  32348. back: {
  32349. height: math.unit(6 + 3 / 12, "feet"),
  32350. name: "Back",
  32351. image: {
  32352. source: "./media/characters/nevan/back.svg",
  32353. extra: 714 / 714,
  32354. bottom: 21 / 735
  32355. }
  32356. },
  32357. frontFlaccid: {
  32358. height: math.unit(6 + 3 / 12, "feet"),
  32359. name: "Front (Flaccid)",
  32360. image: {
  32361. source: "./media/characters/nevan/front-flaccid.svg",
  32362. extra: 704 / 704,
  32363. bottom: 28 / 732
  32364. }
  32365. },
  32366. frontErect: {
  32367. height: math.unit(6 + 3 / 12, "feet"),
  32368. name: "Front (Erect)",
  32369. image: {
  32370. source: "./media/characters/nevan/front-erect.svg",
  32371. extra: 704 / 704,
  32372. bottom: 28 / 732
  32373. }
  32374. },
  32375. backFlaccid: {
  32376. height: math.unit(6 + 3 / 12, "feet"),
  32377. name: "Back (Flaccid)",
  32378. image: {
  32379. source: "./media/characters/nevan/back-flaccid.svg",
  32380. extra: 714 / 714,
  32381. bottom: 21 / 735
  32382. }
  32383. },
  32384. },
  32385. [
  32386. {
  32387. name: "Normal",
  32388. height: math.unit(6 + 3 / 12, "feet"),
  32389. default: true
  32390. },
  32391. ]
  32392. ))
  32393. characterMakers.push(() => makeCharacter(
  32394. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32395. {
  32396. front: {
  32397. height: math.unit(4, "feet"),
  32398. name: "Front",
  32399. image: {
  32400. source: "./media/characters/arhan/front.svg",
  32401. extra: 3368 / 3133,
  32402. bottom: 0 / 3368
  32403. }
  32404. },
  32405. side: {
  32406. height: math.unit(4, "feet"),
  32407. name: "Side",
  32408. image: {
  32409. source: "./media/characters/arhan/side.svg",
  32410. extra: 3347 / 3105,
  32411. bottom: 0 / 3347
  32412. }
  32413. },
  32414. tongue: {
  32415. height: math.unit(1.42, "feet"),
  32416. name: "Tongue",
  32417. image: {
  32418. source: "./media/characters/arhan/tongue.svg"
  32419. }
  32420. },
  32421. head: {
  32422. height: math.unit(0.85, "feet"),
  32423. name: "Head",
  32424. image: {
  32425. source: "./media/characters/arhan/head.svg"
  32426. }
  32427. },
  32428. },
  32429. [
  32430. {
  32431. name: "Normal",
  32432. height: math.unit(4, "feet"),
  32433. default: true
  32434. },
  32435. ]
  32436. ))
  32437. characterMakers.push(() => makeCharacter(
  32438. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32439. {
  32440. front: {
  32441. height: math.unit(5 + 7.5 / 12, "feet"),
  32442. weight: math.unit(120, "lb"),
  32443. name: "Front",
  32444. image: {
  32445. source: "./media/characters/digi-duncan/front.svg",
  32446. extra: 330 / 326,
  32447. bottom: 16 / 346
  32448. }
  32449. },
  32450. side: {
  32451. height: math.unit(5 + 7.5 / 12, "feet"),
  32452. weight: math.unit(120, "lb"),
  32453. name: "Side",
  32454. image: {
  32455. source: "./media/characters/digi-duncan/side.svg",
  32456. extra: 341 / 337,
  32457. bottom: 1 / 342
  32458. }
  32459. },
  32460. back: {
  32461. height: math.unit(5 + 7.5 / 12, "feet"),
  32462. weight: math.unit(120, "lb"),
  32463. name: "Back",
  32464. image: {
  32465. source: "./media/characters/digi-duncan/back.svg",
  32466. extra: 330 / 326,
  32467. bottom: 12 / 342
  32468. }
  32469. },
  32470. },
  32471. [
  32472. {
  32473. name: "Speck",
  32474. height: math.unit(0.25, "mm")
  32475. },
  32476. {
  32477. name: "Micro",
  32478. height: math.unit(5, "mm")
  32479. },
  32480. {
  32481. name: "Tiny",
  32482. height: math.unit(0.5, "inches"),
  32483. default: true
  32484. },
  32485. {
  32486. name: "Human",
  32487. height: math.unit(5 + 7.5 / 12, "feet")
  32488. },
  32489. {
  32490. name: "Minigiant",
  32491. height: math.unit(8 + 5.25, "feet")
  32492. },
  32493. {
  32494. name: "Giant",
  32495. height: math.unit(2000, "feet")
  32496. },
  32497. {
  32498. name: "Mega",
  32499. height: math.unit(371.1, "miles")
  32500. },
  32501. ]
  32502. ))
  32503. characterMakers.push(() => makeCharacter(
  32504. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32505. {
  32506. front: {
  32507. height: math.unit(2, "meters"),
  32508. weight: math.unit(350, "kg"),
  32509. name: "Front",
  32510. image: {
  32511. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32512. extra: 898 / 838,
  32513. bottom: 9 / 907
  32514. }
  32515. },
  32516. },
  32517. [
  32518. {
  32519. name: "Micro",
  32520. height: math.unit(8, "meters")
  32521. },
  32522. {
  32523. name: "Normal",
  32524. height: math.unit(50, "meters"),
  32525. default: true
  32526. },
  32527. {
  32528. name: "Macro",
  32529. height: math.unit(500, "meters")
  32530. },
  32531. ]
  32532. ))
  32533. characterMakers.push(() => makeCharacter(
  32534. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32535. {
  32536. front: {
  32537. height: math.unit(6 + 6 / 12, "feet"),
  32538. name: "Front",
  32539. image: {
  32540. source: "./media/characters/khardesh/front.svg",
  32541. extra: 1788/1596,
  32542. bottom: 66/1854
  32543. }
  32544. },
  32545. back: {
  32546. height: math.unit(6 + 6 / 12, "feet"),
  32547. name: "Back",
  32548. image: {
  32549. source: "./media/characters/khardesh/back.svg",
  32550. extra: 1781/1584,
  32551. bottom: 68/1849
  32552. }
  32553. },
  32554. },
  32555. [
  32556. {
  32557. name: "Normal",
  32558. height: math.unit(6 + 6 / 12, "feet"),
  32559. default: true
  32560. },
  32561. {
  32562. name: "Normal+",
  32563. height: math.unit(4, "meters")
  32564. },
  32565. {
  32566. name: "Macro",
  32567. height: math.unit(50, "meters")
  32568. },
  32569. {
  32570. name: "Macro+",
  32571. height: math.unit(100, "meters")
  32572. },
  32573. {
  32574. name: "Megamacro",
  32575. height: math.unit(20, "km")
  32576. },
  32577. ]
  32578. ))
  32579. characterMakers.push(() => makeCharacter(
  32580. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32581. {
  32582. front: {
  32583. height: math.unit(6, "feet"),
  32584. weight: math.unit(150, "lb"),
  32585. name: "Front",
  32586. image: {
  32587. source: "./media/characters/kosho/front.svg",
  32588. extra: 1847 / 1847,
  32589. bottom: 86 / 1933
  32590. }
  32591. },
  32592. },
  32593. [
  32594. {
  32595. name: "Second-stage micro",
  32596. height: math.unit(0.5, "inches")
  32597. },
  32598. {
  32599. name: "First-stage micro",
  32600. height: math.unit(6, "inches")
  32601. },
  32602. {
  32603. name: "Normal",
  32604. height: math.unit(6, "feet"),
  32605. default: true
  32606. },
  32607. {
  32608. name: "First-stage macro",
  32609. height: math.unit(72, "feet")
  32610. },
  32611. {
  32612. name: "Second-stage macro",
  32613. height: math.unit(864, "feet")
  32614. },
  32615. ]
  32616. ))
  32617. characterMakers.push(() => makeCharacter(
  32618. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32619. {
  32620. normal: {
  32621. height: math.unit(4 + 6 / 12, "feet"),
  32622. name: "Normal",
  32623. image: {
  32624. source: "./media/characters/hydra/normal.svg",
  32625. extra: 2833 / 2634,
  32626. bottom: 68 / 2901
  32627. }
  32628. },
  32629. smol: {
  32630. height: math.unit(0.705, "inches"),
  32631. name: "Smol",
  32632. image: {
  32633. source: "./media/characters/hydra/smol.svg",
  32634. extra: 2715 / 2540,
  32635. bottom: 0 / 2715
  32636. }
  32637. },
  32638. },
  32639. [
  32640. {
  32641. name: "Normal",
  32642. height: math.unit(4 + 6 / 12, "feet"),
  32643. default: true
  32644. }
  32645. ]
  32646. ))
  32647. characterMakers.push(() => makeCharacter(
  32648. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32649. {
  32650. front: {
  32651. height: math.unit(0.6, "cm"),
  32652. name: "Front",
  32653. image: {
  32654. source: "./media/characters/daz/front.svg",
  32655. extra: 1682 / 1164,
  32656. bottom: 42 / 1724
  32657. }
  32658. },
  32659. },
  32660. [
  32661. {
  32662. name: "Normal",
  32663. height: math.unit(0.6, "cm"),
  32664. default: true
  32665. },
  32666. ]
  32667. ))
  32668. characterMakers.push(() => makeCharacter(
  32669. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32670. {
  32671. front: {
  32672. height: math.unit(6, "feet"),
  32673. weight: math.unit(235, "lb"),
  32674. name: "Front",
  32675. image: {
  32676. source: "./media/characters/theo-pangolin/front.svg",
  32677. extra: 1996 / 1969,
  32678. bottom: 115 / 2111
  32679. }
  32680. },
  32681. back: {
  32682. height: math.unit(6, "feet"),
  32683. weight: math.unit(235, "lb"),
  32684. name: "Back",
  32685. image: {
  32686. source: "./media/characters/theo-pangolin/back.svg",
  32687. extra: 1979 / 1979,
  32688. bottom: 40 / 2019
  32689. }
  32690. },
  32691. feral: {
  32692. height: math.unit(2, "feet"),
  32693. weight: math.unit(30, "lb"),
  32694. name: "Feral",
  32695. image: {
  32696. source: "./media/characters/theo-pangolin/feral.svg",
  32697. extra: 803 / 791,
  32698. bottom: 181 / 984
  32699. }
  32700. },
  32701. footFive: {
  32702. height: math.unit(1.43, "feet"),
  32703. name: "Foot (Five Toes)",
  32704. image: {
  32705. source: "./media/characters/theo-pangolin/foot-five.svg"
  32706. }
  32707. },
  32708. footFour: {
  32709. height: math.unit(1.43, "feet"),
  32710. name: "Foot (Four Toes)",
  32711. image: {
  32712. source: "./media/characters/theo-pangolin/foot-four.svg"
  32713. }
  32714. },
  32715. handFour: {
  32716. height: math.unit(0.81, "feet"),
  32717. name: "Hand (Four Fingers)",
  32718. image: {
  32719. source: "./media/characters/theo-pangolin/hand-four.svg"
  32720. }
  32721. },
  32722. handThree: {
  32723. height: math.unit(0.81, "feet"),
  32724. name: "Hand (Three Fingers)",
  32725. image: {
  32726. source: "./media/characters/theo-pangolin/hand-three.svg"
  32727. }
  32728. },
  32729. headFront: {
  32730. height: math.unit(1.37, "feet"),
  32731. name: "Head (Front)",
  32732. image: {
  32733. source: "./media/characters/theo-pangolin/head-front.svg"
  32734. }
  32735. },
  32736. headSide: {
  32737. height: math.unit(1.43, "feet"),
  32738. name: "Head (Side)",
  32739. image: {
  32740. source: "./media/characters/theo-pangolin/head-side.svg"
  32741. }
  32742. },
  32743. tongue: {
  32744. height: math.unit(2.29, "feet"),
  32745. name: "Tongue",
  32746. image: {
  32747. source: "./media/characters/theo-pangolin/tongue.svg"
  32748. }
  32749. },
  32750. },
  32751. [
  32752. {
  32753. name: "Normal",
  32754. height: math.unit(6, "feet")
  32755. },
  32756. {
  32757. name: "Macro",
  32758. height: math.unit(400, "feet"),
  32759. default: true
  32760. },
  32761. ]
  32762. ))
  32763. characterMakers.push(() => makeCharacter(
  32764. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32765. {
  32766. front: {
  32767. height: math.unit(6, "inches"),
  32768. weight: math.unit(0.036, "kg"),
  32769. name: "Front",
  32770. image: {
  32771. source: "./media/characters/renée/front.svg",
  32772. extra: 900 / 886,
  32773. bottom: 8 / 908
  32774. }
  32775. },
  32776. },
  32777. [
  32778. {
  32779. name: "Nano",
  32780. height: math.unit(1, "nm")
  32781. },
  32782. {
  32783. name: "Micro",
  32784. height: math.unit(1, "mm")
  32785. },
  32786. {
  32787. name: "Normal",
  32788. height: math.unit(6, "inches")
  32789. },
  32790. {
  32791. name: "Macro",
  32792. height: math.unit(2000, "feet"),
  32793. default: true
  32794. },
  32795. {
  32796. name: "Megamacro",
  32797. height: math.unit(2, "km")
  32798. },
  32799. {
  32800. name: "Gigamacro",
  32801. height: math.unit(2000, "km")
  32802. },
  32803. {
  32804. name: "Teramacro",
  32805. height: math.unit(250000, "km")
  32806. },
  32807. ]
  32808. ))
  32809. characterMakers.push(() => makeCharacter(
  32810. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32811. {
  32812. front: {
  32813. height: math.unit(4, "meters"),
  32814. weight: math.unit(150, "kg"),
  32815. name: "Front",
  32816. image: {
  32817. source: "./media/characters/caledvwlch/front.svg",
  32818. extra: 1757/1537,
  32819. bottom: 31/1788
  32820. }
  32821. },
  32822. side: {
  32823. height: math.unit(4, "meters"),
  32824. weight: math.unit(150, "kg"),
  32825. name: "Side",
  32826. image: {
  32827. source: "./media/characters/caledvwlch/side.svg",
  32828. extra: 1605 / 1536,
  32829. bottom: 31 / 1636
  32830. }
  32831. },
  32832. back: {
  32833. height: math.unit(4, "meters"),
  32834. weight: math.unit(150, "kg"),
  32835. name: "Back",
  32836. image: {
  32837. source: "./media/characters/caledvwlch/back.svg",
  32838. extra: 1635 / 1565,
  32839. bottom: 27 / 1662
  32840. }
  32841. },
  32842. },
  32843. [
  32844. {
  32845. name: "\"Incognito\"",
  32846. height: math.unit(4, "meters")
  32847. },
  32848. {
  32849. name: "Small rampage",
  32850. height: math.unit(600, "meters")
  32851. },
  32852. {
  32853. name: "Mega",
  32854. height: math.unit(30, "km")
  32855. },
  32856. {
  32857. name: "Home-size",
  32858. height: math.unit(50, "km"),
  32859. default: true
  32860. },
  32861. {
  32862. name: "Giga",
  32863. height: math.unit(300, "km")
  32864. },
  32865. {
  32866. name: "Lounging",
  32867. height: math.unit(11000, "km")
  32868. },
  32869. {
  32870. name: "Planet snacking",
  32871. height: math.unit(2000000, "km")
  32872. },
  32873. ]
  32874. ))
  32875. characterMakers.push(() => makeCharacter(
  32876. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32877. {
  32878. front: {
  32879. height: math.unit(6, "feet"),
  32880. weight: math.unit(215, "lb"),
  32881. name: "Front",
  32882. image: {
  32883. source: "./media/characters/sapphire-svell/front.svg",
  32884. extra: 495 / 455,
  32885. bottom: 20 / 515
  32886. }
  32887. },
  32888. back: {
  32889. height: math.unit(6, "feet"),
  32890. weight: math.unit(216, "lb"),
  32891. name: "Back",
  32892. image: {
  32893. source: "./media/characters/sapphire-svell/back.svg",
  32894. extra: 497 / 477,
  32895. bottom: 7 / 504
  32896. }
  32897. },
  32898. maw: {
  32899. height: math.unit(1.57, "feet"),
  32900. name: "Maw",
  32901. image: {
  32902. source: "./media/characters/sapphire-svell/maw.svg"
  32903. }
  32904. },
  32905. foot: {
  32906. height: math.unit(1.07, "feet"),
  32907. name: "Foot",
  32908. image: {
  32909. source: "./media/characters/sapphire-svell/foot.svg"
  32910. }
  32911. },
  32912. toering: {
  32913. height: math.unit(1.7, "inch"),
  32914. name: "Toering",
  32915. image: {
  32916. source: "./media/characters/sapphire-svell/toering.svg"
  32917. }
  32918. },
  32919. },
  32920. [
  32921. {
  32922. name: "Normal",
  32923. height: math.unit(300, "feet"),
  32924. default: true
  32925. },
  32926. {
  32927. name: "Augmented",
  32928. height: math.unit(1250, "feet")
  32929. },
  32930. {
  32931. name: "Unleashed",
  32932. height: math.unit(3000, "feet")
  32933. },
  32934. ]
  32935. ))
  32936. characterMakers.push(() => makeCharacter(
  32937. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32938. {
  32939. side: {
  32940. height: math.unit(2 + 3 / 12, "feet"),
  32941. weight: math.unit(110, "lb"),
  32942. name: "Side",
  32943. image: {
  32944. source: "./media/characters/glitch-flux/side.svg",
  32945. extra: 997 / 805,
  32946. bottom: 20 / 1017
  32947. }
  32948. },
  32949. },
  32950. [
  32951. {
  32952. name: "Normal",
  32953. height: math.unit(2 + 3 / 12, "feet"),
  32954. default: true
  32955. },
  32956. ]
  32957. ))
  32958. characterMakers.push(() => makeCharacter(
  32959. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32960. {
  32961. front: {
  32962. height: math.unit(4, "meters"),
  32963. name: "Front",
  32964. image: {
  32965. source: "./media/characters/mid/front.svg",
  32966. extra: 507 / 476,
  32967. bottom: 17 / 524
  32968. }
  32969. },
  32970. back: {
  32971. height: math.unit(4, "meters"),
  32972. name: "Back",
  32973. image: {
  32974. source: "./media/characters/mid/back.svg",
  32975. extra: 519 / 487,
  32976. bottom: 7 / 526
  32977. }
  32978. },
  32979. stuck: {
  32980. height: math.unit(2.2, "meters"),
  32981. name: "Stuck",
  32982. image: {
  32983. source: "./media/characters/mid/stuck.svg",
  32984. extra: 1951 / 1869,
  32985. bottom: 88 / 2039
  32986. }
  32987. }
  32988. },
  32989. [
  32990. {
  32991. name: "Normal",
  32992. height: math.unit(4, "meters"),
  32993. default: true
  32994. },
  32995. {
  32996. name: "Big",
  32997. height: math.unit(10, "meters")
  32998. },
  32999. {
  33000. name: "Macro",
  33001. height: math.unit(800, "meters")
  33002. },
  33003. {
  33004. name: "Megamacro",
  33005. height: math.unit(100, "km")
  33006. },
  33007. {
  33008. name: "Overgrown",
  33009. height: math.unit(1, "parsec")
  33010. },
  33011. ]
  33012. ))
  33013. characterMakers.push(() => makeCharacter(
  33014. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33015. {
  33016. front: {
  33017. height: math.unit(2.5, "meters"),
  33018. weight: math.unit(225, "kg"),
  33019. name: "Front",
  33020. image: {
  33021. source: "./media/characters/iris/front.svg",
  33022. extra: 3348 / 3251,
  33023. bottom: 205 / 3553
  33024. }
  33025. },
  33026. maw: {
  33027. height: math.unit(0.56, "meter"),
  33028. name: "Maw",
  33029. image: {
  33030. source: "./media/characters/iris/maw.svg"
  33031. }
  33032. },
  33033. },
  33034. [
  33035. {
  33036. name: "Mewter cat",
  33037. height: math.unit(1.2, "meters")
  33038. },
  33039. {
  33040. name: "Normal",
  33041. height: math.unit(2.5, "meters"),
  33042. default: true
  33043. },
  33044. {
  33045. name: "Minimacro",
  33046. height: math.unit(18, "feet")
  33047. },
  33048. {
  33049. name: "Macro",
  33050. height: math.unit(140, "feet")
  33051. },
  33052. {
  33053. name: "Macro+",
  33054. height: math.unit(180, "meters")
  33055. },
  33056. {
  33057. name: "Megamacro",
  33058. height: math.unit(2746, "meters")
  33059. },
  33060. ]
  33061. ))
  33062. characterMakers.push(() => makeCharacter(
  33063. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33064. {
  33065. front: {
  33066. height: math.unit(6, "feet"),
  33067. weight: math.unit(135, "lb"),
  33068. name: "Front",
  33069. image: {
  33070. source: "./media/characters/axel/front.svg",
  33071. extra: 908 / 908,
  33072. bottom: 58 / 966
  33073. }
  33074. },
  33075. side: {
  33076. height: math.unit(6, "feet"),
  33077. weight: math.unit(135, "lb"),
  33078. name: "Side",
  33079. image: {
  33080. source: "./media/characters/axel/side.svg",
  33081. extra: 958 / 958,
  33082. bottom: 11 / 969
  33083. }
  33084. },
  33085. back: {
  33086. height: math.unit(6, "feet"),
  33087. weight: math.unit(135, "lb"),
  33088. name: "Back",
  33089. image: {
  33090. source: "./media/characters/axel/back.svg",
  33091. extra: 887 / 887,
  33092. bottom: 34 / 921
  33093. }
  33094. },
  33095. head: {
  33096. height: math.unit(1.07, "feet"),
  33097. name: "Head",
  33098. image: {
  33099. source: "./media/characters/axel/head.svg"
  33100. }
  33101. },
  33102. beak: {
  33103. height: math.unit(1.4, "feet"),
  33104. name: "Beak",
  33105. image: {
  33106. source: "./media/characters/axel/beak.svg"
  33107. }
  33108. },
  33109. beakSide: {
  33110. height: math.unit(1.4, "feet"),
  33111. name: "Beak Side",
  33112. image: {
  33113. source: "./media/characters/axel/beak-side.svg"
  33114. }
  33115. },
  33116. sheath: {
  33117. height: math.unit(0.5, "feet"),
  33118. name: "Sheath",
  33119. image: {
  33120. source: "./media/characters/axel/sheath.svg"
  33121. }
  33122. },
  33123. dick: {
  33124. height: math.unit(0.98, "feet"),
  33125. name: "Dick",
  33126. image: {
  33127. source: "./media/characters/axel/dick.svg"
  33128. }
  33129. },
  33130. },
  33131. [
  33132. {
  33133. name: "Macro",
  33134. height: math.unit(68, "meters"),
  33135. default: true
  33136. },
  33137. ]
  33138. ))
  33139. characterMakers.push(() => makeCharacter(
  33140. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33141. {
  33142. front: {
  33143. height: math.unit(3.5, "meters"),
  33144. weight: math.unit(1200, "kg"),
  33145. name: "Front",
  33146. image: {
  33147. source: "./media/characters/joanna/front.svg",
  33148. extra: 1596 / 1488,
  33149. bottom: 29 / 1625
  33150. }
  33151. },
  33152. back: {
  33153. height: math.unit(3.5, "meters"),
  33154. weight: math.unit(1200, "kg"),
  33155. name: "Back",
  33156. image: {
  33157. source: "./media/characters/joanna/back.svg",
  33158. extra: 1594 / 1495,
  33159. bottom: 26 / 1620
  33160. }
  33161. },
  33162. frontShorts: {
  33163. height: math.unit(3.5, "meters"),
  33164. weight: math.unit(1200, "kg"),
  33165. name: "Front (Shorts)",
  33166. image: {
  33167. source: "./media/characters/joanna/front-shorts.svg",
  33168. extra: 1596 / 1488,
  33169. bottom: 29 / 1625
  33170. }
  33171. },
  33172. frontBiker: {
  33173. height: math.unit(3.5, "meters"),
  33174. weight: math.unit(1200, "kg"),
  33175. name: "Front (Biker)",
  33176. image: {
  33177. source: "./media/characters/joanna/front-biker.svg",
  33178. extra: 1596 / 1488,
  33179. bottom: 29 / 1625
  33180. }
  33181. },
  33182. backBiker: {
  33183. height: math.unit(3.5, "meters"),
  33184. weight: math.unit(1200, "kg"),
  33185. name: "Back (Biker)",
  33186. image: {
  33187. source: "./media/characters/joanna/back-biker.svg",
  33188. extra: 1594 / 1495,
  33189. bottom: 88 / 1682
  33190. }
  33191. },
  33192. bikeLeft: {
  33193. height: math.unit(2.4, "meters"),
  33194. weight: math.unit(1600, "kg"),
  33195. name: "Bike (Left)",
  33196. image: {
  33197. source: "./media/characters/joanna/bike-left.svg",
  33198. extra: 720 / 720,
  33199. bottom: 8 / 728
  33200. }
  33201. },
  33202. bikeRight: {
  33203. height: math.unit(2.4, "meters"),
  33204. weight: math.unit(1600, "kg"),
  33205. name: "Bike (Right)",
  33206. image: {
  33207. source: "./media/characters/joanna/bike-right.svg",
  33208. extra: 720 / 720,
  33209. bottom: 8 / 728
  33210. }
  33211. },
  33212. },
  33213. [
  33214. {
  33215. name: "Incognito",
  33216. height: math.unit(3.5, "meters")
  33217. },
  33218. {
  33219. name: "Casual Big",
  33220. height: math.unit(200, "meters")
  33221. },
  33222. {
  33223. name: "Macro",
  33224. height: math.unit(600, "meters")
  33225. },
  33226. {
  33227. name: "Original",
  33228. height: math.unit(20, "km"),
  33229. default: true
  33230. },
  33231. {
  33232. name: "Giga",
  33233. height: math.unit(400, "km")
  33234. },
  33235. {
  33236. name: "Lounging",
  33237. height: math.unit(1500, "km")
  33238. },
  33239. {
  33240. name: "Planetary",
  33241. height: math.unit(200000, "km")
  33242. },
  33243. ]
  33244. ))
  33245. characterMakers.push(() => makeCharacter(
  33246. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33247. {
  33248. front: {
  33249. height: math.unit(6, "feet"),
  33250. weight: math.unit(150, "lb"),
  33251. name: "Front",
  33252. image: {
  33253. source: "./media/characters/hugo-sigil/front.svg",
  33254. extra: 522 / 500,
  33255. bottom: 2 / 524
  33256. }
  33257. },
  33258. back: {
  33259. height: math.unit(6, "feet"),
  33260. weight: math.unit(150, "lb"),
  33261. name: "Back",
  33262. image: {
  33263. source: "./media/characters/hugo-sigil/back.svg",
  33264. extra: 519 / 495,
  33265. bottom: 5 / 524
  33266. }
  33267. },
  33268. maw: {
  33269. height: math.unit(1.4, "feet"),
  33270. weight: math.unit(150, "lb"),
  33271. name: "Maw",
  33272. image: {
  33273. source: "./media/characters/hugo-sigil/maw.svg"
  33274. }
  33275. },
  33276. feet: {
  33277. height: math.unit(1.56, "feet"),
  33278. weight: math.unit(150, "lb"),
  33279. name: "Feet",
  33280. image: {
  33281. source: "./media/characters/hugo-sigil/feet.svg",
  33282. extra: 177 / 177,
  33283. bottom: 12 / 189
  33284. }
  33285. },
  33286. },
  33287. [
  33288. {
  33289. name: "Normal",
  33290. height: math.unit(6, "feet")
  33291. },
  33292. {
  33293. name: "Macro",
  33294. height: math.unit(200, "feet"),
  33295. default: true
  33296. },
  33297. ]
  33298. ))
  33299. characterMakers.push(() => makeCharacter(
  33300. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33301. {
  33302. front: {
  33303. height: math.unit(6, "feet"),
  33304. weight: math.unit(150, "lb"),
  33305. name: "Front",
  33306. image: {
  33307. source: "./media/characters/peri/front.svg",
  33308. extra: 2354 / 2233,
  33309. bottom: 49 / 2403
  33310. }
  33311. },
  33312. },
  33313. [
  33314. {
  33315. name: "Really Small",
  33316. height: math.unit(1, "nm")
  33317. },
  33318. {
  33319. name: "Micro",
  33320. height: math.unit(4, "inches")
  33321. },
  33322. {
  33323. name: "Normal",
  33324. height: math.unit(7, "inches"),
  33325. default: true
  33326. },
  33327. {
  33328. name: "Macro",
  33329. height: math.unit(400, "feet")
  33330. },
  33331. {
  33332. name: "Megamacro",
  33333. height: math.unit(100, "miles")
  33334. },
  33335. ]
  33336. ))
  33337. characterMakers.push(() => makeCharacter(
  33338. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33339. {
  33340. frontSlim: {
  33341. height: math.unit(7, "feet"),
  33342. name: "Front (Slim)",
  33343. image: {
  33344. source: "./media/characters/issilora/front-slim.svg",
  33345. extra: 529 / 449,
  33346. bottom: 53 / 582
  33347. }
  33348. },
  33349. sideSlim: {
  33350. height: math.unit(7, "feet"),
  33351. name: "Side (Slim)",
  33352. image: {
  33353. source: "./media/characters/issilora/side-slim.svg",
  33354. extra: 570 / 480,
  33355. bottom: 30 / 600
  33356. }
  33357. },
  33358. backSlim: {
  33359. height: math.unit(7, "feet"),
  33360. name: "Back (Slim)",
  33361. image: {
  33362. source: "./media/characters/issilora/back-slim.svg",
  33363. extra: 537 / 455,
  33364. bottom: 46 / 583
  33365. }
  33366. },
  33367. frontBuff: {
  33368. height: math.unit(7, "feet"),
  33369. name: "Front (Buff)",
  33370. image: {
  33371. source: "./media/characters/issilora/front-buff.svg",
  33372. extra: 2310 / 2035,
  33373. bottom: 335 / 2645
  33374. }
  33375. },
  33376. head: {
  33377. height: math.unit(1.94, "feet"),
  33378. name: "Head",
  33379. image: {
  33380. source: "./media/characters/issilora/head.svg"
  33381. }
  33382. },
  33383. },
  33384. [
  33385. {
  33386. name: "Minimum",
  33387. height: math.unit(7, "feet")
  33388. },
  33389. {
  33390. name: "Comfortable",
  33391. height: math.unit(17, "feet")
  33392. },
  33393. {
  33394. name: "Fun Size",
  33395. height: math.unit(47, "feet")
  33396. },
  33397. {
  33398. name: "Natural Macro",
  33399. height: math.unit(137, "feet"),
  33400. default: true
  33401. },
  33402. {
  33403. name: "Maximum Kaiju",
  33404. height: math.unit(397, "feet")
  33405. },
  33406. ]
  33407. ))
  33408. characterMakers.push(() => makeCharacter(
  33409. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33410. {
  33411. front: {
  33412. height: math.unit(50 + 9/12, "feet"),
  33413. weight: math.unit(32.8, "tons"),
  33414. name: "Front",
  33415. image: {
  33416. source: "./media/characters/irb'iiritaahn/front.svg",
  33417. extra: 1878/1826,
  33418. bottom: 326/2204
  33419. }
  33420. },
  33421. back: {
  33422. height: math.unit(50 + 9/12, "feet"),
  33423. weight: math.unit(32.8, "tons"),
  33424. name: "Back",
  33425. image: {
  33426. source: "./media/characters/irb'iiritaahn/back.svg",
  33427. extra: 2052/2018,
  33428. bottom: 152/2204
  33429. }
  33430. },
  33431. head: {
  33432. height: math.unit(12.86, "feet"),
  33433. name: "Head",
  33434. image: {
  33435. source: "./media/characters/irb'iiritaahn/head.svg"
  33436. }
  33437. },
  33438. maw: {
  33439. height: math.unit(9.66, "feet"),
  33440. name: "Maw",
  33441. image: {
  33442. source: "./media/characters/irb'iiritaahn/maw.svg"
  33443. }
  33444. },
  33445. frontDick: {
  33446. height: math.unit(8.78461, "feet"),
  33447. name: "Front Dick",
  33448. image: {
  33449. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33450. }
  33451. },
  33452. rearDick: {
  33453. height: math.unit(8.78461, "feet"),
  33454. name: "Rear Dick",
  33455. image: {
  33456. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33457. }
  33458. },
  33459. rearDickUnfolded: {
  33460. height: math.unit(8.78, "feet"),
  33461. name: "Rear Dick (Unfolded)",
  33462. image: {
  33463. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33464. }
  33465. },
  33466. wings: {
  33467. height: math.unit(43, "feet"),
  33468. name: "Wings",
  33469. image: {
  33470. source: "./media/characters/irb'iiritaahn/wings.svg"
  33471. }
  33472. },
  33473. },
  33474. [
  33475. {
  33476. name: "Macro",
  33477. height: math.unit(50 + 9/12, "feet"),
  33478. default: true
  33479. },
  33480. ]
  33481. ))
  33482. characterMakers.push(() => makeCharacter(
  33483. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33484. {
  33485. front: {
  33486. height: math.unit(205, "cm"),
  33487. weight: math.unit(102, "kg"),
  33488. name: "Front",
  33489. image: {
  33490. source: "./media/characters/irbisgreif/front.svg",
  33491. extra: 785/706,
  33492. bottom: 13/798
  33493. }
  33494. },
  33495. back: {
  33496. height: math.unit(205, "cm"),
  33497. weight: math.unit(102, "kg"),
  33498. name: "Back",
  33499. image: {
  33500. source: "./media/characters/irbisgreif/back.svg",
  33501. extra: 713/701,
  33502. bottom: 26/739
  33503. }
  33504. },
  33505. frontDressed: {
  33506. height: math.unit(216, "cm"),
  33507. weight: math.unit(102, "kg"),
  33508. name: "Front-dressed",
  33509. image: {
  33510. source: "./media/characters/irbisgreif/front-dressed.svg",
  33511. extra: 902/776,
  33512. bottom: 14/916
  33513. }
  33514. },
  33515. sideDressed: {
  33516. height: math.unit(195, "cm"),
  33517. weight: math.unit(102, "kg"),
  33518. name: "Side-dressed",
  33519. image: {
  33520. source: "./media/characters/irbisgreif/side-dressed.svg",
  33521. extra: 788/688,
  33522. bottom: 21/809
  33523. }
  33524. },
  33525. backDressed: {
  33526. height: math.unit(216, "cm"),
  33527. weight: math.unit(102, "kg"),
  33528. name: "Back-dressed",
  33529. image: {
  33530. source: "./media/characters/irbisgreif/back-dressed.svg",
  33531. extra: 901/783,
  33532. bottom: 10/911
  33533. }
  33534. },
  33535. dick: {
  33536. height: math.unit(0.49, "feet"),
  33537. name: "Dick",
  33538. image: {
  33539. source: "./media/characters/irbisgreif/dick.svg"
  33540. }
  33541. },
  33542. wingTop: {
  33543. height: math.unit(1.93 , "feet"),
  33544. name: "Wing-top",
  33545. image: {
  33546. source: "./media/characters/irbisgreif/wing-top.svg"
  33547. }
  33548. },
  33549. wingBottom: {
  33550. height: math.unit(1.93 , "feet"),
  33551. name: "Wing-bottom",
  33552. image: {
  33553. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33554. }
  33555. },
  33556. },
  33557. [
  33558. {
  33559. name: "Normal",
  33560. height: math.unit(216, "cm"),
  33561. default: true
  33562. },
  33563. ]
  33564. ))
  33565. characterMakers.push(() => makeCharacter(
  33566. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33567. {
  33568. front: {
  33569. height: math.unit(6, "feet"),
  33570. weight: math.unit(150, "lb"),
  33571. name: "Front",
  33572. image: {
  33573. source: "./media/characters/pride/front.svg",
  33574. extra: 1299/1230,
  33575. bottom: 18/1317
  33576. }
  33577. },
  33578. },
  33579. [
  33580. {
  33581. name: "Normal",
  33582. height: math.unit(7, "feet")
  33583. },
  33584. {
  33585. name: "Mini-macro",
  33586. height: math.unit(11, "feet")
  33587. },
  33588. {
  33589. name: "Macro",
  33590. height: math.unit(15, "meters"),
  33591. default: true
  33592. },
  33593. {
  33594. name: "Macro+",
  33595. height: math.unit(40, "meters")
  33596. },
  33597. ]
  33598. ))
  33599. characterMakers.push(() => makeCharacter(
  33600. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33601. {
  33602. front: {
  33603. height: math.unit(4 + 2 / 12, "feet"),
  33604. weight: math.unit(95, "lb"),
  33605. name: "Front",
  33606. image: {
  33607. source: "./media/characters/vaelophis-nyx/front.svg",
  33608. extra: 2532/2330,
  33609. bottom: 0/2532
  33610. }
  33611. },
  33612. back: {
  33613. height: math.unit(4 + 2 / 12, "feet"),
  33614. weight: math.unit(95, "lb"),
  33615. name: "Back",
  33616. image: {
  33617. source: "./media/characters/vaelophis-nyx/back.svg",
  33618. extra: 2484/2361,
  33619. bottom: 0/2484
  33620. }
  33621. },
  33622. feralSide: {
  33623. height: math.unit(2 + 1/12, "feet"),
  33624. weight: math.unit(20, "lb"),
  33625. name: "Feral (Side)",
  33626. image: {
  33627. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33628. extra: 1721/1581,
  33629. bottom: 70/1791
  33630. }
  33631. },
  33632. feralLazing: {
  33633. height: math.unit(1.08, "feet"),
  33634. weight: math.unit(20, "lb"),
  33635. name: "Feral (Lazing)",
  33636. image: {
  33637. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33638. extra: 822/822,
  33639. bottom: 248/1070
  33640. }
  33641. },
  33642. ear: {
  33643. height: math.unit(0.416, "feet"),
  33644. name: "Ear",
  33645. image: {
  33646. source: "./media/characters/vaelophis-nyx/ear.svg"
  33647. }
  33648. },
  33649. eye: {
  33650. height: math.unit(0.0748, "feet"),
  33651. name: "Eye",
  33652. image: {
  33653. source: "./media/characters/vaelophis-nyx/eye.svg"
  33654. }
  33655. },
  33656. mouth: {
  33657. height: math.unit(0.378, "feet"),
  33658. name: "Mouth",
  33659. image: {
  33660. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33661. }
  33662. },
  33663. spade: {
  33664. height: math.unit(0.55, "feet"),
  33665. name: "Spade",
  33666. image: {
  33667. source: "./media/characters/vaelophis-nyx/spade.svg"
  33668. }
  33669. },
  33670. },
  33671. [
  33672. {
  33673. name: "Normal",
  33674. height: math.unit(4 + 2/12, "feet"),
  33675. default: true
  33676. },
  33677. ]
  33678. ))
  33679. characterMakers.push(() => makeCharacter(
  33680. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33681. {
  33682. front: {
  33683. height: math.unit(7, "feet"),
  33684. weight: math.unit(231, "lb"),
  33685. name: "Front",
  33686. image: {
  33687. source: "./media/characters/flux/front.svg",
  33688. extra: 919/871,
  33689. bottom: 0/919
  33690. }
  33691. },
  33692. back: {
  33693. height: math.unit(7, "feet"),
  33694. weight: math.unit(231, "lb"),
  33695. name: "Back",
  33696. image: {
  33697. source: "./media/characters/flux/back.svg",
  33698. extra: 1040/992,
  33699. bottom: 0/1040
  33700. }
  33701. },
  33702. frontDressed: {
  33703. height: math.unit(7, "feet"),
  33704. weight: math.unit(231, "lb"),
  33705. name: "Front (Dressed)",
  33706. image: {
  33707. source: "./media/characters/flux/front-dressed.svg",
  33708. extra: 919/871,
  33709. bottom: 0/919
  33710. }
  33711. },
  33712. feralSide: {
  33713. height: math.unit(5, "feet"),
  33714. weight: math.unit(150, "lb"),
  33715. name: "Feral (Side)",
  33716. image: {
  33717. source: "./media/characters/flux/feral-side.svg",
  33718. extra: 598/528,
  33719. bottom: 28/626
  33720. }
  33721. },
  33722. head: {
  33723. height: math.unit(1.585, "feet"),
  33724. name: "Head",
  33725. image: {
  33726. source: "./media/characters/flux/head.svg"
  33727. }
  33728. },
  33729. headSide: {
  33730. height: math.unit(1.74, "feet"),
  33731. name: "Head (Side)",
  33732. image: {
  33733. source: "./media/characters/flux/head-side.svg"
  33734. }
  33735. },
  33736. headSideFire: {
  33737. height: math.unit(1.76, "feet"),
  33738. name: "Head (Side, Fire)",
  33739. image: {
  33740. source: "./media/characters/flux/head-side-fire.svg"
  33741. }
  33742. },
  33743. },
  33744. [
  33745. {
  33746. name: "Normal",
  33747. height: math.unit(7, "feet"),
  33748. default: true
  33749. },
  33750. ]
  33751. ))
  33752. characterMakers.push(() => makeCharacter(
  33753. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33754. {
  33755. front: {
  33756. height: math.unit(9, "feet"),
  33757. weight: math.unit(1012, "lb"),
  33758. name: "Front",
  33759. image: {
  33760. source: "./media/characters/ulfra-lupae/front.svg",
  33761. extra: 1083/1011,
  33762. bottom: 67/1150
  33763. }
  33764. },
  33765. },
  33766. [
  33767. {
  33768. name: "Micro",
  33769. height: math.unit(6, "inches")
  33770. },
  33771. {
  33772. name: "Socializing",
  33773. height: math.unit(6 + 5/12, "feet")
  33774. },
  33775. {
  33776. name: "Normal",
  33777. height: math.unit(9, "feet"),
  33778. default: true
  33779. },
  33780. {
  33781. name: "Macro",
  33782. height: math.unit(150, "feet")
  33783. },
  33784. ]
  33785. ))
  33786. characterMakers.push(() => makeCharacter(
  33787. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33788. {
  33789. front: {
  33790. height: math.unit(5 + 2/12, "feet"),
  33791. weight: math.unit(120, "lb"),
  33792. name: "Front",
  33793. image: {
  33794. source: "./media/characters/timber/front.svg",
  33795. extra: 2814/2705,
  33796. bottom: 181/2995
  33797. }
  33798. },
  33799. },
  33800. [
  33801. {
  33802. name: "Normal",
  33803. height: math.unit(5 + 2/12, "feet"),
  33804. default: true
  33805. },
  33806. ]
  33807. ))
  33808. characterMakers.push(() => makeCharacter(
  33809. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33810. {
  33811. front: {
  33812. height: math.unit(9, "feet"),
  33813. name: "Front",
  33814. image: {
  33815. source: "./media/characters/nicki/front.svg",
  33816. extra: 1240/990,
  33817. bottom: 45/1285
  33818. },
  33819. form: "anthro",
  33820. default: true
  33821. },
  33822. side: {
  33823. height: math.unit(9, "feet"),
  33824. name: "Side",
  33825. image: {
  33826. source: "./media/characters/nicki/side.svg",
  33827. extra: 1047/973,
  33828. bottom: 61/1108
  33829. },
  33830. form: "anthro"
  33831. },
  33832. back: {
  33833. height: math.unit(9, "feet"),
  33834. name: "Back",
  33835. image: {
  33836. source: "./media/characters/nicki/back.svg",
  33837. extra: 1006/965,
  33838. bottom: 39/1045
  33839. },
  33840. form: "anthro"
  33841. },
  33842. taur: {
  33843. height: math.unit(15, "feet"),
  33844. name: "Taur",
  33845. image: {
  33846. source: "./media/characters/nicki/taur.svg",
  33847. extra: 1592/1347,
  33848. bottom: 0/1592
  33849. },
  33850. form: "taur",
  33851. default: true
  33852. },
  33853. },
  33854. [
  33855. {
  33856. name: "Normal",
  33857. height: math.unit(9, "feet"),
  33858. form: "anthro",
  33859. default: true
  33860. },
  33861. {
  33862. name: "Normal",
  33863. height: math.unit(15, "feet"),
  33864. form: "taur",
  33865. default: true
  33866. }
  33867. ],
  33868. {
  33869. "anthro": {
  33870. name: "Anthro",
  33871. default: true
  33872. },
  33873. "taur": {
  33874. name: "Taur"
  33875. }
  33876. }
  33877. ))
  33878. characterMakers.push(() => makeCharacter(
  33879. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33880. {
  33881. front: {
  33882. height: math.unit(7 + 10/12, "feet"),
  33883. weight: math.unit(3.5, "tons"),
  33884. name: "Front",
  33885. image: {
  33886. source: "./media/characters/lee/front.svg",
  33887. extra: 1773/1615,
  33888. bottom: 86/1859
  33889. }
  33890. },
  33891. hand: {
  33892. height: math.unit(1.78, "feet"),
  33893. name: "Hand",
  33894. image: {
  33895. source: "./media/characters/lee/hand.svg"
  33896. }
  33897. },
  33898. maw: {
  33899. height: math.unit(1.18, "feet"),
  33900. name: "Maw",
  33901. image: {
  33902. source: "./media/characters/lee/maw.svg"
  33903. }
  33904. },
  33905. },
  33906. [
  33907. {
  33908. name: "Normal",
  33909. height: math.unit(7 + 10/12, "feet"),
  33910. default: true
  33911. },
  33912. ]
  33913. ))
  33914. characterMakers.push(() => makeCharacter(
  33915. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33916. {
  33917. front: {
  33918. height: math.unit(9, "feet"),
  33919. name: "Front",
  33920. image: {
  33921. source: "./media/characters/guti/front.svg",
  33922. extra: 4551/4355,
  33923. bottom: 123/4674
  33924. }
  33925. },
  33926. tongue: {
  33927. height: math.unit(1, "feet"),
  33928. name: "Tongue",
  33929. image: {
  33930. source: "./media/characters/guti/tongue.svg"
  33931. }
  33932. },
  33933. paw: {
  33934. height: math.unit(1.18, "feet"),
  33935. name: "Paw",
  33936. image: {
  33937. source: "./media/characters/guti/paw.svg"
  33938. }
  33939. },
  33940. },
  33941. [
  33942. {
  33943. name: "Normal",
  33944. height: math.unit(9, "feet"),
  33945. default: true
  33946. },
  33947. ]
  33948. ))
  33949. characterMakers.push(() => makeCharacter(
  33950. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33951. {
  33952. side: {
  33953. height: math.unit(5, "meters"),
  33954. name: "Side",
  33955. image: {
  33956. source: "./media/characters/vesper/side.svg",
  33957. extra: 1605/1518,
  33958. bottom: 0/1605
  33959. }
  33960. },
  33961. },
  33962. [
  33963. {
  33964. name: "Small",
  33965. height: math.unit(5, "meters")
  33966. },
  33967. {
  33968. name: "Sage",
  33969. height: math.unit(100, "meters"),
  33970. default: true
  33971. },
  33972. {
  33973. name: "Fun Size",
  33974. height: math.unit(600, "meters")
  33975. },
  33976. {
  33977. name: "Goddess",
  33978. height: math.unit(20000, "km")
  33979. },
  33980. {
  33981. name: "Maximum",
  33982. height: math.unit(5, "galaxies")
  33983. },
  33984. ]
  33985. ))
  33986. characterMakers.push(() => makeCharacter(
  33987. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33988. {
  33989. front: {
  33990. height: math.unit(6 + 3/12, "feet"),
  33991. weight: math.unit(190, "lb"),
  33992. name: "Front",
  33993. image: {
  33994. source: "./media/characters/gawain/front.svg",
  33995. extra: 2222/2139,
  33996. bottom: 90/2312
  33997. }
  33998. },
  33999. back: {
  34000. height: math.unit(6 + 3/12, "feet"),
  34001. weight: math.unit(190, "lb"),
  34002. name: "Back",
  34003. image: {
  34004. source: "./media/characters/gawain/back.svg",
  34005. extra: 2199/2111,
  34006. bottom: 73/2272
  34007. }
  34008. },
  34009. },
  34010. [
  34011. {
  34012. name: "Normal",
  34013. height: math.unit(6 + 3/12, "feet"),
  34014. default: true
  34015. },
  34016. ]
  34017. ))
  34018. characterMakers.push(() => makeCharacter(
  34019. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34020. {
  34021. side: {
  34022. height: math.unit(3.5, "meters"),
  34023. weight: math.unit(16000, "lb"),
  34024. name: "Side",
  34025. image: {
  34026. source: "./media/characters/dascalti/side.svg",
  34027. extra: 392/273,
  34028. bottom: 47/439
  34029. }
  34030. },
  34031. breath: {
  34032. height: math.unit(7.4, "feet"),
  34033. name: "Breath",
  34034. image: {
  34035. source: "./media/characters/dascalti/breath.svg"
  34036. }
  34037. },
  34038. fed: {
  34039. height: math.unit(3.6, "meters"),
  34040. weight: math.unit(16000, "lb"),
  34041. name: "Fed",
  34042. image: {
  34043. source: "./media/characters/dascalti/fed.svg",
  34044. extra: 1419/820,
  34045. bottom: 95/1514
  34046. }
  34047. },
  34048. },
  34049. [
  34050. {
  34051. name: "Normal",
  34052. height: math.unit(3.5, "meters"),
  34053. default: true
  34054. },
  34055. ]
  34056. ))
  34057. characterMakers.push(() => makeCharacter(
  34058. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34059. {
  34060. front: {
  34061. height: math.unit(3 + 5/12, "feet"),
  34062. name: "Front",
  34063. image: {
  34064. source: "./media/characters/mauve/front.svg",
  34065. extra: 1126/1033,
  34066. bottom: 65/1191
  34067. }
  34068. },
  34069. side: {
  34070. height: math.unit(3 + 5/12, "feet"),
  34071. name: "Side",
  34072. image: {
  34073. source: "./media/characters/mauve/side.svg",
  34074. extra: 1089/1001,
  34075. bottom: 29/1118
  34076. }
  34077. },
  34078. back: {
  34079. height: math.unit(3 + 5/12, "feet"),
  34080. name: "Back",
  34081. image: {
  34082. source: "./media/characters/mauve/back.svg",
  34083. extra: 1173/1053,
  34084. bottom: 109/1282
  34085. }
  34086. },
  34087. },
  34088. [
  34089. {
  34090. name: "Normal",
  34091. height: math.unit(3 + 5/12, "feet"),
  34092. default: true
  34093. },
  34094. ]
  34095. ))
  34096. characterMakers.push(() => makeCharacter(
  34097. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34098. {
  34099. front: {
  34100. height: math.unit(6 + 3/12, "feet"),
  34101. weight: math.unit(430, "lb"),
  34102. name: "Front",
  34103. image: {
  34104. source: "./media/characters/carlos/front.svg",
  34105. extra: 1964/1913,
  34106. bottom: 70/2034
  34107. }
  34108. },
  34109. },
  34110. [
  34111. {
  34112. name: "Normal",
  34113. height: math.unit(6 + 3/12, "feet"),
  34114. default: true
  34115. },
  34116. ]
  34117. ))
  34118. characterMakers.push(() => makeCharacter(
  34119. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34120. {
  34121. back: {
  34122. height: math.unit(5 + 10/12, "feet"),
  34123. weight: math.unit(200, "lb"),
  34124. name: "Back",
  34125. image: {
  34126. source: "./media/characters/jax/back.svg",
  34127. extra: 764/739,
  34128. bottom: 25/789
  34129. }
  34130. },
  34131. },
  34132. [
  34133. {
  34134. name: "Normal",
  34135. height: math.unit(5 + 10/12, "feet"),
  34136. default: true
  34137. },
  34138. ]
  34139. ))
  34140. characterMakers.push(() => makeCharacter(
  34141. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34142. {
  34143. front: {
  34144. height: math.unit(8, "feet"),
  34145. weight: math.unit(250, "lb"),
  34146. name: "Front",
  34147. image: {
  34148. source: "./media/characters/eikthynir/front.svg",
  34149. extra: 1332/1166,
  34150. bottom: 82/1414
  34151. }
  34152. },
  34153. back: {
  34154. height: math.unit(8, "feet"),
  34155. weight: math.unit(250, "lb"),
  34156. name: "Back",
  34157. image: {
  34158. source: "./media/characters/eikthynir/back.svg",
  34159. extra: 1342/1190,
  34160. bottom: 19/1361
  34161. }
  34162. },
  34163. dick: {
  34164. height: math.unit(2.35, "feet"),
  34165. name: "Dick",
  34166. image: {
  34167. source: "./media/characters/eikthynir/dick.svg"
  34168. }
  34169. },
  34170. },
  34171. [
  34172. {
  34173. name: "Normal",
  34174. height: math.unit(8, "feet"),
  34175. default: true
  34176. },
  34177. ]
  34178. ))
  34179. characterMakers.push(() => makeCharacter(
  34180. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34181. {
  34182. front: {
  34183. height: math.unit(99, "meters"),
  34184. weight: math.unit(13000, "tons"),
  34185. name: "Front",
  34186. image: {
  34187. source: "./media/characters/zlmos/front.svg",
  34188. extra: 2202/1992,
  34189. bottom: 315/2517
  34190. }
  34191. },
  34192. },
  34193. [
  34194. {
  34195. name: "Macro",
  34196. height: math.unit(99, "meters"),
  34197. default: true
  34198. },
  34199. ]
  34200. ))
  34201. characterMakers.push(() => makeCharacter(
  34202. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34203. {
  34204. front: {
  34205. height: math.unit(6 + 5/12, "feet"),
  34206. name: "Front",
  34207. image: {
  34208. source: "./media/characters/purri/front.svg",
  34209. extra: 1698/1610,
  34210. bottom: 32/1730
  34211. }
  34212. },
  34213. frontAlt: {
  34214. height: math.unit(6 + 5/12, "feet"),
  34215. name: "Front (Alt)",
  34216. image: {
  34217. source: "./media/characters/purri/front-alt.svg",
  34218. extra: 450/420,
  34219. bottom: 26/476
  34220. }
  34221. },
  34222. boots: {
  34223. height: math.unit(5.5, "feet"),
  34224. name: "Boots",
  34225. image: {
  34226. source: "./media/characters/purri/boots.svg",
  34227. extra: 905/853,
  34228. bottom: 18/923
  34229. },
  34230. extraAttributes: {
  34231. "shoeSize": {
  34232. name: "Shoe Size",
  34233. power: 1,
  34234. type: "length",
  34235. base: math.unit(12, "ShoeSizeMensUS")
  34236. },
  34237. "platformHeight": {
  34238. name: "Platform Height",
  34239. power: 1,
  34240. type: "length",
  34241. base: math.unit(2, "inches")
  34242. },
  34243. }
  34244. },
  34245. lying: {
  34246. height: math.unit(2, "feet"),
  34247. name: "Lying",
  34248. image: {
  34249. source: "./media/characters/purri/lying.svg",
  34250. extra: 940/843,
  34251. bottom: 146/1086
  34252. }
  34253. },
  34254. devious: {
  34255. height: math.unit(1.77, "feet"),
  34256. name: "Devious",
  34257. image: {
  34258. source: "./media/characters/purri/devious.svg",
  34259. extra: 1440/1155,
  34260. bottom: 147/1587
  34261. }
  34262. },
  34263. bean: {
  34264. height: math.unit(1.94, "feet"),
  34265. name: "Bean",
  34266. image: {
  34267. source: "./media/characters/purri/bean.svg"
  34268. }
  34269. },
  34270. },
  34271. [
  34272. {
  34273. name: "Micro",
  34274. height: math.unit(1, "mm")
  34275. },
  34276. {
  34277. name: "Normal",
  34278. height: math.unit(6 + 5/12, "feet"),
  34279. default: true
  34280. },
  34281. {
  34282. name: "Macro :3c",
  34283. height: math.unit(2, "miles")
  34284. },
  34285. ]
  34286. ))
  34287. characterMakers.push(() => makeCharacter(
  34288. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34289. {
  34290. front: {
  34291. height: math.unit(6 + 2/12, "feet"),
  34292. weight: math.unit(250, "lb"),
  34293. name: "Front",
  34294. image: {
  34295. source: "./media/characters/moonlight/front.svg",
  34296. extra: 1044/908,
  34297. bottom: 56/1100
  34298. }
  34299. },
  34300. feral: {
  34301. height: math.unit(3 + 1/12, "feet"),
  34302. weight: math.unit(50, "kg"),
  34303. name: "Feral",
  34304. image: {
  34305. source: "./media/characters/moonlight/feral.svg",
  34306. extra: 3705/2791,
  34307. bottom: 145/3850
  34308. }
  34309. },
  34310. paw: {
  34311. height: math.unit(1, "feet"),
  34312. name: "Paw",
  34313. image: {
  34314. source: "./media/characters/moonlight/paw.svg"
  34315. }
  34316. },
  34317. paws: {
  34318. height: math.unit(0.98, "feet"),
  34319. name: "Paws",
  34320. image: {
  34321. source: "./media/characters/moonlight/paws.svg",
  34322. extra: 939/939,
  34323. bottom: 50/989
  34324. }
  34325. },
  34326. mouth: {
  34327. height: math.unit(0.48, "feet"),
  34328. name: "Mouth",
  34329. image: {
  34330. source: "./media/characters/moonlight/mouth.svg"
  34331. }
  34332. },
  34333. dick: {
  34334. height: math.unit(1.46, "feet"),
  34335. name: "Dick",
  34336. image: {
  34337. source: "./media/characters/moonlight/dick.svg"
  34338. }
  34339. },
  34340. },
  34341. [
  34342. {
  34343. name: "Normal",
  34344. height: math.unit(6 + 2/12, "feet"),
  34345. default: true
  34346. },
  34347. {
  34348. name: "Macro",
  34349. height: math.unit(300, "feet")
  34350. },
  34351. {
  34352. name: "Macro+",
  34353. height: math.unit(1, "mile")
  34354. },
  34355. {
  34356. name: "Mt. Moon",
  34357. height: math.unit(5, "miles")
  34358. },
  34359. {
  34360. name: "Megamacro",
  34361. height: math.unit(15, "miles")
  34362. },
  34363. ]
  34364. ))
  34365. characterMakers.push(() => makeCharacter(
  34366. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34367. {
  34368. back: {
  34369. height: math.unit(6, "feet"),
  34370. weight: math.unit(150, "lb"),
  34371. name: "Back",
  34372. image: {
  34373. source: "./media/characters/sylen/back.svg",
  34374. extra: 1335/1273,
  34375. bottom: 107/1442
  34376. }
  34377. },
  34378. },
  34379. [
  34380. {
  34381. name: "Normal",
  34382. height: math.unit(5 + 5/12, "feet")
  34383. },
  34384. {
  34385. name: "Megamacro",
  34386. height: math.unit(3, "miles"),
  34387. default: true
  34388. },
  34389. ]
  34390. ))
  34391. characterMakers.push(() => makeCharacter(
  34392. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34393. {
  34394. front: {
  34395. height: math.unit(6, "feet"),
  34396. weight: math.unit(190, "lb"),
  34397. name: "Front",
  34398. image: {
  34399. source: "./media/characters/huttser/front.svg",
  34400. extra: 1152/1058,
  34401. bottom: 23/1175
  34402. }
  34403. },
  34404. side: {
  34405. height: math.unit(6, "feet"),
  34406. weight: math.unit(190, "lb"),
  34407. name: "Side",
  34408. image: {
  34409. source: "./media/characters/huttser/side.svg",
  34410. extra: 1174/1065,
  34411. bottom: 18/1192
  34412. }
  34413. },
  34414. back: {
  34415. height: math.unit(6, "feet"),
  34416. weight: math.unit(190, "lb"),
  34417. name: "Back",
  34418. image: {
  34419. source: "./media/characters/huttser/back.svg",
  34420. extra: 1158/1056,
  34421. bottom: 12/1170
  34422. }
  34423. },
  34424. },
  34425. [
  34426. ]
  34427. ))
  34428. characterMakers.push(() => makeCharacter(
  34429. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34430. {
  34431. side: {
  34432. height: math.unit(12 + 9/12, "feet"),
  34433. weight: math.unit(15000, "lb"),
  34434. name: "Side",
  34435. image: {
  34436. source: "./media/characters/faan/side.svg",
  34437. extra: 2747/2697,
  34438. bottom: 0/2747
  34439. }
  34440. },
  34441. front: {
  34442. height: math.unit(12 + 9/12, "feet"),
  34443. weight: math.unit(15000, "lb"),
  34444. name: "Front",
  34445. image: {
  34446. source: "./media/characters/faan/front.svg",
  34447. extra: 607/571,
  34448. bottom: 24/631
  34449. }
  34450. },
  34451. head: {
  34452. height: math.unit(2.85, "feet"),
  34453. name: "Head",
  34454. image: {
  34455. source: "./media/characters/faan/head.svg"
  34456. }
  34457. },
  34458. headAlt: {
  34459. height: math.unit(3.13, "feet"),
  34460. name: "Head-alt",
  34461. image: {
  34462. source: "./media/characters/faan/head-alt.svg"
  34463. }
  34464. },
  34465. },
  34466. [
  34467. {
  34468. name: "Normal",
  34469. height: math.unit(12 + 9/12, "feet"),
  34470. default: true
  34471. },
  34472. ]
  34473. ))
  34474. characterMakers.push(() => makeCharacter(
  34475. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34476. {
  34477. front: {
  34478. height: math.unit(6, "feet"),
  34479. weight: math.unit(300, "lb"),
  34480. name: "Front",
  34481. image: {
  34482. source: "./media/characters/tanio/front.svg",
  34483. extra: 711/673,
  34484. bottom: 25/736
  34485. }
  34486. },
  34487. },
  34488. [
  34489. {
  34490. name: "Normal",
  34491. height: math.unit(6, "feet"),
  34492. default: true
  34493. },
  34494. ]
  34495. ))
  34496. characterMakers.push(() => makeCharacter(
  34497. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34498. {
  34499. front: {
  34500. height: math.unit(3, "inches"),
  34501. name: "Front",
  34502. image: {
  34503. source: "./media/characters/noboru/front.svg",
  34504. extra: 1039/932,
  34505. bottom: 18/1057
  34506. }
  34507. },
  34508. },
  34509. [
  34510. {
  34511. name: "Micro",
  34512. height: math.unit(3, "inches"),
  34513. default: true
  34514. },
  34515. ]
  34516. ))
  34517. characterMakers.push(() => makeCharacter(
  34518. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34519. {
  34520. front: {
  34521. height: math.unit(1.85, "meters"),
  34522. weight: math.unit(80, "kg"),
  34523. name: "Front",
  34524. image: {
  34525. source: "./media/characters/daniel-barrett/front.svg",
  34526. extra: 355/337,
  34527. bottom: 9/364
  34528. }
  34529. },
  34530. },
  34531. [
  34532. {
  34533. name: "Pico",
  34534. height: math.unit(0.0433, "mm")
  34535. },
  34536. {
  34537. name: "Nano",
  34538. height: math.unit(1.5, "mm")
  34539. },
  34540. {
  34541. name: "Micro",
  34542. height: math.unit(5.3, "cm"),
  34543. default: true
  34544. },
  34545. {
  34546. name: "Normal",
  34547. height: math.unit(1.85, "meters")
  34548. },
  34549. {
  34550. name: "Macro",
  34551. height: math.unit(64.7, "meters")
  34552. },
  34553. {
  34554. name: "Megamacro",
  34555. height: math.unit(2.26, "km")
  34556. },
  34557. {
  34558. name: "Gigamacro",
  34559. height: math.unit(79, "km")
  34560. },
  34561. {
  34562. name: "Teramacro",
  34563. height: math.unit(2765, "km")
  34564. },
  34565. {
  34566. name: "Petamacro",
  34567. height: math.unit(96678, "km")
  34568. },
  34569. ]
  34570. ))
  34571. characterMakers.push(() => makeCharacter(
  34572. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34573. {
  34574. front: {
  34575. height: math.unit(30, "meters"),
  34576. weight: math.unit(400, "tons"),
  34577. name: "Front",
  34578. image: {
  34579. source: "./media/characters/zeel/front.svg",
  34580. extra: 2599/2599,
  34581. bottom: 226/2825
  34582. }
  34583. },
  34584. },
  34585. [
  34586. {
  34587. name: "Macro",
  34588. height: math.unit(30, "meters"),
  34589. default: true
  34590. },
  34591. ]
  34592. ))
  34593. characterMakers.push(() => makeCharacter(
  34594. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34595. {
  34596. front: {
  34597. height: math.unit(6 + 7/12, "feet"),
  34598. weight: math.unit(210, "lb"),
  34599. name: "Front",
  34600. image: {
  34601. source: "./media/characters/tarn/front.svg",
  34602. extra: 3517/3220,
  34603. bottom: 91/3608
  34604. }
  34605. },
  34606. back: {
  34607. height: math.unit(6 + 7/12, "feet"),
  34608. weight: math.unit(210, "lb"),
  34609. name: "Back",
  34610. image: {
  34611. source: "./media/characters/tarn/back.svg",
  34612. extra: 3566/3241,
  34613. bottom: 34/3600
  34614. }
  34615. },
  34616. dick: {
  34617. height: math.unit(1.65, "feet"),
  34618. name: "Dick",
  34619. image: {
  34620. source: "./media/characters/tarn/dick.svg"
  34621. }
  34622. },
  34623. paw: {
  34624. height: math.unit(1.80, "feet"),
  34625. name: "Paw",
  34626. image: {
  34627. source: "./media/characters/tarn/paw.svg"
  34628. }
  34629. },
  34630. tongue: {
  34631. height: math.unit(0.97, "feet"),
  34632. name: "Tongue",
  34633. image: {
  34634. source: "./media/characters/tarn/tongue.svg"
  34635. }
  34636. },
  34637. },
  34638. [
  34639. {
  34640. name: "Micro",
  34641. height: math.unit(4, "inches")
  34642. },
  34643. {
  34644. name: "Normal",
  34645. height: math.unit(6 + 7/12, "feet"),
  34646. default: true
  34647. },
  34648. {
  34649. name: "Macro",
  34650. height: math.unit(300, "feet")
  34651. },
  34652. ]
  34653. ))
  34654. characterMakers.push(() => makeCharacter(
  34655. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34656. {
  34657. front: {
  34658. height: math.unit(5 + 7/12, "feet"),
  34659. weight: math.unit(80, "kg"),
  34660. name: "Front",
  34661. image: {
  34662. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34663. extra: 3023/2865,
  34664. bottom: 33/3056
  34665. }
  34666. },
  34667. back: {
  34668. height: math.unit(5 + 7/12, "feet"),
  34669. weight: math.unit(80, "kg"),
  34670. name: "Back",
  34671. image: {
  34672. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34673. extra: 3020/2886,
  34674. bottom: 30/3050
  34675. }
  34676. },
  34677. dick: {
  34678. height: math.unit(0.98, "feet"),
  34679. name: "Dick",
  34680. image: {
  34681. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34682. }
  34683. },
  34684. anatomy: {
  34685. height: math.unit(2.86, "feet"),
  34686. name: "Anatomy",
  34687. image: {
  34688. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34689. }
  34690. },
  34691. },
  34692. [
  34693. {
  34694. name: "Really Small",
  34695. height: math.unit(2, "inches")
  34696. },
  34697. {
  34698. name: "Micro",
  34699. height: math.unit(5.583, "inches")
  34700. },
  34701. {
  34702. name: "Normal",
  34703. height: math.unit(5 + 7/12, "feet"),
  34704. default: true
  34705. },
  34706. {
  34707. name: "Macro",
  34708. height: math.unit(67, "feet")
  34709. },
  34710. {
  34711. name: "Megamacro",
  34712. height: math.unit(134, "feet")
  34713. },
  34714. ]
  34715. ))
  34716. characterMakers.push(() => makeCharacter(
  34717. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34718. {
  34719. front: {
  34720. height: math.unit(9, "feet"),
  34721. weight: math.unit(120, "lb"),
  34722. name: "Front",
  34723. image: {
  34724. source: "./media/characters/sally/front.svg",
  34725. extra: 1506/1349,
  34726. bottom: 66/1572
  34727. }
  34728. },
  34729. },
  34730. [
  34731. {
  34732. name: "Normal",
  34733. height: math.unit(9, "feet"),
  34734. default: true
  34735. },
  34736. ]
  34737. ))
  34738. characterMakers.push(() => makeCharacter(
  34739. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34740. {
  34741. front: {
  34742. height: math.unit(8, "feet"),
  34743. weight: math.unit(900, "lb"),
  34744. name: "Front",
  34745. image: {
  34746. source: "./media/characters/owen/front.svg",
  34747. extra: 1761/1657,
  34748. bottom: 74/1835
  34749. }
  34750. },
  34751. side: {
  34752. height: math.unit(8, "feet"),
  34753. weight: math.unit(900, "lb"),
  34754. name: "Side",
  34755. image: {
  34756. source: "./media/characters/owen/side.svg",
  34757. extra: 1797/1734,
  34758. bottom: 30/1827
  34759. }
  34760. },
  34761. back: {
  34762. height: math.unit(8, "feet"),
  34763. weight: math.unit(900, "lb"),
  34764. name: "Back",
  34765. image: {
  34766. source: "./media/characters/owen/back.svg",
  34767. extra: 1796/1706,
  34768. bottom: 59/1855
  34769. }
  34770. },
  34771. maw: {
  34772. height: math.unit(1.76, "feet"),
  34773. name: "Maw",
  34774. image: {
  34775. source: "./media/characters/owen/maw.svg"
  34776. }
  34777. },
  34778. },
  34779. [
  34780. {
  34781. name: "Normal",
  34782. height: math.unit(8, "feet"),
  34783. default: true
  34784. },
  34785. ]
  34786. ))
  34787. characterMakers.push(() => makeCharacter(
  34788. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34789. {
  34790. front: {
  34791. height: math.unit(4, "feet"),
  34792. weight: math.unit(400, "lb"),
  34793. name: "Front",
  34794. image: {
  34795. source: "./media/characters/ryth/front.svg",
  34796. extra: 1920/1748,
  34797. bottom: 42/1962
  34798. }
  34799. },
  34800. back: {
  34801. height: math.unit(4, "feet"),
  34802. weight: math.unit(400, "lb"),
  34803. name: "Back",
  34804. image: {
  34805. source: "./media/characters/ryth/back.svg",
  34806. extra: 1897/1690,
  34807. bottom: 89/1986
  34808. }
  34809. },
  34810. mouth: {
  34811. height: math.unit(1.39, "feet"),
  34812. name: "Mouth",
  34813. image: {
  34814. source: "./media/characters/ryth/mouth.svg"
  34815. }
  34816. },
  34817. tailmaw: {
  34818. height: math.unit(1.23, "feet"),
  34819. name: "Tailmaw",
  34820. image: {
  34821. source: "./media/characters/ryth/tailmaw.svg"
  34822. }
  34823. },
  34824. goia: {
  34825. height: math.unit(4, "meters"),
  34826. weight: math.unit(10800, "lb"),
  34827. name: "Goia",
  34828. image: {
  34829. source: "./media/characters/ryth/goia.svg",
  34830. extra: 745/640,
  34831. bottom: 107/852
  34832. }
  34833. },
  34834. goiaFront: {
  34835. height: math.unit(4, "meters"),
  34836. weight: math.unit(10800, "lb"),
  34837. name: "Goia (Front)",
  34838. image: {
  34839. source: "./media/characters/ryth/goia-front.svg",
  34840. extra: 750/586,
  34841. bottom: 114/864
  34842. }
  34843. },
  34844. goiaMaw: {
  34845. height: math.unit(5.55, "feet"),
  34846. name: "Goia Maw",
  34847. image: {
  34848. source: "./media/characters/ryth/goia-maw.svg"
  34849. }
  34850. },
  34851. goiaForepaw: {
  34852. height: math.unit(3.5, "feet"),
  34853. name: "Goia Forepaw",
  34854. image: {
  34855. source: "./media/characters/ryth/goia-forepaw.svg"
  34856. }
  34857. },
  34858. goiaHindpaw: {
  34859. height: math.unit(5.55, "feet"),
  34860. name: "Goia Hindpaw",
  34861. image: {
  34862. source: "./media/characters/ryth/goia-hindpaw.svg"
  34863. }
  34864. },
  34865. },
  34866. [
  34867. {
  34868. name: "Normal",
  34869. height: math.unit(4, "feet"),
  34870. default: true
  34871. },
  34872. ]
  34873. ))
  34874. characterMakers.push(() => makeCharacter(
  34875. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34876. {
  34877. front: {
  34878. height: math.unit(7, "feet"),
  34879. weight: math.unit(180, "lb"),
  34880. name: "Front",
  34881. image: {
  34882. source: "./media/characters/necrolance/front.svg",
  34883. extra: 1062/947,
  34884. bottom: 41/1103
  34885. }
  34886. },
  34887. back: {
  34888. height: math.unit(7, "feet"),
  34889. weight: math.unit(180, "lb"),
  34890. name: "Back",
  34891. image: {
  34892. source: "./media/characters/necrolance/back.svg",
  34893. extra: 1045/984,
  34894. bottom: 14/1059
  34895. }
  34896. },
  34897. wing: {
  34898. height: math.unit(2.67, "feet"),
  34899. name: "Wing",
  34900. image: {
  34901. source: "./media/characters/necrolance/wing.svg"
  34902. }
  34903. },
  34904. },
  34905. [
  34906. {
  34907. name: "Normal",
  34908. height: math.unit(7, "feet"),
  34909. default: true
  34910. },
  34911. ]
  34912. ))
  34913. characterMakers.push(() => makeCharacter(
  34914. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34915. {
  34916. front: {
  34917. height: math.unit(76, "meters"),
  34918. weight: math.unit(30000, "tons"),
  34919. name: "Front",
  34920. image: {
  34921. source: "./media/characters/tyler/front.svg",
  34922. extra: 1640/1640,
  34923. bottom: 114/1754
  34924. }
  34925. },
  34926. },
  34927. [
  34928. {
  34929. name: "Macro",
  34930. height: math.unit(76, "meters"),
  34931. default: true
  34932. },
  34933. ]
  34934. ))
  34935. characterMakers.push(() => makeCharacter(
  34936. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34937. {
  34938. front: {
  34939. height: math.unit(4 + 11/12, "feet"),
  34940. weight: math.unit(132, "lb"),
  34941. name: "Front",
  34942. image: {
  34943. source: "./media/characters/icey/front.svg",
  34944. extra: 2750/2550,
  34945. bottom: 33/2783
  34946. }
  34947. },
  34948. back: {
  34949. height: math.unit(4 + 11/12, "feet"),
  34950. weight: math.unit(132, "lb"),
  34951. name: "Back",
  34952. image: {
  34953. source: "./media/characters/icey/back.svg",
  34954. extra: 2624/2481,
  34955. bottom: 35/2659
  34956. }
  34957. },
  34958. },
  34959. [
  34960. {
  34961. name: "Normal",
  34962. height: math.unit(4 + 11/12, "feet"),
  34963. default: true
  34964. },
  34965. ]
  34966. ))
  34967. characterMakers.push(() => makeCharacter(
  34968. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34969. {
  34970. front: {
  34971. height: math.unit(100, "feet"),
  34972. weight: math.unit(0, "lb"),
  34973. name: "Front",
  34974. image: {
  34975. source: "./media/characters/smile/front.svg",
  34976. extra: 2983/2912,
  34977. bottom: 162/3145
  34978. }
  34979. },
  34980. back: {
  34981. height: math.unit(100, "feet"),
  34982. weight: math.unit(0, "lb"),
  34983. name: "Back",
  34984. image: {
  34985. source: "./media/characters/smile/back.svg",
  34986. extra: 3143/3031,
  34987. bottom: 91/3234
  34988. }
  34989. },
  34990. head: {
  34991. height: math.unit(26.3, "feet"),
  34992. weight: math.unit(0, "lb"),
  34993. name: "Head",
  34994. image: {
  34995. source: "./media/characters/smile/head.svg"
  34996. }
  34997. },
  34998. collar: {
  34999. height: math.unit(5.3, "feet"),
  35000. weight: math.unit(0, "lb"),
  35001. name: "Collar",
  35002. image: {
  35003. source: "./media/characters/smile/collar.svg"
  35004. }
  35005. },
  35006. },
  35007. [
  35008. {
  35009. name: "Macro",
  35010. height: math.unit(100, "feet"),
  35011. default: true
  35012. },
  35013. ]
  35014. ))
  35015. characterMakers.push(() => makeCharacter(
  35016. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35017. {
  35018. dragon: {
  35019. height: math.unit(26, "feet"),
  35020. weight: math.unit(36, "tons"),
  35021. name: "Dragon",
  35022. image: {
  35023. source: "./media/characters/arimphae/dragon.svg",
  35024. extra: 1574/983,
  35025. bottom: 357/1931
  35026. }
  35027. },
  35028. drake: {
  35029. height: math.unit(9, "feet"),
  35030. weight: math.unit(1.5, "tons"),
  35031. name: "Drake",
  35032. image: {
  35033. source: "./media/characters/arimphae/drake.svg",
  35034. extra: 1120/925,
  35035. bottom: 435/1555
  35036. }
  35037. },
  35038. },
  35039. [
  35040. {
  35041. name: "Small",
  35042. height: math.unit(26*5/9, "feet")
  35043. },
  35044. {
  35045. name: "Normal",
  35046. height: math.unit(26, "feet"),
  35047. default: true
  35048. },
  35049. ]
  35050. ))
  35051. characterMakers.push(() => makeCharacter(
  35052. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35053. {
  35054. front: {
  35055. height: math.unit(8 + 9/12, "feet"),
  35056. name: "Front",
  35057. image: {
  35058. source: "./media/characters/xander/front.svg",
  35059. extra: 1237/974,
  35060. bottom: 94/1331
  35061. }
  35062. },
  35063. },
  35064. [
  35065. {
  35066. name: "Normal",
  35067. height: math.unit(8 + 9/12, "feet"),
  35068. default: true
  35069. },
  35070. {
  35071. name: "Gaze Grabber",
  35072. height: math.unit(13 + 8/12, "feet")
  35073. },
  35074. {
  35075. name: "Jaw Dropper",
  35076. height: math.unit(27, "feet")
  35077. },
  35078. {
  35079. name: "Show Stopper",
  35080. height: math.unit(136, "feet")
  35081. },
  35082. {
  35083. name: "Superstar",
  35084. height: math.unit(1.9e6, "miles")
  35085. },
  35086. ]
  35087. ))
  35088. characterMakers.push(() => makeCharacter(
  35089. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35090. {
  35091. side: {
  35092. height: math.unit(2100, "feet"),
  35093. name: "Side",
  35094. image: {
  35095. source: "./media/characters/osiris/side.svg",
  35096. extra: 1105/939,
  35097. bottom: 167/1272
  35098. }
  35099. },
  35100. },
  35101. [
  35102. {
  35103. name: "Macro",
  35104. height: math.unit(2100, "feet"),
  35105. default: true
  35106. },
  35107. ]
  35108. ))
  35109. characterMakers.push(() => makeCharacter(
  35110. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35111. {
  35112. front: {
  35113. height: math.unit(6 + 8/12, "feet"),
  35114. weight: math.unit(225, "lb"),
  35115. name: "Front",
  35116. image: {
  35117. source: "./media/characters/rhys-londe/front.svg",
  35118. extra: 2258/2141,
  35119. bottom: 188/2446
  35120. }
  35121. },
  35122. back: {
  35123. height: math.unit(6 + 8/12, "feet"),
  35124. weight: math.unit(225, "lb"),
  35125. name: "Back",
  35126. image: {
  35127. source: "./media/characters/rhys-londe/back.svg",
  35128. extra: 2237/2137,
  35129. bottom: 63/2300
  35130. }
  35131. },
  35132. frontNsfw: {
  35133. height: math.unit(6 + 8/12, "feet"),
  35134. weight: math.unit(225, "lb"),
  35135. name: "Front (NSFW)",
  35136. image: {
  35137. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35138. extra: 2258/2141,
  35139. bottom: 188/2446
  35140. }
  35141. },
  35142. backNsfw: {
  35143. height: math.unit(6 + 8/12, "feet"),
  35144. weight: math.unit(225, "lb"),
  35145. name: "Back (NSFW)",
  35146. image: {
  35147. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35148. extra: 2237/2137,
  35149. bottom: 63/2300
  35150. }
  35151. },
  35152. dick: {
  35153. height: math.unit(30, "inches"),
  35154. name: "Dick",
  35155. image: {
  35156. source: "./media/characters/rhys-londe/dick.svg"
  35157. }
  35158. },
  35159. maw: {
  35160. height: math.unit(1.6, "feet"),
  35161. name: "Maw",
  35162. image: {
  35163. source: "./media/characters/rhys-londe/maw.svg"
  35164. }
  35165. },
  35166. },
  35167. [
  35168. {
  35169. name: "Normal",
  35170. height: math.unit(6 + 8/12, "feet"),
  35171. default: true
  35172. },
  35173. ]
  35174. ))
  35175. characterMakers.push(() => makeCharacter(
  35176. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35177. {
  35178. front: {
  35179. height: math.unit(3 + 10/12, "feet"),
  35180. weight: math.unit(90, "lb"),
  35181. name: "Front",
  35182. image: {
  35183. source: "./media/characters/taivas-ensim/front.svg",
  35184. extra: 1327/1216,
  35185. bottom: 96/1423
  35186. }
  35187. },
  35188. back: {
  35189. height: math.unit(3 + 10/12, "feet"),
  35190. weight: math.unit(90, "lb"),
  35191. name: "Back",
  35192. image: {
  35193. source: "./media/characters/taivas-ensim/back.svg",
  35194. extra: 1355/1247,
  35195. bottom: 11/1366
  35196. }
  35197. },
  35198. frontNsfw: {
  35199. height: math.unit(3 + 10/12, "feet"),
  35200. weight: math.unit(90, "lb"),
  35201. name: "Front (NSFW)",
  35202. image: {
  35203. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35204. extra: 1327/1216,
  35205. bottom: 96/1423
  35206. }
  35207. },
  35208. backNsfw: {
  35209. height: math.unit(3 + 10/12, "feet"),
  35210. weight: math.unit(90, "lb"),
  35211. name: "Back (NSFW)",
  35212. image: {
  35213. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35214. extra: 1355/1247,
  35215. bottom: 11/1366
  35216. }
  35217. },
  35218. },
  35219. [
  35220. {
  35221. name: "Normal",
  35222. height: math.unit(3 + 10/12, "feet"),
  35223. default: true
  35224. },
  35225. ]
  35226. ))
  35227. characterMakers.push(() => makeCharacter(
  35228. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35229. {
  35230. front: {
  35231. height: math.unit(9 + 6/12, "feet"),
  35232. weight: math.unit(940, "lb"),
  35233. name: "Front",
  35234. image: {
  35235. source: "./media/characters/byliss/front.svg",
  35236. extra: 1327/1290,
  35237. bottom: 82/1409
  35238. }
  35239. },
  35240. back: {
  35241. height: math.unit(9 + 6/12, "feet"),
  35242. weight: math.unit(940, "lb"),
  35243. name: "Back",
  35244. image: {
  35245. source: "./media/characters/byliss/back.svg",
  35246. extra: 1376/1349,
  35247. bottom: 9/1385
  35248. }
  35249. },
  35250. frontNsfw: {
  35251. height: math.unit(9 + 6/12, "feet"),
  35252. weight: math.unit(940, "lb"),
  35253. name: "Front (NSFW)",
  35254. image: {
  35255. source: "./media/characters/byliss/front-nsfw.svg",
  35256. extra: 1327/1290,
  35257. bottom: 82/1409
  35258. }
  35259. },
  35260. backNsfw: {
  35261. height: math.unit(9 + 6/12, "feet"),
  35262. weight: math.unit(940, "lb"),
  35263. name: "Back (NSFW)",
  35264. image: {
  35265. source: "./media/characters/byliss/back-nsfw.svg",
  35266. extra: 1376/1349,
  35267. bottom: 9/1385
  35268. }
  35269. },
  35270. },
  35271. [
  35272. {
  35273. name: "Normal",
  35274. height: math.unit(9 + 6/12, "feet"),
  35275. default: true
  35276. },
  35277. ]
  35278. ))
  35279. characterMakers.push(() => makeCharacter(
  35280. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35281. {
  35282. front: {
  35283. height: math.unit(5 + 2/12, "feet"),
  35284. weight: math.unit(200, "lb"),
  35285. name: "Front",
  35286. image: {
  35287. source: "./media/characters/noraly/front.svg",
  35288. extra: 4985/4773,
  35289. bottom: 150/5135
  35290. }
  35291. },
  35292. full: {
  35293. height: math.unit(5 + 2/12, "feet"),
  35294. weight: math.unit(164, "lb"),
  35295. name: "Full",
  35296. image: {
  35297. source: "./media/characters/noraly/full.svg",
  35298. extra: 1114/1059,
  35299. bottom: 35/1149
  35300. }
  35301. },
  35302. fuller: {
  35303. height: math.unit(5 + 2/12, "feet"),
  35304. weight: math.unit(230, "lb"),
  35305. name: "Fuller",
  35306. image: {
  35307. source: "./media/characters/noraly/fuller.svg",
  35308. extra: 1114/1059,
  35309. bottom: 35/1149
  35310. }
  35311. },
  35312. fullest: {
  35313. height: math.unit(5 + 2/12, "feet"),
  35314. weight: math.unit(300, "lb"),
  35315. name: "Fullest",
  35316. image: {
  35317. source: "./media/characters/noraly/fullest.svg",
  35318. extra: 1114/1059,
  35319. bottom: 35/1149
  35320. }
  35321. },
  35322. },
  35323. [
  35324. {
  35325. name: "Normal",
  35326. height: math.unit(5 + 2/12, "feet"),
  35327. default: true
  35328. },
  35329. ]
  35330. ))
  35331. characterMakers.push(() => makeCharacter(
  35332. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35333. {
  35334. front: {
  35335. height: math.unit(5 + 2/12, "feet"),
  35336. weight: math.unit(210, "lb"),
  35337. name: "Front",
  35338. image: {
  35339. source: "./media/characters/pera/front.svg",
  35340. extra: 1560/1531,
  35341. bottom: 165/1725
  35342. }
  35343. },
  35344. back: {
  35345. height: math.unit(5 + 2/12, "feet"),
  35346. weight: math.unit(210, "lb"),
  35347. name: "Back",
  35348. image: {
  35349. source: "./media/characters/pera/back.svg",
  35350. extra: 1523/1493,
  35351. bottom: 152/1675
  35352. }
  35353. },
  35354. dick: {
  35355. height: math.unit(2.4, "feet"),
  35356. name: "Dick",
  35357. image: {
  35358. source: "./media/characters/pera/dick.svg"
  35359. }
  35360. },
  35361. },
  35362. [
  35363. {
  35364. name: "Normal",
  35365. height: math.unit(5 + 2/12, "feet"),
  35366. default: true
  35367. },
  35368. ]
  35369. ))
  35370. characterMakers.push(() => makeCharacter(
  35371. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35372. {
  35373. front: {
  35374. height: math.unit(12, "feet"),
  35375. weight: math.unit(3200, "lb"),
  35376. name: "Front",
  35377. image: {
  35378. source: "./media/characters/julian/front.svg",
  35379. extra: 2962/2701,
  35380. bottom: 184/3146
  35381. }
  35382. },
  35383. maw: {
  35384. height: math.unit(5.35, "feet"),
  35385. name: "Maw",
  35386. image: {
  35387. source: "./media/characters/julian/maw.svg"
  35388. }
  35389. },
  35390. paw: {
  35391. height: math.unit(3.07, "feet"),
  35392. name: "Paw",
  35393. image: {
  35394. source: "./media/characters/julian/paw.svg"
  35395. }
  35396. },
  35397. },
  35398. [
  35399. {
  35400. name: "Default",
  35401. height: math.unit(12, "feet"),
  35402. default: true
  35403. },
  35404. {
  35405. name: "Big",
  35406. height: math.unit(50, "feet")
  35407. },
  35408. {
  35409. name: "Really Big",
  35410. height: math.unit(1, "mile")
  35411. },
  35412. {
  35413. name: "Extremely Big",
  35414. height: math.unit(100, "miles")
  35415. },
  35416. {
  35417. name: "Planet Hugger",
  35418. height: math.unit(200, "megameters")
  35419. },
  35420. {
  35421. name: "Unreasonably Big",
  35422. height: math.unit(1e300, "meters")
  35423. },
  35424. ]
  35425. ))
  35426. characterMakers.push(() => makeCharacter(
  35427. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35428. {
  35429. solgooleo: {
  35430. height: math.unit(4, "meters"),
  35431. weight: math.unit(6000*1.5, "kg"),
  35432. volume: math.unit(6000, "liters"),
  35433. name: "Solgooleo",
  35434. image: {
  35435. source: "./media/characters/pi/solgooleo.svg",
  35436. extra: 388/331,
  35437. bottom: 29/417
  35438. }
  35439. },
  35440. },
  35441. [
  35442. {
  35443. name: "Normal",
  35444. height: math.unit(4, "meters"),
  35445. default: true
  35446. },
  35447. ]
  35448. ))
  35449. characterMakers.push(() => makeCharacter(
  35450. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35451. {
  35452. front: {
  35453. height: math.unit(8, "feet"),
  35454. weight: math.unit(4, "tons"),
  35455. name: "Front",
  35456. image: {
  35457. source: "./media/characters/shaun/front.svg",
  35458. extra: 503/495,
  35459. bottom: 20/523
  35460. }
  35461. },
  35462. back: {
  35463. height: math.unit(8, "feet"),
  35464. weight: math.unit(4, "tons"),
  35465. name: "Back",
  35466. image: {
  35467. source: "./media/characters/shaun/back.svg",
  35468. extra: 487/480,
  35469. bottom: 20/507
  35470. }
  35471. },
  35472. },
  35473. [
  35474. {
  35475. name: "Lorg",
  35476. height: math.unit(8, "feet"),
  35477. default: true
  35478. },
  35479. ]
  35480. ))
  35481. characterMakers.push(() => makeCharacter(
  35482. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35483. {
  35484. frontAnthro: {
  35485. height: math.unit(7, "feet"),
  35486. name: "Front",
  35487. image: {
  35488. source: "./media/characters/sini/front-anthro.svg",
  35489. extra: 726/678,
  35490. bottom: 35/761
  35491. },
  35492. form: "anthro",
  35493. default: true
  35494. },
  35495. backAnthro: {
  35496. height: math.unit(7, "feet"),
  35497. name: "Back",
  35498. image: {
  35499. source: "./media/characters/sini/back-anthro.svg",
  35500. extra: 743/701,
  35501. bottom: 12/755
  35502. },
  35503. form: "anthro",
  35504. },
  35505. frontAnthroNsfw: {
  35506. height: math.unit(7, "feet"),
  35507. name: "Front (NSFW)",
  35508. image: {
  35509. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35510. extra: 726/678,
  35511. bottom: 35/761
  35512. },
  35513. form: "anthro"
  35514. },
  35515. backAnthroNsfw: {
  35516. height: math.unit(7, "feet"),
  35517. name: "Back (NSFW)",
  35518. image: {
  35519. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35520. extra: 743/701,
  35521. bottom: 12/755
  35522. },
  35523. form: "anthro",
  35524. },
  35525. mawAnthro: {
  35526. height: math.unit(2.14, "feet"),
  35527. name: "Maw",
  35528. image: {
  35529. source: "./media/characters/sini/maw-anthro.svg"
  35530. },
  35531. form: "anthro"
  35532. },
  35533. dick: {
  35534. height: math.unit(1.45, "feet"),
  35535. name: "Dick",
  35536. image: {
  35537. source: "./media/characters/sini/dick-anthro.svg"
  35538. },
  35539. form: "anthro"
  35540. },
  35541. feral: {
  35542. height: math.unit(16, "feet"),
  35543. name: "Feral",
  35544. image: {
  35545. source: "./media/characters/sini/feral.svg",
  35546. extra: 814/605,
  35547. bottom: 11/825
  35548. },
  35549. form: "feral",
  35550. default: true
  35551. },
  35552. feralNsfw: {
  35553. height: math.unit(16, "feet"),
  35554. name: "Feral (NSFW)",
  35555. image: {
  35556. source: "./media/characters/sini/feral-nsfw.svg",
  35557. extra: 814/605,
  35558. bottom: 11/825
  35559. },
  35560. form: "feral"
  35561. },
  35562. mawFeral: {
  35563. height: math.unit(5.66, "feet"),
  35564. name: "Maw",
  35565. image: {
  35566. source: "./media/characters/sini/maw-feral.svg"
  35567. },
  35568. form: "feral",
  35569. },
  35570. pawFeral: {
  35571. height: math.unit(5.17, "feet"),
  35572. name: "Paw",
  35573. image: {
  35574. source: "./media/characters/sini/paw-feral.svg"
  35575. },
  35576. form: "feral",
  35577. },
  35578. rumpFeral: {
  35579. height: math.unit(13.11, "feet"),
  35580. name: "Rump",
  35581. image: {
  35582. source: "./media/characters/sini/rump-feral.svg"
  35583. },
  35584. form: "feral",
  35585. },
  35586. dickFeral: {
  35587. height: math.unit(1, "feet"),
  35588. name: "Dick",
  35589. image: {
  35590. source: "./media/characters/sini/dick-feral.svg"
  35591. },
  35592. form: "feral",
  35593. },
  35594. eyeFeral: {
  35595. height: math.unit(1.23, "feet"),
  35596. name: "Eye",
  35597. image: {
  35598. source: "./media/characters/sini/eye-feral.svg"
  35599. },
  35600. form: "feral",
  35601. },
  35602. },
  35603. [
  35604. {
  35605. name: "Normal",
  35606. height: math.unit(7, "feet"),
  35607. default: true,
  35608. form: "anthro"
  35609. },
  35610. {
  35611. name: "Normal",
  35612. height: math.unit(16, "feet"),
  35613. default: true,
  35614. form: "feral"
  35615. },
  35616. ],
  35617. {
  35618. "anthro": {
  35619. name: "Anthro",
  35620. default: true
  35621. },
  35622. "feral": {
  35623. name: "Feral",
  35624. }
  35625. }
  35626. ))
  35627. characterMakers.push(() => makeCharacter(
  35628. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35629. {
  35630. side: {
  35631. height: math.unit(47.2, "meters"),
  35632. weight: math.unit(10000, "tons"),
  35633. name: "Side",
  35634. image: {
  35635. source: "./media/characters/raylldo/side.svg",
  35636. extra: 2363/642,
  35637. bottom: 221/2584
  35638. }
  35639. },
  35640. top: {
  35641. height: math.unit(240, "meters"),
  35642. weight: math.unit(10000, "tons"),
  35643. name: "Top",
  35644. image: {
  35645. source: "./media/characters/raylldo/top.svg"
  35646. }
  35647. },
  35648. bottom: {
  35649. height: math.unit(240, "meters"),
  35650. weight: math.unit(10000, "tons"),
  35651. name: "Bottom",
  35652. image: {
  35653. source: "./media/characters/raylldo/bottom.svg"
  35654. }
  35655. },
  35656. head: {
  35657. height: math.unit(38.6, "meters"),
  35658. name: "Head",
  35659. image: {
  35660. source: "./media/characters/raylldo/head.svg",
  35661. extra: 1335/1112,
  35662. bottom: 0/1335
  35663. }
  35664. },
  35665. maw: {
  35666. height: math.unit(16.37, "meters"),
  35667. name: "Maw",
  35668. image: {
  35669. source: "./media/characters/raylldo/maw.svg",
  35670. extra: 883/660,
  35671. bottom: 0/883
  35672. },
  35673. extraAttributes: {
  35674. preyCapacity: {
  35675. name: "Capacity",
  35676. power: 3,
  35677. type: "volume",
  35678. base: math.unit(1000, "people")
  35679. },
  35680. tongueSize: {
  35681. name: "Tongue Size",
  35682. power: 2,
  35683. type: "area",
  35684. base: math.unit(21, "m^2")
  35685. }
  35686. }
  35687. },
  35688. forepaw: {
  35689. height: math.unit(18, "meters"),
  35690. name: "Forepaw",
  35691. image: {
  35692. source: "./media/characters/raylldo/forepaw.svg"
  35693. }
  35694. },
  35695. hindpaw: {
  35696. height: math.unit(23, "meters"),
  35697. name: "Hindpaw",
  35698. image: {
  35699. source: "./media/characters/raylldo/hindpaw.svg"
  35700. }
  35701. },
  35702. genitals: {
  35703. height: math.unit(42, "meters"),
  35704. name: "Genitals",
  35705. image: {
  35706. source: "./media/characters/raylldo/genitals.svg"
  35707. }
  35708. },
  35709. },
  35710. [
  35711. {
  35712. name: "Normal",
  35713. height: math.unit(47.2, "meters"),
  35714. default: true
  35715. },
  35716. ]
  35717. ))
  35718. characterMakers.push(() => makeCharacter(
  35719. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35720. {
  35721. anthroFront: {
  35722. height: math.unit(9, "feet"),
  35723. weight: math.unit(600, "lb"),
  35724. name: "Anthro (Front)",
  35725. image: {
  35726. source: "./media/characters/glint/anthro-front.svg",
  35727. extra: 1097/1018,
  35728. bottom: 28/1125
  35729. }
  35730. },
  35731. anthroBack: {
  35732. height: math.unit(9, "feet"),
  35733. weight: math.unit(600, "lb"),
  35734. name: "Anthro (Back)",
  35735. image: {
  35736. source: "./media/characters/glint/anthro-back.svg",
  35737. extra: 1154/997,
  35738. bottom: 36/1190
  35739. }
  35740. },
  35741. feral: {
  35742. height: math.unit(11, "feet"),
  35743. weight: math.unit(50000, "lb"),
  35744. name: "Feral",
  35745. image: {
  35746. source: "./media/characters/glint/feral.svg",
  35747. extra: 3035/1585,
  35748. bottom: 1169/4204
  35749. }
  35750. },
  35751. dickAnthro: {
  35752. height: math.unit(0.7, "meters"),
  35753. name: "Dick (Anthro)",
  35754. image: {
  35755. source: "./media/characters/glint/dick-anthro.svg"
  35756. }
  35757. },
  35758. dickFeral: {
  35759. height: math.unit(2.65, "meters"),
  35760. name: "Dick (Feral)",
  35761. image: {
  35762. source: "./media/characters/glint/dick-feral.svg"
  35763. }
  35764. },
  35765. slitHidden: {
  35766. height: math.unit(5.85, "meters"),
  35767. name: "Slit (Hidden)",
  35768. image: {
  35769. source: "./media/characters/glint/slit-hidden.svg"
  35770. }
  35771. },
  35772. slitErect: {
  35773. height: math.unit(5.85, "meters"),
  35774. name: "Slit (Erect)",
  35775. image: {
  35776. source: "./media/characters/glint/slit-erect.svg"
  35777. }
  35778. },
  35779. mawAnthro: {
  35780. height: math.unit(0.63, "meters"),
  35781. name: "Maw (Anthro)",
  35782. image: {
  35783. source: "./media/characters/glint/maw.svg"
  35784. }
  35785. },
  35786. mawFeral: {
  35787. height: math.unit(2.89, "meters"),
  35788. name: "Maw (Feral)",
  35789. image: {
  35790. source: "./media/characters/glint/maw.svg"
  35791. }
  35792. },
  35793. },
  35794. [
  35795. {
  35796. name: "Normal",
  35797. height: math.unit(9, "feet"),
  35798. default: true
  35799. },
  35800. ]
  35801. ))
  35802. characterMakers.push(() => makeCharacter(
  35803. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35804. {
  35805. side: {
  35806. height: math.unit(15, "feet"),
  35807. weight: math.unit(5000, "kg"),
  35808. name: "Side",
  35809. image: {
  35810. source: "./media/characters/kairne/side.svg",
  35811. extra: 979/811,
  35812. bottom: 13/992
  35813. }
  35814. },
  35815. front: {
  35816. height: math.unit(15, "feet"),
  35817. weight: math.unit(5000, "kg"),
  35818. name: "Front",
  35819. image: {
  35820. source: "./media/characters/kairne/front.svg",
  35821. extra: 908/814,
  35822. bottom: 26/934
  35823. }
  35824. },
  35825. sideNsfw: {
  35826. height: math.unit(15, "feet"),
  35827. weight: math.unit(5000, "kg"),
  35828. name: "Side (NSFW)",
  35829. image: {
  35830. source: "./media/characters/kairne/side-nsfw.svg",
  35831. extra: 979/811,
  35832. bottom: 13/992
  35833. }
  35834. },
  35835. frontNsfw: {
  35836. height: math.unit(15, "feet"),
  35837. weight: math.unit(5000, "kg"),
  35838. name: "Front (NSFW)",
  35839. image: {
  35840. source: "./media/characters/kairne/front-nsfw.svg",
  35841. extra: 908/814,
  35842. bottom: 26/934
  35843. }
  35844. },
  35845. dickCaged: {
  35846. height: math.unit(0.65, "meters"),
  35847. name: "Dick-caged",
  35848. image: {
  35849. source: "./media/characters/kairne/dick-caged.svg"
  35850. }
  35851. },
  35852. dick: {
  35853. height: math.unit(0.79, "meters"),
  35854. name: "Dick",
  35855. image: {
  35856. source: "./media/characters/kairne/dick.svg"
  35857. }
  35858. },
  35859. genitals: {
  35860. height: math.unit(1.29, "meters"),
  35861. name: "Genitals",
  35862. image: {
  35863. source: "./media/characters/kairne/genitals.svg"
  35864. }
  35865. },
  35866. maw: {
  35867. height: math.unit(1.73, "meters"),
  35868. name: "Maw",
  35869. image: {
  35870. source: "./media/characters/kairne/maw.svg"
  35871. }
  35872. },
  35873. },
  35874. [
  35875. {
  35876. name: "Normal",
  35877. height: math.unit(15, "feet"),
  35878. default: true
  35879. },
  35880. ]
  35881. ))
  35882. characterMakers.push(() => makeCharacter(
  35883. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35884. {
  35885. front: {
  35886. height: math.unit(5 + 8/12, "feet"),
  35887. weight: math.unit(139, "lb"),
  35888. name: "Front",
  35889. image: {
  35890. source: "./media/characters/biscuit-jackal/front.svg",
  35891. extra: 2106/1961,
  35892. bottom: 58/2164
  35893. }
  35894. },
  35895. back: {
  35896. height: math.unit(5 + 8/12, "feet"),
  35897. weight: math.unit(139, "lb"),
  35898. name: "Back",
  35899. image: {
  35900. source: "./media/characters/biscuit-jackal/back.svg",
  35901. extra: 2132/1976,
  35902. bottom: 57/2189
  35903. }
  35904. },
  35905. werejackal: {
  35906. height: math.unit(6 + 3/12, "feet"),
  35907. weight: math.unit(188, "lb"),
  35908. name: "Werejackal",
  35909. image: {
  35910. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35911. extra: 2373/2178,
  35912. bottom: 53/2426
  35913. }
  35914. },
  35915. },
  35916. [
  35917. {
  35918. name: "Normal",
  35919. height: math.unit(5 + 8/12, "feet"),
  35920. default: true
  35921. },
  35922. ]
  35923. ))
  35924. characterMakers.push(() => makeCharacter(
  35925. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35926. {
  35927. front: {
  35928. height: math.unit(140, "cm"),
  35929. weight: math.unit(45, "kg"),
  35930. name: "Front",
  35931. image: {
  35932. source: "./media/characters/tayra-white/front.svg",
  35933. extra: 2229/2192,
  35934. bottom: 75/2304
  35935. }
  35936. },
  35937. },
  35938. [
  35939. {
  35940. name: "Normal",
  35941. height: math.unit(140, "cm"),
  35942. default: true
  35943. },
  35944. ]
  35945. ))
  35946. characterMakers.push(() => makeCharacter(
  35947. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35948. {
  35949. front: {
  35950. height: math.unit(4 + 5/12, "feet"),
  35951. name: "Front",
  35952. image: {
  35953. source: "./media/characters/scoop/front.svg",
  35954. extra: 1257/1136,
  35955. bottom: 69/1326
  35956. }
  35957. },
  35958. back: {
  35959. height: math.unit(4 + 5/12, "feet"),
  35960. name: "Back",
  35961. image: {
  35962. source: "./media/characters/scoop/back.svg",
  35963. extra: 1321/1152,
  35964. bottom: 32/1353
  35965. }
  35966. },
  35967. maw: {
  35968. height: math.unit(0.68, "feet"),
  35969. name: "Maw",
  35970. image: {
  35971. source: "./media/characters/scoop/maw.svg"
  35972. }
  35973. },
  35974. },
  35975. [
  35976. {
  35977. name: "Really Small",
  35978. height: math.unit(1, "mm")
  35979. },
  35980. {
  35981. name: "Micro",
  35982. height: math.unit(1, "inch")
  35983. },
  35984. {
  35985. name: "Normal",
  35986. height: math.unit(4 + 5/12, "feet"),
  35987. default: true
  35988. },
  35989. {
  35990. name: "Macro",
  35991. height: math.unit(200, "feet")
  35992. },
  35993. {
  35994. name: "Megamacro",
  35995. height: math.unit(3240, "feet")
  35996. },
  35997. {
  35998. name: "Teramacro",
  35999. height: math.unit(2500, "miles")
  36000. },
  36001. ]
  36002. ))
  36003. characterMakers.push(() => makeCharacter(
  36004. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36005. {
  36006. front: {
  36007. height: math.unit(15 + 7/12, "feet"),
  36008. weight: math.unit(1150, "tons"),
  36009. name: "Front",
  36010. image: {
  36011. source: "./media/characters/saphinara/front.svg",
  36012. extra: 1837/1643,
  36013. bottom: 84/1921
  36014. },
  36015. form: "normal",
  36016. default: true
  36017. },
  36018. side: {
  36019. height: math.unit(15 + 7/12, "feet"),
  36020. weight: math.unit(1150, "tons"),
  36021. name: "Side",
  36022. image: {
  36023. source: "./media/characters/saphinara/side.svg",
  36024. extra: 605/547,
  36025. bottom: 6/611
  36026. },
  36027. form: "normal"
  36028. },
  36029. back: {
  36030. height: math.unit(15 + 7/12, "feet"),
  36031. weight: math.unit(1150, "tons"),
  36032. name: "Back",
  36033. image: {
  36034. source: "./media/characters/saphinara/back.svg",
  36035. extra: 591/531,
  36036. bottom: 13/604
  36037. },
  36038. form: "normal"
  36039. },
  36040. frontTail: {
  36041. height: math.unit(15 + 7/12, "feet"),
  36042. weight: math.unit(1150, "tons"),
  36043. name: "Front (Full Tail)",
  36044. image: {
  36045. source: "./media/characters/saphinara/front-tail.svg",
  36046. extra: 2256/1630,
  36047. bottom: 261/2517
  36048. },
  36049. form: "normal"
  36050. },
  36051. insides: {
  36052. height: math.unit(11.92, "feet"),
  36053. name: "Insides",
  36054. image: {
  36055. source: "./media/characters/saphinara/insides.svg"
  36056. },
  36057. form: "normal"
  36058. },
  36059. head: {
  36060. height: math.unit(4.17, "feet"),
  36061. name: "Head",
  36062. image: {
  36063. source: "./media/characters/saphinara/head.svg"
  36064. },
  36065. form: "normal"
  36066. },
  36067. tongue: {
  36068. height: math.unit(4.60, "feet"),
  36069. name: "Tongue",
  36070. image: {
  36071. source: "./media/characters/saphinara/tongue.svg"
  36072. },
  36073. form: "normal"
  36074. },
  36075. headEnraged: {
  36076. height: math.unit(5.55, "feet"),
  36077. name: "Head (Enraged)",
  36078. image: {
  36079. source: "./media/characters/saphinara/head-enraged.svg"
  36080. },
  36081. form: "normal"
  36082. },
  36083. wings: {
  36084. height: math.unit(11.95, "feet"),
  36085. name: "Wings",
  36086. image: {
  36087. source: "./media/characters/saphinara/wings.svg"
  36088. },
  36089. form: "normal"
  36090. },
  36091. feathers: {
  36092. height: math.unit(8.92, "feet"),
  36093. name: "Feathers",
  36094. image: {
  36095. source: "./media/characters/saphinara/feathers.svg"
  36096. },
  36097. form: "normal"
  36098. },
  36099. shackles: {
  36100. height: math.unit(2, "feet"),
  36101. name: "Shackles",
  36102. image: {
  36103. source: "./media/characters/saphinara/shackles.svg"
  36104. },
  36105. form: "normal"
  36106. },
  36107. eyes: {
  36108. height: math.unit(1.331, "feet"),
  36109. name: "Eyes",
  36110. image: {
  36111. source: "./media/characters/saphinara/eyes.svg"
  36112. },
  36113. form: "normal"
  36114. },
  36115. eyesEnraged: {
  36116. height: math.unit(1.331, "feet"),
  36117. name: "Eyes (Enraged)",
  36118. image: {
  36119. source: "./media/characters/saphinara/eyes-enraged.svg"
  36120. },
  36121. form: "normal"
  36122. },
  36123. trueFormSide: {
  36124. height: math.unit(200, "feet"),
  36125. weight: math.unit(1e7, "tons"),
  36126. name: "Side",
  36127. image: {
  36128. source: "./media/characters/saphinara/true-form-side.svg",
  36129. extra: 1399/770,
  36130. bottom: 97/1496
  36131. },
  36132. form: "true-form",
  36133. default: true
  36134. },
  36135. trueFormMaw: {
  36136. height: math.unit(71.5, "feet"),
  36137. name: "Maw",
  36138. image: {
  36139. source: "./media/characters/saphinara/true-form-maw.svg",
  36140. extra: 2302/1453,
  36141. bottom: 0/2302
  36142. },
  36143. form: "true-form"
  36144. },
  36145. meowberusSide: {
  36146. height: math.unit(75, "feet"),
  36147. weight: math.unit(180000, "kg"),
  36148. preyCapacity: math.unit(50000, "people"),
  36149. name: "Side",
  36150. image: {
  36151. source: "./media/characters/saphinara/meowberus-side.svg",
  36152. extra: 1400/711,
  36153. bottom: 126/1526
  36154. },
  36155. form: "meowberus",
  36156. extraAttributes: {
  36157. "pawArea": {
  36158. name: "Paw Size",
  36159. power: 2,
  36160. type: "area",
  36161. base: math.unit(35, "m^2")
  36162. }
  36163. }
  36164. },
  36165. },
  36166. [
  36167. {
  36168. name: "Normal",
  36169. height: math.unit(15 + 7/12, "feet"),
  36170. default: true,
  36171. form: "normal"
  36172. },
  36173. {
  36174. name: "Angry",
  36175. height: math.unit(30 + 6/12, "feet"),
  36176. form: "normal"
  36177. },
  36178. {
  36179. name: "Enraged",
  36180. height: math.unit(102 + 1/12, "feet"),
  36181. form: "normal"
  36182. },
  36183. {
  36184. name: "True",
  36185. height: math.unit(200, "feet"),
  36186. default: true,
  36187. form: "true-form"
  36188. },
  36189. {
  36190. name: "Normal",
  36191. height: math.unit(75, "feet"),
  36192. default: true,
  36193. form: "meowberus"
  36194. },
  36195. ],
  36196. {
  36197. "normal": {
  36198. name: "Normal",
  36199. default: true
  36200. },
  36201. "true-form": {
  36202. name: "True Form"
  36203. },
  36204. "meowberus": {
  36205. name: "Meowberus",
  36206. },
  36207. }
  36208. ))
  36209. characterMakers.push(() => makeCharacter(
  36210. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36211. {
  36212. front: {
  36213. height: math.unit(6 + 8/12, "feet"),
  36214. weight: math.unit(300, "lb"),
  36215. name: "Front",
  36216. image: {
  36217. source: "./media/characters/jrain/front.svg",
  36218. extra: 3039/2865,
  36219. bottom: 399/3438
  36220. }
  36221. },
  36222. back: {
  36223. height: math.unit(6 + 8/12, "feet"),
  36224. weight: math.unit(300, "lb"),
  36225. name: "Back",
  36226. image: {
  36227. source: "./media/characters/jrain/back.svg",
  36228. extra: 3089/2938,
  36229. bottom: 172/3261
  36230. }
  36231. },
  36232. head: {
  36233. height: math.unit(2.14, "feet"),
  36234. name: "Head",
  36235. image: {
  36236. source: "./media/characters/jrain/head.svg"
  36237. }
  36238. },
  36239. maw: {
  36240. height: math.unit(1.77, "feet"),
  36241. name: "Maw",
  36242. image: {
  36243. source: "./media/characters/jrain/maw.svg"
  36244. }
  36245. },
  36246. leftHand: {
  36247. height: math.unit(1.1, "feet"),
  36248. name: "Left Hand",
  36249. image: {
  36250. source: "./media/characters/jrain/left-hand.svg"
  36251. }
  36252. },
  36253. rightHand: {
  36254. height: math.unit(1.1, "feet"),
  36255. name: "Right Hand",
  36256. image: {
  36257. source: "./media/characters/jrain/right-hand.svg"
  36258. }
  36259. },
  36260. eye: {
  36261. height: math.unit(0.35, "feet"),
  36262. name: "Eye",
  36263. image: {
  36264. source: "./media/characters/jrain/eye.svg"
  36265. }
  36266. },
  36267. },
  36268. [
  36269. {
  36270. name: "Normal",
  36271. height: math.unit(6 + 8/12, "feet"),
  36272. default: true
  36273. },
  36274. {
  36275. name: "Casually Large",
  36276. height: math.unit(25, "feet")
  36277. },
  36278. {
  36279. name: "Giant",
  36280. height: math.unit(100, "feet")
  36281. },
  36282. {
  36283. name: "Kaiju",
  36284. height: math.unit(300, "feet")
  36285. },
  36286. ]
  36287. ))
  36288. characterMakers.push(() => makeCharacter(
  36289. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36290. {
  36291. dragon: {
  36292. height: math.unit(5, "meters"),
  36293. name: "Dragon",
  36294. image: {
  36295. source: "./media/characters/sabrina/dragon.svg",
  36296. extra: 3670 / 2365,
  36297. bottom: 333 / 4003
  36298. }
  36299. },
  36300. gryphon: {
  36301. height: math.unit(3, "meters"),
  36302. name: "Gryphon",
  36303. image: {
  36304. source: "./media/characters/sabrina/gryphon.svg",
  36305. extra: 1576 / 945,
  36306. bottom: 71 / 1647
  36307. }
  36308. },
  36309. snake: {
  36310. height: math.unit(12, "meters"),
  36311. name: "Snake",
  36312. image: {
  36313. source: "./media/characters/sabrina/snake.svg",
  36314. extra: 1758 / 1320,
  36315. bottom: 186 / 1944
  36316. }
  36317. },
  36318. collar: {
  36319. height: math.unit(1.86, "meters"),
  36320. name: "Collar",
  36321. image: {
  36322. source: "./media/characters/sabrina/collar.svg"
  36323. }
  36324. },
  36325. eye: {
  36326. height: math.unit(0.53, "meters"),
  36327. name: "Eye",
  36328. image: {
  36329. source: "./media/characters/sabrina/eye.svg"
  36330. }
  36331. },
  36332. foot: {
  36333. height: math.unit(1.86, "meters"),
  36334. name: "Foot",
  36335. image: {
  36336. source: "./media/characters/sabrina/foot.svg"
  36337. }
  36338. },
  36339. hand: {
  36340. height: math.unit(1.32, "meters"),
  36341. name: "Hand",
  36342. image: {
  36343. source: "./media/characters/sabrina/hand.svg"
  36344. }
  36345. },
  36346. head: {
  36347. height: math.unit(2.44, "meters"),
  36348. name: "Head",
  36349. image: {
  36350. source: "./media/characters/sabrina/head.svg"
  36351. }
  36352. },
  36353. headAngry: {
  36354. height: math.unit(2.44, "meters"),
  36355. name: "Head (Angry))",
  36356. image: {
  36357. source: "./media/characters/sabrina/head-angry.svg"
  36358. }
  36359. },
  36360. maw: {
  36361. height: math.unit(1.65, "meters"),
  36362. name: "Maw",
  36363. image: {
  36364. source: "./media/characters/sabrina/maw.svg"
  36365. }
  36366. },
  36367. spikes: {
  36368. height: math.unit(1.69, "meters"),
  36369. name: "Spikes",
  36370. image: {
  36371. source: "./media/characters/sabrina/spikes.svg"
  36372. }
  36373. },
  36374. stomach: {
  36375. height: math.unit(1.15, "meters"),
  36376. name: "Stomach",
  36377. image: {
  36378. source: "./media/characters/sabrina/stomach.svg"
  36379. }
  36380. },
  36381. tongue: {
  36382. height: math.unit(1.27, "meters"),
  36383. name: "Tongue",
  36384. image: {
  36385. source: "./media/characters/sabrina/tongue.svg"
  36386. }
  36387. },
  36388. wingDorsal: {
  36389. height: math.unit(4.85, "meters"),
  36390. name: "Wing (Dorsal)",
  36391. image: {
  36392. source: "./media/characters/sabrina/wing-dorsal.svg"
  36393. }
  36394. },
  36395. wingVentral: {
  36396. height: math.unit(4.85, "meters"),
  36397. name: "Wing (Ventral)",
  36398. image: {
  36399. source: "./media/characters/sabrina/wing-ventral.svg"
  36400. }
  36401. },
  36402. },
  36403. [
  36404. {
  36405. name: "Normal",
  36406. height: math.unit(5, "meters"),
  36407. default: true
  36408. },
  36409. ]
  36410. ))
  36411. characterMakers.push(() => makeCharacter(
  36412. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36413. {
  36414. frontMaid: {
  36415. height: math.unit(5 + 5/12, "feet"),
  36416. weight: math.unit(130, "lb"),
  36417. name: "Front (Maid)",
  36418. image: {
  36419. source: "./media/characters/midnight-tales/front-maid.svg",
  36420. extra: 489/454,
  36421. bottom: 61/550
  36422. }
  36423. },
  36424. frontFormal: {
  36425. height: math.unit(5 + 5/12, "feet"),
  36426. weight: math.unit(130, "lb"),
  36427. name: "Front (Formal)",
  36428. image: {
  36429. source: "./media/characters/midnight-tales/front-formal.svg",
  36430. extra: 489/454,
  36431. bottom: 61/550
  36432. }
  36433. },
  36434. back: {
  36435. height: math.unit(5 + 5/12, "feet"),
  36436. weight: math.unit(130, "lb"),
  36437. name: "Back",
  36438. image: {
  36439. source: "./media/characters/midnight-tales/back.svg",
  36440. extra: 498/456,
  36441. bottom: 33/531
  36442. }
  36443. },
  36444. frontBeast: {
  36445. height: math.unit(40, "feet"),
  36446. weight: math.unit(64000, "lb"),
  36447. name: "Front (Beast)",
  36448. image: {
  36449. source: "./media/characters/midnight-tales/front-beast.svg",
  36450. extra: 927/860,
  36451. bottom: 53/980
  36452. }
  36453. },
  36454. backBeast: {
  36455. height: math.unit(40, "feet"),
  36456. weight: math.unit(64000, "lb"),
  36457. name: "Back (Beast)",
  36458. image: {
  36459. source: "./media/characters/midnight-tales/back-beast.svg",
  36460. extra: 929/855,
  36461. bottom: 16/945
  36462. }
  36463. },
  36464. footBeast: {
  36465. height: math.unit(6.7, "feet"),
  36466. name: "Foot (Beast)",
  36467. image: {
  36468. source: "./media/characters/midnight-tales/foot-beast.svg"
  36469. }
  36470. },
  36471. headBeast: {
  36472. height: math.unit(8, "feet"),
  36473. name: "Head (Beast)",
  36474. image: {
  36475. source: "./media/characters/midnight-tales/head-beast.svg"
  36476. }
  36477. },
  36478. },
  36479. [
  36480. {
  36481. name: "Normal",
  36482. height: math.unit(5 + 5 / 12, "feet"),
  36483. default: true
  36484. },
  36485. {
  36486. name: "Macro",
  36487. height: math.unit(25, "feet")
  36488. },
  36489. ]
  36490. ))
  36491. characterMakers.push(() => makeCharacter(
  36492. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36493. {
  36494. front: {
  36495. height: math.unit(5 + 10/12, "feet"),
  36496. name: "Front",
  36497. image: {
  36498. source: "./media/characters/argon/front.svg",
  36499. extra: 2009/1935,
  36500. bottom: 118/2127
  36501. }
  36502. },
  36503. back: {
  36504. height: math.unit(5 + 10/12, "feet"),
  36505. name: "Back",
  36506. image: {
  36507. source: "./media/characters/argon/back.svg",
  36508. extra: 2047/1992,
  36509. bottom: 20/2067
  36510. }
  36511. },
  36512. frontDressed: {
  36513. height: math.unit(5 + 10/12, "feet"),
  36514. name: "Front (Dressed)",
  36515. image: {
  36516. source: "./media/characters/argon/front-dressed.svg",
  36517. extra: 2009/1935,
  36518. bottom: 118/2127
  36519. }
  36520. },
  36521. },
  36522. [
  36523. {
  36524. name: "Normal",
  36525. height: math.unit(5 + 10/12, "feet"),
  36526. default: true
  36527. },
  36528. ]
  36529. ))
  36530. characterMakers.push(() => makeCharacter(
  36531. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36532. {
  36533. front: {
  36534. height: math.unit(8 + 6/12, "feet"),
  36535. weight: math.unit(1150, "lb"),
  36536. name: "Front",
  36537. image: {
  36538. source: "./media/characters/kichi/front.svg",
  36539. extra: 1267/1164,
  36540. bottom: 61/1328
  36541. }
  36542. },
  36543. back: {
  36544. height: math.unit(8 + 6/12, "feet"),
  36545. weight: math.unit(1150, "lb"),
  36546. name: "Back",
  36547. image: {
  36548. source: "./media/characters/kichi/back.svg",
  36549. extra: 1273/1166,
  36550. bottom: 33/1306
  36551. }
  36552. },
  36553. },
  36554. [
  36555. {
  36556. name: "Normal",
  36557. height: math.unit(8 + 6/12, "feet"),
  36558. default: true
  36559. },
  36560. ]
  36561. ))
  36562. characterMakers.push(() => makeCharacter(
  36563. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36564. {
  36565. front: {
  36566. height: math.unit(6, "feet"),
  36567. weight: math.unit(210, "lb"),
  36568. name: "Front",
  36569. image: {
  36570. source: "./media/characters/manetel-greyscale/front.svg",
  36571. extra: 350/312,
  36572. bottom: 8/358
  36573. }
  36574. },
  36575. },
  36576. [
  36577. {
  36578. name: "Micro",
  36579. height: math.unit(2, "inches")
  36580. },
  36581. {
  36582. name: "Normal",
  36583. height: math.unit(6, "feet"),
  36584. default: true
  36585. },
  36586. {
  36587. name: "Minimacro",
  36588. height: math.unit(17, "feet")
  36589. },
  36590. {
  36591. name: "Macro",
  36592. height: math.unit(117, "feet")
  36593. },
  36594. ]
  36595. ))
  36596. characterMakers.push(() => makeCharacter(
  36597. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36598. {
  36599. side: {
  36600. height: math.unit(5 + 1/12, "feet"),
  36601. weight: math.unit(418, "lb"),
  36602. name: "Side",
  36603. image: {
  36604. source: "./media/characters/softpurr/side.svg",
  36605. extra: 1993/1945,
  36606. bottom: 134/2127
  36607. }
  36608. },
  36609. front: {
  36610. height: math.unit(5 + 1/12, "feet"),
  36611. weight: math.unit(418, "lb"),
  36612. name: "Front",
  36613. image: {
  36614. source: "./media/characters/softpurr/front.svg",
  36615. extra: 1950/1856,
  36616. bottom: 174/2124
  36617. }
  36618. },
  36619. paw: {
  36620. height: math.unit(1, "feet"),
  36621. name: "Paw",
  36622. image: {
  36623. source: "./media/characters/softpurr/paw.svg"
  36624. }
  36625. },
  36626. },
  36627. [
  36628. {
  36629. name: "Normal",
  36630. height: math.unit(5 + 1/12, "feet"),
  36631. default: true
  36632. },
  36633. ]
  36634. ))
  36635. characterMakers.push(() => makeCharacter(
  36636. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36637. {
  36638. front: {
  36639. height: math.unit(260, "meters"),
  36640. name: "Front",
  36641. image: {
  36642. source: "./media/characters/anahita/front.svg",
  36643. extra: 665/635,
  36644. bottom: 89/754
  36645. }
  36646. },
  36647. },
  36648. [
  36649. {
  36650. name: "Macro",
  36651. height: math.unit(260, "meters"),
  36652. default: true
  36653. },
  36654. ]
  36655. ))
  36656. characterMakers.push(() => makeCharacter(
  36657. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36658. {
  36659. front: {
  36660. height: math.unit(4 + 10/12, "feet"),
  36661. weight: math.unit(160, "lb"),
  36662. name: "Front",
  36663. image: {
  36664. source: "./media/characters/chip-mouse/front.svg",
  36665. extra: 3528/3408,
  36666. bottom: 0/3528
  36667. }
  36668. },
  36669. frontNsfw: {
  36670. height: math.unit(4 + 10/12, "feet"),
  36671. weight: math.unit(160, "lb"),
  36672. name: "Front (NSFW)",
  36673. image: {
  36674. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36675. extra: 3528/3408,
  36676. bottom: 0/3528
  36677. }
  36678. },
  36679. },
  36680. [
  36681. {
  36682. name: "Normal",
  36683. height: math.unit(4 + 10/12, "feet"),
  36684. default: true
  36685. },
  36686. ]
  36687. ))
  36688. characterMakers.push(() => makeCharacter(
  36689. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36690. {
  36691. side: {
  36692. height: math.unit(10, "feet"),
  36693. weight: math.unit(14000, "lb"),
  36694. name: "Side",
  36695. image: {
  36696. source: "./media/characters/kremm/side.svg",
  36697. extra: 1390/1053,
  36698. bottom: 90/1480
  36699. }
  36700. },
  36701. gut: {
  36702. height: math.unit(5.8, "feet"),
  36703. name: "Gut",
  36704. image: {
  36705. source: "./media/characters/kremm/gut.svg"
  36706. }
  36707. },
  36708. ass: {
  36709. height: math.unit(6.1, "feet"),
  36710. name: "Ass",
  36711. image: {
  36712. source: "./media/characters/kremm/ass.svg"
  36713. }
  36714. },
  36715. jaws: {
  36716. height: math.unit(2.2, "feet"),
  36717. name: "Jaws",
  36718. image: {
  36719. source: "./media/characters/kremm/jaws.svg"
  36720. }
  36721. },
  36722. dick: {
  36723. height: math.unit(4.26, "feet"),
  36724. name: "Dick",
  36725. image: {
  36726. source: "./media/characters/kremm/dick.svg"
  36727. }
  36728. },
  36729. },
  36730. [
  36731. {
  36732. name: "Normal",
  36733. height: math.unit(10, "feet"),
  36734. default: true
  36735. },
  36736. ]
  36737. ))
  36738. characterMakers.push(() => makeCharacter(
  36739. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36740. {
  36741. front: {
  36742. height: math.unit(30, "stories"),
  36743. name: "Front",
  36744. image: {
  36745. source: "./media/characters/kai/front.svg",
  36746. extra: 1892/1718,
  36747. bottom: 162/2054
  36748. }
  36749. },
  36750. },
  36751. [
  36752. {
  36753. name: "Macro",
  36754. height: math.unit(30, "stories"),
  36755. default: true
  36756. },
  36757. ]
  36758. ))
  36759. characterMakers.push(() => makeCharacter(
  36760. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36761. {
  36762. front: {
  36763. height: math.unit(6 + 4/12, "feet"),
  36764. weight: math.unit(145, "lb"),
  36765. name: "Front",
  36766. image: {
  36767. source: "./media/characters/sykes/front.svg",
  36768. extra: 1321 / 1187,
  36769. bottom: 66 / 1387
  36770. }
  36771. },
  36772. back: {
  36773. height: math.unit(6 + 4/12, "feet"),
  36774. weight: math.unit(145, "lb"),
  36775. name: "Back",
  36776. image: {
  36777. source: "./media/characters/sykes/back.svg",
  36778. extra: 1326/1181,
  36779. bottom: 31/1357
  36780. }
  36781. },
  36782. traditionalOutfit: {
  36783. height: math.unit(6 + 4/12, "feet"),
  36784. weight: math.unit(145, "lb"),
  36785. name: "Traditional Outfit",
  36786. image: {
  36787. source: "./media/characters/sykes/traditional-outfit.svg",
  36788. extra: 1321 / 1187,
  36789. bottom: 66 / 1387
  36790. }
  36791. },
  36792. adventureOutfit: {
  36793. height: math.unit(6 + 4/12, "feet"),
  36794. weight: math.unit(145, "lb"),
  36795. name: "Adventure Outfit",
  36796. image: {
  36797. source: "./media/characters/sykes/adventure-outfit.svg",
  36798. extra: 1321 / 1187,
  36799. bottom: 66 / 1387
  36800. }
  36801. },
  36802. handLeft: {
  36803. height: math.unit(0.9, "feet"),
  36804. name: "Hand (Left)",
  36805. image: {
  36806. source: "./media/characters/sykes/hand-left.svg"
  36807. }
  36808. },
  36809. handRight: {
  36810. height: math.unit(0.839, "feet"),
  36811. name: "Hand (Right)",
  36812. image: {
  36813. source: "./media/characters/sykes/hand-right.svg"
  36814. }
  36815. },
  36816. leftFoot: {
  36817. height: math.unit(1.2, "feet"),
  36818. name: "Foot (Left)",
  36819. image: {
  36820. source: "./media/characters/sykes/foot-left.svg"
  36821. }
  36822. },
  36823. rightFoot: {
  36824. height: math.unit(1.2, "feet"),
  36825. name: "Foot (Right)",
  36826. image: {
  36827. source: "./media/characters/sykes/foot-right.svg"
  36828. }
  36829. },
  36830. maw: {
  36831. height: math.unit(1.93, "feet"),
  36832. name: "Maw",
  36833. image: {
  36834. source: "./media/characters/sykes/maw.svg"
  36835. }
  36836. },
  36837. teeth: {
  36838. height: math.unit(0.51, "feet"),
  36839. name: "Teeth",
  36840. image: {
  36841. source: "./media/characters/sykes/teeth.svg"
  36842. }
  36843. },
  36844. tongue: {
  36845. height: math.unit(2.13, "feet"),
  36846. name: "Tongue",
  36847. image: {
  36848. source: "./media/characters/sykes/tongue.svg"
  36849. }
  36850. },
  36851. uvula: {
  36852. height: math.unit(0.16, "feet"),
  36853. name: "Uvula",
  36854. image: {
  36855. source: "./media/characters/sykes/uvula.svg"
  36856. }
  36857. },
  36858. collar: {
  36859. height: math.unit(0.287, "feet"),
  36860. name: "Collar",
  36861. image: {
  36862. source: "./media/characters/sykes/collar.svg"
  36863. }
  36864. },
  36865. tail: {
  36866. height: math.unit(3.8, "feet"),
  36867. name: "Tail",
  36868. image: {
  36869. source: "./media/characters/sykes/tail.svg"
  36870. }
  36871. },
  36872. },
  36873. [
  36874. {
  36875. name: "Shrunken",
  36876. height: math.unit(5, "inches")
  36877. },
  36878. {
  36879. name: "Normal",
  36880. height: math.unit(6 + 4 / 12, "feet"),
  36881. default: true
  36882. },
  36883. {
  36884. name: "Big",
  36885. height: math.unit(15, "feet")
  36886. },
  36887. ]
  36888. ))
  36889. characterMakers.push(() => makeCharacter(
  36890. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36891. {
  36892. front: {
  36893. height: math.unit(5 + 8/12, "feet"),
  36894. weight: math.unit(190, "lb"),
  36895. name: "Front",
  36896. image: {
  36897. source: "./media/characters/oven-otter/front.svg",
  36898. extra: 1809/1740,
  36899. bottom: 181/1990
  36900. }
  36901. },
  36902. back: {
  36903. height: math.unit(5 + 8/12, "feet"),
  36904. weight: math.unit(190, "lb"),
  36905. name: "Back",
  36906. image: {
  36907. source: "./media/characters/oven-otter/back.svg",
  36908. extra: 1709/1635,
  36909. bottom: 118/1827
  36910. }
  36911. },
  36912. hand: {
  36913. height: math.unit(1.07, "feet"),
  36914. name: "Hand",
  36915. image: {
  36916. source: "./media/characters/oven-otter/hand.svg"
  36917. }
  36918. },
  36919. beans: {
  36920. height: math.unit(1.74, "feet"),
  36921. name: "Beans",
  36922. image: {
  36923. source: "./media/characters/oven-otter/beans.svg"
  36924. }
  36925. },
  36926. },
  36927. [
  36928. {
  36929. name: "Micro",
  36930. height: math.unit(0.5, "inches")
  36931. },
  36932. {
  36933. name: "Normal",
  36934. height: math.unit(5 + 8/12, "feet"),
  36935. default: true
  36936. },
  36937. {
  36938. name: "Macro",
  36939. height: math.unit(250, "feet")
  36940. },
  36941. {
  36942. name: "Really High",
  36943. height: math.unit(420, "feet")
  36944. },
  36945. ]
  36946. ))
  36947. characterMakers.push(() => makeCharacter(
  36948. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36949. {
  36950. front: {
  36951. height: math.unit(5, "meters"),
  36952. weight: math.unit(292000000000000, "kg"),
  36953. name: "Front",
  36954. image: {
  36955. source: "./media/characters/devourer/front.svg",
  36956. extra: 1800/1733,
  36957. bottom: 211/2011
  36958. }
  36959. },
  36960. maw: {
  36961. height: math.unit(1.1, "meter"),
  36962. name: "Maw",
  36963. image: {
  36964. source: "./media/characters/devourer/maw.svg"
  36965. }
  36966. },
  36967. },
  36968. [
  36969. {
  36970. name: "Small",
  36971. height: math.unit(3, "meters")
  36972. },
  36973. {
  36974. name: "Large",
  36975. height: math.unit(5, "meters"),
  36976. default: true
  36977. },
  36978. ]
  36979. ))
  36980. characterMakers.push(() => makeCharacter(
  36981. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36982. {
  36983. front: {
  36984. height: math.unit(6, "feet"),
  36985. weight: math.unit(400, "lb"),
  36986. name: "Front",
  36987. image: {
  36988. source: "./media/characters/ellarby/front.svg",
  36989. extra: 1909/1763,
  36990. bottom: 80/1989
  36991. }
  36992. },
  36993. back: {
  36994. height: math.unit(6, "feet"),
  36995. weight: math.unit(400, "lb"),
  36996. name: "Back",
  36997. image: {
  36998. source: "./media/characters/ellarby/back.svg",
  36999. extra: 1914/1784,
  37000. bottom: 172/2086
  37001. }
  37002. },
  37003. },
  37004. [
  37005. {
  37006. name: "Mischief",
  37007. height: math.unit(18, "inches")
  37008. },
  37009. {
  37010. name: "Trouble",
  37011. height: math.unit(12, "feet")
  37012. },
  37013. {
  37014. name: "Havoc",
  37015. height: math.unit(200, "feet"),
  37016. default: true
  37017. },
  37018. {
  37019. name: "Pandemonium",
  37020. height: math.unit(1, "mile")
  37021. },
  37022. {
  37023. name: "Catastrophe",
  37024. height: math.unit(100, "miles")
  37025. },
  37026. ]
  37027. ))
  37028. characterMakers.push(() => makeCharacter(
  37029. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37030. {
  37031. front: {
  37032. height: math.unit(4.7, "meters"),
  37033. weight: math.unit(6500, "kg"),
  37034. name: "Front",
  37035. image: {
  37036. source: "./media/characters/vex/front.svg",
  37037. extra: 1288/1140,
  37038. bottom: 100/1388
  37039. }
  37040. },
  37041. },
  37042. [
  37043. {
  37044. name: "Normal",
  37045. height: math.unit(4.7, "meters"),
  37046. default: true
  37047. },
  37048. ]
  37049. ))
  37050. characterMakers.push(() => makeCharacter(
  37051. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37052. {
  37053. normal: {
  37054. height: math.unit(6, "feet"),
  37055. weight: math.unit(350, "lb"),
  37056. name: "Normal",
  37057. image: {
  37058. source: "./media/characters/teshy/normal.svg",
  37059. extra: 1795/1735,
  37060. bottom: 16/1811
  37061. }
  37062. },
  37063. monsterFront: {
  37064. height: math.unit(12, "feet"),
  37065. weight: math.unit(4700, "lb"),
  37066. name: "Monster (Front)",
  37067. image: {
  37068. source: "./media/characters/teshy/monster-front.svg",
  37069. extra: 2042/2034,
  37070. bottom: 128/2170
  37071. }
  37072. },
  37073. monsterSide: {
  37074. height: math.unit(12, "feet"),
  37075. weight: math.unit(4700, "lb"),
  37076. name: "Monster (Side)",
  37077. image: {
  37078. source: "./media/characters/teshy/monster-side.svg",
  37079. extra: 2067/2056,
  37080. bottom: 70/2137
  37081. }
  37082. },
  37083. monsterBack: {
  37084. height: math.unit(12, "feet"),
  37085. weight: math.unit(4700, "lb"),
  37086. name: "Monster (Back)",
  37087. image: {
  37088. source: "./media/characters/teshy/monster-back.svg",
  37089. extra: 1921/1914,
  37090. bottom: 171/2092
  37091. }
  37092. },
  37093. },
  37094. [
  37095. {
  37096. name: "Normal",
  37097. height: math.unit(6, "feet"),
  37098. default: true
  37099. },
  37100. ]
  37101. ))
  37102. characterMakers.push(() => makeCharacter(
  37103. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37104. {
  37105. front: {
  37106. height: math.unit(6, "feet"),
  37107. name: "Front",
  37108. image: {
  37109. source: "./media/characters/ramey/front.svg",
  37110. extra: 790/787,
  37111. bottom: 27/817
  37112. }
  37113. },
  37114. },
  37115. [
  37116. {
  37117. name: "Normal",
  37118. height: math.unit(6, "feet"),
  37119. default: true
  37120. },
  37121. ]
  37122. ))
  37123. characterMakers.push(() => makeCharacter(
  37124. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37125. {
  37126. front: {
  37127. height: math.unit(5 + 5/12, "feet"),
  37128. weight: math.unit(120, "lb"),
  37129. name: "Front",
  37130. image: {
  37131. source: "./media/characters/phirae/front.svg",
  37132. extra: 2491/2436,
  37133. bottom: 38/2529
  37134. }
  37135. },
  37136. },
  37137. [
  37138. {
  37139. name: "Normal",
  37140. height: math.unit(5 + 5/12, "feet"),
  37141. default: true
  37142. },
  37143. ]
  37144. ))
  37145. characterMakers.push(() => makeCharacter(
  37146. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37147. {
  37148. front: {
  37149. height: math.unit(5 + 3/12, "feet"),
  37150. name: "Front",
  37151. image: {
  37152. source: "./media/characters/stagglas/front.svg",
  37153. extra: 962/882,
  37154. bottom: 53/1015
  37155. }
  37156. },
  37157. feral: {
  37158. height: math.unit(335, "cm"),
  37159. name: "Feral",
  37160. image: {
  37161. source: "./media/characters/stagglas/feral.svg",
  37162. extra: 1732/1090,
  37163. bottom: 48/1780
  37164. }
  37165. },
  37166. },
  37167. [
  37168. {
  37169. name: "Normal",
  37170. height: math.unit(5 + 3/12, "feet"),
  37171. default: true
  37172. },
  37173. ]
  37174. ))
  37175. characterMakers.push(() => makeCharacter(
  37176. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37177. {
  37178. front: {
  37179. height: math.unit(5 + 4/12, "feet"),
  37180. weight: math.unit(145, "lb"),
  37181. name: "Front",
  37182. image: {
  37183. source: "./media/characters/starra/front.svg",
  37184. extra: 1790/1691,
  37185. bottom: 91/1881
  37186. }
  37187. },
  37188. },
  37189. [
  37190. {
  37191. name: "Normal",
  37192. height: math.unit(5 + 4/12, "feet"),
  37193. default: true
  37194. },
  37195. ]
  37196. ))
  37197. characterMakers.push(() => makeCharacter(
  37198. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37199. {
  37200. front: {
  37201. height: math.unit(3.5, "meters"),
  37202. name: "Front",
  37203. image: {
  37204. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37205. extra: 1248/972,
  37206. bottom: 38/1286
  37207. }
  37208. },
  37209. },
  37210. [
  37211. {
  37212. name: "Normal",
  37213. height: math.unit(3.5, "meters"),
  37214. default: true
  37215. },
  37216. ]
  37217. ))
  37218. characterMakers.push(() => makeCharacter(
  37219. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37220. {
  37221. side: {
  37222. height: math.unit(8 + 2/12, "feet"),
  37223. weight: math.unit(1240, "lb"),
  37224. name: "Side",
  37225. image: {
  37226. source: "./media/characters/mika-valentine/side.svg",
  37227. extra: 2670/2501,
  37228. bottom: 250/2920
  37229. }
  37230. },
  37231. },
  37232. [
  37233. {
  37234. name: "Normal",
  37235. height: math.unit(8 + 2/12, "feet"),
  37236. default: true
  37237. },
  37238. ]
  37239. ))
  37240. characterMakers.push(() => makeCharacter(
  37241. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37242. {
  37243. front: {
  37244. height: math.unit(7 + 2/12, "feet"),
  37245. name: "Front",
  37246. image: {
  37247. source: "./media/characters/xoltol/front.svg",
  37248. extra: 2212/2124,
  37249. bottom: 84/2296
  37250. }
  37251. },
  37252. side: {
  37253. height: math.unit(7 + 2/12, "feet"),
  37254. name: "Side",
  37255. image: {
  37256. source: "./media/characters/xoltol/side.svg",
  37257. extra: 2273/2197,
  37258. bottom: 26/2299
  37259. }
  37260. },
  37261. hand: {
  37262. height: math.unit(2.5, "feet"),
  37263. name: "Hand",
  37264. image: {
  37265. source: "./media/characters/xoltol/hand.svg"
  37266. }
  37267. },
  37268. },
  37269. [
  37270. {
  37271. name: "Small-ish",
  37272. height: math.unit(5 + 11/12, "feet")
  37273. },
  37274. {
  37275. name: "Normal",
  37276. height: math.unit(7 + 2/12, "feet")
  37277. },
  37278. {
  37279. name: "\"Macro\"",
  37280. height: math.unit(14 + 9/12, "feet"),
  37281. default: true
  37282. },
  37283. {
  37284. name: "Alternate Height",
  37285. height: math.unit(20, "feet")
  37286. },
  37287. {
  37288. name: "Actually Macro",
  37289. height: math.unit(100, "feet")
  37290. },
  37291. ]
  37292. ))
  37293. characterMakers.push(() => makeCharacter(
  37294. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37295. {
  37296. front: {
  37297. height: math.unit(5 + 2/12, "feet"),
  37298. weight: math.unit(75, "kg"),
  37299. name: "Front",
  37300. image: {
  37301. source: "./media/characters/kotetsu-redwood/front.svg",
  37302. extra: 1053/942,
  37303. bottom: 60/1113
  37304. }
  37305. },
  37306. },
  37307. [
  37308. {
  37309. name: "Normal",
  37310. height: math.unit(5 + 2/12, "feet"),
  37311. default: true
  37312. },
  37313. ]
  37314. ))
  37315. characterMakers.push(() => makeCharacter(
  37316. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37317. {
  37318. front: {
  37319. height: math.unit(2.4, "meters"),
  37320. weight: math.unit(125, "kg"),
  37321. name: "Front",
  37322. image: {
  37323. source: "./media/characters/lilith/front.svg",
  37324. extra: 1590/1513,
  37325. bottom: 203/1793
  37326. }
  37327. },
  37328. },
  37329. [
  37330. {
  37331. name: "Humanoid",
  37332. height: math.unit(2.4, "meters")
  37333. },
  37334. {
  37335. name: "Normal",
  37336. height: math.unit(6, "meters"),
  37337. default: true
  37338. },
  37339. {
  37340. name: "Largest",
  37341. height: math.unit(55, "meters")
  37342. },
  37343. ]
  37344. ))
  37345. characterMakers.push(() => makeCharacter(
  37346. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37347. {
  37348. front: {
  37349. height: math.unit(8 + 4/12, "feet"),
  37350. weight: math.unit(535, "lb"),
  37351. name: "Front",
  37352. image: {
  37353. source: "./media/characters/beh'kah-bolger/front.svg",
  37354. extra: 1660/1603,
  37355. bottom: 37/1697
  37356. }
  37357. },
  37358. },
  37359. [
  37360. {
  37361. name: "Normal",
  37362. height: math.unit(8 + 4/12, "feet"),
  37363. default: true
  37364. },
  37365. {
  37366. name: "Kaiju",
  37367. height: math.unit(250, "feet")
  37368. },
  37369. {
  37370. name: "Still Growing",
  37371. height: math.unit(10, "miles")
  37372. },
  37373. {
  37374. name: "Continental",
  37375. height: math.unit(5000, "miles")
  37376. },
  37377. {
  37378. name: "Final Form",
  37379. height: math.unit(2500000, "miles")
  37380. },
  37381. ]
  37382. ))
  37383. characterMakers.push(() => makeCharacter(
  37384. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37385. {
  37386. front: {
  37387. height: math.unit(7 + 2/12, "feet"),
  37388. weight: math.unit(230, "kg"),
  37389. name: "Front",
  37390. image: {
  37391. source: "./media/characters/tatyana-milewska/front.svg",
  37392. extra: 1199/1150,
  37393. bottom: 86/1285
  37394. }
  37395. },
  37396. },
  37397. [
  37398. {
  37399. name: "Normal",
  37400. height: math.unit(7 + 2/12, "feet"),
  37401. default: true
  37402. },
  37403. {
  37404. name: "Big",
  37405. height: math.unit(12, "feet")
  37406. },
  37407. {
  37408. name: "Minimacro",
  37409. height: math.unit(20, "feet")
  37410. },
  37411. {
  37412. name: "Macro",
  37413. height: math.unit(120, "feet")
  37414. },
  37415. ]
  37416. ))
  37417. characterMakers.push(() => makeCharacter(
  37418. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37419. {
  37420. front: {
  37421. height: math.unit(7 + 8/12, "feet"),
  37422. weight: math.unit(152, "kg"),
  37423. name: "Front",
  37424. image: {
  37425. source: "./media/characters/helen-arri/front.svg",
  37426. extra: 440/423,
  37427. bottom: 14/454
  37428. }
  37429. },
  37430. back: {
  37431. height: math.unit(7 + 8/12, "feet"),
  37432. weight: math.unit(152, "kg"),
  37433. name: "Back",
  37434. image: {
  37435. source: "./media/characters/helen-arri/back.svg",
  37436. extra: 443/426,
  37437. bottom: 8/451
  37438. }
  37439. },
  37440. },
  37441. [
  37442. {
  37443. name: "Normal",
  37444. height: math.unit(7 + 8/12, "feet"),
  37445. default: true
  37446. },
  37447. {
  37448. name: "Big",
  37449. height: math.unit(14, "feet")
  37450. },
  37451. {
  37452. name: "Minimacro",
  37453. height: math.unit(24, "feet")
  37454. },
  37455. {
  37456. name: "Macro",
  37457. height: math.unit(140, "feet")
  37458. },
  37459. ]
  37460. ))
  37461. characterMakers.push(() => makeCharacter(
  37462. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37463. {
  37464. front: {
  37465. height: math.unit(6, "meters"),
  37466. name: "Front",
  37467. image: {
  37468. source: "./media/characters/ehanu-rehu/front.svg",
  37469. extra: 1800/1800,
  37470. bottom: 59/1859
  37471. }
  37472. },
  37473. },
  37474. [
  37475. {
  37476. name: "Normal",
  37477. height: math.unit(6, "meters"),
  37478. default: true
  37479. },
  37480. ]
  37481. ))
  37482. characterMakers.push(() => makeCharacter(
  37483. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37484. {
  37485. front: {
  37486. height: math.unit(7 + 3/12, "feet"),
  37487. name: "Front",
  37488. image: {
  37489. source: "./media/characters/renholder/front.svg",
  37490. extra: 3096/2960,
  37491. bottom: 250/3346
  37492. }
  37493. },
  37494. },
  37495. [
  37496. {
  37497. name: "Normal Bat",
  37498. height: math.unit(7 + 3/12, "feet"),
  37499. default: true
  37500. },
  37501. {
  37502. name: "Slightly Tall Bat",
  37503. height: math.unit(100, "feet")
  37504. },
  37505. {
  37506. name: "Big Bat",
  37507. height: math.unit(1000, "feet")
  37508. },
  37509. {
  37510. name: "City-Sized Bat",
  37511. height: math.unit(200000, "feet")
  37512. },
  37513. {
  37514. name: "Bigger Bat",
  37515. height: math.unit(10000, "miles")
  37516. },
  37517. {
  37518. name: "Solar Sized Bat",
  37519. height: math.unit(100, "AU")
  37520. },
  37521. {
  37522. name: "Galactic Bat",
  37523. height: math.unit(200000, "lightyears")
  37524. },
  37525. {
  37526. name: "Universally Known Bat",
  37527. height: math.unit(1, "universe")
  37528. },
  37529. ]
  37530. ))
  37531. characterMakers.push(() => makeCharacter(
  37532. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37533. {
  37534. front: {
  37535. height: math.unit(6 + 11/12, "feet"),
  37536. weight: math.unit(250, "lb"),
  37537. name: "Front",
  37538. image: {
  37539. source: "./media/characters/cookiecat/front.svg",
  37540. extra: 893/827,
  37541. bottom: 14/907
  37542. }
  37543. },
  37544. },
  37545. [
  37546. {
  37547. name: "Micro",
  37548. height: math.unit(3, "inches")
  37549. },
  37550. {
  37551. name: "Normal",
  37552. height: math.unit(6 + 11/12, "feet"),
  37553. default: true
  37554. },
  37555. {
  37556. name: "Macro",
  37557. height: math.unit(100, "feet")
  37558. },
  37559. {
  37560. name: "Macro+",
  37561. height: math.unit(404, "feet")
  37562. },
  37563. {
  37564. name: "Megamacro",
  37565. height: math.unit(165, "miles")
  37566. },
  37567. {
  37568. name: "Planetary",
  37569. height: math.unit(4600, "miles")
  37570. },
  37571. ]
  37572. ))
  37573. characterMakers.push(() => makeCharacter(
  37574. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37575. {
  37576. front: {
  37577. height: math.unit(10 + 3/12, "feet"),
  37578. weight: math.unit(1500, "lb"),
  37579. name: "Front",
  37580. image: {
  37581. source: "./media/characters/tux-kusanagi/front.svg",
  37582. extra: 944/840,
  37583. bottom: 39/983
  37584. }
  37585. },
  37586. back: {
  37587. height: math.unit(10 + 3/12, "feet"),
  37588. weight: math.unit(1500, "lb"),
  37589. name: "Back",
  37590. image: {
  37591. source: "./media/characters/tux-kusanagi/back.svg",
  37592. extra: 941/842,
  37593. bottom: 28/969
  37594. }
  37595. },
  37596. rump: {
  37597. height: math.unit(5.25, "feet"),
  37598. name: "Rump",
  37599. image: {
  37600. source: "./media/characters/tux-kusanagi/rump.svg"
  37601. }
  37602. },
  37603. beak: {
  37604. height: math.unit(1.54, "feet"),
  37605. name: "Beak",
  37606. image: {
  37607. source: "./media/characters/tux-kusanagi/beak.svg"
  37608. }
  37609. },
  37610. },
  37611. [
  37612. {
  37613. name: "Normal",
  37614. height: math.unit(10 + 3/12, "feet"),
  37615. default: true
  37616. },
  37617. ]
  37618. ))
  37619. characterMakers.push(() => makeCharacter(
  37620. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37621. {
  37622. front: {
  37623. height: math.unit(58, "feet"),
  37624. weight: math.unit(200, "tons"),
  37625. name: "Front",
  37626. image: {
  37627. source: "./media/characters/uzarmazari/front.svg",
  37628. extra: 1575/1455,
  37629. bottom: 152/1727
  37630. }
  37631. },
  37632. back: {
  37633. height: math.unit(58, "feet"),
  37634. weight: math.unit(200, "tons"),
  37635. name: "Back",
  37636. image: {
  37637. source: "./media/characters/uzarmazari/back.svg",
  37638. extra: 1585/1510,
  37639. bottom: 157/1742
  37640. }
  37641. },
  37642. head: {
  37643. height: math.unit(26, "feet"),
  37644. name: "Head",
  37645. image: {
  37646. source: "./media/characters/uzarmazari/head.svg"
  37647. }
  37648. },
  37649. },
  37650. [
  37651. {
  37652. name: "Normal",
  37653. height: math.unit(58, "feet"),
  37654. default: true
  37655. },
  37656. ]
  37657. ))
  37658. characterMakers.push(() => makeCharacter(
  37659. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37660. {
  37661. side: {
  37662. height: math.unit(15, "feet"),
  37663. name: "Side",
  37664. image: {
  37665. source: "./media/characters/akitu/side.svg",
  37666. extra: 1421/1321,
  37667. bottom: 157/1578
  37668. }
  37669. },
  37670. front: {
  37671. height: math.unit(15, "feet"),
  37672. name: "Front",
  37673. image: {
  37674. source: "./media/characters/akitu/front.svg",
  37675. extra: 1435/1326,
  37676. bottom: 232/1667
  37677. }
  37678. },
  37679. },
  37680. [
  37681. {
  37682. name: "Normal",
  37683. height: math.unit(15, "feet"),
  37684. default: true
  37685. },
  37686. ]
  37687. ))
  37688. characterMakers.push(() => makeCharacter(
  37689. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37690. {
  37691. front: {
  37692. height: math.unit(10 + 8/12, "feet"),
  37693. name: "Front",
  37694. image: {
  37695. source: "./media/characters/azalie-croixland/front.svg",
  37696. extra: 1972/1856,
  37697. bottom: 31/2003
  37698. }
  37699. },
  37700. },
  37701. [
  37702. {
  37703. name: "Original Height",
  37704. height: math.unit(5 + 4/12, "feet")
  37705. },
  37706. {
  37707. name: "Normal Height",
  37708. height: math.unit(10 + 8/12, "feet"),
  37709. default: true
  37710. },
  37711. ]
  37712. ))
  37713. characterMakers.push(() => makeCharacter(
  37714. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37715. {
  37716. side: {
  37717. height: math.unit(7 + 1/12, "feet"),
  37718. weight: math.unit(245, "lb"),
  37719. name: "Side",
  37720. image: {
  37721. source: "./media/characters/kavus-kazian/side.svg",
  37722. extra: 349/342,
  37723. bottom: 15/364
  37724. }
  37725. },
  37726. },
  37727. [
  37728. {
  37729. name: "Normal",
  37730. height: math.unit(7 + 1/12, "feet"),
  37731. default: true
  37732. },
  37733. ]
  37734. ))
  37735. characterMakers.push(() => makeCharacter(
  37736. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37737. {
  37738. normalFront: {
  37739. height: math.unit(5 + 11/12, "feet"),
  37740. name: "Front",
  37741. image: {
  37742. source: "./media/characters/moonlight-rose/normal-front.svg",
  37743. extra: 1980/1825,
  37744. bottom: 18/1998
  37745. },
  37746. form: "normal",
  37747. default: true
  37748. },
  37749. normalBack: {
  37750. height: math.unit(5 + 11/12, "feet"),
  37751. name: "Back",
  37752. image: {
  37753. source: "./media/characters/moonlight-rose/normal-back.svg",
  37754. extra: 2010/1839,
  37755. bottom: 10/2020
  37756. },
  37757. form: "normal"
  37758. },
  37759. demonFront: {
  37760. height: math.unit(1.5, "earths"),
  37761. name: "Front",
  37762. image: {
  37763. source: "./media/characters/moonlight-rose/demon.svg",
  37764. extra: 1400/1294,
  37765. bottom: 45/1445
  37766. },
  37767. form: "demon",
  37768. default: true
  37769. },
  37770. terraFront: {
  37771. height: math.unit(1.5, "earths"),
  37772. name: "Front",
  37773. image: {
  37774. source: "./media/characters/moonlight-rose/terra.svg"
  37775. },
  37776. form: "terra",
  37777. default: true
  37778. },
  37779. jupiterFront: {
  37780. height: math.unit(69911*2, "km"),
  37781. name: "Front",
  37782. image: {
  37783. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37784. extra: 1367/1286,
  37785. bottom: 55/1422
  37786. },
  37787. form: "jupiter",
  37788. default: true
  37789. },
  37790. neptuneFront: {
  37791. height: math.unit(24622*2, "feet"),
  37792. name: "Front",
  37793. image: {
  37794. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37795. extra: 1851/1712,
  37796. bottom: 0/1851
  37797. },
  37798. form: "neptune",
  37799. default: true
  37800. },
  37801. },
  37802. [
  37803. {
  37804. name: "\"Natural\" Height",
  37805. height: math.unit(5 + 11/12, "feet"),
  37806. form: "normal"
  37807. },
  37808. {
  37809. name: "Smallest comfortable size",
  37810. height: math.unit(40, "meters"),
  37811. form: "normal"
  37812. },
  37813. {
  37814. name: "Common size",
  37815. height: math.unit(50, "km"),
  37816. form: "normal",
  37817. default: true
  37818. },
  37819. {
  37820. name: "Normal",
  37821. height: math.unit(1.5, "earths"),
  37822. form: "demon",
  37823. default: true
  37824. },
  37825. {
  37826. name: "Universal",
  37827. height: math.unit(15, "universes"),
  37828. form: "demon"
  37829. },
  37830. {
  37831. name: "Earth",
  37832. height: math.unit(1.5, "earths"),
  37833. form: "terra",
  37834. default: true
  37835. },
  37836. {
  37837. name: "Super Earth",
  37838. height: math.unit(67.5, "earths"),
  37839. form: "terra"
  37840. },
  37841. {
  37842. name: "Doesn't fit in a solar system...",
  37843. height: math.unit(1, "galaxy"),
  37844. form: "terra"
  37845. },
  37846. {
  37847. name: "Saturn",
  37848. height: math.unit(58232*2, "km"),
  37849. form: "jupiter"
  37850. },
  37851. {
  37852. name: "Jupiter",
  37853. height: math.unit(69911*2, "km"),
  37854. form: "jupiter",
  37855. default: true
  37856. },
  37857. {
  37858. name: "HD 100546 b",
  37859. height: math.unit(482938, "km"),
  37860. form: "jupiter"
  37861. },
  37862. {
  37863. name: "Enceladus",
  37864. height: math.unit(513*2, "km"),
  37865. form: "neptune"
  37866. },
  37867. {
  37868. name: "Europe",
  37869. height: math.unit(1560*2, "km"),
  37870. form: "neptune"
  37871. },
  37872. {
  37873. name: "Neptune",
  37874. height: math.unit(24622*2, "km"),
  37875. form: "neptune",
  37876. default: true
  37877. },
  37878. {
  37879. name: "CoRoT-9b",
  37880. height: math.unit(75067*2, "km"),
  37881. form: "neptune"
  37882. },
  37883. ],
  37884. {
  37885. "normal": {
  37886. name: "Normal",
  37887. default: true
  37888. },
  37889. "demon": {
  37890. name: "Demon"
  37891. },
  37892. "terra": {
  37893. name: "Terra"
  37894. },
  37895. "jupiter": {
  37896. name: "Jupiter"
  37897. },
  37898. "neptune": {
  37899. name: "Neptune"
  37900. }
  37901. }
  37902. ))
  37903. characterMakers.push(() => makeCharacter(
  37904. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37905. {
  37906. front: {
  37907. height: math.unit(16, "feet"),
  37908. weight: math.unit(610, "kg"),
  37909. name: "Front",
  37910. image: {
  37911. source: "./media/characters/huckle/front.svg",
  37912. extra: 1731/1625,
  37913. bottom: 33/1764
  37914. }
  37915. },
  37916. back: {
  37917. height: math.unit(16, "feet"),
  37918. weight: math.unit(610, "kg"),
  37919. name: "Back",
  37920. image: {
  37921. source: "./media/characters/huckle/back.svg",
  37922. extra: 1738/1651,
  37923. bottom: 37/1775
  37924. }
  37925. },
  37926. laughing: {
  37927. height: math.unit(3.75, "feet"),
  37928. name: "Laughing",
  37929. image: {
  37930. source: "./media/characters/huckle/laughing.svg"
  37931. }
  37932. },
  37933. angry: {
  37934. height: math.unit(4.15, "feet"),
  37935. name: "Angry",
  37936. image: {
  37937. source: "./media/characters/huckle/angry.svg"
  37938. }
  37939. },
  37940. },
  37941. [
  37942. {
  37943. name: "Normal",
  37944. height: math.unit(16, "feet"),
  37945. default: true
  37946. },
  37947. {
  37948. name: "Mini Macro",
  37949. height: math.unit(463, "feet")
  37950. },
  37951. {
  37952. name: "Macro",
  37953. height: math.unit(1680, "meters")
  37954. },
  37955. {
  37956. name: "Mega Macro",
  37957. height: math.unit(175, "km")
  37958. },
  37959. {
  37960. name: "Terra Macro",
  37961. height: math.unit(32, "gigameters")
  37962. },
  37963. {
  37964. name: "Multiverse+",
  37965. height: math.unit(2.56e23, "yottameters")
  37966. },
  37967. ]
  37968. ))
  37969. characterMakers.push(() => makeCharacter(
  37970. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37971. {
  37972. front: {
  37973. height: math.unit(6 + 9/12, "feet"),
  37974. weight: math.unit(280, "lb"),
  37975. name: "Front",
  37976. image: {
  37977. source: "./media/characters/candy/front.svg",
  37978. extra: 234/217,
  37979. bottom: 11/245
  37980. }
  37981. },
  37982. },
  37983. [
  37984. {
  37985. name: "Really Small",
  37986. height: math.unit(0.1, "nm")
  37987. },
  37988. {
  37989. name: "Micro",
  37990. height: math.unit(2, "inches")
  37991. },
  37992. {
  37993. name: "Normal",
  37994. height: math.unit(6 + 9/12, "feet"),
  37995. default: true
  37996. },
  37997. {
  37998. name: "Small Macro",
  37999. height: math.unit(69, "feet")
  38000. },
  38001. {
  38002. name: "Macro",
  38003. height: math.unit(160, "feet")
  38004. },
  38005. {
  38006. name: "Megamacro",
  38007. height: math.unit(22000, "miles")
  38008. },
  38009. {
  38010. name: "Gigamacro",
  38011. height: math.unit(50000, "miles")
  38012. },
  38013. ]
  38014. ))
  38015. characterMakers.push(() => makeCharacter(
  38016. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38017. {
  38018. front: {
  38019. height: math.unit(4, "feet"),
  38020. weight: math.unit(90, "lb"),
  38021. name: "Front",
  38022. image: {
  38023. source: "./media/characters/joey-mcdonald/front.svg",
  38024. extra: 1059/852,
  38025. bottom: 33/1092
  38026. }
  38027. },
  38028. back: {
  38029. height: math.unit(4, "feet"),
  38030. weight: math.unit(90, "lb"),
  38031. name: "Back",
  38032. image: {
  38033. source: "./media/characters/joey-mcdonald/back.svg",
  38034. extra: 1077/879,
  38035. bottom: 5/1082
  38036. }
  38037. },
  38038. frontKobold: {
  38039. height: math.unit(4, "feet"),
  38040. weight: math.unit(100, "lb"),
  38041. name: "Front-kobold",
  38042. image: {
  38043. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38044. extra: 1480/1367,
  38045. bottom: 0/1480
  38046. }
  38047. },
  38048. backKobold: {
  38049. height: math.unit(4, "feet"),
  38050. weight: math.unit(100, "lb"),
  38051. name: "Back-kobold",
  38052. image: {
  38053. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38054. extra: 1449/1361,
  38055. bottom: 0/1449
  38056. }
  38057. },
  38058. },
  38059. [
  38060. {
  38061. name: "Normal",
  38062. height: math.unit(4, "feet"),
  38063. default: true
  38064. },
  38065. ]
  38066. ))
  38067. characterMakers.push(() => makeCharacter(
  38068. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38069. {
  38070. front: {
  38071. height: math.unit(12 + 6/12, "feet"),
  38072. name: "Front",
  38073. image: {
  38074. source: "./media/characters/kass-lockheed/front.svg",
  38075. extra: 354/343,
  38076. bottom: 9/363
  38077. }
  38078. },
  38079. back: {
  38080. height: math.unit(12 + 6/12, "feet"),
  38081. name: "Back",
  38082. image: {
  38083. source: "./media/characters/kass-lockheed/back.svg",
  38084. extra: 364/352,
  38085. bottom: 3/367
  38086. }
  38087. },
  38088. dick: {
  38089. height: math.unit(3.12, "feet"),
  38090. name: "Dick",
  38091. image: {
  38092. source: "./media/characters/kass-lockheed/dick.svg"
  38093. }
  38094. },
  38095. head: {
  38096. height: math.unit(2.6, "feet"),
  38097. name: "Head",
  38098. image: {
  38099. source: "./media/characters/kass-lockheed/head.svg"
  38100. }
  38101. },
  38102. bleh: {
  38103. height: math.unit(2.85, "feet"),
  38104. name: "Bleh",
  38105. image: {
  38106. source: "./media/characters/kass-lockheed/bleh.svg"
  38107. }
  38108. },
  38109. smug: {
  38110. height: math.unit(2.85, "feet"),
  38111. name: "Smug",
  38112. image: {
  38113. source: "./media/characters/kass-lockheed/smug.svg"
  38114. }
  38115. },
  38116. },
  38117. [
  38118. {
  38119. name: "Normal",
  38120. height: math.unit(12 + 6/12, "feet"),
  38121. default: true
  38122. },
  38123. ]
  38124. ))
  38125. characterMakers.push(() => makeCharacter(
  38126. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38127. {
  38128. front: {
  38129. height: math.unit(6 + 2/12, "feet"),
  38130. name: "Front",
  38131. image: {
  38132. source: "./media/characters/taylor/front.svg",
  38133. extra: 639/495,
  38134. bottom: 12/651
  38135. }
  38136. },
  38137. },
  38138. [
  38139. {
  38140. name: "Normal",
  38141. height: math.unit(6 + 2/12, "feet"),
  38142. default: true
  38143. },
  38144. {
  38145. name: "Big",
  38146. height: math.unit(15, "feet")
  38147. },
  38148. {
  38149. name: "Lorg",
  38150. height: math.unit(80, "feet")
  38151. },
  38152. {
  38153. name: "Too Lorg",
  38154. height: math.unit(120, "feet")
  38155. },
  38156. ]
  38157. ))
  38158. characterMakers.push(() => makeCharacter(
  38159. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38160. {
  38161. front: {
  38162. height: math.unit(15, "feet"),
  38163. name: "Front",
  38164. image: {
  38165. source: "./media/characters/kaizer/front.svg",
  38166. extra: 1612/1436,
  38167. bottom: 43/1655
  38168. }
  38169. },
  38170. },
  38171. [
  38172. {
  38173. name: "Normal",
  38174. height: math.unit(15, "feet"),
  38175. default: true
  38176. },
  38177. ]
  38178. ))
  38179. characterMakers.push(() => makeCharacter(
  38180. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38181. {
  38182. front: {
  38183. height: math.unit(2, "feet"),
  38184. weight: math.unit(30, "lb"),
  38185. name: "Front",
  38186. image: {
  38187. source: "./media/characters/sandy/front.svg",
  38188. extra: 1439/1307,
  38189. bottom: 194/1633
  38190. }
  38191. },
  38192. },
  38193. [
  38194. {
  38195. name: "Normal",
  38196. height: math.unit(2, "feet"),
  38197. default: true
  38198. },
  38199. ]
  38200. ))
  38201. characterMakers.push(() => makeCharacter(
  38202. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38203. {
  38204. front: {
  38205. height: math.unit(3, "feet"),
  38206. name: "Front",
  38207. image: {
  38208. source: "./media/characters/mellvi/front.svg",
  38209. extra: 1831/1630,
  38210. bottom: 58/1889
  38211. }
  38212. },
  38213. },
  38214. [
  38215. {
  38216. name: "Normal",
  38217. height: math.unit(3, "feet"),
  38218. default: true
  38219. },
  38220. ]
  38221. ))
  38222. characterMakers.push(() => makeCharacter(
  38223. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38224. {
  38225. front: {
  38226. height: math.unit(5 + 11/12, "feet"),
  38227. weight: math.unit(200, "lb"),
  38228. name: "Front",
  38229. image: {
  38230. source: "./media/characters/shirou/front.svg",
  38231. extra: 2491/2383,
  38232. bottom: 189/2680
  38233. }
  38234. },
  38235. back: {
  38236. height: math.unit(5 + 11/12, "feet"),
  38237. weight: math.unit(200, "lb"),
  38238. name: "Back",
  38239. image: {
  38240. source: "./media/characters/shirou/back.svg",
  38241. extra: 2554/2450,
  38242. bottom: 76/2630
  38243. }
  38244. },
  38245. },
  38246. [
  38247. {
  38248. name: "Normal",
  38249. height: math.unit(5 + 11/12, "feet"),
  38250. default: true
  38251. },
  38252. ]
  38253. ))
  38254. characterMakers.push(() => makeCharacter(
  38255. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38256. {
  38257. front: {
  38258. height: math.unit(6 + 3/12, "feet"),
  38259. weight: math.unit(177, "lb"),
  38260. name: "Front",
  38261. image: {
  38262. source: "./media/characters/noryu/front.svg",
  38263. extra: 973/885,
  38264. bottom: 10/983
  38265. }
  38266. },
  38267. },
  38268. [
  38269. {
  38270. name: "Normal",
  38271. height: math.unit(6 + 3/12, "feet"),
  38272. default: true
  38273. },
  38274. ]
  38275. ))
  38276. characterMakers.push(() => makeCharacter(
  38277. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38278. {
  38279. front: {
  38280. height: math.unit(5 + 6/12, "feet"),
  38281. weight: math.unit(170, "lb"),
  38282. name: "Front",
  38283. image: {
  38284. source: "./media/characters/mevolas-rubenido/front.svg",
  38285. extra: 2109/1901,
  38286. bottom: 96/2205
  38287. }
  38288. },
  38289. },
  38290. [
  38291. {
  38292. name: "Normal",
  38293. height: math.unit(5 + 6/12, "feet"),
  38294. default: true
  38295. },
  38296. ]
  38297. ))
  38298. characterMakers.push(() => makeCharacter(
  38299. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38300. {
  38301. front: {
  38302. height: math.unit(100, "feet"),
  38303. name: "Front",
  38304. image: {
  38305. source: "./media/characters/dee/front.svg",
  38306. extra: 2153/2036,
  38307. bottom: 59/2212
  38308. }
  38309. },
  38310. back: {
  38311. height: math.unit(100, "feet"),
  38312. name: "Back",
  38313. image: {
  38314. source: "./media/characters/dee/back.svg",
  38315. extra: 2183/2058,
  38316. bottom: 75/2258
  38317. }
  38318. },
  38319. foot: {
  38320. height: math.unit(19.43, "feet"),
  38321. name: "Foot",
  38322. image: {
  38323. source: "./media/characters/dee/foot.svg"
  38324. }
  38325. },
  38326. hoof: {
  38327. height: math.unit(20.6, "feet"),
  38328. name: "Hoof",
  38329. image: {
  38330. source: "./media/characters/dee/hoof.svg"
  38331. }
  38332. },
  38333. },
  38334. [
  38335. {
  38336. name: "Macro",
  38337. height: math.unit(100, "feet"),
  38338. default: true
  38339. },
  38340. ]
  38341. ))
  38342. characterMakers.push(() => makeCharacter(
  38343. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38344. {
  38345. front: {
  38346. height: math.unit(5 + 6/12, "feet"),
  38347. name: "Front",
  38348. image: {
  38349. source: "./media/characters/teh/front.svg",
  38350. extra: 1002/847,
  38351. bottom: 62/1064
  38352. }
  38353. },
  38354. },
  38355. [
  38356. {
  38357. name: "Normal",
  38358. height: math.unit(5 + 6/12, "feet"),
  38359. default: true
  38360. },
  38361. ]
  38362. ))
  38363. characterMakers.push(() => makeCharacter(
  38364. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38365. {
  38366. side: {
  38367. height: math.unit(6 + 1/12, "feet"),
  38368. weight: math.unit(204, "lb"),
  38369. name: "Side",
  38370. image: {
  38371. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38372. extra: 974/775,
  38373. bottom: 169/1143
  38374. }
  38375. },
  38376. sitting: {
  38377. height: math.unit(6 + 2/12, "feet"),
  38378. weight: math.unit(204, "lb"),
  38379. name: "Sitting",
  38380. image: {
  38381. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38382. extra: 1175/964,
  38383. bottom: 378/1553
  38384. }
  38385. },
  38386. },
  38387. [
  38388. {
  38389. name: "Normal",
  38390. height: math.unit(6 + 1/12, "feet"),
  38391. default: true
  38392. },
  38393. ]
  38394. ))
  38395. characterMakers.push(() => makeCharacter(
  38396. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38397. {
  38398. front: {
  38399. height: math.unit(6, "inches"),
  38400. name: "Front",
  38401. image: {
  38402. source: "./media/characters/tululi/front.svg",
  38403. extra: 1997/1876,
  38404. bottom: 20/2017
  38405. }
  38406. },
  38407. },
  38408. [
  38409. {
  38410. name: "Normal",
  38411. height: math.unit(6, "inches"),
  38412. default: true
  38413. },
  38414. ]
  38415. ))
  38416. characterMakers.push(() => makeCharacter(
  38417. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38418. {
  38419. front: {
  38420. height: math.unit(4 + 1/12, "feet"),
  38421. name: "Front",
  38422. image: {
  38423. source: "./media/characters/star/front.svg",
  38424. extra: 1493/1189,
  38425. bottom: 48/1541
  38426. }
  38427. },
  38428. },
  38429. [
  38430. {
  38431. name: "Normal",
  38432. height: math.unit(4 + 1/12, "feet"),
  38433. default: true
  38434. },
  38435. ]
  38436. ))
  38437. characterMakers.push(() => makeCharacter(
  38438. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38439. {
  38440. front: {
  38441. height: math.unit(6 + 3/12, "feet"),
  38442. name: "Front",
  38443. image: {
  38444. source: "./media/characters/comet/front.svg",
  38445. extra: 1681/1462,
  38446. bottom: 26/1707
  38447. }
  38448. },
  38449. },
  38450. [
  38451. {
  38452. name: "Normal",
  38453. height: math.unit(6 + 3/12, "feet"),
  38454. default: true
  38455. },
  38456. ]
  38457. ))
  38458. characterMakers.push(() => makeCharacter(
  38459. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38460. {
  38461. front: {
  38462. height: math.unit(950, "feet"),
  38463. name: "Front",
  38464. image: {
  38465. source: "./media/characters/vortex/front.svg",
  38466. extra: 1497/1434,
  38467. bottom: 56/1553
  38468. }
  38469. },
  38470. maw: {
  38471. height: math.unit(285, "feet"),
  38472. name: "Maw",
  38473. image: {
  38474. source: "./media/characters/vortex/maw.svg"
  38475. }
  38476. },
  38477. },
  38478. [
  38479. {
  38480. name: "Macro",
  38481. height: math.unit(950, "feet"),
  38482. default: true
  38483. },
  38484. ]
  38485. ))
  38486. characterMakers.push(() => makeCharacter(
  38487. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38488. {
  38489. front: {
  38490. height: math.unit(600, "feet"),
  38491. weight: math.unit(0.02, "grams"),
  38492. name: "Front",
  38493. image: {
  38494. source: "./media/characters/doodle/front.svg",
  38495. extra: 1578/1413,
  38496. bottom: 37/1615
  38497. }
  38498. },
  38499. },
  38500. [
  38501. {
  38502. name: "Macro",
  38503. height: math.unit(600, "feet"),
  38504. default: true
  38505. },
  38506. ]
  38507. ))
  38508. characterMakers.push(() => makeCharacter(
  38509. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38510. {
  38511. front: {
  38512. height: math.unit(6 + 6/12, "feet"),
  38513. name: "Front",
  38514. image: {
  38515. source: "./media/characters/jai/front.svg",
  38516. extra: 1645/1534,
  38517. bottom: 115/1760
  38518. }
  38519. },
  38520. },
  38521. [
  38522. {
  38523. name: "Normal",
  38524. height: math.unit(6 + 6/12, "feet"),
  38525. default: true
  38526. },
  38527. ]
  38528. ))
  38529. characterMakers.push(() => makeCharacter(
  38530. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38531. {
  38532. front: {
  38533. height: math.unit(6 + 8/12, "feet"),
  38534. name: "Front",
  38535. image: {
  38536. source: "./media/characters/pixel/front.svg",
  38537. extra: 1900/1735,
  38538. bottom: 63/1963
  38539. }
  38540. },
  38541. },
  38542. [
  38543. {
  38544. name: "Normal",
  38545. height: math.unit(6 + 8/12, "feet"),
  38546. default: true
  38547. },
  38548. ]
  38549. ))
  38550. characterMakers.push(() => makeCharacter(
  38551. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38552. {
  38553. back: {
  38554. height: math.unit(4 + 1/12, "feet"),
  38555. weight: math.unit(75, "lb"),
  38556. name: "Back",
  38557. image: {
  38558. source: "./media/characters/rhett/back.svg",
  38559. extra: 930/878,
  38560. bottom: 25/955
  38561. }
  38562. },
  38563. front: {
  38564. height: math.unit(4 + 1/12, "feet"),
  38565. weight: math.unit(75, "lb"),
  38566. name: "Front",
  38567. image: {
  38568. source: "./media/characters/rhett/front.svg",
  38569. extra: 1682/1586,
  38570. bottom: 92/1774
  38571. }
  38572. },
  38573. },
  38574. [
  38575. {
  38576. name: "Micro",
  38577. height: math.unit(8, "inches")
  38578. },
  38579. {
  38580. name: "Tiny",
  38581. height: math.unit(2, "feet")
  38582. },
  38583. {
  38584. name: "Normal",
  38585. height: math.unit(4 + 1/12, "feet"),
  38586. default: true
  38587. },
  38588. ]
  38589. ))
  38590. characterMakers.push(() => makeCharacter(
  38591. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38592. {
  38593. front: {
  38594. height: math.unit(3 + 3/12, "feet"),
  38595. name: "Front",
  38596. image: {
  38597. source: "./media/characters/penny/front.svg",
  38598. extra: 1406/1311,
  38599. bottom: 26/1432
  38600. }
  38601. },
  38602. },
  38603. [
  38604. {
  38605. name: "Normal",
  38606. height: math.unit(3 + 3/12, "feet"),
  38607. default: true
  38608. },
  38609. ]
  38610. ))
  38611. characterMakers.push(() => makeCharacter(
  38612. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38613. {
  38614. front: {
  38615. height: math.unit(4 + 11/12, "feet"),
  38616. name: "Front",
  38617. image: {
  38618. source: "./media/characters/monty/front.svg",
  38619. extra: 1479/1209,
  38620. bottom: 0/1479
  38621. }
  38622. },
  38623. },
  38624. [
  38625. {
  38626. name: "Normal",
  38627. height: math.unit(4 + 11/12, "feet"),
  38628. default: true
  38629. },
  38630. ]
  38631. ))
  38632. characterMakers.push(() => makeCharacter(
  38633. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38634. {
  38635. front: {
  38636. height: math.unit(8 + 4/12, "feet"),
  38637. name: "Front",
  38638. image: {
  38639. source: "./media/characters/sterling/front.svg",
  38640. extra: 1420/1236,
  38641. bottom: 27/1447
  38642. }
  38643. },
  38644. },
  38645. [
  38646. {
  38647. name: "Normal",
  38648. height: math.unit(8 + 4/12, "feet"),
  38649. default: true
  38650. },
  38651. ]
  38652. ))
  38653. characterMakers.push(() => makeCharacter(
  38654. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38655. {
  38656. front: {
  38657. height: math.unit(15, "feet"),
  38658. name: "Front",
  38659. image: {
  38660. source: "./media/characters/marble/front.svg",
  38661. extra: 973/937,
  38662. bottom: 32/1005
  38663. }
  38664. },
  38665. },
  38666. [
  38667. {
  38668. name: "Normal",
  38669. height: math.unit(15, "feet"),
  38670. default: true
  38671. },
  38672. ]
  38673. ))
  38674. characterMakers.push(() => makeCharacter(
  38675. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38676. {
  38677. front: {
  38678. height: math.unit(3, "inches"),
  38679. name: "Front",
  38680. image: {
  38681. source: "./media/characters/powder/front.svg",
  38682. extra: 1504/1334,
  38683. bottom: 518/2022
  38684. }
  38685. },
  38686. },
  38687. [
  38688. {
  38689. name: "Normal",
  38690. height: math.unit(3, "inches"),
  38691. default: true
  38692. },
  38693. ]
  38694. ))
  38695. characterMakers.push(() => makeCharacter(
  38696. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38697. {
  38698. front: {
  38699. height: math.unit(4 + 5/12, "feet"),
  38700. name: "Front",
  38701. image: {
  38702. source: "./media/characters/joey-raccoon/front.svg",
  38703. extra: 1273/1197,
  38704. bottom: 0/1273
  38705. }
  38706. },
  38707. },
  38708. [
  38709. {
  38710. name: "Normal",
  38711. height: math.unit(4 + 5/12, "feet"),
  38712. default: true
  38713. },
  38714. ]
  38715. ))
  38716. characterMakers.push(() => makeCharacter(
  38717. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38718. {
  38719. front: {
  38720. height: math.unit(8 + 4/12, "feet"),
  38721. name: "Front",
  38722. image: {
  38723. source: "./media/characters/vick/front.svg",
  38724. extra: 2187/2118,
  38725. bottom: 47/2234
  38726. }
  38727. },
  38728. },
  38729. [
  38730. {
  38731. name: "Normal",
  38732. height: math.unit(8 + 4/12, "feet"),
  38733. default: true
  38734. },
  38735. ]
  38736. ))
  38737. characterMakers.push(() => makeCharacter(
  38738. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38739. {
  38740. front: {
  38741. height: math.unit(5 + 5/12, "feet"),
  38742. name: "Front",
  38743. image: {
  38744. source: "./media/characters/mitsy/front.svg",
  38745. extra: 1842/1695,
  38746. bottom: 0/1842
  38747. }
  38748. },
  38749. },
  38750. [
  38751. {
  38752. name: "Normal",
  38753. height: math.unit(5 + 5/12, "feet"),
  38754. default: true
  38755. },
  38756. ]
  38757. ))
  38758. characterMakers.push(() => makeCharacter(
  38759. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38760. {
  38761. front: {
  38762. height: math.unit(6 + 3/12, "feet"),
  38763. name: "Front",
  38764. image: {
  38765. source: "./media/characters/silvy/front.svg",
  38766. extra: 1995/1836,
  38767. bottom: 225/2220
  38768. }
  38769. },
  38770. },
  38771. [
  38772. {
  38773. name: "Normal",
  38774. height: math.unit(6 + 3/12, "feet"),
  38775. default: true
  38776. },
  38777. ]
  38778. ))
  38779. characterMakers.push(() => makeCharacter(
  38780. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38781. {
  38782. front: {
  38783. height: math.unit(3 + 8/12, "feet"),
  38784. name: "Front",
  38785. image: {
  38786. source: "./media/characters/rodney/front.svg",
  38787. extra: 1956/1747,
  38788. bottom: 31/1987
  38789. }
  38790. },
  38791. frontDressed: {
  38792. height: math.unit(2.9, "feet"),
  38793. name: "Front (Dressed)",
  38794. image: {
  38795. source: "./media/characters/rodney/front-dressed.svg",
  38796. extra: 1382/1241,
  38797. bottom: 385/1767
  38798. }
  38799. },
  38800. },
  38801. [
  38802. {
  38803. name: "Normal",
  38804. height: math.unit(3 + 8/12, "feet"),
  38805. default: true
  38806. },
  38807. ]
  38808. ))
  38809. characterMakers.push(() => makeCharacter(
  38810. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38811. {
  38812. front: {
  38813. height: math.unit(5 + 9/12, "feet"),
  38814. weight: math.unit(194, "lbs"),
  38815. name: "Front",
  38816. image: {
  38817. source: "./media/characters/zakail-sudekai/front.svg",
  38818. extra: 2696/2533,
  38819. bottom: 248/2944
  38820. }
  38821. },
  38822. maw: {
  38823. height: math.unit(1.35, "feet"),
  38824. name: "Maw",
  38825. image: {
  38826. source: "./media/characters/zakail-sudekai/maw.svg"
  38827. }
  38828. },
  38829. },
  38830. [
  38831. {
  38832. name: "Normal",
  38833. height: math.unit(5 + 9/12, "feet"),
  38834. default: true
  38835. },
  38836. ]
  38837. ))
  38838. characterMakers.push(() => makeCharacter(
  38839. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38840. {
  38841. front: {
  38842. height: math.unit(8 + 4/12, "feet"),
  38843. weight: math.unit(1200, "lb"),
  38844. name: "Front",
  38845. image: {
  38846. source: "./media/characters/eleanor/front.svg",
  38847. extra: 1226/1192,
  38848. bottom: 52/1278
  38849. }
  38850. },
  38851. back: {
  38852. height: math.unit(8 + 4/12, "feet"),
  38853. weight: math.unit(1200, "lb"),
  38854. name: "Back",
  38855. image: {
  38856. source: "./media/characters/eleanor/back.svg",
  38857. extra: 1242/1184,
  38858. bottom: 60/1302
  38859. }
  38860. },
  38861. head: {
  38862. height: math.unit(2.62, "feet"),
  38863. name: "Head",
  38864. image: {
  38865. source: "./media/characters/eleanor/head.svg"
  38866. }
  38867. },
  38868. },
  38869. [
  38870. {
  38871. name: "Normal",
  38872. height: math.unit(8 + 4/12, "feet"),
  38873. default: true
  38874. },
  38875. ]
  38876. ))
  38877. characterMakers.push(() => makeCharacter(
  38878. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38879. {
  38880. front: {
  38881. height: math.unit(8 + 4/12, "feet"),
  38882. weight: math.unit(750, "lb"),
  38883. name: "Front",
  38884. image: {
  38885. source: "./media/characters/tanya/front.svg",
  38886. extra: 1749/1615,
  38887. bottom: 33/1782
  38888. }
  38889. },
  38890. },
  38891. [
  38892. {
  38893. name: "Normal",
  38894. height: math.unit(8 + 4/12, "feet"),
  38895. default: true
  38896. },
  38897. ]
  38898. ))
  38899. characterMakers.push(() => makeCharacter(
  38900. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38901. {
  38902. front: {
  38903. height: math.unit(5, "feet"),
  38904. weight: math.unit(225, "lb"),
  38905. name: "Front",
  38906. image: {
  38907. source: "./media/characters/cindy/front.svg",
  38908. extra: 1320/1250,
  38909. bottom: 42/1362
  38910. }
  38911. },
  38912. frontDressed: {
  38913. height: math.unit(5, "feet"),
  38914. weight: math.unit(225, "lb"),
  38915. name: "Front (Dressed)",
  38916. image: {
  38917. source: "./media/characters/cindy/front-dressed.svg",
  38918. extra: 1320/1250,
  38919. bottom: 42/1362
  38920. }
  38921. },
  38922. back: {
  38923. height: math.unit(5, "feet"),
  38924. weight: math.unit(225, "lb"),
  38925. name: "Back",
  38926. image: {
  38927. source: "./media/characters/cindy/back.svg",
  38928. extra: 1384/1346,
  38929. bottom: 14/1398
  38930. }
  38931. },
  38932. },
  38933. [
  38934. {
  38935. name: "Normal",
  38936. height: math.unit(5, "feet"),
  38937. default: true
  38938. },
  38939. ]
  38940. ))
  38941. characterMakers.push(() => makeCharacter(
  38942. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38943. {
  38944. front: {
  38945. height: math.unit(6 + 9/12, "feet"),
  38946. weight: math.unit(440, "lb"),
  38947. name: "Front",
  38948. image: {
  38949. source: "./media/characters/wilbur-owen/front.svg",
  38950. extra: 1575/1448,
  38951. bottom: 72/1647
  38952. }
  38953. },
  38954. back: {
  38955. height: math.unit(6 + 9/12, "feet"),
  38956. weight: math.unit(440, "lb"),
  38957. name: "Back",
  38958. image: {
  38959. source: "./media/characters/wilbur-owen/back.svg",
  38960. extra: 1578/1445,
  38961. bottom: 36/1614
  38962. }
  38963. },
  38964. },
  38965. [
  38966. {
  38967. name: "Normal",
  38968. height: math.unit(6 + 9/12, "feet"),
  38969. default: true
  38970. },
  38971. ]
  38972. ))
  38973. characterMakers.push(() => makeCharacter(
  38974. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38975. {
  38976. front: {
  38977. height: math.unit(6 + 5/12, "feet"),
  38978. weight: math.unit(650, "lb"),
  38979. name: "Front",
  38980. image: {
  38981. source: "./media/characters/keegan/front.svg",
  38982. extra: 2387/2198,
  38983. bottom: 33/2420
  38984. }
  38985. },
  38986. side: {
  38987. height: math.unit(6 + 5/12, "feet"),
  38988. weight: math.unit(650, "lb"),
  38989. name: "Side",
  38990. image: {
  38991. source: "./media/characters/keegan/side.svg",
  38992. extra: 2390/2202,
  38993. bottom: 47/2437
  38994. }
  38995. },
  38996. back: {
  38997. height: math.unit(6 + 5/12, "feet"),
  38998. weight: math.unit(650, "lb"),
  38999. name: "Back",
  39000. image: {
  39001. source: "./media/characters/keegan/back.svg",
  39002. extra: 2418/2268,
  39003. bottom: 15/2433
  39004. }
  39005. },
  39006. frontSfw: {
  39007. height: math.unit(6 + 5/12, "feet"),
  39008. weight: math.unit(650, "lb"),
  39009. name: "Front (SFW)",
  39010. image: {
  39011. source: "./media/characters/keegan/front-sfw.svg",
  39012. extra: 2387/2198,
  39013. bottom: 33/2420
  39014. }
  39015. },
  39016. beans: {
  39017. height: math.unit(1.85, "feet"),
  39018. name: "Beans",
  39019. image: {
  39020. source: "./media/characters/keegan/beans.svg"
  39021. }
  39022. },
  39023. },
  39024. [
  39025. {
  39026. name: "Normal",
  39027. height: math.unit(6 + 5/12, "feet"),
  39028. default: true
  39029. },
  39030. ]
  39031. ))
  39032. characterMakers.push(() => makeCharacter(
  39033. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39034. {
  39035. front: {
  39036. height: math.unit(9, "feet"),
  39037. name: "Front",
  39038. image: {
  39039. source: "./media/characters/colton/front.svg",
  39040. extra: 1589/1326,
  39041. bottom: 139/1728
  39042. }
  39043. },
  39044. },
  39045. [
  39046. {
  39047. name: "Normal",
  39048. height: math.unit(9, "feet"),
  39049. default: true
  39050. },
  39051. ]
  39052. ))
  39053. characterMakers.push(() => makeCharacter(
  39054. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39055. {
  39056. front: {
  39057. height: math.unit(2 + 9/12, "feet"),
  39058. name: "Front",
  39059. image: {
  39060. source: "./media/characters/bora/front.svg",
  39061. extra: 1265/1250,
  39062. bottom: 24/1289
  39063. }
  39064. },
  39065. },
  39066. [
  39067. {
  39068. name: "Normal",
  39069. height: math.unit(2 + 9/12, "feet"),
  39070. default: true
  39071. },
  39072. ]
  39073. ))
  39074. characterMakers.push(() => makeCharacter(
  39075. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39076. {
  39077. front: {
  39078. height: math.unit(8, "feet"),
  39079. name: "Front",
  39080. image: {
  39081. source: "./media/characters/myu-myu/front.svg",
  39082. extra: 1949/1857,
  39083. bottom: 90/2039
  39084. }
  39085. },
  39086. },
  39087. [
  39088. {
  39089. name: "Normal",
  39090. height: math.unit(8, "feet"),
  39091. default: true
  39092. },
  39093. {
  39094. name: "Big",
  39095. height: math.unit(15, "feet")
  39096. },
  39097. {
  39098. name: "BIG",
  39099. height: math.unit(25, "feet")
  39100. },
  39101. ]
  39102. ))
  39103. characterMakers.push(() => makeCharacter(
  39104. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39105. {
  39106. side: {
  39107. height: math.unit(7 + 5/12, "feet"),
  39108. weight: math.unit(2800, "lb"),
  39109. name: "Side",
  39110. image: {
  39111. source: "./media/characters/haloren/side.svg",
  39112. extra: 1793/409,
  39113. bottom: 59/1852
  39114. }
  39115. },
  39116. frontPaw: {
  39117. height: math.unit(2.36, "feet"),
  39118. name: "Front paw",
  39119. image: {
  39120. source: "./media/characters/haloren/front-paw.svg"
  39121. }
  39122. },
  39123. hindPaw: {
  39124. height: math.unit(3.18, "feet"),
  39125. name: "Hind paw",
  39126. image: {
  39127. source: "./media/characters/haloren/hind-paw.svg"
  39128. }
  39129. },
  39130. maw: {
  39131. height: math.unit(5.05, "feet"),
  39132. name: "Maw",
  39133. image: {
  39134. source: "./media/characters/haloren/maw.svg"
  39135. }
  39136. },
  39137. dick: {
  39138. height: math.unit(2.90, "feet"),
  39139. name: "Dick",
  39140. image: {
  39141. source: "./media/characters/haloren/dick.svg"
  39142. }
  39143. },
  39144. },
  39145. [
  39146. {
  39147. name: "Normal",
  39148. height: math.unit(7 + 5/12, "feet"),
  39149. default: true
  39150. },
  39151. {
  39152. name: "Enhanced",
  39153. height: math.unit(14 + 3/12, "feet")
  39154. },
  39155. ]
  39156. ))
  39157. characterMakers.push(() => makeCharacter(
  39158. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39159. {
  39160. front: {
  39161. height: math.unit(171, "cm"),
  39162. name: "Front",
  39163. image: {
  39164. source: "./media/characters/kimmy/front.svg",
  39165. extra: 1491/1435,
  39166. bottom: 53/1544
  39167. }
  39168. },
  39169. },
  39170. [
  39171. {
  39172. name: "Small",
  39173. height: math.unit(9, "cm")
  39174. },
  39175. {
  39176. name: "Normal",
  39177. height: math.unit(171, "cm"),
  39178. default: true
  39179. },
  39180. ]
  39181. ))
  39182. characterMakers.push(() => makeCharacter(
  39183. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39184. {
  39185. front: {
  39186. height: math.unit(8, "feet"),
  39187. weight: math.unit(300, "lb"),
  39188. name: "Front",
  39189. image: {
  39190. source: "./media/characters/galeboomer/front.svg",
  39191. extra: 4651/4415,
  39192. bottom: 162/4813
  39193. }
  39194. },
  39195. back: {
  39196. height: math.unit(8, "feet"),
  39197. weight: math.unit(300, "lb"),
  39198. name: "Back",
  39199. image: {
  39200. source: "./media/characters/galeboomer/back.svg",
  39201. extra: 4544/4314,
  39202. bottom: 16/4560
  39203. }
  39204. },
  39205. frontAlt: {
  39206. height: math.unit(8, "feet"),
  39207. weight: math.unit(300, "lb"),
  39208. name: "Front (Alt)",
  39209. image: {
  39210. source: "./media/characters/galeboomer/front-alt.svg",
  39211. extra: 4458/4228,
  39212. bottom: 68/4526
  39213. }
  39214. },
  39215. maw: {
  39216. height: math.unit(1.2, "feet"),
  39217. name: "Maw",
  39218. image: {
  39219. source: "./media/characters/galeboomer/maw.svg"
  39220. }
  39221. },
  39222. },
  39223. [
  39224. {
  39225. name: "Normal",
  39226. height: math.unit(8, "feet"),
  39227. default: true
  39228. },
  39229. ]
  39230. ))
  39231. characterMakers.push(() => makeCharacter(
  39232. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39233. {
  39234. front: {
  39235. height: math.unit(5 + 9/12, "feet"),
  39236. weight: math.unit(120, "lb"),
  39237. name: "Front",
  39238. image: {
  39239. source: "./media/characters/chyr/front.svg",
  39240. extra: 1323/1254,
  39241. bottom: 63/1386
  39242. }
  39243. },
  39244. back: {
  39245. height: math.unit(5 + 9/12, "feet"),
  39246. weight: math.unit(120, "lb"),
  39247. name: "Back",
  39248. image: {
  39249. source: "./media/characters/chyr/back.svg",
  39250. extra: 1323/1252,
  39251. bottom: 48/1371
  39252. }
  39253. },
  39254. },
  39255. [
  39256. {
  39257. name: "Normal",
  39258. height: math.unit(5 + 9/12, "feet"),
  39259. default: true
  39260. },
  39261. ]
  39262. ))
  39263. characterMakers.push(() => makeCharacter(
  39264. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39265. {
  39266. front: {
  39267. height: math.unit(7, "feet"),
  39268. weight: math.unit(310, "lb"),
  39269. name: "Front",
  39270. image: {
  39271. source: "./media/characters/solarus/front.svg",
  39272. extra: 2415/2021,
  39273. bottom: 103/2518
  39274. }
  39275. },
  39276. back: {
  39277. height: math.unit(7, "feet"),
  39278. weight: math.unit(310, "lb"),
  39279. name: "Back",
  39280. image: {
  39281. source: "./media/characters/solarus/back.svg",
  39282. extra: 2463/2089,
  39283. bottom: 79/2542
  39284. }
  39285. },
  39286. },
  39287. [
  39288. {
  39289. name: "Normal",
  39290. height: math.unit(7, "feet"),
  39291. default: true
  39292. },
  39293. ]
  39294. ))
  39295. characterMakers.push(() => makeCharacter(
  39296. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39297. {
  39298. front: {
  39299. height: math.unit(16, "feet"),
  39300. name: "Front",
  39301. image: {
  39302. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39303. extra: 1844/1780,
  39304. bottom: 58/1902
  39305. }
  39306. },
  39307. winterCoat: {
  39308. height: math.unit(16, "feet"),
  39309. name: "Winter Coat",
  39310. image: {
  39311. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39312. extra: 1807/1775,
  39313. bottom: 69/1876
  39314. }
  39315. },
  39316. },
  39317. [
  39318. {
  39319. name: "Normal",
  39320. height: math.unit(16, "feet"),
  39321. default: true
  39322. },
  39323. {
  39324. name: "Chicago Size",
  39325. height: math.unit(560, "feet")
  39326. },
  39327. ]
  39328. ))
  39329. characterMakers.push(() => makeCharacter(
  39330. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39331. {
  39332. front: {
  39333. height: math.unit(11 + 6/12, "feet"),
  39334. weight: math.unit(1366, "lb"),
  39335. name: "Front",
  39336. image: {
  39337. source: "./media/characters/lexor/front.svg",
  39338. extra: 1560/1481,
  39339. bottom: 211/1771
  39340. }
  39341. },
  39342. back: {
  39343. height: math.unit(11 + 6/12, "feet"),
  39344. weight: math.unit(1366, "lb"),
  39345. name: "Back",
  39346. image: {
  39347. source: "./media/characters/lexor/back.svg",
  39348. extra: 1614/1533,
  39349. bottom: 76/1690
  39350. }
  39351. },
  39352. maw: {
  39353. height: math.unit(3, "feet"),
  39354. name: "Maw",
  39355. image: {
  39356. source: "./media/characters/lexor/maw.svg"
  39357. }
  39358. },
  39359. dick: {
  39360. height: math.unit(2.59, "feet"),
  39361. name: "Dick",
  39362. image: {
  39363. source: "./media/characters/lexor/dick.svg"
  39364. }
  39365. },
  39366. },
  39367. [
  39368. {
  39369. name: "Normal",
  39370. height: math.unit(11 + 6/12, "feet"),
  39371. default: true
  39372. },
  39373. ]
  39374. ))
  39375. characterMakers.push(() => makeCharacter(
  39376. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39377. {
  39378. front: {
  39379. height: math.unit(5 + 8/12, "feet"),
  39380. name: "Front",
  39381. image: {
  39382. source: "./media/characters/magnum/front.svg",
  39383. extra: 942/855,
  39384. bottom: 26/968
  39385. }
  39386. },
  39387. },
  39388. [
  39389. {
  39390. name: "Normal",
  39391. height: math.unit(5 + 8/12, "feet"),
  39392. default: true
  39393. },
  39394. ]
  39395. ))
  39396. characterMakers.push(() => makeCharacter(
  39397. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39398. {
  39399. front: {
  39400. height: math.unit(18 + 4/12, "feet"),
  39401. weight: math.unit(1500, "kg"),
  39402. name: "Front",
  39403. image: {
  39404. source: "./media/characters/solas-sharpsman/front.svg",
  39405. extra: 1698/1589,
  39406. bottom: 0/1698
  39407. }
  39408. },
  39409. },
  39410. [
  39411. {
  39412. name: "Normal",
  39413. height: math.unit(18 + 4/12, "feet"),
  39414. default: true
  39415. },
  39416. ]
  39417. ))
  39418. characterMakers.push(() => makeCharacter(
  39419. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39420. {
  39421. front: {
  39422. height: math.unit(5 + 5/12, "feet"),
  39423. weight: math.unit(180, "lb"),
  39424. name: "Front",
  39425. image: {
  39426. source: "./media/characters/october/front.svg",
  39427. extra: 1800/1650,
  39428. bottom: 0/1800
  39429. }
  39430. },
  39431. frontNsfw: {
  39432. height: math.unit(5 + 5/12, "feet"),
  39433. weight: math.unit(180, "lb"),
  39434. name: "Front (NSFW)",
  39435. image: {
  39436. source: "./media/characters/october/front-nsfw.svg",
  39437. extra: 1392/1307,
  39438. bottom: 42/1434
  39439. }
  39440. },
  39441. },
  39442. [
  39443. {
  39444. name: "Normal",
  39445. height: math.unit(5 + 5/12, "feet"),
  39446. default: true
  39447. },
  39448. ]
  39449. ))
  39450. characterMakers.push(() => makeCharacter(
  39451. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39452. {
  39453. front: {
  39454. height: math.unit(8 + 6/12, "feet"),
  39455. name: "Front",
  39456. image: {
  39457. source: "./media/characters/essynkardi/front.svg",
  39458. extra: 1541/1457,
  39459. bottom: 47/1588
  39460. }
  39461. },
  39462. },
  39463. [
  39464. {
  39465. name: "Normal",
  39466. height: math.unit(8 + 6/12, "feet"),
  39467. default: true
  39468. },
  39469. ]
  39470. ))
  39471. characterMakers.push(() => makeCharacter(
  39472. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39473. {
  39474. front: {
  39475. height: math.unit(6 + 6/12, "feet"),
  39476. weight: math.unit(7, "lb"),
  39477. name: "Front",
  39478. image: {
  39479. source: "./media/characters/icky/front.svg",
  39480. extra: 813/782,
  39481. bottom: 66/879
  39482. }
  39483. },
  39484. back: {
  39485. height: math.unit(6 + 6/12, "feet"),
  39486. weight: math.unit(7, "lb"),
  39487. name: "Back",
  39488. image: {
  39489. source: "./media/characters/icky/back.svg",
  39490. extra: 754/735,
  39491. bottom: 56/810
  39492. }
  39493. },
  39494. },
  39495. [
  39496. {
  39497. name: "Normal",
  39498. height: math.unit(6 + 6/12, "feet"),
  39499. default: true
  39500. },
  39501. ]
  39502. ))
  39503. characterMakers.push(() => makeCharacter(
  39504. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39505. {
  39506. front: {
  39507. height: math.unit(15, "feet"),
  39508. name: "Front",
  39509. image: {
  39510. source: "./media/characters/rojas/front.svg",
  39511. extra: 1462/1408,
  39512. bottom: 95/1557
  39513. }
  39514. },
  39515. back: {
  39516. height: math.unit(15, "feet"),
  39517. name: "Back",
  39518. image: {
  39519. source: "./media/characters/rojas/back.svg",
  39520. extra: 1023/954,
  39521. bottom: 28/1051
  39522. }
  39523. },
  39524. },
  39525. [
  39526. {
  39527. name: "Normal",
  39528. height: math.unit(15, "feet"),
  39529. default: true
  39530. },
  39531. ]
  39532. ))
  39533. characterMakers.push(() => makeCharacter(
  39534. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39535. {
  39536. frontHuman: {
  39537. height: math.unit(5 + 7/12, "feet"),
  39538. name: "Front (Human)",
  39539. image: {
  39540. source: "./media/characters/alek-dryagan/front-human.svg",
  39541. extra: 1687/1667,
  39542. bottom: 69/1756
  39543. }
  39544. },
  39545. backHuman: {
  39546. height: math.unit(5 + 7/12, "feet"),
  39547. name: "Back (Human)",
  39548. image: {
  39549. source: "./media/characters/alek-dryagan/back-human.svg",
  39550. extra: 1670/1649,
  39551. bottom: 65/1735
  39552. }
  39553. },
  39554. frontDemi: {
  39555. height: math.unit(65, "feet"),
  39556. name: "Front (Demi)",
  39557. image: {
  39558. source: "./media/characters/alek-dryagan/front-demi.svg",
  39559. extra: 1669/1642,
  39560. bottom: 49/1718
  39561. }
  39562. },
  39563. backDemi: {
  39564. height: math.unit(65, "feet"),
  39565. name: "Back (Demi)",
  39566. image: {
  39567. source: "./media/characters/alek-dryagan/back-demi.svg",
  39568. extra: 1658/1637,
  39569. bottom: 40/1698
  39570. }
  39571. },
  39572. mawHuman: {
  39573. height: math.unit(0.3, "feet"),
  39574. name: "Maw (Human)",
  39575. image: {
  39576. source: "./media/characters/alek-dryagan/maw-human.svg"
  39577. }
  39578. },
  39579. mawDemi: {
  39580. height: math.unit(3.8, "feet"),
  39581. name: "Maw (Demi)",
  39582. image: {
  39583. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39584. }
  39585. },
  39586. },
  39587. [
  39588. {
  39589. name: "Normal",
  39590. height: math.unit(5 + 7/12, "feet"),
  39591. default: true
  39592. },
  39593. ]
  39594. ))
  39595. characterMakers.push(() => makeCharacter(
  39596. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39597. {
  39598. frontHuman: {
  39599. height: math.unit(5 + 2/12, "feet"),
  39600. name: "Front (Human)",
  39601. image: {
  39602. source: "./media/characters/gen/front-human.svg",
  39603. extra: 1627/1538,
  39604. bottom: 71/1698
  39605. }
  39606. },
  39607. backHuman: {
  39608. height: math.unit(5 + 2/12, "feet"),
  39609. name: "Back (Human)",
  39610. image: {
  39611. source: "./media/characters/gen/back-human.svg",
  39612. extra: 1638/1548,
  39613. bottom: 69/1707
  39614. }
  39615. },
  39616. frontDemi: {
  39617. height: math.unit(5 + 2/12, "feet"),
  39618. name: "Front (Demi)",
  39619. image: {
  39620. source: "./media/characters/gen/front-demi.svg",
  39621. extra: 1627/1538,
  39622. bottom: 71/1698
  39623. }
  39624. },
  39625. backDemi: {
  39626. height: math.unit(5 + 2/12, "feet"),
  39627. name: "Back (Demi)",
  39628. image: {
  39629. source: "./media/characters/gen/back-demi.svg",
  39630. extra: 1638/1548,
  39631. bottom: 69/1707
  39632. }
  39633. },
  39634. },
  39635. [
  39636. {
  39637. name: "Normal",
  39638. height: math.unit(5 + 2/12, "feet"),
  39639. default: true
  39640. },
  39641. ]
  39642. ))
  39643. characterMakers.push(() => makeCharacter(
  39644. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39645. {
  39646. frontImp: {
  39647. height: math.unit(1 + 11/12, "feet"),
  39648. name: "Front (Imp)",
  39649. image: {
  39650. source: "./media/characters/max-kobold/front-imp.svg",
  39651. extra: 1238/1134,
  39652. bottom: 81/1319
  39653. }
  39654. },
  39655. backImp: {
  39656. height: math.unit(1 + 11/12, "feet"),
  39657. name: "Back (Imp)",
  39658. image: {
  39659. source: "./media/characters/max-kobold/back-imp.svg",
  39660. extra: 1334/1175,
  39661. bottom: 34/1368
  39662. }
  39663. },
  39664. frontDemi: {
  39665. height: math.unit(5 + 9/12, "feet"),
  39666. name: "Front (Demi)",
  39667. image: {
  39668. source: "./media/characters/max-kobold/front-demi.svg",
  39669. extra: 1715/1685,
  39670. bottom: 54/1769
  39671. }
  39672. },
  39673. backDemi: {
  39674. height: math.unit(5 + 9/12, "feet"),
  39675. name: "Back (Demi)",
  39676. image: {
  39677. source: "./media/characters/max-kobold/back-demi.svg",
  39678. extra: 1752/1729,
  39679. bottom: 41/1793
  39680. }
  39681. },
  39682. handImp: {
  39683. height: math.unit(0.45, "feet"),
  39684. name: "Hand (Imp)",
  39685. image: {
  39686. source: "./media/characters/max-kobold/hand.svg"
  39687. }
  39688. },
  39689. pawImp: {
  39690. height: math.unit(0.46, "feet"),
  39691. name: "Paw (Imp)",
  39692. image: {
  39693. source: "./media/characters/max-kobold/paw.svg"
  39694. }
  39695. },
  39696. handDemi: {
  39697. height: math.unit(0.80, "feet"),
  39698. name: "Hand (Demi)",
  39699. image: {
  39700. source: "./media/characters/max-kobold/hand.svg"
  39701. }
  39702. },
  39703. pawDemi: {
  39704. height: math.unit(1.1, "feet"),
  39705. name: "Paw (Demi)",
  39706. image: {
  39707. source: "./media/characters/max-kobold/paw.svg"
  39708. }
  39709. },
  39710. headImp: {
  39711. height: math.unit(1.33, "feet"),
  39712. name: "Head (Imp)",
  39713. image: {
  39714. source: "./media/characters/max-kobold/head-imp.svg"
  39715. }
  39716. },
  39717. mawImp: {
  39718. height: math.unit(0.75, "feet"),
  39719. name: "Maw (Imp)",
  39720. image: {
  39721. source: "./media/characters/max-kobold/maw-imp.svg"
  39722. }
  39723. },
  39724. mawDemi: {
  39725. height: math.unit(0.42, "feet"),
  39726. name: "Maw (Demi)",
  39727. image: {
  39728. source: "./media/characters/max-kobold/maw-demi.svg"
  39729. }
  39730. },
  39731. },
  39732. [
  39733. {
  39734. name: "Normal",
  39735. height: math.unit(1 + 11/12, "feet"),
  39736. default: true
  39737. },
  39738. ]
  39739. ))
  39740. characterMakers.push(() => makeCharacter(
  39741. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39742. {
  39743. front: {
  39744. height: math.unit(7 + 5/12, "feet"),
  39745. name: "Front",
  39746. image: {
  39747. source: "./media/characters/carbon/front.svg",
  39748. extra: 1754/1689,
  39749. bottom: 65/1819
  39750. }
  39751. },
  39752. back: {
  39753. height: math.unit(7 + 5/12, "feet"),
  39754. name: "Back",
  39755. image: {
  39756. source: "./media/characters/carbon/back.svg",
  39757. extra: 1762/1695,
  39758. bottom: 24/1786
  39759. }
  39760. },
  39761. frontGigantamax: {
  39762. height: math.unit(150, "feet"),
  39763. name: "Front (Gigantamax)",
  39764. image: {
  39765. source: "./media/characters/carbon/front-gigantamax.svg",
  39766. extra: 1826/1669,
  39767. bottom: 59/1885
  39768. }
  39769. },
  39770. backGigantamax: {
  39771. height: math.unit(150, "feet"),
  39772. name: "Back (Gigantamax)",
  39773. image: {
  39774. source: "./media/characters/carbon/back-gigantamax.svg",
  39775. extra: 1796/1653,
  39776. bottom: 53/1849
  39777. }
  39778. },
  39779. maw: {
  39780. height: math.unit(0.48, "feet"),
  39781. name: "Maw",
  39782. image: {
  39783. source: "./media/characters/carbon/maw.svg"
  39784. }
  39785. },
  39786. mawGigantamax: {
  39787. height: math.unit(7.5, "feet"),
  39788. name: "Maw (Gigantamax)",
  39789. image: {
  39790. source: "./media/characters/carbon/maw-gigantamax.svg"
  39791. }
  39792. },
  39793. },
  39794. [
  39795. {
  39796. name: "Normal",
  39797. height: math.unit(7 + 5/12, "feet"),
  39798. default: true
  39799. },
  39800. ]
  39801. ))
  39802. characterMakers.push(() => makeCharacter(
  39803. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39804. {
  39805. front: {
  39806. height: math.unit(6, "feet"),
  39807. name: "Front",
  39808. image: {
  39809. source: "./media/characters/maverick/front.svg",
  39810. extra: 1672/1661,
  39811. bottom: 85/1757
  39812. }
  39813. },
  39814. back: {
  39815. height: math.unit(6, "feet"),
  39816. name: "Back",
  39817. image: {
  39818. source: "./media/characters/maverick/back.svg",
  39819. extra: 1642/1631,
  39820. bottom: 38/1680
  39821. }
  39822. },
  39823. },
  39824. [
  39825. {
  39826. name: "Normal",
  39827. height: math.unit(6, "feet"),
  39828. default: true
  39829. },
  39830. ]
  39831. ))
  39832. characterMakers.push(() => makeCharacter(
  39833. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39834. {
  39835. front: {
  39836. height: math.unit(15, "feet"),
  39837. weight: math.unit(615, "lb"),
  39838. name: "Front",
  39839. image: {
  39840. source: "./media/characters/grockle/front.svg",
  39841. extra: 1535/1427,
  39842. bottom: 56/1591
  39843. }
  39844. },
  39845. },
  39846. [
  39847. {
  39848. name: "Normal",
  39849. height: math.unit(15, "feet"),
  39850. default: true
  39851. },
  39852. {
  39853. name: "Large",
  39854. height: math.unit(150, "feet")
  39855. },
  39856. {
  39857. name: "Macro",
  39858. height: math.unit(1876, "feet")
  39859. },
  39860. {
  39861. name: "Mega Macro",
  39862. height: math.unit(121940, "feet")
  39863. },
  39864. {
  39865. name: "Giga Macro",
  39866. height: math.unit(750, "km")
  39867. },
  39868. {
  39869. name: "Tera Macro",
  39870. height: math.unit(750000, "km")
  39871. },
  39872. {
  39873. name: "Galactic",
  39874. height: math.unit(1.4e5, "km")
  39875. },
  39876. {
  39877. name: "Godlike",
  39878. height: math.unit(9.8e280, "galaxies")
  39879. },
  39880. ]
  39881. ))
  39882. characterMakers.push(() => makeCharacter(
  39883. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39884. {
  39885. front: {
  39886. height: math.unit(11, "meters"),
  39887. weight: math.unit(20, "tonnes"),
  39888. name: "Front",
  39889. image: {
  39890. source: "./media/characters/alistair/front.svg",
  39891. extra: 1265/1009,
  39892. bottom: 93/1358
  39893. }
  39894. },
  39895. },
  39896. [
  39897. {
  39898. name: "Normal",
  39899. height: math.unit(11, "meters"),
  39900. default: true
  39901. },
  39902. ]
  39903. ))
  39904. characterMakers.push(() => makeCharacter(
  39905. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39906. {
  39907. front: {
  39908. height: math.unit(5 + 8/12, "feet"),
  39909. name: "Front",
  39910. image: {
  39911. source: "./media/characters/haruka/front.svg",
  39912. extra: 2012/1952,
  39913. bottom: 0/2012
  39914. }
  39915. },
  39916. },
  39917. [
  39918. {
  39919. name: "Normal",
  39920. height: math.unit(5 + 8/12, "feet"),
  39921. default: true
  39922. },
  39923. ]
  39924. ))
  39925. characterMakers.push(() => makeCharacter(
  39926. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39927. {
  39928. back: {
  39929. height: math.unit(9, "feet"),
  39930. name: "Back",
  39931. image: {
  39932. source: "./media/characters/vivian-sylveon/back.svg",
  39933. extra: 1853/1714,
  39934. bottom: 0/1853
  39935. }
  39936. },
  39937. hyper: {
  39938. height: math.unit(5.58, "feet"),
  39939. name: "Hyper",
  39940. preyCapacity: math.unit(2.80616218797, "m^3"),
  39941. image: {
  39942. source: "./media/characters/vivian-sylveon/hyper.svg",
  39943. extra: 999/676,
  39944. bottom: 697/1696
  39945. },
  39946. },
  39947. paw: {
  39948. height: math.unit(1.8, "feet"),
  39949. name: "Paw",
  39950. image: {
  39951. source: "./media/characters/vivian-sylveon/paw.svg"
  39952. }
  39953. },
  39954. danger: {
  39955. height: math.unit(7.5, "feet"),
  39956. name: "DANGER",
  39957. image: {
  39958. source: "./media/characters/vivian-sylveon/danger.svg"
  39959. }
  39960. },
  39961. },
  39962. [
  39963. {
  39964. name: "Normal",
  39965. height: math.unit(9, "feet"),
  39966. default: true
  39967. },
  39968. {
  39969. name: "Macro",
  39970. height: math.unit(500, "feet")
  39971. },
  39972. {
  39973. name: "Megamacro",
  39974. height: math.unit(600, "miles")
  39975. },
  39976. {
  39977. name: "Gigamacro",
  39978. height: math.unit(30000, "miles")
  39979. },
  39980. ]
  39981. ))
  39982. characterMakers.push(() => makeCharacter(
  39983. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39984. {
  39985. anthro: {
  39986. height: math.unit(5 + 10/12, "feet"),
  39987. weight: math.unit(100, "lb"),
  39988. name: "Anthro",
  39989. image: {
  39990. source: "./media/characters/daiki/anthro.svg",
  39991. extra: 1115/1027,
  39992. bottom: 69/1184
  39993. }
  39994. },
  39995. feral: {
  39996. height: math.unit(200, "feet"),
  39997. name: "Feral",
  39998. image: {
  39999. source: "./media/characters/daiki/feral.svg",
  40000. extra: 1256/313,
  40001. bottom: 39/1295
  40002. }
  40003. },
  40004. feralHead: {
  40005. height: math.unit(171, "feet"),
  40006. name: "Feral Head",
  40007. image: {
  40008. source: "./media/characters/daiki/feral-head.svg"
  40009. }
  40010. },
  40011. manaDragon: {
  40012. height: math.unit(170, "meters"),
  40013. name: "Mana-dragon",
  40014. image: {
  40015. source: "./media/characters/daiki/mana-dragon.svg",
  40016. extra: 763/420,
  40017. bottom: 97/860
  40018. }
  40019. },
  40020. },
  40021. [
  40022. {
  40023. name: "Normal",
  40024. height: math.unit(5 + 10/12, "feet"),
  40025. default: true
  40026. },
  40027. ]
  40028. ))
  40029. characterMakers.push(() => makeCharacter(
  40030. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40031. {
  40032. fullyEquippedFront: {
  40033. height: math.unit(3 + 1/12, "feet"),
  40034. weight: math.unit(24, "lb"),
  40035. name: "Fully Equipped (Front)",
  40036. image: {
  40037. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40038. extra: 687/605,
  40039. bottom: 18/705
  40040. }
  40041. },
  40042. fullyEquippedBack: {
  40043. height: math.unit(3 + 1/12, "feet"),
  40044. weight: math.unit(24, "lb"),
  40045. name: "Fully Equipped (Back)",
  40046. image: {
  40047. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40048. extra: 689/590,
  40049. bottom: 18/707
  40050. }
  40051. },
  40052. dailyWear: {
  40053. height: math.unit(3 + 1/12, "feet"),
  40054. weight: math.unit(24, "lb"),
  40055. name: "Daily Wear",
  40056. image: {
  40057. source: "./media/characters/tea-spot/daily-wear.svg",
  40058. extra: 701/620,
  40059. bottom: 21/722
  40060. }
  40061. },
  40062. maidWork: {
  40063. height: math.unit(3 + 1/12, "feet"),
  40064. weight: math.unit(24, "lb"),
  40065. name: "Maid Work",
  40066. image: {
  40067. source: "./media/characters/tea-spot/maid-work.svg",
  40068. extra: 693/609,
  40069. bottom: 15/708
  40070. }
  40071. },
  40072. },
  40073. [
  40074. {
  40075. name: "Normal",
  40076. height: math.unit(3 + 1/12, "feet"),
  40077. default: true
  40078. },
  40079. ]
  40080. ))
  40081. characterMakers.push(() => makeCharacter(
  40082. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40083. {
  40084. front: {
  40085. height: math.unit(175, "cm"),
  40086. weight: math.unit(75, "kg"),
  40087. name: "Front",
  40088. image: {
  40089. source: "./media/characters/chee/front.svg",
  40090. extra: 1796/1740,
  40091. bottom: 40/1836
  40092. }
  40093. },
  40094. },
  40095. [
  40096. {
  40097. name: "Micro-Micro",
  40098. height: math.unit(1, "nm")
  40099. },
  40100. {
  40101. name: "Micro-erst",
  40102. height: math.unit(1, "micrometer")
  40103. },
  40104. {
  40105. name: "Micro-er",
  40106. height: math.unit(1, "cm")
  40107. },
  40108. {
  40109. name: "Normal",
  40110. height: math.unit(175, "cm"),
  40111. default: true
  40112. },
  40113. {
  40114. name: "Macro",
  40115. height: math.unit(100, "m")
  40116. },
  40117. {
  40118. name: "Macro-er",
  40119. height: math.unit(1, "km")
  40120. },
  40121. {
  40122. name: "Macro-erst",
  40123. height: math.unit(10, "km")
  40124. },
  40125. {
  40126. name: "Macro-Macro",
  40127. height: math.unit(100, "km")
  40128. },
  40129. ]
  40130. ))
  40131. characterMakers.push(() => makeCharacter(
  40132. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40133. {
  40134. front: {
  40135. height: math.unit(11 + 9/12, "feet"),
  40136. weight: math.unit(935, "lb"),
  40137. name: "Front",
  40138. image: {
  40139. source: "./media/characters/kingsley/front.svg",
  40140. extra: 1803/1674,
  40141. bottom: 127/1930
  40142. }
  40143. },
  40144. frontNude: {
  40145. height: math.unit(11 + 9/12, "feet"),
  40146. weight: math.unit(935, "lb"),
  40147. name: "Front (Nude)",
  40148. image: {
  40149. source: "./media/characters/kingsley/front-nude.svg",
  40150. extra: 1803/1674,
  40151. bottom: 127/1930
  40152. }
  40153. },
  40154. },
  40155. [
  40156. {
  40157. name: "Normal",
  40158. height: math.unit(11 + 9/12, "feet"),
  40159. default: true
  40160. },
  40161. ]
  40162. ))
  40163. characterMakers.push(() => makeCharacter(
  40164. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40165. {
  40166. side: {
  40167. height: math.unit(9, "feet"),
  40168. name: "Side",
  40169. image: {
  40170. source: "./media/characters/rymel/side.svg",
  40171. extra: 792/469,
  40172. bottom: 121/913
  40173. }
  40174. },
  40175. maw: {
  40176. height: math.unit(2.4, "meters"),
  40177. name: "Maw",
  40178. image: {
  40179. source: "./media/characters/rymel/maw.svg"
  40180. }
  40181. },
  40182. },
  40183. [
  40184. {
  40185. name: "House Drake",
  40186. height: math.unit(2, "feet")
  40187. },
  40188. {
  40189. name: "Reduced",
  40190. height: math.unit(4.5, "feet")
  40191. },
  40192. {
  40193. name: "Normal",
  40194. height: math.unit(9, "feet"),
  40195. default: true
  40196. },
  40197. ]
  40198. ))
  40199. characterMakers.push(() => makeCharacter(
  40200. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40201. {
  40202. front: {
  40203. height: math.unit(1.74, "meters"),
  40204. weight: math.unit(55, "kg"),
  40205. name: "Front",
  40206. image: {
  40207. source: "./media/characters/rubus/front.svg",
  40208. extra: 1894/1742,
  40209. bottom: 44/1938
  40210. }
  40211. },
  40212. },
  40213. [
  40214. {
  40215. name: "Normal",
  40216. height: math.unit(1.74, "meters"),
  40217. default: true
  40218. },
  40219. ]
  40220. ))
  40221. characterMakers.push(() => makeCharacter(
  40222. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40223. {
  40224. front: {
  40225. height: math.unit(5 + 2/12, "feet"),
  40226. weight: math.unit(112, "lb"),
  40227. name: "Front",
  40228. image: {
  40229. source: "./media/characters/cassie-kingston/front.svg",
  40230. extra: 1438/1390,
  40231. bottom: 47/1485
  40232. }
  40233. },
  40234. },
  40235. [
  40236. {
  40237. name: "Normal",
  40238. height: math.unit(5 + 2/12, "feet"),
  40239. default: true
  40240. },
  40241. {
  40242. name: "Macro",
  40243. height: math.unit(128, "feet")
  40244. },
  40245. {
  40246. name: "Megamacro",
  40247. height: math.unit(2.56, "miles")
  40248. },
  40249. ]
  40250. ))
  40251. characterMakers.push(() => makeCharacter(
  40252. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40253. {
  40254. front: {
  40255. height: math.unit(7, "feet"),
  40256. name: "Front",
  40257. image: {
  40258. source: "./media/characters/fox/front.svg",
  40259. extra: 1798/1703,
  40260. bottom: 55/1853
  40261. }
  40262. },
  40263. back: {
  40264. height: math.unit(7, "feet"),
  40265. name: "Back",
  40266. image: {
  40267. source: "./media/characters/fox/back.svg",
  40268. extra: 1748/1649,
  40269. bottom: 32/1780
  40270. }
  40271. },
  40272. head: {
  40273. height: math.unit(1.95, "feet"),
  40274. name: "Head",
  40275. image: {
  40276. source: "./media/characters/fox/head.svg"
  40277. }
  40278. },
  40279. dick: {
  40280. height: math.unit(1.33, "feet"),
  40281. name: "Dick",
  40282. image: {
  40283. source: "./media/characters/fox/dick.svg"
  40284. }
  40285. },
  40286. foot: {
  40287. height: math.unit(1, "feet"),
  40288. name: "Foot",
  40289. image: {
  40290. source: "./media/characters/fox/foot.svg"
  40291. }
  40292. },
  40293. paw: {
  40294. height: math.unit(0.92, "feet"),
  40295. name: "Paw",
  40296. image: {
  40297. source: "./media/characters/fox/paw.svg"
  40298. }
  40299. },
  40300. },
  40301. [
  40302. {
  40303. name: "Small",
  40304. height: math.unit(3, "inches")
  40305. },
  40306. {
  40307. name: "\"Realistic\"",
  40308. height: math.unit(7, "feet")
  40309. },
  40310. {
  40311. name: "Normal",
  40312. height: math.unit(150, "feet"),
  40313. default: true
  40314. },
  40315. {
  40316. name: "BIG",
  40317. height: math.unit(1200, "feet")
  40318. },
  40319. {
  40320. name: "👀",
  40321. height: math.unit(5, "miles")
  40322. },
  40323. {
  40324. name: "👀👀👀",
  40325. height: math.unit(64, "miles")
  40326. },
  40327. ]
  40328. ))
  40329. characterMakers.push(() => makeCharacter(
  40330. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40331. {
  40332. front: {
  40333. height: math.unit(625, "feet"),
  40334. name: "Front",
  40335. image: {
  40336. source: "./media/characters/asonja-rossa/front.svg",
  40337. extra: 1833/1686,
  40338. bottom: 24/1857
  40339. }
  40340. },
  40341. back: {
  40342. height: math.unit(625, "feet"),
  40343. name: "Back",
  40344. image: {
  40345. source: "./media/characters/asonja-rossa/back.svg",
  40346. extra: 1852/1753,
  40347. bottom: 26/1878
  40348. }
  40349. },
  40350. },
  40351. [
  40352. {
  40353. name: "Macro",
  40354. height: math.unit(625, "feet"),
  40355. default: true
  40356. },
  40357. ]
  40358. ))
  40359. characterMakers.push(() => makeCharacter(
  40360. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40361. {
  40362. side: {
  40363. height: math.unit(8, "feet"),
  40364. name: "Side",
  40365. image: {
  40366. source: "./media/characters/rezukii/side.svg",
  40367. extra: 979/542,
  40368. bottom: 87/1066
  40369. }
  40370. },
  40371. sitting: {
  40372. height: math.unit(14.6, "feet"),
  40373. name: "Sitting",
  40374. image: {
  40375. source: "./media/characters/rezukii/sitting.svg",
  40376. extra: 1023/813,
  40377. bottom: 45/1068
  40378. }
  40379. },
  40380. },
  40381. [
  40382. {
  40383. name: "Tiny",
  40384. height: math.unit(2, "feet")
  40385. },
  40386. {
  40387. name: "Smol",
  40388. height: math.unit(4, "feet")
  40389. },
  40390. {
  40391. name: "Normal",
  40392. height: math.unit(8, "feet"),
  40393. default: true
  40394. },
  40395. {
  40396. name: "Big",
  40397. height: math.unit(12, "feet")
  40398. },
  40399. {
  40400. name: "Macro",
  40401. height: math.unit(30, "feet")
  40402. },
  40403. ]
  40404. ))
  40405. characterMakers.push(() => makeCharacter(
  40406. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40407. {
  40408. front: {
  40409. height: math.unit(14, "feet"),
  40410. weight: math.unit(9.5, "tonnes"),
  40411. name: "Front",
  40412. image: {
  40413. source: "./media/characters/dawnheart/front.svg",
  40414. extra: 2792/2675,
  40415. bottom: 64/2856
  40416. }
  40417. },
  40418. },
  40419. [
  40420. {
  40421. name: "Normal",
  40422. height: math.unit(14, "feet"),
  40423. default: true
  40424. },
  40425. ]
  40426. ))
  40427. characterMakers.push(() => makeCharacter(
  40428. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40429. {
  40430. front: {
  40431. height: math.unit(1.7, "m"),
  40432. name: "Front",
  40433. image: {
  40434. source: "./media/characters/gladi/front.svg",
  40435. extra: 1460/1362,
  40436. bottom: 19/1479
  40437. }
  40438. },
  40439. back: {
  40440. height: math.unit(1.7, "m"),
  40441. name: "Back",
  40442. image: {
  40443. source: "./media/characters/gladi/back.svg",
  40444. extra: 1459/1357,
  40445. bottom: 12/1471
  40446. }
  40447. },
  40448. feral: {
  40449. height: math.unit(2.05, "m"),
  40450. name: "Feral",
  40451. image: {
  40452. source: "./media/characters/gladi/feral.svg",
  40453. extra: 821/557,
  40454. bottom: 91/912
  40455. }
  40456. },
  40457. },
  40458. [
  40459. {
  40460. name: "Shortest",
  40461. height: math.unit(70, "cm")
  40462. },
  40463. {
  40464. name: "Normal",
  40465. height: math.unit(1.7, "m")
  40466. },
  40467. {
  40468. name: "Macro",
  40469. height: math.unit(10, "m"),
  40470. default: true
  40471. },
  40472. {
  40473. name: "Tallest",
  40474. height: math.unit(200, "m")
  40475. },
  40476. ]
  40477. ))
  40478. characterMakers.push(() => makeCharacter(
  40479. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40480. {
  40481. front: {
  40482. height: math.unit(5 + 7/12, "feet"),
  40483. weight: math.unit(2, "tons"),
  40484. name: "Front",
  40485. image: {
  40486. source: "./media/characters/erdno/front.svg",
  40487. extra: 1234/1129,
  40488. bottom: 35/1269
  40489. }
  40490. },
  40491. angled: {
  40492. height: math.unit(5 + 7/12, "feet"),
  40493. weight: math.unit(2, "tons"),
  40494. name: "Angled",
  40495. image: {
  40496. source: "./media/characters/erdno/angled.svg",
  40497. extra: 1185/1139,
  40498. bottom: 36/1221
  40499. }
  40500. },
  40501. side: {
  40502. height: math.unit(5 + 7/12, "feet"),
  40503. weight: math.unit(2, "tons"),
  40504. name: "Side",
  40505. image: {
  40506. source: "./media/characters/erdno/side.svg",
  40507. extra: 1191/1144,
  40508. bottom: 40/1231
  40509. }
  40510. },
  40511. back: {
  40512. height: math.unit(5 + 7/12, "feet"),
  40513. weight: math.unit(2, "tons"),
  40514. name: "Back",
  40515. image: {
  40516. source: "./media/characters/erdno/back.svg",
  40517. extra: 1202/1146,
  40518. bottom: 17/1219
  40519. }
  40520. },
  40521. frontNsfw: {
  40522. height: math.unit(5 + 7/12, "feet"),
  40523. weight: math.unit(2, "tons"),
  40524. name: "Front (NSFW)",
  40525. image: {
  40526. source: "./media/characters/erdno/front-nsfw.svg",
  40527. extra: 1234/1129,
  40528. bottom: 35/1269
  40529. }
  40530. },
  40531. angledNsfw: {
  40532. height: math.unit(5 + 7/12, "feet"),
  40533. weight: math.unit(2, "tons"),
  40534. name: "Angled (NSFW)",
  40535. image: {
  40536. source: "./media/characters/erdno/angled-nsfw.svg",
  40537. extra: 1185/1139,
  40538. bottom: 36/1221
  40539. }
  40540. },
  40541. sideNsfw: {
  40542. height: math.unit(5 + 7/12, "feet"),
  40543. weight: math.unit(2, "tons"),
  40544. name: "Side (NSFW)",
  40545. image: {
  40546. source: "./media/characters/erdno/side-nsfw.svg",
  40547. extra: 1191/1144,
  40548. bottom: 40/1231
  40549. }
  40550. },
  40551. backNsfw: {
  40552. height: math.unit(5 + 7/12, "feet"),
  40553. weight: math.unit(2, "tons"),
  40554. name: "Back (NSFW)",
  40555. image: {
  40556. source: "./media/characters/erdno/back-nsfw.svg",
  40557. extra: 1202/1146,
  40558. bottom: 17/1219
  40559. }
  40560. },
  40561. frontHyper: {
  40562. height: math.unit(5 + 7/12, "feet"),
  40563. weight: math.unit(2, "tons"),
  40564. name: "Front (Hyper)",
  40565. image: {
  40566. source: "./media/characters/erdno/front-hyper.svg",
  40567. extra: 1298/1136,
  40568. bottom: 35/1333
  40569. }
  40570. },
  40571. },
  40572. [
  40573. {
  40574. name: "Normal",
  40575. height: math.unit(5 + 7/12, "feet"),
  40576. default: true
  40577. },
  40578. {
  40579. name: "Big",
  40580. height: math.unit(5.7, "meters")
  40581. },
  40582. {
  40583. name: "Macro",
  40584. height: math.unit(5.7, "kilometers")
  40585. },
  40586. {
  40587. name: "Megamacro",
  40588. height: math.unit(5.7, "earths")
  40589. },
  40590. ]
  40591. ))
  40592. characterMakers.push(() => makeCharacter(
  40593. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40594. {
  40595. front: {
  40596. height: math.unit(5 + 10/12, "feet"),
  40597. weight: math.unit(150, "lb"),
  40598. name: "Front",
  40599. image: {
  40600. source: "./media/characters/jamie/front.svg",
  40601. extra: 1908/1768,
  40602. bottom: 19/1927
  40603. }
  40604. },
  40605. },
  40606. [
  40607. {
  40608. name: "Minimum",
  40609. height: math.unit(2, "cm")
  40610. },
  40611. {
  40612. name: "Micro",
  40613. height: math.unit(3, "inches")
  40614. },
  40615. {
  40616. name: "Normal",
  40617. height: math.unit(5 + 10/12, "feet"),
  40618. default: true
  40619. },
  40620. {
  40621. name: "Macro",
  40622. height: math.unit(150, "feet")
  40623. },
  40624. {
  40625. name: "Megamacro",
  40626. height: math.unit(10000, "m")
  40627. },
  40628. ]
  40629. ))
  40630. characterMakers.push(() => makeCharacter(
  40631. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40632. {
  40633. front: {
  40634. height: math.unit(2, "meters"),
  40635. weight: math.unit(100, "kg"),
  40636. name: "Front",
  40637. image: {
  40638. source: "./media/characters/shiron/front.svg",
  40639. extra: 2103/1985,
  40640. bottom: 98/2201
  40641. }
  40642. },
  40643. back: {
  40644. height: math.unit(2, "meters"),
  40645. weight: math.unit(100, "kg"),
  40646. name: "Back",
  40647. image: {
  40648. source: "./media/characters/shiron/back.svg",
  40649. extra: 2110/2015,
  40650. bottom: 89/2199
  40651. }
  40652. },
  40653. hand: {
  40654. height: math.unit(0.96, "feet"),
  40655. name: "Hand",
  40656. image: {
  40657. source: "./media/characters/shiron/hand.svg"
  40658. }
  40659. },
  40660. foot: {
  40661. height: math.unit(1.464, "feet"),
  40662. name: "Foot",
  40663. image: {
  40664. source: "./media/characters/shiron/foot.svg"
  40665. }
  40666. },
  40667. },
  40668. [
  40669. {
  40670. name: "Normal",
  40671. height: math.unit(2, "meters")
  40672. },
  40673. {
  40674. name: "Macro",
  40675. height: math.unit(500, "meters"),
  40676. default: true
  40677. },
  40678. {
  40679. name: "Megamacro",
  40680. height: math.unit(20, "km")
  40681. },
  40682. ]
  40683. ))
  40684. characterMakers.push(() => makeCharacter(
  40685. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40686. {
  40687. front: {
  40688. height: math.unit(6, "feet"),
  40689. name: "Front",
  40690. image: {
  40691. source: "./media/characters/sam/front.svg",
  40692. extra: 849/826,
  40693. bottom: 19/868
  40694. }
  40695. },
  40696. },
  40697. [
  40698. {
  40699. name: "Normal",
  40700. height: math.unit(6, "feet"),
  40701. default: true
  40702. },
  40703. ]
  40704. ))
  40705. characterMakers.push(() => makeCharacter(
  40706. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40707. {
  40708. front: {
  40709. height: math.unit(8 + 4/12, "feet"),
  40710. weight: math.unit(122, "kg"),
  40711. name: "Front",
  40712. image: {
  40713. source: "./media/characters/namori-kurogawa/front.svg",
  40714. extra: 1894/1576,
  40715. bottom: 34/1928
  40716. }
  40717. },
  40718. },
  40719. [
  40720. {
  40721. name: "Normal",
  40722. height: math.unit(8 + 4/12, "feet"),
  40723. default: true
  40724. },
  40725. ]
  40726. ))
  40727. characterMakers.push(() => makeCharacter(
  40728. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40729. {
  40730. front: {
  40731. height: math.unit(9, "feet"),
  40732. weight: math.unit(621, "lb"),
  40733. name: "Front",
  40734. image: {
  40735. source: "./media/characters/unmru/front.svg",
  40736. extra: 1853/1747,
  40737. bottom: 73/1926
  40738. }
  40739. },
  40740. side: {
  40741. height: math.unit(9, "feet"),
  40742. weight: math.unit(621, "lb"),
  40743. name: "Side",
  40744. image: {
  40745. source: "./media/characters/unmru/side.svg",
  40746. extra: 1781/1671,
  40747. bottom: 127/1908
  40748. }
  40749. },
  40750. back: {
  40751. height: math.unit(9, "feet"),
  40752. weight: math.unit(621, "lb"),
  40753. name: "Back",
  40754. image: {
  40755. source: "./media/characters/unmru/back.svg",
  40756. extra: 1894/1765,
  40757. bottom: 75/1969
  40758. }
  40759. },
  40760. dick: {
  40761. height: math.unit(3, "feet"),
  40762. weight: math.unit(35, "lb"),
  40763. name: "Dick",
  40764. image: {
  40765. source: "./media/characters/unmru/dick.svg"
  40766. }
  40767. },
  40768. },
  40769. [
  40770. {
  40771. name: "Normal",
  40772. height: math.unit(9, "feet")
  40773. },
  40774. {
  40775. name: "Natural",
  40776. height: math.unit(27, "feet"),
  40777. default: true
  40778. },
  40779. {
  40780. name: "Giant",
  40781. height: math.unit(90, "feet")
  40782. },
  40783. {
  40784. name: "Kaiju",
  40785. height: math.unit(270, "feet")
  40786. },
  40787. {
  40788. name: "Macro",
  40789. height: math.unit(900, "feet")
  40790. },
  40791. {
  40792. name: "Macro+",
  40793. height: math.unit(2700, "feet")
  40794. },
  40795. {
  40796. name: "Megamacro",
  40797. height: math.unit(9000, "feet")
  40798. },
  40799. {
  40800. name: "City-Crushing",
  40801. height: math.unit(27000, "feet")
  40802. },
  40803. {
  40804. name: "Mountain-Mashing",
  40805. height: math.unit(90000, "feet")
  40806. },
  40807. {
  40808. name: "Earth-Eclipsing",
  40809. height: math.unit(2.7e8, "feet")
  40810. },
  40811. {
  40812. name: "Sol-Swallowing",
  40813. height: math.unit(9e10, "feet")
  40814. },
  40815. {
  40816. name: "Majoris-Munching",
  40817. height: math.unit(2.7e13, "feet")
  40818. },
  40819. ]
  40820. ))
  40821. characterMakers.push(() => makeCharacter(
  40822. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40823. {
  40824. front: {
  40825. height: math.unit(1, "inch"),
  40826. name: "Front",
  40827. image: {
  40828. source: "./media/characters/squeaks-mouse/front.svg",
  40829. extra: 352/308,
  40830. bottom: 25/377
  40831. }
  40832. },
  40833. },
  40834. [
  40835. {
  40836. name: "Micro",
  40837. height: math.unit(1, "inch"),
  40838. default: true
  40839. },
  40840. ]
  40841. ))
  40842. characterMakers.push(() => makeCharacter(
  40843. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40844. {
  40845. side: {
  40846. height: math.unit(35, "feet"),
  40847. name: "Side",
  40848. image: {
  40849. source: "./media/characters/sayko/side.svg",
  40850. extra: 1697/1021,
  40851. bottom: 82/1779
  40852. }
  40853. },
  40854. head: {
  40855. height: math.unit(16, "feet"),
  40856. name: "Head",
  40857. image: {
  40858. source: "./media/characters/sayko/head.svg"
  40859. }
  40860. },
  40861. forepaw: {
  40862. height: math.unit(7.85, "feet"),
  40863. name: "Forepaw",
  40864. image: {
  40865. source: "./media/characters/sayko/forepaw.svg"
  40866. }
  40867. },
  40868. hindpaw: {
  40869. height: math.unit(8.8, "feet"),
  40870. name: "Hindpaw",
  40871. image: {
  40872. source: "./media/characters/sayko/hindpaw.svg"
  40873. }
  40874. },
  40875. },
  40876. [
  40877. {
  40878. name: "Normal",
  40879. height: math.unit(35, "feet"),
  40880. default: true
  40881. },
  40882. {
  40883. name: "Colossus",
  40884. height: math.unit(100, "meters")
  40885. },
  40886. {
  40887. name: "\"Small\" Deity",
  40888. height: math.unit(1, "km")
  40889. },
  40890. {
  40891. name: "\"Large\" Deity",
  40892. height: math.unit(15, "km")
  40893. },
  40894. ]
  40895. ))
  40896. characterMakers.push(() => makeCharacter(
  40897. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40898. {
  40899. front: {
  40900. height: math.unit(6, "feet"),
  40901. weight: math.unit(250, "lb"),
  40902. name: "Front",
  40903. image: {
  40904. source: "./media/characters/mukiro/front.svg",
  40905. extra: 1368/1310,
  40906. bottom: 34/1402
  40907. }
  40908. },
  40909. },
  40910. [
  40911. {
  40912. name: "Normal",
  40913. height: math.unit(6, "feet"),
  40914. default: true
  40915. },
  40916. ]
  40917. ))
  40918. characterMakers.push(() => makeCharacter(
  40919. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40920. {
  40921. front: {
  40922. height: math.unit(12 + 4/12, "feet"),
  40923. name: "Front",
  40924. image: {
  40925. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40926. extra: 1346/1311,
  40927. bottom: 65/1411
  40928. }
  40929. },
  40930. },
  40931. [
  40932. {
  40933. name: "Base",
  40934. height: math.unit(12 + 4/12, "feet"),
  40935. default: true
  40936. },
  40937. {
  40938. name: "Macro",
  40939. height: math.unit(150, "feet")
  40940. },
  40941. {
  40942. name: "Mega",
  40943. height: math.unit(2, "miles")
  40944. },
  40945. {
  40946. name: "Demi God",
  40947. height: math.unit(4, "AU")
  40948. },
  40949. {
  40950. name: "God Size",
  40951. height: math.unit(1, "universe")
  40952. },
  40953. ]
  40954. ))
  40955. characterMakers.push(() => makeCharacter(
  40956. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40957. {
  40958. front: {
  40959. height: math.unit(3 + 3/12, "feet"),
  40960. weight: math.unit(88, "lb"),
  40961. name: "Front",
  40962. image: {
  40963. source: "./media/characters/trey/front.svg",
  40964. extra: 1815/1509,
  40965. bottom: 60/1875
  40966. }
  40967. },
  40968. },
  40969. [
  40970. {
  40971. name: "Normal",
  40972. height: math.unit(3 + 3/12, "feet"),
  40973. default: true
  40974. },
  40975. ]
  40976. ))
  40977. characterMakers.push(() => makeCharacter(
  40978. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40979. {
  40980. front: {
  40981. height: math.unit(4, "meters"),
  40982. name: "Front",
  40983. image: {
  40984. source: "./media/characters/adelonda/front.svg",
  40985. extra: 1077/982,
  40986. bottom: 39/1116
  40987. }
  40988. },
  40989. back: {
  40990. height: math.unit(4, "meters"),
  40991. name: "Back",
  40992. image: {
  40993. source: "./media/characters/adelonda/back.svg",
  40994. extra: 1105/1003,
  40995. bottom: 25/1130
  40996. }
  40997. },
  40998. feral: {
  40999. height: math.unit(40/1.5, "meters"),
  41000. name: "Feral",
  41001. image: {
  41002. source: "./media/characters/adelonda/feral.svg",
  41003. extra: 597/271,
  41004. bottom: 387/984
  41005. }
  41006. },
  41007. },
  41008. [
  41009. {
  41010. name: "Normal",
  41011. height: math.unit(4, "meters"),
  41012. default: true
  41013. },
  41014. ]
  41015. ))
  41016. characterMakers.push(() => makeCharacter(
  41017. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41018. {
  41019. front: {
  41020. height: math.unit(8 + 4/12, "feet"),
  41021. weight: math.unit(670, "lb"),
  41022. name: "Front",
  41023. image: {
  41024. source: "./media/characters/acadiel/front.svg",
  41025. extra: 1901/1595,
  41026. bottom: 142/2043
  41027. }
  41028. },
  41029. },
  41030. [
  41031. {
  41032. name: "Normal",
  41033. height: math.unit(8 + 4/12, "feet"),
  41034. default: true
  41035. },
  41036. {
  41037. name: "Macro",
  41038. height: math.unit(200, "feet")
  41039. },
  41040. ]
  41041. ))
  41042. characterMakers.push(() => makeCharacter(
  41043. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41044. {
  41045. front: {
  41046. height: math.unit(6 + 2/12, "feet"),
  41047. weight: math.unit(185, "lb"),
  41048. name: "Front",
  41049. image: {
  41050. source: "./media/characters/kayne-ein/front.svg",
  41051. extra: 1780/1560,
  41052. bottom: 81/1861
  41053. }
  41054. },
  41055. },
  41056. [
  41057. {
  41058. name: "Normal",
  41059. height: math.unit(6 + 2/12, "feet"),
  41060. default: true
  41061. },
  41062. {
  41063. name: "Transformation Stage",
  41064. height: math.unit(15, "feet")
  41065. },
  41066. {
  41067. name: "Macro",
  41068. height: math.unit(150, "feet")
  41069. },
  41070. {
  41071. name: "Earth's Shadow",
  41072. height: math.unit(6200, "miles")
  41073. },
  41074. {
  41075. name: "Universal Demon",
  41076. height: math.unit(28e9, "parsecs")
  41077. },
  41078. {
  41079. name: "Multiverse God",
  41080. height: math.unit(3, "multiverses")
  41081. },
  41082. ]
  41083. ))
  41084. characterMakers.push(() => makeCharacter(
  41085. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41086. {
  41087. front: {
  41088. height: math.unit(5 + 5/12, "feet"),
  41089. name: "Front",
  41090. image: {
  41091. source: "./media/characters/fawn/front.svg",
  41092. extra: 1873/1731,
  41093. bottom: 95/1968
  41094. }
  41095. },
  41096. back: {
  41097. height: math.unit(5 + 5/12, "feet"),
  41098. name: "Back",
  41099. image: {
  41100. source: "./media/characters/fawn/back.svg",
  41101. extra: 1813/1700,
  41102. bottom: 14/1827
  41103. }
  41104. },
  41105. hoof: {
  41106. height: math.unit(1.45, "feet"),
  41107. name: "Hoof",
  41108. image: {
  41109. source: "./media/characters/fawn/hoof.svg"
  41110. }
  41111. },
  41112. },
  41113. [
  41114. {
  41115. name: "Normal",
  41116. height: math.unit(5 + 5/12, "feet"),
  41117. default: true
  41118. },
  41119. ]
  41120. ))
  41121. characterMakers.push(() => makeCharacter(
  41122. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41123. {
  41124. front: {
  41125. height: math.unit(2 + 5/12, "feet"),
  41126. name: "Front",
  41127. image: {
  41128. source: "./media/characters/orion/front.svg",
  41129. extra: 1366/1304,
  41130. bottom: 43/1409
  41131. }
  41132. },
  41133. paw: {
  41134. height: math.unit(0.52, "feet"),
  41135. name: "Paw",
  41136. image: {
  41137. source: "./media/characters/orion/paw.svg"
  41138. }
  41139. },
  41140. },
  41141. [
  41142. {
  41143. name: "Normal",
  41144. height: math.unit(2 + 5/12, "feet"),
  41145. default: true
  41146. },
  41147. ]
  41148. ))
  41149. characterMakers.push(() => makeCharacter(
  41150. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41151. {
  41152. front: {
  41153. height: math.unit(5 + 10/12, "feet"),
  41154. name: "Front",
  41155. image: {
  41156. source: "./media/characters/vera/front.svg",
  41157. extra: 1680/1575,
  41158. bottom: 49/1729
  41159. }
  41160. },
  41161. back: {
  41162. height: math.unit(5 + 10/12, "feet"),
  41163. name: "Back",
  41164. image: {
  41165. source: "./media/characters/vera/back.svg",
  41166. extra: 1700/1588,
  41167. bottom: 18/1718
  41168. }
  41169. },
  41170. arcanine: {
  41171. height: math.unit(6 + 8/12, "feet"),
  41172. name: "Arcanine",
  41173. image: {
  41174. source: "./media/characters/vera/arcanine.svg",
  41175. extra: 1590/1511,
  41176. bottom: 71/1661
  41177. }
  41178. },
  41179. maw: {
  41180. height: math.unit(0.82, "feet"),
  41181. name: "Maw",
  41182. image: {
  41183. source: "./media/characters/vera/maw.svg"
  41184. }
  41185. },
  41186. mawArcanine: {
  41187. height: math.unit(0.97, "feet"),
  41188. name: "Maw (Arcanine)",
  41189. image: {
  41190. source: "./media/characters/vera/maw-arcanine.svg"
  41191. }
  41192. },
  41193. paw: {
  41194. height: math.unit(0.75, "feet"),
  41195. name: "Paw",
  41196. image: {
  41197. source: "./media/characters/vera/paw.svg"
  41198. }
  41199. },
  41200. pawprint: {
  41201. height: math.unit(0.52, "feet"),
  41202. name: "Pawprint",
  41203. image: {
  41204. source: "./media/characters/vera/pawprint.svg"
  41205. }
  41206. },
  41207. },
  41208. [
  41209. {
  41210. name: "Normal",
  41211. height: math.unit(5 + 10/12, "feet"),
  41212. default: true
  41213. },
  41214. {
  41215. name: "Macro",
  41216. height: math.unit(75, "feet")
  41217. },
  41218. ]
  41219. ))
  41220. characterMakers.push(() => makeCharacter(
  41221. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41222. {
  41223. front: {
  41224. height: math.unit(4, "feet"),
  41225. weight: math.unit(40, "lb"),
  41226. name: "Front",
  41227. image: {
  41228. source: "./media/characters/orvan-rabbit/front.svg",
  41229. extra: 1896/1642,
  41230. bottom: 29/1925
  41231. }
  41232. },
  41233. },
  41234. [
  41235. {
  41236. name: "Normal",
  41237. height: math.unit(4, "feet"),
  41238. default: true
  41239. },
  41240. ]
  41241. ))
  41242. characterMakers.push(() => makeCharacter(
  41243. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41244. {
  41245. front: {
  41246. height: math.unit(6, "feet"),
  41247. weight: math.unit(168, "lb"),
  41248. name: "Front",
  41249. image: {
  41250. source: "./media/characters/lisa/front.svg",
  41251. extra: 2065/1867,
  41252. bottom: 46/2111
  41253. }
  41254. },
  41255. back: {
  41256. height: math.unit(6, "feet"),
  41257. weight: math.unit(168, "lb"),
  41258. name: "Back",
  41259. image: {
  41260. source: "./media/characters/lisa/back.svg",
  41261. extra: 1982/1838,
  41262. bottom: 29/2011
  41263. }
  41264. },
  41265. maw: {
  41266. height: math.unit(0.81, "feet"),
  41267. name: "Maw",
  41268. image: {
  41269. source: "./media/characters/lisa/maw.svg"
  41270. }
  41271. },
  41272. paw: {
  41273. height: math.unit(0.9, "feet"),
  41274. name: "Paw",
  41275. image: {
  41276. source: "./media/characters/lisa/paw.svg"
  41277. }
  41278. },
  41279. caribousune: {
  41280. height: math.unit(7 + 2/12, "feet"),
  41281. weight: math.unit(268, "lb"),
  41282. name: "Caribousune",
  41283. image: {
  41284. source: "./media/characters/lisa/caribousune.svg",
  41285. extra: 1843/1633,
  41286. bottom: 29/1872
  41287. }
  41288. },
  41289. frontCaribousune: {
  41290. height: math.unit(7 + 2/12, "feet"),
  41291. weight: math.unit(268, "lb"),
  41292. name: "Front (Caribousune)",
  41293. image: {
  41294. source: "./media/characters/lisa/front-caribousune.svg",
  41295. extra: 1818/1638,
  41296. bottom: 52/1870
  41297. }
  41298. },
  41299. sideCaribousune: {
  41300. height: math.unit(7 + 2/12, "feet"),
  41301. weight: math.unit(268, "lb"),
  41302. name: "Side (Caribousune)",
  41303. image: {
  41304. source: "./media/characters/lisa/side-caribousune.svg",
  41305. extra: 1851/1635,
  41306. bottom: 16/1867
  41307. }
  41308. },
  41309. backCaribousune: {
  41310. height: math.unit(7 + 2/12, "feet"),
  41311. weight: math.unit(268, "lb"),
  41312. name: "Back (Caribousune)",
  41313. image: {
  41314. source: "./media/characters/lisa/back-caribousune.svg",
  41315. extra: 1801/1604,
  41316. bottom: 44/1845
  41317. }
  41318. },
  41319. caribou: {
  41320. height: math.unit(7 + 2/12, "feet"),
  41321. weight: math.unit(268, "lb"),
  41322. name: "Caribou",
  41323. image: {
  41324. source: "./media/characters/lisa/caribou.svg",
  41325. extra: 1843/1633,
  41326. bottom: 29/1872
  41327. }
  41328. },
  41329. frontCaribou: {
  41330. height: math.unit(7 + 2/12, "feet"),
  41331. weight: math.unit(268, "lb"),
  41332. name: "Front (Caribou)",
  41333. image: {
  41334. source: "./media/characters/lisa/front-caribou.svg",
  41335. extra: 1818/1638,
  41336. bottom: 52/1870
  41337. }
  41338. },
  41339. sideCaribou: {
  41340. height: math.unit(7 + 2/12, "feet"),
  41341. weight: math.unit(268, "lb"),
  41342. name: "Side (Caribou)",
  41343. image: {
  41344. source: "./media/characters/lisa/side-caribou.svg",
  41345. extra: 1851/1635,
  41346. bottom: 16/1867
  41347. }
  41348. },
  41349. backCaribou: {
  41350. height: math.unit(7 + 2/12, "feet"),
  41351. weight: math.unit(268, "lb"),
  41352. name: "Back (Caribou)",
  41353. image: {
  41354. source: "./media/characters/lisa/back-caribou.svg",
  41355. extra: 1801/1604,
  41356. bottom: 44/1845
  41357. }
  41358. },
  41359. mawCaribou: {
  41360. height: math.unit(1.45, "feet"),
  41361. name: "Maw (Caribou)",
  41362. image: {
  41363. source: "./media/characters/lisa/maw-caribou.svg"
  41364. }
  41365. },
  41366. mawCaribousune: {
  41367. height: math.unit(1.45, "feet"),
  41368. name: "Maw (Caribousune)",
  41369. image: {
  41370. source: "./media/characters/lisa/maw-caribousune.svg"
  41371. }
  41372. },
  41373. pawCaribousune: {
  41374. height: math.unit(1.61, "feet"),
  41375. name: "Paw (Caribou)",
  41376. image: {
  41377. source: "./media/characters/lisa/paw-caribousune.svg"
  41378. }
  41379. },
  41380. },
  41381. [
  41382. {
  41383. name: "Normal",
  41384. height: math.unit(6, "feet")
  41385. },
  41386. {
  41387. name: "God Size",
  41388. height: math.unit(72, "feet"),
  41389. default: true
  41390. },
  41391. {
  41392. name: "Towering",
  41393. height: math.unit(288, "feet")
  41394. },
  41395. {
  41396. name: "City Size",
  41397. height: math.unit(48384, "feet")
  41398. },
  41399. {
  41400. name: "Continental",
  41401. height: math.unit(4200, "miles")
  41402. },
  41403. {
  41404. name: "Planet Eater",
  41405. height: math.unit(42, "earths")
  41406. },
  41407. {
  41408. name: "Star Swallower",
  41409. height: math.unit(42, "solarradii")
  41410. },
  41411. {
  41412. name: "System Swallower",
  41413. height: math.unit(84000, "AU")
  41414. },
  41415. {
  41416. name: "Galaxy Gobbler",
  41417. height: math.unit(42, "galaxies")
  41418. },
  41419. {
  41420. name: "Universe Devourer",
  41421. height: math.unit(42, "universes")
  41422. },
  41423. {
  41424. name: "Multiverse Muncher",
  41425. height: math.unit(42, "multiverses")
  41426. },
  41427. ]
  41428. ))
  41429. characterMakers.push(() => makeCharacter(
  41430. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41431. {
  41432. front: {
  41433. height: math.unit(36, "feet"),
  41434. name: "Front",
  41435. image: {
  41436. source: "./media/characters/shadow-rat/front.svg",
  41437. extra: 1845/1758,
  41438. bottom: 83/1928
  41439. }
  41440. },
  41441. },
  41442. [
  41443. {
  41444. name: "Macro",
  41445. height: math.unit(36, "feet"),
  41446. default: true
  41447. },
  41448. ]
  41449. ))
  41450. characterMakers.push(() => makeCharacter(
  41451. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41452. {
  41453. side: {
  41454. height: math.unit(8, "feet"),
  41455. weight: math.unit(2630, "lb"),
  41456. name: "Side",
  41457. image: {
  41458. source: "./media/characters/torallia/side.svg",
  41459. extra: 2164/2021,
  41460. bottom: 371/2535
  41461. }
  41462. },
  41463. },
  41464. [
  41465. {
  41466. name: "Mortal Interaction",
  41467. height: math.unit(8, "feet")
  41468. },
  41469. {
  41470. name: "Natural",
  41471. height: math.unit(24, "feet"),
  41472. default: true
  41473. },
  41474. {
  41475. name: "Giant",
  41476. height: math.unit(80, "feet")
  41477. },
  41478. {
  41479. name: "Kaiju",
  41480. height: math.unit(240, "feet")
  41481. },
  41482. {
  41483. name: "Macro",
  41484. height: math.unit(800, "feet")
  41485. },
  41486. {
  41487. name: "Macro+",
  41488. height: math.unit(2400, "feet")
  41489. },
  41490. {
  41491. name: "Macro++",
  41492. height: math.unit(8000, "feet")
  41493. },
  41494. {
  41495. name: "City-Crushing",
  41496. height: math.unit(24000, "feet")
  41497. },
  41498. {
  41499. name: "Mountain-Mashing",
  41500. height: math.unit(80000, "feet")
  41501. },
  41502. {
  41503. name: "District Demolisher",
  41504. height: math.unit(240000, "feet")
  41505. },
  41506. {
  41507. name: "Tri-County Terror",
  41508. height: math.unit(800000, "feet")
  41509. },
  41510. {
  41511. name: "State Smasher",
  41512. height: math.unit(2.4e6, "feet")
  41513. },
  41514. {
  41515. name: "Nation Nemesis",
  41516. height: math.unit(8e6, "feet")
  41517. },
  41518. {
  41519. name: "Continent Cracker",
  41520. height: math.unit(2.4e7, "feet")
  41521. },
  41522. {
  41523. name: "Planet-Pillaging",
  41524. height: math.unit(8e7, "feet")
  41525. },
  41526. {
  41527. name: "Earth-Eclipsing",
  41528. height: math.unit(2.4e8, "feet")
  41529. },
  41530. {
  41531. name: "Jovian-Jostling",
  41532. height: math.unit(8e8, "feet")
  41533. },
  41534. {
  41535. name: "Gas Giant Gulper",
  41536. height: math.unit(2.4e9, "feet")
  41537. },
  41538. {
  41539. name: "Astral Annihilator",
  41540. height: math.unit(8e9, "feet")
  41541. },
  41542. {
  41543. name: "Celestial Conqueror",
  41544. height: math.unit(2.4e10, "feet")
  41545. },
  41546. {
  41547. name: "Sol-Swallowing",
  41548. height: math.unit(8e10, "feet")
  41549. },
  41550. {
  41551. name: "Hunter of the Heavens",
  41552. height: math.unit(2.4e13, "feet")
  41553. },
  41554. ]
  41555. ))
  41556. characterMakers.push(() => makeCharacter(
  41557. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41558. {
  41559. front: {
  41560. height: math.unit(10, "feet"),
  41561. weight: math.unit(844, "kilograms"),
  41562. name: "Front",
  41563. image: {
  41564. source: "./media/characters/rebecca-pawlson/front.svg",
  41565. extra: 1196/1099,
  41566. bottom: 81/1277
  41567. },
  41568. extraAttributes: {
  41569. "pawSize": {
  41570. name: "Paw Size",
  41571. power: 2,
  41572. type: "area",
  41573. base: math.unit(0.2 * 0.375, "meters^2")
  41574. },
  41575. "handSize": {
  41576. name: "Hand Size",
  41577. power: 2,
  41578. type: "area",
  41579. base: math.unit(0.2 * 0.35, "meters^2")
  41580. },
  41581. "breastDiameter": {
  41582. name: "Breast Diameter",
  41583. power: 1,
  41584. type: "length",
  41585. base: math.unit(0.5, "meters")
  41586. },
  41587. "breastVolume": {
  41588. name: "Breast Volume",
  41589. power: 3,
  41590. type: "volume",
  41591. base: math.unit(0.065, "m^3")
  41592. },
  41593. "breastMass": {
  41594. name: "Breast Mass",
  41595. power: 3,
  41596. type: "mass",
  41597. base: math.unit(65, "kg")
  41598. },
  41599. "nippleDiameter": {
  41600. name: "Nipple Diameter",
  41601. power: 1,
  41602. type: "length",
  41603. base: math.unit(0.1, "meters")
  41604. },
  41605. }
  41606. },
  41607. back: {
  41608. height: math.unit(10, "feet"),
  41609. weight: math.unit(844, "kilograms"),
  41610. name: "Back",
  41611. image: {
  41612. source: "./media/characters/rebecca-pawlson/back.svg",
  41613. extra: 879/776,
  41614. bottom: 43/922
  41615. },
  41616. extraAttributes: {
  41617. "pawSize": {
  41618. name: "Paw Size",
  41619. power: 2,
  41620. type: "area",
  41621. base: math.unit(0.2 * 0.375, "meters^2")
  41622. },
  41623. "handSize": {
  41624. name: "Hand Size",
  41625. power: 2,
  41626. type: "area",
  41627. base: math.unit(0.2 * 0.35, "meters^2")
  41628. },
  41629. "breastDiameter": {
  41630. name: "Breast Diameter",
  41631. power: 1,
  41632. type: "length",
  41633. base: math.unit(0.5, "meters")
  41634. },
  41635. "breastVolume": {
  41636. name: "Breast Volume",
  41637. power: 3,
  41638. type: "volume",
  41639. base: math.unit(0.065, "m^3")
  41640. },
  41641. "breastMass": {
  41642. name: "Breast Mass",
  41643. power: 3,
  41644. type: "mass",
  41645. base: math.unit(65, "kg")
  41646. },
  41647. "nippleDiameter": {
  41648. name: "Nipple Diameter",
  41649. power: 1,
  41650. type: "length",
  41651. base: math.unit(0.1, "meters")
  41652. },
  41653. }
  41654. },
  41655. },
  41656. [
  41657. {
  41658. name: "Normal",
  41659. height: math.unit(6 + 8/12, "feet")
  41660. },
  41661. {
  41662. name: "Mini Macro",
  41663. height: math.unit(10, "feet"),
  41664. default: true
  41665. },
  41666. {
  41667. name: "Macro",
  41668. height: math.unit(100, "feet")
  41669. },
  41670. {
  41671. name: "Mega Macro",
  41672. height: math.unit(2500, "feet")
  41673. },
  41674. {
  41675. name: "Giga Macro",
  41676. height: math.unit(50, "miles")
  41677. },
  41678. ]
  41679. ))
  41680. characterMakers.push(() => makeCharacter(
  41681. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41682. {
  41683. front: {
  41684. height: math.unit(7 + 6/12, "feet"),
  41685. weight: math.unit(600, "lb"),
  41686. name: "Front",
  41687. image: {
  41688. source: "./media/characters/moxie-nova/front.svg",
  41689. extra: 1734/1652,
  41690. bottom: 41/1775
  41691. }
  41692. },
  41693. },
  41694. [
  41695. {
  41696. name: "Normal",
  41697. height: math.unit(7 + 6/12, "feet"),
  41698. default: true
  41699. },
  41700. ]
  41701. ))
  41702. characterMakers.push(() => makeCharacter(
  41703. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41704. {
  41705. goat: {
  41706. height: math.unit(4, "feet"),
  41707. weight: math.unit(180, "lb"),
  41708. name: "Goat",
  41709. image: {
  41710. source: "./media/characters/tiffany/goat.svg",
  41711. extra: 1845/1595,
  41712. bottom: 106/1951
  41713. }
  41714. },
  41715. front: {
  41716. height: math.unit(5, "feet"),
  41717. weight: math.unit(150, "lb"),
  41718. name: "Foxcoon",
  41719. image: {
  41720. source: "./media/characters/tiffany/foxcoon.svg",
  41721. extra: 1941/1845,
  41722. bottom: 58/1999
  41723. }
  41724. },
  41725. },
  41726. [
  41727. {
  41728. name: "Normal",
  41729. height: math.unit(5, "feet"),
  41730. default: true
  41731. },
  41732. ]
  41733. ))
  41734. characterMakers.push(() => makeCharacter(
  41735. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41736. {
  41737. front: {
  41738. height: math.unit(8, "feet"),
  41739. weight: math.unit(300, "lb"),
  41740. name: "Front",
  41741. image: {
  41742. source: "./media/characters/raxinath/front.svg",
  41743. extra: 1407/1309,
  41744. bottom: 39/1446
  41745. }
  41746. },
  41747. back: {
  41748. height: math.unit(8, "feet"),
  41749. weight: math.unit(300, "lb"),
  41750. name: "Back",
  41751. image: {
  41752. source: "./media/characters/raxinath/back.svg",
  41753. extra: 1405/1315,
  41754. bottom: 9/1414
  41755. }
  41756. },
  41757. },
  41758. [
  41759. {
  41760. name: "Speck",
  41761. height: math.unit(0.5, "nm")
  41762. },
  41763. {
  41764. name: "Micro",
  41765. height: math.unit(3, "inches")
  41766. },
  41767. {
  41768. name: "Kobold",
  41769. height: math.unit(3, "feet")
  41770. },
  41771. {
  41772. name: "Normal",
  41773. height: math.unit(8, "feet"),
  41774. default: true
  41775. },
  41776. {
  41777. name: "Giant",
  41778. height: math.unit(50, "feet")
  41779. },
  41780. {
  41781. name: "Macro",
  41782. height: math.unit(1000, "feet")
  41783. },
  41784. {
  41785. name: "Megamacro",
  41786. height: math.unit(1, "mile")
  41787. },
  41788. ]
  41789. ))
  41790. characterMakers.push(() => makeCharacter(
  41791. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41792. {
  41793. front: {
  41794. height: math.unit(10, "feet"),
  41795. weight: math.unit(1442, "lb"),
  41796. name: "Front",
  41797. image: {
  41798. source: "./media/characters/mal-dragon/front.svg",
  41799. extra: 1515/1444,
  41800. bottom: 113/1628
  41801. }
  41802. },
  41803. back: {
  41804. height: math.unit(10, "feet"),
  41805. weight: math.unit(1442, "lb"),
  41806. name: "Back",
  41807. image: {
  41808. source: "./media/characters/mal-dragon/back.svg",
  41809. extra: 1527/1434,
  41810. bottom: 25/1552
  41811. }
  41812. },
  41813. },
  41814. [
  41815. {
  41816. name: "Mortal Interaction",
  41817. height: math.unit(10, "feet"),
  41818. default: true
  41819. },
  41820. {
  41821. name: "Large",
  41822. height: math.unit(30, "feet")
  41823. },
  41824. {
  41825. name: "Kaiju",
  41826. height: math.unit(300, "feet")
  41827. },
  41828. {
  41829. name: "Megamacro",
  41830. height: math.unit(10000, "feet")
  41831. },
  41832. {
  41833. name: "Continent Cracker",
  41834. height: math.unit(30000000, "feet")
  41835. },
  41836. {
  41837. name: "Sol-Swallowing",
  41838. height: math.unit(1e11, "feet")
  41839. },
  41840. {
  41841. name: "Light Universal",
  41842. height: math.unit(5, "universes")
  41843. },
  41844. {
  41845. name: "Universe Atoms",
  41846. height: math.unit(1.829e9, "universes")
  41847. },
  41848. {
  41849. name: "Light Multiversal",
  41850. height: math.unit(5, "multiverses")
  41851. },
  41852. {
  41853. name: "Multiverse Atoms",
  41854. height: math.unit(1.829e9, "multiverses")
  41855. },
  41856. {
  41857. name: "Fabric of Time",
  41858. height: math.unit(1e262, "multiverses")
  41859. },
  41860. ]
  41861. ))
  41862. characterMakers.push(() => makeCharacter(
  41863. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41864. {
  41865. front: {
  41866. height: math.unit(9, "feet"),
  41867. weight: math.unit(1050, "lb"),
  41868. name: "Front",
  41869. image: {
  41870. source: "./media/characters/tabitha/front.svg",
  41871. extra: 2083/1994,
  41872. bottom: 68/2151
  41873. }
  41874. },
  41875. },
  41876. [
  41877. {
  41878. name: "Baseline",
  41879. height: math.unit(9, "feet"),
  41880. default: true
  41881. },
  41882. {
  41883. name: "Giant",
  41884. height: math.unit(90, "feet")
  41885. },
  41886. {
  41887. name: "Macro",
  41888. height: math.unit(900, "feet")
  41889. },
  41890. {
  41891. name: "Megamacro",
  41892. height: math.unit(9000, "feet")
  41893. },
  41894. {
  41895. name: "City-Crushing",
  41896. height: math.unit(27000, "feet")
  41897. },
  41898. {
  41899. name: "Mountain-Mashing",
  41900. height: math.unit(90000, "feet")
  41901. },
  41902. {
  41903. name: "Nation Nemesis",
  41904. height: math.unit(9e6, "feet")
  41905. },
  41906. {
  41907. name: "Continent Cracker",
  41908. height: math.unit(27e6, "feet")
  41909. },
  41910. {
  41911. name: "Earth-Eclipsing",
  41912. height: math.unit(2.7e8, "feet")
  41913. },
  41914. {
  41915. name: "Gas Giant Gulper",
  41916. height: math.unit(2.7e9, "feet")
  41917. },
  41918. {
  41919. name: "Sol-Swallowing",
  41920. height: math.unit(9e10, "feet")
  41921. },
  41922. {
  41923. name: "Galaxy Gulper",
  41924. height: math.unit(9, "galaxies")
  41925. },
  41926. {
  41927. name: "Cosmos Churner",
  41928. height: math.unit(9, "universes")
  41929. },
  41930. ]
  41931. ))
  41932. characterMakers.push(() => makeCharacter(
  41933. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41934. {
  41935. front: {
  41936. height: math.unit(160, "cm"),
  41937. weight: math.unit(55, "kg"),
  41938. name: "Front",
  41939. image: {
  41940. source: "./media/characters/tow/front.svg",
  41941. extra: 1751/1722,
  41942. bottom: 74/1825
  41943. }
  41944. },
  41945. },
  41946. [
  41947. {
  41948. name: "Norm",
  41949. height: math.unit(160, "cm")
  41950. },
  41951. {
  41952. name: "Casual",
  41953. height: math.unit(3200, "m"),
  41954. default: true
  41955. },
  41956. {
  41957. name: "Show-Off",
  41958. height: math.unit(160, "km")
  41959. },
  41960. ]
  41961. ))
  41962. characterMakers.push(() => makeCharacter(
  41963. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41964. {
  41965. front: {
  41966. height: math.unit(7 + 11/12, "feet"),
  41967. weight: math.unit(342.8, "lb"),
  41968. name: "Front",
  41969. image: {
  41970. source: "./media/characters/vivian-orca-dragon/front.svg",
  41971. extra: 1890/1865,
  41972. bottom: 28/1918
  41973. }
  41974. },
  41975. },
  41976. [
  41977. {
  41978. name: "Micro",
  41979. height: math.unit(5, "inches")
  41980. },
  41981. {
  41982. name: "Normal",
  41983. height: math.unit(7 + 11/12, "feet"),
  41984. default: true
  41985. },
  41986. {
  41987. name: "Macro",
  41988. height: math.unit(395 + 7/12, "feet")
  41989. },
  41990. ]
  41991. ))
  41992. characterMakers.push(() => makeCharacter(
  41993. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41994. {
  41995. side: {
  41996. height: math.unit(10, "feet"),
  41997. weight: math.unit(1442, "lb"),
  41998. name: "Side",
  41999. image: {
  42000. source: "./media/characters/lotherakon/side.svg",
  42001. extra: 1604/1497,
  42002. bottom: 89/1693
  42003. }
  42004. },
  42005. },
  42006. [
  42007. {
  42008. name: "Mortal Interaction",
  42009. height: math.unit(10, "feet")
  42010. },
  42011. {
  42012. name: "Large",
  42013. height: math.unit(30, "feet"),
  42014. default: true
  42015. },
  42016. {
  42017. name: "Giant",
  42018. height: math.unit(100, "feet")
  42019. },
  42020. {
  42021. name: "Kaiju",
  42022. height: math.unit(300, "feet")
  42023. },
  42024. {
  42025. name: "Macro",
  42026. height: math.unit(1000, "feet")
  42027. },
  42028. {
  42029. name: "Macro+",
  42030. height: math.unit(3000, "feet")
  42031. },
  42032. {
  42033. name: "Megamacro",
  42034. height: math.unit(10000, "feet")
  42035. },
  42036. {
  42037. name: "City-Crushing",
  42038. height: math.unit(30000, "feet")
  42039. },
  42040. {
  42041. name: "Continent Cracker",
  42042. height: math.unit(30e6, "feet")
  42043. },
  42044. {
  42045. name: "Earth Eclipsing",
  42046. height: math.unit(3e8, "feet")
  42047. },
  42048. {
  42049. name: "Gas Giant Gulper",
  42050. height: math.unit(3e9, "feet")
  42051. },
  42052. {
  42053. name: "Sol-Swallowing",
  42054. height: math.unit(1e11, "feet")
  42055. },
  42056. {
  42057. name: "System Swallower",
  42058. height: math.unit(3e14, "feet")
  42059. },
  42060. {
  42061. name: "Galaxy Gulper",
  42062. height: math.unit(10, "galaxies")
  42063. },
  42064. {
  42065. name: "Light Universal",
  42066. height: math.unit(5, "universes")
  42067. },
  42068. {
  42069. name: "Universe Palm",
  42070. height: math.unit(20, "universes")
  42071. },
  42072. {
  42073. name: "Light Multiversal",
  42074. height: math.unit(5, "multiverses")
  42075. },
  42076. {
  42077. name: "Multiverse Palm",
  42078. height: math.unit(20, "multiverses")
  42079. },
  42080. {
  42081. name: "Inferno Incarnate",
  42082. height: math.unit(1e7, "multiverses")
  42083. },
  42084. ]
  42085. ))
  42086. characterMakers.push(() => makeCharacter(
  42087. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42088. {
  42089. front: {
  42090. height: math.unit(8, "feet"),
  42091. weight: math.unit(1200, "lb"),
  42092. name: "Front",
  42093. image: {
  42094. source: "./media/characters/malithee/front.svg",
  42095. extra: 1675/1640,
  42096. bottom: 162/1837
  42097. }
  42098. },
  42099. },
  42100. [
  42101. {
  42102. name: "Mortal Interaction",
  42103. height: math.unit(8, "feet"),
  42104. default: true
  42105. },
  42106. {
  42107. name: "Large",
  42108. height: math.unit(24, "feet")
  42109. },
  42110. {
  42111. name: "Kaiju",
  42112. height: math.unit(240, "feet")
  42113. },
  42114. {
  42115. name: "Megamacro",
  42116. height: math.unit(8000, "feet")
  42117. },
  42118. {
  42119. name: "Continent Cracker",
  42120. height: math.unit(24e6, "feet")
  42121. },
  42122. {
  42123. name: "Earth-Eclipsing",
  42124. height: math.unit(2.4e8, "feet")
  42125. },
  42126. {
  42127. name: "Sol-Swallowing",
  42128. height: math.unit(8e10, "feet")
  42129. },
  42130. {
  42131. name: "Galaxy Gulper",
  42132. height: math.unit(8, "galaxies")
  42133. },
  42134. {
  42135. name: "Light Universal",
  42136. height: math.unit(4, "universes")
  42137. },
  42138. {
  42139. name: "Universe Atoms",
  42140. height: math.unit(1.829e9, "universes")
  42141. },
  42142. {
  42143. name: "Light Multiversal",
  42144. height: math.unit(4, "multiverses")
  42145. },
  42146. {
  42147. name: "Multiverse Atoms",
  42148. height: math.unit(1.829e9, "multiverses")
  42149. },
  42150. {
  42151. name: "Nigh-Omnipresence",
  42152. height: math.unit(8e261, "multiverses")
  42153. },
  42154. ]
  42155. ))
  42156. characterMakers.push(() => makeCharacter(
  42157. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42158. {
  42159. front: {
  42160. height: math.unit(10, "feet"),
  42161. weight: math.unit(1500, "lb"),
  42162. name: "Front",
  42163. image: {
  42164. source: "./media/characters/miles-thestia/front.svg",
  42165. extra: 1812/1727,
  42166. bottom: 86/1898
  42167. }
  42168. },
  42169. back: {
  42170. height: math.unit(10, "feet"),
  42171. weight: math.unit(1500, "lb"),
  42172. name: "Back",
  42173. image: {
  42174. source: "./media/characters/miles-thestia/back.svg",
  42175. extra: 1799/1690,
  42176. bottom: 47/1846
  42177. }
  42178. },
  42179. frontNsfw: {
  42180. height: math.unit(10, "feet"),
  42181. weight: math.unit(1500, "lb"),
  42182. name: "Front (NSFW)",
  42183. image: {
  42184. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42185. extra: 1812/1727,
  42186. bottom: 86/1898
  42187. }
  42188. },
  42189. },
  42190. [
  42191. {
  42192. name: "Mini-Macro",
  42193. height: math.unit(10, "feet"),
  42194. default: true
  42195. },
  42196. ]
  42197. ))
  42198. characterMakers.push(() => makeCharacter(
  42199. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42200. {
  42201. front: {
  42202. height: math.unit(25, "feet"),
  42203. name: "Front",
  42204. image: {
  42205. source: "./media/characters/titan-s-wulf/front.svg",
  42206. extra: 1560/1484,
  42207. bottom: 76/1636
  42208. }
  42209. },
  42210. },
  42211. [
  42212. {
  42213. name: "Smallest",
  42214. height: math.unit(25, "feet"),
  42215. default: true
  42216. },
  42217. {
  42218. name: "Normal",
  42219. height: math.unit(200, "feet")
  42220. },
  42221. {
  42222. name: "Macro",
  42223. height: math.unit(200000, "feet")
  42224. },
  42225. {
  42226. name: "Multiversal Original",
  42227. height: math.unit(10000, "multiverses")
  42228. },
  42229. ]
  42230. ))
  42231. characterMakers.push(() => makeCharacter(
  42232. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42233. {
  42234. front: {
  42235. height: math.unit(8, "feet"),
  42236. weight: math.unit(553, "lb"),
  42237. name: "Front",
  42238. image: {
  42239. source: "./media/characters/tawendeh/front.svg",
  42240. extra: 2365/2268,
  42241. bottom: 83/2448
  42242. }
  42243. },
  42244. frontClothed: {
  42245. height: math.unit(8, "feet"),
  42246. weight: math.unit(553, "lb"),
  42247. name: "Front (Clothed)",
  42248. image: {
  42249. source: "./media/characters/tawendeh/front-clothed.svg",
  42250. extra: 2365/2268,
  42251. bottom: 83/2448
  42252. }
  42253. },
  42254. back: {
  42255. height: math.unit(8, "feet"),
  42256. weight: math.unit(553, "lb"),
  42257. name: "Back",
  42258. image: {
  42259. source: "./media/characters/tawendeh/back.svg",
  42260. extra: 2397/2294,
  42261. bottom: 42/2439
  42262. }
  42263. },
  42264. },
  42265. [
  42266. {
  42267. name: "Mortal Interaction",
  42268. height: math.unit(8, "feet"),
  42269. default: true
  42270. },
  42271. {
  42272. name: "Giant",
  42273. height: math.unit(80, "feet")
  42274. },
  42275. {
  42276. name: "Macro",
  42277. height: math.unit(800, "feet")
  42278. },
  42279. {
  42280. name: "Megamacro",
  42281. height: math.unit(8000, "feet")
  42282. },
  42283. {
  42284. name: "City-Crushing",
  42285. height: math.unit(24000, "feet")
  42286. },
  42287. {
  42288. name: "Mountain-Mashing",
  42289. height: math.unit(80000, "feet")
  42290. },
  42291. {
  42292. name: "Nation Nemesis",
  42293. height: math.unit(8e6, "feet")
  42294. },
  42295. {
  42296. name: "Continent Cracker",
  42297. height: math.unit(24e6, "feet")
  42298. },
  42299. {
  42300. name: "Earth-Eclipsing",
  42301. height: math.unit(2.4e8, "feet")
  42302. },
  42303. {
  42304. name: "Gas Giant Gulper",
  42305. height: math.unit(2.4e9, "feet")
  42306. },
  42307. {
  42308. name: "Sol-Swallowing",
  42309. height: math.unit(8e10, "feet")
  42310. },
  42311. {
  42312. name: "Galaxy Gulper",
  42313. height: math.unit(8, "galaxies")
  42314. },
  42315. {
  42316. name: "Cosmos Churner",
  42317. height: math.unit(8, "universes")
  42318. },
  42319. {
  42320. name: "Omnipotent Otter",
  42321. height: math.unit(80, "universes")
  42322. },
  42323. ]
  42324. ))
  42325. characterMakers.push(() => makeCharacter(
  42326. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42327. {
  42328. front: {
  42329. height: math.unit(2.6, "meters"),
  42330. weight: math.unit(900, "kg"),
  42331. name: "Front",
  42332. image: {
  42333. source: "./media/characters/neesha/front.svg",
  42334. extra: 1803/1653,
  42335. bottom: 128/1931
  42336. }
  42337. },
  42338. },
  42339. [
  42340. {
  42341. name: "Normal",
  42342. height: math.unit(2.6, "meters"),
  42343. default: true
  42344. },
  42345. {
  42346. name: "Macro",
  42347. height: math.unit(50, "meters")
  42348. },
  42349. ]
  42350. ))
  42351. characterMakers.push(() => makeCharacter(
  42352. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42353. {
  42354. front: {
  42355. height: math.unit(5, "feet"),
  42356. weight: math.unit(185, "lb"),
  42357. name: "Front",
  42358. image: {
  42359. source: "./media/characters/kyera/front.svg",
  42360. extra: 1875/1790,
  42361. bottom: 96/1971
  42362. }
  42363. },
  42364. },
  42365. [
  42366. {
  42367. name: "Normal",
  42368. height: math.unit(5, "feet"),
  42369. default: true
  42370. },
  42371. ]
  42372. ))
  42373. characterMakers.push(() => makeCharacter(
  42374. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42375. {
  42376. front: {
  42377. height: math.unit(7 + 6/12, "feet"),
  42378. weight: math.unit(540, "lb"),
  42379. name: "Front",
  42380. image: {
  42381. source: "./media/characters/yuko/front.svg",
  42382. extra: 1282/1222,
  42383. bottom: 101/1383
  42384. }
  42385. },
  42386. frontClothed: {
  42387. height: math.unit(7 + 6/12, "feet"),
  42388. weight: math.unit(540, "lb"),
  42389. name: "Front (Clothed)",
  42390. image: {
  42391. source: "./media/characters/yuko/front-clothed.svg",
  42392. extra: 1282/1222,
  42393. bottom: 101/1383
  42394. }
  42395. },
  42396. },
  42397. [
  42398. {
  42399. name: "Normal",
  42400. height: math.unit(7 + 6/12, "feet"),
  42401. default: true
  42402. },
  42403. {
  42404. name: "Macro",
  42405. height: math.unit(26 + 9/12, "feet")
  42406. },
  42407. {
  42408. name: "Megamacro",
  42409. height: math.unit(300, "feet")
  42410. },
  42411. {
  42412. name: "Gigamacro",
  42413. height: math.unit(5000, "feet")
  42414. },
  42415. {
  42416. name: "Planetary",
  42417. height: math.unit(10000, "miles")
  42418. },
  42419. ]
  42420. ))
  42421. characterMakers.push(() => makeCharacter(
  42422. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42423. {
  42424. front: {
  42425. height: math.unit(8 + 2/12, "feet"),
  42426. weight: math.unit(600, "lb"),
  42427. name: "Front",
  42428. image: {
  42429. source: "./media/characters/deam-nitrel/front.svg",
  42430. extra: 1308/1234,
  42431. bottom: 125/1433
  42432. }
  42433. },
  42434. },
  42435. [
  42436. {
  42437. name: "Normal",
  42438. height: math.unit(8 + 2/12, "feet"),
  42439. default: true
  42440. },
  42441. ]
  42442. ))
  42443. characterMakers.push(() => makeCharacter(
  42444. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42445. {
  42446. front: {
  42447. height: math.unit(6.1, "feet"),
  42448. weight: math.unit(180, "lb"),
  42449. name: "Front",
  42450. image: {
  42451. source: "./media/characters/skyress/front.svg",
  42452. extra: 1045/915,
  42453. bottom: 28/1073
  42454. }
  42455. },
  42456. maw: {
  42457. height: math.unit(1, "feet"),
  42458. name: "Maw",
  42459. image: {
  42460. source: "./media/characters/skyress/maw.svg"
  42461. }
  42462. },
  42463. },
  42464. [
  42465. {
  42466. name: "Normal",
  42467. height: math.unit(6.1, "feet"),
  42468. default: true
  42469. },
  42470. {
  42471. name: "Macro",
  42472. height: math.unit(200, "feet")
  42473. },
  42474. ]
  42475. ))
  42476. characterMakers.push(() => makeCharacter(
  42477. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42478. {
  42479. front: {
  42480. height: math.unit(4 + 2/12, "feet"),
  42481. weight: math.unit(40, "kg"),
  42482. name: "Front",
  42483. image: {
  42484. source: "./media/characters/amethyst-jones/front.svg",
  42485. extra: 1220/1150,
  42486. bottom: 101/1321
  42487. }
  42488. },
  42489. },
  42490. [
  42491. {
  42492. name: "Normal",
  42493. height: math.unit(4 + 2/12, "feet"),
  42494. default: true
  42495. },
  42496. ]
  42497. ))
  42498. characterMakers.push(() => makeCharacter(
  42499. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42500. {
  42501. front: {
  42502. height: math.unit(1.7, "m"),
  42503. weight: math.unit(135, "lb"),
  42504. name: "Front",
  42505. image: {
  42506. source: "./media/characters/jade/front.svg",
  42507. extra: 1818/1767,
  42508. bottom: 32/1850
  42509. }
  42510. },
  42511. back: {
  42512. height: math.unit(1.7, "m"),
  42513. weight: math.unit(135, "lb"),
  42514. name: "Back",
  42515. image: {
  42516. source: "./media/characters/jade/back.svg",
  42517. extra: 1869/1809,
  42518. bottom: 35/1904
  42519. }
  42520. },
  42521. hand: {
  42522. height: math.unit(0.24, "m"),
  42523. name: "Hand",
  42524. image: {
  42525. source: "./media/characters/jade/hand.svg"
  42526. }
  42527. },
  42528. foot: {
  42529. height: math.unit(0.263, "m"),
  42530. name: "Foot",
  42531. image: {
  42532. source: "./media/characters/jade/foot.svg"
  42533. }
  42534. },
  42535. dick: {
  42536. height: math.unit(0.47, "m"),
  42537. name: "Dick",
  42538. image: {
  42539. source: "./media/characters/jade/dick.svg"
  42540. }
  42541. },
  42542. },
  42543. [
  42544. {
  42545. name: "Micro",
  42546. height: math.unit(22, "cm")
  42547. },
  42548. {
  42549. name: "Normal",
  42550. height: math.unit(1.7, "m"),
  42551. default: true
  42552. },
  42553. {
  42554. name: "Macro",
  42555. height: math.unit(152, "m")
  42556. },
  42557. ]
  42558. ))
  42559. characterMakers.push(() => makeCharacter(
  42560. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42561. {
  42562. front: {
  42563. height: math.unit(100, "miles"),
  42564. weight: math.unit(20000, "tons"),
  42565. name: "Front",
  42566. image: {
  42567. source: "./media/characters/cookie/front.svg",
  42568. extra: 1125/1070,
  42569. bottom: 30/1155
  42570. }
  42571. },
  42572. },
  42573. [
  42574. {
  42575. name: "Big",
  42576. height: math.unit(50, "feet")
  42577. },
  42578. {
  42579. name: "Macro",
  42580. height: math.unit(100, "miles"),
  42581. default: true
  42582. },
  42583. {
  42584. name: "Megamacro",
  42585. height: math.unit(90000, "miles")
  42586. },
  42587. ]
  42588. ))
  42589. characterMakers.push(() => makeCharacter(
  42590. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42591. {
  42592. front: {
  42593. height: math.unit(6, "feet"),
  42594. weight: math.unit(145, "lb"),
  42595. name: "Front",
  42596. image: {
  42597. source: "./media/characters/farzian/front.svg",
  42598. extra: 1902/1693,
  42599. bottom: 108/2010
  42600. }
  42601. },
  42602. },
  42603. [
  42604. {
  42605. name: "Macro",
  42606. height: math.unit(500, "feet"),
  42607. default: true
  42608. },
  42609. ]
  42610. ))
  42611. characterMakers.push(() => makeCharacter(
  42612. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42613. {
  42614. front: {
  42615. height: math.unit(3 + 6/12, "feet"),
  42616. weight: math.unit(50, "lb"),
  42617. name: "Front",
  42618. image: {
  42619. source: "./media/characters/kimberly-tilson/front.svg",
  42620. extra: 1400/1322,
  42621. bottom: 36/1436
  42622. }
  42623. },
  42624. back: {
  42625. height: math.unit(3 + 6/12, "feet"),
  42626. weight: math.unit(50, "lb"),
  42627. name: "Back",
  42628. image: {
  42629. source: "./media/characters/kimberly-tilson/back.svg",
  42630. extra: 1370/1307,
  42631. bottom: 20/1390
  42632. }
  42633. },
  42634. },
  42635. [
  42636. {
  42637. name: "Normal",
  42638. height: math.unit(3 + 6/12, "feet"),
  42639. default: true
  42640. },
  42641. ]
  42642. ))
  42643. characterMakers.push(() => makeCharacter(
  42644. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42645. {
  42646. front: {
  42647. height: math.unit(350, "meters"),
  42648. weight: math.unit(7.57059e+8, "lb"),
  42649. name: "Front",
  42650. image: {
  42651. source: "./media/characters/harthos/front.svg",
  42652. extra: 455/446,
  42653. bottom: 15/470
  42654. },
  42655. form: "peacekeeper",
  42656. default: true
  42657. },
  42658. allusus_front: {
  42659. height: math.unit(270, "meters"),
  42660. weight: math.unit(3.47550e+8, "lb"),
  42661. name: "Front",
  42662. image: {
  42663. source: "./media/characters/harthos/allusus-front.svg",
  42664. extra: 455/446,
  42665. bottom: 15/470
  42666. },
  42667. form: "allusus",
  42668. },
  42669. },
  42670. [
  42671. {
  42672. name: "Macro",
  42673. height: math.unit(350, "meters"),
  42674. default: true,
  42675. form: "peacekeeper"
  42676. },
  42677. {
  42678. name: "Macro",
  42679. height: math.unit(270, "meters"),
  42680. default: true,
  42681. form: "allusus"
  42682. },
  42683. ],
  42684. {
  42685. "peacekeeper": {
  42686. name: "Peacekeeper",
  42687. default: true
  42688. },
  42689. "allusus": {
  42690. name: "Allusus",
  42691. },
  42692. }
  42693. ))
  42694. characterMakers.push(() => makeCharacter(
  42695. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42696. {
  42697. front: {
  42698. height: math.unit(15, "feet"),
  42699. name: "Front",
  42700. image: {
  42701. source: "./media/characters/hypatia/front.svg",
  42702. extra: 1653/1591,
  42703. bottom: 79/1732
  42704. }
  42705. },
  42706. },
  42707. [
  42708. {
  42709. name: "Normal",
  42710. height: math.unit(15, "feet")
  42711. },
  42712. {
  42713. name: "Small",
  42714. height: math.unit(300, "feet")
  42715. },
  42716. {
  42717. name: "Macro",
  42718. height: math.unit(2500, "feet"),
  42719. default: true
  42720. },
  42721. {
  42722. name: "Mega Macro",
  42723. height: math.unit(1500, "miles")
  42724. },
  42725. {
  42726. name: "Giga Macro",
  42727. height: math.unit(1.5e6, "miles")
  42728. },
  42729. ]
  42730. ))
  42731. characterMakers.push(() => makeCharacter(
  42732. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42733. {
  42734. front: {
  42735. height: math.unit(6, "feet"),
  42736. weight: math.unit(200, "lb"),
  42737. name: "Front",
  42738. image: {
  42739. source: "./media/characters/wulver/front.svg",
  42740. extra: 1724/1632,
  42741. bottom: 130/1854
  42742. }
  42743. },
  42744. frontNsfw: {
  42745. height: math.unit(6, "feet"),
  42746. weight: math.unit(200, "lb"),
  42747. name: "Front (NSFW)",
  42748. image: {
  42749. source: "./media/characters/wulver/front-nsfw.svg",
  42750. extra: 1724/1632,
  42751. bottom: 130/1854
  42752. }
  42753. },
  42754. },
  42755. [
  42756. {
  42757. name: "Human-Sized",
  42758. height: math.unit(6, "feet")
  42759. },
  42760. {
  42761. name: "Normal",
  42762. height: math.unit(4, "meters"),
  42763. default: true
  42764. },
  42765. {
  42766. name: "Large",
  42767. height: math.unit(6, "m")
  42768. },
  42769. ]
  42770. ))
  42771. characterMakers.push(() => makeCharacter(
  42772. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42773. {
  42774. front: {
  42775. height: math.unit(7, "feet"),
  42776. name: "Front",
  42777. image: {
  42778. source: "./media/characters/maru/front.svg",
  42779. extra: 1595/1570,
  42780. bottom: 0/1595
  42781. }
  42782. },
  42783. },
  42784. [
  42785. {
  42786. name: "Normal",
  42787. height: math.unit(7, "feet"),
  42788. default: true
  42789. },
  42790. {
  42791. name: "Macro",
  42792. height: math.unit(700, "feet")
  42793. },
  42794. {
  42795. name: "Mega Macro",
  42796. height: math.unit(25, "miles")
  42797. },
  42798. ]
  42799. ))
  42800. characterMakers.push(() => makeCharacter(
  42801. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42802. {
  42803. front: {
  42804. height: math.unit(6, "feet"),
  42805. weight: math.unit(170, "lb"),
  42806. name: "Front",
  42807. image: {
  42808. source: "./media/characters/xenon/front.svg",
  42809. extra: 1376/1305,
  42810. bottom: 56/1432
  42811. }
  42812. },
  42813. back: {
  42814. height: math.unit(6, "feet"),
  42815. weight: math.unit(170, "lb"),
  42816. name: "Back",
  42817. image: {
  42818. source: "./media/characters/xenon/back.svg",
  42819. extra: 1328/1259,
  42820. bottom: 95/1423
  42821. }
  42822. },
  42823. maw: {
  42824. height: math.unit(0.52, "feet"),
  42825. name: "Maw",
  42826. image: {
  42827. source: "./media/characters/xenon/maw.svg"
  42828. }
  42829. },
  42830. handLeft: {
  42831. height: math.unit(0.82 * 169 / 153, "feet"),
  42832. name: "Hand (Left)",
  42833. image: {
  42834. source: "./media/characters/xenon/hand-left.svg"
  42835. }
  42836. },
  42837. handRight: {
  42838. height: math.unit(0.82, "feet"),
  42839. name: "Hand (Right)",
  42840. image: {
  42841. source: "./media/characters/xenon/hand-right.svg"
  42842. }
  42843. },
  42844. footLeft: {
  42845. height: math.unit(1.13, "feet"),
  42846. name: "Foot (Left)",
  42847. image: {
  42848. source: "./media/characters/xenon/foot-left.svg"
  42849. }
  42850. },
  42851. footRight: {
  42852. height: math.unit(1.13 * 194 / 196, "feet"),
  42853. name: "Foot (Right)",
  42854. image: {
  42855. source: "./media/characters/xenon/foot-right.svg"
  42856. }
  42857. },
  42858. },
  42859. [
  42860. {
  42861. name: "Micro",
  42862. height: math.unit(0.8, "inches")
  42863. },
  42864. {
  42865. name: "Normal",
  42866. height: math.unit(6, "feet")
  42867. },
  42868. {
  42869. name: "Macro",
  42870. height: math.unit(50, "feet"),
  42871. default: true
  42872. },
  42873. {
  42874. name: "Macro+",
  42875. height: math.unit(250, "feet")
  42876. },
  42877. {
  42878. name: "Megamacro",
  42879. height: math.unit(1500, "feet")
  42880. },
  42881. ]
  42882. ))
  42883. characterMakers.push(() => makeCharacter(
  42884. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42885. {
  42886. front: {
  42887. height: math.unit(7 + 5/12, "feet"),
  42888. name: "Front",
  42889. image: {
  42890. source: "./media/characters/zane/front.svg",
  42891. extra: 1260/1203,
  42892. bottom: 94/1354
  42893. }
  42894. },
  42895. back: {
  42896. height: math.unit(5.05, "feet"),
  42897. name: "Back",
  42898. image: {
  42899. source: "./media/characters/zane/back.svg",
  42900. extra: 893/829,
  42901. bottom: 30/923
  42902. }
  42903. },
  42904. werewolf: {
  42905. height: math.unit(11, "feet"),
  42906. name: "Werewolf",
  42907. image: {
  42908. source: "./media/characters/zane/werewolf.svg",
  42909. extra: 1383/1323,
  42910. bottom: 89/1472
  42911. }
  42912. },
  42913. foot: {
  42914. height: math.unit(1.46, "feet"),
  42915. name: "Foot",
  42916. image: {
  42917. source: "./media/characters/zane/foot.svg"
  42918. }
  42919. },
  42920. footFront: {
  42921. height: math.unit(0.784, "feet"),
  42922. name: "Foot (Front)",
  42923. image: {
  42924. source: "./media/characters/zane/foot-front.svg"
  42925. }
  42926. },
  42927. dick: {
  42928. height: math.unit(1.95, "feet"),
  42929. name: "Dick",
  42930. image: {
  42931. source: "./media/characters/zane/dick.svg"
  42932. }
  42933. },
  42934. dickWerewolf: {
  42935. height: math.unit(3.77, "feet"),
  42936. name: "Dick (Werewolf)",
  42937. image: {
  42938. source: "./media/characters/zane/dick.svg"
  42939. }
  42940. },
  42941. },
  42942. [
  42943. {
  42944. name: "Normal",
  42945. height: math.unit(7 + 5/12, "feet"),
  42946. default: true
  42947. },
  42948. ]
  42949. ))
  42950. characterMakers.push(() => makeCharacter(
  42951. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42952. {
  42953. front: {
  42954. height: math.unit(6 + 2/12, "feet"),
  42955. weight: math.unit(284, "lb"),
  42956. name: "Front",
  42957. image: {
  42958. source: "./media/characters/benni-desparque/front.svg",
  42959. extra: 1353/1126,
  42960. bottom: 69/1422
  42961. }
  42962. },
  42963. },
  42964. [
  42965. {
  42966. name: "Civilian",
  42967. height: math.unit(6 + 2/12, "feet")
  42968. },
  42969. {
  42970. name: "Normal",
  42971. height: math.unit(98, "feet"),
  42972. default: true
  42973. },
  42974. {
  42975. name: "Kaiju Fighter",
  42976. height: math.unit(268, "feet")
  42977. },
  42978. ]
  42979. ))
  42980. characterMakers.push(() => makeCharacter(
  42981. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42982. {
  42983. front: {
  42984. height: math.unit(5, "feet"),
  42985. weight: math.unit(105, "lb"),
  42986. name: "Front",
  42987. image: {
  42988. source: "./media/characters/maxine/front.svg",
  42989. extra: 1386/1250,
  42990. bottom: 71/1457
  42991. }
  42992. },
  42993. },
  42994. [
  42995. {
  42996. name: "Normal",
  42997. height: math.unit(5, "feet"),
  42998. default: true
  42999. },
  43000. ]
  43001. ))
  43002. characterMakers.push(() => makeCharacter(
  43003. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43004. {
  43005. front: {
  43006. height: math.unit(11 + 7/12, "feet"),
  43007. weight: math.unit(9576, "lb"),
  43008. name: "Front",
  43009. image: {
  43010. source: "./media/characters/scaly/front.svg",
  43011. extra: 888/867,
  43012. bottom: 36/924
  43013. }
  43014. },
  43015. },
  43016. [
  43017. {
  43018. name: "Normal",
  43019. height: math.unit(11 + 7/12, "feet"),
  43020. default: true
  43021. },
  43022. ]
  43023. ))
  43024. characterMakers.push(() => makeCharacter(
  43025. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43026. {
  43027. front: {
  43028. height: math.unit(6 + 3/12, "feet"),
  43029. name: "Front",
  43030. image: {
  43031. source: "./media/characters/saelria/front.svg",
  43032. extra: 1243/1138,
  43033. bottom: 46/1289
  43034. }
  43035. },
  43036. },
  43037. [
  43038. {
  43039. name: "Micro",
  43040. height: math.unit(6, "inches"),
  43041. },
  43042. {
  43043. name: "Normal",
  43044. height: math.unit(6 + 3/12, "feet"),
  43045. default: true
  43046. },
  43047. {
  43048. name: "Macro",
  43049. height: math.unit(25, "feet")
  43050. },
  43051. ]
  43052. ))
  43053. characterMakers.push(() => makeCharacter(
  43054. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43055. {
  43056. front: {
  43057. height: math.unit(80, "meters"),
  43058. weight: math.unit(7000, "tonnes"),
  43059. name: "Front",
  43060. image: {
  43061. source: "./media/characters/tef/front.svg",
  43062. extra: 2036/1991,
  43063. bottom: 54/2090
  43064. }
  43065. },
  43066. back: {
  43067. height: math.unit(80, "meters"),
  43068. weight: math.unit(7000, "tonnes"),
  43069. name: "Back",
  43070. image: {
  43071. source: "./media/characters/tef/back.svg",
  43072. extra: 2036/1991,
  43073. bottom: 54/2090
  43074. }
  43075. },
  43076. },
  43077. [
  43078. {
  43079. name: "Macro",
  43080. height: math.unit(80, "meters"),
  43081. default: true
  43082. },
  43083. ]
  43084. ))
  43085. characterMakers.push(() => makeCharacter(
  43086. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43087. {
  43088. front: {
  43089. height: math.unit(13, "feet"),
  43090. weight: math.unit(6, "tons"),
  43091. name: "Front",
  43092. image: {
  43093. source: "./media/characters/rover/front.svg",
  43094. extra: 1233/1156,
  43095. bottom: 50/1283
  43096. }
  43097. },
  43098. back: {
  43099. height: math.unit(13, "feet"),
  43100. weight: math.unit(6, "tons"),
  43101. name: "Back",
  43102. image: {
  43103. source: "./media/characters/rover/back.svg",
  43104. extra: 1327/1258,
  43105. bottom: 39/1366
  43106. }
  43107. },
  43108. },
  43109. [
  43110. {
  43111. name: "Normal",
  43112. height: math.unit(13, "feet"),
  43113. default: true
  43114. },
  43115. {
  43116. name: "Macro",
  43117. height: math.unit(1300, "feet")
  43118. },
  43119. {
  43120. name: "Megamacro",
  43121. height: math.unit(1300, "miles")
  43122. },
  43123. {
  43124. name: "Gigamacro",
  43125. height: math.unit(1300000, "miles")
  43126. },
  43127. ]
  43128. ))
  43129. characterMakers.push(() => makeCharacter(
  43130. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43131. {
  43132. front: {
  43133. height: math.unit(10, "feet"),
  43134. weight: math.unit(500, "lb"),
  43135. name: "Front",
  43136. image: {
  43137. source: "./media/characters/ariz/front.svg",
  43138. extra: 461/450,
  43139. bottom: 16/477
  43140. }
  43141. },
  43142. },
  43143. [
  43144. {
  43145. name: "MiniMacro",
  43146. height: math.unit(10, "feet"),
  43147. default: true
  43148. },
  43149. ]
  43150. ))
  43151. characterMakers.push(() => makeCharacter(
  43152. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43153. {
  43154. front: {
  43155. height: math.unit(6, "feet"),
  43156. weight: math.unit(140, "lb"),
  43157. name: "Front",
  43158. image: {
  43159. source: "./media/characters/sigrun/front.svg",
  43160. extra: 1418/1359,
  43161. bottom: 27/1445
  43162. }
  43163. },
  43164. },
  43165. [
  43166. {
  43167. name: "Macro",
  43168. height: math.unit(35, "feet"),
  43169. default: true
  43170. },
  43171. ]
  43172. ))
  43173. characterMakers.push(() => makeCharacter(
  43174. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43175. {
  43176. front: {
  43177. height: math.unit(6, "feet"),
  43178. weight: math.unit(150, "lb"),
  43179. name: "Front",
  43180. image: {
  43181. source: "./media/characters/numin/front.svg",
  43182. extra: 1433/1388,
  43183. bottom: 12/1445
  43184. }
  43185. },
  43186. },
  43187. [
  43188. {
  43189. name: "Macro",
  43190. height: math.unit(21.5, "km"),
  43191. default: true
  43192. },
  43193. ]
  43194. ))
  43195. characterMakers.push(() => makeCharacter(
  43196. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43197. {
  43198. front: {
  43199. height: math.unit(6, "feet"),
  43200. weight: math.unit(463, "lb"),
  43201. name: "Front",
  43202. image: {
  43203. source: "./media/characters/melwa/front.svg",
  43204. extra: 1307/1248,
  43205. bottom: 93/1400
  43206. }
  43207. },
  43208. },
  43209. [
  43210. {
  43211. name: "Macro",
  43212. height: math.unit(50, "meters"),
  43213. default: true
  43214. },
  43215. ]
  43216. ))
  43217. characterMakers.push(() => makeCharacter(
  43218. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43219. {
  43220. front: {
  43221. height: math.unit(325, "feet"),
  43222. name: "Front",
  43223. image: {
  43224. source: "./media/characters/zorkaiju/front.svg",
  43225. extra: 1955/1814,
  43226. bottom: 40/1995
  43227. }
  43228. },
  43229. frontExtended: {
  43230. height: math.unit(325, "feet"),
  43231. name: "Front (Extended)",
  43232. image: {
  43233. source: "./media/characters/zorkaiju/front-extended.svg",
  43234. extra: 1955/1814,
  43235. bottom: 40/1995
  43236. }
  43237. },
  43238. side: {
  43239. height: math.unit(325, "feet"),
  43240. name: "Side",
  43241. image: {
  43242. source: "./media/characters/zorkaiju/side.svg",
  43243. extra: 1495/1396,
  43244. bottom: 17/1512
  43245. }
  43246. },
  43247. sideExtended: {
  43248. height: math.unit(325, "feet"),
  43249. name: "Side (Extended)",
  43250. image: {
  43251. source: "./media/characters/zorkaiju/side-extended.svg",
  43252. extra: 1495/1396,
  43253. bottom: 17/1512
  43254. }
  43255. },
  43256. back: {
  43257. height: math.unit(325, "feet"),
  43258. name: "Back",
  43259. image: {
  43260. source: "./media/characters/zorkaiju/back.svg",
  43261. extra: 1959/1821,
  43262. bottom: 31/1990
  43263. }
  43264. },
  43265. backExtended: {
  43266. height: math.unit(325, "feet"),
  43267. name: "Back (Extended)",
  43268. image: {
  43269. source: "./media/characters/zorkaiju/back-extended.svg",
  43270. extra: 1959/1821,
  43271. bottom: 31/1990
  43272. }
  43273. },
  43274. hand: {
  43275. height: math.unit(58.4, "feet"),
  43276. name: "Hand",
  43277. image: {
  43278. source: "./media/characters/zorkaiju/hand.svg"
  43279. }
  43280. },
  43281. handExtended: {
  43282. height: math.unit(61.4, "feet"),
  43283. name: "Hand (Extended)",
  43284. image: {
  43285. source: "./media/characters/zorkaiju/hand-extended.svg"
  43286. }
  43287. },
  43288. foot: {
  43289. height: math.unit(95, "feet"),
  43290. name: "Foot",
  43291. image: {
  43292. source: "./media/characters/zorkaiju/foot.svg"
  43293. }
  43294. },
  43295. leftArm: {
  43296. height: math.unit(59, "feet"),
  43297. name: "Left Arm",
  43298. image: {
  43299. source: "./media/characters/zorkaiju/left-arm.svg"
  43300. }
  43301. },
  43302. rightArm: {
  43303. height: math.unit(59, "feet"),
  43304. name: "Right Arm",
  43305. image: {
  43306. source: "./media/characters/zorkaiju/right-arm.svg"
  43307. }
  43308. },
  43309. leftArmExtended: {
  43310. height: math.unit(59 * 1.033546, "feet"),
  43311. name: "Left Arm (Extended)",
  43312. image: {
  43313. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43314. }
  43315. },
  43316. rightArmExtended: {
  43317. height: math.unit(59 * 1.0496, "feet"),
  43318. name: "Right Arm (Extended)",
  43319. image: {
  43320. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43321. }
  43322. },
  43323. tail: {
  43324. height: math.unit(104, "feet"),
  43325. name: "Tail",
  43326. image: {
  43327. source: "./media/characters/zorkaiju/tail.svg"
  43328. }
  43329. },
  43330. tailExtended: {
  43331. height: math.unit(104, "feet"),
  43332. name: "Tail (Extended)",
  43333. image: {
  43334. source: "./media/characters/zorkaiju/tail-extended.svg"
  43335. }
  43336. },
  43337. tailBottom: {
  43338. height: math.unit(104, "feet"),
  43339. name: "Tail Bottom",
  43340. image: {
  43341. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43342. }
  43343. },
  43344. crystal: {
  43345. height: math.unit(27.54, "feet"),
  43346. name: "Crystal",
  43347. image: {
  43348. source: "./media/characters/zorkaiju/crystal.svg"
  43349. }
  43350. },
  43351. },
  43352. [
  43353. {
  43354. name: "Kaiju",
  43355. height: math.unit(325, "feet"),
  43356. default: true
  43357. },
  43358. ]
  43359. ))
  43360. characterMakers.push(() => makeCharacter(
  43361. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43362. {
  43363. front: {
  43364. height: math.unit(6 + 1/12, "feet"),
  43365. weight: math.unit(115, "lb"),
  43366. name: "Front",
  43367. image: {
  43368. source: "./media/characters/bailey-belfry/front.svg",
  43369. extra: 1240/1121,
  43370. bottom: 101/1341
  43371. }
  43372. },
  43373. },
  43374. [
  43375. {
  43376. name: "Normal",
  43377. height: math.unit(6 + 1/12, "feet"),
  43378. default: true
  43379. },
  43380. ]
  43381. ))
  43382. characterMakers.push(() => makeCharacter(
  43383. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43384. {
  43385. side: {
  43386. height: math.unit(4, "meters"),
  43387. weight: math.unit(250, "kg"),
  43388. name: "Side",
  43389. image: {
  43390. source: "./media/characters/blacky/side.svg",
  43391. extra: 1027/919,
  43392. bottom: 43/1070
  43393. }
  43394. },
  43395. maw: {
  43396. height: math.unit(1, "meters"),
  43397. name: "Maw",
  43398. image: {
  43399. source: "./media/characters/blacky/maw.svg"
  43400. }
  43401. },
  43402. paw: {
  43403. height: math.unit(1, "meters"),
  43404. name: "Paw",
  43405. image: {
  43406. source: "./media/characters/blacky/paw.svg"
  43407. }
  43408. },
  43409. },
  43410. [
  43411. {
  43412. name: "Normal",
  43413. height: math.unit(4, "meters"),
  43414. default: true
  43415. },
  43416. ]
  43417. ))
  43418. characterMakers.push(() => makeCharacter(
  43419. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43420. {
  43421. front: {
  43422. height: math.unit(170, "cm"),
  43423. weight: math.unit(66, "kg"),
  43424. name: "Front",
  43425. image: {
  43426. source: "./media/characters/thux-ei/front.svg",
  43427. extra: 1109/1011,
  43428. bottom: 8/1117
  43429. }
  43430. },
  43431. },
  43432. [
  43433. {
  43434. name: "Normal",
  43435. height: math.unit(170, "cm"),
  43436. default: true
  43437. },
  43438. ]
  43439. ))
  43440. characterMakers.push(() => makeCharacter(
  43441. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43442. {
  43443. front: {
  43444. height: math.unit(5, "feet"),
  43445. weight: math.unit(120, "lb"),
  43446. name: "Front",
  43447. image: {
  43448. source: "./media/characters/roxanne-voltaire/front.svg",
  43449. extra: 1901/1779,
  43450. bottom: 53/1954
  43451. }
  43452. },
  43453. },
  43454. [
  43455. {
  43456. name: "Normal",
  43457. height: math.unit(5, "feet"),
  43458. default: true
  43459. },
  43460. {
  43461. name: "Giant",
  43462. height: math.unit(50, "feet")
  43463. },
  43464. {
  43465. name: "Titan",
  43466. height: math.unit(500, "feet")
  43467. },
  43468. {
  43469. name: "Macro",
  43470. height: math.unit(5000, "feet")
  43471. },
  43472. {
  43473. name: "Megamacro",
  43474. height: math.unit(50000, "feet")
  43475. },
  43476. {
  43477. name: "Gigamacro",
  43478. height: math.unit(500000, "feet")
  43479. },
  43480. {
  43481. name: "Teramacro",
  43482. height: math.unit(5e6, "feet")
  43483. },
  43484. ]
  43485. ))
  43486. characterMakers.push(() => makeCharacter(
  43487. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43488. {
  43489. front: {
  43490. height: math.unit(6 + 2/12, "feet"),
  43491. name: "Front",
  43492. image: {
  43493. source: "./media/characters/squeaks/front.svg",
  43494. extra: 1823/1768,
  43495. bottom: 138/1961
  43496. }
  43497. },
  43498. },
  43499. [
  43500. {
  43501. name: "Micro",
  43502. height: math.unit(0.5, "inches")
  43503. },
  43504. {
  43505. name: "Normal",
  43506. height: math.unit(6 + 2/12, "feet"),
  43507. default: true
  43508. },
  43509. {
  43510. name: "Macro",
  43511. height: math.unit(600, "feet")
  43512. },
  43513. ]
  43514. ))
  43515. characterMakers.push(() => makeCharacter(
  43516. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43517. {
  43518. front: {
  43519. height: math.unit(1.72, "meters"),
  43520. name: "Front",
  43521. image: {
  43522. source: "./media/characters/archinger/front.svg",
  43523. extra: 1861/1675,
  43524. bottom: 125/1986
  43525. }
  43526. },
  43527. back: {
  43528. height: math.unit(1.72, "meters"),
  43529. name: "Back",
  43530. image: {
  43531. source: "./media/characters/archinger/back.svg",
  43532. extra: 1844/1701,
  43533. bottom: 104/1948
  43534. }
  43535. },
  43536. cock: {
  43537. height: math.unit(0.59, "feet"),
  43538. name: "Cock",
  43539. image: {
  43540. source: "./media/characters/archinger/cock.svg"
  43541. }
  43542. },
  43543. },
  43544. [
  43545. {
  43546. name: "Normal",
  43547. height: math.unit(1.72, "meters"),
  43548. default: true
  43549. },
  43550. {
  43551. name: "Macro",
  43552. height: math.unit(84, "meters")
  43553. },
  43554. {
  43555. name: "Macro+",
  43556. height: math.unit(112, "meters")
  43557. },
  43558. {
  43559. name: "Macro++",
  43560. height: math.unit(960, "meters")
  43561. },
  43562. {
  43563. name: "Macro+++",
  43564. height: math.unit(4, "km")
  43565. },
  43566. {
  43567. name: "Macro++++",
  43568. height: math.unit(48, "km")
  43569. },
  43570. {
  43571. name: "Macro+++++",
  43572. height: math.unit(4500, "km")
  43573. },
  43574. ]
  43575. ))
  43576. characterMakers.push(() => makeCharacter(
  43577. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43578. {
  43579. front: {
  43580. height: math.unit(5 + 5/12, "feet"),
  43581. name: "Front",
  43582. image: {
  43583. source: "./media/characters/alsnapz/front.svg",
  43584. extra: 1157/1065,
  43585. bottom: 42/1199
  43586. }
  43587. },
  43588. },
  43589. [
  43590. {
  43591. name: "Normal",
  43592. height: math.unit(5 + 5/12, "feet"),
  43593. default: true
  43594. },
  43595. ]
  43596. ))
  43597. characterMakers.push(() => makeCharacter(
  43598. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43599. {
  43600. side: {
  43601. height: math.unit(3.2, "earths"),
  43602. name: "Side",
  43603. image: {
  43604. source: "./media/characters/mag/side.svg",
  43605. extra: 1331/1008,
  43606. bottom: 52/1383
  43607. }
  43608. },
  43609. wing: {
  43610. height: math.unit(1.94, "earths"),
  43611. name: "Wing",
  43612. image: {
  43613. source: "./media/characters/mag/wing.svg"
  43614. }
  43615. },
  43616. dick: {
  43617. height: math.unit(1.8, "earths"),
  43618. name: "Dick",
  43619. image: {
  43620. source: "./media/characters/mag/dick.svg"
  43621. }
  43622. },
  43623. ass: {
  43624. height: math.unit(1.33, "earths"),
  43625. name: "Ass",
  43626. image: {
  43627. source: "./media/characters/mag/ass.svg"
  43628. }
  43629. },
  43630. head: {
  43631. height: math.unit(1.1, "earths"),
  43632. name: "Head",
  43633. image: {
  43634. source: "./media/characters/mag/head.svg"
  43635. }
  43636. },
  43637. maw: {
  43638. height: math.unit(1.62, "earths"),
  43639. name: "Maw",
  43640. image: {
  43641. source: "./media/characters/mag/maw.svg"
  43642. }
  43643. },
  43644. },
  43645. [
  43646. {
  43647. name: "Small",
  43648. height: math.unit(162, "feet")
  43649. },
  43650. {
  43651. name: "Normal",
  43652. height: math.unit(3.2, "earths"),
  43653. default: true
  43654. },
  43655. ]
  43656. ))
  43657. characterMakers.push(() => makeCharacter(
  43658. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43659. {
  43660. front: {
  43661. height: math.unit(512, "feet"),
  43662. weight: math.unit(63509, "tonnes"),
  43663. name: "Front",
  43664. image: {
  43665. source: "./media/characters/vorrel-harroc/front.svg",
  43666. extra: 1075/1063,
  43667. bottom: 62/1137
  43668. }
  43669. },
  43670. },
  43671. [
  43672. {
  43673. name: "Normal",
  43674. height: math.unit(10, "feet")
  43675. },
  43676. {
  43677. name: "Macro",
  43678. height: math.unit(512, "feet"),
  43679. default: true
  43680. },
  43681. {
  43682. name: "Megamacro",
  43683. height: math.unit(256, "miles")
  43684. },
  43685. {
  43686. name: "Gigamacro",
  43687. height: math.unit(4096, "miles")
  43688. },
  43689. ]
  43690. ))
  43691. characterMakers.push(() => makeCharacter(
  43692. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43693. {
  43694. side: {
  43695. height: math.unit(50, "feet"),
  43696. name: "Side",
  43697. image: {
  43698. source: "./media/characters/froimar/side.svg",
  43699. extra: 855/638,
  43700. bottom: 99/954
  43701. }
  43702. },
  43703. },
  43704. [
  43705. {
  43706. name: "Macro",
  43707. height: math.unit(50, "feet"),
  43708. default: true
  43709. },
  43710. ]
  43711. ))
  43712. characterMakers.push(() => makeCharacter(
  43713. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43714. {
  43715. front: {
  43716. height: math.unit(210, "miles"),
  43717. name: "Front",
  43718. image: {
  43719. source: "./media/characters/timothy/front.svg",
  43720. extra: 1007/943,
  43721. bottom: 62/1069
  43722. }
  43723. },
  43724. frontSkirt: {
  43725. height: math.unit(210, "miles"),
  43726. name: "Front (Skirt)",
  43727. image: {
  43728. source: "./media/characters/timothy/front-skirt.svg",
  43729. extra: 1007/943,
  43730. bottom: 62/1069
  43731. }
  43732. },
  43733. frontCoat: {
  43734. height: math.unit(210, "miles"),
  43735. name: "Front (Coat)",
  43736. image: {
  43737. source: "./media/characters/timothy/front-coat.svg",
  43738. extra: 1007/943,
  43739. bottom: 62/1069
  43740. }
  43741. },
  43742. },
  43743. [
  43744. {
  43745. name: "Macro",
  43746. height: math.unit(210, "miles"),
  43747. default: true
  43748. },
  43749. {
  43750. name: "Megamacro",
  43751. height: math.unit(210000, "miles")
  43752. },
  43753. ]
  43754. ))
  43755. characterMakers.push(() => makeCharacter(
  43756. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43757. {
  43758. front: {
  43759. height: math.unit(188, "feet"),
  43760. name: "Front",
  43761. image: {
  43762. source: "./media/characters/pyotr/front.svg",
  43763. extra: 1912/1826,
  43764. bottom: 18/1930
  43765. }
  43766. },
  43767. },
  43768. [
  43769. {
  43770. name: "Macro",
  43771. height: math.unit(188, "feet"),
  43772. default: true
  43773. },
  43774. {
  43775. name: "Megamacro",
  43776. height: math.unit(8, "miles")
  43777. },
  43778. ]
  43779. ))
  43780. characterMakers.push(() => makeCharacter(
  43781. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43782. {
  43783. side: {
  43784. height: math.unit(10, "feet"),
  43785. weight: math.unit(4500, "lb"),
  43786. name: "Side",
  43787. image: {
  43788. source: "./media/characters/ackart/side.svg",
  43789. extra: 1776/1668,
  43790. bottom: 116/1892
  43791. }
  43792. },
  43793. },
  43794. [
  43795. {
  43796. name: "Normal",
  43797. height: math.unit(10, "feet"),
  43798. default: true
  43799. },
  43800. ]
  43801. ))
  43802. characterMakers.push(() => makeCharacter(
  43803. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43804. {
  43805. side: {
  43806. height: math.unit(21, "feet"),
  43807. name: "Side",
  43808. image: {
  43809. source: "./media/characters/nolow/side.svg",
  43810. extra: 1484/1434,
  43811. bottom: 85/1569
  43812. }
  43813. },
  43814. sideErect: {
  43815. height: math.unit(21, "feet"),
  43816. name: "Side-erect",
  43817. image: {
  43818. source: "./media/characters/nolow/side-erect.svg",
  43819. extra: 1484/1434,
  43820. bottom: 85/1569
  43821. }
  43822. },
  43823. },
  43824. [
  43825. {
  43826. name: "Regular",
  43827. height: math.unit(12, "feet")
  43828. },
  43829. {
  43830. name: "Big Chee",
  43831. height: math.unit(21, "feet"),
  43832. default: true
  43833. },
  43834. ]
  43835. ))
  43836. characterMakers.push(() => makeCharacter(
  43837. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43838. {
  43839. front: {
  43840. height: math.unit(7, "feet"),
  43841. weight: math.unit(250, "lb"),
  43842. name: "Front",
  43843. image: {
  43844. source: "./media/characters/nines/front.svg",
  43845. extra: 1741/1607,
  43846. bottom: 41/1782
  43847. }
  43848. },
  43849. side: {
  43850. height: math.unit(7, "feet"),
  43851. weight: math.unit(250, "lb"),
  43852. name: "Side",
  43853. image: {
  43854. source: "./media/characters/nines/side.svg",
  43855. extra: 1854/1735,
  43856. bottom: 93/1947
  43857. }
  43858. },
  43859. back: {
  43860. height: math.unit(7, "feet"),
  43861. weight: math.unit(250, "lb"),
  43862. name: "Back",
  43863. image: {
  43864. source: "./media/characters/nines/back.svg",
  43865. extra: 1748/1615,
  43866. bottom: 20/1768
  43867. }
  43868. },
  43869. },
  43870. [
  43871. {
  43872. name: "Megamacro",
  43873. height: math.unit(99, "km"),
  43874. default: true
  43875. },
  43876. ]
  43877. ))
  43878. characterMakers.push(() => makeCharacter(
  43879. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43880. {
  43881. front: {
  43882. height: math.unit(5 + 10/12, "feet"),
  43883. weight: math.unit(210, "lb"),
  43884. name: "Front",
  43885. image: {
  43886. source: "./media/characters/zenith/front.svg",
  43887. extra: 1531/1452,
  43888. bottom: 198/1729
  43889. }
  43890. },
  43891. back: {
  43892. height: math.unit(5 + 10/12, "feet"),
  43893. weight: math.unit(210, "lb"),
  43894. name: "Back",
  43895. image: {
  43896. source: "./media/characters/zenith/back.svg",
  43897. extra: 1571/1487,
  43898. bottom: 75/1646
  43899. }
  43900. },
  43901. },
  43902. [
  43903. {
  43904. name: "Normal",
  43905. height: math.unit(5 + 10/12, "feet"),
  43906. default: true
  43907. }
  43908. ]
  43909. ))
  43910. characterMakers.push(() => makeCharacter(
  43911. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43912. {
  43913. front: {
  43914. height: math.unit(4, "feet"),
  43915. weight: math.unit(60, "lb"),
  43916. name: "Front",
  43917. image: {
  43918. source: "./media/characters/jasper/front.svg",
  43919. extra: 1450/1379,
  43920. bottom: 19/1469
  43921. }
  43922. },
  43923. },
  43924. [
  43925. {
  43926. name: "Normal",
  43927. height: math.unit(4, "feet"),
  43928. default: true
  43929. },
  43930. ]
  43931. ))
  43932. characterMakers.push(() => makeCharacter(
  43933. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43934. {
  43935. front: {
  43936. height: math.unit(6 + 5/12, "feet"),
  43937. weight: math.unit(290, "lb"),
  43938. name: "Front",
  43939. image: {
  43940. source: "./media/characters/tiberius-thyben/front.svg",
  43941. extra: 757/739,
  43942. bottom: 39/796
  43943. }
  43944. },
  43945. },
  43946. [
  43947. {
  43948. name: "Micro",
  43949. height: math.unit(1.5, "inches")
  43950. },
  43951. {
  43952. name: "Normal",
  43953. height: math.unit(6 + 5/12, "feet"),
  43954. default: true
  43955. },
  43956. {
  43957. name: "Macro",
  43958. height: math.unit(300, "feet")
  43959. },
  43960. ]
  43961. ))
  43962. characterMakers.push(() => makeCharacter(
  43963. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43964. {
  43965. front: {
  43966. height: math.unit(5 + 6/12, "feet"),
  43967. weight: math.unit(60, "kg"),
  43968. name: "Front",
  43969. image: {
  43970. source: "./media/characters/sabre/front.svg",
  43971. extra: 738/671,
  43972. bottom: 27/765
  43973. }
  43974. },
  43975. },
  43976. [
  43977. {
  43978. name: "Teeny",
  43979. height: math.unit(2, "inches")
  43980. },
  43981. {
  43982. name: "Smol",
  43983. height: math.unit(8, "inches")
  43984. },
  43985. {
  43986. name: "Normal",
  43987. height: math.unit(5 + 6/12, "feet"),
  43988. default: true
  43989. },
  43990. {
  43991. name: "Mini-Macro",
  43992. height: math.unit(15, "feet")
  43993. },
  43994. {
  43995. name: "Macro",
  43996. height: math.unit(50, "feet")
  43997. },
  43998. ]
  43999. ))
  44000. characterMakers.push(() => makeCharacter(
  44001. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44002. {
  44003. front: {
  44004. height: math.unit(6 + 4/12, "feet"),
  44005. weight: math.unit(170, "lb"),
  44006. name: "Front",
  44007. image: {
  44008. source: "./media/characters/charlie/front.svg",
  44009. extra: 1348/1228,
  44010. bottom: 15/1363
  44011. }
  44012. },
  44013. },
  44014. [
  44015. {
  44016. name: "Macro",
  44017. height: math.unit(1700, "meters"),
  44018. default: true
  44019. },
  44020. {
  44021. name: "MegaMacro",
  44022. height: math.unit(20400, "meters")
  44023. },
  44024. ]
  44025. ))
  44026. characterMakers.push(() => makeCharacter(
  44027. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44028. {
  44029. front: {
  44030. height: math.unit(1.96, "meters"),
  44031. weight: math.unit(220, "lb"),
  44032. name: "Front",
  44033. image: {
  44034. source: "./media/characters/susan-grant/front.svg",
  44035. extra: 482/478,
  44036. bottom: 7/489
  44037. }
  44038. },
  44039. },
  44040. [
  44041. {
  44042. name: "Normal",
  44043. height: math.unit(1.96, "meters"),
  44044. default: true
  44045. },
  44046. {
  44047. name: "Macro",
  44048. height: math.unit(76.2, "meters")
  44049. },
  44050. {
  44051. name: "MegaMacro",
  44052. height: math.unit(305, "meters")
  44053. },
  44054. {
  44055. name: "GigaMacro",
  44056. height: math.unit(1220, "meters")
  44057. },
  44058. {
  44059. name: "SuperMacro",
  44060. height: math.unit(4878, "meters")
  44061. },
  44062. ]
  44063. ))
  44064. characterMakers.push(() => makeCharacter(
  44065. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44066. {
  44067. front: {
  44068. height: math.unit(5 + 4/12, "feet"),
  44069. weight: math.unit(110, "lb"),
  44070. name: "Front",
  44071. image: {
  44072. source: "./media/characters/axel-isanov/front.svg",
  44073. extra: 1096/1065,
  44074. bottom: 13/1109
  44075. }
  44076. },
  44077. },
  44078. [
  44079. {
  44080. name: "Normal",
  44081. height: math.unit(5 + 4/12, "feet"),
  44082. default: true
  44083. },
  44084. ]
  44085. ))
  44086. characterMakers.push(() => makeCharacter(
  44087. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44088. {
  44089. front: {
  44090. height: math.unit(9, "feet"),
  44091. weight: math.unit(467, "lb"),
  44092. name: "Front",
  44093. image: {
  44094. source: "./media/characters/necahual/front.svg",
  44095. extra: 920/873,
  44096. bottom: 26/946
  44097. }
  44098. },
  44099. back: {
  44100. height: math.unit(9, "feet"),
  44101. weight: math.unit(467, "lb"),
  44102. name: "Back",
  44103. image: {
  44104. source: "./media/characters/necahual/back.svg",
  44105. extra: 930/884,
  44106. bottom: 16/946
  44107. }
  44108. },
  44109. frontUnderwear: {
  44110. height: math.unit(9, "feet"),
  44111. weight: math.unit(467, "lb"),
  44112. name: "Front (Underwear)",
  44113. image: {
  44114. source: "./media/characters/necahual/front-underwear.svg",
  44115. extra: 920/873,
  44116. bottom: 26/946
  44117. }
  44118. },
  44119. frontDressed: {
  44120. height: math.unit(9, "feet"),
  44121. weight: math.unit(467, "lb"),
  44122. name: "Front (Dressed)",
  44123. image: {
  44124. source: "./media/characters/necahual/front-dressed.svg",
  44125. extra: 920/873,
  44126. bottom: 26/946
  44127. }
  44128. },
  44129. },
  44130. [
  44131. {
  44132. name: "Comprsesed",
  44133. height: math.unit(9, "feet")
  44134. },
  44135. {
  44136. name: "Natural",
  44137. height: math.unit(15, "feet"),
  44138. default: true
  44139. },
  44140. {
  44141. name: "Boosted",
  44142. height: math.unit(50, "feet")
  44143. },
  44144. {
  44145. name: "Boosted+",
  44146. height: math.unit(150, "feet")
  44147. },
  44148. {
  44149. name: "Max",
  44150. height: math.unit(500, "feet")
  44151. },
  44152. ]
  44153. ))
  44154. characterMakers.push(() => makeCharacter(
  44155. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44156. {
  44157. front: {
  44158. height: math.unit(22 + 1/12, "feet"),
  44159. weight: math.unit(3200, "lb"),
  44160. name: "Front",
  44161. image: {
  44162. source: "./media/characters/theo-acacia/front.svg",
  44163. extra: 1796/1741,
  44164. bottom: 83/1879
  44165. }
  44166. },
  44167. frontUnderwear: {
  44168. height: math.unit(22 + 1/12, "feet"),
  44169. weight: math.unit(3200, "lb"),
  44170. name: "Front (Underwear)",
  44171. image: {
  44172. source: "./media/characters/theo-acacia/front-underwear.svg",
  44173. extra: 1796/1741,
  44174. bottom: 83/1879
  44175. }
  44176. },
  44177. frontNude: {
  44178. height: math.unit(22 + 1/12, "feet"),
  44179. weight: math.unit(3200, "lb"),
  44180. name: "Front (Nude)",
  44181. image: {
  44182. source: "./media/characters/theo-acacia/front-nude.svg",
  44183. extra: 1796/1741,
  44184. bottom: 83/1879
  44185. }
  44186. },
  44187. },
  44188. [
  44189. {
  44190. name: "Normal",
  44191. height: math.unit(22 + 1/12, "feet"),
  44192. default: true
  44193. },
  44194. ]
  44195. ))
  44196. characterMakers.push(() => makeCharacter(
  44197. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44198. {
  44199. front: {
  44200. height: math.unit(20, "feet"),
  44201. name: "Front",
  44202. image: {
  44203. source: "./media/characters/astra/front.svg",
  44204. extra: 1850/1714,
  44205. bottom: 106/1956
  44206. }
  44207. },
  44208. frontUndressed: {
  44209. height: math.unit(20, "feet"),
  44210. name: "Front (Undressed)",
  44211. image: {
  44212. source: "./media/characters/astra/front-undressed.svg",
  44213. extra: 1926/1749,
  44214. bottom: 0/1926
  44215. }
  44216. },
  44217. hand: {
  44218. height: math.unit(1.53, "feet"),
  44219. name: "Hand",
  44220. image: {
  44221. source: "./media/characters/astra/hand.svg"
  44222. }
  44223. },
  44224. paw: {
  44225. height: math.unit(1.53, "feet"),
  44226. name: "Paw",
  44227. image: {
  44228. source: "./media/characters/astra/paw.svg"
  44229. }
  44230. },
  44231. },
  44232. [
  44233. {
  44234. name: "Smallest",
  44235. height: math.unit(20, "feet")
  44236. },
  44237. {
  44238. name: "Normal",
  44239. height: math.unit(1e9, "miles"),
  44240. default: true
  44241. },
  44242. {
  44243. name: "Larger",
  44244. height: math.unit(5, "multiverses")
  44245. },
  44246. {
  44247. name: "Largest",
  44248. height: math.unit(1e9, "multiverses")
  44249. },
  44250. ]
  44251. ))
  44252. characterMakers.push(() => makeCharacter(
  44253. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44254. {
  44255. front: {
  44256. height: math.unit(8, "feet"),
  44257. name: "Front",
  44258. image: {
  44259. source: "./media/characters/breanna/front.svg",
  44260. extra: 1912/1632,
  44261. bottom: 33/1945
  44262. }
  44263. },
  44264. },
  44265. [
  44266. {
  44267. name: "Smallest",
  44268. height: math.unit(8, "feet")
  44269. },
  44270. {
  44271. name: "Normal",
  44272. height: math.unit(1, "mile"),
  44273. default: true
  44274. },
  44275. {
  44276. name: "Maximum",
  44277. height: math.unit(1500000000000, "lightyears")
  44278. },
  44279. ]
  44280. ))
  44281. characterMakers.push(() => makeCharacter(
  44282. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44283. {
  44284. front: {
  44285. height: math.unit(5 + 11/12, "feet"),
  44286. weight: math.unit(155, "lb"),
  44287. name: "Front",
  44288. image: {
  44289. source: "./media/characters/cai/front.svg",
  44290. extra: 1823/1702,
  44291. bottom: 32/1855
  44292. }
  44293. },
  44294. back: {
  44295. height: math.unit(5 + 11/12, "feet"),
  44296. weight: math.unit(155, "lb"),
  44297. name: "Back",
  44298. image: {
  44299. source: "./media/characters/cai/back.svg",
  44300. extra: 1809/1708,
  44301. bottom: 31/1840
  44302. }
  44303. },
  44304. },
  44305. [
  44306. {
  44307. name: "Normal",
  44308. height: math.unit(5 + 11/12, "feet"),
  44309. default: true
  44310. },
  44311. {
  44312. name: "Big",
  44313. height: math.unit(15, "feet")
  44314. },
  44315. {
  44316. name: "Macro",
  44317. height: math.unit(200, "feet")
  44318. },
  44319. ]
  44320. ))
  44321. characterMakers.push(() => makeCharacter(
  44322. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44323. {
  44324. front: {
  44325. height: math.unit(5 + 6/12, "feet"),
  44326. weight: math.unit(160, "lb"),
  44327. name: "Front",
  44328. image: {
  44329. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44330. extra: 1227/1174,
  44331. bottom: 37/1264
  44332. }
  44333. },
  44334. },
  44335. [
  44336. {
  44337. name: "Macro",
  44338. height: math.unit(444, "meters"),
  44339. default: true
  44340. },
  44341. ]
  44342. ))
  44343. characterMakers.push(() => makeCharacter(
  44344. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44345. {
  44346. front: {
  44347. height: math.unit(18 + 7/12, "feet"),
  44348. name: "Front",
  44349. image: {
  44350. source: "./media/characters/rex/front.svg",
  44351. extra: 1941/1807,
  44352. bottom: 66/2007
  44353. }
  44354. },
  44355. back: {
  44356. height: math.unit(18 + 7/12, "feet"),
  44357. name: "Back",
  44358. image: {
  44359. source: "./media/characters/rex/back.svg",
  44360. extra: 1937/1822,
  44361. bottom: 42/1979
  44362. }
  44363. },
  44364. boot: {
  44365. height: math.unit(3.45, "feet"),
  44366. name: "Boot",
  44367. image: {
  44368. source: "./media/characters/rex/boot.svg"
  44369. }
  44370. },
  44371. paw: {
  44372. height: math.unit(4.17, "feet"),
  44373. name: "Paw",
  44374. image: {
  44375. source: "./media/characters/rex/paw.svg"
  44376. }
  44377. },
  44378. head: {
  44379. height: math.unit(6.728, "feet"),
  44380. name: "Head",
  44381. image: {
  44382. source: "./media/characters/rex/head.svg"
  44383. }
  44384. },
  44385. },
  44386. [
  44387. {
  44388. name: "Nano",
  44389. height: math.unit(18 + 7/12, "feet")
  44390. },
  44391. {
  44392. name: "Micro",
  44393. height: math.unit(1.5, "megameters")
  44394. },
  44395. {
  44396. name: "Normal",
  44397. height: math.unit(440, "megameters"),
  44398. default: true
  44399. },
  44400. {
  44401. name: "Macro",
  44402. height: math.unit(2.5, "gigameters")
  44403. },
  44404. {
  44405. name: "Gigamacro",
  44406. height: math.unit(2, "galaxies")
  44407. },
  44408. ]
  44409. ))
  44410. characterMakers.push(() => makeCharacter(
  44411. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44412. {
  44413. side: {
  44414. height: math.unit(32, "feet"),
  44415. weight: math.unit(250000, "lb"),
  44416. name: "Side",
  44417. image: {
  44418. source: "./media/characters/silverwing/side.svg",
  44419. extra: 1100/1019,
  44420. bottom: 204/1304
  44421. }
  44422. },
  44423. },
  44424. [
  44425. {
  44426. name: "Normal",
  44427. height: math.unit(32, "feet"),
  44428. default: true
  44429. },
  44430. ]
  44431. ))
  44432. characterMakers.push(() => makeCharacter(
  44433. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44434. {
  44435. front: {
  44436. height: math.unit(6 + 6/12, "feet"),
  44437. weight: math.unit(350, "lb"),
  44438. name: "Front",
  44439. image: {
  44440. source: "./media/characters/tristan-hawthorne/front.svg",
  44441. extra: 1159/1124,
  44442. bottom: 37/1196
  44443. },
  44444. form: "labrador",
  44445. default: true
  44446. },
  44447. skunkFront: {
  44448. height: math.unit(4 + 6/12, "feet"),
  44449. weight: math.unit(120, "lb"),
  44450. name: "Front",
  44451. image: {
  44452. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44453. extra: 1609/1551,
  44454. bottom: 169/1778
  44455. },
  44456. form: "skunk",
  44457. default: true
  44458. },
  44459. },
  44460. [
  44461. {
  44462. name: "Normal",
  44463. height: math.unit(6 + 6/12, "feet"),
  44464. form: "labrador",
  44465. default: true
  44466. },
  44467. {
  44468. name: "Normal",
  44469. height: math.unit(4 + 6/12, "feet"),
  44470. form: "skunk",
  44471. default: true
  44472. },
  44473. ],
  44474. {
  44475. "labrador": {
  44476. name: "Labrador",
  44477. default: true
  44478. },
  44479. "skunk": {
  44480. name: "Skunk"
  44481. }
  44482. }
  44483. ))
  44484. characterMakers.push(() => makeCharacter(
  44485. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44486. {
  44487. front: {
  44488. height: math.unit(5 + 11/12, "feet"),
  44489. weight: math.unit(190, "lb"),
  44490. name: "Front",
  44491. image: {
  44492. source: "./media/characters/mizu/front.svg",
  44493. extra: 1988/1788,
  44494. bottom: 14/2002
  44495. }
  44496. },
  44497. },
  44498. [
  44499. {
  44500. name: "Normal",
  44501. height: math.unit(5 + 11/12, "feet"),
  44502. default: true
  44503. },
  44504. ]
  44505. ))
  44506. characterMakers.push(() => makeCharacter(
  44507. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44508. {
  44509. front: {
  44510. height: math.unit(1.7, "feet"),
  44511. weight: math.unit(50, "lb"),
  44512. name: "Front",
  44513. image: {
  44514. source: "./media/characters/dechroma/front.svg",
  44515. extra: 1095/859,
  44516. bottom: 64/1159
  44517. }
  44518. },
  44519. },
  44520. [
  44521. {
  44522. name: "Normal",
  44523. height: math.unit(1.7, "feet"),
  44524. default: true
  44525. },
  44526. ]
  44527. ))
  44528. characterMakers.push(() => makeCharacter(
  44529. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44530. {
  44531. side: {
  44532. height: math.unit(30, "feet"),
  44533. name: "Side",
  44534. image: {
  44535. source: "./media/characters/veluren-thanazel/side.svg",
  44536. extra: 1611/633,
  44537. bottom: 118/1729
  44538. }
  44539. },
  44540. front: {
  44541. height: math.unit(30, "feet"),
  44542. name: "Front",
  44543. image: {
  44544. source: "./media/characters/veluren-thanazel/front.svg",
  44545. extra: 1486/636,
  44546. bottom: 238/1724
  44547. }
  44548. },
  44549. head: {
  44550. height: math.unit(21.4, "feet"),
  44551. name: "Head",
  44552. image: {
  44553. source: "./media/characters/veluren-thanazel/head.svg"
  44554. }
  44555. },
  44556. genitals: {
  44557. height: math.unit(19.4, "feet"),
  44558. name: "Genitals",
  44559. image: {
  44560. source: "./media/characters/veluren-thanazel/genitals.svg"
  44561. }
  44562. },
  44563. },
  44564. [
  44565. {
  44566. name: "Social",
  44567. height: math.unit(6, "feet")
  44568. },
  44569. {
  44570. name: "Play",
  44571. height: math.unit(12, "feet")
  44572. },
  44573. {
  44574. name: "True",
  44575. height: math.unit(30, "feet"),
  44576. default: true
  44577. },
  44578. ]
  44579. ))
  44580. characterMakers.push(() => makeCharacter(
  44581. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44582. {
  44583. front: {
  44584. height: math.unit(7 + 6/12, "feet"),
  44585. weight: math.unit(500, "kg"),
  44586. name: "Front",
  44587. image: {
  44588. source: "./media/characters/arcturas/front.svg",
  44589. extra: 1700/1500,
  44590. bottom: 145/1845
  44591. }
  44592. },
  44593. },
  44594. [
  44595. {
  44596. name: "Normal",
  44597. height: math.unit(7 + 6/12, "feet"),
  44598. default: true
  44599. },
  44600. ]
  44601. ))
  44602. characterMakers.push(() => makeCharacter(
  44603. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44604. {
  44605. side: {
  44606. height: math.unit(6, "feet"),
  44607. weight: math.unit(2, "tons"),
  44608. name: "Side",
  44609. image: {
  44610. source: "./media/characters/vitaen/side.svg",
  44611. extra: 1157/617,
  44612. bottom: 122/1279
  44613. }
  44614. },
  44615. },
  44616. [
  44617. {
  44618. name: "Normal",
  44619. height: math.unit(6, "feet"),
  44620. default: true
  44621. },
  44622. ]
  44623. ))
  44624. characterMakers.push(() => makeCharacter(
  44625. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44626. {
  44627. front: {
  44628. height: math.unit(19, "feet"),
  44629. name: "Front",
  44630. image: {
  44631. source: "./media/characters/fia-dreamweaver/front.svg",
  44632. extra: 1630/1504,
  44633. bottom: 25/1655
  44634. }
  44635. },
  44636. },
  44637. [
  44638. {
  44639. name: "Normal",
  44640. height: math.unit(19, "feet"),
  44641. default: true
  44642. },
  44643. ]
  44644. ))
  44645. characterMakers.push(() => makeCharacter(
  44646. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44647. {
  44648. front: {
  44649. height: math.unit(5 + 4/12, "feet"),
  44650. name: "Front",
  44651. image: {
  44652. source: "./media/characters/artan/front.svg",
  44653. extra: 1618/1535,
  44654. bottom: 46/1664
  44655. }
  44656. },
  44657. back: {
  44658. height: math.unit(5 + 4/12, "feet"),
  44659. name: "Back",
  44660. image: {
  44661. source: "./media/characters/artan/back.svg",
  44662. extra: 1618/1543,
  44663. bottom: 31/1649
  44664. }
  44665. },
  44666. },
  44667. [
  44668. {
  44669. name: "Normal",
  44670. height: math.unit(5 + 4/12, "feet"),
  44671. default: true
  44672. },
  44673. ]
  44674. ))
  44675. characterMakers.push(() => makeCharacter(
  44676. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44677. {
  44678. side: {
  44679. height: math.unit(182, "cm"),
  44680. weight: math.unit(1000, "lb"),
  44681. name: "Side",
  44682. image: {
  44683. source: "./media/characters/silver-dragon/side.svg",
  44684. extra: 710/287,
  44685. bottom: 88/798
  44686. }
  44687. },
  44688. },
  44689. [
  44690. {
  44691. name: "Normal",
  44692. height: math.unit(182, "cm"),
  44693. default: true
  44694. },
  44695. ]
  44696. ))
  44697. characterMakers.push(() => makeCharacter(
  44698. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44699. {
  44700. side: {
  44701. height: math.unit(6 + 6/12, "feet"),
  44702. weight: math.unit(1.5, "tons"),
  44703. name: "Side",
  44704. image: {
  44705. source: "./media/characters/zephyr/side.svg",
  44706. extra: 1433/586,
  44707. bottom: 109/1542
  44708. }
  44709. },
  44710. },
  44711. [
  44712. {
  44713. name: "Normal",
  44714. height: math.unit(6 + 6/12, "feet"),
  44715. default: true
  44716. },
  44717. ]
  44718. ))
  44719. characterMakers.push(() => makeCharacter(
  44720. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44721. {
  44722. side: {
  44723. height: math.unit(1, "feet"),
  44724. name: "Side",
  44725. image: {
  44726. source: "./media/characters/vixye/side.svg",
  44727. extra: 632/541,
  44728. bottom: 0/632
  44729. }
  44730. },
  44731. },
  44732. [
  44733. {
  44734. name: "Normal",
  44735. height: math.unit(1, "feet"),
  44736. default: true
  44737. },
  44738. {
  44739. name: "True",
  44740. height: math.unit(1e15, "multiverses")
  44741. },
  44742. ]
  44743. ))
  44744. characterMakers.push(() => makeCharacter(
  44745. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44746. {
  44747. front: {
  44748. height: math.unit(8 + 2/12, "feet"),
  44749. weight: math.unit(650, "lb"),
  44750. name: "Front",
  44751. image: {
  44752. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44753. extra: 1174/1137,
  44754. bottom: 82/1256
  44755. }
  44756. },
  44757. back: {
  44758. height: math.unit(8 + 2/12, "feet"),
  44759. weight: math.unit(650, "lb"),
  44760. name: "Back",
  44761. image: {
  44762. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44763. extra: 1204/1157,
  44764. bottom: 46/1250
  44765. }
  44766. },
  44767. },
  44768. [
  44769. {
  44770. name: "Wildform",
  44771. height: math.unit(8 + 2/12, "feet"),
  44772. default: true
  44773. },
  44774. ]
  44775. ))
  44776. characterMakers.push(() => makeCharacter(
  44777. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44778. {
  44779. front: {
  44780. height: math.unit(18, "feet"),
  44781. name: "Front",
  44782. image: {
  44783. source: "./media/characters/cyphin/front.svg",
  44784. extra: 970/886,
  44785. bottom: 42/1012
  44786. }
  44787. },
  44788. back: {
  44789. height: math.unit(18, "feet"),
  44790. name: "Back",
  44791. image: {
  44792. source: "./media/characters/cyphin/back.svg",
  44793. extra: 1009/894,
  44794. bottom: 24/1033
  44795. }
  44796. },
  44797. head: {
  44798. height: math.unit(5.05, "feet"),
  44799. name: "Head",
  44800. image: {
  44801. source: "./media/characters/cyphin/head.svg"
  44802. }
  44803. },
  44804. tailbud: {
  44805. height: math.unit(5, "feet"),
  44806. name: "Tailbud",
  44807. image: {
  44808. source: "./media/characters/cyphin/tailbud.svg"
  44809. }
  44810. },
  44811. },
  44812. [
  44813. ]
  44814. ))
  44815. characterMakers.push(() => makeCharacter(
  44816. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44817. {
  44818. side: {
  44819. height: math.unit(10, "feet"),
  44820. weight: math.unit(6, "tons"),
  44821. name: "Side",
  44822. image: {
  44823. source: "./media/characters/raijin/side.svg",
  44824. extra: 1529/613,
  44825. bottom: 337/1866
  44826. }
  44827. },
  44828. },
  44829. [
  44830. {
  44831. name: "Normal",
  44832. height: math.unit(10, "feet"),
  44833. default: true
  44834. },
  44835. ]
  44836. ))
  44837. characterMakers.push(() => makeCharacter(
  44838. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44839. {
  44840. side: {
  44841. height: math.unit(9, "feet"),
  44842. name: "Side",
  44843. image: {
  44844. source: "./media/characters/nilghais/side.svg",
  44845. extra: 1047/744,
  44846. bottom: 91/1138
  44847. }
  44848. },
  44849. head: {
  44850. height: math.unit(3.14, "feet"),
  44851. name: "Head",
  44852. image: {
  44853. source: "./media/characters/nilghais/head.svg"
  44854. }
  44855. },
  44856. mouth: {
  44857. height: math.unit(4.6, "feet"),
  44858. name: "Mouth",
  44859. image: {
  44860. source: "./media/characters/nilghais/mouth.svg"
  44861. }
  44862. },
  44863. wings: {
  44864. height: math.unit(24, "feet"),
  44865. name: "Wings",
  44866. image: {
  44867. source: "./media/characters/nilghais/wings.svg"
  44868. }
  44869. },
  44870. ass: {
  44871. height: math.unit(6.12, "feet"),
  44872. name: "Ass",
  44873. image: {
  44874. source: "./media/characters/nilghais/ass.svg"
  44875. }
  44876. },
  44877. },
  44878. [
  44879. {
  44880. name: "Normal",
  44881. height: math.unit(9, "feet"),
  44882. default: true
  44883. },
  44884. ]
  44885. ))
  44886. characterMakers.push(() => makeCharacter(
  44887. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44888. {
  44889. regular: {
  44890. height: math.unit(16 + 2/12, "feet"),
  44891. weight: math.unit(2300, "lb"),
  44892. name: "Regular",
  44893. image: {
  44894. source: "./media/characters/zolgar/regular.svg",
  44895. extra: 1246/1004,
  44896. bottom: 124/1370
  44897. }
  44898. },
  44899. boxers: {
  44900. height: math.unit(16 + 2/12, "feet"),
  44901. weight: math.unit(2300, "lb"),
  44902. name: "Boxers",
  44903. image: {
  44904. source: "./media/characters/zolgar/boxers.svg",
  44905. extra: 1246/1004,
  44906. bottom: 124/1370
  44907. }
  44908. },
  44909. armored: {
  44910. height: math.unit(16 + 2/12, "feet"),
  44911. weight: math.unit(2300, "lb"),
  44912. name: "Armored",
  44913. image: {
  44914. source: "./media/characters/zolgar/armored.svg",
  44915. extra: 1246/1004,
  44916. bottom: 124/1370
  44917. }
  44918. },
  44919. goth: {
  44920. height: math.unit(16 + 2/12, "feet"),
  44921. weight: math.unit(2300, "lb"),
  44922. name: "Goth",
  44923. image: {
  44924. source: "./media/characters/zolgar/goth.svg",
  44925. extra: 1246/1004,
  44926. bottom: 124/1370
  44927. }
  44928. },
  44929. },
  44930. [
  44931. {
  44932. name: "Shrunken Down",
  44933. height: math.unit(9 + 2/12, "feet")
  44934. },
  44935. {
  44936. name: "Normal",
  44937. height: math.unit(16 + 2/12, "feet"),
  44938. default: true
  44939. },
  44940. ]
  44941. ))
  44942. characterMakers.push(() => makeCharacter(
  44943. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44944. {
  44945. front: {
  44946. height: math.unit(6, "feet"),
  44947. weight: math.unit(168, "lb"),
  44948. name: "Front",
  44949. image: {
  44950. source: "./media/characters/luca/front.svg",
  44951. extra: 841/667,
  44952. bottom: 102/943
  44953. }
  44954. },
  44955. },
  44956. [
  44957. {
  44958. name: "Normal",
  44959. height: math.unit(6, "feet"),
  44960. default: true
  44961. },
  44962. ]
  44963. ))
  44964. characterMakers.push(() => makeCharacter(
  44965. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44966. {
  44967. side: {
  44968. height: math.unit(7 + 3/12, "feet"),
  44969. weight: math.unit(312, "lb"),
  44970. name: "Side",
  44971. image: {
  44972. source: "./media/characters/zezo/side.svg",
  44973. extra: 1192/1067,
  44974. bottom: 63/1255
  44975. }
  44976. },
  44977. },
  44978. [
  44979. {
  44980. name: "Normal",
  44981. height: math.unit(7 + 3/12, "feet"),
  44982. default: true
  44983. },
  44984. ]
  44985. ))
  44986. characterMakers.push(() => makeCharacter(
  44987. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44988. {
  44989. front: {
  44990. height: math.unit(5 + 5/12, "feet"),
  44991. weight: math.unit(170, "lb"),
  44992. name: "Front",
  44993. image: {
  44994. source: "./media/characters/mayso/front.svg",
  44995. extra: 1215/1108,
  44996. bottom: 16/1231
  44997. }
  44998. },
  44999. },
  45000. [
  45001. {
  45002. name: "Normal",
  45003. height: math.unit(5 + 5/12, "feet"),
  45004. default: true
  45005. },
  45006. ]
  45007. ))
  45008. characterMakers.push(() => makeCharacter(
  45009. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45010. {
  45011. front: {
  45012. height: math.unit(4 + 3/12, "feet"),
  45013. weight: math.unit(80, "lb"),
  45014. name: "Front",
  45015. image: {
  45016. source: "./media/characters/hess/front.svg",
  45017. extra: 1200/1123,
  45018. bottom: 16/1216
  45019. }
  45020. },
  45021. },
  45022. [
  45023. {
  45024. name: "Normal",
  45025. height: math.unit(4 + 3/12, "feet"),
  45026. default: true
  45027. },
  45028. ]
  45029. ))
  45030. characterMakers.push(() => makeCharacter(
  45031. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45032. {
  45033. front: {
  45034. height: math.unit(1.9, "meters"),
  45035. name: "Front",
  45036. image: {
  45037. source: "./media/characters/ashgar/front.svg",
  45038. extra: 1177/1146,
  45039. bottom: 99/1276
  45040. }
  45041. },
  45042. back: {
  45043. height: math.unit(1.9, "meters"),
  45044. name: "Back",
  45045. image: {
  45046. source: "./media/characters/ashgar/back.svg",
  45047. extra: 1201/1183,
  45048. bottom: 53/1254
  45049. }
  45050. },
  45051. feral: {
  45052. height: math.unit(1.4, "meters"),
  45053. name: "Feral",
  45054. image: {
  45055. source: "./media/characters/ashgar/feral.svg",
  45056. extra: 370/345,
  45057. bottom: 45/415
  45058. }
  45059. },
  45060. },
  45061. [
  45062. {
  45063. name: "Normal",
  45064. height: math.unit(1.9, "meters"),
  45065. default: true
  45066. },
  45067. ]
  45068. ))
  45069. characterMakers.push(() => makeCharacter(
  45070. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45071. {
  45072. regular: {
  45073. height: math.unit(6, "feet"),
  45074. weight: math.unit(220, "lb"),
  45075. name: "Regular",
  45076. image: {
  45077. source: "./media/characters/phillip/regular.svg",
  45078. extra: 1373/1277,
  45079. bottom: 75/1448
  45080. }
  45081. },
  45082. dressed: {
  45083. height: math.unit(6, "feet"),
  45084. weight: math.unit(220, "lb"),
  45085. name: "Dressed",
  45086. image: {
  45087. source: "./media/characters/phillip/dressed.svg",
  45088. extra: 1373/1277,
  45089. bottom: 75/1448
  45090. }
  45091. },
  45092. paw: {
  45093. height: math.unit(1.44, "feet"),
  45094. name: "Paw",
  45095. image: {
  45096. source: "./media/characters/phillip/paw.svg"
  45097. }
  45098. },
  45099. },
  45100. [
  45101. {
  45102. name: "Normal",
  45103. height: math.unit(6, "feet"),
  45104. default: true
  45105. },
  45106. ]
  45107. ))
  45108. characterMakers.push(() => makeCharacter(
  45109. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45110. {
  45111. side: {
  45112. height: math.unit(42, "feet"),
  45113. name: "Side",
  45114. image: {
  45115. source: "./media/characters/uvula/side.svg",
  45116. extra: 683/586,
  45117. bottom: 60/743
  45118. }
  45119. },
  45120. front: {
  45121. height: math.unit(42, "feet"),
  45122. name: "Front",
  45123. image: {
  45124. source: "./media/characters/uvula/front.svg",
  45125. extra: 705/613,
  45126. bottom: 54/759
  45127. }
  45128. },
  45129. maw: {
  45130. height: math.unit(23.5, "feet"),
  45131. name: "Maw",
  45132. image: {
  45133. source: "./media/characters/uvula/maw.svg"
  45134. }
  45135. },
  45136. },
  45137. [
  45138. {
  45139. name: "Original Size",
  45140. height: math.unit(14, "inches")
  45141. },
  45142. {
  45143. name: "Human Size",
  45144. height: math.unit(6, "feet")
  45145. },
  45146. {
  45147. name: "Big",
  45148. height: math.unit(42, "feet"),
  45149. default: true
  45150. },
  45151. {
  45152. name: "Bigger",
  45153. height: math.unit(100, "feet")
  45154. },
  45155. ]
  45156. ))
  45157. characterMakers.push(() => makeCharacter(
  45158. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45159. {
  45160. front: {
  45161. height: math.unit(5 + 11/12, "feet"),
  45162. name: "Front",
  45163. image: {
  45164. source: "./media/characters/lannah/front.svg",
  45165. extra: 1208/1113,
  45166. bottom: 97/1305
  45167. }
  45168. },
  45169. },
  45170. [
  45171. {
  45172. name: "Normal",
  45173. height: math.unit(5 + 11/12, "feet"),
  45174. default: true
  45175. },
  45176. ]
  45177. ))
  45178. characterMakers.push(() => makeCharacter(
  45179. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45180. {
  45181. front: {
  45182. height: math.unit(6 + 3/12, "feet"),
  45183. weight: math.unit(3.5, "tons"),
  45184. name: "Front",
  45185. image: {
  45186. source: "./media/characters/emberflame/front.svg",
  45187. extra: 1198/672,
  45188. bottom: 82/1280
  45189. }
  45190. },
  45191. side: {
  45192. height: math.unit(6 + 3/12, "feet"),
  45193. weight: math.unit(3.5, "tons"),
  45194. name: "Side",
  45195. image: {
  45196. source: "./media/characters/emberflame/side.svg",
  45197. extra: 938/527,
  45198. bottom: 56/994
  45199. }
  45200. },
  45201. },
  45202. [
  45203. {
  45204. name: "Normal",
  45205. height: math.unit(6 + 3/12, "feet"),
  45206. default: true
  45207. },
  45208. ]
  45209. ))
  45210. characterMakers.push(() => makeCharacter(
  45211. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45212. {
  45213. side: {
  45214. height: math.unit(17.5, "feet"),
  45215. weight: math.unit(35, "tons"),
  45216. name: "Side",
  45217. image: {
  45218. source: "./media/characters/sophie-ambrose/side.svg",
  45219. extra: 1573/1242,
  45220. bottom: 71/1644
  45221. }
  45222. },
  45223. maw: {
  45224. height: math.unit(7.4, "feet"),
  45225. name: "Maw",
  45226. image: {
  45227. source: "./media/characters/sophie-ambrose/maw.svg"
  45228. }
  45229. },
  45230. },
  45231. [
  45232. {
  45233. name: "Normal",
  45234. height: math.unit(17.5, "feet"),
  45235. default: true
  45236. },
  45237. ]
  45238. ))
  45239. characterMakers.push(() => makeCharacter(
  45240. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45241. {
  45242. front: {
  45243. height: math.unit(280, "feet"),
  45244. weight: math.unit(550, "tons"),
  45245. name: "Front",
  45246. image: {
  45247. source: "./media/characters/king-mugi/front.svg",
  45248. extra: 1102/947,
  45249. bottom: 104/1206
  45250. }
  45251. },
  45252. },
  45253. [
  45254. {
  45255. name: "King Mugi",
  45256. height: math.unit(280, "feet"),
  45257. default: true
  45258. },
  45259. ]
  45260. ))
  45261. characterMakers.push(() => makeCharacter(
  45262. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45263. {
  45264. female: {
  45265. height: math.unit(300, "meters"),
  45266. name: "Front",
  45267. image: {
  45268. source: "./media/characters/nova-fox/female.svg",
  45269. extra: 664/632,
  45270. bottom: 51/715
  45271. },
  45272. form: "female",
  45273. default: true
  45274. },
  45275. male: {
  45276. height: math.unit(300, "meters"),
  45277. name: "Front",
  45278. image: {
  45279. source: "./media/characters/nova-fox/male.svg",
  45280. extra: 663/631,
  45281. bottom: 30/693
  45282. },
  45283. form: "male",
  45284. default: true
  45285. },
  45286. },
  45287. [
  45288. {
  45289. name: "Macro",
  45290. height: math.unit(300, "meters"),
  45291. default: true,
  45292. allForms: true
  45293. },
  45294. ],
  45295. {
  45296. "female": {
  45297. name: "Female",
  45298. default: true
  45299. },
  45300. "male": {
  45301. name: "Male",
  45302. },
  45303. }
  45304. ))
  45305. characterMakers.push(() => makeCharacter(
  45306. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45307. {
  45308. front: {
  45309. height: math.unit(6 + 3/12, "feet"),
  45310. weight: math.unit(170, "lb"),
  45311. name: "Front",
  45312. image: {
  45313. source: "./media/characters/sam-bat/front.svg",
  45314. extra: 1601/1411,
  45315. bottom: 125/1726
  45316. }
  45317. },
  45318. back: {
  45319. height: math.unit(6 + 3/12, "feet"),
  45320. weight: math.unit(170, "lb"),
  45321. name: "Back",
  45322. image: {
  45323. source: "./media/characters/sam-bat/back.svg",
  45324. extra: 1577/1405,
  45325. bottom: 58/1635
  45326. }
  45327. },
  45328. },
  45329. [
  45330. {
  45331. name: "Normal",
  45332. height: math.unit(6 + 3/12, "feet"),
  45333. default: true
  45334. },
  45335. ]
  45336. ))
  45337. characterMakers.push(() => makeCharacter(
  45338. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45339. {
  45340. front: {
  45341. height: math.unit(59, "feet"),
  45342. weight: math.unit(40000, "lb"),
  45343. name: "Front",
  45344. image: {
  45345. source: "./media/characters/inari/front.svg",
  45346. extra: 1884/1350,
  45347. bottom: 95/1979
  45348. }
  45349. },
  45350. },
  45351. [
  45352. {
  45353. name: "Gigantamax",
  45354. height: math.unit(59, "feet"),
  45355. default: true
  45356. },
  45357. ]
  45358. ))
  45359. characterMakers.push(() => makeCharacter(
  45360. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45361. {
  45362. front: {
  45363. height: math.unit(5 + 8/12, "feet"),
  45364. name: "Front",
  45365. image: {
  45366. source: "./media/characters/elizabeth/front.svg",
  45367. extra: 1395/1298,
  45368. bottom: 54/1449
  45369. }
  45370. },
  45371. mouth: {
  45372. height: math.unit(1.97, "feet"),
  45373. name: "Mouth",
  45374. image: {
  45375. source: "./media/characters/elizabeth/mouth.svg"
  45376. }
  45377. },
  45378. foot: {
  45379. height: math.unit(1.17, "feet"),
  45380. name: "Foot",
  45381. image: {
  45382. source: "./media/characters/elizabeth/foot.svg"
  45383. }
  45384. },
  45385. },
  45386. [
  45387. {
  45388. name: "Normal",
  45389. height: math.unit(5 + 8/12, "feet"),
  45390. default: true
  45391. },
  45392. {
  45393. name: "Minimacro",
  45394. height: math.unit(18, "feet")
  45395. },
  45396. {
  45397. name: "Macro",
  45398. height: math.unit(180, "feet")
  45399. },
  45400. ]
  45401. ))
  45402. characterMakers.push(() => makeCharacter(
  45403. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45404. {
  45405. front: {
  45406. height: math.unit(5 + 2/12, "feet"),
  45407. name: "Front",
  45408. image: {
  45409. source: "./media/characters/october-gossamer/front.svg",
  45410. extra: 505/454,
  45411. bottom: 7/512
  45412. }
  45413. },
  45414. back: {
  45415. height: math.unit(5 + 2/12, "feet"),
  45416. name: "Back",
  45417. image: {
  45418. source: "./media/characters/october-gossamer/back.svg",
  45419. extra: 501/454,
  45420. bottom: 11/512
  45421. }
  45422. },
  45423. },
  45424. [
  45425. {
  45426. name: "Normal",
  45427. height: math.unit(5 + 2/12, "feet"),
  45428. default: true
  45429. },
  45430. ]
  45431. ))
  45432. characterMakers.push(() => makeCharacter(
  45433. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45434. {
  45435. front: {
  45436. height: math.unit(5, "feet"),
  45437. name: "Front",
  45438. image: {
  45439. source: "./media/characters/epiglottis/front.svg",
  45440. extra: 923/849,
  45441. bottom: 17/940
  45442. }
  45443. },
  45444. },
  45445. [
  45446. {
  45447. name: "Original Size",
  45448. height: math.unit(10, "inches")
  45449. },
  45450. {
  45451. name: "Human Size",
  45452. height: math.unit(5, "feet"),
  45453. default: true
  45454. },
  45455. {
  45456. name: "Big",
  45457. height: math.unit(25, "feet")
  45458. },
  45459. {
  45460. name: "Bigger",
  45461. height: math.unit(50, "feet")
  45462. },
  45463. {
  45464. name: "oh lawd",
  45465. height: math.unit(75, "feet")
  45466. },
  45467. ]
  45468. ))
  45469. characterMakers.push(() => makeCharacter(
  45470. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45471. {
  45472. front: {
  45473. height: math.unit(2 + 4/12, "feet"),
  45474. weight: math.unit(60, "lb"),
  45475. name: "Front",
  45476. image: {
  45477. source: "./media/characters/lerm/front.svg",
  45478. extra: 796/790,
  45479. bottom: 79/875
  45480. }
  45481. },
  45482. },
  45483. [
  45484. {
  45485. name: "Normal",
  45486. height: math.unit(2 + 4/12, "feet"),
  45487. default: true
  45488. },
  45489. ]
  45490. ))
  45491. characterMakers.push(() => makeCharacter(
  45492. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45493. {
  45494. front: {
  45495. height: math.unit(5.5, "feet"),
  45496. weight: math.unit(130, "lb"),
  45497. name: "Front",
  45498. image: {
  45499. source: "./media/characters/xena-nebadon/front.svg",
  45500. extra: 1828/1730,
  45501. bottom: 79/1907
  45502. }
  45503. },
  45504. },
  45505. [
  45506. {
  45507. name: "Tiny Puppy",
  45508. height: math.unit(3, "inches")
  45509. },
  45510. {
  45511. name: "Normal",
  45512. height: math.unit(5.5, "feet"),
  45513. default: true
  45514. },
  45515. {
  45516. name: "Lotta Lady",
  45517. height: math.unit(12, "feet")
  45518. },
  45519. {
  45520. name: "Pretty Big",
  45521. height: math.unit(100, "feet")
  45522. },
  45523. {
  45524. name: "Big",
  45525. height: math.unit(500, "feet")
  45526. },
  45527. {
  45528. name: "Skyscraper Toys",
  45529. height: math.unit(2500, "feet")
  45530. },
  45531. {
  45532. name: "Plane Catcher",
  45533. height: math.unit(8, "miles")
  45534. },
  45535. {
  45536. name: "Planet Toys",
  45537. height: math.unit(15, "earths")
  45538. },
  45539. {
  45540. name: "Stardust",
  45541. height: math.unit(0.25, "galaxies")
  45542. },
  45543. {
  45544. name: "Snacks",
  45545. height: math.unit(70, "universes")
  45546. },
  45547. ]
  45548. ))
  45549. characterMakers.push(() => makeCharacter(
  45550. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45551. {
  45552. front: {
  45553. height: math.unit(1.6, "meters"),
  45554. weight: math.unit(60, "kg"),
  45555. name: "Front",
  45556. image: {
  45557. source: "./media/characters/bounty/front.svg",
  45558. extra: 1426/1308,
  45559. bottom: 15/1441
  45560. }
  45561. },
  45562. back: {
  45563. height: math.unit(1.6, "meters"),
  45564. weight: math.unit(60, "kg"),
  45565. name: "Back",
  45566. image: {
  45567. source: "./media/characters/bounty/back.svg",
  45568. extra: 1417/1307,
  45569. bottom: 8/1425
  45570. }
  45571. },
  45572. },
  45573. [
  45574. {
  45575. name: "Normal",
  45576. height: math.unit(1.6, "meters"),
  45577. default: true
  45578. },
  45579. {
  45580. name: "Macro",
  45581. height: math.unit(300, "meters")
  45582. },
  45583. ]
  45584. ))
  45585. characterMakers.push(() => makeCharacter(
  45586. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45587. {
  45588. front: {
  45589. height: math.unit(2 + 8/12, "feet"),
  45590. weight: math.unit(15, "lb"),
  45591. name: "Front",
  45592. image: {
  45593. source: "./media/characters/mochi/front.svg",
  45594. extra: 1022/852,
  45595. bottom: 435/1457
  45596. }
  45597. },
  45598. back: {
  45599. height: math.unit(2 + 8/12, "feet"),
  45600. weight: math.unit(15, "lb"),
  45601. name: "Back",
  45602. image: {
  45603. source: "./media/characters/mochi/back.svg",
  45604. extra: 1335/1119,
  45605. bottom: 39/1374
  45606. }
  45607. },
  45608. bird: {
  45609. height: math.unit(2 + 8/12, "feet"),
  45610. weight: math.unit(15, "lb"),
  45611. name: "Bird",
  45612. image: {
  45613. source: "./media/characters/mochi/bird.svg",
  45614. extra: 1251/1113,
  45615. bottom: 178/1429
  45616. }
  45617. },
  45618. kaiju: {
  45619. height: math.unit(154, "feet"),
  45620. weight: math.unit(1e7, "lb"),
  45621. name: "Kaiju",
  45622. image: {
  45623. source: "./media/characters/mochi/kaiju.svg",
  45624. extra: 460/324,
  45625. bottom: 40/500
  45626. }
  45627. },
  45628. head: {
  45629. height: math.unit(1.21, "feet"),
  45630. name: "Head",
  45631. image: {
  45632. source: "./media/characters/mochi/head.svg"
  45633. }
  45634. },
  45635. alternateTail: {
  45636. height: math.unit(2 + 8/12, "feet"),
  45637. weight: math.unit(45, "lb"),
  45638. name: "Alternate Tail",
  45639. image: {
  45640. source: "./media/characters/mochi/alternate-tail.svg",
  45641. extra: 139/76,
  45642. bottom: 45/184
  45643. }
  45644. },
  45645. },
  45646. [
  45647. {
  45648. name: "Micro",
  45649. height: math.unit(2, "inches")
  45650. },
  45651. {
  45652. name: "Normal",
  45653. height: math.unit(2 + 8/12, "feet"),
  45654. default: true
  45655. },
  45656. {
  45657. name: "Macro",
  45658. height: math.unit(106, "feet")
  45659. },
  45660. ]
  45661. ))
  45662. characterMakers.push(() => makeCharacter(
  45663. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45664. {
  45665. front: {
  45666. height: math.unit(5.67, "feet"),
  45667. weight: math.unit(135, "lb"),
  45668. name: "Front",
  45669. image: {
  45670. source: "./media/characters/sarel/front.svg",
  45671. extra: 865/788,
  45672. bottom: 97/962
  45673. }
  45674. },
  45675. back: {
  45676. height: math.unit(5.67, "feet"),
  45677. weight: math.unit(135, "lb"),
  45678. name: "Back",
  45679. image: {
  45680. source: "./media/characters/sarel/back.svg",
  45681. extra: 857/777,
  45682. bottom: 32/889
  45683. }
  45684. },
  45685. chozoan: {
  45686. height: math.unit(5.67, "feet"),
  45687. weight: math.unit(135, "lb"),
  45688. name: "Chozoan",
  45689. image: {
  45690. source: "./media/characters/sarel/chozoan.svg",
  45691. extra: 865/788,
  45692. bottom: 97/962
  45693. }
  45694. },
  45695. current: {
  45696. height: math.unit(5.67, "feet"),
  45697. weight: math.unit(135, "lb"),
  45698. name: "Current",
  45699. image: {
  45700. source: "./media/characters/sarel/current.svg",
  45701. extra: 865/788,
  45702. bottom: 97/962
  45703. }
  45704. },
  45705. head: {
  45706. height: math.unit(1.77, "feet"),
  45707. name: "Head",
  45708. image: {
  45709. source: "./media/characters/sarel/head.svg"
  45710. }
  45711. },
  45712. claws: {
  45713. height: math.unit(1.8, "feet"),
  45714. name: "Claws",
  45715. image: {
  45716. source: "./media/characters/sarel/claws.svg"
  45717. }
  45718. },
  45719. clawsAlt: {
  45720. height: math.unit(1.8, "feet"),
  45721. name: "Claws-alt",
  45722. image: {
  45723. source: "./media/characters/sarel/claws-alt.svg"
  45724. }
  45725. },
  45726. },
  45727. [
  45728. {
  45729. name: "Normal",
  45730. height: math.unit(5.67, "feet"),
  45731. default: true
  45732. },
  45733. ]
  45734. ))
  45735. characterMakers.push(() => makeCharacter(
  45736. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45737. {
  45738. front: {
  45739. height: math.unit(5500, "feet"),
  45740. name: "Front",
  45741. image: {
  45742. source: "./media/characters/alyonia/front.svg",
  45743. extra: 1200/1135,
  45744. bottom: 29/1229
  45745. }
  45746. },
  45747. back: {
  45748. height: math.unit(5500, "feet"),
  45749. name: "Back",
  45750. image: {
  45751. source: "./media/characters/alyonia/back.svg",
  45752. extra: 1205/1138,
  45753. bottom: 10/1215
  45754. }
  45755. },
  45756. },
  45757. [
  45758. {
  45759. name: "Small",
  45760. height: math.unit(10, "feet")
  45761. },
  45762. {
  45763. name: "Macro",
  45764. height: math.unit(500, "feet")
  45765. },
  45766. {
  45767. name: "Mega Macro",
  45768. height: math.unit(5500, "feet"),
  45769. default: true
  45770. },
  45771. {
  45772. name: "Mega Macro+",
  45773. height: math.unit(500000, "feet")
  45774. },
  45775. {
  45776. name: "Giga Macro",
  45777. height: math.unit(3000, "miles")
  45778. },
  45779. {
  45780. name: "Tera Macro",
  45781. height: math.unit(2.8e6, "miles")
  45782. },
  45783. {
  45784. name: "Galactic",
  45785. height: math.unit(120000, "lightyears")
  45786. },
  45787. ]
  45788. ))
  45789. characterMakers.push(() => makeCharacter(
  45790. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45791. {
  45792. werewolf: {
  45793. height: math.unit(8, "feet"),
  45794. weight: math.unit(425, "lb"),
  45795. name: "Werewolf",
  45796. image: {
  45797. source: "./media/characters/autumn/werewolf.svg",
  45798. extra: 2154/2031,
  45799. bottom: 160/2314
  45800. }
  45801. },
  45802. human: {
  45803. height: math.unit(5 + 8/12, "feet"),
  45804. weight: math.unit(150, "lb"),
  45805. name: "Human",
  45806. image: {
  45807. source: "./media/characters/autumn/human.svg",
  45808. extra: 1200/1149,
  45809. bottom: 30/1230
  45810. }
  45811. },
  45812. },
  45813. [
  45814. {
  45815. name: "Normal",
  45816. height: math.unit(8, "feet"),
  45817. default: true
  45818. },
  45819. ]
  45820. ))
  45821. characterMakers.push(() => makeCharacter(
  45822. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45823. {
  45824. front: {
  45825. height: math.unit(8 + 5/12, "feet"),
  45826. weight: math.unit(825, "lb"),
  45827. name: "Front",
  45828. image: {
  45829. source: "./media/characters/cobalt-charizard/front.svg",
  45830. extra: 1268/1155,
  45831. bottom: 122/1390
  45832. }
  45833. },
  45834. side: {
  45835. height: math.unit(8 + 5/12, "feet"),
  45836. weight: math.unit(825, "lb"),
  45837. name: "Side",
  45838. image: {
  45839. source: "./media/characters/cobalt-charizard/side.svg",
  45840. extra: 1348/1257,
  45841. bottom: 58/1406
  45842. }
  45843. },
  45844. gMax: {
  45845. height: math.unit(134 + 11/12, "feet"),
  45846. name: "G-Max",
  45847. image: {
  45848. source: "./media/characters/cobalt-charizard/g-max.svg",
  45849. extra: 1835/1541,
  45850. bottom: 151/1986
  45851. }
  45852. },
  45853. },
  45854. [
  45855. {
  45856. name: "Normal",
  45857. height: math.unit(8 + 5/12, "feet"),
  45858. default: true
  45859. },
  45860. ]
  45861. ))
  45862. characterMakers.push(() => makeCharacter(
  45863. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45864. {
  45865. front: {
  45866. height: math.unit(6 + 3/12, "feet"),
  45867. weight: math.unit(210, "lb"),
  45868. name: "Front",
  45869. image: {
  45870. source: "./media/characters/stella/front.svg",
  45871. extra: 3549/3335,
  45872. bottom: 51/3600
  45873. }
  45874. },
  45875. },
  45876. [
  45877. {
  45878. name: "Normal",
  45879. height: math.unit(6 + 3/12, "feet"),
  45880. default: true
  45881. },
  45882. ]
  45883. ))
  45884. characterMakers.push(() => makeCharacter(
  45885. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45886. {
  45887. front: {
  45888. height: math.unit(5, "feet"),
  45889. weight: math.unit(90, "lb"),
  45890. name: "Front",
  45891. image: {
  45892. source: "./media/characters/riley-bishop/front.svg",
  45893. extra: 1450/1428,
  45894. bottom: 152/1602
  45895. }
  45896. },
  45897. },
  45898. [
  45899. {
  45900. name: "Normal",
  45901. height: math.unit(5, "feet"),
  45902. default: true
  45903. },
  45904. ]
  45905. ))
  45906. characterMakers.push(() => makeCharacter(
  45907. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45908. {
  45909. side: {
  45910. height: math.unit(8 + 2/12, "feet"),
  45911. weight: math.unit(500, "kg"),
  45912. name: "Side",
  45913. image: {
  45914. source: "./media/characters/theo-arcanine/side.svg",
  45915. extra: 1342/1074,
  45916. bottom: 111/1453
  45917. }
  45918. },
  45919. },
  45920. [
  45921. {
  45922. name: "Normal",
  45923. height: math.unit(8 + 2/12, "feet"),
  45924. default: true
  45925. },
  45926. ]
  45927. ))
  45928. characterMakers.push(() => makeCharacter(
  45929. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45930. {
  45931. front: {
  45932. height: math.unit(4, "feet"),
  45933. name: "Front",
  45934. image: {
  45935. source: "./media/characters/kali/front.svg",
  45936. extra: 1074/867,
  45937. bottom: 34/1108
  45938. }
  45939. },
  45940. back: {
  45941. height: math.unit(4, "feet"),
  45942. name: "Back",
  45943. image: {
  45944. source: "./media/characters/kali/back.svg",
  45945. extra: 1068/863,
  45946. bottom: 26/1094
  45947. }
  45948. },
  45949. frontAlt: {
  45950. height: math.unit(4, "feet"),
  45951. name: "Front (Alt)",
  45952. image: {
  45953. source: "./media/characters/kali/front-alt.svg",
  45954. extra: 1921/1357,
  45955. bottom: 70/1991
  45956. }
  45957. },
  45958. },
  45959. [
  45960. {
  45961. name: "Normal",
  45962. height: math.unit(4, "feet"),
  45963. default: true
  45964. },
  45965. {
  45966. name: "Big'vali",
  45967. height: math.unit(11, "feet")
  45968. },
  45969. {
  45970. name: "Macro",
  45971. height: math.unit(32, "meters")
  45972. },
  45973. {
  45974. name: "Macro+",
  45975. height: math.unit(150, "meters")
  45976. },
  45977. {
  45978. name: "Megamacro",
  45979. height: math.unit(7500, "meters")
  45980. },
  45981. {
  45982. name: "Megamacro+",
  45983. height: math.unit(80, "kilometers")
  45984. },
  45985. ]
  45986. ))
  45987. characterMakers.push(() => makeCharacter(
  45988. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45989. {
  45990. side: {
  45991. height: math.unit(5 + 11/12, "feet"),
  45992. weight: math.unit(236, "lb"),
  45993. name: "Side",
  45994. image: {
  45995. source: "./media/characters/gapp/side.svg",
  45996. extra: 775/340,
  45997. bottom: 58/833
  45998. }
  45999. },
  46000. mouth: {
  46001. height: math.unit(2.98, "feet"),
  46002. name: "Mouth",
  46003. image: {
  46004. source: "./media/characters/gapp/mouth.svg"
  46005. }
  46006. },
  46007. },
  46008. [
  46009. {
  46010. name: "Normal",
  46011. height: math.unit(5 + 1/12, "feet"),
  46012. default: true
  46013. },
  46014. ]
  46015. ))
  46016. characterMakers.push(() => makeCharacter(
  46017. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46018. {
  46019. front: {
  46020. height: math.unit(6, "feet"),
  46021. name: "Front",
  46022. image: {
  46023. source: "./media/characters/persephone/front.svg",
  46024. extra: 1895/1717,
  46025. bottom: 96/1991
  46026. }
  46027. },
  46028. back: {
  46029. height: math.unit(6, "feet"),
  46030. name: "Back",
  46031. image: {
  46032. source: "./media/characters/persephone/back.svg",
  46033. extra: 1868/1679,
  46034. bottom: 26/1894
  46035. }
  46036. },
  46037. casual: {
  46038. height: math.unit(6, "feet"),
  46039. name: "Casual",
  46040. image: {
  46041. source: "./media/characters/persephone/casual.svg",
  46042. extra: 1713/1541,
  46043. bottom: 76/1789
  46044. }
  46045. },
  46046. gaming: {
  46047. height: math.unit(3.55, "feet"),
  46048. name: "Gaming",
  46049. image: {
  46050. source: "./media/characters/persephone/gaming.svg",
  46051. extra: 1242/1038,
  46052. bottom: 66/1308
  46053. }
  46054. },
  46055. head: {
  46056. height: math.unit(2.15, "feet"),
  46057. name: "😐",
  46058. image: {
  46059. source: "./media/characters/persephone/head.svg"
  46060. }
  46061. },
  46062. talking: {
  46063. height: math.unit(2.5, "feet"),
  46064. name: "💬",
  46065. image: {
  46066. source: "./media/characters/persephone/talking.svg"
  46067. }
  46068. },
  46069. hmm: {
  46070. height: math.unit(2.28, "feet"),
  46071. name: "🤨",
  46072. image: {
  46073. source: "./media/characters/persephone/hmm.svg"
  46074. }
  46075. },
  46076. },
  46077. [
  46078. {
  46079. name: "Human Size",
  46080. height: math.unit(6, "feet")
  46081. },
  46082. {
  46083. name: "Big Steppy",
  46084. height: math.unit(600, "meters"),
  46085. default: true
  46086. },
  46087. {
  46088. name: "Galaxy Brain",
  46089. height: math.unit(1, "zettameter")
  46090. },
  46091. ]
  46092. ))
  46093. characterMakers.push(() => makeCharacter(
  46094. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46095. {
  46096. front: {
  46097. height: math.unit(1.85, "meters"),
  46098. name: "Front",
  46099. image: {
  46100. source: "./media/characters/riley-foxthing/front.svg",
  46101. extra: 1495/1354,
  46102. bottom: 122/1617
  46103. }
  46104. },
  46105. frontAlt: {
  46106. height: math.unit(1.85, "meters"),
  46107. name: "Front (Alt)",
  46108. image: {
  46109. source: "./media/characters/riley-foxthing/front-alt.svg",
  46110. extra: 1572/1389,
  46111. bottom: 116/1688
  46112. }
  46113. },
  46114. },
  46115. [
  46116. {
  46117. name: "Normal Sized",
  46118. height: math.unit(1.85, "meters"),
  46119. default: true
  46120. },
  46121. {
  46122. name: "Quite Sizable",
  46123. height: math.unit(5, "meters")
  46124. },
  46125. {
  46126. name: "Rather Large",
  46127. height: math.unit(20, "meters")
  46128. },
  46129. {
  46130. name: "Macro",
  46131. height: math.unit(450, "meters")
  46132. },
  46133. {
  46134. name: "Giga",
  46135. height: math.unit(5, "km")
  46136. },
  46137. ]
  46138. ))
  46139. characterMakers.push(() => makeCharacter(
  46140. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46141. {
  46142. front: {
  46143. height: math.unit(6, "feet"),
  46144. weight: math.unit(200, "lb"),
  46145. name: "Front",
  46146. image: {
  46147. source: "./media/characters/blizzard/front.svg",
  46148. extra: 1136/990,
  46149. bottom: 136/1272
  46150. }
  46151. },
  46152. back: {
  46153. height: math.unit(6, "feet"),
  46154. weight: math.unit(200, "lb"),
  46155. name: "Back",
  46156. image: {
  46157. source: "./media/characters/blizzard/back.svg",
  46158. extra: 1175/1034,
  46159. bottom: 97/1272
  46160. }
  46161. },
  46162. sitting: {
  46163. height: math.unit(3.725, "feet"),
  46164. weight: math.unit(200, "lb"),
  46165. name: "Sitting",
  46166. image: {
  46167. source: "./media/characters/blizzard/sitting.svg",
  46168. extra: 581/485,
  46169. bottom: 90/671
  46170. }
  46171. },
  46172. frontWizard: {
  46173. height: math.unit(7.9, "feet"),
  46174. weight: math.unit(200, "lb"),
  46175. name: "Front (Wizard)",
  46176. image: {
  46177. source: "./media/characters/blizzard/front-wizard.svg"
  46178. }
  46179. },
  46180. backWizard: {
  46181. height: math.unit(7.9, "feet"),
  46182. weight: math.unit(200, "lb"),
  46183. name: "Back (Wizard)",
  46184. image: {
  46185. source: "./media/characters/blizzard/back-wizard.svg"
  46186. }
  46187. },
  46188. frontNsfw: {
  46189. height: math.unit(6, "feet"),
  46190. weight: math.unit(200, "lb"),
  46191. name: "Front (NSFW)",
  46192. image: {
  46193. source: "./media/characters/blizzard/front-nsfw.svg",
  46194. extra: 1136/990,
  46195. bottom: 136/1272
  46196. }
  46197. },
  46198. backNsfw: {
  46199. height: math.unit(6, "feet"),
  46200. weight: math.unit(200, "lb"),
  46201. name: "Back (NSFW)",
  46202. image: {
  46203. source: "./media/characters/blizzard/back-nsfw.svg",
  46204. extra: 1175/1034,
  46205. bottom: 97/1272
  46206. }
  46207. },
  46208. sittingNsfw: {
  46209. height: math.unit(3.725, "feet"),
  46210. weight: math.unit(200, "lb"),
  46211. name: "Sitting (NSFW)",
  46212. image: {
  46213. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46214. extra: 581/485,
  46215. bottom: 90/671
  46216. }
  46217. },
  46218. wizardFrontNsfw: {
  46219. height: math.unit(7.9, "feet"),
  46220. weight: math.unit(200, "lb"),
  46221. name: "Wizard (Front, NSFW)",
  46222. image: {
  46223. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46224. }
  46225. },
  46226. },
  46227. [
  46228. {
  46229. name: "Normal",
  46230. height: math.unit(6, "feet"),
  46231. default: true
  46232. },
  46233. ]
  46234. ))
  46235. characterMakers.push(() => makeCharacter(
  46236. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46237. {
  46238. front: {
  46239. height: math.unit(5 + 2/12, "feet"),
  46240. name: "Front",
  46241. image: {
  46242. source: "./media/characters/lumi/front.svg",
  46243. extra: 1328/1268,
  46244. bottom: 103/1431
  46245. }
  46246. },
  46247. back: {
  46248. height: math.unit(5 + 2/12, "feet"),
  46249. name: "Back",
  46250. image: {
  46251. source: "./media/characters/lumi/back.svg",
  46252. extra: 1381/1327,
  46253. bottom: 43/1424
  46254. }
  46255. },
  46256. },
  46257. [
  46258. {
  46259. name: "Normal",
  46260. height: math.unit(5 + 2/12, "feet"),
  46261. default: true
  46262. },
  46263. ]
  46264. ))
  46265. characterMakers.push(() => makeCharacter(
  46266. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46267. {
  46268. front: {
  46269. height: math.unit(5 + 9/12, "feet"),
  46270. name: "Front",
  46271. image: {
  46272. source: "./media/characters/aliya-cotton/front.svg",
  46273. extra: 577/564,
  46274. bottom: 29/606
  46275. }
  46276. },
  46277. },
  46278. [
  46279. {
  46280. name: "Normal",
  46281. height: math.unit(5 + 9/12, "feet"),
  46282. default: true
  46283. },
  46284. ]
  46285. ))
  46286. characterMakers.push(() => makeCharacter(
  46287. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46288. {
  46289. front: {
  46290. height: math.unit(2.7, "meters"),
  46291. weight: math.unit(25000, "lb"),
  46292. name: "Front",
  46293. image: {
  46294. source: "./media/characters/noah-luxray/front.svg",
  46295. extra: 1644/825,
  46296. bottom: 339/1983
  46297. }
  46298. },
  46299. side: {
  46300. height: math.unit(2.97, "meters"),
  46301. weight: math.unit(25000, "lb"),
  46302. name: "Side",
  46303. image: {
  46304. source: "./media/characters/noah-luxray/side.svg",
  46305. extra: 1319/650,
  46306. bottom: 163/1482
  46307. }
  46308. },
  46309. dick: {
  46310. height: math.unit(7.4, "feet"),
  46311. weight: math.unit(2500, "lb"),
  46312. name: "Dick",
  46313. image: {
  46314. source: "./media/characters/noah-luxray/dick.svg"
  46315. }
  46316. },
  46317. dickAlt: {
  46318. height: math.unit(10.83, "feet"),
  46319. weight: math.unit(2500, "lb"),
  46320. name: "Dick-alt",
  46321. image: {
  46322. source: "./media/characters/noah-luxray/dick-alt.svg"
  46323. }
  46324. },
  46325. },
  46326. [
  46327. {
  46328. name: "BIG",
  46329. height: math.unit(2.7, "meters"),
  46330. default: true
  46331. },
  46332. ]
  46333. ))
  46334. characterMakers.push(() => makeCharacter(
  46335. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46336. {
  46337. standing: {
  46338. height: math.unit(183, "cm"),
  46339. weight: math.unit(68, "kg"),
  46340. name: "Standing",
  46341. image: {
  46342. source: "./media/characters/arion/standing.svg",
  46343. extra: 1869/1807,
  46344. bottom: 93/1962
  46345. }
  46346. },
  46347. reclining: {
  46348. height: math.unit(70.5, "cm"),
  46349. weight: math.unit(68, "lb"),
  46350. name: "Reclining",
  46351. image: {
  46352. source: "./media/characters/arion/reclining.svg",
  46353. extra: 937/870,
  46354. bottom: 63/1000
  46355. }
  46356. },
  46357. },
  46358. [
  46359. {
  46360. name: "Colossus Size, Low",
  46361. height: math.unit(33, "meters"),
  46362. default: true
  46363. },
  46364. {
  46365. name: "Colossus Size, Mid",
  46366. height: math.unit(52, "meters")
  46367. },
  46368. {
  46369. name: "Colossus Size, High",
  46370. height: math.unit(60, "meters")
  46371. },
  46372. {
  46373. name: "Titan Size, Low",
  46374. height: math.unit(91, "meters"),
  46375. },
  46376. {
  46377. name: "Titan Size, Mid",
  46378. height: math.unit(122, "meters")
  46379. },
  46380. {
  46381. name: "Titan Size, High",
  46382. height: math.unit(162, "meters")
  46383. },
  46384. ]
  46385. ))
  46386. characterMakers.push(() => makeCharacter(
  46387. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46388. {
  46389. front: {
  46390. height: math.unit(53, "meters"),
  46391. name: "Front",
  46392. image: {
  46393. source: "./media/characters/stellar-marbey/front.svg",
  46394. extra: 1913/1805,
  46395. bottom: 92/2005
  46396. }
  46397. },
  46398. back: {
  46399. height: math.unit(53, "meters"),
  46400. name: "Back",
  46401. image: {
  46402. source: "./media/characters/stellar-marbey/back.svg",
  46403. extra: 1960/1851,
  46404. bottom: 28/1988
  46405. }
  46406. },
  46407. mouth: {
  46408. height: math.unit(3.5, "meters"),
  46409. name: "Mouth",
  46410. image: {
  46411. source: "./media/characters/stellar-marbey/mouth.svg"
  46412. }
  46413. },
  46414. },
  46415. [
  46416. {
  46417. name: "Macro",
  46418. height: math.unit(53, "meters"),
  46419. default: true
  46420. },
  46421. ]
  46422. ))
  46423. characterMakers.push(() => makeCharacter(
  46424. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46425. {
  46426. front: {
  46427. height: math.unit(8 + 1/12, "feet"),
  46428. weight: math.unit(233, "lb"),
  46429. name: "Front",
  46430. image: {
  46431. source: "./media/characters/matsu/front.svg",
  46432. extra: 832/772,
  46433. bottom: 40/872
  46434. }
  46435. },
  46436. back: {
  46437. height: math.unit(8 + 1/12, "feet"),
  46438. weight: math.unit(233, "lb"),
  46439. name: "Back",
  46440. image: {
  46441. source: "./media/characters/matsu/back.svg",
  46442. extra: 839/780,
  46443. bottom: 47/886
  46444. }
  46445. },
  46446. },
  46447. [
  46448. {
  46449. name: "Normal",
  46450. height: math.unit(8 + 1/12, "feet"),
  46451. default: true
  46452. },
  46453. ]
  46454. ))
  46455. characterMakers.push(() => makeCharacter(
  46456. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46457. {
  46458. front: {
  46459. height: math.unit(4, "feet"),
  46460. weight: math.unit(148, "lb"),
  46461. name: "Front",
  46462. image: {
  46463. source: "./media/characters/thiz/front.svg",
  46464. extra: 1913/1748,
  46465. bottom: 62/1975
  46466. }
  46467. },
  46468. },
  46469. [
  46470. {
  46471. name: "Normal",
  46472. height: math.unit(4, "feet"),
  46473. default: true
  46474. },
  46475. ]
  46476. ))
  46477. characterMakers.push(() => makeCharacter(
  46478. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46479. {
  46480. front: {
  46481. height: math.unit(7 + 6/12, "feet"),
  46482. weight: math.unit(267, "lb"),
  46483. name: "Front",
  46484. image: {
  46485. source: "./media/characters/marcel/front.svg",
  46486. extra: 1221/1096,
  46487. bottom: 76/1297
  46488. }
  46489. },
  46490. },
  46491. [
  46492. {
  46493. name: "Normal",
  46494. height: math.unit(7 + 6/12, "feet"),
  46495. default: true
  46496. },
  46497. ]
  46498. ))
  46499. characterMakers.push(() => makeCharacter(
  46500. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46501. {
  46502. side: {
  46503. height: math.unit(42, "meters"),
  46504. name: "Side",
  46505. image: {
  46506. source: "./media/characters/flake/side.svg",
  46507. extra: 1525/1306,
  46508. bottom: 209/1734
  46509. }
  46510. },
  46511. },
  46512. [
  46513. {
  46514. name: "Normal",
  46515. height: math.unit(42, "meters"),
  46516. default: true
  46517. },
  46518. ]
  46519. ))
  46520. characterMakers.push(() => makeCharacter(
  46521. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46522. {
  46523. dressed: {
  46524. height: math.unit(6 + 4/12, "feet"),
  46525. weight: math.unit(520, "lb"),
  46526. name: "Dressed",
  46527. image: {
  46528. source: "./media/characters/someonne/dressed.svg",
  46529. extra: 1020/1010,
  46530. bottom: 178/1198
  46531. }
  46532. },
  46533. undressed: {
  46534. height: math.unit(6 + 4/12, "feet"),
  46535. weight: math.unit(520, "lb"),
  46536. name: "Undressed",
  46537. image: {
  46538. source: "./media/characters/someonne/undressed.svg",
  46539. extra: 1019/1014,
  46540. bottom: 169/1188
  46541. }
  46542. },
  46543. },
  46544. [
  46545. {
  46546. name: "Normal",
  46547. height: math.unit(6 + 4/12, "feet"),
  46548. default: true
  46549. },
  46550. ]
  46551. ))
  46552. characterMakers.push(() => makeCharacter(
  46553. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46554. {
  46555. front: {
  46556. height: math.unit(3, "feet"),
  46557. weight: math.unit(30, "lb"),
  46558. name: "Front",
  46559. image: {
  46560. source: "./media/characters/till/front.svg",
  46561. extra: 892/823,
  46562. bottom: 55/947
  46563. }
  46564. },
  46565. },
  46566. [
  46567. {
  46568. name: "Normal",
  46569. height: math.unit(3, "feet"),
  46570. default: true
  46571. },
  46572. ]
  46573. ))
  46574. characterMakers.push(() => makeCharacter(
  46575. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46576. {
  46577. front: {
  46578. height: math.unit(9 + 8/12, "feet"),
  46579. weight: math.unit(800, "lb"),
  46580. name: "Front",
  46581. image: {
  46582. source: "./media/characters/sydney-heki/front.svg",
  46583. extra: 1360/1300,
  46584. bottom: 22/1382
  46585. }
  46586. },
  46587. back: {
  46588. height: math.unit(9 + 8/12, "feet"),
  46589. weight: math.unit(800, "lb"),
  46590. name: "Back",
  46591. image: {
  46592. source: "./media/characters/sydney-heki/back.svg",
  46593. extra: 1356/1293,
  46594. bottom: 12/1368
  46595. }
  46596. },
  46597. frontDressed: {
  46598. height: math.unit(9 + 8/12, "feet"),
  46599. weight: math.unit(800, "lb"),
  46600. name: "Front-dressed",
  46601. image: {
  46602. source: "./media/characters/sydney-heki/front-dressed.svg",
  46603. extra: 1360/1300,
  46604. bottom: 22/1382
  46605. }
  46606. },
  46607. },
  46608. [
  46609. {
  46610. name: "Normal",
  46611. height: math.unit(9 + 8/12, "feet"),
  46612. default: true
  46613. },
  46614. {
  46615. name: "Macro",
  46616. height: math.unit(500, "feet")
  46617. },
  46618. {
  46619. name: "Megamacro",
  46620. height: math.unit(3.6, "miles")
  46621. },
  46622. ]
  46623. ))
  46624. characterMakers.push(() => makeCharacter(
  46625. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46626. {
  46627. front: {
  46628. height: math.unit(200, "cm"),
  46629. weight: math.unit(250, "lb"),
  46630. name: "Front",
  46631. image: {
  46632. source: "./media/characters/fowler-karlsson/front.svg",
  46633. extra: 897/845,
  46634. bottom: 123/1020
  46635. }
  46636. },
  46637. back: {
  46638. height: math.unit(200, "cm"),
  46639. weight: math.unit(250, "lb"),
  46640. name: "Back",
  46641. image: {
  46642. source: "./media/characters/fowler-karlsson/back.svg",
  46643. extra: 999/944,
  46644. bottom: 26/1025
  46645. }
  46646. },
  46647. dick: {
  46648. height: math.unit(1.92, "feet"),
  46649. weight: math.unit(150, "lb"),
  46650. name: "Dick",
  46651. image: {
  46652. source: "./media/characters/fowler-karlsson/dick.svg"
  46653. }
  46654. },
  46655. },
  46656. [
  46657. {
  46658. name: "Normal",
  46659. height: math.unit(200, "cm"),
  46660. default: true
  46661. },
  46662. {
  46663. name: "Smaller Macro",
  46664. height: math.unit(90, "m")
  46665. },
  46666. {
  46667. name: "Macro",
  46668. height: math.unit(150, "m")
  46669. },
  46670. {
  46671. name: "Bigger Macro",
  46672. height: math.unit(300, "m")
  46673. },
  46674. ]
  46675. ))
  46676. characterMakers.push(() => makeCharacter(
  46677. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46678. {
  46679. side: {
  46680. height: math.unit(8 + 2/12, "feet"),
  46681. weight: math.unit(1, "tonne"),
  46682. name: "Side",
  46683. image: {
  46684. source: "./media/characters/rylide/side.svg",
  46685. extra: 1318/1034,
  46686. bottom: 106/1424
  46687. }
  46688. },
  46689. sitting: {
  46690. height: math.unit(303, "cm"),
  46691. weight: math.unit(1, "tonne"),
  46692. name: "Sitting",
  46693. image: {
  46694. source: "./media/characters/rylide/sitting.svg",
  46695. extra: 1303/1103,
  46696. bottom: 36/1339
  46697. }
  46698. },
  46699. },
  46700. [
  46701. {
  46702. name: "Normal",
  46703. height: math.unit(8 + 2/12, "feet"),
  46704. default: true
  46705. },
  46706. ]
  46707. ))
  46708. characterMakers.push(() => makeCharacter(
  46709. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46710. {
  46711. front: {
  46712. height: math.unit(5 + 10/12, "feet"),
  46713. weight: math.unit(160, "lb"),
  46714. name: "Front",
  46715. image: {
  46716. source: "./media/characters/pudask/front.svg",
  46717. extra: 1616/1590,
  46718. bottom: 161/1777
  46719. }
  46720. },
  46721. },
  46722. [
  46723. {
  46724. name: "Ferret Height",
  46725. height: math.unit(2 + 5/12, "feet")
  46726. },
  46727. {
  46728. name: "Canon Height",
  46729. height: math.unit(5 + 10/12, "feet"),
  46730. default: true
  46731. },
  46732. ]
  46733. ))
  46734. characterMakers.push(() => makeCharacter(
  46735. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46736. {
  46737. front: {
  46738. height: math.unit(3 + 6/12, "feet"),
  46739. weight: math.unit(60, "lb"),
  46740. name: "Front",
  46741. image: {
  46742. source: "./media/characters/ramita/front.svg",
  46743. extra: 1402/1232,
  46744. bottom: 62/1464
  46745. }
  46746. },
  46747. dressed: {
  46748. height: math.unit(3 + 6/12, "feet"),
  46749. weight: math.unit(60, "lb"),
  46750. name: "Dressed",
  46751. image: {
  46752. source: "./media/characters/ramita/dressed.svg",
  46753. extra: 1534/1249,
  46754. bottom: 50/1584
  46755. }
  46756. },
  46757. },
  46758. [
  46759. {
  46760. name: "Normal",
  46761. height: math.unit(3 + 6/12, "feet"),
  46762. default: true
  46763. },
  46764. ]
  46765. ))
  46766. characterMakers.push(() => makeCharacter(
  46767. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46768. {
  46769. front: {
  46770. height: math.unit(8, "feet"),
  46771. name: "Front",
  46772. image: {
  46773. source: "./media/characters/ark/front.svg",
  46774. extra: 772/693,
  46775. bottom: 45/817
  46776. }
  46777. },
  46778. },
  46779. [
  46780. {
  46781. name: "Normal",
  46782. height: math.unit(8, "feet"),
  46783. default: true
  46784. },
  46785. ]
  46786. ))
  46787. characterMakers.push(() => makeCharacter(
  46788. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46789. {
  46790. front: {
  46791. height: math.unit(6, "feet"),
  46792. weight: math.unit(250, "lb"),
  46793. volume: math.unit(5/8, "gallons"),
  46794. name: "Front",
  46795. image: {
  46796. source: "./media/characters/ludwig-horn/front.svg",
  46797. extra: 1782/1635,
  46798. bottom: 96/1878
  46799. }
  46800. },
  46801. back: {
  46802. height: math.unit(6, "feet"),
  46803. weight: math.unit(250, "lb"),
  46804. volume: math.unit(5/8, "gallons"),
  46805. name: "Back",
  46806. image: {
  46807. source: "./media/characters/ludwig-horn/back.svg",
  46808. extra: 1874/1729,
  46809. bottom: 27/1901
  46810. }
  46811. },
  46812. dick: {
  46813. height: math.unit(1.05, "feet"),
  46814. weight: math.unit(15, "lb"),
  46815. volume: math.unit(5/8, "gallons"),
  46816. name: "Dick",
  46817. image: {
  46818. source: "./media/characters/ludwig-horn/dick.svg"
  46819. }
  46820. },
  46821. },
  46822. [
  46823. {
  46824. name: "Small",
  46825. height: math.unit(6, "feet")
  46826. },
  46827. {
  46828. name: "Typical",
  46829. height: math.unit(12, "feet"),
  46830. default: true
  46831. },
  46832. {
  46833. name: "Building",
  46834. height: math.unit(80, "feet")
  46835. },
  46836. {
  46837. name: "Town",
  46838. height: math.unit(800, "feet")
  46839. },
  46840. {
  46841. name: "Kingdom",
  46842. height: math.unit(80000, "feet")
  46843. },
  46844. {
  46845. name: "Planet",
  46846. height: math.unit(8000000, "feet")
  46847. },
  46848. {
  46849. name: "Universe",
  46850. height: math.unit(8000000000, "feet")
  46851. },
  46852. {
  46853. name: "Transcended",
  46854. height: math.unit(8e27, "feet")
  46855. },
  46856. ]
  46857. ))
  46858. characterMakers.push(() => makeCharacter(
  46859. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46860. {
  46861. front: {
  46862. height: math.unit(5, "feet"),
  46863. weight: math.unit(50, "kg"),
  46864. name: "Front",
  46865. image: {
  46866. source: "./media/characters/biot-avery/front.svg",
  46867. extra: 1295/1232,
  46868. bottom: 86/1381
  46869. }
  46870. },
  46871. },
  46872. [
  46873. {
  46874. name: "Normal",
  46875. height: math.unit(5, "feet"),
  46876. default: true
  46877. },
  46878. ]
  46879. ))
  46880. characterMakers.push(() => makeCharacter(
  46881. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46882. {
  46883. front: {
  46884. height: math.unit(6, "feet"),
  46885. name: "Front",
  46886. image: {
  46887. source: "./media/characters/kitsune-kiro/front.svg",
  46888. extra: 1270/1158,
  46889. bottom: 42/1312
  46890. }
  46891. },
  46892. frontAlt: {
  46893. height: math.unit(6, "feet"),
  46894. name: "Front-alt",
  46895. image: {
  46896. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46897. extra: 1130/1081,
  46898. bottom: 36/1166
  46899. }
  46900. },
  46901. },
  46902. [
  46903. {
  46904. name: "Smol",
  46905. height: math.unit(3, "feet")
  46906. },
  46907. {
  46908. name: "Normal",
  46909. height: math.unit(6, "feet"),
  46910. default: true
  46911. },
  46912. ]
  46913. ))
  46914. characterMakers.push(() => makeCharacter(
  46915. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46916. {
  46917. front: {
  46918. height: math.unit(6, "feet"),
  46919. weight: math.unit(125, "lb"),
  46920. name: "Front",
  46921. image: {
  46922. source: "./media/characters/jack-thatcher/front.svg",
  46923. extra: 1474/1370,
  46924. bottom: 26/1500
  46925. }
  46926. },
  46927. back: {
  46928. height: math.unit(6, "feet"),
  46929. weight: math.unit(125, "lb"),
  46930. name: "Back",
  46931. image: {
  46932. source: "./media/characters/jack-thatcher/back.svg",
  46933. extra: 1489/1384,
  46934. bottom: 18/1507
  46935. }
  46936. },
  46937. },
  46938. [
  46939. {
  46940. name: "Normal",
  46941. height: math.unit(6, "feet"),
  46942. default: true
  46943. },
  46944. {
  46945. name: "Macro",
  46946. height: math.unit(75, "feet")
  46947. },
  46948. {
  46949. name: "Macro-er",
  46950. height: math.unit(250, "feet")
  46951. },
  46952. ]
  46953. ))
  46954. characterMakers.push(() => makeCharacter(
  46955. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46956. {
  46957. front: {
  46958. height: math.unit(7, "feet"),
  46959. weight: math.unit(110, "kg"),
  46960. name: "Front",
  46961. image: {
  46962. source: "./media/characters/max-hyper/front.svg",
  46963. extra: 1969/1881,
  46964. bottom: 49/2018
  46965. }
  46966. },
  46967. },
  46968. [
  46969. {
  46970. name: "Normal",
  46971. height: math.unit(7, "feet"),
  46972. default: true
  46973. },
  46974. ]
  46975. ))
  46976. characterMakers.push(() => makeCharacter(
  46977. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46978. {
  46979. front: {
  46980. height: math.unit(5 + 5/12, "feet"),
  46981. weight: math.unit(160, "lb"),
  46982. name: "Front",
  46983. image: {
  46984. source: "./media/characters/spook/front.svg",
  46985. extra: 794/791,
  46986. bottom: 54/848
  46987. }
  46988. },
  46989. back: {
  46990. height: math.unit(5 + 5/12, "feet"),
  46991. weight: math.unit(160, "lb"),
  46992. name: "Back",
  46993. image: {
  46994. source: "./media/characters/spook/back.svg",
  46995. extra: 812/798,
  46996. bottom: 32/844
  46997. }
  46998. },
  46999. },
  47000. [
  47001. {
  47002. name: "Normal",
  47003. height: math.unit(5 + 5/12, "feet"),
  47004. default: true
  47005. },
  47006. ]
  47007. ))
  47008. characterMakers.push(() => makeCharacter(
  47009. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47010. {
  47011. front: {
  47012. height: math.unit(18, "feet"),
  47013. name: "Front",
  47014. image: {
  47015. source: "./media/characters/xeaduulix/front.svg",
  47016. extra: 1380/1166,
  47017. bottom: 110/1490
  47018. }
  47019. },
  47020. back: {
  47021. height: math.unit(18, "feet"),
  47022. name: "Back",
  47023. image: {
  47024. source: "./media/characters/xeaduulix/back.svg",
  47025. extra: 1592/1170,
  47026. bottom: 128/1720
  47027. }
  47028. },
  47029. frontNsfw: {
  47030. height: math.unit(18, "feet"),
  47031. name: "Front (NSFW)",
  47032. image: {
  47033. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47034. extra: 1380/1166,
  47035. bottom: 110/1490
  47036. }
  47037. },
  47038. backNsfw: {
  47039. height: math.unit(18, "feet"),
  47040. name: "Back (NSFW)",
  47041. image: {
  47042. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47043. extra: 1592/1170,
  47044. bottom: 128/1720
  47045. }
  47046. },
  47047. },
  47048. [
  47049. {
  47050. name: "Normal",
  47051. height: math.unit(18, "feet"),
  47052. default: true
  47053. },
  47054. ]
  47055. ))
  47056. characterMakers.push(() => makeCharacter(
  47057. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47058. {
  47059. spreadWings: {
  47060. height: math.unit(20, "feet"),
  47061. name: "Spread Wings",
  47062. image: {
  47063. source: "./media/characters/fledge/spread-wings.svg",
  47064. extra: 693/635,
  47065. bottom: 26/719
  47066. }
  47067. },
  47068. front: {
  47069. height: math.unit(20, "feet"),
  47070. name: "Front",
  47071. image: {
  47072. source: "./media/characters/fledge/front.svg",
  47073. extra: 684/637,
  47074. bottom: 18/702
  47075. }
  47076. },
  47077. frontAlt: {
  47078. height: math.unit(20, "feet"),
  47079. name: "Front (Alt)",
  47080. image: {
  47081. source: "./media/characters/fledge/front-alt.svg",
  47082. extra: 708/664,
  47083. bottom: 13/721
  47084. }
  47085. },
  47086. back: {
  47087. height: math.unit(20, "feet"),
  47088. name: "Back",
  47089. image: {
  47090. source: "./media/characters/fledge/back.svg",
  47091. extra: 718/634,
  47092. bottom: 22/740
  47093. }
  47094. },
  47095. head: {
  47096. height: math.unit(5.55, "feet"),
  47097. name: "Head",
  47098. image: {
  47099. source: "./media/characters/fledge/head.svg"
  47100. }
  47101. },
  47102. headAlt: {
  47103. height: math.unit(5.1, "feet"),
  47104. name: "Head (Alt)",
  47105. image: {
  47106. source: "./media/characters/fledge/head-alt.svg"
  47107. }
  47108. },
  47109. },
  47110. [
  47111. {
  47112. name: "Small",
  47113. height: math.unit(6 + 2/12, "feet")
  47114. },
  47115. {
  47116. name: "Big",
  47117. height: math.unit(20, "feet"),
  47118. default: true
  47119. },
  47120. {
  47121. name: "Giant",
  47122. height: math.unit(100, "feet")
  47123. },
  47124. {
  47125. name: "Macro",
  47126. height: math.unit(200, "feet")
  47127. },
  47128. ]
  47129. ))
  47130. characterMakers.push(() => makeCharacter(
  47131. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47132. {
  47133. front: {
  47134. height: math.unit(1, "meter"),
  47135. name: "Front",
  47136. image: {
  47137. source: "./media/characters/atlas-morenai/front.svg",
  47138. extra: 1275/1043,
  47139. bottom: 19/1294
  47140. }
  47141. },
  47142. back: {
  47143. height: math.unit(1, "meter"),
  47144. name: "Back",
  47145. image: {
  47146. source: "./media/characters/atlas-morenai/back.svg",
  47147. extra: 1141/1001,
  47148. bottom: 25/1166
  47149. }
  47150. },
  47151. },
  47152. [
  47153. {
  47154. name: "Normal",
  47155. height: math.unit(1, "meter"),
  47156. default: true
  47157. },
  47158. {
  47159. name: "Magic-Infused",
  47160. height: math.unit(5, "meters")
  47161. },
  47162. ]
  47163. ))
  47164. characterMakers.push(() => makeCharacter(
  47165. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47166. {
  47167. front: {
  47168. height: math.unit(5, "meters"),
  47169. name: "Front",
  47170. image: {
  47171. source: "./media/characters/cintia/front.svg",
  47172. extra: 1312/1228,
  47173. bottom: 38/1350
  47174. }
  47175. },
  47176. back: {
  47177. height: math.unit(5, "meters"),
  47178. name: "Back",
  47179. image: {
  47180. source: "./media/characters/cintia/back.svg",
  47181. extra: 1260/1166,
  47182. bottom: 98/1358
  47183. }
  47184. },
  47185. frontDick: {
  47186. height: math.unit(5, "meters"),
  47187. name: "Front (Dick)",
  47188. image: {
  47189. source: "./media/characters/cintia/front-dick.svg",
  47190. extra: 1312/1228,
  47191. bottom: 38/1350
  47192. }
  47193. },
  47194. backDick: {
  47195. height: math.unit(5, "meters"),
  47196. name: "Back (Dick)",
  47197. image: {
  47198. source: "./media/characters/cintia/back-dick.svg",
  47199. extra: 1260/1166,
  47200. bottom: 98/1358
  47201. }
  47202. },
  47203. bust: {
  47204. height: math.unit(1.97, "meters"),
  47205. name: "Bust",
  47206. image: {
  47207. source: "./media/characters/cintia/bust.svg",
  47208. extra: 617/565,
  47209. bottom: 0/617
  47210. }
  47211. },
  47212. },
  47213. [
  47214. {
  47215. name: "Normal",
  47216. height: math.unit(5, "meters"),
  47217. default: true
  47218. },
  47219. ]
  47220. ))
  47221. characterMakers.push(() => makeCharacter(
  47222. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47223. {
  47224. side: {
  47225. height: math.unit(100, "feet"),
  47226. name: "Side",
  47227. image: {
  47228. source: "./media/characters/denora/side.svg",
  47229. extra: 875/803,
  47230. bottom: 9/884
  47231. }
  47232. },
  47233. },
  47234. [
  47235. {
  47236. name: "Standard",
  47237. height: math.unit(100, "feet"),
  47238. default: true
  47239. },
  47240. {
  47241. name: "Grand",
  47242. height: math.unit(1000, "feet")
  47243. },
  47244. {
  47245. name: "Conquering",
  47246. height: math.unit(10000, "feet")
  47247. },
  47248. ]
  47249. ))
  47250. characterMakers.push(() => makeCharacter(
  47251. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47252. {
  47253. dressed: {
  47254. height: math.unit(8 + 5/12, "feet"),
  47255. weight: math.unit(700, "lb"),
  47256. name: "Dressed",
  47257. image: {
  47258. source: "./media/characters/kiva/dressed.svg",
  47259. extra: 1102/1055,
  47260. bottom: 60/1162
  47261. }
  47262. },
  47263. nude: {
  47264. height: math.unit(8 + 5/12, "feet"),
  47265. weight: math.unit(700, "lb"),
  47266. name: "Nude",
  47267. image: {
  47268. source: "./media/characters/kiva/nude.svg",
  47269. extra: 1102/1055,
  47270. bottom: 60/1162
  47271. }
  47272. },
  47273. },
  47274. [
  47275. {
  47276. name: "Base Height",
  47277. height: math.unit(8 + 5/12, "feet"),
  47278. default: true
  47279. },
  47280. {
  47281. name: "Macro",
  47282. height: math.unit(100, "feet")
  47283. },
  47284. {
  47285. name: "Max",
  47286. height: math.unit(3280, "feet")
  47287. },
  47288. ]
  47289. ))
  47290. characterMakers.push(() => makeCharacter(
  47291. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47292. {
  47293. front: {
  47294. height: math.unit(6 + 8/12, "feet"),
  47295. weight: math.unit(250, "lb"),
  47296. name: "Front",
  47297. image: {
  47298. source: "./media/characters/ztragon/front.svg",
  47299. extra: 1825/1684,
  47300. bottom: 98/1923
  47301. }
  47302. },
  47303. },
  47304. [
  47305. {
  47306. name: "Normal",
  47307. height: math.unit(6 + 8/12, "feet"),
  47308. default: true
  47309. },
  47310. {
  47311. name: "Macro",
  47312. height: math.unit(80, "feet")
  47313. },
  47314. ]
  47315. ))
  47316. characterMakers.push(() => makeCharacter(
  47317. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47318. {
  47319. front: {
  47320. height: math.unit(10.4, "feet"),
  47321. weight: math.unit(2, "tons"),
  47322. name: "Front",
  47323. image: {
  47324. source: "./media/characters/yesenia/front.svg",
  47325. extra: 1479/1474,
  47326. bottom: 233/1712
  47327. }
  47328. },
  47329. },
  47330. [
  47331. {
  47332. name: "Normal",
  47333. height: math.unit(10.4, "feet"),
  47334. default: true
  47335. },
  47336. ]
  47337. ))
  47338. characterMakers.push(() => makeCharacter(
  47339. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47340. {
  47341. normal: {
  47342. height: math.unit(6 + 1/12, "feet"),
  47343. weight: math.unit(180, "lb"),
  47344. name: "Normal",
  47345. image: {
  47346. source: "./media/characters/leanne-lycheborne/normal.svg",
  47347. extra: 1748/1660,
  47348. bottom: 98/1846
  47349. }
  47350. },
  47351. were: {
  47352. height: math.unit(12, "feet"),
  47353. weight: math.unit(1600, "lb"),
  47354. name: "Were",
  47355. image: {
  47356. source: "./media/characters/leanne-lycheborne/were.svg",
  47357. extra: 1485/1432,
  47358. bottom: 66/1551
  47359. }
  47360. },
  47361. },
  47362. [
  47363. {
  47364. name: "Normal",
  47365. height: math.unit(6 + 1/12, "feet"),
  47366. default: true
  47367. },
  47368. ]
  47369. ))
  47370. characterMakers.push(() => makeCharacter(
  47371. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47372. {
  47373. side: {
  47374. height: math.unit(13, "feet"),
  47375. name: "Side",
  47376. image: {
  47377. source: "./media/characters/kira-tyler/side.svg",
  47378. extra: 693/393,
  47379. bottom: 58/751
  47380. }
  47381. },
  47382. },
  47383. [
  47384. {
  47385. name: "Normal",
  47386. height: math.unit(13, "feet"),
  47387. default: true
  47388. },
  47389. ]
  47390. ))
  47391. characterMakers.push(() => makeCharacter(
  47392. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47393. {
  47394. front: {
  47395. height: math.unit(10.3, "feet"),
  47396. weight: math.unit(150, "lb"),
  47397. name: "Front",
  47398. image: {
  47399. source: "./media/characters/blaze/front.svg",
  47400. extra: 1378/1286,
  47401. bottom: 172/1550
  47402. }
  47403. },
  47404. },
  47405. [
  47406. {
  47407. name: "Normal",
  47408. height: math.unit(10.3, "feet"),
  47409. default: true
  47410. },
  47411. ]
  47412. ))
  47413. characterMakers.push(() => makeCharacter(
  47414. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47415. {
  47416. side: {
  47417. height: math.unit(2, "meters"),
  47418. weight: math.unit(400, "kg"),
  47419. name: "Side",
  47420. image: {
  47421. source: "./media/characters/anu/side.svg",
  47422. extra: 506/394,
  47423. bottom: 18/524
  47424. }
  47425. },
  47426. },
  47427. [
  47428. {
  47429. name: "Humanoid",
  47430. height: math.unit(2, "meters")
  47431. },
  47432. {
  47433. name: "Normal",
  47434. height: math.unit(5, "meters"),
  47435. default: true
  47436. },
  47437. ]
  47438. ))
  47439. characterMakers.push(() => makeCharacter(
  47440. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47441. {
  47442. front: {
  47443. height: math.unit(5 + 5/12, "feet"),
  47444. weight: math.unit(170, "lb"),
  47445. name: "Front",
  47446. image: {
  47447. source: "./media/characters/synx-the-lynx/front.svg",
  47448. extra: 1893/1745,
  47449. bottom: 17/1910
  47450. }
  47451. },
  47452. side: {
  47453. height: math.unit(5 + 5/12, "feet"),
  47454. weight: math.unit(170, "lb"),
  47455. name: "Side",
  47456. image: {
  47457. source: "./media/characters/synx-the-lynx/side.svg",
  47458. extra: 1884/1740,
  47459. bottom: 39/1923
  47460. }
  47461. },
  47462. back: {
  47463. height: math.unit(5 + 5/12, "feet"),
  47464. weight: math.unit(170, "lb"),
  47465. name: "Back",
  47466. image: {
  47467. source: "./media/characters/synx-the-lynx/back.svg",
  47468. extra: 1903/1755,
  47469. bottom: 14/1917
  47470. }
  47471. },
  47472. },
  47473. [
  47474. {
  47475. name: "Normal",
  47476. height: math.unit(5 + 5/12, "feet"),
  47477. default: true
  47478. },
  47479. ]
  47480. ))
  47481. characterMakers.push(() => makeCharacter(
  47482. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47483. {
  47484. back: {
  47485. height: math.unit(15, "feet"),
  47486. name: "Back",
  47487. image: {
  47488. source: "./media/characters/nadezda-fex/back.svg",
  47489. extra: 1695/1481,
  47490. bottom: 25/1720
  47491. }
  47492. },
  47493. },
  47494. [
  47495. {
  47496. name: "Normal",
  47497. height: math.unit(15, "feet"),
  47498. default: true
  47499. },
  47500. {
  47501. name: "Macro",
  47502. height: math.unit(2.5, "miles")
  47503. },
  47504. {
  47505. name: "Goddess",
  47506. height: math.unit(2, "multiverses")
  47507. },
  47508. ]
  47509. ))
  47510. characterMakers.push(() => makeCharacter(
  47511. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47512. {
  47513. front: {
  47514. height: math.unit(216, "cm"),
  47515. name: "Front",
  47516. image: {
  47517. source: "./media/characters/lev/front.svg",
  47518. extra: 1728/1670,
  47519. bottom: 82/1810
  47520. }
  47521. },
  47522. back: {
  47523. height: math.unit(216, "cm"),
  47524. name: "Back",
  47525. image: {
  47526. source: "./media/characters/lev/back.svg",
  47527. extra: 1738/1675,
  47528. bottom: 24/1762
  47529. }
  47530. },
  47531. dressed: {
  47532. height: math.unit(216, "cm"),
  47533. name: "Dressed",
  47534. image: {
  47535. source: "./media/characters/lev/dressed.svg",
  47536. extra: 1397/1351,
  47537. bottom: 73/1470
  47538. }
  47539. },
  47540. head: {
  47541. height: math.unit(0.51, "meter"),
  47542. name: "Head",
  47543. image: {
  47544. source: "./media/characters/lev/head.svg"
  47545. }
  47546. },
  47547. },
  47548. [
  47549. {
  47550. name: "Normal",
  47551. height: math.unit(216, "cm"),
  47552. default: true
  47553. },
  47554. {
  47555. name: "Relatively Macro",
  47556. height: math.unit(80, "meters")
  47557. },
  47558. {
  47559. name: "Megamacro",
  47560. height: math.unit(21600, "meters")
  47561. },
  47562. {
  47563. name: "Megamacro+",
  47564. height: math.unit(64800, "meters")
  47565. },
  47566. ]
  47567. ))
  47568. characterMakers.push(() => makeCharacter(
  47569. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47570. {
  47571. front: {
  47572. height: math.unit(2, "meters"),
  47573. weight: math.unit(80, "kg"),
  47574. name: "Front",
  47575. image: {
  47576. source: "./media/characters/moka/front.svg",
  47577. extra: 1337/1255,
  47578. bottom: 58/1395
  47579. }
  47580. },
  47581. },
  47582. [
  47583. {
  47584. name: "Micro",
  47585. height: math.unit(15, "cm")
  47586. },
  47587. {
  47588. name: "Normal",
  47589. height: math.unit(2, "meters"),
  47590. default: true
  47591. },
  47592. {
  47593. name: "Macro",
  47594. height: math.unit(20, "meters"),
  47595. },
  47596. ]
  47597. ))
  47598. characterMakers.push(() => makeCharacter(
  47599. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47600. {
  47601. front: {
  47602. height: math.unit(9, "feet"),
  47603. weight: math.unit(240, "lb"),
  47604. name: "Front",
  47605. image: {
  47606. source: "./media/characters/kuzco/front.svg",
  47607. extra: 1593/1487,
  47608. bottom: 32/1625
  47609. }
  47610. },
  47611. side: {
  47612. height: math.unit(9, "feet"),
  47613. weight: math.unit(240, "lb"),
  47614. name: "Side",
  47615. image: {
  47616. source: "./media/characters/kuzco/side.svg",
  47617. extra: 1575/1485,
  47618. bottom: 30/1605
  47619. }
  47620. },
  47621. back: {
  47622. height: math.unit(9, "feet"),
  47623. weight: math.unit(240, "lb"),
  47624. name: "Back",
  47625. image: {
  47626. source: "./media/characters/kuzco/back.svg",
  47627. extra: 1603/1514,
  47628. bottom: 14/1617
  47629. }
  47630. },
  47631. },
  47632. [
  47633. {
  47634. name: "Normal",
  47635. height: math.unit(9, "feet"),
  47636. default: true
  47637. },
  47638. ]
  47639. ))
  47640. characterMakers.push(() => makeCharacter(
  47641. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47642. {
  47643. side: {
  47644. height: math.unit(2, "meters"),
  47645. weight: math.unit(300, "kg"),
  47646. name: "Side",
  47647. image: {
  47648. source: "./media/characters/ceruleus/side.svg",
  47649. extra: 1068/974,
  47650. bottom: 126/1194
  47651. }
  47652. },
  47653. maw: {
  47654. height: math.unit(0.8125, "meter"),
  47655. name: "Maw",
  47656. image: {
  47657. source: "./media/characters/ceruleus/maw.svg"
  47658. }
  47659. },
  47660. },
  47661. [
  47662. {
  47663. name: "Normal",
  47664. height: math.unit(16, "meters"),
  47665. default: true
  47666. },
  47667. ]
  47668. ))
  47669. characterMakers.push(() => makeCharacter(
  47670. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47671. {
  47672. front: {
  47673. height: math.unit(9, "feet"),
  47674. weight: math.unit(500, "kg"),
  47675. name: "Front",
  47676. image: {
  47677. source: "./media/characters/acouya/front.svg",
  47678. extra: 1660/1473,
  47679. bottom: 28/1688
  47680. }
  47681. },
  47682. },
  47683. [
  47684. {
  47685. name: "Normal",
  47686. height: math.unit(9, "feet"),
  47687. default: true
  47688. },
  47689. ]
  47690. ))
  47691. characterMakers.push(() => makeCharacter(
  47692. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47693. {
  47694. front: {
  47695. height: math.unit(5 + 6/12, "feet"),
  47696. weight: math.unit(195, "lb"),
  47697. name: "Front",
  47698. image: {
  47699. source: "./media/characters/vant/front.svg",
  47700. extra: 1396/1320,
  47701. bottom: 20/1416
  47702. }
  47703. },
  47704. back: {
  47705. height: math.unit(5 + 6/12, "feet"),
  47706. weight: math.unit(195, "lb"),
  47707. name: "Back",
  47708. image: {
  47709. source: "./media/characters/vant/back.svg",
  47710. extra: 1396/1320,
  47711. bottom: 20/1416
  47712. }
  47713. },
  47714. maw: {
  47715. height: math.unit(0.75, "feet"),
  47716. name: "Maw",
  47717. image: {
  47718. source: "./media/characters/vant/maw.svg"
  47719. }
  47720. },
  47721. paw: {
  47722. height: math.unit(1.07, "feet"),
  47723. name: "Paw",
  47724. image: {
  47725. source: "./media/characters/vant/paw.svg"
  47726. }
  47727. },
  47728. },
  47729. [
  47730. {
  47731. name: "Micro",
  47732. height: math.unit(0.25, "inches")
  47733. },
  47734. {
  47735. name: "Normal",
  47736. height: math.unit(5 + 6/12, "feet"),
  47737. default: true
  47738. },
  47739. {
  47740. name: "Macro",
  47741. height: math.unit(75, "feet")
  47742. },
  47743. ]
  47744. ))
  47745. characterMakers.push(() => makeCharacter(
  47746. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47747. {
  47748. front: {
  47749. height: math.unit(30, "meters"),
  47750. weight: math.unit(363, "tons"),
  47751. name: "Front",
  47752. image: {
  47753. source: "./media/characters/ahra/front.svg",
  47754. extra: 1914/1814,
  47755. bottom: 46/1960
  47756. }
  47757. },
  47758. },
  47759. [
  47760. {
  47761. name: "Macro",
  47762. height: math.unit(30, "meters"),
  47763. default: true
  47764. },
  47765. ]
  47766. ))
  47767. characterMakers.push(() => makeCharacter(
  47768. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47769. {
  47770. undressed: {
  47771. height: math.unit(2, "m"),
  47772. weight: math.unit(250, "kg"),
  47773. name: "Undressed",
  47774. image: {
  47775. source: "./media/characters/coriander/undressed.svg",
  47776. extra: 1757/1606,
  47777. bottom: 107/1864
  47778. }
  47779. },
  47780. dressed: {
  47781. height: math.unit(2, "m"),
  47782. weight: math.unit(250, "kg"),
  47783. name: "Dressed",
  47784. image: {
  47785. source: "./media/characters/coriander/dressed.svg",
  47786. extra: 1757/1606,
  47787. bottom: 107/1864
  47788. }
  47789. },
  47790. },
  47791. [
  47792. {
  47793. name: "Normal",
  47794. height: math.unit(4, "meters"),
  47795. default: true
  47796. },
  47797. {
  47798. name: "XL",
  47799. height: math.unit(6, "meters")
  47800. },
  47801. {
  47802. name: "XXL",
  47803. height: math.unit(8, "meters")
  47804. },
  47805. ]
  47806. ))
  47807. characterMakers.push(() => makeCharacter(
  47808. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47809. {
  47810. front: {
  47811. height: math.unit(6, "feet"),
  47812. name: "Front",
  47813. image: {
  47814. source: "./media/characters/syrinx/front.svg",
  47815. extra: 1557/1259,
  47816. bottom: 171/1728
  47817. }
  47818. },
  47819. },
  47820. [
  47821. {
  47822. name: "Normal",
  47823. height: math.unit(6 + 3/12, "feet"),
  47824. default: true
  47825. },
  47826. ]
  47827. ))
  47828. characterMakers.push(() => makeCharacter(
  47829. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47830. {
  47831. front: {
  47832. height: math.unit(11 + 6/12, "feet"),
  47833. weight: math.unit(1.5, "tons"),
  47834. name: "Front",
  47835. image: {
  47836. source: "./media/characters/bor/front.svg",
  47837. extra: 1189/1109,
  47838. bottom: 170/1359
  47839. }
  47840. },
  47841. },
  47842. [
  47843. {
  47844. name: "Normal",
  47845. height: math.unit(11 + 6/12, "feet"),
  47846. default: true
  47847. },
  47848. {
  47849. name: "Macro",
  47850. height: math.unit(32 + 9/12, "feet")
  47851. },
  47852. ]
  47853. ))
  47854. characterMakers.push(() => makeCharacter(
  47855. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47856. {
  47857. anthro: {
  47858. height: math.unit(9, "feet"),
  47859. weight: math.unit(2076, "lb"),
  47860. name: "Anthro",
  47861. image: {
  47862. source: "./media/characters/abacus/anthro.svg",
  47863. extra: 1540/1494,
  47864. bottom: 233/1773
  47865. }
  47866. },
  47867. pigeon: {
  47868. height: math.unit(1, "feet"),
  47869. name: "Pigeon",
  47870. image: {
  47871. source: "./media/characters/abacus/pigeon.svg",
  47872. extra: 528/525,
  47873. bottom: 46/574
  47874. }
  47875. },
  47876. },
  47877. [
  47878. {
  47879. name: "Normal",
  47880. height: math.unit(9, "feet"),
  47881. default: true
  47882. },
  47883. ]
  47884. ))
  47885. characterMakers.push(() => makeCharacter(
  47886. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47887. {
  47888. side: {
  47889. height: math.unit(6, "feet"),
  47890. name: "Side",
  47891. image: {
  47892. source: "./media/characters/delkhan/side.svg",
  47893. extra: 1884/1786,
  47894. bottom: 308/2192
  47895. }
  47896. },
  47897. head: {
  47898. height: math.unit(3.38, "feet"),
  47899. name: "Head",
  47900. image: {
  47901. source: "./media/characters/delkhan/head.svg"
  47902. }
  47903. },
  47904. },
  47905. [
  47906. {
  47907. name: "Normal",
  47908. height: math.unit(72, "feet"),
  47909. default: true
  47910. },
  47911. {
  47912. name: "Giant",
  47913. height: math.unit(172, "feet")
  47914. },
  47915. ]
  47916. ))
  47917. characterMakers.push(() => makeCharacter(
  47918. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47919. {
  47920. standing: {
  47921. height: math.unit(6, "feet"),
  47922. name: "Standing",
  47923. image: {
  47924. source: "./media/characters/euchidat/standing.svg",
  47925. extra: 1612/1553,
  47926. bottom: 116/1728
  47927. }
  47928. },
  47929. leaning: {
  47930. height: math.unit(6, "feet"),
  47931. name: "Leaning",
  47932. image: {
  47933. source: "./media/characters/euchidat/leaning.svg",
  47934. extra: 1719/1674,
  47935. bottom: 27/1746
  47936. }
  47937. },
  47938. },
  47939. [
  47940. {
  47941. name: "Normal",
  47942. height: math.unit(175, "feet"),
  47943. default: true
  47944. },
  47945. {
  47946. name: "Megamacro",
  47947. height: math.unit(190, "miles")
  47948. },
  47949. {
  47950. name: "Gigamacro",
  47951. height: math.unit(190000, "miles")
  47952. },
  47953. ]
  47954. ))
  47955. characterMakers.push(() => makeCharacter(
  47956. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47957. {
  47958. front: {
  47959. height: math.unit(6, "feet"),
  47960. weight: math.unit(150, "lb"),
  47961. name: "Front",
  47962. image: {
  47963. source: "./media/characters/rebecca-stack/front.svg",
  47964. extra: 1256/1201,
  47965. bottom: 18/1274
  47966. }
  47967. },
  47968. },
  47969. [
  47970. {
  47971. name: "Normal",
  47972. height: math.unit(5 + 8/12, "feet"),
  47973. default: true
  47974. },
  47975. {
  47976. name: "Demolitionist",
  47977. height: math.unit(200, "feet")
  47978. },
  47979. {
  47980. name: "Out of Control",
  47981. height: math.unit(2, "miles")
  47982. },
  47983. {
  47984. name: "Giga",
  47985. height: math.unit(7200, "miles")
  47986. },
  47987. ]
  47988. ))
  47989. characterMakers.push(() => makeCharacter(
  47990. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47991. {
  47992. front: {
  47993. height: math.unit(6, "feet"),
  47994. weight: math.unit(150, "lb"),
  47995. name: "Front",
  47996. image: {
  47997. source: "./media/characters/jenny-cartwright/front.svg",
  47998. extra: 1384/1376,
  47999. bottom: 58/1442
  48000. }
  48001. },
  48002. },
  48003. [
  48004. {
  48005. name: "Normal",
  48006. height: math.unit(6 + 7/12, "feet"),
  48007. default: true
  48008. },
  48009. {
  48010. name: "Librarian",
  48011. height: math.unit(55, "feet")
  48012. },
  48013. {
  48014. name: "Sightseer",
  48015. height: math.unit(50, "miles")
  48016. },
  48017. {
  48018. name: "Giga",
  48019. height: math.unit(30000, "miles")
  48020. },
  48021. ]
  48022. ))
  48023. characterMakers.push(() => makeCharacter(
  48024. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48025. {
  48026. nude: {
  48027. height: math.unit(8, "feet"),
  48028. weight: math.unit(225, "lb"),
  48029. name: "Nude",
  48030. image: {
  48031. source: "./media/characters/marvy/nude.svg",
  48032. extra: 1900/1683,
  48033. bottom: 89/1989
  48034. }
  48035. },
  48036. dressed: {
  48037. height: math.unit(8, "feet"),
  48038. weight: math.unit(225, "lb"),
  48039. name: "Dressed",
  48040. image: {
  48041. source: "./media/characters/marvy/dressed.svg",
  48042. extra: 1900/1683,
  48043. bottom: 89/1989
  48044. }
  48045. },
  48046. head: {
  48047. height: math.unit(2.85, "feet"),
  48048. name: "Head",
  48049. image: {
  48050. source: "./media/characters/marvy/head.svg"
  48051. }
  48052. },
  48053. },
  48054. [
  48055. {
  48056. name: "Normal",
  48057. height: math.unit(8, "feet"),
  48058. default: true
  48059. },
  48060. ]
  48061. ))
  48062. characterMakers.push(() => makeCharacter(
  48063. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48064. {
  48065. front: {
  48066. height: math.unit(8, "feet"),
  48067. weight: math.unit(250, "lb"),
  48068. name: "Front",
  48069. image: {
  48070. source: "./media/characters/leah/front.svg",
  48071. extra: 1257/1149,
  48072. bottom: 109/1366
  48073. }
  48074. },
  48075. },
  48076. [
  48077. {
  48078. name: "Normal",
  48079. height: math.unit(8, "feet"),
  48080. default: true
  48081. },
  48082. {
  48083. name: "Minimacro",
  48084. height: math.unit(40, "feet")
  48085. },
  48086. {
  48087. name: "Macro",
  48088. height: math.unit(124, "feet")
  48089. },
  48090. {
  48091. name: "Megamacro",
  48092. height: math.unit(850, "feet")
  48093. },
  48094. ]
  48095. ))
  48096. characterMakers.push(() => makeCharacter(
  48097. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48098. {
  48099. side: {
  48100. height: math.unit(13 + 6/12, "feet"),
  48101. weight: math.unit(3200, "lb"),
  48102. name: "Side",
  48103. image: {
  48104. source: "./media/characters/alvir/side.svg",
  48105. extra: 896/589,
  48106. bottom: 26/922
  48107. }
  48108. },
  48109. },
  48110. [
  48111. {
  48112. name: "Normal",
  48113. height: math.unit(13 + 6/12, "feet"),
  48114. default: true
  48115. },
  48116. ]
  48117. ))
  48118. characterMakers.push(() => makeCharacter(
  48119. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48120. {
  48121. front: {
  48122. height: math.unit(5 + 4/12, "feet"),
  48123. weight: math.unit(236, "lb"),
  48124. name: "Front",
  48125. image: {
  48126. source: "./media/characters/zaina-khalil/front.svg",
  48127. extra: 1533/1485,
  48128. bottom: 94/1627
  48129. }
  48130. },
  48131. side: {
  48132. height: math.unit(5 + 4/12, "feet"),
  48133. weight: math.unit(236, "lb"),
  48134. name: "Side",
  48135. image: {
  48136. source: "./media/characters/zaina-khalil/side.svg",
  48137. extra: 1537/1498,
  48138. bottom: 66/1603
  48139. }
  48140. },
  48141. back: {
  48142. height: math.unit(5 + 4/12, "feet"),
  48143. weight: math.unit(236, "lb"),
  48144. name: "Back",
  48145. image: {
  48146. source: "./media/characters/zaina-khalil/back.svg",
  48147. extra: 1546/1494,
  48148. bottom: 89/1635
  48149. }
  48150. },
  48151. },
  48152. [
  48153. {
  48154. name: "Normal",
  48155. height: math.unit(5 + 4/12, "feet"),
  48156. default: true
  48157. },
  48158. ]
  48159. ))
  48160. characterMakers.push(() => makeCharacter(
  48161. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48162. {
  48163. side: {
  48164. height: math.unit(12, "feet"),
  48165. weight: math.unit(4000, "lb"),
  48166. name: "Side",
  48167. image: {
  48168. source: "./media/characters/terry/side.svg",
  48169. extra: 1518/1439,
  48170. bottom: 149/1667
  48171. }
  48172. },
  48173. },
  48174. [
  48175. {
  48176. name: "Normal",
  48177. height: math.unit(12, "feet"),
  48178. default: true
  48179. },
  48180. ]
  48181. ))
  48182. characterMakers.push(() => makeCharacter(
  48183. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48184. {
  48185. front: {
  48186. height: math.unit(12, "feet"),
  48187. weight: math.unit(1500, "lb"),
  48188. name: "Front",
  48189. image: {
  48190. source: "./media/characters/kahea/front.svg",
  48191. extra: 1722/1617,
  48192. bottom: 179/1901
  48193. }
  48194. },
  48195. },
  48196. [
  48197. {
  48198. name: "Normal",
  48199. height: math.unit(12, "feet"),
  48200. default: true
  48201. },
  48202. ]
  48203. ))
  48204. characterMakers.push(() => makeCharacter(
  48205. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48206. {
  48207. demonFront: {
  48208. height: math.unit(36, "feet"),
  48209. name: "Front",
  48210. image: {
  48211. source: "./media/characters/alex-xuria/demon-front.svg",
  48212. extra: 1705/1673,
  48213. bottom: 198/1903
  48214. },
  48215. form: "demon",
  48216. default: true
  48217. },
  48218. demonBack: {
  48219. height: math.unit(36, "feet"),
  48220. name: "Back",
  48221. image: {
  48222. source: "./media/characters/alex-xuria/demon-back.svg",
  48223. extra: 1725/1693,
  48224. bottom: 70/1795
  48225. },
  48226. form: "demon"
  48227. },
  48228. demonHead: {
  48229. height: math.unit(2.14, "meters"),
  48230. name: "Head",
  48231. image: {
  48232. source: "./media/characters/alex-xuria/demon-head.svg"
  48233. },
  48234. form: "demon"
  48235. },
  48236. demonHand: {
  48237. height: math.unit(1.61, "meters"),
  48238. name: "Hand",
  48239. image: {
  48240. source: "./media/characters/alex-xuria/demon-hand.svg"
  48241. },
  48242. form: "demon"
  48243. },
  48244. demonPaw: {
  48245. height: math.unit(1.35, "meters"),
  48246. name: "Paw",
  48247. image: {
  48248. source: "./media/characters/alex-xuria/demon-paw.svg"
  48249. },
  48250. form: "demon"
  48251. },
  48252. demonFoot: {
  48253. height: math.unit(2.2, "meters"),
  48254. name: "Foot",
  48255. image: {
  48256. source: "./media/characters/alex-xuria/demon-foot.svg"
  48257. },
  48258. form: "demon"
  48259. },
  48260. demonCock: {
  48261. height: math.unit(1.74, "meters"),
  48262. name: "Cock",
  48263. image: {
  48264. source: "./media/characters/alex-xuria/demon-cock.svg"
  48265. },
  48266. form: "demon"
  48267. },
  48268. demonTailClosed: {
  48269. height: math.unit(1.47, "meters"),
  48270. name: "Tail (Closed)",
  48271. image: {
  48272. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48273. },
  48274. form: "demon"
  48275. },
  48276. demonTailOpen: {
  48277. height: math.unit(2.85, "meters"),
  48278. name: "Tail (Open)",
  48279. image: {
  48280. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48281. },
  48282. form: "demon"
  48283. },
  48284. incubusFront: {
  48285. height: math.unit(12, "feet"),
  48286. name: "Front",
  48287. image: {
  48288. source: "./media/characters/alex-xuria/incubus-front.svg",
  48289. extra: 1754/1677,
  48290. bottom: 125/1879
  48291. },
  48292. form: "incubus",
  48293. default: true
  48294. },
  48295. incubusBack: {
  48296. height: math.unit(12, "feet"),
  48297. name: "Back",
  48298. image: {
  48299. source: "./media/characters/alex-xuria/incubus-back.svg",
  48300. extra: 1702/1647,
  48301. bottom: 30/1732
  48302. },
  48303. form: "incubus"
  48304. },
  48305. incubusHead: {
  48306. height: math.unit(3.45, "feet"),
  48307. name: "Head",
  48308. image: {
  48309. source: "./media/characters/alex-xuria/incubus-head.svg"
  48310. },
  48311. form: "incubus"
  48312. },
  48313. rabbitFront: {
  48314. height: math.unit(6, "feet"),
  48315. name: "Front",
  48316. image: {
  48317. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48318. extra: 1369/1349,
  48319. bottom: 45/1414
  48320. },
  48321. form: "rabbit",
  48322. default: true
  48323. },
  48324. rabbitSide: {
  48325. height: math.unit(6, "feet"),
  48326. name: "Side",
  48327. image: {
  48328. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48329. extra: 1370/1356,
  48330. bottom: 37/1407
  48331. },
  48332. form: "rabbit"
  48333. },
  48334. rabbitBack: {
  48335. height: math.unit(6, "feet"),
  48336. name: "Back",
  48337. image: {
  48338. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48339. extra: 1375/1358,
  48340. bottom: 43/1418
  48341. },
  48342. form: "rabbit"
  48343. },
  48344. },
  48345. [
  48346. {
  48347. name: "Normal",
  48348. height: math.unit(6, "feet"),
  48349. default: true,
  48350. form: "rabbit"
  48351. },
  48352. {
  48353. name: "Incubus",
  48354. height: math.unit(12, "feet"),
  48355. default: true,
  48356. form: "incubus"
  48357. },
  48358. {
  48359. name: "Demon",
  48360. height: math.unit(36, "feet"),
  48361. default: true,
  48362. form: "demon"
  48363. }
  48364. ],
  48365. {
  48366. "demon": {
  48367. name: "Demon",
  48368. default: true
  48369. },
  48370. "incubus": {
  48371. name: "Incubus",
  48372. },
  48373. "rabbit": {
  48374. name: "Rabbit"
  48375. }
  48376. }
  48377. ))
  48378. characterMakers.push(() => makeCharacter(
  48379. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48380. {
  48381. front: {
  48382. height: math.unit(7 + 5/12, "feet"),
  48383. weight: math.unit(510, "lb"),
  48384. name: "Front",
  48385. image: {
  48386. source: "./media/characters/syrup/front.svg",
  48387. extra: 932/916,
  48388. bottom: 26/958
  48389. }
  48390. },
  48391. },
  48392. [
  48393. {
  48394. name: "Normal",
  48395. height: math.unit(7 + 5/12, "feet"),
  48396. default: true
  48397. },
  48398. {
  48399. name: "Big",
  48400. height: math.unit(50, "feet")
  48401. },
  48402. {
  48403. name: "Macro",
  48404. height: math.unit(300, "feet")
  48405. },
  48406. {
  48407. name: "Megamacro",
  48408. height: math.unit(1, "mile")
  48409. },
  48410. ]
  48411. ))
  48412. characterMakers.push(() => makeCharacter(
  48413. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48414. {
  48415. front: {
  48416. height: math.unit(6 + 9/12, "feet"),
  48417. name: "Front",
  48418. image: {
  48419. source: "./media/characters/zeimne/front.svg",
  48420. extra: 1969/1806,
  48421. bottom: 53/2022
  48422. }
  48423. },
  48424. },
  48425. [
  48426. {
  48427. name: "Normal",
  48428. height: math.unit(6 + 9/12, "feet"),
  48429. default: true
  48430. },
  48431. {
  48432. name: "Giant",
  48433. height: math.unit(550, "feet")
  48434. },
  48435. {
  48436. name: "Mega",
  48437. height: math.unit(3, "miles")
  48438. },
  48439. {
  48440. name: "Giga",
  48441. height: math.unit(250, "miles")
  48442. },
  48443. {
  48444. name: "Tera",
  48445. height: math.unit(1, "AU")
  48446. },
  48447. ]
  48448. ))
  48449. characterMakers.push(() => makeCharacter(
  48450. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48451. {
  48452. front: {
  48453. height: math.unit(5 + 2/12, "feet"),
  48454. name: "Front",
  48455. image: {
  48456. source: "./media/characters/grar/front.svg",
  48457. extra: 1331/1119,
  48458. bottom: 60/1391
  48459. }
  48460. },
  48461. back: {
  48462. height: math.unit(5 + 2/12, "feet"),
  48463. name: "Back",
  48464. image: {
  48465. source: "./media/characters/grar/back.svg",
  48466. extra: 1385/1169,
  48467. bottom: 23/1408
  48468. }
  48469. },
  48470. },
  48471. [
  48472. {
  48473. name: "Normal",
  48474. height: math.unit(5 + 2/12, "feet"),
  48475. default: true
  48476. },
  48477. ]
  48478. ))
  48479. characterMakers.push(() => makeCharacter(
  48480. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48481. {
  48482. front: {
  48483. height: math.unit(13 + 7/12, "feet"),
  48484. weight: math.unit(2200, "lb"),
  48485. name: "Front",
  48486. image: {
  48487. source: "./media/characters/endraya/front.svg",
  48488. extra: 1289/1215,
  48489. bottom: 50/1339
  48490. }
  48491. },
  48492. nude: {
  48493. height: math.unit(13 + 7/12, "feet"),
  48494. weight: math.unit(2200, "lb"),
  48495. name: "Nude",
  48496. image: {
  48497. source: "./media/characters/endraya/nude.svg",
  48498. extra: 1247/1171,
  48499. bottom: 40/1287
  48500. }
  48501. },
  48502. head: {
  48503. height: math.unit(2.6, "feet"),
  48504. name: "Head",
  48505. image: {
  48506. source: "./media/characters/endraya/head.svg"
  48507. }
  48508. },
  48509. slit: {
  48510. height: math.unit(3.4, "feet"),
  48511. name: "Slit",
  48512. image: {
  48513. source: "./media/characters/endraya/slit.svg"
  48514. }
  48515. },
  48516. },
  48517. [
  48518. {
  48519. name: "Normal",
  48520. height: math.unit(13 + 7/12, "feet"),
  48521. default: true
  48522. },
  48523. {
  48524. name: "Macro",
  48525. height: math.unit(200, "feet")
  48526. },
  48527. ]
  48528. ))
  48529. characterMakers.push(() => makeCharacter(
  48530. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48531. {
  48532. front: {
  48533. height: math.unit(1.81, "meters"),
  48534. weight: math.unit(69, "kg"),
  48535. name: "Front",
  48536. image: {
  48537. source: "./media/characters/rodryana/front.svg",
  48538. extra: 2002/1921,
  48539. bottom: 53/2055
  48540. }
  48541. },
  48542. back: {
  48543. height: math.unit(1.81, "meters"),
  48544. weight: math.unit(69, "kg"),
  48545. name: "Back",
  48546. image: {
  48547. source: "./media/characters/rodryana/back.svg",
  48548. extra: 1993/1926,
  48549. bottom: 48/2041
  48550. }
  48551. },
  48552. maw: {
  48553. height: math.unit(0.19769417475, "meters"),
  48554. name: "Maw",
  48555. image: {
  48556. source: "./media/characters/rodryana/maw.svg"
  48557. }
  48558. },
  48559. slit: {
  48560. height: math.unit(0.31631067961, "meters"),
  48561. name: "Slit",
  48562. image: {
  48563. source: "./media/characters/rodryana/slit.svg"
  48564. }
  48565. },
  48566. },
  48567. [
  48568. {
  48569. name: "Normal",
  48570. height: math.unit(1.81, "meters")
  48571. },
  48572. {
  48573. name: "Mini Macro",
  48574. height: math.unit(181, "meters")
  48575. },
  48576. {
  48577. name: "Macro",
  48578. height: math.unit(452, "meters"),
  48579. default: true
  48580. },
  48581. {
  48582. name: "Mega Macro",
  48583. height: math.unit(1.375, "km")
  48584. },
  48585. {
  48586. name: "Giga Macro",
  48587. height: math.unit(13.575, "km")
  48588. },
  48589. ]
  48590. ))
  48591. characterMakers.push(() => makeCharacter(
  48592. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48593. {
  48594. front: {
  48595. height: math.unit(6, "feet"),
  48596. weight: math.unit(1000, "lb"),
  48597. name: "Front",
  48598. image: {
  48599. source: "./media/characters/asaya/front.svg",
  48600. extra: 1460/1200,
  48601. bottom: 71/1531
  48602. }
  48603. },
  48604. },
  48605. [
  48606. {
  48607. name: "Normal",
  48608. height: math.unit(8, "km"),
  48609. default: true
  48610. },
  48611. ]
  48612. ))
  48613. characterMakers.push(() => makeCharacter(
  48614. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48615. {
  48616. front: {
  48617. height: math.unit(3.5, "meters"),
  48618. name: "Front",
  48619. image: {
  48620. source: "./media/characters/sarzu-and-israz/front.svg",
  48621. extra: 1570/1558,
  48622. bottom: 150/1720
  48623. },
  48624. },
  48625. back: {
  48626. height: math.unit(3.5, "meters"),
  48627. name: "Back",
  48628. image: {
  48629. source: "./media/characters/sarzu-and-israz/back.svg",
  48630. extra: 1523/1509,
  48631. bottom: 132/1655
  48632. },
  48633. },
  48634. frontFemale: {
  48635. height: math.unit(3.5, "meters"),
  48636. name: "Front (Female)",
  48637. image: {
  48638. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48639. extra: 1570/1558,
  48640. bottom: 150/1720
  48641. },
  48642. },
  48643. frontHerm: {
  48644. height: math.unit(3.5, "meters"),
  48645. name: "Front (Herm)",
  48646. image: {
  48647. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48648. extra: 1570/1558,
  48649. bottom: 150/1720
  48650. },
  48651. },
  48652. },
  48653. [
  48654. {
  48655. name: "Normal",
  48656. height: math.unit(3.5, "meters"),
  48657. default: true,
  48658. },
  48659. {
  48660. name: "Macro",
  48661. height: math.unit(65.5, "meters"),
  48662. },
  48663. ],
  48664. ))
  48665. characterMakers.push(() => makeCharacter(
  48666. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48667. {
  48668. front: {
  48669. height: math.unit(6, "feet"),
  48670. weight: math.unit(250, "lb"),
  48671. name: "Front",
  48672. image: {
  48673. source: "./media/characters/zenimma/front.svg",
  48674. extra: 1346/1320,
  48675. bottom: 58/1404
  48676. }
  48677. },
  48678. back: {
  48679. height: math.unit(6, "feet"),
  48680. weight: math.unit(250, "lb"),
  48681. name: "Back",
  48682. image: {
  48683. source: "./media/characters/zenimma/back.svg",
  48684. extra: 1324/1308,
  48685. bottom: 44/1368
  48686. }
  48687. },
  48688. dick: {
  48689. height: math.unit(1.44, "feet"),
  48690. name: "Dick",
  48691. image: {
  48692. source: "./media/characters/zenimma/dick.svg"
  48693. }
  48694. },
  48695. },
  48696. [
  48697. {
  48698. name: "Canon Height",
  48699. height: math.unit(66, "miles"),
  48700. default: true
  48701. },
  48702. ]
  48703. ))
  48704. characterMakers.push(() => makeCharacter(
  48705. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48706. {
  48707. nude: {
  48708. height: math.unit(6, "feet"),
  48709. weight: math.unit(150, "lb"),
  48710. name: "Nude",
  48711. image: {
  48712. source: "./media/characters/shavon/nude.svg",
  48713. extra: 1242/1096,
  48714. bottom: 98/1340
  48715. }
  48716. },
  48717. dressed: {
  48718. height: math.unit(6, "feet"),
  48719. weight: math.unit(150, "lb"),
  48720. name: "Dressed",
  48721. image: {
  48722. source: "./media/characters/shavon/dressed.svg",
  48723. extra: 1242/1096,
  48724. bottom: 98/1340
  48725. }
  48726. },
  48727. },
  48728. [
  48729. {
  48730. name: "Macro",
  48731. height: math.unit(255, "feet"),
  48732. default: true
  48733. },
  48734. ]
  48735. ))
  48736. characterMakers.push(() => makeCharacter(
  48737. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48738. {
  48739. front: {
  48740. height: math.unit(6, "feet"),
  48741. name: "Front",
  48742. image: {
  48743. source: "./media/characters/steph/front.svg",
  48744. extra: 1430/1330,
  48745. bottom: 54/1484
  48746. }
  48747. },
  48748. },
  48749. [
  48750. {
  48751. name: "Normal",
  48752. height: math.unit(6, "feet"),
  48753. default: true
  48754. },
  48755. ]
  48756. ))
  48757. characterMakers.push(() => makeCharacter(
  48758. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48759. {
  48760. front: {
  48761. height: math.unit(9, "feet"),
  48762. weight: math.unit(400, "lb"),
  48763. name: "Front",
  48764. image: {
  48765. source: "./media/characters/kil'aman/front.svg",
  48766. extra: 1210/1159,
  48767. bottom: 109/1319
  48768. }
  48769. },
  48770. head: {
  48771. height: math.unit(2.14, "feet"),
  48772. name: "Head",
  48773. image: {
  48774. source: "./media/characters/kil'aman/head.svg"
  48775. }
  48776. },
  48777. maw: {
  48778. height: math.unit(1.21, "feet"),
  48779. name: "Maw",
  48780. image: {
  48781. source: "./media/characters/kil'aman/maw.svg"
  48782. }
  48783. },
  48784. foot: {
  48785. height: math.unit(1.7, "feet"),
  48786. name: "Foot",
  48787. image: {
  48788. source: "./media/characters/kil'aman/foot.svg"
  48789. }
  48790. },
  48791. dick: {
  48792. height: math.unit(2.1, "feet"),
  48793. name: "Dick",
  48794. image: {
  48795. source: "./media/characters/kil'aman/dick.svg"
  48796. }
  48797. },
  48798. },
  48799. [
  48800. {
  48801. name: "Normal",
  48802. height: math.unit(9, "feet")
  48803. },
  48804. {
  48805. name: "Canon Height",
  48806. height: math.unit(10, "miles"),
  48807. default: true
  48808. },
  48809. {
  48810. name: "Maximum",
  48811. height: math.unit(6e9, "miles")
  48812. },
  48813. ]
  48814. ))
  48815. characterMakers.push(() => makeCharacter(
  48816. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48817. {
  48818. front: {
  48819. height: math.unit(90, "feet"),
  48820. weight: math.unit(675000, "lb"),
  48821. name: "Front",
  48822. image: {
  48823. source: "./media/characters/qadan/front.svg",
  48824. extra: 1012/1004,
  48825. bottom: 78/1090
  48826. }
  48827. },
  48828. back: {
  48829. height: math.unit(90, "feet"),
  48830. weight: math.unit(675000, "lb"),
  48831. name: "Back",
  48832. image: {
  48833. source: "./media/characters/qadan/back.svg",
  48834. extra: 1042/1031,
  48835. bottom: 55/1097
  48836. }
  48837. },
  48838. armored: {
  48839. height: math.unit(90, "feet"),
  48840. weight: math.unit(675000, "lb"),
  48841. name: "Armored",
  48842. image: {
  48843. source: "./media/characters/qadan/armored.svg",
  48844. extra: 1047/1037,
  48845. bottom: 48/1095
  48846. }
  48847. },
  48848. },
  48849. [
  48850. {
  48851. name: "Normal",
  48852. height: math.unit(90, "feet"),
  48853. default: true
  48854. },
  48855. ]
  48856. ))
  48857. characterMakers.push(() => makeCharacter(
  48858. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48859. {
  48860. front: {
  48861. height: math.unit(6, "feet"),
  48862. weight: math.unit(225, "lb"),
  48863. name: "Front",
  48864. image: {
  48865. source: "./media/characters/brooke/front.svg",
  48866. extra: 1050/1010,
  48867. bottom: 66/1116
  48868. }
  48869. },
  48870. back: {
  48871. height: math.unit(6, "feet"),
  48872. weight: math.unit(225, "lb"),
  48873. name: "Back",
  48874. image: {
  48875. source: "./media/characters/brooke/back.svg",
  48876. extra: 1053/1013,
  48877. bottom: 41/1094
  48878. }
  48879. },
  48880. dressed: {
  48881. height: math.unit(6, "feet"),
  48882. weight: math.unit(225, "lb"),
  48883. name: "Dressed",
  48884. image: {
  48885. source: "./media/characters/brooke/dressed.svg",
  48886. extra: 1050/1010,
  48887. bottom: 66/1116
  48888. }
  48889. },
  48890. },
  48891. [
  48892. {
  48893. name: "Canon Height",
  48894. height: math.unit(500, "miles"),
  48895. default: true
  48896. },
  48897. ]
  48898. ))
  48899. characterMakers.push(() => makeCharacter(
  48900. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48901. {
  48902. front: {
  48903. height: math.unit(6 + 2/12, "feet"),
  48904. weight: math.unit(210, "lb"),
  48905. name: "Front",
  48906. image: {
  48907. source: "./media/characters/wubs/front.svg",
  48908. extra: 1345/1325,
  48909. bottom: 70/1415
  48910. }
  48911. },
  48912. back: {
  48913. height: math.unit(6 + 2/12, "feet"),
  48914. weight: math.unit(210, "lb"),
  48915. name: "Back",
  48916. image: {
  48917. source: "./media/characters/wubs/back.svg",
  48918. extra: 1296/1275,
  48919. bottom: 58/1354
  48920. }
  48921. },
  48922. },
  48923. [
  48924. {
  48925. name: "Normal",
  48926. height: math.unit(6 + 2/12, "feet"),
  48927. default: true
  48928. },
  48929. {
  48930. name: "Macro",
  48931. height: math.unit(1000, "feet")
  48932. },
  48933. {
  48934. name: "Megamacro",
  48935. height: math.unit(1, "mile")
  48936. },
  48937. ]
  48938. ))
  48939. characterMakers.push(() => makeCharacter(
  48940. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48941. {
  48942. front: {
  48943. height: math.unit(4, "feet"),
  48944. weight: math.unit(120, "lb"),
  48945. name: "Front",
  48946. image: {
  48947. source: "./media/characters/blue/front.svg",
  48948. extra: 1636/1525,
  48949. bottom: 43/1679
  48950. }
  48951. },
  48952. back: {
  48953. height: math.unit(4, "feet"),
  48954. weight: math.unit(120, "lb"),
  48955. name: "Back",
  48956. image: {
  48957. source: "./media/characters/blue/back.svg",
  48958. extra: 1660/1560,
  48959. bottom: 57/1717
  48960. }
  48961. },
  48962. paws: {
  48963. height: math.unit(0.826, "feet"),
  48964. name: "Paws",
  48965. image: {
  48966. source: "./media/characters/blue/paws.svg"
  48967. }
  48968. },
  48969. },
  48970. [
  48971. {
  48972. name: "Micro",
  48973. height: math.unit(3, "inches")
  48974. },
  48975. {
  48976. name: "Normal",
  48977. height: math.unit(4, "feet"),
  48978. default: true
  48979. },
  48980. {
  48981. name: "Femenine Form",
  48982. height: math.unit(14, "feet")
  48983. },
  48984. {
  48985. name: "Werebat Form",
  48986. height: math.unit(18, "feet")
  48987. },
  48988. ]
  48989. ))
  48990. characterMakers.push(() => makeCharacter(
  48991. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48992. {
  48993. female: {
  48994. height: math.unit(7 + 4/12, "feet"),
  48995. weight: math.unit(243, "lb"),
  48996. name: "Female",
  48997. image: {
  48998. source: "./media/characters/kaya/female.svg",
  48999. extra: 975/898,
  49000. bottom: 34/1009
  49001. }
  49002. },
  49003. herm: {
  49004. height: math.unit(7 + 4/12, "feet"),
  49005. weight: math.unit(243, "lb"),
  49006. name: "Herm",
  49007. image: {
  49008. source: "./media/characters/kaya/herm.svg",
  49009. extra: 975/898,
  49010. bottom: 34/1009
  49011. }
  49012. },
  49013. },
  49014. [
  49015. {
  49016. name: "Normal",
  49017. height: math.unit(7 + 4/12, "feet"),
  49018. default: true
  49019. },
  49020. ]
  49021. ))
  49022. characterMakers.push(() => makeCharacter(
  49023. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49024. {
  49025. female: {
  49026. height: math.unit(9 + 4/12, "feet"),
  49027. weight: math.unit(398, "lb"),
  49028. name: "Female",
  49029. image: {
  49030. source: "./media/characters/kassandra/female.svg",
  49031. extra: 908/839,
  49032. bottom: 61/969
  49033. }
  49034. },
  49035. intersex: {
  49036. height: math.unit(9 + 4/12, "feet"),
  49037. weight: math.unit(398, "lb"),
  49038. name: "Intersex",
  49039. image: {
  49040. source: "./media/characters/kassandra/intersex.svg",
  49041. extra: 908/839,
  49042. bottom: 61/969
  49043. }
  49044. },
  49045. },
  49046. [
  49047. {
  49048. name: "Normal",
  49049. height: math.unit(9 + 4/12, "feet"),
  49050. default: true
  49051. },
  49052. ]
  49053. ))
  49054. characterMakers.push(() => makeCharacter(
  49055. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49056. {
  49057. front: {
  49058. height: math.unit(3, "meters"),
  49059. name: "Front",
  49060. image: {
  49061. source: "./media/characters/amy/front.svg",
  49062. extra: 1380/1343,
  49063. bottom: 70/1450
  49064. }
  49065. },
  49066. back: {
  49067. height: math.unit(3, "meters"),
  49068. name: "Back",
  49069. image: {
  49070. source: "./media/characters/amy/back.svg",
  49071. extra: 1380/1347,
  49072. bottom: 66/1446
  49073. }
  49074. },
  49075. },
  49076. [
  49077. {
  49078. name: "Normal",
  49079. height: math.unit(3, "meters"),
  49080. default: true
  49081. },
  49082. ]
  49083. ))
  49084. characterMakers.push(() => makeCharacter(
  49085. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49086. {
  49087. side: {
  49088. height: math.unit(47, "cm"),
  49089. weight: math.unit(10.8, "kg"),
  49090. name: "Side",
  49091. image: {
  49092. source: "./media/characters/alphaschakal/side.svg",
  49093. extra: 1058/568,
  49094. bottom: 62/1120
  49095. }
  49096. },
  49097. back: {
  49098. height: math.unit(78, "cm"),
  49099. weight: math.unit(10.8, "kg"),
  49100. name: "Back",
  49101. image: {
  49102. source: "./media/characters/alphaschakal/back.svg",
  49103. extra: 1102/942,
  49104. bottom: 185/1287
  49105. }
  49106. },
  49107. head: {
  49108. height: math.unit(28, "cm"),
  49109. name: "Head",
  49110. image: {
  49111. source: "./media/characters/alphaschakal/head.svg",
  49112. extra: 696/508,
  49113. bottom: 0/696
  49114. }
  49115. },
  49116. paw: {
  49117. height: math.unit(16, "cm"),
  49118. name: "Paw",
  49119. image: {
  49120. source: "./media/characters/alphaschakal/paw.svg"
  49121. }
  49122. },
  49123. },
  49124. [
  49125. {
  49126. name: "Normal",
  49127. height: math.unit(47, "cm"),
  49128. default: true
  49129. },
  49130. {
  49131. name: "Macro",
  49132. height: math.unit(340, "cm")
  49133. },
  49134. ]
  49135. ))
  49136. characterMakers.push(() => makeCharacter(
  49137. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49138. {
  49139. front: {
  49140. height: math.unit(36, "earths"),
  49141. name: "Front",
  49142. image: {
  49143. source: "./media/characters/ecobyss/front.svg",
  49144. extra: 1282/1215,
  49145. bottom: 11/1293
  49146. }
  49147. },
  49148. back: {
  49149. height: math.unit(36, "earths"),
  49150. name: "Back",
  49151. image: {
  49152. source: "./media/characters/ecobyss/back.svg",
  49153. extra: 1291/1222,
  49154. bottom: 8/1299
  49155. }
  49156. },
  49157. },
  49158. [
  49159. {
  49160. name: "Normal",
  49161. height: math.unit(36, "earths"),
  49162. default: true
  49163. },
  49164. ]
  49165. ))
  49166. characterMakers.push(() => makeCharacter(
  49167. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49168. {
  49169. front: {
  49170. height: math.unit(12, "feet"),
  49171. name: "Front",
  49172. image: {
  49173. source: "./media/characters/vasuk/front.svg",
  49174. extra: 1326/1207,
  49175. bottom: 64/1390
  49176. }
  49177. },
  49178. },
  49179. [
  49180. {
  49181. name: "Normal",
  49182. height: math.unit(12, "feet"),
  49183. default: true
  49184. },
  49185. ]
  49186. ))
  49187. characterMakers.push(() => makeCharacter(
  49188. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49189. {
  49190. side: {
  49191. height: math.unit(100, "feet"),
  49192. name: "Side",
  49193. image: {
  49194. source: "./media/characters/linneaus/side.svg",
  49195. extra: 987/807,
  49196. bottom: 47/1034
  49197. }
  49198. },
  49199. },
  49200. [
  49201. {
  49202. name: "Macro",
  49203. height: math.unit(100, "feet"),
  49204. default: true
  49205. },
  49206. ]
  49207. ))
  49208. characterMakers.push(() => makeCharacter(
  49209. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49210. {
  49211. front: {
  49212. height: math.unit(8, "feet"),
  49213. weight: math.unit(1200, "lb"),
  49214. name: "Front",
  49215. image: {
  49216. source: "./media/characters/nyterious-daligdig/front.svg",
  49217. extra: 1284/1094,
  49218. bottom: 84/1368
  49219. }
  49220. },
  49221. back: {
  49222. height: math.unit(8, "feet"),
  49223. weight: math.unit(1200, "lb"),
  49224. name: "Back",
  49225. image: {
  49226. source: "./media/characters/nyterious-daligdig/back.svg",
  49227. extra: 1301/1121,
  49228. bottom: 129/1430
  49229. }
  49230. },
  49231. mouth: {
  49232. height: math.unit(1.464, "feet"),
  49233. name: "Mouth",
  49234. image: {
  49235. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49236. }
  49237. },
  49238. },
  49239. [
  49240. {
  49241. name: "Small",
  49242. height: math.unit(8, "feet"),
  49243. default: true
  49244. },
  49245. {
  49246. name: "Normal",
  49247. height: math.unit(15, "feet")
  49248. },
  49249. {
  49250. name: "Macro",
  49251. height: math.unit(90, "feet")
  49252. },
  49253. ]
  49254. ))
  49255. characterMakers.push(() => makeCharacter(
  49256. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49257. {
  49258. front: {
  49259. height: math.unit(7 + 4/12, "feet"),
  49260. weight: math.unit(252, "lb"),
  49261. name: "Front",
  49262. image: {
  49263. source: "./media/characters/bandel/front.svg",
  49264. extra: 1946/1775,
  49265. bottom: 26/1972
  49266. }
  49267. },
  49268. back: {
  49269. height: math.unit(7 + 4/12, "feet"),
  49270. weight: math.unit(252, "lb"),
  49271. name: "Back",
  49272. image: {
  49273. source: "./media/characters/bandel/back.svg",
  49274. extra: 1940/1770,
  49275. bottom: 25/1965
  49276. }
  49277. },
  49278. maw: {
  49279. height: math.unit(2.15, "feet"),
  49280. name: "Maw",
  49281. image: {
  49282. source: "./media/characters/bandel/maw.svg"
  49283. }
  49284. },
  49285. stomach: {
  49286. height: math.unit(1.95, "feet"),
  49287. name: "Stomach",
  49288. image: {
  49289. source: "./media/characters/bandel/stomach.svg"
  49290. }
  49291. },
  49292. },
  49293. [
  49294. {
  49295. name: "Normal",
  49296. height: math.unit(7 + 4/12, "feet"),
  49297. default: true
  49298. },
  49299. ]
  49300. ))
  49301. characterMakers.push(() => makeCharacter(
  49302. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49303. {
  49304. front: {
  49305. height: math.unit(10 + 5/12, "feet"),
  49306. weight: math.unit(773.5, "kg"),
  49307. name: "Front",
  49308. image: {
  49309. source: "./media/characters/zed/front.svg",
  49310. extra: 987/941,
  49311. bottom: 52/1039
  49312. }
  49313. },
  49314. },
  49315. [
  49316. {
  49317. name: "Short",
  49318. height: math.unit(5 + 4/12, "feet")
  49319. },
  49320. {
  49321. name: "Average",
  49322. height: math.unit(10 + 5/12, "feet"),
  49323. default: true
  49324. },
  49325. {
  49326. name: "Mini-Macro",
  49327. height: math.unit(24 + 9/12, "feet")
  49328. },
  49329. {
  49330. name: "Macro",
  49331. height: math.unit(249, "feet")
  49332. },
  49333. {
  49334. name: "Mega-Macro",
  49335. height: math.unit(12490, "feet")
  49336. },
  49337. {
  49338. name: "Giga-Macro",
  49339. height: math.unit(24.9, "miles")
  49340. },
  49341. {
  49342. name: "Tera-Macro",
  49343. height: math.unit(24900, "miles")
  49344. },
  49345. {
  49346. name: "Cosmic Scale",
  49347. height: math.unit(38.9, "lightyears")
  49348. },
  49349. {
  49350. name: "Universal Scale",
  49351. height: math.unit(138e12, "lightyears")
  49352. },
  49353. ]
  49354. ))
  49355. characterMakers.push(() => makeCharacter(
  49356. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49357. {
  49358. front: {
  49359. height: math.unit(1561, "inches"),
  49360. name: "Front",
  49361. image: {
  49362. source: "./media/characters/ivan/front.svg",
  49363. extra: 1126/1071,
  49364. bottom: 26/1152
  49365. }
  49366. },
  49367. back: {
  49368. height: math.unit(1561, "inches"),
  49369. name: "Back",
  49370. image: {
  49371. source: "./media/characters/ivan/back.svg",
  49372. extra: 1134/1079,
  49373. bottom: 30/1164
  49374. }
  49375. },
  49376. },
  49377. [
  49378. {
  49379. name: "Normal",
  49380. height: math.unit(1561, "inches"),
  49381. default: true
  49382. },
  49383. ]
  49384. ))
  49385. characterMakers.push(() => makeCharacter(
  49386. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49387. {
  49388. front: {
  49389. height: math.unit(5 + 7/12, "feet"),
  49390. weight: math.unit(150, "lb"),
  49391. name: "Front",
  49392. image: {
  49393. source: "./media/characters/robin-arctic-hare/front.svg",
  49394. extra: 1148/974,
  49395. bottom: 20/1168
  49396. }
  49397. },
  49398. },
  49399. [
  49400. {
  49401. name: "Normal",
  49402. height: math.unit(5 + 7/12, "feet"),
  49403. default: true
  49404. },
  49405. ]
  49406. ))
  49407. characterMakers.push(() => makeCharacter(
  49408. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49409. {
  49410. side: {
  49411. height: math.unit(5, "feet"),
  49412. name: "Side",
  49413. image: {
  49414. source: "./media/characters/birch/side.svg",
  49415. extra: 985/796,
  49416. bottom: 111/1096
  49417. }
  49418. },
  49419. },
  49420. [
  49421. {
  49422. name: "Normal",
  49423. height: math.unit(5, "feet"),
  49424. default: true
  49425. },
  49426. ]
  49427. ))
  49428. characterMakers.push(() => makeCharacter(
  49429. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49430. {
  49431. front: {
  49432. height: math.unit(4, "feet"),
  49433. name: "Front",
  49434. image: {
  49435. source: "./media/characters/rasp/front.svg",
  49436. extra: 561/478,
  49437. bottom: 74/635
  49438. }
  49439. },
  49440. },
  49441. [
  49442. {
  49443. name: "Normal",
  49444. height: math.unit(4, "feet"),
  49445. default: true
  49446. },
  49447. ]
  49448. ))
  49449. characterMakers.push(() => makeCharacter(
  49450. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49451. {
  49452. front: {
  49453. height: math.unit(4 + 6/12, "feet"),
  49454. name: "Front",
  49455. image: {
  49456. source: "./media/characters/agatha/front.svg",
  49457. extra: 947/933,
  49458. bottom: 42/989
  49459. }
  49460. },
  49461. back: {
  49462. height: math.unit(4 + 6/12, "feet"),
  49463. name: "Back",
  49464. image: {
  49465. source: "./media/characters/agatha/back.svg",
  49466. extra: 935/922,
  49467. bottom: 48/983
  49468. }
  49469. },
  49470. },
  49471. [
  49472. {
  49473. name: "Normal",
  49474. height: math.unit(4 + 6 /12, "feet"),
  49475. default: true
  49476. },
  49477. {
  49478. name: "Max Size",
  49479. height: math.unit(500, "feet")
  49480. },
  49481. ]
  49482. ))
  49483. characterMakers.push(() => makeCharacter(
  49484. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49485. {
  49486. side: {
  49487. height: math.unit(30, "feet"),
  49488. name: "Side",
  49489. image: {
  49490. source: "./media/characters/roggy/side.svg",
  49491. extra: 909/643,
  49492. bottom: 63/972
  49493. }
  49494. },
  49495. lounging: {
  49496. height: math.unit(20, "feet"),
  49497. name: "Lounging",
  49498. image: {
  49499. source: "./media/characters/roggy/lounging.svg",
  49500. extra: 643/479,
  49501. bottom: 145/788
  49502. }
  49503. },
  49504. handpaw: {
  49505. height: math.unit(13.1, "feet"),
  49506. name: "Handpaw",
  49507. image: {
  49508. source: "./media/characters/roggy/handpaw.svg"
  49509. }
  49510. },
  49511. footpaw: {
  49512. height: math.unit(15.8, "feet"),
  49513. name: "Footpaw",
  49514. image: {
  49515. source: "./media/characters/roggy/footpaw.svg"
  49516. }
  49517. },
  49518. },
  49519. [
  49520. {
  49521. name: "Menacing",
  49522. height: math.unit(30, "feet"),
  49523. default: true
  49524. },
  49525. ]
  49526. ))
  49527. characterMakers.push(() => makeCharacter(
  49528. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49529. {
  49530. front: {
  49531. height: math.unit(5 + 7/12, "feet"),
  49532. weight: math.unit(135, "lb"),
  49533. name: "Front",
  49534. image: {
  49535. source: "./media/characters/naomi/front.svg",
  49536. extra: 1209/1154,
  49537. bottom: 129/1338
  49538. }
  49539. },
  49540. back: {
  49541. height: math.unit(5 + 7/12, "feet"),
  49542. weight: math.unit(135, "lb"),
  49543. name: "Back",
  49544. image: {
  49545. source: "./media/characters/naomi/back.svg",
  49546. extra: 1252/1190,
  49547. bottom: 23/1275
  49548. }
  49549. },
  49550. },
  49551. [
  49552. {
  49553. name: "Normal",
  49554. height: math.unit(5 + 7 /12, "feet"),
  49555. default: true
  49556. },
  49557. ]
  49558. ))
  49559. characterMakers.push(() => makeCharacter(
  49560. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49561. {
  49562. side: {
  49563. height: math.unit(35, "meters"),
  49564. name: "Side",
  49565. image: {
  49566. source: "./media/characters/kimpi/side.svg",
  49567. extra: 419/382,
  49568. bottom: 63/482
  49569. }
  49570. },
  49571. hand: {
  49572. height: math.unit(8.96, "meters"),
  49573. name: "Hand",
  49574. image: {
  49575. source: "./media/characters/kimpi/hand.svg"
  49576. }
  49577. },
  49578. },
  49579. [
  49580. {
  49581. name: "Normal",
  49582. height: math.unit(35, "meters"),
  49583. default: true
  49584. },
  49585. ]
  49586. ))
  49587. characterMakers.push(() => makeCharacter(
  49588. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49589. {
  49590. front: {
  49591. height: math.unit(4 + 4/12, "feet"),
  49592. name: "Front",
  49593. image: {
  49594. source: "./media/characters/pepper-purrloin/front.svg",
  49595. extra: 1141/1024,
  49596. bottom: 21/1162
  49597. }
  49598. },
  49599. },
  49600. [
  49601. {
  49602. name: "Normal",
  49603. height: math.unit(4 + 4/12, "feet"),
  49604. default: true
  49605. },
  49606. ]
  49607. ))
  49608. characterMakers.push(() => makeCharacter(
  49609. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49610. {
  49611. front: {
  49612. height: math.unit(6 + 2/12, "feet"),
  49613. name: "Front",
  49614. image: {
  49615. source: "./media/characters/raphael/front.svg",
  49616. extra: 1101/962,
  49617. bottom: 59/1160
  49618. }
  49619. },
  49620. },
  49621. [
  49622. {
  49623. name: "Normal",
  49624. height: math.unit(6 + 2/12, "feet"),
  49625. default: true
  49626. },
  49627. ]
  49628. ))
  49629. characterMakers.push(() => makeCharacter(
  49630. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49631. {
  49632. front: {
  49633. height: math.unit(6, "feet"),
  49634. weight: math.unit(150, "lb"),
  49635. name: "Front",
  49636. image: {
  49637. source: "./media/characters/victor-williams/front.svg",
  49638. extra: 1894/1825,
  49639. bottom: 67/1961
  49640. }
  49641. },
  49642. },
  49643. [
  49644. {
  49645. name: "Normal",
  49646. height: math.unit(6, "feet"),
  49647. default: true
  49648. },
  49649. ]
  49650. ))
  49651. characterMakers.push(() => makeCharacter(
  49652. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49653. {
  49654. front: {
  49655. height: math.unit(5 + 8/12, "feet"),
  49656. weight: math.unit(150, "lb"),
  49657. name: "Front",
  49658. image: {
  49659. source: "./media/characters/rachel/front.svg",
  49660. extra: 1902/1787,
  49661. bottom: 46/1948
  49662. }
  49663. },
  49664. },
  49665. [
  49666. {
  49667. name: "Base Height",
  49668. height: math.unit(5 + 8/12, "feet"),
  49669. default: true
  49670. },
  49671. {
  49672. name: "Macro",
  49673. height: math.unit(200, "feet")
  49674. },
  49675. {
  49676. name: "Mega Macro",
  49677. height: math.unit(1, "mile")
  49678. },
  49679. {
  49680. name: "Giga Macro",
  49681. height: math.unit(1500, "miles")
  49682. },
  49683. {
  49684. name: "Tera Macro",
  49685. height: math.unit(8000, "miles")
  49686. },
  49687. {
  49688. name: "Tera Macro+",
  49689. height: math.unit(2e5, "miles")
  49690. },
  49691. ]
  49692. ))
  49693. characterMakers.push(() => makeCharacter(
  49694. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49695. {
  49696. front: {
  49697. height: math.unit(6.5, "feet"),
  49698. name: "Front",
  49699. image: {
  49700. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49701. extra: 860/819,
  49702. bottom: 307/1167
  49703. }
  49704. },
  49705. back: {
  49706. height: math.unit(6.5, "feet"),
  49707. name: "Back",
  49708. image: {
  49709. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49710. extra: 880/837,
  49711. bottom: 395/1275
  49712. }
  49713. },
  49714. sleeping: {
  49715. height: math.unit(2.79, "feet"),
  49716. name: "Sleeping",
  49717. image: {
  49718. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49719. extra: 465/383,
  49720. bottom: 263/728
  49721. }
  49722. },
  49723. maw: {
  49724. height: math.unit(2.52, "feet"),
  49725. name: "Maw",
  49726. image: {
  49727. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49728. }
  49729. },
  49730. },
  49731. [
  49732. {
  49733. name: "Normal",
  49734. height: math.unit(6.5, "feet"),
  49735. default: true
  49736. },
  49737. ]
  49738. ))
  49739. characterMakers.push(() => makeCharacter(
  49740. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49741. {
  49742. front: {
  49743. height: math.unit(5, "feet"),
  49744. name: "Front",
  49745. image: {
  49746. source: "./media/characters/nova-nerium/front.svg",
  49747. extra: 1548/1392,
  49748. bottom: 374/1922
  49749. }
  49750. },
  49751. back: {
  49752. height: math.unit(5, "feet"),
  49753. name: "Back",
  49754. image: {
  49755. source: "./media/characters/nova-nerium/back.svg",
  49756. extra: 1658/1468,
  49757. bottom: 257/1915
  49758. }
  49759. },
  49760. },
  49761. [
  49762. {
  49763. name: "Normal",
  49764. height: math.unit(5, "feet"),
  49765. default: true
  49766. },
  49767. ]
  49768. ))
  49769. characterMakers.push(() => makeCharacter(
  49770. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49771. {
  49772. front: {
  49773. height: math.unit(5 + 4/12, "feet"),
  49774. name: "Front",
  49775. image: {
  49776. source: "./media/characters/ashe-pyriph/front.svg",
  49777. extra: 1935/1747,
  49778. bottom: 60/1995
  49779. }
  49780. },
  49781. },
  49782. [
  49783. {
  49784. name: "Normal",
  49785. height: math.unit(5 + 4/12, "feet"),
  49786. default: true
  49787. },
  49788. ]
  49789. ))
  49790. characterMakers.push(() => makeCharacter(
  49791. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49792. {
  49793. front: {
  49794. height: math.unit(8.7, "feet"),
  49795. name: "Front",
  49796. image: {
  49797. source: "./media/characters/flicker-wisp/front.svg",
  49798. extra: 1835/1613,
  49799. bottom: 449/2284
  49800. }
  49801. },
  49802. side: {
  49803. height: math.unit(8.7, "feet"),
  49804. name: "Side",
  49805. image: {
  49806. source: "./media/characters/flicker-wisp/side.svg",
  49807. extra: 1841/1642,
  49808. bottom: 336/2177
  49809. },
  49810. default: true
  49811. },
  49812. maw: {
  49813. height: math.unit(3.35, "feet"),
  49814. name: "Maw",
  49815. image: {
  49816. source: "./media/characters/flicker-wisp/maw.svg",
  49817. extra: 2338/1506,
  49818. bottom: 0/2338
  49819. }
  49820. },
  49821. ovipositor: {
  49822. height: math.unit(4.95, "feet"),
  49823. name: "Ovipositor",
  49824. image: {
  49825. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49826. }
  49827. },
  49828. egg: {
  49829. height: math.unit(0.385, "feet"),
  49830. weight: math.unit(2, "lb"),
  49831. name: "Egg",
  49832. image: {
  49833. source: "./media/characters/flicker-wisp/egg.svg"
  49834. }
  49835. },
  49836. },
  49837. [
  49838. {
  49839. name: "Normal",
  49840. height: math.unit(8.7, "feet"),
  49841. default: true
  49842. },
  49843. ]
  49844. ))
  49845. characterMakers.push(() => makeCharacter(
  49846. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49847. {
  49848. side: {
  49849. height: math.unit(11, "feet"),
  49850. name: "Side",
  49851. image: {
  49852. source: "./media/characters/faefnul/side.svg",
  49853. extra: 1100/1007,
  49854. bottom: 0/1100
  49855. }
  49856. },
  49857. },
  49858. [
  49859. {
  49860. name: "Normal",
  49861. height: math.unit(11, "feet"),
  49862. default: true
  49863. },
  49864. ]
  49865. ))
  49866. characterMakers.push(() => makeCharacter(
  49867. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49868. {
  49869. front: {
  49870. height: math.unit(6 + 2/12, "feet"),
  49871. name: "Front",
  49872. image: {
  49873. source: "./media/characters/shady/front.svg",
  49874. extra: 502/461,
  49875. bottom: 9/511
  49876. }
  49877. },
  49878. kneeling: {
  49879. height: math.unit(4.6, "feet"),
  49880. name: "Kneeling",
  49881. image: {
  49882. source: "./media/characters/shady/kneeling.svg",
  49883. extra: 1328/1219,
  49884. bottom: 117/1445
  49885. }
  49886. },
  49887. maw: {
  49888. height: math.unit(2, "feet"),
  49889. name: "Maw",
  49890. image: {
  49891. source: "./media/characters/shady/maw.svg"
  49892. }
  49893. },
  49894. },
  49895. [
  49896. {
  49897. name: "Nano",
  49898. height: math.unit(1, "mm")
  49899. },
  49900. {
  49901. name: "Micro",
  49902. height: math.unit(12, "mm")
  49903. },
  49904. {
  49905. name: "Tiny",
  49906. height: math.unit(3, "inches")
  49907. },
  49908. {
  49909. name: "Normal",
  49910. height: math.unit(6 + 2/12, "feet"),
  49911. default: true
  49912. },
  49913. {
  49914. name: "Big",
  49915. height: math.unit(15, "feet")
  49916. },
  49917. {
  49918. name: "Macro",
  49919. height: math.unit(150, "feet")
  49920. },
  49921. {
  49922. name: "Titanic",
  49923. height: math.unit(500, "feet")
  49924. },
  49925. ]
  49926. ))
  49927. characterMakers.push(() => makeCharacter(
  49928. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49929. {
  49930. front: {
  49931. height: math.unit(12, "feet"),
  49932. name: "Front",
  49933. image: {
  49934. source: "./media/characters/fenrir/front.svg",
  49935. extra: 968/875,
  49936. bottom: 22/990
  49937. }
  49938. },
  49939. },
  49940. [
  49941. {
  49942. name: "Big",
  49943. height: math.unit(12, "feet"),
  49944. default: true
  49945. },
  49946. ]
  49947. ))
  49948. characterMakers.push(() => makeCharacter(
  49949. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49950. {
  49951. front: {
  49952. height: math.unit(5 + 4/12, "feet"),
  49953. name: "Front",
  49954. image: {
  49955. source: "./media/characters/makar/front.svg",
  49956. extra: 1181/1112,
  49957. bottom: 78/1259
  49958. }
  49959. },
  49960. },
  49961. [
  49962. {
  49963. name: "Normal",
  49964. height: math.unit(5 + 4/12, "feet"),
  49965. default: true
  49966. },
  49967. ]
  49968. ))
  49969. characterMakers.push(() => makeCharacter(
  49970. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49971. {
  49972. front: {
  49973. height: math.unit(5 + 7/12, "feet"),
  49974. name: "Front",
  49975. image: {
  49976. source: "./media/characters/callow/front.svg",
  49977. extra: 1482/1304,
  49978. bottom: 23/1505
  49979. }
  49980. },
  49981. back: {
  49982. height: math.unit(5 + 7/12, "feet"),
  49983. name: "Back",
  49984. image: {
  49985. source: "./media/characters/callow/back.svg",
  49986. extra: 1484/1296,
  49987. bottom: 25/1509
  49988. }
  49989. },
  49990. },
  49991. [
  49992. {
  49993. name: "Micro",
  49994. height: math.unit(3, "inches"),
  49995. default: true
  49996. },
  49997. {
  49998. name: "Normal",
  49999. height: math.unit(5 + 7/12, "feet")
  50000. },
  50001. ]
  50002. ))
  50003. characterMakers.push(() => makeCharacter(
  50004. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50005. {
  50006. front: {
  50007. height: math.unit(6 + 2/12, "feet"),
  50008. name: "Front",
  50009. image: {
  50010. source: "./media/characters/natel/front.svg",
  50011. extra: 1833/1692,
  50012. bottom: 166/1999
  50013. }
  50014. },
  50015. },
  50016. [
  50017. {
  50018. name: "Normal",
  50019. height: math.unit(6 + 2/12, "feet"),
  50020. default: true
  50021. },
  50022. ]
  50023. ))
  50024. characterMakers.push(() => makeCharacter(
  50025. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50026. {
  50027. front: {
  50028. height: math.unit(1.75, "meters"),
  50029. name: "Front",
  50030. image: {
  50031. source: "./media/characters/misu/front.svg",
  50032. extra: 1690/1558,
  50033. bottom: 234/1924
  50034. }
  50035. },
  50036. back: {
  50037. height: math.unit(1.75, "meters"),
  50038. name: "Back",
  50039. image: {
  50040. source: "./media/characters/misu/back.svg",
  50041. extra: 1762/1618,
  50042. bottom: 146/1908
  50043. }
  50044. },
  50045. frontNude: {
  50046. height: math.unit(1.75, "meters"),
  50047. name: "Front (Nude)",
  50048. image: {
  50049. source: "./media/characters/misu/front-nude.svg",
  50050. extra: 1690/1558,
  50051. bottom: 234/1924
  50052. }
  50053. },
  50054. backNude: {
  50055. height: math.unit(1.75, "meters"),
  50056. name: "Back (Nude)",
  50057. image: {
  50058. source: "./media/characters/misu/back-nude.svg",
  50059. extra: 1762/1618,
  50060. bottom: 146/1908
  50061. }
  50062. },
  50063. frontErect: {
  50064. height: math.unit(1.75, "meters"),
  50065. name: "Front (Erect)",
  50066. image: {
  50067. source: "./media/characters/misu/front-erect.svg",
  50068. extra: 1690/1558,
  50069. bottom: 234/1924
  50070. }
  50071. },
  50072. maw: {
  50073. height: math.unit(0.47, "meters"),
  50074. name: "Maw",
  50075. image: {
  50076. source: "./media/characters/misu/maw.svg"
  50077. }
  50078. },
  50079. head: {
  50080. height: math.unit(0.35, "meters"),
  50081. name: "Head",
  50082. image: {
  50083. source: "./media/characters/misu/head.svg"
  50084. }
  50085. },
  50086. rear: {
  50087. height: math.unit(0.47, "meters"),
  50088. name: "Rear",
  50089. image: {
  50090. source: "./media/characters/misu/rear.svg"
  50091. }
  50092. },
  50093. },
  50094. [
  50095. {
  50096. name: "Normal",
  50097. height: math.unit(1.75, "meters")
  50098. },
  50099. {
  50100. name: "Not good for the people",
  50101. height: math.unit(42, "meters")
  50102. },
  50103. {
  50104. name: "Not good for the neighborhood",
  50105. height: math.unit(135, "meters")
  50106. },
  50107. {
  50108. name: "Bit bigger problem",
  50109. height: math.unit(380, "meters"),
  50110. default: true
  50111. },
  50112. {
  50113. name: "Not good for the city",
  50114. height: math.unit(1.5, "km")
  50115. },
  50116. {
  50117. name: "Not good for the county",
  50118. height: math.unit(5.5, "km")
  50119. },
  50120. {
  50121. name: "Not good for the state",
  50122. height: math.unit(25, "km")
  50123. },
  50124. {
  50125. name: "Not good for the country",
  50126. height: math.unit(125, "km")
  50127. },
  50128. {
  50129. name: "Not good for the continent",
  50130. height: math.unit(2100, "km")
  50131. },
  50132. {
  50133. name: "Not good for the planet",
  50134. height: math.unit(35000, "km")
  50135. },
  50136. {
  50137. name: "Just no",
  50138. height: math.unit(8.5e18, "km")
  50139. },
  50140. ]
  50141. ))
  50142. characterMakers.push(() => makeCharacter(
  50143. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50144. {
  50145. front: {
  50146. height: math.unit(6.5, "feet"),
  50147. name: "Front",
  50148. image: {
  50149. source: "./media/characters/poppy/front.svg",
  50150. extra: 1878/1812,
  50151. bottom: 43/1921
  50152. }
  50153. },
  50154. feet: {
  50155. height: math.unit(1.06, "feet"),
  50156. name: "Feet",
  50157. image: {
  50158. source: "./media/characters/poppy/feet.svg",
  50159. extra: 1083/1083,
  50160. bottom: 87/1170
  50161. }
  50162. },
  50163. },
  50164. [
  50165. {
  50166. name: "Human",
  50167. height: math.unit(6.5, "feet")
  50168. },
  50169. {
  50170. name: "Default",
  50171. height: math.unit(300, "feet"),
  50172. default: true
  50173. },
  50174. {
  50175. name: "Huge",
  50176. height: math.unit(850, "feet")
  50177. },
  50178. {
  50179. name: "Mega",
  50180. height: math.unit(8000, "feet")
  50181. },
  50182. {
  50183. name: "Giga",
  50184. height: math.unit(300, "miles")
  50185. },
  50186. ]
  50187. ))
  50188. characterMakers.push(() => makeCharacter(
  50189. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50190. {
  50191. bipedal: {
  50192. height: math.unit(7, "feet"),
  50193. name: "Bipedal",
  50194. image: {
  50195. source: "./media/characters/zener/bipedal.svg",
  50196. extra: 874/805,
  50197. bottom: 109/983
  50198. }
  50199. },
  50200. quadrupedal: {
  50201. height: math.unit(4.64, "feet"),
  50202. name: "Quadrupedal",
  50203. image: {
  50204. source: "./media/characters/zener/quadrupedal.svg",
  50205. extra: 638/507,
  50206. bottom: 190/828
  50207. }
  50208. },
  50209. cock: {
  50210. height: math.unit(18, "inches"),
  50211. name: "Cock",
  50212. image: {
  50213. source: "./media/characters/zener/cock.svg"
  50214. }
  50215. },
  50216. },
  50217. [
  50218. {
  50219. name: "Normal",
  50220. height: math.unit(7, "feet"),
  50221. default: true
  50222. },
  50223. ]
  50224. ))
  50225. characterMakers.push(() => makeCharacter(
  50226. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50227. {
  50228. nude: {
  50229. height: math.unit(5 + 6/12, "feet"),
  50230. name: "Nude",
  50231. image: {
  50232. source: "./media/characters/charlie-dog/nude.svg",
  50233. extra: 768/734,
  50234. bottom: 26/794
  50235. }
  50236. },
  50237. dressed: {
  50238. height: math.unit(5 + 6/12, "feet"),
  50239. name: "Dressed",
  50240. image: {
  50241. source: "./media/characters/charlie-dog/dressed.svg",
  50242. extra: 768/734,
  50243. bottom: 26/794
  50244. }
  50245. },
  50246. },
  50247. [
  50248. {
  50249. name: "Normal",
  50250. height: math.unit(5 + 6/12, "feet"),
  50251. default: true
  50252. },
  50253. ]
  50254. ))
  50255. characterMakers.push(() => makeCharacter(
  50256. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50257. {
  50258. front: {
  50259. height: math.unit(6 + 4/12, "feet"),
  50260. name: "Front",
  50261. image: {
  50262. source: "./media/characters/ir'istrasz/front.svg",
  50263. extra: 1014/977,
  50264. bottom: 65/1079
  50265. }
  50266. },
  50267. back: {
  50268. height: math.unit(6 + 4/12, "feet"),
  50269. name: "Back",
  50270. image: {
  50271. source: "./media/characters/ir'istrasz/back.svg",
  50272. extra: 1024/992,
  50273. bottom: 34/1058
  50274. }
  50275. },
  50276. },
  50277. [
  50278. {
  50279. name: "Normal",
  50280. height: math.unit(6 + 4/12, "feet"),
  50281. default: true
  50282. },
  50283. ]
  50284. ))
  50285. characterMakers.push(() => makeCharacter(
  50286. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50287. {
  50288. front: {
  50289. height: math.unit(5 + 8/12, "feet"),
  50290. name: "Front",
  50291. image: {
  50292. source: "./media/characters/dee-ditto/front.svg",
  50293. extra: 1874/1785,
  50294. bottom: 68/1942
  50295. }
  50296. },
  50297. back: {
  50298. height: math.unit(5 + 8/12, "feet"),
  50299. name: "Back",
  50300. image: {
  50301. source: "./media/characters/dee-ditto/back.svg",
  50302. extra: 1870/1783,
  50303. bottom: 77/1947
  50304. }
  50305. },
  50306. },
  50307. [
  50308. {
  50309. name: "Normal",
  50310. height: math.unit(5 + 8/12, "feet"),
  50311. default: true
  50312. },
  50313. ]
  50314. ))
  50315. characterMakers.push(() => makeCharacter(
  50316. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50317. {
  50318. front: {
  50319. height: math.unit(7 + 6/12, "feet"),
  50320. name: "Front",
  50321. image: {
  50322. source: "./media/characters/fey/front.svg",
  50323. extra: 995/979,
  50324. bottom: 30/1025
  50325. }
  50326. },
  50327. back: {
  50328. height: math.unit(7 + 6/12, "feet"),
  50329. name: "Back",
  50330. image: {
  50331. source: "./media/characters/fey/back.svg",
  50332. extra: 1079/1008,
  50333. bottom: 5/1084
  50334. }
  50335. },
  50336. dressed: {
  50337. height: math.unit(7 + 6/12, "feet"),
  50338. name: "Dressed",
  50339. image: {
  50340. source: "./media/characters/fey/dressed.svg",
  50341. extra: 995/979,
  50342. bottom: 30/1025
  50343. }
  50344. },
  50345. },
  50346. [
  50347. {
  50348. name: "Normal",
  50349. height: math.unit(7 + 6/12, "feet"),
  50350. default: true
  50351. },
  50352. ]
  50353. ))
  50354. characterMakers.push(() => makeCharacter(
  50355. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50356. {
  50357. standing: {
  50358. height: math.unit(17, "feet"),
  50359. name: "Standing",
  50360. image: {
  50361. source: "./media/characters/aster/standing.svg",
  50362. extra: 1798/1598,
  50363. bottom: 117/1915
  50364. }
  50365. },
  50366. },
  50367. [
  50368. {
  50369. name: "Normal",
  50370. height: math.unit(17, "feet"),
  50371. default: true
  50372. },
  50373. {
  50374. name: "Homewrecker",
  50375. height: math.unit(95, "feet")
  50376. },
  50377. {
  50378. name: "Planet Devourer",
  50379. height: math.unit(1008000, "miles")
  50380. },
  50381. ]
  50382. ))
  50383. characterMakers.push(() => makeCharacter(
  50384. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50385. {
  50386. front: {
  50387. height: math.unit(6 + 5/12, "feet"),
  50388. weight: math.unit(265, "lb"),
  50389. name: "Front",
  50390. image: {
  50391. source: "./media/characters/devon-childs/front.svg",
  50392. extra: 1795/1721,
  50393. bottom: 41/1836
  50394. }
  50395. },
  50396. side: {
  50397. height: math.unit(6 + 5/12, "feet"),
  50398. weight: math.unit(265, "lb"),
  50399. name: "Side",
  50400. image: {
  50401. source: "./media/characters/devon-childs/side.svg",
  50402. extra: 1812/1738,
  50403. bottom: 30/1842
  50404. }
  50405. },
  50406. back: {
  50407. height: math.unit(6 + 5/12, "feet"),
  50408. weight: math.unit(265, "lb"),
  50409. name: "Back",
  50410. image: {
  50411. source: "./media/characters/devon-childs/back.svg",
  50412. extra: 1808/1735,
  50413. bottom: 23/1831
  50414. }
  50415. },
  50416. hand: {
  50417. height: math.unit(1.464, "feet"),
  50418. name: "Hand",
  50419. image: {
  50420. source: "./media/characters/devon-childs/hand.svg"
  50421. }
  50422. },
  50423. foot: {
  50424. height: math.unit(1.6, "feet"),
  50425. name: "Foot",
  50426. image: {
  50427. source: "./media/characters/devon-childs/foot.svg"
  50428. }
  50429. },
  50430. },
  50431. [
  50432. {
  50433. name: "Micro",
  50434. height: math.unit(7, "cm")
  50435. },
  50436. {
  50437. name: "Normal",
  50438. height: math.unit(6 + 5/12, "feet"),
  50439. default: true
  50440. },
  50441. {
  50442. name: "Macro",
  50443. height: math.unit(154, "feet")
  50444. },
  50445. ]
  50446. ))
  50447. characterMakers.push(() => makeCharacter(
  50448. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50449. {
  50450. front: {
  50451. height: math.unit(6, "feet"),
  50452. weight: math.unit(180, "lb"),
  50453. name: "Front",
  50454. image: {
  50455. source: "./media/characters/lydemox-vir/front.svg",
  50456. extra: 1632/1435,
  50457. bottom: 58/1690
  50458. }
  50459. },
  50460. frontSFW: {
  50461. height: math.unit(6, "feet"),
  50462. weight: math.unit(180, "lb"),
  50463. name: "Front (SFW)",
  50464. image: {
  50465. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50466. extra: 1632/1435,
  50467. bottom: 58/1690
  50468. }
  50469. },
  50470. back: {
  50471. height: math.unit(6, "feet"),
  50472. weight: math.unit(180, "lb"),
  50473. name: "Back",
  50474. image: {
  50475. source: "./media/characters/lydemox-vir/back.svg",
  50476. extra: 1593/1408,
  50477. bottom: 31/1624
  50478. }
  50479. },
  50480. paw: {
  50481. height: math.unit(1.85, "feet"),
  50482. name: "Paw",
  50483. image: {
  50484. source: "./media/characters/lydemox-vir/paw.svg"
  50485. }
  50486. },
  50487. dick: {
  50488. height: math.unit(1.8, "feet"),
  50489. name: "Dick",
  50490. image: {
  50491. source: "./media/characters/lydemox-vir/dick.svg"
  50492. }
  50493. },
  50494. },
  50495. [
  50496. {
  50497. name: "Macro",
  50498. height: math.unit(100, "feet"),
  50499. default: true
  50500. },
  50501. {
  50502. name: "Teramacro",
  50503. height: math.unit(1, "earth")
  50504. },
  50505. {
  50506. name: "Planetary",
  50507. height: math.unit(20, "earths")
  50508. },
  50509. ]
  50510. ))
  50511. characterMakers.push(() => makeCharacter(
  50512. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50513. {
  50514. front: {
  50515. height: math.unit(15 + 8/12, "feet"),
  50516. weight: math.unit(1237, "kg"),
  50517. name: "Front",
  50518. image: {
  50519. source: "./media/characters/mia/front.svg",
  50520. extra: 1573/1446,
  50521. bottom: 58/1631
  50522. }
  50523. },
  50524. },
  50525. [
  50526. {
  50527. name: "Small",
  50528. height: math.unit(9 + 5/12, "feet")
  50529. },
  50530. {
  50531. name: "Normal",
  50532. height: math.unit(15 + 8/12, "feet"),
  50533. default: true
  50534. },
  50535. ]
  50536. ))
  50537. characterMakers.push(() => makeCharacter(
  50538. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50539. {
  50540. front: {
  50541. height: math.unit(10 + 6/12, "feet"),
  50542. weight: math.unit(1.3, "tons"),
  50543. name: "Front",
  50544. image: {
  50545. source: "./media/characters/mr-graves/front.svg",
  50546. extra: 1779/1695,
  50547. bottom: 198/1977
  50548. }
  50549. },
  50550. },
  50551. [
  50552. {
  50553. name: "Normal",
  50554. height: math.unit(10 + 6 /12, "feet"),
  50555. default: true
  50556. },
  50557. ]
  50558. ))
  50559. characterMakers.push(() => makeCharacter(
  50560. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50561. {
  50562. dressedFront: {
  50563. height: math.unit(5 + 8/12, "feet"),
  50564. weight: math.unit(125, "lb"),
  50565. name: "Dressed (Front)",
  50566. image: {
  50567. source: "./media/characters/jess/dressed-front.svg",
  50568. extra: 1176/1152,
  50569. bottom: 42/1218
  50570. }
  50571. },
  50572. dressedSide: {
  50573. height: math.unit(5 + 8/12, "feet"),
  50574. weight: math.unit(125, "lb"),
  50575. name: "Dressed (Side)",
  50576. image: {
  50577. source: "./media/characters/jess/dressed-side.svg",
  50578. extra: 1204/1190,
  50579. bottom: 6/1210
  50580. }
  50581. },
  50582. nudeFront: {
  50583. height: math.unit(5 + 8/12, "feet"),
  50584. weight: math.unit(125, "lb"),
  50585. name: "Nude (Front)",
  50586. image: {
  50587. source: "./media/characters/jess/nude-front.svg",
  50588. extra: 1176/1152,
  50589. bottom: 42/1218
  50590. }
  50591. },
  50592. nudeSide: {
  50593. height: math.unit(5 + 8/12, "feet"),
  50594. weight: math.unit(125, "lb"),
  50595. name: "Nude (Side)",
  50596. image: {
  50597. source: "./media/characters/jess/nude-side.svg",
  50598. extra: 1204/1190,
  50599. bottom: 6/1210
  50600. }
  50601. },
  50602. organsFront: {
  50603. height: math.unit(2.83799342105, "feet"),
  50604. name: "Organs (Front)",
  50605. image: {
  50606. source: "./media/characters/jess/organs-front.svg"
  50607. }
  50608. },
  50609. organsSide: {
  50610. height: math.unit(2.64225290474, "feet"),
  50611. name: "Organs (Side)",
  50612. image: {
  50613. source: "./media/characters/jess/organs-side.svg"
  50614. }
  50615. },
  50616. digestiveTractFront: {
  50617. height: math.unit(2.8106580871, "feet"),
  50618. name: "Digestive Tract (Front)",
  50619. image: {
  50620. source: "./media/characters/jess/digestive-tract-front.svg"
  50621. }
  50622. },
  50623. digestiveTractSide: {
  50624. height: math.unit(2.54365045014, "feet"),
  50625. name: "Digestive Tract (Side)",
  50626. image: {
  50627. source: "./media/characters/jess/digestive-tract-side.svg"
  50628. }
  50629. },
  50630. respiratorySystemFront: {
  50631. height: math.unit(1.11196233456, "feet"),
  50632. name: "Respiratory System (Front)",
  50633. image: {
  50634. source: "./media/characters/jess/respiratory-system-front.svg"
  50635. }
  50636. },
  50637. respiratorySystemSide: {
  50638. height: math.unit(0.89327966297, "feet"),
  50639. name: "Respiratory System (Side)",
  50640. image: {
  50641. source: "./media/characters/jess/respiratory-system-side.svg"
  50642. }
  50643. },
  50644. urinaryTractFront: {
  50645. height: math.unit(1.16126356186, "feet"),
  50646. name: "Urinary Tract (Front)",
  50647. image: {
  50648. source: "./media/characters/jess/urinary-tract-front.svg"
  50649. }
  50650. },
  50651. urinaryTractSide: {
  50652. height: math.unit(1.20910039627, "feet"),
  50653. name: "Urinary Tract (Side)",
  50654. image: {
  50655. source: "./media/characters/jess/urinary-tract-side.svg"
  50656. }
  50657. },
  50658. reproductiveOrgansFront: {
  50659. height: math.unit(0.48422591566, "feet"),
  50660. name: "Reproductive Organs (Front)",
  50661. image: {
  50662. source: "./media/characters/jess/reproductive-organs-front.svg"
  50663. }
  50664. },
  50665. reproductiveOrgansSide: {
  50666. height: math.unit(0.61553314481, "feet"),
  50667. name: "Reproductive Organs (Side)",
  50668. image: {
  50669. source: "./media/characters/jess/reproductive-organs-side.svg"
  50670. }
  50671. },
  50672. breastsFront: {
  50673. height: math.unit(0.47690395121, "feet"),
  50674. name: "Breasts (Front)",
  50675. image: {
  50676. source: "./media/characters/jess/breasts-front.svg"
  50677. }
  50678. },
  50679. breastsSide: {
  50680. height: math.unit(0.30556998307, "feet"),
  50681. name: "Breasts (Side)",
  50682. image: {
  50683. source: "./media/characters/jess/breasts-side.svg"
  50684. }
  50685. },
  50686. heartFront: {
  50687. height: math.unit(0.53011022622, "feet"),
  50688. name: "Heart (Front)",
  50689. image: {
  50690. source: "./media/characters/jess/heart-front.svg"
  50691. }
  50692. },
  50693. heartSide: {
  50694. height: math.unit(0.51790695213, "feet"),
  50695. name: "Heart (Side)",
  50696. image: {
  50697. source: "./media/characters/jess/heart-side.svg"
  50698. }
  50699. },
  50700. earsAndNoseFront: {
  50701. height: math.unit(0.29385483995, "feet"),
  50702. name: "Ears and Nose (Front)",
  50703. image: {
  50704. source: "./media/characters/jess/ears-and-nose-front.svg"
  50705. }
  50706. },
  50707. earsAndNoseSide: {
  50708. height: math.unit(0.18109658741, "feet"),
  50709. name: "Ears and Nose (Side)",
  50710. image: {
  50711. source: "./media/characters/jess/ears-and-nose-side.svg"
  50712. }
  50713. },
  50714. },
  50715. [
  50716. {
  50717. name: "Normal",
  50718. height: math.unit(5 + 8/12, "feet"),
  50719. default: true
  50720. },
  50721. ]
  50722. ))
  50723. characterMakers.push(() => makeCharacter(
  50724. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50725. {
  50726. front: {
  50727. height: math.unit(6, "feet"),
  50728. weight: math.unit(6.64467e-7, "grams"),
  50729. name: "Front",
  50730. image: {
  50731. source: "./media/characters/wimpering/front.svg",
  50732. extra: 597/587,
  50733. bottom: 34/631
  50734. }
  50735. },
  50736. },
  50737. [
  50738. {
  50739. name: "Micro",
  50740. height: math.unit(0.4, "mm"),
  50741. default: true
  50742. },
  50743. ]
  50744. ))
  50745. characterMakers.push(() => makeCharacter(
  50746. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50747. {
  50748. front: {
  50749. height: math.unit(5 + 2/12, "feet"),
  50750. weight: math.unit(110, "lb"),
  50751. name: "Front",
  50752. image: {
  50753. source: "./media/characters/keltre/front.svg",
  50754. extra: 1099/1057,
  50755. bottom: 22/1121
  50756. }
  50757. },
  50758. back: {
  50759. height: math.unit(5 + 2/12, "feet"),
  50760. weight: math.unit(110, "lb"),
  50761. name: "Back",
  50762. image: {
  50763. source: "./media/characters/keltre/back.svg",
  50764. extra: 1095/1053,
  50765. bottom: 17/1112
  50766. }
  50767. },
  50768. dressed: {
  50769. height: math.unit(5 + 2/12, "feet"),
  50770. weight: math.unit(110, "lb"),
  50771. name: "Dressed",
  50772. image: {
  50773. source: "./media/characters/keltre/dressed.svg",
  50774. extra: 1099/1057,
  50775. bottom: 22/1121
  50776. }
  50777. },
  50778. winter: {
  50779. height: math.unit(5 + 2/12, "feet"),
  50780. weight: math.unit(110, "lb"),
  50781. name: "Winter",
  50782. image: {
  50783. source: "./media/characters/keltre/winter.svg",
  50784. extra: 1099/1057,
  50785. bottom: 22/1121
  50786. }
  50787. },
  50788. head: {
  50789. height: math.unit(1.61 * 0.86, "feet"),
  50790. name: "Head",
  50791. image: {
  50792. source: "./media/characters/keltre/head.svg",
  50793. extra: 534/421,
  50794. bottom: 0/534
  50795. }
  50796. },
  50797. hand: {
  50798. height: math.unit(1.3 * 0.86, "feet"),
  50799. name: "Hand",
  50800. image: {
  50801. source: "./media/characters/keltre/hand.svg"
  50802. }
  50803. },
  50804. foot: {
  50805. height: math.unit(1.8 * 0.86, "feet"),
  50806. name: "Foot",
  50807. image: {
  50808. source: "./media/characters/keltre/foot.svg"
  50809. }
  50810. },
  50811. },
  50812. [
  50813. {
  50814. name: "Fine",
  50815. height: math.unit(1, "inch")
  50816. },
  50817. {
  50818. name: "Dimnutive",
  50819. height: math.unit(4, "inches")
  50820. },
  50821. {
  50822. name: "Tiny",
  50823. height: math.unit(1, "foot")
  50824. },
  50825. {
  50826. name: "Small",
  50827. height: math.unit(3, "feet")
  50828. },
  50829. {
  50830. name: "Normal",
  50831. height: math.unit(5 + 2/12, "feet"),
  50832. default: true
  50833. },
  50834. ]
  50835. ))
  50836. characterMakers.push(() => makeCharacter(
  50837. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50838. {
  50839. front: {
  50840. height: math.unit(6 + 2/12, "feet"),
  50841. name: "Front",
  50842. image: {
  50843. source: "./media/characters/nox/front.svg",
  50844. extra: 1917/1830,
  50845. bottom: 74/1991
  50846. }
  50847. },
  50848. back: {
  50849. height: math.unit(6 + 2/12, "feet"),
  50850. name: "Back",
  50851. image: {
  50852. source: "./media/characters/nox/back.svg",
  50853. extra: 1896/1815,
  50854. bottom: 21/1917
  50855. }
  50856. },
  50857. head: {
  50858. height: math.unit(1.1, "feet"),
  50859. name: "Head",
  50860. image: {
  50861. source: "./media/characters/nox/head.svg",
  50862. extra: 874/704,
  50863. bottom: 0/874
  50864. }
  50865. },
  50866. tattoo: {
  50867. height: math.unit(0.729, "feet"),
  50868. name: "Tattoo",
  50869. image: {
  50870. source: "./media/characters/nox/tattoo.svg"
  50871. }
  50872. },
  50873. },
  50874. [
  50875. {
  50876. name: "Normal",
  50877. height: math.unit(6 + 2/12, "feet")
  50878. },
  50879. {
  50880. name: "Gigamacro",
  50881. height: math.unit(2, "earths"),
  50882. default: true
  50883. },
  50884. {
  50885. name: "Cosmic",
  50886. height: math.unit(867, "yottameters")
  50887. },
  50888. ]
  50889. ))
  50890. characterMakers.push(() => makeCharacter(
  50891. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50892. {
  50893. front: {
  50894. height: math.unit(6, "feet"),
  50895. weight: math.unit(150, "lb"),
  50896. name: "Front",
  50897. image: {
  50898. source: "./media/characters/caspian/front.svg",
  50899. extra: 1443/1359,
  50900. bottom: 0/1443
  50901. }
  50902. },
  50903. back: {
  50904. height: math.unit(6, "feet"),
  50905. weight: math.unit(150, "lb"),
  50906. name: "Back",
  50907. image: {
  50908. source: "./media/characters/caspian/back.svg",
  50909. extra: 1379/1309,
  50910. bottom: 0/1379
  50911. }
  50912. },
  50913. head: {
  50914. height: math.unit(0.9, "feet"),
  50915. name: "Head",
  50916. image: {
  50917. source: "./media/characters/caspian/head.svg",
  50918. extra: 692/492,
  50919. bottom: 0/692
  50920. }
  50921. },
  50922. headAlt: {
  50923. height: math.unit(0.95, "feet"),
  50924. name: "Head (Alt)",
  50925. image: {
  50926. source: "./media/characters/caspian/head-alt.svg",
  50927. extra: 668/508,
  50928. bottom: 0/668
  50929. }
  50930. },
  50931. hand: {
  50932. height: math.unit(0.8, "feet"),
  50933. name: "Hand",
  50934. image: {
  50935. source: "./media/characters/caspian/hand.svg"
  50936. }
  50937. },
  50938. paw: {
  50939. height: math.unit(0.95, "feet"),
  50940. name: "Paw",
  50941. image: {
  50942. source: "./media/characters/caspian/paw.svg"
  50943. }
  50944. },
  50945. },
  50946. [
  50947. {
  50948. name: "Normal",
  50949. height: math.unit(162, "feet"),
  50950. default: true
  50951. },
  50952. ]
  50953. ))
  50954. characterMakers.push(() => makeCharacter(
  50955. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50956. {
  50957. front: {
  50958. height: math.unit(6, "feet"),
  50959. name: "Front",
  50960. image: {
  50961. source: "./media/characters/myra-aisling/front.svg",
  50962. extra: 1268/1166,
  50963. bottom: 73/1341
  50964. }
  50965. },
  50966. back: {
  50967. height: math.unit(6, "feet"),
  50968. name: "Back",
  50969. image: {
  50970. source: "./media/characters/myra-aisling/back.svg",
  50971. extra: 1249/1149,
  50972. bottom: 79/1328
  50973. }
  50974. },
  50975. dressed: {
  50976. height: math.unit(6, "feet"),
  50977. name: "Dressed",
  50978. image: {
  50979. source: "./media/characters/myra-aisling/dressed.svg",
  50980. extra: 1290/1189,
  50981. bottom: 47/1337
  50982. }
  50983. },
  50984. hand: {
  50985. height: math.unit(1.1, "feet"),
  50986. name: "Hand",
  50987. image: {
  50988. source: "./media/characters/myra-aisling/hand.svg"
  50989. }
  50990. },
  50991. paw: {
  50992. height: math.unit(1.23, "feet"),
  50993. name: "Paw",
  50994. image: {
  50995. source: "./media/characters/myra-aisling/paw.svg"
  50996. }
  50997. },
  50998. },
  50999. [
  51000. {
  51001. name: "Normal",
  51002. height: math.unit(160, "feet"),
  51003. default: true
  51004. },
  51005. ]
  51006. ))
  51007. characterMakers.push(() => makeCharacter(
  51008. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51009. {
  51010. front: {
  51011. height: math.unit(6, "feet"),
  51012. name: "Front",
  51013. image: {
  51014. source: "./media/characters/tenley-sidero/front.svg",
  51015. extra: 1365/1276,
  51016. bottom: 47/1412
  51017. }
  51018. },
  51019. back: {
  51020. height: math.unit(6, "feet"),
  51021. name: "Back",
  51022. image: {
  51023. source: "./media/characters/tenley-sidero/back.svg",
  51024. extra: 1383/1283,
  51025. bottom: 35/1418
  51026. }
  51027. },
  51028. dressed: {
  51029. height: math.unit(6, "feet"),
  51030. name: "Dressed",
  51031. image: {
  51032. source: "./media/characters/tenley-sidero/dressed.svg",
  51033. extra: 1364/1275,
  51034. bottom: 42/1406
  51035. }
  51036. },
  51037. head: {
  51038. height: math.unit(1.47, "feet"),
  51039. name: "Head",
  51040. image: {
  51041. source: "./media/characters/tenley-sidero/head.svg",
  51042. extra: 610/490,
  51043. bottom: 0/610
  51044. }
  51045. },
  51046. },
  51047. [
  51048. {
  51049. name: "Normal",
  51050. height: math.unit(154, "feet"),
  51051. default: true
  51052. },
  51053. ]
  51054. ))
  51055. characterMakers.push(() => makeCharacter(
  51056. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51057. {
  51058. front: {
  51059. height: math.unit(5, "inches"),
  51060. name: "Front",
  51061. image: {
  51062. source: "./media/characters/mallory/front.svg",
  51063. extra: 1919/1678,
  51064. bottom: 29/1948
  51065. }
  51066. },
  51067. hand: {
  51068. height: math.unit(0.73, "inches"),
  51069. name: "Hand",
  51070. image: {
  51071. source: "./media/characters/mallory/hand.svg"
  51072. }
  51073. },
  51074. paw: {
  51075. height: math.unit(0.68, "inches"),
  51076. name: "Paw",
  51077. image: {
  51078. source: "./media/characters/mallory/paw.svg"
  51079. }
  51080. },
  51081. },
  51082. [
  51083. {
  51084. name: "Small",
  51085. height: math.unit(5, "inches"),
  51086. default: true
  51087. },
  51088. ]
  51089. ))
  51090. characterMakers.push(() => makeCharacter(
  51091. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51092. {
  51093. naked: {
  51094. height: math.unit(6, "feet"),
  51095. name: "Naked",
  51096. image: {
  51097. source: "./media/characters/mab/naked.svg",
  51098. extra: 1855/1757,
  51099. bottom: 208/2063
  51100. }
  51101. },
  51102. outside: {
  51103. height: math.unit(6, "feet"),
  51104. name: "Outside",
  51105. image: {
  51106. source: "./media/characters/mab/outside.svg",
  51107. extra: 1855/1757,
  51108. bottom: 208/2063
  51109. }
  51110. },
  51111. party: {
  51112. height: math.unit(6, "feet"),
  51113. name: "Party",
  51114. image: {
  51115. source: "./media/characters/mab/party.svg",
  51116. extra: 1855/1757,
  51117. bottom: 208/2063
  51118. }
  51119. },
  51120. },
  51121. [
  51122. {
  51123. name: "Normal",
  51124. height: math.unit(165, "feet"),
  51125. default: true
  51126. },
  51127. ]
  51128. ))
  51129. characterMakers.push(() => makeCharacter(
  51130. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51131. {
  51132. feral: {
  51133. height: math.unit(12, "feet"),
  51134. weight: math.unit(20000, "lb"),
  51135. name: "Side",
  51136. image: {
  51137. source: "./media/characters/winter/feral.svg",
  51138. extra: 1286/943,
  51139. bottom: 112/1398
  51140. },
  51141. form: "feral",
  51142. default: true
  51143. },
  51144. feralNsfw: {
  51145. height: math.unit(12, "feet"),
  51146. weight: math.unit(20000, "lb"),
  51147. name: "Side (NSFW)",
  51148. image: {
  51149. source: "./media/characters/winter/feral-nsfw.svg",
  51150. extra: 1286/943,
  51151. bottom: 112/1398
  51152. },
  51153. form: "feral"
  51154. },
  51155. dick: {
  51156. height: math.unit(3.79, "feet"),
  51157. name: "Dick",
  51158. image: {
  51159. source: "./media/characters/winter/dick.svg"
  51160. },
  51161. form: "feral"
  51162. },
  51163. anthro: {
  51164. height: math.unit(12, "feet"),
  51165. weight: math.unit(10, "tons"),
  51166. name: "Anthro",
  51167. image: {
  51168. source: "./media/characters/winter/anthro.svg",
  51169. extra: 1701/1553,
  51170. bottom: 64/1765
  51171. },
  51172. form: "anthro",
  51173. default: true
  51174. },
  51175. },
  51176. [
  51177. {
  51178. name: "Big",
  51179. height: math.unit(12, "feet"),
  51180. default: true,
  51181. form: "feral"
  51182. },
  51183. {
  51184. name: "Big",
  51185. height: math.unit(12, "feet"),
  51186. default: true,
  51187. form: "anthro"
  51188. },
  51189. ],
  51190. {
  51191. "feral": {
  51192. name: "Feral",
  51193. default: true
  51194. },
  51195. "anthro": {
  51196. name: "Anthro"
  51197. }
  51198. }
  51199. ))
  51200. characterMakers.push(() => makeCharacter(
  51201. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51202. {
  51203. front: {
  51204. height: math.unit(4.1, "inches"),
  51205. name: "Front",
  51206. image: {
  51207. source: "./media/characters/alto/front.svg",
  51208. extra: 736/627,
  51209. bottom: 90/826
  51210. }
  51211. },
  51212. },
  51213. [
  51214. {
  51215. name: "Normal",
  51216. height: math.unit(4.1, "inches"),
  51217. default: true
  51218. },
  51219. ]
  51220. ))
  51221. characterMakers.push(() => makeCharacter(
  51222. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51223. {
  51224. sitting: {
  51225. height: math.unit(3, "feet"),
  51226. name: "Sitting",
  51227. image: {
  51228. source: "./media/characters/ratstrid-v/sitting.svg",
  51229. extra: 355/310,
  51230. bottom: 136/491
  51231. }
  51232. },
  51233. },
  51234. [
  51235. {
  51236. name: "Normal",
  51237. height: math.unit(3, "feet"),
  51238. default: true
  51239. },
  51240. ]
  51241. ))
  51242. characterMakers.push(() => makeCharacter(
  51243. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51244. {
  51245. back: {
  51246. height: math.unit(6, "feet"),
  51247. weight: math.unit(450, "lb"),
  51248. name: "Back",
  51249. image: {
  51250. source: "./media/characters/siz/back.svg",
  51251. extra: 1449/1274,
  51252. bottom: 13/1462
  51253. }
  51254. },
  51255. },
  51256. [
  51257. {
  51258. name: "Smallest",
  51259. height: math.unit(18 + 3/12, "feet")
  51260. },
  51261. {
  51262. name: "Modest",
  51263. height: math.unit(56 + 8/12, "feet"),
  51264. default: true
  51265. },
  51266. {
  51267. name: "Largest",
  51268. height: math.unit(3590, "feet")
  51269. },
  51270. ]
  51271. ))
  51272. characterMakers.push(() => makeCharacter(
  51273. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51274. {
  51275. front: {
  51276. height: math.unit(5 + 9/12, "feet"),
  51277. weight: math.unit(150, "lb"),
  51278. name: "Front",
  51279. image: {
  51280. source: "./media/characters/ven/front.svg",
  51281. extra: 1372/1320,
  51282. bottom: 73/1445
  51283. }
  51284. },
  51285. side: {
  51286. height: math.unit(5 + 9/12, "feet"),
  51287. weight: math.unit(1150, "lb"),
  51288. name: "Side",
  51289. image: {
  51290. source: "./media/characters/ven/side.svg",
  51291. extra: 1119/1070,
  51292. bottom: 42/1161
  51293. },
  51294. default: true
  51295. },
  51296. },
  51297. [
  51298. {
  51299. name: "Normal",
  51300. height: math.unit(5 + 9/12, "feet"),
  51301. default: true
  51302. },
  51303. ]
  51304. ))
  51305. characterMakers.push(() => makeCharacter(
  51306. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51307. {
  51308. front: {
  51309. height: math.unit(12, "feet"),
  51310. weight: math.unit(1000, "kg"),
  51311. name: "Front",
  51312. image: {
  51313. source: "./media/characters/maple/front.svg",
  51314. extra: 1193/1081,
  51315. bottom: 22/1215
  51316. }
  51317. },
  51318. },
  51319. [
  51320. {
  51321. name: "Compressed",
  51322. height: math.unit(7, "feet")
  51323. },
  51324. {
  51325. name: "Normal",
  51326. height: math.unit(12, "feet"),
  51327. default: true
  51328. },
  51329. ]
  51330. ))
  51331. characterMakers.push(() => makeCharacter(
  51332. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51333. {
  51334. front: {
  51335. height: math.unit(9, "feet"),
  51336. weight: math.unit(1500, "lb"),
  51337. name: "Front",
  51338. image: {
  51339. source: "./media/characters/nora/front.svg",
  51340. extra: 1348/1286,
  51341. bottom: 218/1566
  51342. }
  51343. },
  51344. erect: {
  51345. height: math.unit(9, "feet"),
  51346. weight: math.unit(11500, "lb"),
  51347. name: "Erect",
  51348. image: {
  51349. source: "./media/characters/nora/erect.svg",
  51350. extra: 1488/1433,
  51351. bottom: 133/1621
  51352. }
  51353. },
  51354. },
  51355. [
  51356. {
  51357. name: "Normal",
  51358. height: math.unit(9, "feet"),
  51359. default: true
  51360. },
  51361. ]
  51362. ))
  51363. characterMakers.push(() => makeCharacter(
  51364. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51365. {
  51366. front: {
  51367. height: math.unit(25, "feet"),
  51368. weight: math.unit(27500, "lb"),
  51369. name: "Front",
  51370. image: {
  51371. source: "./media/characters/north-caudin/front.svg",
  51372. extra: 1184/1082,
  51373. bottom: 23/1207
  51374. }
  51375. },
  51376. },
  51377. [
  51378. {
  51379. name: "Compressed",
  51380. height: math.unit(10, "feet")
  51381. },
  51382. {
  51383. name: "Normal",
  51384. height: math.unit(25, "feet"),
  51385. default: true
  51386. },
  51387. ]
  51388. ))
  51389. characterMakers.push(() => makeCharacter(
  51390. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51391. {
  51392. front: {
  51393. height: math.unit(9, "feet"),
  51394. weight: math.unit(1250, "lb"),
  51395. name: "Front",
  51396. image: {
  51397. source: "./media/characters/merrian/front.svg",
  51398. extra: 2393/2304,
  51399. bottom: 40/2433
  51400. }
  51401. },
  51402. },
  51403. [
  51404. {
  51405. name: "Normal",
  51406. height: math.unit(9, "feet"),
  51407. default: true
  51408. },
  51409. ]
  51410. ))
  51411. characterMakers.push(() => makeCharacter(
  51412. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51413. {
  51414. front: {
  51415. height: math.unit(9, "feet"),
  51416. weight: math.unit(1000, "lb"),
  51417. name: "Front",
  51418. image: {
  51419. source: "./media/characters/hazel/front.svg",
  51420. extra: 2351/2298,
  51421. bottom: 38/2389
  51422. }
  51423. },
  51424. },
  51425. [
  51426. {
  51427. name: "Normal",
  51428. height: math.unit(9, "feet"),
  51429. default: true
  51430. },
  51431. ]
  51432. ))
  51433. characterMakers.push(() => makeCharacter(
  51434. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51435. {
  51436. front: {
  51437. height: math.unit(13, "feet"),
  51438. weight: math.unit(3200, "lb"),
  51439. name: "Front",
  51440. image: {
  51441. source: "./media/characters/emma/front.svg",
  51442. extra: 2263/2029,
  51443. bottom: 68/2331
  51444. }
  51445. },
  51446. },
  51447. [
  51448. {
  51449. name: "Normal",
  51450. height: math.unit(13, "feet"),
  51451. default: true
  51452. },
  51453. ]
  51454. ))
  51455. characterMakers.push(() => makeCharacter(
  51456. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51457. {
  51458. front: {
  51459. height: math.unit(11 + 9/12, "feet"),
  51460. weight: math.unit(2500, "lb"),
  51461. name: "Front",
  51462. image: {
  51463. source: "./media/characters/ilumina/front.svg",
  51464. extra: 2248/2209,
  51465. bottom: 164/2412
  51466. }
  51467. },
  51468. },
  51469. [
  51470. {
  51471. name: "Normal",
  51472. height: math.unit(11 + 9/12, "feet"),
  51473. default: true
  51474. },
  51475. ]
  51476. ))
  51477. characterMakers.push(() => makeCharacter(
  51478. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51479. {
  51480. front: {
  51481. height: math.unit(8 + 10/12, "feet"),
  51482. weight: math.unit(1350, "lb"),
  51483. name: "Front",
  51484. image: {
  51485. source: "./media/characters/moonshine/front.svg",
  51486. extra: 2395/2288,
  51487. bottom: 40/2435
  51488. }
  51489. },
  51490. },
  51491. [
  51492. {
  51493. name: "Normal",
  51494. height: math.unit(8 + 10/12, "feet"),
  51495. default: true
  51496. },
  51497. ]
  51498. ))
  51499. characterMakers.push(() => makeCharacter(
  51500. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51501. {
  51502. front: {
  51503. height: math.unit(14, "feet"),
  51504. weight: math.unit(3400, "lb"),
  51505. name: "Front",
  51506. image: {
  51507. source: "./media/characters/aletia/front.svg",
  51508. extra: 1185/1052,
  51509. bottom: 21/1206
  51510. }
  51511. },
  51512. },
  51513. [
  51514. {
  51515. name: "Compressed",
  51516. height: math.unit(8, "feet")
  51517. },
  51518. {
  51519. name: "Normal",
  51520. height: math.unit(14, "feet"),
  51521. default: true
  51522. },
  51523. ]
  51524. ))
  51525. characterMakers.push(() => makeCharacter(
  51526. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51527. {
  51528. front: {
  51529. height: math.unit(17, "feet"),
  51530. weight: math.unit(6500, "lb"),
  51531. name: "Front",
  51532. image: {
  51533. source: "./media/characters/deidra/front.svg",
  51534. extra: 1201/1081,
  51535. bottom: 16/1217
  51536. }
  51537. },
  51538. },
  51539. [
  51540. {
  51541. name: "Compressed",
  51542. height: math.unit(9 + 6/12, "feet")
  51543. },
  51544. {
  51545. name: "Normal",
  51546. height: math.unit(17, "feet"),
  51547. default: true
  51548. },
  51549. ]
  51550. ))
  51551. characterMakers.push(() => makeCharacter(
  51552. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51553. {
  51554. front: {
  51555. height: math.unit(7 + 4/12, "feet"),
  51556. weight: math.unit(280, "lb"),
  51557. name: "Front",
  51558. image: {
  51559. source: "./media/characters/freki-yrmori/front.svg",
  51560. extra: 1286/1182,
  51561. bottom: 29/1315
  51562. }
  51563. },
  51564. maw: {
  51565. height: math.unit(0.9, "feet"),
  51566. name: "Maw",
  51567. image: {
  51568. source: "./media/characters/freki-yrmori/maw.svg"
  51569. }
  51570. },
  51571. },
  51572. [
  51573. {
  51574. name: "Normal",
  51575. height: math.unit(7 + 4/12, "feet"),
  51576. default: true
  51577. },
  51578. {
  51579. name: "Macro",
  51580. height: math.unit(38.5, "meters")
  51581. },
  51582. ]
  51583. ))
  51584. characterMakers.push(() => makeCharacter(
  51585. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51586. {
  51587. side: {
  51588. height: math.unit(47.2, "meters"),
  51589. weight: math.unit(10000, "tons"),
  51590. name: "Side",
  51591. image: {
  51592. source: "./media/characters/aetherios/side.svg",
  51593. extra: 2363/642,
  51594. bottom: 221/2584
  51595. }
  51596. },
  51597. top: {
  51598. height: math.unit(240, "meters"),
  51599. weight: math.unit(10000, "tons"),
  51600. name: "Top",
  51601. image: {
  51602. source: "./media/characters/aetherios/top.svg"
  51603. }
  51604. },
  51605. bottom: {
  51606. height: math.unit(240, "meters"),
  51607. weight: math.unit(10000, "tons"),
  51608. name: "Bottom",
  51609. image: {
  51610. source: "./media/characters/aetherios/bottom.svg"
  51611. }
  51612. },
  51613. head: {
  51614. height: math.unit(38.6, "meters"),
  51615. name: "Head",
  51616. image: {
  51617. source: "./media/characters/aetherios/head.svg",
  51618. extra: 1335/1112,
  51619. bottom: 0/1335
  51620. }
  51621. },
  51622. front: {
  51623. height: math.unit(29, "meters"),
  51624. name: "Front",
  51625. image: {
  51626. source: "./media/characters/aetherios/front.svg",
  51627. extra: 1266/953,
  51628. bottom: 158/1424
  51629. }
  51630. },
  51631. maw: {
  51632. height: math.unit(16.37, "meters"),
  51633. name: "Maw",
  51634. image: {
  51635. source: "./media/characters/aetherios/maw.svg",
  51636. extra: 748/637,
  51637. bottom: 0/748
  51638. },
  51639. extraAttributes: {
  51640. preyCapacity: {
  51641. name: "Capacity",
  51642. power: 3,
  51643. type: "volume",
  51644. base: math.unit(1000, "people")
  51645. },
  51646. tongueSize: {
  51647. name: "Tongue Size",
  51648. power: 2,
  51649. type: "area",
  51650. base: math.unit(21, "m^2")
  51651. }
  51652. }
  51653. },
  51654. forepaw: {
  51655. height: math.unit(18, "meters"),
  51656. name: "Forepaw",
  51657. image: {
  51658. source: "./media/characters/aetherios/forepaw.svg"
  51659. }
  51660. },
  51661. hindpaw: {
  51662. height: math.unit(23, "meters"),
  51663. name: "Hindpaw",
  51664. image: {
  51665. source: "./media/characters/aetherios/hindpaw.svg"
  51666. }
  51667. },
  51668. genitals: {
  51669. height: math.unit(42, "meters"),
  51670. name: "Genitals",
  51671. image: {
  51672. source: "./media/characters/aetherios/genitals.svg"
  51673. }
  51674. },
  51675. },
  51676. [
  51677. {
  51678. name: "Normal",
  51679. height: math.unit(47.2, "meters"),
  51680. default: true
  51681. },
  51682. {
  51683. name: "Macro",
  51684. height: math.unit(160, "meters")
  51685. },
  51686. {
  51687. name: "Mega",
  51688. height: math.unit(1.87, "km")
  51689. },
  51690. {
  51691. name: "Giga",
  51692. height: math.unit(40000, "km")
  51693. },
  51694. {
  51695. name: "Stellar",
  51696. height: math.unit(158000000, "km")
  51697. },
  51698. {
  51699. name: "Cosmic",
  51700. height: math.unit(9.46e12, "km")
  51701. },
  51702. ]
  51703. ))
  51704. characterMakers.push(() => makeCharacter(
  51705. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51706. {
  51707. front: {
  51708. height: math.unit(5 + 4/12, "feet"),
  51709. weight: math.unit(80, "lb"),
  51710. name: "Front",
  51711. image: {
  51712. source: "./media/characters/mizu-gieeg/front.svg",
  51713. extra: 850/709,
  51714. bottom: 52/902
  51715. }
  51716. },
  51717. back: {
  51718. height: math.unit(5 + 4/12, "feet"),
  51719. weight: math.unit(80, "lb"),
  51720. name: "Back",
  51721. image: {
  51722. source: "./media/characters/mizu-gieeg/back.svg",
  51723. extra: 882/745,
  51724. bottom: 25/907
  51725. }
  51726. },
  51727. },
  51728. [
  51729. {
  51730. name: "Normal",
  51731. height: math.unit(5 + 4/12, "feet"),
  51732. default: true
  51733. },
  51734. ]
  51735. ))
  51736. characterMakers.push(() => makeCharacter(
  51737. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51738. {
  51739. front: {
  51740. height: math.unit(6, "feet"),
  51741. name: "Front",
  51742. image: {
  51743. source: "./media/characters/roselle-st-papier/front.svg",
  51744. extra: 1430/1280,
  51745. bottom: 37/1467
  51746. }
  51747. },
  51748. back: {
  51749. height: math.unit(6, "feet"),
  51750. name: "Back",
  51751. image: {
  51752. source: "./media/characters/roselle-st-papier/back.svg",
  51753. extra: 1491/1296,
  51754. bottom: 23/1514
  51755. }
  51756. },
  51757. ear: {
  51758. height: math.unit(1.26, "feet"),
  51759. name: "Ear",
  51760. image: {
  51761. source: "./media/characters/roselle-st-papier/ear.svg"
  51762. }
  51763. },
  51764. },
  51765. [
  51766. {
  51767. name: "Normal",
  51768. height: math.unit(150, "feet"),
  51769. default: true
  51770. },
  51771. ]
  51772. ))
  51773. characterMakers.push(() => makeCharacter(
  51774. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51775. {
  51776. front: {
  51777. height: math.unit(1, "inches"),
  51778. name: "Front",
  51779. image: {
  51780. source: "./media/characters/valargent/front.svg",
  51781. extra: 1825/1694,
  51782. bottom: 62/1887
  51783. }
  51784. },
  51785. back: {
  51786. height: math.unit(1, "inches"),
  51787. name: "Back",
  51788. image: {
  51789. source: "./media/characters/valargent/back.svg",
  51790. extra: 1775/1682,
  51791. bottom: 88/1863
  51792. }
  51793. },
  51794. },
  51795. [
  51796. {
  51797. name: "Micro",
  51798. height: math.unit(1, "inch"),
  51799. default: true
  51800. },
  51801. ]
  51802. ))
  51803. characterMakers.push(() => makeCharacter(
  51804. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51805. {
  51806. front: {
  51807. height: math.unit(3.4, "meters"),
  51808. name: "Front",
  51809. image: {
  51810. source: "./media/characters/zarina/front.svg",
  51811. extra: 1733/1425,
  51812. bottom: 93/1826
  51813. }
  51814. },
  51815. squatting: {
  51816. height: math.unit(2.14, "meters"),
  51817. name: "Squatting",
  51818. image: {
  51819. source: "./media/characters/zarina/squatting.svg",
  51820. extra: 1073/788,
  51821. bottom: 63/1136
  51822. }
  51823. },
  51824. back: {
  51825. height: math.unit(2.14, "meters"),
  51826. name: "Back",
  51827. image: {
  51828. source: "./media/characters/zarina/back.svg",
  51829. extra: 1128/885,
  51830. bottom: 0/1128
  51831. }
  51832. },
  51833. },
  51834. [
  51835. {
  51836. name: "Normal",
  51837. height: math.unit(3.4, "meters"),
  51838. default: true
  51839. },
  51840. {
  51841. name: "Big",
  51842. height: math.unit(5, "meters")
  51843. },
  51844. {
  51845. name: "Macro",
  51846. height: math.unit(110, "meters")
  51847. },
  51848. ]
  51849. ))
  51850. characterMakers.push(() => makeCharacter(
  51851. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51852. {
  51853. front: {
  51854. height: math.unit(7, "feet"),
  51855. name: "Front",
  51856. image: {
  51857. source: "./media/characters/ventus-astro-fox/front.svg",
  51858. extra: 1792/1623,
  51859. bottom: 28/1820
  51860. }
  51861. },
  51862. back: {
  51863. height: math.unit(7, "feet"),
  51864. name: "Back",
  51865. image: {
  51866. source: "./media/characters/ventus-astro-fox/back.svg",
  51867. extra: 1789/1620,
  51868. bottom: 31/1820
  51869. }
  51870. },
  51871. outfit: {
  51872. height: math.unit(7, "feet"),
  51873. name: "Outfit",
  51874. image: {
  51875. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51876. extra: 1054/925,
  51877. bottom: 15/1069
  51878. }
  51879. },
  51880. head: {
  51881. height: math.unit(1.12, "feet"),
  51882. name: "Head",
  51883. image: {
  51884. source: "./media/characters/ventus-astro-fox/head.svg",
  51885. extra: 866/504,
  51886. bottom: 0/866
  51887. }
  51888. },
  51889. hand: {
  51890. height: math.unit(1, "feet"),
  51891. name: "Hand",
  51892. image: {
  51893. source: "./media/characters/ventus-astro-fox/hand.svg"
  51894. }
  51895. },
  51896. paw: {
  51897. height: math.unit(1.5, "feet"),
  51898. name: "Paw",
  51899. image: {
  51900. source: "./media/characters/ventus-astro-fox/paw.svg"
  51901. }
  51902. },
  51903. },
  51904. [
  51905. {
  51906. name: "Normal",
  51907. height: math.unit(7, "feet"),
  51908. default: true
  51909. },
  51910. {
  51911. name: "Macro",
  51912. height: math.unit(200, "feet")
  51913. },
  51914. {
  51915. name: "Cosmic",
  51916. height: math.unit(3, "universes")
  51917. },
  51918. ]
  51919. ))
  51920. characterMakers.push(() => makeCharacter(
  51921. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51922. {
  51923. front: {
  51924. height: math.unit(3, "meters"),
  51925. weight: math.unit(7000, "lb"),
  51926. name: "Front",
  51927. image: {
  51928. source: "./media/characters/core-t/front.svg",
  51929. extra: 5729/4941,
  51930. bottom: 1129/6858
  51931. }
  51932. },
  51933. },
  51934. [
  51935. {
  51936. name: "Big",
  51937. height: math.unit(3, "meters"),
  51938. default: true
  51939. },
  51940. ]
  51941. ))
  51942. characterMakers.push(() => makeCharacter(
  51943. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51944. {
  51945. normal: {
  51946. height: math.unit(6 + 6/12, "feet"),
  51947. weight: math.unit(275, "lb"),
  51948. name: "Front",
  51949. image: {
  51950. source: "./media/characters/cadbunny/normal.svg",
  51951. extra: 1129/947,
  51952. bottom: 93/1222
  51953. },
  51954. default: true,
  51955. form: "normal"
  51956. },
  51957. gigantamax: {
  51958. height: math.unit(26, "feet"),
  51959. weight: math.unit(16000, "lb"),
  51960. name: "Front",
  51961. image: {
  51962. source: "./media/characters/cadbunny/gigantamax.svg",
  51963. extra: 1133/944,
  51964. bottom: 90/1223
  51965. },
  51966. default: true,
  51967. form: "gigantamax"
  51968. },
  51969. },
  51970. [
  51971. {
  51972. name: "Normal",
  51973. height: math.unit(6 + 6/12, "feet"),
  51974. default: true,
  51975. form: "normal"
  51976. },
  51977. {
  51978. name: "Small",
  51979. height: math.unit(26, "feet"),
  51980. default: true,
  51981. form: "gigantamax"
  51982. },
  51983. {
  51984. name: "Large",
  51985. height: math.unit(78, "feet"),
  51986. form: "gigantamax"
  51987. },
  51988. ],
  51989. {
  51990. "normal": {
  51991. name: "Normal",
  51992. default: true
  51993. },
  51994. "gigantamax": {
  51995. name: "Gigantamax"
  51996. }
  51997. }
  51998. ))
  51999. characterMakers.push(() => makeCharacter(
  52000. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52001. {
  52002. anthroFront: {
  52003. height: math.unit(8, "feet"),
  52004. weight: math.unit(300, "lb"),
  52005. name: "Front",
  52006. image: {
  52007. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52008. extra: 1272/1176,
  52009. bottom: 53/1325
  52010. },
  52011. form: "anthro",
  52012. default: true
  52013. },
  52014. feralSide: {
  52015. height: math.unit(4, "feet"),
  52016. weight: math.unit(250, "lb"),
  52017. name: "Side",
  52018. image: {
  52019. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52020. extra: 731/621,
  52021. bottom: 0/731
  52022. },
  52023. form: "feral",
  52024. default: true
  52025. },
  52026. },
  52027. [
  52028. {
  52029. name: "Regular",
  52030. height: math.unit(8, "feet"),
  52031. form: "anthro"
  52032. },
  52033. {
  52034. name: "Macro",
  52035. height: math.unit(250, "feet"),
  52036. form: "anthro",
  52037. default: true
  52038. },
  52039. {
  52040. name: "Regular",
  52041. height: math.unit(4, "feet"),
  52042. form: "feral"
  52043. },
  52044. {
  52045. name: "Macro",
  52046. height: math.unit(125, "feet"),
  52047. form: "feral",
  52048. default: true
  52049. },
  52050. ],
  52051. {
  52052. "anthro": {
  52053. name: "Anthro",
  52054. default: true
  52055. },
  52056. "feral": {
  52057. name: "Feral",
  52058. },
  52059. }
  52060. ))
  52061. characterMakers.push(() => makeCharacter(
  52062. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52063. {
  52064. front: {
  52065. height: math.unit(11 + 10/12, "feet"),
  52066. weight: math.unit(1587, "kg"),
  52067. name: "Front",
  52068. image: {
  52069. source: "./media/characters/maple-javira-dragon/front.svg",
  52070. extra: 1136/744,
  52071. bottom: 73/1209
  52072. }
  52073. },
  52074. side: {
  52075. height: math.unit(11 + 10/12, "feet"),
  52076. weight: math.unit(1587, "kg"),
  52077. name: "Side",
  52078. image: {
  52079. source: "./media/characters/maple-javira-dragon/side.svg",
  52080. extra: 712/505,
  52081. bottom: 17/729
  52082. }
  52083. },
  52084. head: {
  52085. height: math.unit(8.05, "feet"),
  52086. name: "Head",
  52087. image: {
  52088. source: "./media/characters/maple-javira-dragon/head.svg",
  52089. extra: 1420/1344,
  52090. bottom: 0/1420
  52091. }
  52092. },
  52093. },
  52094. [
  52095. {
  52096. name: "Normal",
  52097. height: math.unit(11 + 10/12, "feet"),
  52098. default: true
  52099. },
  52100. ]
  52101. ))
  52102. characterMakers.push(() => makeCharacter(
  52103. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52104. {
  52105. front: {
  52106. height: math.unit(117, "cm"),
  52107. weight: math.unit(50, "kg"),
  52108. name: "Front",
  52109. image: {
  52110. source: "./media/characters/sonia-wyverntail/front.svg",
  52111. extra: 708/592,
  52112. bottom: 25/733
  52113. }
  52114. },
  52115. },
  52116. [
  52117. {
  52118. name: "Normal",
  52119. height: math.unit(117, "cm"),
  52120. default: true
  52121. },
  52122. ]
  52123. ))
  52124. characterMakers.push(() => makeCharacter(
  52125. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52126. {
  52127. front: {
  52128. height: math.unit(6 + 5/12, "feet"),
  52129. name: "Front",
  52130. image: {
  52131. source: "./media/characters/micah/front.svg",
  52132. extra: 1758/1546,
  52133. bottom: 214/1972
  52134. }
  52135. },
  52136. },
  52137. [
  52138. {
  52139. name: "Normal",
  52140. height: math.unit(6 + 5/12, "feet"),
  52141. default: true
  52142. },
  52143. ]
  52144. ))
  52145. characterMakers.push(() => makeCharacter(
  52146. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52147. {
  52148. front: {
  52149. height: math.unit(1.75, "meters"),
  52150. weight: math.unit(100, "kg"),
  52151. name: "Front",
  52152. image: {
  52153. source: "./media/characters/zarya/front.svg",
  52154. extra: 741/735,
  52155. bottom: 44/785
  52156. },
  52157. extraAttributes: {
  52158. "tailLength": {
  52159. name: "Tail Length",
  52160. power: 1,
  52161. type: "length",
  52162. base: math.unit(180, "cm")
  52163. },
  52164. "pawLength": {
  52165. name: "Paw Length",
  52166. power: 1,
  52167. type: "length",
  52168. base: math.unit(31, "cm")
  52169. },
  52170. }
  52171. },
  52172. side: {
  52173. height: math.unit(1.75, "meters"),
  52174. weight: math.unit(100, "kg"),
  52175. name: "Side",
  52176. image: {
  52177. source: "./media/characters/zarya/side.svg",
  52178. extra: 776/770,
  52179. bottom: 17/793
  52180. },
  52181. extraAttributes: {
  52182. "tailLength": {
  52183. name: "Tail Length",
  52184. power: 1,
  52185. type: "length",
  52186. base: math.unit(180, "cm")
  52187. },
  52188. "pawLength": {
  52189. name: "Paw Length",
  52190. power: 1,
  52191. type: "length",
  52192. base: math.unit(31, "cm")
  52193. },
  52194. }
  52195. },
  52196. back: {
  52197. height: math.unit(1.75, "meters"),
  52198. weight: math.unit(100, "kg"),
  52199. name: "Back",
  52200. image: {
  52201. source: "./media/characters/zarya/back.svg",
  52202. extra: 741/735,
  52203. bottom: 44/785
  52204. },
  52205. extraAttributes: {
  52206. "tailLength": {
  52207. name: "Tail Length",
  52208. power: 1,
  52209. type: "length",
  52210. base: math.unit(180, "cm")
  52211. },
  52212. "pawLength": {
  52213. name: "Paw Length",
  52214. power: 1,
  52215. type: "length",
  52216. base: math.unit(31, "cm")
  52217. },
  52218. }
  52219. },
  52220. frontNoTail: {
  52221. height: math.unit(1.75, "meters"),
  52222. weight: math.unit(100, "kg"),
  52223. name: "Front (No Tail)",
  52224. image: {
  52225. source: "./media/characters/zarya/front-no-tail.svg",
  52226. extra: 741/735,
  52227. bottom: 44/785
  52228. },
  52229. extraAttributes: {
  52230. "tailLength": {
  52231. name: "Tail Length",
  52232. power: 1,
  52233. type: "length",
  52234. base: math.unit(180, "cm")
  52235. },
  52236. "pawLength": {
  52237. name: "Paw Length",
  52238. power: 1,
  52239. type: "length",
  52240. base: math.unit(31, "cm")
  52241. },
  52242. }
  52243. },
  52244. dressed: {
  52245. height: math.unit(1.75, "meters"),
  52246. weight: math.unit(100, "kg"),
  52247. name: "Dressed",
  52248. image: {
  52249. source: "./media/characters/zarya/dressed.svg",
  52250. extra: 683/672,
  52251. bottom: 79/762
  52252. },
  52253. extraAttributes: {
  52254. "tailLength": {
  52255. name: "Tail Length",
  52256. power: 1,
  52257. type: "length",
  52258. base: math.unit(180, "cm")
  52259. },
  52260. "pawLength": {
  52261. name: "Paw Length",
  52262. power: 1,
  52263. type: "length",
  52264. base: math.unit(31, "cm")
  52265. },
  52266. }
  52267. },
  52268. },
  52269. [
  52270. {
  52271. name: "Micro",
  52272. height: math.unit(5, "cm")
  52273. },
  52274. {
  52275. name: "Normal",
  52276. height: math.unit(1.75, "meters"),
  52277. default: true
  52278. },
  52279. {
  52280. name: "Macro",
  52281. height: math.unit(122, "meters")
  52282. },
  52283. ]
  52284. ))
  52285. characterMakers.push(() => makeCharacter(
  52286. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52287. {
  52288. front: {
  52289. height: math.unit(7.5, "feet"),
  52290. name: "Front",
  52291. image: {
  52292. source: "./media/characters/sven-hatisson/front.svg",
  52293. extra: 917/857,
  52294. bottom: 42/959
  52295. }
  52296. },
  52297. back: {
  52298. height: math.unit(7.5, "feet"),
  52299. name: "Back",
  52300. image: {
  52301. source: "./media/characters/sven-hatisson/back.svg",
  52302. extra: 903/856,
  52303. bottom: 15/918
  52304. }
  52305. },
  52306. },
  52307. [
  52308. {
  52309. name: "Base Height",
  52310. height: math.unit(7.5, "feet")
  52311. },
  52312. {
  52313. name: "Usual Height",
  52314. height: math.unit(13.5, "feet"),
  52315. default: true
  52316. },
  52317. {
  52318. name: "Smaller Macro",
  52319. height: math.unit(85, "feet")
  52320. },
  52321. {
  52322. name: "Moderate Macro",
  52323. height: math.unit(320, "feet")
  52324. },
  52325. {
  52326. name: "Large Macro",
  52327. height: math.unit(1000, "feet")
  52328. },
  52329. {
  52330. name: "Largest Size",
  52331. height: math.unit(2, "miles")
  52332. },
  52333. ]
  52334. ))
  52335. characterMakers.push(() => makeCharacter(
  52336. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52337. {
  52338. side: {
  52339. height: math.unit(1.8, "meters"),
  52340. weight: math.unit(275, "kg"),
  52341. name: "Side",
  52342. image: {
  52343. source: "./media/characters/terra/side.svg",
  52344. extra: 1273/1147,
  52345. bottom: 0/1273
  52346. }
  52347. },
  52348. },
  52349. [
  52350. {
  52351. name: "Normal",
  52352. height: math.unit(16.2, "meters"),
  52353. default: true
  52354. },
  52355. ]
  52356. ))
  52357. characterMakers.push(() => makeCharacter(
  52358. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52359. {
  52360. borzoiFront: {
  52361. height: math.unit(6 + 9/12, "feet"),
  52362. name: "Front",
  52363. image: {
  52364. source: "./media/characters/rae/borzoi-front.svg",
  52365. extra: 1161/1098,
  52366. bottom: 31/1192
  52367. },
  52368. form: "borzoi",
  52369. default: true
  52370. },
  52371. werewolfFront: {
  52372. height: math.unit(8 + 7/12, "feet"),
  52373. name: "Front",
  52374. image: {
  52375. source: "./media/characters/rae/werewolf-front.svg",
  52376. extra: 1411/1334,
  52377. bottom: 127/1538
  52378. },
  52379. form: "werewolf",
  52380. default: true
  52381. },
  52382. },
  52383. [
  52384. {
  52385. name: "Normal",
  52386. height: math.unit(6 + 9/12, "feet"),
  52387. default: true,
  52388. form: "borzoi"
  52389. },
  52390. {
  52391. name: "Normal",
  52392. height: math.unit(8 + 7/12, "feet"),
  52393. default: true,
  52394. form: "werewolf"
  52395. },
  52396. ],
  52397. {
  52398. "borzoi": {
  52399. name: "Borzoi",
  52400. default: true
  52401. },
  52402. "werewolf": {
  52403. name: "Werewolf",
  52404. },
  52405. }
  52406. ))
  52407. characterMakers.push(() => makeCharacter(
  52408. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52409. {
  52410. front: {
  52411. height: math.unit(8 + 7/12, "feet"),
  52412. weight: math.unit(482, "lb"),
  52413. name: "Front",
  52414. image: {
  52415. source: "./media/characters/kit/front.svg",
  52416. extra: 1247/1103,
  52417. bottom: 41/1288
  52418. }
  52419. },
  52420. back: {
  52421. height: math.unit(8 + 7/12, "feet"),
  52422. weight: math.unit(482, "lb"),
  52423. name: "Back",
  52424. image: {
  52425. source: "./media/characters/kit/back.svg",
  52426. extra: 1252/1123,
  52427. bottom: 21/1273
  52428. }
  52429. },
  52430. paw: {
  52431. height: math.unit(1.46, "feet"),
  52432. name: "Paw",
  52433. image: {
  52434. source: "./media/characters/kit/paw.svg"
  52435. }
  52436. },
  52437. },
  52438. [
  52439. {
  52440. name: "Normal",
  52441. height: math.unit(2.61, "meters"),
  52442. default: true
  52443. },
  52444. {
  52445. name: "\"Tall\"",
  52446. height: math.unit(8.21, "meters")
  52447. },
  52448. {
  52449. name: "Tall",
  52450. height: math.unit(19.6, "meters")
  52451. },
  52452. {
  52453. name: "Very Tall",
  52454. height: math.unit(57.91, "meters")
  52455. },
  52456. {
  52457. name: "Semi-Macro",
  52458. height: math.unit(138.64, "meters")
  52459. },
  52460. {
  52461. name: "Macro",
  52462. height: math.unit(831.99, "meters")
  52463. },
  52464. {
  52465. name: "EX-Macro",
  52466. height: math.unit(96451121, "meters")
  52467. },
  52468. {
  52469. name: "S1-Omnipotent",
  52470. height: math.unit(4.42074e+9, "meters")
  52471. },
  52472. {
  52473. name: "S2-Omnipotent",
  52474. height: math.unit(9.42074e+17, "meters")
  52475. },
  52476. {
  52477. name: "Omnipotent",
  52478. height: math.unit(4.23112e+24, "meters")
  52479. },
  52480. {
  52481. name: "Hypergod",
  52482. height: math.unit(5.05176e+27, "meters")
  52483. },
  52484. {
  52485. name: "Hypergod-EX",
  52486. height: math.unit(9.45532e+49, "meters")
  52487. },
  52488. {
  52489. name: "Hypergod-SP",
  52490. height: math.unit(9.45532e+195, "meters")
  52491. },
  52492. ]
  52493. ))
  52494. characterMakers.push(() => makeCharacter(
  52495. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52496. {
  52497. side: {
  52498. height: math.unit(0.6, "meters"),
  52499. weight: math.unit(24, "kg"),
  52500. name: "Side",
  52501. image: {
  52502. source: "./media/characters/celeste/side.svg",
  52503. extra: 810/517,
  52504. bottom: 53/863
  52505. }
  52506. },
  52507. },
  52508. [
  52509. {
  52510. name: "Velociraptor",
  52511. height: math.unit(0.6, "meters"),
  52512. default: true
  52513. },
  52514. {
  52515. name: "Utahraptor",
  52516. height: math.unit(1.8, "meters")
  52517. },
  52518. {
  52519. name: "Gallimimus",
  52520. height: math.unit(4.0, "meters")
  52521. },
  52522. {
  52523. name: "Large",
  52524. height: math.unit(20, "meters")
  52525. },
  52526. {
  52527. name: "Planetary",
  52528. height: math.unit(50, "megameters")
  52529. },
  52530. {
  52531. name: "Stellar",
  52532. height: math.unit(1.5, "gigameters")
  52533. },
  52534. {
  52535. name: "Galactic",
  52536. height: math.unit(100, "exameters")
  52537. },
  52538. ]
  52539. ))
  52540. characterMakers.push(() => makeCharacter(
  52541. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52542. {
  52543. front: {
  52544. height: math.unit(6, "feet"),
  52545. weight: math.unit(210, "lb"),
  52546. name: "Front",
  52547. image: {
  52548. source: "./media/characters/glacia/front.svg",
  52549. extra: 958/901,
  52550. bottom: 45/1003
  52551. }
  52552. },
  52553. },
  52554. [
  52555. {
  52556. name: "Macro",
  52557. height: math.unit(1000, "meters"),
  52558. default: true
  52559. },
  52560. ]
  52561. ))
  52562. characterMakers.push(() => makeCharacter(
  52563. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52564. {
  52565. front: {
  52566. height: math.unit(4, "meters"),
  52567. name: "Front",
  52568. image: {
  52569. source: "./media/characters/giri/front.svg",
  52570. extra: 966/894,
  52571. bottom: 21/987
  52572. }
  52573. },
  52574. },
  52575. [
  52576. {
  52577. name: "Normal",
  52578. height: math.unit(4, "meters"),
  52579. default: true
  52580. },
  52581. ]
  52582. ))
  52583. characterMakers.push(() => makeCharacter(
  52584. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52585. {
  52586. back: {
  52587. height: math.unit(4, "feet"),
  52588. weight: math.unit(37, "lb"),
  52589. name: "Back",
  52590. image: {
  52591. source: "./media/characters/tin/back.svg",
  52592. extra: 845/780,
  52593. bottom: 28/873
  52594. }
  52595. },
  52596. },
  52597. [
  52598. {
  52599. name: "Normal",
  52600. height: math.unit(4, "feet"),
  52601. default: true
  52602. },
  52603. ]
  52604. ))
  52605. characterMakers.push(() => makeCharacter(
  52606. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52607. {
  52608. front: {
  52609. height: math.unit(25, "feet"),
  52610. name: "Front",
  52611. image: {
  52612. source: "./media/characters/cadenza-vivace/front.svg",
  52613. extra: 1842/1578,
  52614. bottom: 30/1872
  52615. }
  52616. },
  52617. },
  52618. [
  52619. {
  52620. name: "Macro",
  52621. height: math.unit(25, "feet"),
  52622. default: true
  52623. },
  52624. ]
  52625. ))
  52626. characterMakers.push(() => makeCharacter(
  52627. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52628. {
  52629. front: {
  52630. height: math.unit(10, "feet"),
  52631. weight: math.unit(625, "kg"),
  52632. name: "Front",
  52633. image: {
  52634. source: "./media/characters/zain/front.svg",
  52635. extra: 1682/1498,
  52636. bottom: 223/1905
  52637. }
  52638. },
  52639. back: {
  52640. height: math.unit(10, "feet"),
  52641. weight: math.unit(625, "kg"),
  52642. name: "Back",
  52643. image: {
  52644. source: "./media/characters/zain/back.svg",
  52645. extra: 1814/1657,
  52646. bottom: 152/1966
  52647. }
  52648. },
  52649. head: {
  52650. height: math.unit(10, "feet"),
  52651. weight: math.unit(625, "kg"),
  52652. name: "Head",
  52653. image: {
  52654. source: "./media/characters/zain/head.svg",
  52655. extra: 1059/762,
  52656. bottom: 0/1059
  52657. }
  52658. },
  52659. },
  52660. [
  52661. {
  52662. name: "Normal",
  52663. height: math.unit(10, "feet"),
  52664. default: true
  52665. },
  52666. ]
  52667. ))
  52668. characterMakers.push(() => makeCharacter(
  52669. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52670. {
  52671. front: {
  52672. height: math.unit(6 + 5/12, "feet"),
  52673. weight: math.unit(750, "lb"),
  52674. name: "Front",
  52675. image: {
  52676. source: "./media/characters/ruchex/front.svg",
  52677. extra: 877/820,
  52678. bottom: 17/894
  52679. },
  52680. extraAttributes: {
  52681. "width": {
  52682. name: "Width",
  52683. power: 1,
  52684. type: "length",
  52685. base: math.unit(4.757, "feet")
  52686. },
  52687. }
  52688. },
  52689. },
  52690. [
  52691. {
  52692. name: "Normal",
  52693. height: math.unit(6 + 5/12, "feet"),
  52694. default: true
  52695. },
  52696. ]
  52697. ))
  52698. characterMakers.push(() => makeCharacter(
  52699. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52700. {
  52701. dressedFront: {
  52702. height: math.unit(191, "cm"),
  52703. weight: math.unit(80, "kg"),
  52704. name: "Front",
  52705. image: {
  52706. source: "./media/characters/buster/dressed-front.svg",
  52707. extra: 1022/973,
  52708. bottom: 69/1091
  52709. }
  52710. },
  52711. dressedBack: {
  52712. height: math.unit(191, "cm"),
  52713. weight: math.unit(80, "kg"),
  52714. name: "Back",
  52715. image: {
  52716. source: "./media/characters/buster/dressed-back.svg",
  52717. extra: 1018/970,
  52718. bottom: 55/1073
  52719. }
  52720. },
  52721. nudeFront: {
  52722. height: math.unit(191, "cm"),
  52723. weight: math.unit(80, "kg"),
  52724. name: "Front (Nude)",
  52725. image: {
  52726. source: "./media/characters/buster/nude-front.svg",
  52727. extra: 1022/973,
  52728. bottom: 69/1091
  52729. }
  52730. },
  52731. nudeBack: {
  52732. height: math.unit(191, "cm"),
  52733. weight: math.unit(80, "kg"),
  52734. name: "Back (Nude)",
  52735. image: {
  52736. source: "./media/characters/buster/nude-back.svg",
  52737. extra: 1018/970,
  52738. bottom: 55/1073
  52739. }
  52740. },
  52741. dick: {
  52742. height: math.unit(2.59, "feet"),
  52743. name: "Dick",
  52744. image: {
  52745. source: "./media/characters/buster/dick.svg"
  52746. }
  52747. },
  52748. ass: {
  52749. height: math.unit(1.2, "feet"),
  52750. name: "Ass",
  52751. image: {
  52752. source: "./media/characters/buster/ass.svg"
  52753. }
  52754. },
  52755. },
  52756. [
  52757. {
  52758. name: "Normal",
  52759. height: math.unit(191, "cm"),
  52760. default: true
  52761. },
  52762. ]
  52763. ))
  52764. characterMakers.push(() => makeCharacter(
  52765. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52766. {
  52767. side: {
  52768. height: math.unit(8.1, "feet"),
  52769. weight: math.unit(3500, "lb"),
  52770. name: "Side",
  52771. image: {
  52772. source: "./media/characters/sonya/side.svg",
  52773. extra: 1730/1317,
  52774. bottom: 86/1816
  52775. }
  52776. },
  52777. },
  52778. [
  52779. {
  52780. name: "Normal",
  52781. height: math.unit(8.1, "feet"),
  52782. default: true
  52783. },
  52784. ]
  52785. ))
  52786. characterMakers.push(() => makeCharacter(
  52787. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52788. {
  52789. front: {
  52790. height: math.unit(6, "feet"),
  52791. weight: math.unit(150, "lb"),
  52792. name: "Front",
  52793. image: {
  52794. source: "./media/characters/cadence-andrysiak/front.svg",
  52795. extra: 1164/1121,
  52796. bottom: 60/1224
  52797. }
  52798. },
  52799. back: {
  52800. height: math.unit(6, "feet"),
  52801. weight: math.unit(150, "lb"),
  52802. name: "Back",
  52803. image: {
  52804. source: "./media/characters/cadence-andrysiak/back.svg",
  52805. extra: 1200/1165,
  52806. bottom: 9/1209
  52807. }
  52808. },
  52809. dressed: {
  52810. height: math.unit(6, "feet"),
  52811. weight: math.unit(150, "lb"),
  52812. name: "Dressed",
  52813. image: {
  52814. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52815. extra: 1164/1121,
  52816. bottom: 60/1224
  52817. }
  52818. },
  52819. },
  52820. [
  52821. {
  52822. name: "Micro",
  52823. height: math.unit(1, "mm")
  52824. },
  52825. {
  52826. name: "Normal",
  52827. height: math.unit(6, "feet"),
  52828. default: true
  52829. },
  52830. ]
  52831. ))
  52832. characterMakers.push(() => makeCharacter(
  52833. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52834. {
  52835. front: {
  52836. height: math.unit(60, "inches"),
  52837. weight: math.unit(16, "lb"),
  52838. preyCapacity: math.unit(80, "liters"),
  52839. name: "Front",
  52840. image: {
  52841. source: "./media/characters/penny-lynx/front.svg",
  52842. extra: 1959/1769,
  52843. bottom: 49/2008
  52844. }
  52845. },
  52846. },
  52847. [
  52848. {
  52849. name: "Nokia",
  52850. height: math.unit(2, "inches")
  52851. },
  52852. {
  52853. name: "Desktop",
  52854. height: math.unit(24, "inches")
  52855. },
  52856. {
  52857. name: "TV",
  52858. height: math.unit(60, "inches")
  52859. },
  52860. {
  52861. name: "Jumbotron",
  52862. height: math.unit(12, "feet")
  52863. },
  52864. {
  52865. name: "Billboard",
  52866. height: math.unit(48, "feet"),
  52867. default: true
  52868. },
  52869. {
  52870. name: "IMAX",
  52871. height: math.unit(96, "feet")
  52872. },
  52873. {
  52874. name: "SINGULARITY",
  52875. height: math.unit(864938, "miles")
  52876. },
  52877. ]
  52878. ))
  52879. characterMakers.push(() => makeCharacter(
  52880. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52881. {
  52882. front: {
  52883. height: math.unit(5 + 4/12, "feet"),
  52884. weight: math.unit(230, "lb"),
  52885. name: "Front",
  52886. image: {
  52887. source: "./media/characters/sukebe/front.svg",
  52888. extra: 2130/2038,
  52889. bottom: 90/2220
  52890. }
  52891. },
  52892. back: {
  52893. height: math.unit(3.48, "feet"),
  52894. weight: math.unit(230, "lb"),
  52895. name: "Back",
  52896. image: {
  52897. source: "./media/characters/sukebe/back.svg",
  52898. extra: 1670/1604,
  52899. bottom: 0/1670
  52900. }
  52901. },
  52902. },
  52903. [
  52904. {
  52905. name: "Normal",
  52906. height: math.unit(5 + 4/12, "feet"),
  52907. default: true
  52908. },
  52909. ]
  52910. ))
  52911. characterMakers.push(() => makeCharacter(
  52912. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52913. {
  52914. front: {
  52915. height: math.unit(6, "feet"),
  52916. name: "Front",
  52917. image: {
  52918. source: "./media/characters/nylla/front.svg",
  52919. extra: 1868/1699,
  52920. bottom: 97/1965
  52921. }
  52922. },
  52923. back: {
  52924. height: math.unit(6, "feet"),
  52925. name: "Back",
  52926. image: {
  52927. source: "./media/characters/nylla/back.svg",
  52928. extra: 1889/1712,
  52929. bottom: 93/1982
  52930. }
  52931. },
  52932. frontNsfw: {
  52933. height: math.unit(6, "feet"),
  52934. name: "Front (NSFW)",
  52935. image: {
  52936. source: "./media/characters/nylla/front-nsfw.svg",
  52937. extra: 1868/1699,
  52938. bottom: 97/1965
  52939. },
  52940. extraAttributes: {
  52941. "dickLength": {
  52942. name: "Dick Length",
  52943. power: 1,
  52944. type: "length",
  52945. base: math.unit(1.4, "feet")
  52946. },
  52947. "cumVolume": {
  52948. name: "Cum Volume",
  52949. power: 3,
  52950. type: "volume",
  52951. base: math.unit(100, "mL")
  52952. },
  52953. }
  52954. },
  52955. backNsfw: {
  52956. height: math.unit(6, "feet"),
  52957. name: "Back (NSFW)",
  52958. image: {
  52959. source: "./media/characters/nylla/back-nsfw.svg",
  52960. extra: 1889/1712,
  52961. bottom: 93/1982
  52962. }
  52963. },
  52964. maw: {
  52965. height: math.unit(2.10, "feet"),
  52966. name: "Maw",
  52967. image: {
  52968. source: "./media/characters/nylla/maw.svg"
  52969. }
  52970. },
  52971. paws: {
  52972. height: math.unit(2.06, "feet"),
  52973. name: "Paws",
  52974. image: {
  52975. source: "./media/characters/nylla/paws.svg"
  52976. }
  52977. },
  52978. muzzle: {
  52979. height: math.unit(0.61, "feet"),
  52980. name: "Muzzle",
  52981. image: {
  52982. source: "./media/characters/nylla/muzzle.svg"
  52983. }
  52984. },
  52985. sheath: {
  52986. height: math.unit(1.305, "feet"),
  52987. name: "Sheath",
  52988. image: {
  52989. source: "./media/characters/nylla/sheath.svg"
  52990. }
  52991. },
  52992. },
  52993. [
  52994. {
  52995. name: "Micro",
  52996. height: math.unit(7.5, "inches")
  52997. },
  52998. {
  52999. name: "Normal",
  53000. height: math.unit(7, "feet"),
  53001. default: true
  53002. },
  53003. {
  53004. name: "Macro",
  53005. height: math.unit(60, "feet")
  53006. },
  53007. {
  53008. name: "Mega",
  53009. height: math.unit(200, "feet")
  53010. },
  53011. ]
  53012. ))
  53013. characterMakers.push(() => makeCharacter(
  53014. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53015. {
  53016. front: {
  53017. height: math.unit(10, "feet"),
  53018. weight: math.unit(2300, "lb"),
  53019. name: "Front",
  53020. image: {
  53021. source: "./media/characters/hunt3r/front.svg",
  53022. extra: 1909/1742,
  53023. bottom: 46/1955
  53024. }
  53025. },
  53026. },
  53027. [
  53028. {
  53029. name: "Normal",
  53030. height: math.unit(10, "feet"),
  53031. default: true
  53032. },
  53033. ]
  53034. ))
  53035. characterMakers.push(() => makeCharacter(
  53036. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53037. {
  53038. dressed: {
  53039. height: math.unit(11, "feet"),
  53040. weight: math.unit(18500, "lb"),
  53041. preyCapacity: math.unit(9, "people"),
  53042. name: "Dressed",
  53043. image: {
  53044. source: "./media/characters/cylphis/dressed.svg",
  53045. extra: 1028/1003,
  53046. bottom: 75/1103
  53047. },
  53048. },
  53049. undressed: {
  53050. height: math.unit(11, "feet"),
  53051. weight: math.unit(18500, "lb"),
  53052. preyCapacity: math.unit(9, "people"),
  53053. name: "Undressed",
  53054. image: {
  53055. source: "./media/characters/cylphis/undressed.svg",
  53056. extra: 1028/1003,
  53057. bottom: 75/1103
  53058. }
  53059. },
  53060. full: {
  53061. height: math.unit(11, "feet"),
  53062. weight: math.unit(18500 + 150*9, "lb"),
  53063. preyCapacity: math.unit(9, "people"),
  53064. name: "Full",
  53065. image: {
  53066. source: "./media/characters/cylphis/full.svg",
  53067. extra: 1028/1003,
  53068. bottom: 75/1103
  53069. }
  53070. },
  53071. },
  53072. [
  53073. {
  53074. name: "Small",
  53075. height: math.unit(8, "feet")
  53076. },
  53077. {
  53078. name: "Normal",
  53079. height: math.unit(11, "feet"),
  53080. default: true
  53081. },
  53082. ]
  53083. ))
  53084. characterMakers.push(() => makeCharacter(
  53085. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53086. {
  53087. front: {
  53088. height: math.unit(2 + 7/12, "feet"),
  53089. name: "Front",
  53090. image: {
  53091. source: "./media/characters/orishan/front.svg",
  53092. extra: 1058/1023,
  53093. bottom: 23/1081
  53094. }
  53095. },
  53096. back: {
  53097. height: math.unit(2 + 7/12, "feet"),
  53098. name: "Back",
  53099. image: {
  53100. source: "./media/characters/orishan/back.svg",
  53101. extra: 1058/1023,
  53102. bottom: 23/1081
  53103. }
  53104. },
  53105. },
  53106. [
  53107. {
  53108. name: "Micro",
  53109. height: math.unit(2, "cm")
  53110. },
  53111. {
  53112. name: "Normal",
  53113. height: math.unit(2 + 7/12, "feet"),
  53114. default: true
  53115. },
  53116. ]
  53117. ))
  53118. characterMakers.push(() => makeCharacter(
  53119. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53120. {
  53121. front: {
  53122. height: math.unit(3, "meters"),
  53123. weight: math.unit(508, "kg"),
  53124. name: "Front",
  53125. image: {
  53126. source: "./media/characters/seranis/front.svg",
  53127. extra: 1478/1454,
  53128. bottom: 41/1519
  53129. }
  53130. },
  53131. },
  53132. [
  53133. {
  53134. name: "Normal",
  53135. height: math.unit(3, "meters"),
  53136. default: true
  53137. },
  53138. {
  53139. name: "Macro",
  53140. height: math.unit(108, "meters")
  53141. },
  53142. {
  53143. name: "Megamacro",
  53144. height: math.unit(1250, "meters")
  53145. },
  53146. ]
  53147. ))
  53148. characterMakers.push(() => makeCharacter(
  53149. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53150. {
  53151. undressed: {
  53152. height: math.unit(5 + 3/12, "feet"),
  53153. name: "Undressed",
  53154. image: {
  53155. source: "./media/characters/ankou/undressed.svg",
  53156. extra: 1301/1213,
  53157. bottom: 87/1388
  53158. }
  53159. },
  53160. dressed: {
  53161. height: math.unit(5 + 3/12, "feet"),
  53162. name: "Dressed",
  53163. image: {
  53164. source: "./media/characters/ankou/dressed.svg",
  53165. extra: 1301/1213,
  53166. bottom: 87/1388
  53167. }
  53168. },
  53169. head: {
  53170. height: math.unit(1.61, "feet"),
  53171. name: "Head",
  53172. image: {
  53173. source: "./media/characters/ankou/head.svg"
  53174. }
  53175. },
  53176. },
  53177. [
  53178. {
  53179. name: "Normal",
  53180. height: math.unit(5 + 3/12, "feet"),
  53181. default: true
  53182. },
  53183. ]
  53184. ))
  53185. characterMakers.push(() => makeCharacter(
  53186. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53187. {
  53188. side: {
  53189. height: math.unit(6 + 3/12, "feet"),
  53190. weight: math.unit(200, "kg"),
  53191. name: "Side",
  53192. image: {
  53193. source: "./media/characters/juniper-skunktaur/side.svg",
  53194. extra: 1574/1229,
  53195. bottom: 38/1612
  53196. }
  53197. },
  53198. front: {
  53199. height: math.unit(6 + 3/12, "feet"),
  53200. weight: math.unit(200, "kg"),
  53201. name: "Front",
  53202. image: {
  53203. source: "./media/characters/juniper-skunktaur/front.svg",
  53204. extra: 1337/1278,
  53205. bottom: 22/1359
  53206. }
  53207. },
  53208. back: {
  53209. height: math.unit(6 + 3/12, "feet"),
  53210. weight: math.unit(200, "kg"),
  53211. name: "Back",
  53212. image: {
  53213. source: "./media/characters/juniper-skunktaur/back.svg",
  53214. extra: 1618/1273,
  53215. bottom: 13/1631
  53216. }
  53217. },
  53218. top: {
  53219. height: math.unit(2.62, "feet"),
  53220. weight: math.unit(200, "kg"),
  53221. name: "Top",
  53222. image: {
  53223. source: "./media/characters/juniper-skunktaur/top.svg"
  53224. }
  53225. },
  53226. },
  53227. [
  53228. {
  53229. name: "Normal",
  53230. height: math.unit(6 + 3/12, "feet"),
  53231. default: true
  53232. },
  53233. ]
  53234. ))
  53235. characterMakers.push(() => makeCharacter(
  53236. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53237. {
  53238. front: {
  53239. height: math.unit(20.5, "feet"),
  53240. name: "Front",
  53241. image: {
  53242. source: "./media/characters/rei/front.svg",
  53243. extra: 1349/1195,
  53244. bottom: 31/1380
  53245. }
  53246. },
  53247. back: {
  53248. height: math.unit(20.5, "feet"),
  53249. name: "Back",
  53250. image: {
  53251. source: "./media/characters/rei/back.svg",
  53252. extra: 1358/1204,
  53253. bottom: 22/1380
  53254. }
  53255. },
  53256. pawsDigi: {
  53257. height: math.unit(3.45, "feet"),
  53258. name: "Paws (Digi)",
  53259. image: {
  53260. source: "./media/characters/rei/paws-digi.svg"
  53261. }
  53262. },
  53263. pawsPlanti: {
  53264. height: math.unit(3.45, "feet"),
  53265. name: "Paws (Planti)",
  53266. image: {
  53267. source: "./media/characters/rei/paws-planti.svg"
  53268. }
  53269. },
  53270. },
  53271. [
  53272. {
  53273. name: "Normal",
  53274. height: math.unit(20.5, "feet"),
  53275. default: true
  53276. },
  53277. ]
  53278. ))
  53279. characterMakers.push(() => makeCharacter(
  53280. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53281. {
  53282. front: {
  53283. height: math.unit(5 + 11/12, "feet"),
  53284. name: "Front",
  53285. image: {
  53286. source: "./media/characters/carina/front.svg",
  53287. extra: 1720/1449,
  53288. bottom: 14/1734
  53289. }
  53290. },
  53291. back: {
  53292. height: math.unit(5 + 11/12, "feet"),
  53293. name: "Back",
  53294. image: {
  53295. source: "./media/characters/carina/back.svg",
  53296. extra: 1493/1445,
  53297. bottom: 17/1510
  53298. }
  53299. },
  53300. paw: {
  53301. height: math.unit(0.92, "feet"),
  53302. name: "Paw",
  53303. image: {
  53304. source: "./media/characters/carina/paw.svg"
  53305. }
  53306. },
  53307. },
  53308. [
  53309. {
  53310. name: "Normal",
  53311. height: math.unit(5 + 11/12, "feet"),
  53312. default: true
  53313. },
  53314. ]
  53315. ))
  53316. characterMakers.push(() => makeCharacter(
  53317. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53318. {
  53319. normal_front: {
  53320. height: math.unit(4.88, "meters"),
  53321. name: "Front",
  53322. image: {
  53323. source: "./media/characters/maya/normal-front.svg",
  53324. extra: 1222/1145,
  53325. bottom: 57/1279
  53326. },
  53327. form: "normal",
  53328. default: true
  53329. },
  53330. monstrous_front: {
  53331. height: math.unit(10, "meters"),
  53332. name: "Front",
  53333. image: {
  53334. source: "./media/characters/maya/monstrous-front.svg",
  53335. extra: 1523/1109,
  53336. bottom: 113/1636
  53337. },
  53338. form: "monstrous",
  53339. extraAttributes: {
  53340. "swallowSize": {
  53341. name: "Tailmaw Bite Size",
  53342. power: 3,
  53343. type: "volume",
  53344. base: math.unit(43000, "liters")
  53345. },
  53346. }
  53347. },
  53348. taur_front: {
  53349. height: math.unit(10, "meters"),
  53350. name: "Front",
  53351. image: {
  53352. source: "./media/characters/maya/taur-front.svg",
  53353. extra: 743/506,
  53354. bottom: 101/844
  53355. },
  53356. form: "taur",
  53357. },
  53358. },
  53359. [
  53360. {
  53361. name: "Normal",
  53362. height: math.unit(4.88, "meters"),
  53363. default: true,
  53364. form: "normal"
  53365. },
  53366. {
  53367. name: "Macro",
  53368. height: math.unit(38.1, "meters"),
  53369. form: "normal"
  53370. },
  53371. {
  53372. name: "Macro+",
  53373. height: math.unit(152.4, "meters"),
  53374. form: "normal"
  53375. },
  53376. {
  53377. name: "Macro++",
  53378. height: math.unit(16.09, "km"),
  53379. form: "normal"
  53380. },
  53381. {
  53382. name: "Mega-macro",
  53383. height: math.unit(700, "megameters"),
  53384. form: "normal"
  53385. },
  53386. {
  53387. name: "Satiated",
  53388. height: math.unit(10, "meters"),
  53389. default: true,
  53390. form: "monstrous"
  53391. },
  53392. {
  53393. name: "Hungry",
  53394. height: math.unit(75, "meters"),
  53395. form: "monstrous"
  53396. },
  53397. {
  53398. name: "Ravenous",
  53399. height: math.unit(500, "meters"),
  53400. form: "monstrous"
  53401. },
  53402. {
  53403. name: "\"Normal\"",
  53404. height: math.unit(10, "meters"),
  53405. form: "taur"
  53406. },
  53407. {
  53408. name: "Macro",
  53409. height: math.unit(50, "meters"),
  53410. form: "taur"
  53411. },
  53412. ],
  53413. {
  53414. "normal": {
  53415. name: "Normal",
  53416. default: true
  53417. },
  53418. "monstrous": {
  53419. name: "Monstrous",
  53420. },
  53421. "taur": {
  53422. name: "Taur",
  53423. },
  53424. }
  53425. ))
  53426. characterMakers.push(() => makeCharacter(
  53427. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53428. {
  53429. front: {
  53430. height: math.unit(6 + 2/12, "feet"),
  53431. weight: math.unit(500, "lb"),
  53432. preyCapacity: math.unit(4, "people"),
  53433. name: "Front",
  53434. image: {
  53435. source: "./media/characters/yepir/front.svg"
  53436. }
  53437. },
  53438. side: {
  53439. height: math.unit(6 + 2/12, "feet"),
  53440. weight: math.unit(500, "lb"),
  53441. preyCapacity: math.unit(4, "people"),
  53442. name: "Side",
  53443. image: {
  53444. source: "./media/characters/yepir/side.svg"
  53445. }
  53446. },
  53447. paw: {
  53448. height: math.unit(1.05, "feet"),
  53449. name: "Paw",
  53450. image: {
  53451. source: "./media/characters/yepir/paw.svg"
  53452. }
  53453. },
  53454. },
  53455. [
  53456. {
  53457. name: "Normal",
  53458. height: math.unit(6 + 2/12, "feet"),
  53459. default: true
  53460. },
  53461. ]
  53462. ))
  53463. characterMakers.push(() => makeCharacter(
  53464. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53465. {
  53466. front: {
  53467. height: math.unit(5 + 4/12, "feet"),
  53468. name: "Front",
  53469. image: {
  53470. source: "./media/characters/russec/front.svg",
  53471. extra: 1926/1626,
  53472. bottom: 72/1998
  53473. }
  53474. },
  53475. back: {
  53476. height: math.unit(5 + 4/12, "feet"),
  53477. name: "Back",
  53478. image: {
  53479. source: "./media/characters/russec/back.svg",
  53480. extra: 1910/1591,
  53481. bottom: 48/1958
  53482. }
  53483. },
  53484. },
  53485. [
  53486. {
  53487. name: "Small",
  53488. height: math.unit(5 + 4/12, "feet")
  53489. },
  53490. {
  53491. name: "Normal",
  53492. height: math.unit(72, "feet"),
  53493. default: true
  53494. },
  53495. ]
  53496. ))
  53497. characterMakers.push(() => makeCharacter(
  53498. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53499. {
  53500. side: {
  53501. height: math.unit(12, "feet"),
  53502. name: "Side",
  53503. image: {
  53504. source: "./media/characters/cianus/side.svg",
  53505. extra: 808/526,
  53506. bottom: 61/869
  53507. }
  53508. },
  53509. },
  53510. [
  53511. {
  53512. name: "Normal",
  53513. height: math.unit(12, "feet"),
  53514. default: true
  53515. },
  53516. ]
  53517. ))
  53518. characterMakers.push(() => makeCharacter(
  53519. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53520. {
  53521. front: {
  53522. height: math.unit(9 + 6/12, "feet"),
  53523. weight: math.unit(300, "lb"),
  53524. name: "Front",
  53525. image: {
  53526. source: "./media/characters/ahab/front.svg",
  53527. extra: 1897/1868,
  53528. bottom: 121/2018
  53529. }
  53530. },
  53531. frontNsfw: {
  53532. height: math.unit(9 + 6/12, "feet"),
  53533. weight: math.unit(300, "lb"),
  53534. name: "Front-nsfw",
  53535. image: {
  53536. source: "./media/characters/ahab/front-nsfw.svg",
  53537. extra: 1897/1868,
  53538. bottom: 121/2018
  53539. }
  53540. },
  53541. },
  53542. [
  53543. {
  53544. name: "Normal",
  53545. height: math.unit(9 + 6/12, "feet")
  53546. },
  53547. {
  53548. name: "Macro",
  53549. height: math.unit(657, "feet"),
  53550. default: true
  53551. },
  53552. ]
  53553. ))
  53554. characterMakers.push(() => makeCharacter(
  53555. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53556. {
  53557. front: {
  53558. height: math.unit(2.69, "meters"),
  53559. weight: math.unit(132, "kg"),
  53560. name: "Front",
  53561. image: {
  53562. source: "./media/characters/aarkus/front.svg",
  53563. extra: 1400/1231,
  53564. bottom: 34/1434
  53565. }
  53566. },
  53567. back: {
  53568. height: math.unit(2.69, "meters"),
  53569. weight: math.unit(132, "kg"),
  53570. name: "Back",
  53571. image: {
  53572. source: "./media/characters/aarkus/back.svg",
  53573. extra: 1381/1218,
  53574. bottom: 30/1411
  53575. }
  53576. },
  53577. frontNsfw: {
  53578. height: math.unit(2.69, "meters"),
  53579. weight: math.unit(132, "kg"),
  53580. name: "Front (NSFW)",
  53581. image: {
  53582. source: "./media/characters/aarkus/front-nsfw.svg",
  53583. extra: 1400/1231,
  53584. bottom: 34/1434
  53585. }
  53586. },
  53587. foot: {
  53588. height: math.unit(1.45, "feet"),
  53589. name: "Foot",
  53590. image: {
  53591. source: "./media/characters/aarkus/foot.svg"
  53592. }
  53593. },
  53594. head: {
  53595. height: math.unit(2.85, "feet"),
  53596. name: "Head",
  53597. image: {
  53598. source: "./media/characters/aarkus/head.svg"
  53599. }
  53600. },
  53601. headAlt: {
  53602. height: math.unit(3.07, "feet"),
  53603. name: "Head (Alt)",
  53604. image: {
  53605. source: "./media/characters/aarkus/head-alt.svg"
  53606. }
  53607. },
  53608. mouth: {
  53609. height: math.unit(1.25, "feet"),
  53610. name: "Mouth",
  53611. image: {
  53612. source: "./media/characters/aarkus/mouth.svg"
  53613. }
  53614. },
  53615. dick: {
  53616. height: math.unit(1.77, "feet"),
  53617. name: "Dick",
  53618. image: {
  53619. source: "./media/characters/aarkus/dick.svg"
  53620. }
  53621. },
  53622. },
  53623. [
  53624. {
  53625. name: "Normal",
  53626. height: math.unit(2.69, "meters"),
  53627. default: true
  53628. },
  53629. {
  53630. name: "Macro",
  53631. height: math.unit(269, "meters")
  53632. },
  53633. {
  53634. name: "Macro+",
  53635. height: math.unit(672.5, "meters")
  53636. },
  53637. {
  53638. name: "Megamacro",
  53639. height: math.unit(2.017, "km")
  53640. },
  53641. ]
  53642. ))
  53643. characterMakers.push(() => makeCharacter(
  53644. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53645. {
  53646. front: {
  53647. height: math.unit(23.47, "cm"),
  53648. weight: math.unit(600, "grams"),
  53649. name: "Front",
  53650. image: {
  53651. source: "./media/characters/diode/front.svg",
  53652. extra: 1778/1396,
  53653. bottom: 95/1873
  53654. }
  53655. },
  53656. side: {
  53657. height: math.unit(23.47, "cm"),
  53658. weight: math.unit(600, "grams"),
  53659. name: "Side",
  53660. image: {
  53661. source: "./media/characters/diode/side.svg",
  53662. extra: 1831/1404,
  53663. bottom: 86/1917
  53664. }
  53665. },
  53666. wings: {
  53667. height: math.unit(0.683, "feet"),
  53668. name: "Wings",
  53669. image: {
  53670. source: "./media/characters/diode/wings.svg"
  53671. }
  53672. },
  53673. },
  53674. [
  53675. {
  53676. name: "Normal",
  53677. height: math.unit(23.47, "cm"),
  53678. default: true
  53679. },
  53680. ]
  53681. ))
  53682. characterMakers.push(() => makeCharacter(
  53683. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53684. {
  53685. front: {
  53686. height: math.unit(6 + 3/12, "feet"),
  53687. weight: math.unit(250, "lb"),
  53688. name: "Front",
  53689. image: {
  53690. source: "./media/characters/reika/front.svg",
  53691. extra: 1120/1078,
  53692. bottom: 86/1206
  53693. }
  53694. },
  53695. },
  53696. [
  53697. {
  53698. name: "Normal",
  53699. height: math.unit(6 + 3/12, "feet"),
  53700. default: true
  53701. },
  53702. ]
  53703. ))
  53704. characterMakers.push(() => makeCharacter(
  53705. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53706. {
  53707. front: {
  53708. height: math.unit(16 + 8/12, "feet"),
  53709. weight: math.unit(9000, "lb"),
  53710. name: "Front",
  53711. image: {
  53712. source: "./media/characters/lokuto-takama/front.svg",
  53713. extra: 1774/1632,
  53714. bottom: 147/1921
  53715. },
  53716. extraAttributes: {
  53717. "bustWidth": {
  53718. name: "Bust Width",
  53719. power: 1,
  53720. type: "length",
  53721. base: math.unit(2.4, "meters")
  53722. },
  53723. "breastWeight": {
  53724. name: "Breast Weight",
  53725. power: 3,
  53726. type: "mass",
  53727. base: math.unit(1000, "kg")
  53728. },
  53729. }
  53730. },
  53731. },
  53732. [
  53733. {
  53734. name: "Normal",
  53735. height: math.unit(16 + 8/12, "feet"),
  53736. default: true
  53737. },
  53738. ]
  53739. ))
  53740. characterMakers.push(() => makeCharacter(
  53741. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53742. {
  53743. front: {
  53744. height: math.unit(10, "cm"),
  53745. weight: math.unit(850, "grams"),
  53746. name: "Front",
  53747. image: {
  53748. source: "./media/characters/owak-bone/front.svg",
  53749. extra: 1965/1801,
  53750. bottom: 31/1996
  53751. }
  53752. },
  53753. },
  53754. [
  53755. {
  53756. name: "Normal",
  53757. height: math.unit(10, "cm"),
  53758. default: true
  53759. },
  53760. ]
  53761. ))
  53762. characterMakers.push(() => makeCharacter(
  53763. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53764. {
  53765. front: {
  53766. height: math.unit(2 + 6/12, "feet"),
  53767. weight: math.unit(9, "lb"),
  53768. name: "Front",
  53769. image: {
  53770. source: "./media/characters/muffin/front.svg",
  53771. extra: 1220/1195,
  53772. bottom: 84/1304
  53773. }
  53774. },
  53775. },
  53776. [
  53777. {
  53778. name: "Normal",
  53779. height: math.unit(2 + 6/12, "feet"),
  53780. default: true
  53781. },
  53782. ]
  53783. ))
  53784. characterMakers.push(() => makeCharacter(
  53785. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53786. {
  53787. front: {
  53788. height: math.unit(7, "feet"),
  53789. name: "Front",
  53790. image: {
  53791. source: "./media/characters/chimera/front.svg",
  53792. extra: 1752/1614,
  53793. bottom: 68/1820
  53794. }
  53795. },
  53796. },
  53797. [
  53798. {
  53799. name: "Normal",
  53800. height: math.unit(7, "feet")
  53801. },
  53802. {
  53803. name: "Gigamacro",
  53804. height: math.unit(2.9, "gigameters"),
  53805. default: true
  53806. },
  53807. {
  53808. name: "Universal",
  53809. height: math.unit(1.56e26, "yottameters")
  53810. },
  53811. ]
  53812. ))
  53813. characterMakers.push(() => makeCharacter(
  53814. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53815. {
  53816. front: {
  53817. height: math.unit(3, "feet"),
  53818. weight: math.unit(20, "lb"),
  53819. name: "Front",
  53820. image: {
  53821. source: "./media/characters/kit-fennec-fox/front.svg",
  53822. extra: 1027/932,
  53823. bottom: 16/1043
  53824. }
  53825. },
  53826. back: {
  53827. height: math.unit(3, "feet"),
  53828. weight: math.unit(20, "lb"),
  53829. name: "Back",
  53830. image: {
  53831. source: "./media/characters/kit-fennec-fox/back.svg",
  53832. extra: 1027/932,
  53833. bottom: 16/1043
  53834. }
  53835. },
  53836. },
  53837. [
  53838. {
  53839. name: "Normal",
  53840. height: math.unit(3, "feet"),
  53841. default: true
  53842. },
  53843. ]
  53844. ))
  53845. characterMakers.push(() => makeCharacter(
  53846. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53847. {
  53848. front: {
  53849. height: math.unit(167, "cm"),
  53850. name: "Front",
  53851. image: {
  53852. source: "./media/characters/blue-otter/front.svg",
  53853. extra: 1951/1920,
  53854. bottom: 31/1982
  53855. }
  53856. },
  53857. },
  53858. [
  53859. {
  53860. name: "Otter-Sized",
  53861. height: math.unit(100, "cm")
  53862. },
  53863. {
  53864. name: "Normal",
  53865. height: math.unit(167, "cm"),
  53866. default: true
  53867. },
  53868. ]
  53869. ))
  53870. characterMakers.push(() => makeCharacter(
  53871. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53872. {
  53873. front: {
  53874. height: math.unit(4 + 4/12, "feet"),
  53875. name: "Front",
  53876. image: {
  53877. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53878. extra: 1072/1067,
  53879. bottom: 117/1189
  53880. }
  53881. },
  53882. back: {
  53883. height: math.unit(4 + 4/12, "feet"),
  53884. name: "Back",
  53885. image: {
  53886. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53887. extra: 1135/1129,
  53888. bottom: 57/1192
  53889. }
  53890. },
  53891. head: {
  53892. height: math.unit(1.77, "feet"),
  53893. name: "Head",
  53894. image: {
  53895. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53896. }
  53897. },
  53898. },
  53899. [
  53900. {
  53901. name: "Normal",
  53902. height: math.unit(4 + 4/12, "feet"),
  53903. default: true
  53904. },
  53905. ]
  53906. ))
  53907. characterMakers.push(() => makeCharacter(
  53908. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53909. {
  53910. front: {
  53911. height: math.unit(2, "inches"),
  53912. name: "Front",
  53913. image: {
  53914. source: "./media/characters/carley-hartford/front.svg",
  53915. extra: 1035/988,
  53916. bottom: 23/1058
  53917. }
  53918. },
  53919. back: {
  53920. height: math.unit(2, "inches"),
  53921. name: "Back",
  53922. image: {
  53923. source: "./media/characters/carley-hartford/back.svg",
  53924. extra: 1035/988,
  53925. bottom: 23/1058
  53926. }
  53927. },
  53928. dressed: {
  53929. height: math.unit(2, "inches"),
  53930. name: "Dressed",
  53931. image: {
  53932. source: "./media/characters/carley-hartford/dressed.svg",
  53933. extra: 651/620,
  53934. bottom: 0/651
  53935. }
  53936. },
  53937. },
  53938. [
  53939. {
  53940. name: "Micro",
  53941. height: math.unit(2, "inches"),
  53942. default: true
  53943. },
  53944. {
  53945. name: "Macro",
  53946. height: math.unit(6 + 3/12, "feet")
  53947. },
  53948. ]
  53949. ))
  53950. characterMakers.push(() => makeCharacter(
  53951. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53952. {
  53953. front: {
  53954. height: math.unit(2 + 3/12, "feet"),
  53955. weight: math.unit(15 + 7/16, "lb"),
  53956. name: "Front",
  53957. image: {
  53958. source: "./media/characters/duke/front.svg",
  53959. extra: 910/815,
  53960. bottom: 30/940
  53961. }
  53962. },
  53963. },
  53964. [
  53965. {
  53966. name: "Normal",
  53967. height: math.unit(2 + 3/12, "feet"),
  53968. default: true
  53969. },
  53970. ]
  53971. ))
  53972. characterMakers.push(() => makeCharacter(
  53973. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53974. {
  53975. front: {
  53976. height: math.unit(5 + 4/12, "feet"),
  53977. weight: math.unit(156, "lb"),
  53978. name: "Front",
  53979. image: {
  53980. source: "./media/characters/dein/front.svg",
  53981. extra: 855/815,
  53982. bottom: 48/903
  53983. }
  53984. },
  53985. side: {
  53986. height: math.unit(5 + 4/12, "feet"),
  53987. weight: math.unit(156, "lb"),
  53988. name: "side",
  53989. image: {
  53990. source: "./media/characters/dein/side.svg",
  53991. extra: 846/803,
  53992. bottom: 25/871
  53993. }
  53994. },
  53995. maw: {
  53996. height: math.unit(1.45, "feet"),
  53997. name: "Maw",
  53998. image: {
  53999. source: "./media/characters/dein/maw.svg"
  54000. }
  54001. },
  54002. },
  54003. [
  54004. {
  54005. name: "Ferret Sized",
  54006. height: math.unit(2 + 5/12, "feet")
  54007. },
  54008. {
  54009. name: "Normal",
  54010. height: math.unit(5 + 4/12, "feet"),
  54011. default: true
  54012. },
  54013. ]
  54014. ))
  54015. characterMakers.push(() => makeCharacter(
  54016. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54017. {
  54018. front: {
  54019. height: math.unit(84 + 8/12, "feet"),
  54020. weight: math.unit(942180, "lb"),
  54021. name: "Front",
  54022. image: {
  54023. source: "./media/characters/daurine-arima/front.svg",
  54024. extra: 1989/1782,
  54025. bottom: 37/2026
  54026. }
  54027. },
  54028. side: {
  54029. height: math.unit(84 + 8/12, "feet"),
  54030. weight: math.unit(942180, "lb"),
  54031. name: "Side",
  54032. image: {
  54033. source: "./media/characters/daurine-arima/side.svg",
  54034. extra: 1997/1790,
  54035. bottom: 21/2018
  54036. }
  54037. },
  54038. back: {
  54039. height: math.unit(84 + 8/12, "feet"),
  54040. weight: math.unit(942180, "lb"),
  54041. name: "Back",
  54042. image: {
  54043. source: "./media/characters/daurine-arima/back.svg",
  54044. extra: 1992/1800,
  54045. bottom: 12/2004
  54046. }
  54047. },
  54048. head: {
  54049. height: math.unit(15.5, "feet"),
  54050. name: "Head",
  54051. image: {
  54052. source: "./media/characters/daurine-arima/head.svg"
  54053. }
  54054. },
  54055. headAlt: {
  54056. height: math.unit(19.19, "feet"),
  54057. name: "Head (Alt)",
  54058. image: {
  54059. source: "./media/characters/daurine-arima/head-alt.svg"
  54060. }
  54061. },
  54062. },
  54063. [
  54064. {
  54065. name: "Minimum height",
  54066. height: math.unit(8 + 10/12, "feet")
  54067. },
  54068. {
  54069. name: "Comfort height",
  54070. height: math.unit(19 + 6 /12, "feet")
  54071. },
  54072. {
  54073. name: "\"Normal\" height",
  54074. height: math.unit(28 + 10/12, "feet")
  54075. },
  54076. {
  54077. name: "Base height",
  54078. height: math.unit(84 + 8/12, "feet"),
  54079. default: true
  54080. },
  54081. {
  54082. name: "Mini-macro",
  54083. height: math.unit(2360, "feet")
  54084. },
  54085. {
  54086. name: "Macro",
  54087. height: math.unit(10, "miles")
  54088. },
  54089. {
  54090. name: "Goddess",
  54091. height: math.unit(9.99e40, "yottameters")
  54092. },
  54093. ]
  54094. ))
  54095. characterMakers.push(() => makeCharacter(
  54096. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54097. {
  54098. front: {
  54099. height: math.unit(2.3, "meters"),
  54100. name: "Front",
  54101. image: {
  54102. source: "./media/characters/cilenomon/front.svg",
  54103. extra: 1963/1778,
  54104. bottom: 54/2017
  54105. }
  54106. },
  54107. },
  54108. [
  54109. {
  54110. name: "Normal",
  54111. height: math.unit(2.3, "meters"),
  54112. default: true
  54113. },
  54114. {
  54115. name: "Big",
  54116. height: math.unit(5, "meters")
  54117. },
  54118. {
  54119. name: "Macro",
  54120. height: math.unit(30, "meters")
  54121. },
  54122. {
  54123. name: "True",
  54124. height: math.unit(1, "universe")
  54125. },
  54126. ]
  54127. ))
  54128. characterMakers.push(() => makeCharacter(
  54129. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54130. {
  54131. front: {
  54132. height: math.unit(5, "feet"),
  54133. name: "Front",
  54134. image: {
  54135. source: "./media/characters/sen-mink/front.svg",
  54136. extra: 1727/1675,
  54137. bottom: 35/1762
  54138. }
  54139. },
  54140. },
  54141. [
  54142. {
  54143. name: "Normal",
  54144. height: math.unit(5, "feet"),
  54145. default: true
  54146. },
  54147. ]
  54148. ))
  54149. characterMakers.push(() => makeCharacter(
  54150. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54151. {
  54152. front: {
  54153. height: math.unit(5.42999, "feet"),
  54154. weight: math.unit(100, "lb"),
  54155. name: "Front",
  54156. image: {
  54157. source: "./media/characters/ophois/front.svg",
  54158. extra: 1429/1286,
  54159. bottom: 60/1489
  54160. }
  54161. },
  54162. },
  54163. [
  54164. {
  54165. name: "Normal",
  54166. height: math.unit(5.42999, "feet"),
  54167. default: true
  54168. },
  54169. ]
  54170. ))
  54171. characterMakers.push(() => makeCharacter(
  54172. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54173. {
  54174. front: {
  54175. height: math.unit(2, "meters"),
  54176. name: "Front",
  54177. image: {
  54178. source: "./media/characters/riley/front.svg",
  54179. extra: 1779/1754,
  54180. bottom: 139/1918
  54181. }
  54182. },
  54183. },
  54184. [
  54185. {
  54186. name: "Normal",
  54187. height: math.unit(2, "meters"),
  54188. default: true
  54189. },
  54190. ]
  54191. ))
  54192. characterMakers.push(() => makeCharacter(
  54193. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54194. {
  54195. front: {
  54196. height: math.unit(6 + 2/12, "feet"),
  54197. weight: math.unit(195, "lb"),
  54198. preyCapacity: math.unit(6, "people"),
  54199. name: "Front",
  54200. image: {
  54201. source: "./media/characters/shuken-flash/front.svg",
  54202. extra: 1905/1739,
  54203. bottom: 65/1970
  54204. }
  54205. },
  54206. back: {
  54207. height: math.unit(6 + 2/12, "feet"),
  54208. weight: math.unit(195, "lb"),
  54209. preyCapacity: math.unit(6, "people"),
  54210. name: "Back",
  54211. image: {
  54212. source: "./media/characters/shuken-flash/back.svg",
  54213. extra: 1912/1751,
  54214. bottom: 13/1925
  54215. }
  54216. },
  54217. },
  54218. [
  54219. {
  54220. name: "Normal",
  54221. height: math.unit(6 + 2/12, "feet"),
  54222. default: true
  54223. },
  54224. ]
  54225. ))
  54226. characterMakers.push(() => makeCharacter(
  54227. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54228. {
  54229. front: {
  54230. height: math.unit(5 + 9/12, "feet"),
  54231. weight: math.unit(150, "lb"),
  54232. name: "Front",
  54233. image: {
  54234. source: "./media/characters/plat/front.svg",
  54235. extra: 1816/1703,
  54236. bottom: 43/1859
  54237. }
  54238. },
  54239. side: {
  54240. height: math.unit(5 + 9/12, "feet"),
  54241. weight: math.unit(300, "lb"),
  54242. name: "Side",
  54243. image: {
  54244. source: "./media/characters/plat/side.svg",
  54245. extra: 1824/1699,
  54246. bottom: 18/1842
  54247. }
  54248. },
  54249. },
  54250. [
  54251. {
  54252. name: "Normal",
  54253. height: math.unit(5 + 9/12, "feet"),
  54254. default: true
  54255. },
  54256. ]
  54257. ))
  54258. characterMakers.push(() => makeCharacter(
  54259. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54260. {
  54261. front: {
  54262. height: math.unit(9, "feet"),
  54263. weight: math.unit(1800, "lb"),
  54264. name: "Front",
  54265. image: {
  54266. source: "./media/characters/elaine/front.svg",
  54267. extra: 1833/1354,
  54268. bottom: 25/1858
  54269. }
  54270. },
  54271. back: {
  54272. height: math.unit(8.8, "feet"),
  54273. weight: math.unit(1800, "lb"),
  54274. name: "Back",
  54275. image: {
  54276. source: "./media/characters/elaine/back.svg",
  54277. extra: 1641/1233,
  54278. bottom: 53/1694
  54279. }
  54280. },
  54281. },
  54282. [
  54283. {
  54284. name: "Normal",
  54285. height: math.unit(9, "feet"),
  54286. default: true
  54287. },
  54288. ]
  54289. ))
  54290. characterMakers.push(() => makeCharacter(
  54291. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54292. {
  54293. front: {
  54294. height: math.unit(17 + 9/12, "feet"),
  54295. weight: math.unit(8000, "lb"),
  54296. name: "Front",
  54297. image: {
  54298. source: "./media/characters/vera-raven/front.svg",
  54299. extra: 1457/1412,
  54300. bottom: 121/1578
  54301. }
  54302. },
  54303. side: {
  54304. height: math.unit(17 + 9/12, "feet"),
  54305. weight: math.unit(8000, "lb"),
  54306. name: "Side",
  54307. image: {
  54308. source: "./media/characters/vera-raven/side.svg",
  54309. extra: 1510/1464,
  54310. bottom: 54/1564
  54311. }
  54312. },
  54313. },
  54314. [
  54315. {
  54316. name: "Normal",
  54317. height: math.unit(17 + 9/12, "feet"),
  54318. default: true
  54319. },
  54320. ]
  54321. ))
  54322. characterMakers.push(() => makeCharacter(
  54323. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54324. {
  54325. dressed: {
  54326. height: math.unit(6 + 9/12, "feet"),
  54327. name: "Dressed",
  54328. image: {
  54329. source: "./media/characters/nakisha/dressed.svg",
  54330. extra: 1909/1757,
  54331. bottom: 48/1957
  54332. }
  54333. },
  54334. nude: {
  54335. height: math.unit(6 + 9/12, "feet"),
  54336. name: "Nude",
  54337. image: {
  54338. source: "./media/characters/nakisha/nude.svg",
  54339. extra: 1917/1765,
  54340. bottom: 34/1951
  54341. }
  54342. },
  54343. },
  54344. [
  54345. {
  54346. name: "Normal",
  54347. height: math.unit(6 + 9/12, "feet"),
  54348. default: true
  54349. },
  54350. ]
  54351. ))
  54352. characterMakers.push(() => makeCharacter(
  54353. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54354. {
  54355. front: {
  54356. height: math.unit(87, "meters"),
  54357. name: "Front",
  54358. image: {
  54359. source: "./media/characters/serafin/front.svg",
  54360. extra: 1919/1776,
  54361. bottom: 65/1984
  54362. }
  54363. },
  54364. },
  54365. [
  54366. {
  54367. name: "Normal",
  54368. height: math.unit(87, "meters"),
  54369. default: true
  54370. },
  54371. ]
  54372. ))
  54373. characterMakers.push(() => makeCharacter(
  54374. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54375. {
  54376. front: {
  54377. height: math.unit(6, "feet"),
  54378. weight: math.unit(200, "lb"),
  54379. name: "Front",
  54380. image: {
  54381. source: "./media/characters/poptart/front.svg",
  54382. extra: 615/583,
  54383. bottom: 23/638
  54384. }
  54385. },
  54386. back: {
  54387. height: math.unit(6, "feet"),
  54388. weight: math.unit(200, "lb"),
  54389. name: "Back",
  54390. image: {
  54391. source: "./media/characters/poptart/back.svg",
  54392. extra: 617/584,
  54393. bottom: 22/639
  54394. }
  54395. },
  54396. frontNsfw: {
  54397. height: math.unit(6, "feet"),
  54398. weight: math.unit(200, "lb"),
  54399. name: "Front (NSFW)",
  54400. image: {
  54401. source: "./media/characters/poptart/front-nsfw.svg",
  54402. extra: 615/583,
  54403. bottom: 23/638
  54404. }
  54405. },
  54406. backNsfw: {
  54407. height: math.unit(6, "feet"),
  54408. weight: math.unit(200, "lb"),
  54409. name: "Back (NSFW)",
  54410. image: {
  54411. source: "./media/characters/poptart/back-nsfw.svg",
  54412. extra: 617/584,
  54413. bottom: 22/639
  54414. }
  54415. },
  54416. hand: {
  54417. height: math.unit(1.14, "feet"),
  54418. name: "Hand",
  54419. image: {
  54420. source: "./media/characters/poptart/hand.svg"
  54421. }
  54422. },
  54423. foot: {
  54424. height: math.unit(1.5, "feet"),
  54425. name: "Foot",
  54426. image: {
  54427. source: "./media/characters/poptart/foot.svg"
  54428. }
  54429. },
  54430. },
  54431. [
  54432. {
  54433. name: "Normal",
  54434. height: math.unit(6, "feet"),
  54435. default: true
  54436. },
  54437. {
  54438. name: "Grande",
  54439. height: math.unit(350, "feet")
  54440. },
  54441. {
  54442. name: "Massif",
  54443. height: math.unit(967, "feet")
  54444. },
  54445. ]
  54446. ))
  54447. characterMakers.push(() => makeCharacter(
  54448. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54449. {
  54450. hyenaSide: {
  54451. height: math.unit(120, "cm"),
  54452. weight: math.unit(120, "lb"),
  54453. name: "Side",
  54454. image: {
  54455. source: "./media/characters/trance/hyena-side.svg",
  54456. extra: 998/904,
  54457. bottom: 76/1074
  54458. }
  54459. },
  54460. },
  54461. [
  54462. {
  54463. name: "Normal",
  54464. height: math.unit(120, "cm"),
  54465. default: true
  54466. },
  54467. {
  54468. name: "Dire",
  54469. height: math.unit(230, "cm")
  54470. },
  54471. {
  54472. name: "Macro",
  54473. height: math.unit(37, "feet")
  54474. },
  54475. ]
  54476. ))
  54477. characterMakers.push(() => makeCharacter(
  54478. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54479. {
  54480. front: {
  54481. height: math.unit(6 + 3/12, "feet"),
  54482. name: "Front",
  54483. image: {
  54484. source: "./media/characters/michael-berretta/front.svg",
  54485. extra: 515/494,
  54486. bottom: 20/535
  54487. }
  54488. },
  54489. back: {
  54490. height: math.unit(6 + 3/12, "feet"),
  54491. name: "Back",
  54492. image: {
  54493. source: "./media/characters/michael-berretta/back.svg",
  54494. extra: 520/497,
  54495. bottom: 21/541
  54496. }
  54497. },
  54498. frontNsfw: {
  54499. height: math.unit(6 + 3/12, "feet"),
  54500. name: "Front (NSFW)",
  54501. image: {
  54502. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54503. extra: 515/494,
  54504. bottom: 20/535
  54505. }
  54506. },
  54507. dick: {
  54508. height: math.unit(1, "feet"),
  54509. name: "Dick",
  54510. image: {
  54511. source: "./media/characters/michael-berretta/dick.svg"
  54512. }
  54513. },
  54514. },
  54515. [
  54516. {
  54517. name: "Normal",
  54518. height: math.unit(6 + 3/12, "feet"),
  54519. default: true
  54520. },
  54521. {
  54522. name: "Big",
  54523. height: math.unit(12, "feet")
  54524. },
  54525. {
  54526. name: "Macro",
  54527. height: math.unit(187.5, "feet")
  54528. },
  54529. ]
  54530. ))
  54531. characterMakers.push(() => makeCharacter(
  54532. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54533. {
  54534. front: {
  54535. height: math.unit(9 + 9/12, "feet"),
  54536. weight: math.unit(1244, "lb"),
  54537. name: "Front",
  54538. image: {
  54539. source: "./media/characters/stella-edgecomb/front.svg",
  54540. extra: 1835/1706,
  54541. bottom: 49/1884
  54542. }
  54543. },
  54544. pen: {
  54545. height: math.unit(0.95, "feet"),
  54546. name: "Pen",
  54547. image: {
  54548. source: "./media/characters/stella-edgecomb/pen.svg"
  54549. }
  54550. },
  54551. },
  54552. [
  54553. {
  54554. name: "Cozy Bear",
  54555. height: math.unit(0.5, "inches")
  54556. },
  54557. {
  54558. name: "Normal",
  54559. height: math.unit(9 + 9/12, "feet"),
  54560. default: true
  54561. },
  54562. {
  54563. name: "Giga Bear",
  54564. height: math.unit(1, "mile")
  54565. },
  54566. {
  54567. name: "Great Bear",
  54568. height: math.unit(53, "miles")
  54569. },
  54570. {
  54571. name: "Goddess Bear",
  54572. height: math.unit(40000, "miles")
  54573. },
  54574. {
  54575. name: "Sun Bear",
  54576. height: math.unit(900000, "miles")
  54577. },
  54578. ]
  54579. ))
  54580. characterMakers.push(() => makeCharacter(
  54581. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54582. {
  54583. anthroFront: {
  54584. height: math.unit(556, "cm"),
  54585. weight: math.unit(2650, "kg"),
  54586. preyCapacity: math.unit(3, "people"),
  54587. name: "Front",
  54588. image: {
  54589. source: "./media/characters/ash´iika/front.svg",
  54590. extra: 710/673,
  54591. bottom: 15/725
  54592. },
  54593. form: "anthro",
  54594. default: true
  54595. },
  54596. anthroSide: {
  54597. height: math.unit(556, "cm"),
  54598. weight: math.unit(2650, "kg"),
  54599. preyCapacity: math.unit(3, "people"),
  54600. name: "Side",
  54601. image: {
  54602. source: "./media/characters/ash´iika/side.svg",
  54603. extra: 696/676,
  54604. bottom: 13/709
  54605. },
  54606. form: "anthro"
  54607. },
  54608. anthroDressed: {
  54609. height: math.unit(556, "cm"),
  54610. weight: math.unit(2650, "kg"),
  54611. preyCapacity: math.unit(3, "people"),
  54612. name: "Dressed",
  54613. image: {
  54614. source: "./media/characters/ash´iika/dressed.svg",
  54615. extra: 710/673,
  54616. bottom: 15/725
  54617. },
  54618. form: "anthro"
  54619. },
  54620. anthroHead: {
  54621. height: math.unit(3.5, "feet"),
  54622. name: "Head",
  54623. image: {
  54624. source: "./media/characters/ash´iika/head.svg",
  54625. extra: 348/291,
  54626. bottom: 45/393
  54627. },
  54628. form: "anthro"
  54629. },
  54630. feralSide: {
  54631. height: math.unit(870, "cm"),
  54632. weight: math.unit(17500, "kg"),
  54633. preyCapacity: math.unit(15, "people"),
  54634. name: "Side",
  54635. image: {
  54636. source: "./media/characters/ash´iika/feral.svg",
  54637. extra: 595/199,
  54638. bottom: 7/602
  54639. },
  54640. form: "feral",
  54641. default: true,
  54642. },
  54643. },
  54644. [
  54645. {
  54646. name: "Normal",
  54647. height: math.unit(556, "cm"),
  54648. default: true,
  54649. form: "anthro"
  54650. },
  54651. {
  54652. name: "Macro",
  54653. height: math.unit(88, "meters"),
  54654. form: "anthro"
  54655. },
  54656. {
  54657. name: "Normal",
  54658. height: math.unit(870, "cm"),
  54659. default: true,
  54660. form: "feral"
  54661. },
  54662. {
  54663. name: "Large",
  54664. height: math.unit(25, "meters"),
  54665. form: "feral"
  54666. },
  54667. ],
  54668. {
  54669. "anthro": {
  54670. name: "Anthro",
  54671. default: true
  54672. },
  54673. "feral": {
  54674. name: "Feral",
  54675. },
  54676. }
  54677. ))
  54678. characterMakers.push(() => makeCharacter(
  54679. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54680. {
  54681. front: {
  54682. height: math.unit(10, "feet"),
  54683. weight: math.unit(800, "lb"),
  54684. name: "Front",
  54685. image: {
  54686. source: "./media/characters/yen/front.svg",
  54687. extra: 443/411,
  54688. bottom: 6/449
  54689. }
  54690. },
  54691. sleeping: {
  54692. height: math.unit(10, "feet"),
  54693. weight: math.unit(800, "lb"),
  54694. name: "Sleeping",
  54695. image: {
  54696. source: "./media/characters/yen/sleeping.svg",
  54697. extra: 470/422,
  54698. bottom: 0/470
  54699. }
  54700. },
  54701. head: {
  54702. height: math.unit(2.2, "feet"),
  54703. name: "Head",
  54704. image: {
  54705. source: "./media/characters/yen/head.svg"
  54706. }
  54707. },
  54708. headAlt: {
  54709. height: math.unit(2.1, "feet"),
  54710. name: "Head (Alt)",
  54711. image: {
  54712. source: "./media/characters/yen/head-alt.svg"
  54713. }
  54714. },
  54715. },
  54716. [
  54717. {
  54718. name: "Normal",
  54719. height: math.unit(10, "feet"),
  54720. default: true
  54721. },
  54722. ]
  54723. ))
  54724. characterMakers.push(() => makeCharacter(
  54725. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54726. {
  54727. front: {
  54728. height: math.unit(12, "feet"),
  54729. name: "Front",
  54730. image: {
  54731. source: "./media/characters/citra/front.svg",
  54732. extra: 1950/1710,
  54733. bottom: 47/1997
  54734. }
  54735. },
  54736. },
  54737. [
  54738. {
  54739. name: "Normal",
  54740. height: math.unit(12, "feet"),
  54741. default: true
  54742. },
  54743. ]
  54744. ))
  54745. characterMakers.push(() => makeCharacter(
  54746. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54747. {
  54748. side: {
  54749. height: math.unit(7 + 10/12, "feet"),
  54750. name: "Side",
  54751. image: {
  54752. source: "./media/characters/sholstim/side.svg",
  54753. extra: 786/682,
  54754. bottom: 40/826
  54755. }
  54756. },
  54757. },
  54758. [
  54759. {
  54760. name: "Normal",
  54761. height: math.unit(7 + 10/12, "feet"),
  54762. default: true
  54763. },
  54764. ]
  54765. ))
  54766. characterMakers.push(() => makeCharacter(
  54767. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54768. {
  54769. front: {
  54770. height: math.unit(3.10, "meters"),
  54771. name: "Front",
  54772. image: {
  54773. source: "./media/characters/aggyn/front.svg",
  54774. extra: 1188/963,
  54775. bottom: 24/1212
  54776. }
  54777. },
  54778. },
  54779. [
  54780. {
  54781. name: "Normal",
  54782. height: math.unit(3.10, "meters"),
  54783. default: true
  54784. },
  54785. ]
  54786. ))
  54787. characterMakers.push(() => makeCharacter(
  54788. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54789. {
  54790. front: {
  54791. height: math.unit(7 + 5/12, "feet"),
  54792. weight: math.unit(687, "lb"),
  54793. name: "Front",
  54794. image: {
  54795. source: "./media/characters/alsandair-hergenroether/front.svg",
  54796. extra: 1251/1186,
  54797. bottom: 75/1326
  54798. }
  54799. },
  54800. back: {
  54801. height: math.unit(7 + 5/12, "feet"),
  54802. weight: math.unit(687, "lb"),
  54803. name: "Back",
  54804. image: {
  54805. source: "./media/characters/alsandair-hergenroether/back.svg",
  54806. extra: 1290/1229,
  54807. bottom: 17/1307
  54808. }
  54809. },
  54810. },
  54811. [
  54812. {
  54813. name: "Max Compression",
  54814. height: math.unit(7 + 5/12, "feet"),
  54815. default: true
  54816. },
  54817. {
  54818. name: "\"Normal\"",
  54819. height: math.unit(2, "universes")
  54820. },
  54821. ]
  54822. ))
  54823. characterMakers.push(() => makeCharacter(
  54824. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54825. {
  54826. front: {
  54827. height: math.unit(4 + 1/12, "feet"),
  54828. weight: math.unit(92, "lb"),
  54829. name: "Front",
  54830. image: {
  54831. source: "./media/characters/ie/front.svg",
  54832. extra: 1585/1352,
  54833. bottom: 91/1676
  54834. }
  54835. },
  54836. },
  54837. [
  54838. {
  54839. name: "Normal",
  54840. height: math.unit(4 + 1/12, "feet"),
  54841. default: true
  54842. },
  54843. ]
  54844. ))
  54845. characterMakers.push(() => makeCharacter(
  54846. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54847. {
  54848. anthro: {
  54849. height: math.unit(6, "feet"),
  54850. weight: math.unit(150, "lb"),
  54851. name: "Front",
  54852. image: {
  54853. source: "./media/characters/willow/anthro.svg",
  54854. extra: 1073/986,
  54855. bottom: 34/1107
  54856. },
  54857. form: "anthro",
  54858. default: true
  54859. },
  54860. taur: {
  54861. height: math.unit(6, "feet"),
  54862. weight: math.unit(150, "lb"),
  54863. name: "Side",
  54864. image: {
  54865. source: "./media/characters/willow/taur.svg",
  54866. extra: 647/512,
  54867. bottom: 136/783
  54868. },
  54869. form: "taur",
  54870. default: true
  54871. },
  54872. },
  54873. [
  54874. {
  54875. name: "Humanoid",
  54876. height: math.unit(2.7, "meters"),
  54877. form: "anthro"
  54878. },
  54879. {
  54880. name: "Normal",
  54881. height: math.unit(9, "meters"),
  54882. form: "anthro",
  54883. default: true
  54884. },
  54885. {
  54886. name: "Humanoid",
  54887. height: math.unit(2.1, "meters"),
  54888. form: "taur"
  54889. },
  54890. {
  54891. name: "Normal",
  54892. height: math.unit(7, "meters"),
  54893. form: "taur",
  54894. default: true
  54895. },
  54896. ],
  54897. {
  54898. "anthro": {
  54899. name: "Anthro",
  54900. default: true
  54901. },
  54902. "taur": {
  54903. name: "Taur",
  54904. },
  54905. }
  54906. ))
  54907. characterMakers.push(() => makeCharacter(
  54908. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54909. {
  54910. front: {
  54911. height: math.unit(2 + 5/12, "feet"),
  54912. name: "Front",
  54913. image: {
  54914. source: "./media/characters/kyan/front.svg",
  54915. extra: 460/334,
  54916. bottom: 23/483
  54917. },
  54918. extraAttributes: {
  54919. "toeLength": {
  54920. name: "Toe Length",
  54921. power: 1,
  54922. type: "length",
  54923. base: math.unit(7, "cm")
  54924. },
  54925. "toeclawLength": {
  54926. name: "Toeclaw Length",
  54927. power: 1,
  54928. type: "length",
  54929. base: math.unit(4.7, "cm")
  54930. },
  54931. "earHeight": {
  54932. name: "Ear Height",
  54933. power: 1,
  54934. type: "length",
  54935. base: math.unit(14.1, "cm")
  54936. },
  54937. }
  54938. },
  54939. paws: {
  54940. height: math.unit(0.45, "feet"),
  54941. name: "Paws",
  54942. image: {
  54943. source: "./media/characters/kyan/paws.svg",
  54944. extra: 581/581,
  54945. bottom: 114/695
  54946. }
  54947. },
  54948. },
  54949. [
  54950. {
  54951. name: "Normal",
  54952. height: math.unit(2 + 5/12, "feet"),
  54953. default: true
  54954. },
  54955. ]
  54956. ))
  54957. characterMakers.push(() => makeCharacter(
  54958. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54959. {
  54960. front: {
  54961. height: math.unit(2 + 2/3, "feet"),
  54962. name: "Front",
  54963. image: {
  54964. source: "./media/characters/xazzon/front.svg",
  54965. extra: 1109/984,
  54966. bottom: 42/1151
  54967. }
  54968. },
  54969. back: {
  54970. height: math.unit(2 + 2/3, "feet"),
  54971. name: "Back",
  54972. image: {
  54973. source: "./media/characters/xazzon/back.svg",
  54974. extra: 1095/971,
  54975. bottom: 23/1118
  54976. }
  54977. },
  54978. },
  54979. [
  54980. {
  54981. name: "Normal",
  54982. height: math.unit(2 + 2/3, "feet"),
  54983. default: true
  54984. },
  54985. ]
  54986. ))
  54987. characterMakers.push(() => makeCharacter(
  54988. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54989. {
  54990. front: {
  54991. height: math.unit(8, "feet"),
  54992. weight: math.unit(300, "lb"),
  54993. name: "Front",
  54994. image: {
  54995. source: "./media/characters/khyla-shadowsong/front.svg",
  54996. extra: 861/798,
  54997. bottom: 32/893
  54998. }
  54999. },
  55000. side: {
  55001. height: math.unit(8, "feet"),
  55002. weight: math.unit(300, "lb"),
  55003. name: "Side",
  55004. image: {
  55005. source: "./media/characters/khyla-shadowsong/side.svg",
  55006. extra: 790/750,
  55007. bottom: 87/877
  55008. }
  55009. },
  55010. back: {
  55011. height: math.unit(8, "feet"),
  55012. weight: math.unit(300, "lb"),
  55013. name: "Back",
  55014. image: {
  55015. source: "./media/characters/khyla-shadowsong/back.svg",
  55016. extra: 855/808,
  55017. bottom: 14/869
  55018. }
  55019. },
  55020. head: {
  55021. height: math.unit(2.7, "feet"),
  55022. name: "Head",
  55023. image: {
  55024. source: "./media/characters/khyla-shadowsong/head.svg"
  55025. }
  55026. },
  55027. },
  55028. [
  55029. {
  55030. name: "Micro",
  55031. height: math.unit(6, "inches")
  55032. },
  55033. {
  55034. name: "Normal",
  55035. height: math.unit(8, "feet"),
  55036. default: true
  55037. },
  55038. ]
  55039. ))
  55040. characterMakers.push(() => makeCharacter(
  55041. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55042. {
  55043. hyperFront: {
  55044. height: math.unit(9 + 4/12, "feet"),
  55045. weight: math.unit(2000, "lb"),
  55046. name: "Front",
  55047. image: {
  55048. source: "./media/characters/tiden/hyper-front.svg",
  55049. extra: 400/382,
  55050. bottom: 6/406
  55051. },
  55052. form: "hyper",
  55053. },
  55054. regularFront: {
  55055. height: math.unit(7 + 10/12, "feet"),
  55056. weight: math.unit(470, "lb"),
  55057. name: "Front",
  55058. image: {
  55059. source: "./media/characters/tiden/regular-front.svg",
  55060. extra: 468/442,
  55061. bottom: 6/474
  55062. },
  55063. form: "regular",
  55064. },
  55065. },
  55066. [
  55067. {
  55068. name: "Normal",
  55069. height: math.unit(9 + 4/12, "feet"),
  55070. default: true,
  55071. form: "hyper"
  55072. },
  55073. {
  55074. name: "Normal",
  55075. height: math.unit(7 + 10/12, "feet"),
  55076. default: true,
  55077. form: "regular"
  55078. },
  55079. ],
  55080. {
  55081. "hyper": {
  55082. name: "Hyper",
  55083. default: true
  55084. },
  55085. "regular": {
  55086. name: "Regular",
  55087. },
  55088. }
  55089. ))
  55090. characterMakers.push(() => makeCharacter(
  55091. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55092. {
  55093. side: {
  55094. height: math.unit(6, "feet"),
  55095. weight: math.unit(150, "lb"),
  55096. name: "Side",
  55097. image: {
  55098. source: "./media/characters/jason-crowe/side.svg",
  55099. extra: 1771/766,
  55100. bottom: 219/1990
  55101. }
  55102. },
  55103. },
  55104. [
  55105. {
  55106. name: "Pocket Gryphon",
  55107. height: math.unit(6, "cm")
  55108. },
  55109. {
  55110. name: "Raven",
  55111. height: math.unit(60, "cm")
  55112. },
  55113. {
  55114. name: "Normal",
  55115. height: math.unit(1, "meter"),
  55116. default: true
  55117. },
  55118. ]
  55119. ))
  55120. characterMakers.push(() => makeCharacter(
  55121. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55122. {
  55123. front: {
  55124. height: math.unit(9 + 6/12, "feet"),
  55125. weight: math.unit(1100, "lb"),
  55126. name: "Front",
  55127. image: {
  55128. source: "./media/characters/django/front.svg",
  55129. extra: 1231/1136,
  55130. bottom: 34/1265
  55131. }
  55132. },
  55133. side: {
  55134. height: math.unit(9 + 6/12, "feet"),
  55135. weight: math.unit(1100, "lb"),
  55136. name: "Side",
  55137. image: {
  55138. source: "./media/characters/django/side.svg",
  55139. extra: 1267/1174,
  55140. bottom: 9/1276
  55141. }
  55142. },
  55143. },
  55144. [
  55145. {
  55146. name: "Normal",
  55147. height: math.unit(9 + 6/12, "feet"),
  55148. default: true
  55149. },
  55150. {
  55151. name: "Macro 1",
  55152. height: math.unit(50, "feet")
  55153. },
  55154. {
  55155. name: "Macro 2",
  55156. height: math.unit(500, "feet")
  55157. },
  55158. {
  55159. name: "Mega Macro",
  55160. height: math.unit(5300, "feet")
  55161. },
  55162. ]
  55163. ))
  55164. characterMakers.push(() => makeCharacter(
  55165. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55166. {
  55167. frontSfw: {
  55168. height: math.unit(120, "cm"),
  55169. weight: math.unit(15, "kg"),
  55170. name: "Front (SFW)",
  55171. image: {
  55172. source: "./media/characters/eri/front-sfw.svg",
  55173. extra: 1014/939,
  55174. bottom: 37/1051
  55175. },
  55176. form: "moth",
  55177. },
  55178. frontNsfw: {
  55179. height: math.unit(120, "cm"),
  55180. weight: math.unit(15, "kg"),
  55181. name: "Front (NSFW)",
  55182. image: {
  55183. source: "./media/characters/eri/front-nsfw.svg",
  55184. extra: 1014/939,
  55185. bottom: 37/1051
  55186. },
  55187. form: "moth",
  55188. default: true
  55189. },
  55190. egg: {
  55191. height: math.unit(10, "cm"),
  55192. name: "Egg",
  55193. image: {
  55194. source: "./media/characters/eri/egg.svg"
  55195. },
  55196. form: "egg",
  55197. default: true
  55198. },
  55199. },
  55200. [
  55201. {
  55202. name: "Normal",
  55203. height: math.unit(120, "cm"),
  55204. default: true,
  55205. form: "moth"
  55206. },
  55207. {
  55208. name: "Normal",
  55209. height: math.unit(10, "cm"),
  55210. default: true,
  55211. form: "egg"
  55212. },
  55213. ],
  55214. {
  55215. "moth": {
  55216. name: "Moth",
  55217. default: true
  55218. },
  55219. "egg": {
  55220. name: "Egg",
  55221. },
  55222. }
  55223. ))
  55224. characterMakers.push(() => makeCharacter(
  55225. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55226. {
  55227. front: {
  55228. height: math.unit(200, "feet"),
  55229. name: "Front",
  55230. image: {
  55231. source: "./media/characters/bishop-dowser/front.svg",
  55232. extra: 933/868,
  55233. bottom: 106/1039
  55234. }
  55235. },
  55236. },
  55237. [
  55238. {
  55239. name: "Giant",
  55240. height: math.unit(200, "feet"),
  55241. default: true
  55242. },
  55243. ]
  55244. ))
  55245. characterMakers.push(() => makeCharacter(
  55246. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55247. {
  55248. front: {
  55249. height: math.unit(2, "meters"),
  55250. preyCapacity: math.unit(3, "people"),
  55251. name: "Front",
  55252. image: {
  55253. source: "./media/characters/fryra/front.svg",
  55254. extra: 1025/948,
  55255. bottom: 30/1055
  55256. },
  55257. extraAttributes: {
  55258. "breastVolume": {
  55259. name: "Breast Volume",
  55260. power: 3,
  55261. type: "volume",
  55262. base: math.unit(8, "liters")
  55263. },
  55264. }
  55265. },
  55266. back: {
  55267. height: math.unit(2, "meters"),
  55268. preyCapacity: math.unit(3, "people"),
  55269. name: "Back",
  55270. image: {
  55271. source: "./media/characters/fryra/back.svg",
  55272. extra: 993/938,
  55273. bottom: 38/1031
  55274. },
  55275. extraAttributes: {
  55276. "breastVolume": {
  55277. name: "Breast Volume",
  55278. power: 3,
  55279. type: "volume",
  55280. base: math.unit(8, "liters")
  55281. },
  55282. }
  55283. },
  55284. head: {
  55285. height: math.unit(1.33, "feet"),
  55286. name: "Head",
  55287. image: {
  55288. source: "./media/characters/fryra/head.svg"
  55289. }
  55290. },
  55291. maw: {
  55292. height: math.unit(0.56, "feet"),
  55293. name: "Maw",
  55294. image: {
  55295. source: "./media/characters/fryra/maw.svg"
  55296. }
  55297. },
  55298. },
  55299. [
  55300. {
  55301. name: "Micro",
  55302. height: math.unit(5, "cm")
  55303. },
  55304. {
  55305. name: "Normal",
  55306. height: math.unit(2, "meters"),
  55307. default: true
  55308. },
  55309. {
  55310. name: "Small Macro",
  55311. height: math.unit(8, "meters")
  55312. },
  55313. {
  55314. name: "Macro",
  55315. height: math.unit(50, "meters")
  55316. },
  55317. {
  55318. name: "Megamacro",
  55319. height: math.unit(1, "km")
  55320. },
  55321. {
  55322. name: "Planetary",
  55323. height: math.unit(300000, "km")
  55324. },
  55325. {
  55326. name: "Universal",
  55327. height: math.unit(250, "lightyears")
  55328. },
  55329. {
  55330. name: "Fabric of Reality",
  55331. height: math.unit(1000, "multiverses")
  55332. },
  55333. ]
  55334. ))
  55335. characterMakers.push(() => makeCharacter(
  55336. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55337. {
  55338. frontDressed: {
  55339. height: math.unit(6 + 2/12, "feet"),
  55340. name: "Front (Dressed)",
  55341. image: {
  55342. source: "./media/characters/fiera/front-dressed.svg",
  55343. extra: 1883/1793,
  55344. bottom: 70/1953
  55345. }
  55346. },
  55347. backDressed: {
  55348. height: math.unit(6 + 2/12, "feet"),
  55349. name: "Back (Dressed)",
  55350. image: {
  55351. source: "./media/characters/fiera/back-dressed.svg",
  55352. extra: 1847/1780,
  55353. bottom: 70/1917
  55354. }
  55355. },
  55356. frontNude: {
  55357. height: math.unit(6 + 2/12, "feet"),
  55358. name: "Front (Nude)",
  55359. image: {
  55360. source: "./media/characters/fiera/front-nude.svg",
  55361. extra: 1875/1785,
  55362. bottom: 66/1941
  55363. }
  55364. },
  55365. backNude: {
  55366. height: math.unit(6 + 2/12, "feet"),
  55367. name: "Back (Nude)",
  55368. image: {
  55369. source: "./media/characters/fiera/back-nude.svg",
  55370. extra: 1855/1788,
  55371. bottom: 44/1899
  55372. }
  55373. },
  55374. maw: {
  55375. height: math.unit(1.3, "feet"),
  55376. name: "Maw",
  55377. image: {
  55378. source: "./media/characters/fiera/maw.svg"
  55379. }
  55380. },
  55381. paw: {
  55382. height: math.unit(1, "feet"),
  55383. name: "Paw",
  55384. image: {
  55385. source: "./media/characters/fiera/paw.svg"
  55386. }
  55387. },
  55388. shoe: {
  55389. height: math.unit(1.05, "feet"),
  55390. name: "Shoe",
  55391. image: {
  55392. source: "./media/characters/fiera/shoe.svg"
  55393. }
  55394. },
  55395. },
  55396. [
  55397. {
  55398. name: "Normal",
  55399. height: math.unit(6 + 2/12, "feet"),
  55400. default: true
  55401. },
  55402. {
  55403. name: "Size Difference",
  55404. height: math.unit(13, "feet")
  55405. },
  55406. {
  55407. name: "Macro",
  55408. height: math.unit(60, "feet")
  55409. },
  55410. {
  55411. name: "Mega Macro",
  55412. height: math.unit(200, "feet")
  55413. },
  55414. ]
  55415. ))
  55416. characterMakers.push(() => makeCharacter(
  55417. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55418. {
  55419. back: {
  55420. height: math.unit(6, "feet"),
  55421. name: "Back",
  55422. image: {
  55423. source: "./media/characters/flare/back.svg",
  55424. extra: 1883/1765,
  55425. bottom: 32/1915
  55426. }
  55427. },
  55428. },
  55429. [
  55430. {
  55431. name: "Normal",
  55432. height: math.unit(6 + 2/12, "feet"),
  55433. default: true
  55434. },
  55435. {
  55436. name: "Size Difference",
  55437. height: math.unit(13, "feet")
  55438. },
  55439. {
  55440. name: "Macro",
  55441. height: math.unit(60, "feet")
  55442. },
  55443. {
  55444. name: "Macro 2",
  55445. height: math.unit(100, "feet")
  55446. },
  55447. {
  55448. name: "Mega Macro",
  55449. height: math.unit(200, "feet")
  55450. },
  55451. ]
  55452. ))
  55453. characterMakers.push(() => makeCharacter(
  55454. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55455. {
  55456. front: {
  55457. height: math.unit(2.2, "m"),
  55458. weight: math.unit(300, "kg"),
  55459. name: "Front",
  55460. image: {
  55461. source: "./media/characters/hanna/front.svg",
  55462. extra: 1696/1502,
  55463. bottom: 206/1902
  55464. }
  55465. },
  55466. },
  55467. [
  55468. {
  55469. name: "Humanoid",
  55470. height: math.unit(2.2, "meters")
  55471. },
  55472. {
  55473. name: "Normal",
  55474. height: math.unit(4.8, "meters"),
  55475. default: true
  55476. },
  55477. ]
  55478. ))
  55479. characterMakers.push(() => makeCharacter(
  55480. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55481. {
  55482. front: {
  55483. height: math.unit(2.8, "meters"),
  55484. name: "Front",
  55485. image: {
  55486. source: "./media/characters/argo/front.svg",
  55487. extra: 731/518,
  55488. bottom: 84/815
  55489. }
  55490. },
  55491. },
  55492. [
  55493. {
  55494. name: "Normal",
  55495. height: math.unit(3, "meters"),
  55496. default: true
  55497. },
  55498. ]
  55499. ))
  55500. characterMakers.push(() => makeCharacter(
  55501. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55502. {
  55503. side: {
  55504. height: math.unit(3.8, "meters"),
  55505. name: "Side",
  55506. image: {
  55507. source: "./media/characters/sybil/side.svg",
  55508. extra: 382/361,
  55509. bottom: 25/407
  55510. }
  55511. },
  55512. },
  55513. [
  55514. {
  55515. name: "Normal",
  55516. height: math.unit(3.8, "meters"),
  55517. default: true
  55518. },
  55519. ]
  55520. ))
  55521. characterMakers.push(() => makeCharacter(
  55522. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55523. {
  55524. side: {
  55525. height: math.unit(6, "meters"),
  55526. name: "Side",
  55527. image: {
  55528. source: "./media/characters/plum/side.svg",
  55529. extra: 858/755,
  55530. bottom: 45/903
  55531. },
  55532. form: "taur",
  55533. default: true
  55534. },
  55535. back: {
  55536. height: math.unit(6.3, "meters"),
  55537. name: "Back",
  55538. image: {
  55539. source: "./media/characters/plum/back.svg",
  55540. extra: 887/813,
  55541. bottom: 32/919
  55542. },
  55543. form: "taur",
  55544. },
  55545. feral: {
  55546. height: math.unit(5.5, "meter"),
  55547. name: "Front",
  55548. image: {
  55549. source: "./media/characters/plum/feral.svg",
  55550. extra: 568/403,
  55551. bottom: 51/619
  55552. },
  55553. form: "feral",
  55554. default: true
  55555. },
  55556. head: {
  55557. height: math.unit(1.46, "meter"),
  55558. name: "Head",
  55559. image: {
  55560. source: "./media/characters/plum/head.svg"
  55561. },
  55562. form: "taur"
  55563. },
  55564. tailTop: {
  55565. height: math.unit(5.6, "meter"),
  55566. name: "Tail (Top)",
  55567. image: {
  55568. source: "./media/characters/plum/tail-top.svg"
  55569. },
  55570. form: "taur",
  55571. },
  55572. tailBottom: {
  55573. height: math.unit(5.6, "meter"),
  55574. name: "Tail (Bottom)",
  55575. image: {
  55576. source: "./media/characters/plum/tail-bottom.svg"
  55577. },
  55578. form: "taur",
  55579. },
  55580. feralHead: {
  55581. height: math.unit(2.56549521, "meter"),
  55582. name: "Head",
  55583. image: {
  55584. source: "./media/characters/plum/head.svg"
  55585. },
  55586. form: "feral"
  55587. },
  55588. feralTailTop: {
  55589. height: math.unit(5.44728435, "meter"),
  55590. name: "Tail (Top)",
  55591. image: {
  55592. source: "./media/characters/plum/tail-top.svg"
  55593. },
  55594. form: "feral",
  55595. },
  55596. feralTailBottom: {
  55597. height: math.unit(5.44728435, "meter"),
  55598. name: "Tail (Bottom)",
  55599. image: {
  55600. source: "./media/characters/plum/tail-bottom.svg"
  55601. },
  55602. form: "feral",
  55603. },
  55604. },
  55605. [
  55606. {
  55607. name: "Normal",
  55608. height: math.unit(6, "meters"),
  55609. default: true,
  55610. form: "taur"
  55611. },
  55612. {
  55613. name: "Normal",
  55614. height: math.unit(5.5, "meters"),
  55615. default: true,
  55616. form: "feral"
  55617. },
  55618. ],
  55619. {
  55620. "taur": {
  55621. name: "Taur",
  55622. default: true
  55623. },
  55624. "feral": {
  55625. name: "Feral",
  55626. },
  55627. }
  55628. ))
  55629. characterMakers.push(() => makeCharacter(
  55630. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55631. {
  55632. front: {
  55633. height: math.unit(6, "feet"),
  55634. weight: math.unit(115, "lb"),
  55635. name: "Front",
  55636. image: {
  55637. source: "./media/characters/celeste-kitsune/front.svg",
  55638. extra: 393/366,
  55639. bottom: 7/400
  55640. }
  55641. },
  55642. side: {
  55643. height: math.unit(6, "feet"),
  55644. weight: math.unit(115, "lb"),
  55645. name: "Side",
  55646. image: {
  55647. source: "./media/characters/celeste-kitsune/side.svg",
  55648. extra: 818/765,
  55649. bottom: 40/858
  55650. }
  55651. },
  55652. },
  55653. [
  55654. {
  55655. name: "Megamacro",
  55656. height: math.unit(1500, "miles"),
  55657. default: true
  55658. },
  55659. ]
  55660. ))
  55661. characterMakers.push(() => makeCharacter(
  55662. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55663. {
  55664. front: {
  55665. height: math.unit(8, "meters"),
  55666. name: "Front",
  55667. image: {
  55668. source: "./media/characters/io/front.svg",
  55669. extra: 865/722,
  55670. bottom: 58/923
  55671. }
  55672. },
  55673. back: {
  55674. height: math.unit(8, "meters"),
  55675. name: "Back",
  55676. image: {
  55677. source: "./media/characters/io/back.svg",
  55678. extra: 920/776,
  55679. bottom: 42/962
  55680. }
  55681. },
  55682. head: {
  55683. height: math.unit(5.09, "meters"),
  55684. name: "Head",
  55685. image: {
  55686. source: "./media/characters/io/head.svg"
  55687. }
  55688. },
  55689. hand: {
  55690. height: math.unit(1.6, "meters"),
  55691. name: "Hand",
  55692. image: {
  55693. source: "./media/characters/io/hand.svg"
  55694. }
  55695. },
  55696. foot: {
  55697. height: math.unit(2.4, "meters"),
  55698. name: "Foot",
  55699. image: {
  55700. source: "./media/characters/io/foot.svg"
  55701. }
  55702. },
  55703. },
  55704. [
  55705. {
  55706. name: "Normal",
  55707. height: math.unit(8, "meters"),
  55708. default: true
  55709. },
  55710. ]
  55711. ))
  55712. characterMakers.push(() => makeCharacter(
  55713. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55714. {
  55715. side: {
  55716. height: math.unit(6 + 3/12, "feet"),
  55717. weight: math.unit(225, "lb"),
  55718. name: "Side",
  55719. image: {
  55720. source: "./media/characters/silas/side.svg",
  55721. extra: 703/653,
  55722. bottom: 23/726
  55723. },
  55724. extraAttributes: {
  55725. "pawLength": {
  55726. name: "Paw Length",
  55727. power: 1,
  55728. type: "length",
  55729. base: math.unit(12, "inches")
  55730. },
  55731. "pawWidth": {
  55732. name: "Paw Width",
  55733. power: 1,
  55734. type: "length",
  55735. base: math.unit(4.5, "inches")
  55736. },
  55737. "pawArea": {
  55738. name: "Paw Area",
  55739. power: 2,
  55740. type: "area",
  55741. base: math.unit(12 * 4.5, "inches^2")
  55742. },
  55743. }
  55744. },
  55745. },
  55746. [
  55747. {
  55748. name: "Normal",
  55749. height: math.unit(6 + 3/12, "feet"),
  55750. default: true
  55751. },
  55752. ]
  55753. ))
  55754. characterMakers.push(() => makeCharacter(
  55755. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55756. {
  55757. back: {
  55758. height: math.unit(1.6, "meters"),
  55759. weight: math.unit(150, "lb"),
  55760. name: "Back",
  55761. image: {
  55762. source: "./media/characters/zari/back.svg",
  55763. extra: 424/411,
  55764. bottom: 32/456
  55765. },
  55766. extraAttributes: {
  55767. "bladderCapacity": {
  55768. name: "Bladder Size",
  55769. power: 3,
  55770. type: "volume",
  55771. base: math.unit(500, "mL")
  55772. },
  55773. "bladderFlow": {
  55774. name: "Flow Rate",
  55775. power: 3,
  55776. type: "volume",
  55777. base: math.unit(25, "mL")
  55778. },
  55779. }
  55780. },
  55781. },
  55782. [
  55783. {
  55784. name: "Normal",
  55785. height: math.unit(1.6, "meters"),
  55786. default: true
  55787. },
  55788. ]
  55789. ))
  55790. characterMakers.push(() => makeCharacter(
  55791. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55792. {
  55793. front: {
  55794. height: math.unit(25, "feet"),
  55795. weight: math.unit(5, "tons"),
  55796. name: "Front",
  55797. image: {
  55798. source: "./media/characters/charlie-human/front.svg",
  55799. extra: 1870/1740,
  55800. bottom: 102/1972
  55801. },
  55802. extraAttributes: {
  55803. "dickLength": {
  55804. name: "Dick Length",
  55805. power: 1,
  55806. type: "length",
  55807. base: math.unit(9, "feet")
  55808. },
  55809. }
  55810. },
  55811. back: {
  55812. height: math.unit(25, "feet"),
  55813. weight: math.unit(5, "tons"),
  55814. name: "Back",
  55815. image: {
  55816. source: "./media/characters/charlie-human/back.svg",
  55817. extra: 1858/1733,
  55818. bottom: 105/1963
  55819. },
  55820. extraAttributes: {
  55821. "dickLength": {
  55822. name: "Dick Length",
  55823. power: 1,
  55824. type: "length",
  55825. base: math.unit(9, "feet")
  55826. },
  55827. }
  55828. },
  55829. },
  55830. [
  55831. {
  55832. name: "\"Normal\"",
  55833. height: math.unit(6 + 4/12, "feet")
  55834. },
  55835. {
  55836. name: "Big",
  55837. height: math.unit(25, "feet"),
  55838. default: true
  55839. },
  55840. ]
  55841. ))
  55842. characterMakers.push(() => makeCharacter(
  55843. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55844. {
  55845. front: {
  55846. height: math.unit(6 + 4/12, "feet"),
  55847. weight: math.unit(320, "lb"),
  55848. name: "Front",
  55849. image: {
  55850. source: "./media/characters/ookitsu/front.svg",
  55851. extra: 1160/976,
  55852. bottom: 38/1198
  55853. }
  55854. },
  55855. frontNsfw: {
  55856. height: math.unit(6 + 4/12, "feet"),
  55857. weight: math.unit(320, "lb"),
  55858. name: "Front (NSFW)",
  55859. image: {
  55860. source: "./media/characters/ookitsu/front-nsfw.svg",
  55861. extra: 1160/976,
  55862. bottom: 38/1198
  55863. }
  55864. },
  55865. back: {
  55866. height: math.unit(6 + 4/12, "feet"),
  55867. weight: math.unit(320, "lb"),
  55868. name: "Back",
  55869. image: {
  55870. source: "./media/characters/ookitsu/back.svg",
  55871. extra: 1030/975,
  55872. bottom: 70/1100
  55873. }
  55874. },
  55875. head: {
  55876. height: math.unit(1.79, "feet"),
  55877. name: "Head",
  55878. image: {
  55879. source: "./media/characters/ookitsu/head.svg"
  55880. }
  55881. },
  55882. hand: {
  55883. height: math.unit(0.92, "feet"),
  55884. name: "Hand",
  55885. image: {
  55886. source: "./media/characters/ookitsu/hand.svg"
  55887. }
  55888. },
  55889. tails: {
  55890. height: math.unit(3.3, "feet"),
  55891. name: "Tails",
  55892. image: {
  55893. source: "./media/characters/ookitsu/tails.svg"
  55894. }
  55895. },
  55896. dick: {
  55897. height: math.unit(1.10833, "feet"),
  55898. name: "Dick",
  55899. image: {
  55900. source: "./media/characters/ookitsu/dick.svg"
  55901. }
  55902. },
  55903. },
  55904. [
  55905. {
  55906. name: "Normal",
  55907. height: math.unit(6 + 4/12, "feet"),
  55908. default: true
  55909. },
  55910. {
  55911. name: "Macro",
  55912. height: math.unit(30, "feet")
  55913. },
  55914. ]
  55915. ))
  55916. characterMakers.push(() => makeCharacter(
  55917. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55918. {
  55919. anthroFront: {
  55920. height: math.unit(6, "feet"),
  55921. weight: math.unit(250, "lb"),
  55922. name: "Front",
  55923. image: {
  55924. source: "./media/characters/jhusky/anthro-front.svg",
  55925. extra: 474/439,
  55926. bottom: 7/481
  55927. },
  55928. form: "anthro",
  55929. default: true
  55930. },
  55931. taurSideSfw: {
  55932. height: math.unit(6 + 4/12, "feet"),
  55933. weight: math.unit(500, "lb"),
  55934. name: "Side (SFW)",
  55935. image: {
  55936. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55937. extra: 1741/1629,
  55938. bottom: 196/1937
  55939. },
  55940. form: "taur",
  55941. default: true
  55942. },
  55943. taurSideNsfw: {
  55944. height: math.unit(6 + 4/12, "feet"),
  55945. weight: math.unit(500, "lb"),
  55946. name: "Taur (NSFW)",
  55947. image: {
  55948. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55949. extra: 1741/1629,
  55950. bottom: 196/1937
  55951. },
  55952. form: "taur",
  55953. },
  55954. },
  55955. [
  55956. {
  55957. name: "Huge",
  55958. height: math.unit(500, "feet"),
  55959. form: "anthro"
  55960. },
  55961. {
  55962. name: "Macro",
  55963. height: math.unit(1000, "feet"),
  55964. default: true,
  55965. form: "anthro"
  55966. },
  55967. {
  55968. name: "Megamacro",
  55969. height: math.unit(10000, "feet"),
  55970. form: "anthro"
  55971. },
  55972. {
  55973. name: "Huge",
  55974. height: math.unit(528, "feet"),
  55975. form: "taur"
  55976. },
  55977. {
  55978. name: "Macro",
  55979. height: math.unit(1056, "feet"),
  55980. default: true,
  55981. form: "taur"
  55982. },
  55983. {
  55984. name: "Megamacro",
  55985. height: math.unit(10556, "feet"),
  55986. form: "taur"
  55987. },
  55988. ],
  55989. {
  55990. "anthro": {
  55991. name: "Anthro",
  55992. default: true
  55993. },
  55994. "taur": {
  55995. name: "Taur",
  55996. },
  55997. }
  55998. ))
  55999. characterMakers.push(() => makeCharacter(
  56000. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56001. {
  56002. front: {
  56003. height: math.unit(8, "feet"),
  56004. weight: math.unit(500, "lb"),
  56005. name: "Front",
  56006. image: {
  56007. source: "./media/characters/armail/front.svg",
  56008. extra: 1753/1669,
  56009. bottom: 155/1908
  56010. }
  56011. },
  56012. back: {
  56013. height: math.unit(8, "feet"),
  56014. weight: math.unit(500, "lb"),
  56015. name: "Back",
  56016. image: {
  56017. source: "./media/characters/armail/back.svg",
  56018. extra: 1872/1803,
  56019. bottom: 63/1935
  56020. }
  56021. },
  56022. },
  56023. [
  56024. {
  56025. name: "Micro",
  56026. height: math.unit(0.25, "feet")
  56027. },
  56028. {
  56029. name: "Normal",
  56030. height: math.unit(8, "feet"),
  56031. default: true
  56032. },
  56033. {
  56034. name: "Mini-macro",
  56035. height: math.unit(30, "feet")
  56036. },
  56037. {
  56038. name: "Macro",
  56039. height: math.unit(400, "feet")
  56040. },
  56041. {
  56042. name: "Mega-macro",
  56043. height: math.unit(6000, "feet")
  56044. },
  56045. ]
  56046. ))
  56047. characterMakers.push(() => makeCharacter(
  56048. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56049. {
  56050. front: {
  56051. height: math.unit(6 + 7/12, "feet"),
  56052. weight: math.unit(210, "lb"),
  56053. name: "Front",
  56054. image: {
  56055. source: "./media/characters/wilfred-t-buxton/front.svg",
  56056. extra: 1068/882,
  56057. bottom: 28/1096
  56058. }
  56059. },
  56060. },
  56061. [
  56062. {
  56063. name: "Normal",
  56064. height: math.unit(6 + 7/12, "feet"),
  56065. default: true
  56066. },
  56067. ]
  56068. ))
  56069. characterMakers.push(() => makeCharacter(
  56070. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56071. {
  56072. front: {
  56073. height: math.unit(5 + 2/12, "feet"),
  56074. weight: math.unit(120, "lb"),
  56075. name: "Front",
  56076. image: {
  56077. source: "./media/characters/leighton-marrow/front.svg",
  56078. extra: 441/409,
  56079. bottom: 37/478
  56080. }
  56081. },
  56082. },
  56083. [
  56084. {
  56085. name: "Normal",
  56086. height: math.unit(5 + 2/12, "feet"),
  56087. default: true
  56088. },
  56089. ]
  56090. ))
  56091. characterMakers.push(() => makeCharacter(
  56092. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56093. {
  56094. front: {
  56095. height: math.unit(4, "meters"),
  56096. weight: math.unit(1200, "kg"),
  56097. name: "Front",
  56098. image: {
  56099. source: "./media/characters/licos/front.svg",
  56100. extra: 1727/1604,
  56101. bottom: 101/1828
  56102. },
  56103. form: "anthro",
  56104. default: true
  56105. },
  56106. taur_side: {
  56107. height: math.unit(20, "meters"),
  56108. weight: math.unit(1100000, "kg"),
  56109. name: "Side",
  56110. image: {
  56111. source: "./media/characters/licos/taur.svg",
  56112. extra: 1158/1091,
  56113. bottom: 80/1238
  56114. },
  56115. form: "taur",
  56116. default: true
  56117. },
  56118. },
  56119. [
  56120. {
  56121. name: "Normal",
  56122. height: math.unit(4, "meters"),
  56123. default: true,
  56124. form: "anthro"
  56125. },
  56126. {
  56127. name: "Normal",
  56128. height: math.unit(20, "meters"),
  56129. default: true,
  56130. form: "taur"
  56131. },
  56132. ],
  56133. {
  56134. "anthro": {
  56135. name: "Anthro",
  56136. default: true
  56137. },
  56138. "taur": {
  56139. name: "Taur",
  56140. },
  56141. }
  56142. ))
  56143. characterMakers.push(() => makeCharacter(
  56144. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56145. {
  56146. front: {
  56147. height: math.unit(10 + 3/12, "feet"),
  56148. name: "Front",
  56149. image: {
  56150. source: "./media/characters/theo-monkey/front.svg",
  56151. extra: 1735/1658,
  56152. bottom: 73/1808
  56153. }
  56154. },
  56155. back: {
  56156. height: math.unit(10 + 3/12, "feet"),
  56157. name: "Back",
  56158. image: {
  56159. source: "./media/characters/theo-monkey/back.svg",
  56160. extra: 1742/1664,
  56161. bottom: 33/1775
  56162. }
  56163. },
  56164. head: {
  56165. height: math.unit(2.29, "feet"),
  56166. name: "Head",
  56167. image: {
  56168. source: "./media/characters/theo-monkey/head.svg"
  56169. }
  56170. },
  56171. handPalm: {
  56172. height: math.unit(1.73, "feet"),
  56173. name: "Hand (Palm)",
  56174. image: {
  56175. source: "./media/characters/theo-monkey/hand-palm.svg"
  56176. }
  56177. },
  56178. handBack: {
  56179. height: math.unit(1.63, "feet"),
  56180. name: "Hand (Back)",
  56181. image: {
  56182. source: "./media/characters/theo-monkey/hand-back.svg"
  56183. }
  56184. },
  56185. footSole: {
  56186. height: math.unit(2.15, "feet"),
  56187. name: "Foot (Sole)",
  56188. image: {
  56189. source: "./media/characters/theo-monkey/foot-sole.svg"
  56190. }
  56191. },
  56192. footSide: {
  56193. height: math.unit(1.6, "feet"),
  56194. name: "Foot (Side)",
  56195. image: {
  56196. source: "./media/characters/theo-monkey/foot-side.svg"
  56197. }
  56198. },
  56199. },
  56200. [
  56201. {
  56202. name: "Normal",
  56203. height: math.unit(10 + 3/12, "feet"),
  56204. default: true
  56205. },
  56206. ]
  56207. ))
  56208. characterMakers.push(() => makeCharacter(
  56209. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56210. {
  56211. front: {
  56212. height: math.unit(11, "feet"),
  56213. weight: math.unit(3000, "lb"),
  56214. preyCapacity: math.unit(10, "people"),
  56215. name: "Front",
  56216. image: {
  56217. source: "./media/characters/brook/front.svg",
  56218. extra: 909/835,
  56219. bottom: 108/1017
  56220. }
  56221. },
  56222. back: {
  56223. height: math.unit(11, "feet"),
  56224. weight: math.unit(3000, "lb"),
  56225. preyCapacity: math.unit(10, "people"),
  56226. name: "Back",
  56227. image: {
  56228. source: "./media/characters/brook/back.svg",
  56229. extra: 976/916,
  56230. bottom: 34/1010
  56231. }
  56232. },
  56233. backAlt: {
  56234. height: math.unit(11, "feet"),
  56235. weight: math.unit(3000, "lb"),
  56236. preyCapacity: math.unit(10, "people"),
  56237. name: "Back (Alt)",
  56238. image: {
  56239. source: "./media/characters/brook/back-alt.svg",
  56240. extra: 1283/1213,
  56241. bottom: 35/1318
  56242. }
  56243. },
  56244. bust: {
  56245. height: math.unit(9.0859030837, "feet"),
  56246. weight: math.unit(3000, "lb"),
  56247. preyCapacity: math.unit(10, "people"),
  56248. name: "Bust",
  56249. image: {
  56250. source: "./media/characters/brook/bust.svg",
  56251. extra: 2043/1923,
  56252. bottom: 0/2043
  56253. }
  56254. },
  56255. },
  56256. [
  56257. {
  56258. name: "Small",
  56259. height: math.unit(11, "feet"),
  56260. default: true
  56261. },
  56262. {
  56263. name: "Towering",
  56264. height: math.unit(5, "km")
  56265. },
  56266. {
  56267. name: "Enormous",
  56268. height: math.unit(25, "earths")
  56269. },
  56270. ]
  56271. ))
  56272. characterMakers.push(() => makeCharacter(
  56273. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56274. {
  56275. front: {
  56276. height: math.unit(4, "feet"),
  56277. weight: math.unit(150, "lb"),
  56278. name: "Front",
  56279. image: {
  56280. source: "./media/characters/squishi/front.svg",
  56281. extra: 1428/1271,
  56282. bottom: 30/1458
  56283. },
  56284. extraAttributes: {
  56285. "pawSize": {
  56286. name: "Paw Size",
  56287. power: 1,
  56288. type: "length",
  56289. base: math.unit(14, "ShoeSizeMensUS"),
  56290. defaultUnit: "ShoeSizeMensUS"
  56291. },
  56292. }
  56293. },
  56294. side: {
  56295. height: math.unit(4, "feet"),
  56296. weight: math.unit(150, "lb"),
  56297. name: "Side",
  56298. image: {
  56299. source: "./media/characters/squishi/side.svg",
  56300. extra: 1428/1271,
  56301. bottom: 30/1458
  56302. },
  56303. extraAttributes: {
  56304. "pawSize": {
  56305. name: "Paw Size",
  56306. power: 1,
  56307. type: "length",
  56308. base: math.unit(14, "ShoeSizeMensUS"),
  56309. defaultUnit: "ShoeSizeMensUS"
  56310. },
  56311. }
  56312. },
  56313. back: {
  56314. height: math.unit(4, "feet"),
  56315. weight: math.unit(150, "lb"),
  56316. name: "Back",
  56317. image: {
  56318. source: "./media/characters/squishi/back.svg",
  56319. extra: 1428/1271,
  56320. bottom: 30/1458
  56321. },
  56322. extraAttributes: {
  56323. "pawSize": {
  56324. name: "Paw Size",
  56325. power: 1,
  56326. type: "length",
  56327. base: math.unit(14, "ShoeSizeMensUS"),
  56328. defaultUnit: "ShoeSizeMensUS"
  56329. },
  56330. }
  56331. },
  56332. },
  56333. [
  56334. {
  56335. name: "Normal",
  56336. height: math.unit(4, "feet"),
  56337. default: true
  56338. },
  56339. ]
  56340. ))
  56341. characterMakers.push(() => makeCharacter(
  56342. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56343. {
  56344. front: {
  56345. height: math.unit(7 + 8/12, "feet"),
  56346. weight: math.unit(333, "lb"),
  56347. name: "Front",
  56348. image: {
  56349. source: "./media/characters/vincent-vasroc/front.svg",
  56350. extra: 1962/1860,
  56351. bottom: 41/2003
  56352. }
  56353. },
  56354. back: {
  56355. height: math.unit(7 + 8/12, "feet"),
  56356. weight: math.unit(333, "lb"),
  56357. name: "Back",
  56358. image: {
  56359. source: "./media/characters/vincent-vasroc/back.svg",
  56360. extra: 1952/1815,
  56361. bottom: 33/1985
  56362. }
  56363. },
  56364. paw: {
  56365. height: math.unit(1.24, "feet"),
  56366. name: "Paw",
  56367. image: {
  56368. source: "./media/characters/vincent-vasroc/paw.svg"
  56369. }
  56370. },
  56371. ear: {
  56372. height: math.unit(0.75, "feet"),
  56373. name: "Ear",
  56374. image: {
  56375. source: "./media/characters/vincent-vasroc/ear.svg"
  56376. }
  56377. },
  56378. },
  56379. [
  56380. {
  56381. name: "Nano",
  56382. height: math.unit(92, "micrometers")
  56383. },
  56384. {
  56385. name: "Normal",
  56386. height: math.unit(7 + 8/12, "feet"),
  56387. default: true
  56388. },
  56389. ]
  56390. ))
  56391. characterMakers.push(() => makeCharacter(
  56392. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56393. {
  56394. frontNsfw: {
  56395. height: math.unit(40, "feet"),
  56396. weight: math.unit(58, "tons"),
  56397. name: "Front (NSFW)",
  56398. image: {
  56399. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56400. extra: 1265/965,
  56401. bottom: 155/1420
  56402. }
  56403. },
  56404. frontSfw: {
  56405. height: math.unit(40, "feet"),
  56406. weight: math.unit(58, "tons"),
  56407. name: "Front (SFW)",
  56408. image: {
  56409. source: "./media/characters/ru-kahn/front-sfw.svg",
  56410. extra: 1265/965,
  56411. bottom: 80/1345
  56412. }
  56413. },
  56414. },
  56415. [
  56416. {
  56417. name: "Small",
  56418. height: math.unit(4, "feet")
  56419. },
  56420. {
  56421. name: "Normal",
  56422. height: math.unit(40, "feet"),
  56423. default: true
  56424. },
  56425. {
  56426. name: "Macro",
  56427. height: math.unit(400, "feet")
  56428. },
  56429. ]
  56430. ))
  56431. characterMakers.push(() => makeCharacter(
  56432. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56433. {
  56434. frontNude: {
  56435. height: math.unit(6 + 5/12, "feet"),
  56436. name: "Front (Nude)",
  56437. image: {
  56438. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56439. extra: 1369/1366,
  56440. bottom: 68/1437
  56441. }
  56442. },
  56443. frontDressed: {
  56444. height: math.unit(6 + 5/12, "feet"),
  56445. name: "Front (Dressed)",
  56446. image: {
  56447. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56448. extra: 1369/1366,
  56449. bottom: 68/1437
  56450. }
  56451. },
  56452. },
  56453. [
  56454. {
  56455. name: "Normal",
  56456. height: math.unit(6 + 5/12, "feet"),
  56457. default: true
  56458. },
  56459. {
  56460. name: "Maximum",
  56461. height: math.unit(1930, "feet")
  56462. },
  56463. ]
  56464. ))
  56465. characterMakers.push(() => makeCharacter(
  56466. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56467. {
  56468. front: {
  56469. height: math.unit(5 + 6/12, "feet"),
  56470. name: "Front",
  56471. image: {
  56472. source: "./media/characters/kaja/front.svg",
  56473. extra: 1874/1514,
  56474. bottom: 117/1991
  56475. }
  56476. },
  56477. },
  56478. [
  56479. {
  56480. name: "Normal",
  56481. height: math.unit(5 + 6/12, "feet"),
  56482. default: true
  56483. },
  56484. ]
  56485. ))
  56486. characterMakers.push(() => makeCharacter(
  56487. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56488. {
  56489. front: {
  56490. height: math.unit(5 + 9/12, "feet"),
  56491. weight: math.unit(200, "lb"),
  56492. name: "Front",
  56493. image: {
  56494. source: "./media/characters/mark-smith/front.svg",
  56495. extra: 1004/943,
  56496. bottom: 58/1062
  56497. }
  56498. },
  56499. back: {
  56500. height: math.unit(5 + 9/12, "feet"),
  56501. weight: math.unit(200, "lb"),
  56502. name: "Back",
  56503. image: {
  56504. source: "./media/characters/mark-smith/back.svg",
  56505. extra: 1023/953,
  56506. bottom: 24/1047
  56507. }
  56508. },
  56509. head: {
  56510. height: math.unit(1.82, "feet"),
  56511. name: "Head",
  56512. image: {
  56513. source: "./media/characters/mark-smith/head.svg"
  56514. }
  56515. },
  56516. hand: {
  56517. height: math.unit(1.4, "feet"),
  56518. name: "Hand",
  56519. image: {
  56520. source: "./media/characters/mark-smith/hand.svg"
  56521. }
  56522. },
  56523. paw: {
  56524. height: math.unit(1.69, "feet"),
  56525. name: "Paw",
  56526. image: {
  56527. source: "./media/characters/mark-smith/paw.svg"
  56528. }
  56529. },
  56530. },
  56531. [
  56532. {
  56533. name: "Micro",
  56534. height: math.unit(0.25, "inches")
  56535. },
  56536. {
  56537. name: "Normal",
  56538. height: math.unit(5 + 9/12, "feet"),
  56539. default: true
  56540. },
  56541. {
  56542. name: "Macro",
  56543. height: math.unit(500, "feet")
  56544. },
  56545. ]
  56546. ))
  56547. characterMakers.push(() => makeCharacter(
  56548. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56549. {
  56550. frontNude: {
  56551. height: math.unit(6, "feet"),
  56552. name: "Front (Nude)",
  56553. image: {
  56554. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56555. extra: 1384/1321,
  56556. bottom: 57/1441
  56557. }
  56558. },
  56559. frontDressed: {
  56560. height: math.unit(6, "feet"),
  56561. name: "Front (Dressed)",
  56562. image: {
  56563. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56564. extra: 1384/1321,
  56565. bottom: 57/1441
  56566. }
  56567. },
  56568. },
  56569. [
  56570. {
  56571. name: "Normal",
  56572. height: math.unit(6, "feet"),
  56573. default: true
  56574. },
  56575. {
  56576. name: "Maximum",
  56577. height: math.unit(1776, "feet")
  56578. },
  56579. ]
  56580. ))
  56581. characterMakers.push(() => makeCharacter(
  56582. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56583. {
  56584. front: {
  56585. height: math.unit(2 + 4/12, "feet"),
  56586. weight: math.unit(350, "lb"),
  56587. name: "Front",
  56588. image: {
  56589. source: "./media/characters/devos/front.svg",
  56590. extra: 958/852,
  56591. bottom: 143/1101
  56592. }
  56593. },
  56594. },
  56595. [
  56596. {
  56597. name: "Base",
  56598. height: math.unit(2 + 4/12, "feet"),
  56599. default: true
  56600. },
  56601. ]
  56602. ))
  56603. characterMakers.push(() => makeCharacter(
  56604. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56605. {
  56606. front: {
  56607. height: math.unit(9 + 2/12, "feet"),
  56608. name: "Front",
  56609. image: {
  56610. source: "./media/characters/hiveheart/front.svg",
  56611. extra: 394/364,
  56612. bottom: 65/459
  56613. }
  56614. },
  56615. back: {
  56616. height: math.unit(9 + 2/12, "feet"),
  56617. name: "Back",
  56618. image: {
  56619. source: "./media/characters/hiveheart/back.svg",
  56620. extra: 374/357,
  56621. bottom: 63/437
  56622. }
  56623. },
  56624. },
  56625. [
  56626. {
  56627. name: "Base",
  56628. height: math.unit(9 + 2/12, "feet"),
  56629. default: true
  56630. },
  56631. ]
  56632. ))
  56633. characterMakers.push(() => makeCharacter(
  56634. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56635. {
  56636. front: {
  56637. height: math.unit(2.5, "inches"),
  56638. weight: math.unit(0.6, "oz"),
  56639. name: "Front",
  56640. image: {
  56641. source: "./media/characters/bryn/front.svg",
  56642. extra: 1480/1205,
  56643. bottom: 27/1507
  56644. }
  56645. },
  56646. back: {
  56647. height: math.unit(2.5, "inches"),
  56648. weight: math.unit(0.6, "oz"),
  56649. name: "Back",
  56650. image: {
  56651. source: "./media/characters/bryn/back.svg",
  56652. extra: 1475/1201,
  56653. bottom: 39/1514
  56654. }
  56655. },
  56656. foot: {
  56657. height: math.unit(0.4, "inches"),
  56658. name: "Foot",
  56659. image: {
  56660. source: "./media/characters/bryn/foot.svg"
  56661. }
  56662. },
  56663. },
  56664. [
  56665. {
  56666. name: "Normal",
  56667. height: math.unit(2.5, "inches"),
  56668. default: true
  56669. },
  56670. ]
  56671. ))
  56672. characterMakers.push(() => makeCharacter(
  56673. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56674. {
  56675. side: {
  56676. height: math.unit(7, "feet"),
  56677. weight: math.unit(657, "kg"),
  56678. name: "Side",
  56679. image: {
  56680. source: "./media/characters/delta/side.svg",
  56681. extra: 781/212,
  56682. bottom: 7/788
  56683. },
  56684. extraAttributes: {
  56685. "wingspan": {
  56686. name: "Wingspan",
  56687. power: 1,
  56688. type: "length",
  56689. base: math.unit(48, "feet")
  56690. },
  56691. "length": {
  56692. name: "Length",
  56693. power: 1,
  56694. type: "length",
  56695. base: math.unit(21, "feet")
  56696. },
  56697. "pawSize": {
  56698. name: "Paw Size",
  56699. power: 2,
  56700. type: "area",
  56701. base: math.unit(1.5*1.4, "feet^2")
  56702. },
  56703. }
  56704. },
  56705. },
  56706. [
  56707. {
  56708. name: "Normal",
  56709. height: math.unit(6, "feet"),
  56710. default: true
  56711. },
  56712. ]
  56713. ))
  56714. characterMakers.push(() => makeCharacter(
  56715. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56716. {
  56717. front: {
  56718. height: math.unit(6, "feet"),
  56719. name: "Front",
  56720. image: {
  56721. source: "./media/characters/pyrow/front.svg",
  56722. extra: 513/486,
  56723. bottom: 14/527
  56724. }
  56725. },
  56726. frontWing: {
  56727. height: math.unit(6, "feet"),
  56728. name: "Front (Wing)",
  56729. image: {
  56730. source: "./media/characters/pyrow/front-wing.svg",
  56731. extra: 539/383,
  56732. bottom: 20/559
  56733. }
  56734. },
  56735. back: {
  56736. height: math.unit(6, "feet"),
  56737. name: "Back",
  56738. image: {
  56739. source: "./media/characters/pyrow/back.svg",
  56740. extra: 500/473,
  56741. bottom: 9/509
  56742. }
  56743. },
  56744. },
  56745. [
  56746. {
  56747. name: "Normal",
  56748. height: math.unit(6, "feet"),
  56749. default: true
  56750. },
  56751. ]
  56752. ))
  56753. characterMakers.push(() => makeCharacter(
  56754. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56755. {
  56756. front: {
  56757. height: math.unit(5, "meters"),
  56758. weight: math.unit(3, "tonnes"),
  56759. name: "Front",
  56760. image: {
  56761. source: "./media/characters/velikan/front.svg",
  56762. extra: 867/744,
  56763. bottom: 71/938
  56764. },
  56765. extraAttributes: {
  56766. "shoeSize": {
  56767. name: "Shoe Size",
  56768. power: 1,
  56769. type: "length",
  56770. base: math.unit(135, "ShoeSizeUK"),
  56771. defaultUnit: "ShoeSizeUK"
  56772. },
  56773. }
  56774. },
  56775. },
  56776. [
  56777. {
  56778. name: "Normal",
  56779. height: math.unit(5, "meters"),
  56780. default: true
  56781. },
  56782. {
  56783. name: "Macro",
  56784. height: math.unit(1, "km")
  56785. },
  56786. {
  56787. name: "Mega Macro",
  56788. height: math.unit(100, "km")
  56789. },
  56790. {
  56791. name: "Giga Macro",
  56792. height: math.unit(2, "megameters")
  56793. },
  56794. {
  56795. name: "Planetary",
  56796. height: math.unit(22, "megameters")
  56797. },
  56798. {
  56799. name: "Solar",
  56800. height: math.unit(8, "gigameters")
  56801. },
  56802. {
  56803. name: "Cosmic",
  56804. height: math.unit(10, "zettameters")
  56805. },
  56806. {
  56807. name: "Omni",
  56808. height: math.unit(9e260, "multiverses")
  56809. },
  56810. ]
  56811. ))
  56812. characterMakers.push(() => makeCharacter(
  56813. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56814. {
  56815. front: {
  56816. height: math.unit(4 + 3/12, "feet"),
  56817. weight: math.unit(90, "lb"),
  56818. name: "Front",
  56819. image: {
  56820. source: "./media/characters/sabiki/front.svg",
  56821. extra: 1662/1423,
  56822. bottom: 65/1727
  56823. }
  56824. },
  56825. },
  56826. [
  56827. {
  56828. name: "Normal",
  56829. height: math.unit(4 + 3/12, "feet"),
  56830. default: true
  56831. },
  56832. ]
  56833. ))
  56834. characterMakers.push(() => makeCharacter(
  56835. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56836. {
  56837. frontSfw: {
  56838. height: math.unit(2, "mm"),
  56839. name: "Front (SFW)",
  56840. image: {
  56841. source: "./media/characters/carmel/front-sfw.svg",
  56842. extra: 1131/1006,
  56843. bottom: 66/1197
  56844. }
  56845. },
  56846. frontNsfw: {
  56847. height: math.unit(2, "mm"),
  56848. name: "Front (NSFW)",
  56849. image: {
  56850. source: "./media/characters/carmel/front-nsfw.svg",
  56851. extra: 1131/1006,
  56852. bottom: 66/1197
  56853. }
  56854. },
  56855. foot: {
  56856. height: math.unit(0.3, "mm"),
  56857. name: "Foot",
  56858. image: {
  56859. source: "./media/characters/carmel/foot.svg"
  56860. }
  56861. },
  56862. tongue: {
  56863. height: math.unit(0.71, "mm"),
  56864. name: "Tongue",
  56865. image: {
  56866. source: "./media/characters/carmel/tongue.svg"
  56867. }
  56868. },
  56869. dick: {
  56870. height: math.unit(0.085, "mm"),
  56871. name: "Dick",
  56872. image: {
  56873. source: "./media/characters/carmel/dick.svg"
  56874. }
  56875. },
  56876. },
  56877. [
  56878. {
  56879. name: "Micro",
  56880. height: math.unit(2, "mm"),
  56881. default: true
  56882. },
  56883. {
  56884. name: "Normal",
  56885. height: math.unit(4 + 8/12, "feet")
  56886. },
  56887. {
  56888. name: "Mega Macro",
  56889. height: math.unit(250, "feet")
  56890. },
  56891. {
  56892. name: "BIGGER",
  56893. height: math.unit(1000, "feet")
  56894. },
  56895. {
  56896. name: "BIGGEST",
  56897. height: math.unit(2, "miles")
  56898. },
  56899. ]
  56900. ))
  56901. characterMakers.push(() => makeCharacter(
  56902. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56903. {
  56904. front: {
  56905. height: math.unit(6.5, "feet"),
  56906. weight: math.unit(198, "lb"),
  56907. name: "Front",
  56908. image: {
  56909. source: "./media/characters/tamani/anthro.svg",
  56910. extra: 930/890,
  56911. bottom: 34/964
  56912. },
  56913. form: "anthro",
  56914. default: true
  56915. },
  56916. side: {
  56917. height: math.unit(6, "feet"),
  56918. weight: math.unit(198*2, "lb"),
  56919. name: "Side",
  56920. image: {
  56921. source: "./media/characters/tamani/feral.svg",
  56922. extra: 559/519,
  56923. bottom: 43/602
  56924. },
  56925. form: "feral"
  56926. },
  56927. },
  56928. [
  56929. {
  56930. name: "Normal",
  56931. height: math.unit(6.5, "feet"),
  56932. default: true,
  56933. form: "anthro"
  56934. },
  56935. {
  56936. name: "Normal",
  56937. height: math.unit(6, "feet"),
  56938. default: true,
  56939. form: "feral"
  56940. },
  56941. ],
  56942. {
  56943. "anthro": {
  56944. name: "Anthro",
  56945. default: true
  56946. },
  56947. "feral": {
  56948. name: "Feral",
  56949. },
  56950. }
  56951. ))
  56952. characterMakers.push(() => makeCharacter(
  56953. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56954. {
  56955. front: {
  56956. height: math.unit(4 + 1/12, "feet"),
  56957. weight: math.unit(114, "lb"),
  56958. name: "Front",
  56959. image: {
  56960. source: "./media/characters/dex/front.svg",
  56961. extra: 787/680,
  56962. bottom: 18/805
  56963. }
  56964. },
  56965. side: {
  56966. height: math.unit(4 + 1/12, "feet"),
  56967. weight: math.unit(114, "lb"),
  56968. name: "Side",
  56969. image: {
  56970. source: "./media/characters/dex/side.svg",
  56971. extra: 785/680,
  56972. bottom: 12/797
  56973. }
  56974. },
  56975. back: {
  56976. height: math.unit(4 + 1/12, "feet"),
  56977. weight: math.unit(114, "lb"),
  56978. name: "Back",
  56979. image: {
  56980. source: "./media/characters/dex/back.svg",
  56981. extra: 785/681,
  56982. bottom: 17/802
  56983. }
  56984. },
  56985. loungewear: {
  56986. height: math.unit(4 + 1/12, "feet"),
  56987. weight: math.unit(114, "lb"),
  56988. name: "Loungewear",
  56989. image: {
  56990. source: "./media/characters/dex/loungewear.svg",
  56991. extra: 787/680,
  56992. bottom: 18/805
  56993. }
  56994. },
  56995. workout: {
  56996. height: math.unit(4 + 1/12, "feet"),
  56997. weight: math.unit(114, "lb"),
  56998. name: "Workout",
  56999. image: {
  57000. source: "./media/characters/dex/workout.svg",
  57001. extra: 787/680,
  57002. bottom: 18/805
  57003. }
  57004. },
  57005. schoolUniform: {
  57006. height: math.unit(4 + 1/12, "feet"),
  57007. weight: math.unit(114, "lb"),
  57008. name: "School-uniform",
  57009. image: {
  57010. source: "./media/characters/dex/school-uniform.svg",
  57011. extra: 787/680,
  57012. bottom: 18/805
  57013. }
  57014. },
  57015. maw: {
  57016. height: math.unit(0.55, "feet"),
  57017. name: "Maw",
  57018. image: {
  57019. source: "./media/characters/dex/maw.svg"
  57020. }
  57021. },
  57022. paw: {
  57023. height: math.unit(0.87, "feet"),
  57024. name: "Paw",
  57025. image: {
  57026. source: "./media/characters/dex/paw.svg"
  57027. }
  57028. },
  57029. bust: {
  57030. height: math.unit(1.67, "feet"),
  57031. name: "Bust",
  57032. image: {
  57033. source: "./media/characters/dex/bust.svg"
  57034. }
  57035. },
  57036. },
  57037. [
  57038. {
  57039. name: "Normal",
  57040. height: math.unit(4 + 1/12, "feet"),
  57041. default: true
  57042. },
  57043. ]
  57044. ))
  57045. characterMakers.push(() => makeCharacter(
  57046. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57047. {
  57048. front: {
  57049. height: math.unit(4 + 3/12, "feet"),
  57050. weight: math.unit(60, "lb"),
  57051. name: "Front",
  57052. image: {
  57053. source: "./media/characters/silke/front.svg",
  57054. extra: 1334/1122,
  57055. bottom: 21/1355
  57056. }
  57057. },
  57058. back: {
  57059. height: math.unit(4 + 3/12, "feet"),
  57060. weight: math.unit(60, "lb"),
  57061. name: "Back",
  57062. image: {
  57063. source: "./media/characters/silke/back.svg",
  57064. extra: 1328/1092,
  57065. bottom: 16/1344
  57066. }
  57067. },
  57068. dressed: {
  57069. height: math.unit(4 + 3/12, "feet"),
  57070. weight: math.unit(60, "lb"),
  57071. name: "Dressed",
  57072. image: {
  57073. source: "./media/characters/silke/dressed.svg",
  57074. extra: 1334/1122,
  57075. bottom: 43/1377
  57076. }
  57077. },
  57078. },
  57079. [
  57080. {
  57081. name: "Normal",
  57082. height: math.unit(4 + 3/12, "feet"),
  57083. default: true
  57084. },
  57085. ]
  57086. ))
  57087. characterMakers.push(() => makeCharacter(
  57088. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57089. {
  57090. front: {
  57091. height: math.unit(1.58, "meters"),
  57092. weight: math.unit(47, "kg"),
  57093. name: "Front",
  57094. image: {
  57095. source: "./media/characters/wireshark/front.svg",
  57096. extra: 883/838,
  57097. bottom: 66/949
  57098. }
  57099. },
  57100. },
  57101. [
  57102. {
  57103. name: "Normal",
  57104. height: math.unit(1.58, "meters"),
  57105. default: true
  57106. },
  57107. ]
  57108. ))
  57109. characterMakers.push(() => makeCharacter(
  57110. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57111. {
  57112. front: {
  57113. height: math.unit(6, "meters"),
  57114. weight: math.unit(15000, "kg"),
  57115. name: "Front",
  57116. image: {
  57117. source: "./media/characters/gallagher/front.svg",
  57118. extra: 532/493,
  57119. bottom: 0/532
  57120. }
  57121. },
  57122. },
  57123. [
  57124. {
  57125. name: "Normal",
  57126. height: math.unit(6, "meters"),
  57127. default: true
  57128. },
  57129. ]
  57130. ))
  57131. characterMakers.push(() => makeCharacter(
  57132. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57133. {
  57134. front: {
  57135. height: math.unit(2.4, "meters"),
  57136. weight: math.unit(270, "kg"),
  57137. name: "Front",
  57138. image: {
  57139. source: "./media/characters/alice/front.svg",
  57140. extra: 950/900,
  57141. bottom: 36/986
  57142. }
  57143. },
  57144. side: {
  57145. height: math.unit(2.4, "meters"),
  57146. weight: math.unit(270, "kg"),
  57147. name: "Side",
  57148. image: {
  57149. source: "./media/characters/alice/side.svg",
  57150. extra: 921/876,
  57151. bottom: 19/940
  57152. }
  57153. },
  57154. dressed: {
  57155. height: math.unit(2.4, "meters"),
  57156. weight: math.unit(270, "kg"),
  57157. name: "Dressed",
  57158. image: {
  57159. source: "./media/characters/alice/dressed.svg",
  57160. extra: 905/850,
  57161. bottom: 81/986
  57162. }
  57163. },
  57164. fishnet: {
  57165. height: math.unit(2.4, "meters"),
  57166. weight: math.unit(270, "kg"),
  57167. name: "Fishnet",
  57168. image: {
  57169. source: "./media/characters/alice/fishnet.svg",
  57170. extra: 905/850,
  57171. bottom: 81/986
  57172. }
  57173. },
  57174. },
  57175. [
  57176. {
  57177. name: "Normal",
  57178. height: math.unit(2.4, "meters"),
  57179. default: true
  57180. },
  57181. ]
  57182. ))
  57183. characterMakers.push(() => makeCharacter(
  57184. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57185. {
  57186. front: {
  57187. height: math.unit(175.25, "feet"),
  57188. name: "Front",
  57189. image: {
  57190. source: "./media/characters/fio/front.svg",
  57191. extra: 1883/1591,
  57192. bottom: 34/1917
  57193. }
  57194. },
  57195. },
  57196. [
  57197. {
  57198. name: "Normal",
  57199. height: math.unit(175.25, "cm"),
  57200. default: true
  57201. },
  57202. ]
  57203. ))
  57204. characterMakers.push(() => makeCharacter(
  57205. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57206. {
  57207. side: {
  57208. height: math.unit(6, "meters"),
  57209. weight: math.unit(3400, "kg"),
  57210. preyCapacity: math.unit(1700, "liters"),
  57211. name: "Side",
  57212. image: {
  57213. source: "./media/characters/hass/side.svg",
  57214. extra: 1058/997,
  57215. bottom: 177/1235
  57216. }
  57217. },
  57218. feeding: {
  57219. height: math.unit(6*0.63, "meters"),
  57220. weight: math.unit(3400, "kg"),
  57221. preyCapacity: math.unit(1700, "liters"),
  57222. name: "Feeding",
  57223. image: {
  57224. source: "./media/characters/hass/feeding.svg",
  57225. extra: 689/579,
  57226. bottom: 146/835
  57227. }
  57228. },
  57229. guts: {
  57230. height: math.unit(6, "meters"),
  57231. weight: math.unit(3400, "kg"),
  57232. name: "Guts",
  57233. image: {
  57234. source: "./media/characters/hass/guts.svg",
  57235. extra: 1223/1198,
  57236. bottom: 182/1405
  57237. }
  57238. },
  57239. dickFront: {
  57240. height: math.unit(1.4, "meters"),
  57241. name: "Dick (Front)",
  57242. image: {
  57243. source: "./media/characters/hass/dick-front.svg"
  57244. }
  57245. },
  57246. dickSide: {
  57247. height: math.unit(1.3, "meters"),
  57248. name: "Dick (Side)",
  57249. image: {
  57250. source: "./media/characters/hass/dick-side.svg"
  57251. }
  57252. },
  57253. dickBack: {
  57254. height: math.unit(1.4, "meters"),
  57255. name: "Dick (Back)",
  57256. image: {
  57257. source: "./media/characters/hass/dick-back.svg"
  57258. }
  57259. },
  57260. },
  57261. [
  57262. {
  57263. name: "Normal",
  57264. height: math.unit(6, "meters"),
  57265. default: true
  57266. },
  57267. ]
  57268. ))
  57269. characterMakers.push(() => makeCharacter(
  57270. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57271. {
  57272. front: {
  57273. height: math.unit(4, "feet"),
  57274. weight: math.unit(60, "lb"),
  57275. name: "Front",
  57276. image: {
  57277. source: "./media/characters/hickory-finnegan/front.svg",
  57278. extra: 444/411,
  57279. bottom: 10/454
  57280. }
  57281. },
  57282. side: {
  57283. height: math.unit(4, "feet"),
  57284. weight: math.unit(60, "lb"),
  57285. name: "Side",
  57286. image: {
  57287. source: "./media/characters/hickory-finnegan/side.svg",
  57288. extra: 444/411,
  57289. bottom: 10/454
  57290. }
  57291. },
  57292. back: {
  57293. height: math.unit(4, "feet"),
  57294. weight: math.unit(60, "lb"),
  57295. name: "Back",
  57296. image: {
  57297. source: "./media/characters/hickory-finnegan/back.svg",
  57298. extra: 444/411,
  57299. bottom: 10/454
  57300. }
  57301. },
  57302. },
  57303. [
  57304. {
  57305. name: "Normal",
  57306. height: math.unit(4, "feet"),
  57307. default: true
  57308. },
  57309. ]
  57310. ))
  57311. characterMakers.push(() => makeCharacter(
  57312. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57313. {
  57314. snivy_front: {
  57315. height: math.unit(2, "feet"),
  57316. weight: math.unit(17.9, "lb"),
  57317. name: "Front",
  57318. image: {
  57319. source: "./media/characters/robin-phox/snivy-front.svg",
  57320. extra: 569/504,
  57321. bottom: 33/602
  57322. },
  57323. form: "snivy",
  57324. default: true
  57325. },
  57326. snivy_frontNsfw: {
  57327. height: math.unit(2, "feet"),
  57328. weight: math.unit(17.9, "lb"),
  57329. name: "Front (NSFW)",
  57330. image: {
  57331. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57332. extra: 569/504,
  57333. bottom: 33/602
  57334. },
  57335. form: "snivy",
  57336. },
  57337. snivy_back: {
  57338. height: math.unit(2, "feet"),
  57339. weight: math.unit(17.9, "lb"),
  57340. name: "Back",
  57341. image: {
  57342. source: "./media/characters/robin-phox/snivy-back.svg",
  57343. extra: 577/508,
  57344. bottom: 21/598
  57345. },
  57346. form: "snivy",
  57347. },
  57348. snivy_foot: {
  57349. height: math.unit(0.68, "feet"),
  57350. name: "Foot",
  57351. image: {
  57352. source: "./media/characters/robin-phox/snivy-foot.svg"
  57353. },
  57354. form: "snivy",
  57355. },
  57356. snivy_sole: {
  57357. height: math.unit(0.68, "feet"),
  57358. name: "Sole",
  57359. image: {
  57360. source: "./media/characters/robin-phox/snivy-sole.svg"
  57361. },
  57362. form: "snivy",
  57363. },
  57364. yoshi_front: {
  57365. height: math.unit(6, "feet"),
  57366. weight: math.unit(150, "lb"),
  57367. name: "Front",
  57368. image: {
  57369. source: "./media/characters/robin-phox/yoshi-front.svg",
  57370. extra: 890/792,
  57371. bottom: 29/919
  57372. },
  57373. form: "yoshi",
  57374. default: true
  57375. },
  57376. yoshi_frontNsfw: {
  57377. height: math.unit(6, "feet"),
  57378. weight: math.unit(150, "lb"),
  57379. name: "Front (NSFW)",
  57380. image: {
  57381. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57382. extra: 890/792,
  57383. bottom: 29/919
  57384. },
  57385. form: "yoshi",
  57386. },
  57387. yoshi_back: {
  57388. height: math.unit(6, "feet"),
  57389. weight: math.unit(150, "lb"),
  57390. name: "Back",
  57391. image: {
  57392. source: "./media/characters/robin-phox/yoshi-back.svg",
  57393. extra: 890/792,
  57394. bottom: 29/919
  57395. },
  57396. form: "yoshi",
  57397. },
  57398. yoshi_foot: {
  57399. height: math.unit(1.5, "feet"),
  57400. name: "Foot",
  57401. image: {
  57402. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57403. },
  57404. form: "yoshi",
  57405. },
  57406. delphox_front: {
  57407. height: math.unit(4 + 11/12, "feet"),
  57408. weight: math.unit(86, "lb"),
  57409. name: "Front",
  57410. image: {
  57411. source: "./media/characters/robin-phox/delphox-front.svg",
  57412. extra: 1266/1069,
  57413. bottom: 32/1298
  57414. },
  57415. form: "delphox",
  57416. default: true
  57417. },
  57418. delphox_frontNsfw: {
  57419. height: math.unit(4 + 11/12, "feet"),
  57420. weight: math.unit(86, "lb"),
  57421. name: "Front (NSFW)",
  57422. image: {
  57423. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57424. extra: 1266/1069,
  57425. bottom: 32/1298
  57426. },
  57427. form: "delphox",
  57428. },
  57429. delphox_back: {
  57430. height: math.unit(4 + 11/12, "feet"),
  57431. weight: math.unit(86, "lb"),
  57432. name: "Back",
  57433. image: {
  57434. source: "./media/characters/robin-phox/delphox-back.svg",
  57435. extra: 1269/1083,
  57436. bottom: 15/1284
  57437. },
  57438. form: "delphox",
  57439. },
  57440. mienshao_front: {
  57441. height: math.unit(4 + 7/12, "feet"),
  57442. weight: math.unit(78.3, "lb"),
  57443. name: "Front",
  57444. image: {
  57445. source: "./media/characters/robin-phox/mienshao-front.svg",
  57446. extra: 1052/970,
  57447. bottom: 108/1160
  57448. },
  57449. form: "mienshao",
  57450. default: true
  57451. },
  57452. mienshao_frontNsfw: {
  57453. height: math.unit(4 + 7/12, "feet"),
  57454. weight: math.unit(78.3, "lb"),
  57455. name: "Front (NSFW)",
  57456. image: {
  57457. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57458. extra: 1052/970,
  57459. bottom: 108/1160
  57460. },
  57461. form: "mienshao",
  57462. },
  57463. mienshao_back: {
  57464. height: math.unit(4 + 7/12, "feet"),
  57465. weight: math.unit(78.3, "lb"),
  57466. name: "Back",
  57467. image: {
  57468. source: "./media/characters/robin-phox/mienshao-back.svg",
  57469. extra: 1102/982,
  57470. bottom: 32/1134
  57471. },
  57472. form: "mienshao",
  57473. },
  57474. inteleon_front: {
  57475. height: math.unit(6 + 3/12, "feet"),
  57476. weight: math.unit(99.6, "lb"),
  57477. name: "Front",
  57478. image: {
  57479. source: "./media/characters/robin-phox/inteleon-front.svg",
  57480. extra: 910/799,
  57481. bottom: 76/986
  57482. },
  57483. form: "inteleon",
  57484. default: true
  57485. },
  57486. inteleon_frontNsfw: {
  57487. height: math.unit(6 + 3/12, "feet"),
  57488. weight: math.unit(99.6, "lb"),
  57489. name: "Front (NSFW)",
  57490. image: {
  57491. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57492. extra: 910/799,
  57493. bottom: 76/986
  57494. },
  57495. form: "inteleon",
  57496. },
  57497. inteleon_back: {
  57498. height: math.unit(6 + 3/12, "feet"),
  57499. weight: math.unit(99.6, "lb"),
  57500. name: "Back",
  57501. image: {
  57502. source: "./media/characters/robin-phox/inteleon-back.svg",
  57503. extra: 907/796,
  57504. bottom: 25/932
  57505. },
  57506. form: "inteleon",
  57507. },
  57508. reshiram_front: {
  57509. height: math.unit(10 + 6/12, "feet"),
  57510. weight: math.unit(727.5, "lb"),
  57511. name: "Front",
  57512. image: {
  57513. source: "./media/characters/robin-phox/reshiram-front.svg",
  57514. extra: 1198/940,
  57515. bottom: 123/1321
  57516. },
  57517. form: "reshiram",
  57518. },
  57519. reshiram_frontNsfw: {
  57520. height: math.unit(10 + 6/12, "feet"),
  57521. weight: math.unit(727.5, "lb"),
  57522. name: "Front-nsfw",
  57523. image: {
  57524. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57525. extra: 1198/940,
  57526. bottom: 123/1321
  57527. },
  57528. form: "reshiram",
  57529. },
  57530. reshiram_back: {
  57531. height: math.unit(10 + 6/12, "feet"),
  57532. weight: math.unit(727.5, "lb"),
  57533. name: "Back",
  57534. image: {
  57535. source: "./media/characters/robin-phox/reshiram-back.svg",
  57536. extra: 1024/904,
  57537. bottom: 85/1109
  57538. },
  57539. form: "reshiram",
  57540. },
  57541. samurott_front: {
  57542. height: math.unit(8, "feet"),
  57543. weight: math.unit(208.6, "lb"),
  57544. name: "Front",
  57545. image: {
  57546. source: "./media/characters/robin-phox/samurott-front.svg",
  57547. extra: 1048/984,
  57548. bottom: 100/1148
  57549. },
  57550. form: "samurott",
  57551. },
  57552. samurott_frontNsfw: {
  57553. height: math.unit(8, "feet"),
  57554. weight: math.unit(208.6, "lb"),
  57555. name: "Front-nsfw",
  57556. image: {
  57557. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57558. extra: 1048/984,
  57559. bottom: 100/1148
  57560. },
  57561. form: "samurott",
  57562. },
  57563. samurott_back: {
  57564. height: math.unit(8, "feet"),
  57565. weight: math.unit(208.6, "lb"),
  57566. name: "Back",
  57567. image: {
  57568. source: "./media/characters/robin-phox/samurott-back.svg",
  57569. extra: 1110/1042,
  57570. bottom: 12/1122
  57571. },
  57572. form: "samurott",
  57573. },
  57574. samurott_feral: {
  57575. height: math.unit(4 + 11/12, "feet"),
  57576. weight: math.unit(208.6, "lb"),
  57577. name: "Feral",
  57578. image: {
  57579. source: "./media/characters/robin-phox/samurott-feral.svg",
  57580. extra: 766/681,
  57581. bottom: 108/874
  57582. },
  57583. form: "samurott",
  57584. },
  57585. },
  57586. [
  57587. {
  57588. name: "Normal",
  57589. height: math.unit(2, "feet"),
  57590. default: true,
  57591. form: "snivy"
  57592. },
  57593. {
  57594. name: "Normal",
  57595. height: math.unit(6, "feet"),
  57596. default: true,
  57597. form: "yoshi"
  57598. },
  57599. {
  57600. name: "Normal",
  57601. height: math.unit(4 + 11/12, "feet"),
  57602. default: true,
  57603. form: "delphox"
  57604. },
  57605. {
  57606. name: "Normal",
  57607. height: math.unit(4 + 7/12, "feet"),
  57608. default: true,
  57609. form: "mienshao"
  57610. },
  57611. {
  57612. name: "Normal",
  57613. height: math.unit(6 + 3/12, "feet"),
  57614. default: true,
  57615. form: "inteleon"
  57616. },
  57617. {
  57618. name: "Normal",
  57619. height: math.unit(10 + 6/12, "feet"),
  57620. default: true,
  57621. form: "reshiram"
  57622. },
  57623. {
  57624. name: "Normal",
  57625. height: math.unit(8, "feet"),
  57626. default: true,
  57627. form: "samurott"
  57628. },
  57629. {
  57630. name: "Macro",
  57631. height: math.unit(500, "feet"),
  57632. allForms: true
  57633. },
  57634. {
  57635. name: "Mega Macro",
  57636. height: math.unit(10, "earths"),
  57637. allForms: true
  57638. },
  57639. {
  57640. name: "Giga Macro",
  57641. height: math.unit(1, "galaxy"),
  57642. allForms: true
  57643. },
  57644. {
  57645. name: "Godly Macro",
  57646. height: math.unit(1e10, "multiverses"),
  57647. allForms: true
  57648. },
  57649. ],
  57650. {
  57651. "snivy": {
  57652. name: "Snivy",
  57653. default: true
  57654. },
  57655. "yoshi": {
  57656. name: "Yoshi",
  57657. },
  57658. "delphox": {
  57659. name: "Delphox",
  57660. },
  57661. "mienshao": {
  57662. name: "Mienshao",
  57663. },
  57664. "inteleon": {
  57665. name: "Inteleon",
  57666. },
  57667. "reshiram": {
  57668. name: "Reshiram",
  57669. },
  57670. "samurott": {
  57671. name: "Samurott",
  57672. },
  57673. }
  57674. ))
  57675. characterMakers.push(() => makeCharacter(
  57676. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57677. {
  57678. front: {
  57679. height: math.unit(4, "feet"),
  57680. name: "Front",
  57681. image: {
  57682. source: "./media/characters/ash-leung/front.svg",
  57683. extra: 1916/1792,
  57684. bottom: 50/1966
  57685. }
  57686. },
  57687. },
  57688. [
  57689. {
  57690. name: "Atomic",
  57691. height: math.unit(1, "angstrom")
  57692. },
  57693. {
  57694. name: "Microscopic",
  57695. height: math.unit(4000, "angstroms")
  57696. },
  57697. {
  57698. name: "Speck",
  57699. height: math.unit(1, "mm")
  57700. },
  57701. {
  57702. name: "Small",
  57703. height: math.unit(1, "inch")
  57704. },
  57705. {
  57706. name: "Normal",
  57707. height: math.unit(4, "feet"),
  57708. default: true
  57709. },
  57710. ]
  57711. ))
  57712. characterMakers.push(() => makeCharacter(
  57713. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57714. {
  57715. frontDressed: {
  57716. height: math.unit(2.08, "meters"),
  57717. weight: math.unit(175, "lb"),
  57718. name: "Front (Dressed)",
  57719. image: {
  57720. source: "./media/characters/carie/front-dressed.svg",
  57721. extra: 456/417,
  57722. bottom: 7/463
  57723. }
  57724. },
  57725. backDressed: {
  57726. height: math.unit(2.08, "meters"),
  57727. weight: math.unit(175, "lb"),
  57728. name: "Back (Dressed)",
  57729. image: {
  57730. source: "./media/characters/carie/back-dressed.svg",
  57731. extra: 455/414,
  57732. bottom: 11/466
  57733. }
  57734. },
  57735. front: {
  57736. height: math.unit(2, "meters"),
  57737. weight: math.unit(175, "lb"),
  57738. name: "Front",
  57739. image: {
  57740. source: "./media/characters/carie/front.svg",
  57741. extra: 438/399,
  57742. bottom: 12/450
  57743. }
  57744. },
  57745. back: {
  57746. height: math.unit(2, "meters"),
  57747. weight: math.unit(175, "lb"),
  57748. name: "Back",
  57749. image: {
  57750. source: "./media/characters/carie/back.svg",
  57751. extra: 438/397,
  57752. bottom: 7/445
  57753. }
  57754. },
  57755. },
  57756. [
  57757. {
  57758. name: "Normal",
  57759. height: math.unit(2.08, "meters"),
  57760. default: true
  57761. },
  57762. {
  57763. name: "Macro",
  57764. height: math.unit(2.08e3, "meters")
  57765. },
  57766. {
  57767. name: "Mega Macro",
  57768. height: math.unit(2.08e6, "meters")
  57769. },
  57770. {
  57771. name: "Giga Macro",
  57772. height: math.unit(2.08e9, "meters")
  57773. },
  57774. {
  57775. name: "Tera Macro",
  57776. height: math.unit(2.08e12, "meters")
  57777. },
  57778. {
  57779. name: "Peta Macro",
  57780. height: math.unit(2.08e15, "meters")
  57781. },
  57782. {
  57783. name: "Exa Macro",
  57784. height: math.unit(2.08e18, "meters")
  57785. },
  57786. {
  57787. name: "Zetta Macro",
  57788. height: math.unit(2.08e21, "meters")
  57789. },
  57790. {
  57791. name: "Yotta Macro",
  57792. height: math.unit(2.08e24, "meters")
  57793. },
  57794. ]
  57795. ))
  57796. characterMakers.push(() => makeCharacter(
  57797. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57798. {
  57799. front: {
  57800. height: math.unit(5 + 2/12, "feet"),
  57801. weight: math.unit(120, "lb"),
  57802. name: "Front",
  57803. image: {
  57804. source: "./media/characters/sai-bree/front.svg",
  57805. extra: 1843/1702,
  57806. bottom: 91/1934
  57807. }
  57808. },
  57809. back: {
  57810. height: math.unit(5 + 2/12, "feet"),
  57811. weight: math.unit(120, "lb"),
  57812. name: "Back",
  57813. image: {
  57814. source: "./media/characters/sai-bree/back.svg",
  57815. extra: 1809/1637,
  57816. bottom: 56/1865
  57817. }
  57818. },
  57819. },
  57820. [
  57821. {
  57822. name: "Normal",
  57823. height: math.unit(5 + 2/12, "feet"),
  57824. default: true
  57825. },
  57826. {
  57827. name: "Macro",
  57828. height: math.unit(500, "feet")
  57829. },
  57830. ]
  57831. ))
  57832. characterMakers.push(() => makeCharacter(
  57833. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57834. {
  57835. side: {
  57836. height: math.unit(0.77, "meters"),
  57837. weight: math.unit(120, "lb"),
  57838. name: "Side",
  57839. image: {
  57840. source: "./media/characters/davwyn/side.svg",
  57841. extra: 1557/1225,
  57842. bottom: 131/1688
  57843. }
  57844. },
  57845. front: {
  57846. height: math.unit(0.835410, "meters"),
  57847. weight: math.unit(120, "lb"),
  57848. name: "Front",
  57849. image: {
  57850. source: "./media/characters/davwyn/front.svg",
  57851. extra: 870/843,
  57852. bottom: 175/1045
  57853. }
  57854. },
  57855. },
  57856. [
  57857. {
  57858. name: "Minidrake",
  57859. height: math.unit(0.77/4, "meters")
  57860. },
  57861. {
  57862. name: "Normal",
  57863. height: math.unit(0.77, "meters"),
  57864. default: true
  57865. },
  57866. ]
  57867. ))
  57868. characterMakers.push(() => makeCharacter(
  57869. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57870. {
  57871. front: {
  57872. height: math.unit(10 + 3/12, "feet"),
  57873. weight: math.unit(2857, "lb"),
  57874. name: "Front",
  57875. image: {
  57876. source: "./media/characters/balans/front.svg",
  57877. extra: 427/402,
  57878. bottom: 26/453
  57879. }
  57880. },
  57881. side: {
  57882. height: math.unit(10 + 3/12, "feet"),
  57883. weight: math.unit(2857, "lb"),
  57884. name: "Side",
  57885. image: {
  57886. source: "./media/characters/balans/side.svg",
  57887. extra: 397/371,
  57888. bottom: 17/414
  57889. }
  57890. },
  57891. back: {
  57892. height: math.unit(10 + 3/12, "feet"),
  57893. weight: math.unit(2857, "lb"),
  57894. name: "Back",
  57895. image: {
  57896. source: "./media/characters/balans/back.svg",
  57897. extra: 408/381,
  57898. bottom: 14/422
  57899. }
  57900. },
  57901. hand: {
  57902. height: math.unit(1.15, "feet"),
  57903. name: "Hand",
  57904. image: {
  57905. source: "./media/characters/balans/hand.svg"
  57906. }
  57907. },
  57908. footRest: {
  57909. height: math.unit(3.1, "feet"),
  57910. name: "Foot (Rest)",
  57911. image: {
  57912. source: "./media/characters/balans/foot-rest.svg"
  57913. }
  57914. },
  57915. footActive: {
  57916. height: math.unit(3.5, "feet"),
  57917. name: "Foot (Active)",
  57918. image: {
  57919. source: "./media/characters/balans/foot-active.svg"
  57920. }
  57921. },
  57922. },
  57923. [
  57924. {
  57925. name: "Normal",
  57926. height: math.unit(10 + 3/12, "feet"),
  57927. default: true
  57928. },
  57929. ]
  57930. ))
  57931. characterMakers.push(() => makeCharacter(
  57932. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57933. {
  57934. side: {
  57935. height: math.unit(9, "meters"),
  57936. weight: math.unit(114, "tonnes"),
  57937. name: "Side",
  57938. image: {
  57939. source: "./media/characters/eldkveikir/side.svg",
  57940. extra: 1927/338,
  57941. bottom: 42/1969
  57942. }
  57943. },
  57944. sitting: {
  57945. height: math.unit(13.4, "meters"),
  57946. weight: math.unit(114, "tonnes"),
  57947. name: "Sitting",
  57948. image: {
  57949. source: "./media/characters/eldkveikir/sitting.svg",
  57950. extra: 1108/963,
  57951. bottom: 610/1718
  57952. }
  57953. },
  57954. maw: {
  57955. height: math.unit(8.36, "meters"),
  57956. name: "Maw",
  57957. image: {
  57958. source: "./media/characters/eldkveikir/maw.svg"
  57959. }
  57960. },
  57961. hand: {
  57962. height: math.unit(4.84, "meters"),
  57963. name: "Hand",
  57964. image: {
  57965. source: "./media/characters/eldkveikir/hand.svg"
  57966. }
  57967. },
  57968. foot: {
  57969. height: math.unit(6.9, "meters"),
  57970. name: "Foot",
  57971. image: {
  57972. source: "./media/characters/eldkveikir/foot.svg"
  57973. }
  57974. },
  57975. genitals: {
  57976. height: math.unit(9.6, "meters"),
  57977. name: "Genitals",
  57978. image: {
  57979. source: "./media/characters/eldkveikir/genitals.svg"
  57980. }
  57981. },
  57982. },
  57983. [
  57984. {
  57985. name: "Normal",
  57986. height: math.unit(9, "meters"),
  57987. default: true
  57988. },
  57989. ]
  57990. ))
  57991. characterMakers.push(() => makeCharacter(
  57992. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57993. {
  57994. front: {
  57995. height: math.unit(14, "feet"),
  57996. weight: math.unit(4100, "lb"),
  57997. name: "Front",
  57998. image: {
  57999. source: "./media/characters/arrow/front.svg",
  58000. extra: 330/318,
  58001. bottom: 56/386
  58002. }
  58003. },
  58004. },
  58005. [
  58006. {
  58007. name: "Normal",
  58008. height: math.unit(14, "feet"),
  58009. default: true
  58010. },
  58011. {
  58012. name: "Minimacro",
  58013. height: math.unit(63, "feet")
  58014. },
  58015. {
  58016. name: "Macro",
  58017. height: math.unit(630, "feet")
  58018. },
  58019. {
  58020. name: "Megamacro",
  58021. height: math.unit(12600, "feet")
  58022. },
  58023. {
  58024. name: "Gigamacro",
  58025. height: math.unit(18000, "miles")
  58026. },
  58027. ]
  58028. ))
  58029. characterMakers.push(() => makeCharacter(
  58030. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58031. {
  58032. front: {
  58033. height: math.unit(10, "feet"),
  58034. weight: math.unit(2.4, "tons"),
  58035. name: "Front",
  58036. image: {
  58037. source: "./media/characters/3yk-k0-unit/front.svg",
  58038. extra: 573/561,
  58039. bottom: 33/606
  58040. }
  58041. },
  58042. back: {
  58043. height: math.unit(10, "feet"),
  58044. weight: math.unit(2.4, "tons"),
  58045. name: "Back",
  58046. image: {
  58047. source: "./media/characters/3yk-k0-unit/back.svg",
  58048. extra: 614/573,
  58049. bottom: 32/646
  58050. }
  58051. },
  58052. maw: {
  58053. height: math.unit(2.15, "feet"),
  58054. name: "Maw",
  58055. image: {
  58056. source: "./media/characters/3yk-k0-unit/maw.svg"
  58057. }
  58058. },
  58059. },
  58060. [
  58061. {
  58062. name: "Normal",
  58063. height: math.unit(10, "feet"),
  58064. default: true
  58065. },
  58066. ]
  58067. ))
  58068. characterMakers.push(() => makeCharacter(
  58069. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58070. {
  58071. front: {
  58072. height: math.unit(8 + 8/12, "feet"),
  58073. name: "Front",
  58074. image: {
  58075. source: "./media/characters/nemo/front.svg",
  58076. extra: 1308/1217,
  58077. bottom: 57/1365
  58078. }
  58079. },
  58080. },
  58081. [
  58082. {
  58083. name: "Normal",
  58084. height: math.unit(8 + 8/12, "feet"),
  58085. default: true
  58086. },
  58087. ]
  58088. ))
  58089. characterMakers.push(() => makeCharacter(
  58090. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58091. {
  58092. front: {
  58093. height: math.unit(8, "feet"),
  58094. weight: math.unit(760, "lb"),
  58095. name: "Front",
  58096. image: {
  58097. source: "./media/characters/rexx/front.svg",
  58098. extra: 786/750,
  58099. bottom: 17/803
  58100. },
  58101. extraAttributes: {
  58102. "pawLength": {
  58103. name: "Paw Length",
  58104. power: 1,
  58105. type: "length",
  58106. base: math.unit(27, "inches")
  58107. },
  58108. }
  58109. },
  58110. },
  58111. [
  58112. {
  58113. name: "Micro",
  58114. height: math.unit(2, "inches")
  58115. },
  58116. {
  58117. name: "Normal",
  58118. height: math.unit(8, "feet"),
  58119. default: true
  58120. },
  58121. {
  58122. name: "Macro",
  58123. height: math.unit(150, "feet")
  58124. },
  58125. ]
  58126. ))
  58127. characterMakers.push(() => makeCharacter(
  58128. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58129. {
  58130. front: {
  58131. height: math.unit(18, "feet"),
  58132. weight: math.unit(1975, "lb"),
  58133. name: "Front",
  58134. image: {
  58135. source: "./media/characters/draco/front.svg",
  58136. extra: 1325/1241,
  58137. bottom: 83/1408
  58138. }
  58139. },
  58140. back: {
  58141. height: math.unit(18, "feet"),
  58142. weight: math.unit(1975, "lb"),
  58143. name: "Back",
  58144. image: {
  58145. source: "./media/characters/draco/back.svg",
  58146. extra: 1332/1250,
  58147. bottom: 43/1375
  58148. }
  58149. },
  58150. dick: {
  58151. height: math.unit(7.5, "feet"),
  58152. name: "Dick",
  58153. image: {
  58154. source: "./media/characters/draco/dick.svg"
  58155. }
  58156. },
  58157. },
  58158. [
  58159. {
  58160. name: "Normal",
  58161. height: math.unit(18, "feet"),
  58162. default: true
  58163. },
  58164. ]
  58165. ))
  58166. characterMakers.push(() => makeCharacter(
  58167. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58168. {
  58169. front: {
  58170. height: math.unit(3.2, "meters"),
  58171. name: "Front",
  58172. image: {
  58173. source: "./media/characters/harriett/front.svg",
  58174. extra: 1966/1915,
  58175. bottom: 9/1975
  58176. }
  58177. },
  58178. },
  58179. [
  58180. {
  58181. name: "Normal",
  58182. height: math.unit(3.2, "meters"),
  58183. default: true
  58184. },
  58185. ]
  58186. ))
  58187. characterMakers.push(() => makeCharacter(
  58188. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58189. {
  58190. sitting: {
  58191. height: math.unit(0.8, "meter"),
  58192. name: "Sitting",
  58193. image: {
  58194. source: "./media/characters/serpentus/sitting.svg",
  58195. extra: 293/290,
  58196. bottom: 140/433
  58197. }
  58198. },
  58199. },
  58200. [
  58201. {
  58202. name: "Normal",
  58203. height: math.unit(0.8, "meter"),
  58204. default: true
  58205. },
  58206. ]
  58207. ))
  58208. characterMakers.push(() => makeCharacter(
  58209. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58210. {
  58211. front: {
  58212. height: math.unit(5.7174385736, "feet"),
  58213. name: "Front",
  58214. image: {
  58215. source: "./media/characters/nova-polecat/front.svg",
  58216. extra: 1317/1216,
  58217. bottom: 92/1409
  58218. }
  58219. },
  58220. },
  58221. [
  58222. {
  58223. name: "Normal",
  58224. height: math.unit(5.7174385736, "feet"),
  58225. default: true
  58226. },
  58227. ]
  58228. ))
  58229. characterMakers.push(() => makeCharacter(
  58230. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58231. {
  58232. front: {
  58233. height: math.unit(5 + 4/12, "feet"),
  58234. weight: math.unit(250, "lb"),
  58235. name: "Front",
  58236. image: {
  58237. source: "./media/characters/mook/front.svg",
  58238. extra: 1088/1037,
  58239. bottom: 132/1220
  58240. }
  58241. },
  58242. back: {
  58243. height: math.unit(5 + 1/12, "feet"),
  58244. weight: math.unit(250, "lb"),
  58245. name: "Back",
  58246. image: {
  58247. source: "./media/characters/mook/back.svg",
  58248. extra: 1184/905,
  58249. bottom: 96/1280
  58250. }
  58251. },
  58252. head: {
  58253. height: math.unit(1.85, "feet"),
  58254. name: "Head",
  58255. image: {
  58256. source: "./media/characters/mook/head.svg"
  58257. }
  58258. },
  58259. hand: {
  58260. height: math.unit(1.9, "feet"),
  58261. name: "Hand",
  58262. image: {
  58263. source: "./media/characters/mook/hand.svg"
  58264. }
  58265. },
  58266. palm: {
  58267. height: math.unit(1.84, "feet"),
  58268. name: "Palm",
  58269. image: {
  58270. source: "./media/characters/mook/palm.svg"
  58271. }
  58272. },
  58273. foot: {
  58274. height: math.unit(1.44, "feet"),
  58275. name: "Foot",
  58276. image: {
  58277. source: "./media/characters/mook/foot.svg"
  58278. }
  58279. },
  58280. sole: {
  58281. height: math.unit(1.44, "feet"),
  58282. name: "Sole",
  58283. image: {
  58284. source: "./media/characters/mook/sole.svg"
  58285. }
  58286. },
  58287. },
  58288. [
  58289. {
  58290. name: "Normal",
  58291. height: math.unit(5 + 4/12, "feet"),
  58292. default: true
  58293. },
  58294. {
  58295. name: "Big",
  58296. height: math.unit(12, "feet")
  58297. },
  58298. ]
  58299. ))
  58300. characterMakers.push(() => makeCharacter(
  58301. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58302. {
  58303. front: {
  58304. height: math.unit(6 + 10/12, "feet"),
  58305. weight: math.unit(233, "lb"),
  58306. name: "Front",
  58307. image: {
  58308. source: "./media/characters/kayla/front.svg",
  58309. extra: 1850/1775,
  58310. bottom: 65/1915
  58311. }
  58312. },
  58313. },
  58314. [
  58315. {
  58316. name: "Normal",
  58317. height: math.unit(6 + 10/12, "feet"),
  58318. default: true
  58319. },
  58320. {
  58321. name: "Amazonian",
  58322. height: math.unit(12 + 5/12, "feet")
  58323. },
  58324. {
  58325. name: "Mini Giantess",
  58326. height: math.unit(26, "feet")
  58327. },
  58328. {
  58329. name: "Giantess",
  58330. height: math.unit(200, "feet")
  58331. },
  58332. {
  58333. name: "Mega Giantess",
  58334. height: math.unit(2500, "feet")
  58335. },
  58336. {
  58337. name: "City Sized",
  58338. height: math.unit(50, "miles")
  58339. },
  58340. {
  58341. name: "Country Sized",
  58342. height: math.unit(500, "miles")
  58343. },
  58344. {
  58345. name: "Continent Sized",
  58346. height: math.unit(2500, "miles")
  58347. },
  58348. {
  58349. name: "Planet Sized",
  58350. height: math.unit(10000, "miles")
  58351. },
  58352. {
  58353. name: "Star Sized",
  58354. height: math.unit(5e6, "miles")
  58355. },
  58356. {
  58357. name: "Solar System Sized",
  58358. height: math.unit(125, "AU")
  58359. },
  58360. {
  58361. name: "Galaxy Sized",
  58362. height: math.unit(300e3, "lightyears")
  58363. },
  58364. {
  58365. name: "Universe Sized",
  58366. height: math.unit(200e9, "lightyears")
  58367. },
  58368. {
  58369. name: "Multiverse Sized",
  58370. height: math.unit(20, "exauniverses")
  58371. },
  58372. {
  58373. name: "Mother of Existence",
  58374. height: math.unit(1e6, "yottauniverses")
  58375. },
  58376. ]
  58377. ))
  58378. characterMakers.push(() => makeCharacter(
  58379. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58380. {
  58381. side: {
  58382. height: math.unit(9.5, "meters"),
  58383. name: "Side",
  58384. image: {
  58385. source: "./media/characters/kulve-ragnarok/side.svg",
  58386. extra: 364/326,
  58387. bottom: 50/414
  58388. }
  58389. },
  58390. },
  58391. [
  58392. {
  58393. name: "Normal",
  58394. height: math.unit(9.5, "meters"),
  58395. default: true
  58396. },
  58397. ]
  58398. ))
  58399. characterMakers.push(() => makeCharacter(
  58400. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58401. {
  58402. front: {
  58403. height: math.unit(8 + 9/12, "feet"),
  58404. name: "Front",
  58405. image: {
  58406. source: "./media/characters/atlas-goat/front.svg",
  58407. extra: 1462/1323,
  58408. bottom: 12/1474
  58409. }
  58410. },
  58411. },
  58412. [
  58413. {
  58414. name: "Normal",
  58415. height: math.unit(8 + 9/12, "feet"),
  58416. default: true
  58417. },
  58418. {
  58419. name: "Skyline",
  58420. height: math.unit(845, "feet")
  58421. },
  58422. {
  58423. name: "Orbital",
  58424. height: math.unit(93000, "miles")
  58425. },
  58426. {
  58427. name: "Constellation",
  58428. height: math.unit(27000, "lightyears")
  58429. },
  58430. ]
  58431. ))
  58432. characterMakers.push(() => makeCharacter(
  58433. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58434. {
  58435. side: {
  58436. height: math.unit(1.8, "meters"),
  58437. weight: math.unit(120, "kg"),
  58438. name: "Side",
  58439. image: {
  58440. source: "./media/characters/xie-ling/side.svg",
  58441. extra: 646/574,
  58442. bottom: 44/690
  58443. }
  58444. },
  58445. },
  58446. [
  58447. {
  58448. name: "Tiny",
  58449. height: math.unit(1.80, "meters")
  58450. },
  58451. {
  58452. name: "Small",
  58453. height: math.unit(6, "meters")
  58454. },
  58455. {
  58456. name: "Medium",
  58457. height: math.unit(15, "meters")
  58458. },
  58459. {
  58460. name: "Normal",
  58461. height: math.unit(30, "meters"),
  58462. default: true
  58463. },
  58464. {
  58465. name: "Above Normal",
  58466. height: math.unit(60, "meters")
  58467. },
  58468. {
  58469. name: "Big",
  58470. height: math.unit(220, "meters")
  58471. },
  58472. {
  58473. name: "Giant",
  58474. height: math.unit(2.2, "km")
  58475. },
  58476. {
  58477. name: "Macro",
  58478. height: math.unit(25, "km")
  58479. },
  58480. {
  58481. name: "Mega Macro",
  58482. height: math.unit(350, "km")
  58483. },
  58484. {
  58485. name: "Mega Macro+",
  58486. height: math.unit(5000, "km")
  58487. },
  58488. {
  58489. name: "Goddess",
  58490. height: math.unit(3, "multiverses")
  58491. },
  58492. ]
  58493. ))
  58494. characterMakers.push(() => makeCharacter(
  58495. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58496. {
  58497. frontSfw: {
  58498. height: math.unit(5 + 11/12, "feet"),
  58499. weight: math.unit(210, "lb"),
  58500. name: "Front",
  58501. image: {
  58502. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58503. extra: 1928/1821,
  58504. bottom: 45/1973
  58505. }
  58506. },
  58507. backSfw: {
  58508. height: math.unit(5 + 11/12, "feet"),
  58509. weight: math.unit(210, "lb"),
  58510. name: "Back",
  58511. image: {
  58512. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58513. extra: 1920/1813,
  58514. bottom: 34/1954
  58515. }
  58516. },
  58517. frontNsfw: {
  58518. height: math.unit(5 + 11/12, "feet"),
  58519. weight: math.unit(210, "lb"),
  58520. name: "Front (NSFW)",
  58521. image: {
  58522. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58523. extra: 1928/1821,
  58524. bottom: 45/1973
  58525. }
  58526. },
  58527. backNsfw: {
  58528. height: math.unit(5 + 11/12, "feet"),
  58529. weight: math.unit(210, "lb"),
  58530. name: "Back (NSFW)",
  58531. image: {
  58532. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58533. extra: 1920/1813,
  58534. bottom: 34/1954
  58535. }
  58536. },
  58537. },
  58538. [
  58539. {
  58540. name: "Normal",
  58541. height: math.unit(5 + 11/12, "feet"),
  58542. default: true
  58543. },
  58544. {
  58545. name: "Goddess",
  58546. height: math.unit(20 + 3/12, "feet")
  58547. },
  58548. {
  58549. name: "Breaker of Man",
  58550. height: math.unit(329 + 9/12, "feet")
  58551. },
  58552. {
  58553. name: "Solar Justice",
  58554. height: math.unit(0.6, "solarradii")
  58555. },
  58556. {
  58557. name: "She Who Judges",
  58558. height: math.unit(1, "universe")
  58559. },
  58560. ]
  58561. ))
  58562. characterMakers.push(() => makeCharacter(
  58563. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58564. {
  58565. casual_front: {
  58566. height: math.unit(6 + 1/12, "feet"),
  58567. weight: math.unit(190, "lb"),
  58568. preyCapacity: math.unit(1, "people"),
  58569. name: "Front",
  58570. image: {
  58571. source: "./media/characters/managarmr/casual-front.svg",
  58572. extra: 411/381,
  58573. bottom: 15/426
  58574. },
  58575. extraAttributes: {
  58576. "pawSize": {
  58577. name: "Paw Size",
  58578. power: 1,
  58579. type: "length",
  58580. base: math.unit(0.2, "meters")
  58581. },
  58582. },
  58583. form: "casual",
  58584. },
  58585. casual_back: {
  58586. height: math.unit(6 + 1/12, "feet"),
  58587. weight: math.unit(190, "lb"),
  58588. preyCapacity: math.unit(1, "people"),
  58589. name: "Back",
  58590. image: {
  58591. source: "./media/characters/managarmr/casual-back.svg",
  58592. extra: 413/383,
  58593. bottom: 13/426
  58594. },
  58595. extraAttributes: {
  58596. "pawSize": {
  58597. name: "Paw Size",
  58598. power: 1,
  58599. type: "length",
  58600. base: math.unit(0.2, "meters")
  58601. },
  58602. },
  58603. form: "casual",
  58604. },
  58605. base_front: {
  58606. height: math.unit(7, "feet"),
  58607. weight: math.unit(210, "lb"),
  58608. preyCapacity: math.unit(2, "people"),
  58609. name: "Front",
  58610. image: {
  58611. source: "./media/characters/managarmr/base-front.svg",
  58612. extra: 580/485,
  58613. bottom: 32/612
  58614. },
  58615. extraAttributes: {
  58616. "wingspan": {
  58617. name: "Wingspan",
  58618. power: 1,
  58619. type: "length",
  58620. base: math.unit(4, "meters")
  58621. },
  58622. "pawSize": {
  58623. name: "Paw Size",
  58624. power: 1,
  58625. type: "length",
  58626. base: math.unit(0.2, "meters")
  58627. },
  58628. },
  58629. form: "base",
  58630. },
  58631. "true-divine_front": {
  58632. height: math.unit(40, "feet"),
  58633. weight: math.unit(39000, "lb"),
  58634. preyCapacity: math.unit(375, "people"),
  58635. name: "Front",
  58636. image: {
  58637. source: "./media/characters/managarmr/true-divine-front.svg",
  58638. extra: 725/573,
  58639. bottom: 120/845
  58640. },
  58641. extraAttributes: {
  58642. "wingspan": {
  58643. name: "Wingspan",
  58644. power: 1,
  58645. type: "length",
  58646. base: math.unit(20, "meters")
  58647. },
  58648. "pawSize": {
  58649. name: "Paw Size",
  58650. power: 1,
  58651. type: "length",
  58652. base: math.unit(1.5, "meters")
  58653. },
  58654. },
  58655. form: "true-divine",
  58656. },
  58657. },
  58658. [
  58659. {
  58660. name: "Normal",
  58661. height: math.unit(6 + 1/12, "feet"),
  58662. form: "casual",
  58663. default: true
  58664. },
  58665. {
  58666. name: "Normal",
  58667. height: math.unit(7, "feet"),
  58668. form: "base",
  58669. default: true
  58670. },
  58671. ],
  58672. {
  58673. "casual": {
  58674. name: "Casual",
  58675. default: true
  58676. },
  58677. "base": {
  58678. name: "Base",
  58679. },
  58680. "true-divine": {
  58681. name: "True Divine",
  58682. },
  58683. }
  58684. ))
  58685. characterMakers.push(() => makeCharacter(
  58686. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58687. {
  58688. front: {
  58689. height: math.unit(1.8, "meters"),
  58690. weight: math.unit(110, "kg"),
  58691. name: "Front",
  58692. image: {
  58693. source: "./media/characters/mystra/front.svg",
  58694. extra: 529/442,
  58695. bottom: 31/560
  58696. }
  58697. },
  58698. frontLewd: {
  58699. height: math.unit(1.8, "meters"),
  58700. weight: math.unit(110, "kg"),
  58701. name: "Front (Lewd)",
  58702. image: {
  58703. source: "./media/characters/mystra/front-lewd.svg",
  58704. extra: 529/442,
  58705. bottom: 31/560
  58706. }
  58707. },
  58708. head: {
  58709. height: math.unit(1.63, "feet"),
  58710. name: "Head",
  58711. image: {
  58712. source: "./media/characters/mystra/head.svg"
  58713. }
  58714. },
  58715. paw: {
  58716. height: math.unit(1.9, "feet"),
  58717. name: "Paw",
  58718. image: {
  58719. source: "./media/characters/mystra/paw.svg"
  58720. }
  58721. },
  58722. },
  58723. [
  58724. {
  58725. name: "Incognito",
  58726. height: math.unit(2.3, "meters")
  58727. },
  58728. {
  58729. name: "Small Macro",
  58730. height: math.unit(300, "meters")
  58731. },
  58732. {
  58733. name: "Small Mega",
  58734. height: math.unit(2, "km")
  58735. },
  58736. {
  58737. name: "Mega",
  58738. height: math.unit(30, "km")
  58739. },
  58740. {
  58741. name: "Small Giga",
  58742. height: math.unit(100, "km")
  58743. },
  58744. {
  58745. name: "Giga",
  58746. height: math.unit(1000, "km"),
  58747. default: true
  58748. },
  58749. {
  58750. name: "Continental",
  58751. height: math.unit(5000, "km")
  58752. },
  58753. {
  58754. name: "Terra",
  58755. height: math.unit(20000, "km")
  58756. },
  58757. {
  58758. name: "Solar",
  58759. height: math.unit(2e6, "km")
  58760. },
  58761. {
  58762. name: "Galactic",
  58763. height: math.unit(528502, "lightyears")
  58764. },
  58765. {
  58766. name: "Universal",
  58767. height: math.unit(20, "universes")
  58768. },
  58769. ]
  58770. ))
  58771. characterMakers.push(() => makeCharacter(
  58772. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58773. {
  58774. front: {
  58775. height: math.unit(2, "meters"),
  58776. weight: math.unit(140, "kg"),
  58777. name: "Front",
  58778. image: {
  58779. source: "./media/characters/caleb/front.svg",
  58780. extra: 873/817,
  58781. bottom: 47/920
  58782. }
  58783. },
  58784. back: {
  58785. height: math.unit(2, "meters"),
  58786. weight: math.unit(140, "kg"),
  58787. name: "Back",
  58788. image: {
  58789. source: "./media/characters/caleb/back.svg",
  58790. extra: 877/828,
  58791. bottom: 24/901
  58792. }
  58793. },
  58794. snakeTail: {
  58795. height: math.unit(1.44, "feet"),
  58796. name: "Snake Tail",
  58797. image: {
  58798. source: "./media/characters/caleb/snake-tail.svg"
  58799. }
  58800. },
  58801. dick: {
  58802. height: math.unit(2.6, "feet"),
  58803. name: "Dick",
  58804. image: {
  58805. source: "./media/characters/caleb/dick.svg"
  58806. }
  58807. },
  58808. },
  58809. [
  58810. {
  58811. name: "Incognito",
  58812. height: math.unit(3, "meters")
  58813. },
  58814. {
  58815. name: "Home Size",
  58816. height: math.unit(200, "meters"),
  58817. default: true
  58818. },
  58819. {
  58820. name: "Macro",
  58821. height: math.unit(500, "meters")
  58822. },
  58823. {
  58824. name: "Big Macro",
  58825. height: math.unit(5, "km")
  58826. },
  58827. {
  58828. name: "Giga",
  58829. height: math.unit(250, "km")
  58830. },
  58831. {
  58832. name: "Giga+",
  58833. height: math.unit(5000, "km")
  58834. },
  58835. {
  58836. name: "Small Terra",
  58837. height: math.unit(35e3, "km")
  58838. },
  58839. {
  58840. name: "Terra",
  58841. height: math.unit(2e6, "km")
  58842. },
  58843. {
  58844. name: "Terra+",
  58845. height: math.unit(1.5e6, "km")
  58846. },
  58847. ]
  58848. ))
  58849. characterMakers.push(() => makeCharacter(
  58850. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58851. {
  58852. front: {
  58853. height: math.unit(2, "meters"),
  58854. weight: math.unit(120, "kg"),
  58855. name: "Front",
  58856. image: {
  58857. source: "./media/characters/gilirian/front.svg",
  58858. extra: 805/737,
  58859. bottom: 13/818
  58860. }
  58861. },
  58862. side: {
  58863. height: math.unit(2, "meters"),
  58864. weight: math.unit(120, "kg"),
  58865. name: "Side",
  58866. image: {
  58867. source: "./media/characters/gilirian/side.svg",
  58868. extra: 810/746,
  58869. bottom: 6/816
  58870. }
  58871. },
  58872. back: {
  58873. height: math.unit(2, "meters"),
  58874. weight: math.unit(120, "kg"),
  58875. name: "Back",
  58876. image: {
  58877. source: "./media/characters/gilirian/back.svg",
  58878. extra: 815/745,
  58879. bottom: 15/830
  58880. }
  58881. },
  58882. frontNsfw: {
  58883. height: math.unit(2, "meters"),
  58884. weight: math.unit(120, "kg"),
  58885. name: "Front (NSFW)",
  58886. image: {
  58887. source: "./media/characters/gilirian/front-nsfw.svg",
  58888. extra: 805/737,
  58889. bottom: 13/818
  58890. }
  58891. },
  58892. sideNsfw: {
  58893. height: math.unit(2, "meters"),
  58894. weight: math.unit(120, "kg"),
  58895. name: "Side (NSFW)",
  58896. image: {
  58897. source: "./media/characters/gilirian/side-nsfw.svg",
  58898. extra: 810/746,
  58899. bottom: 6/816
  58900. }
  58901. },
  58902. },
  58903. [
  58904. {
  58905. name: "Incognito",
  58906. height: math.unit(2, "meters"),
  58907. default: true
  58908. },
  58909. {
  58910. name: "Macro",
  58911. height: math.unit(250, "meters")
  58912. },
  58913. {
  58914. name: "Big Macro",
  58915. height: math.unit(1500, "meters")
  58916. },
  58917. {
  58918. name: "Mega",
  58919. height: math.unit(40, "km")
  58920. },
  58921. {
  58922. name: "Giga",
  58923. height: math.unit(300, "km")
  58924. },
  58925. {
  58926. name: "Extra Giga",
  58927. height: math.unit(5000, "km")
  58928. },
  58929. {
  58930. name: "Small Terra",
  58931. height: math.unit(10e3, "km")
  58932. },
  58933. {
  58934. name: "Terra",
  58935. height: math.unit(3e5, "km")
  58936. },
  58937. {
  58938. name: "Galactic",
  58939. height: math.unit(369950, "lightyears")
  58940. },
  58941. ]
  58942. ))
  58943. characterMakers.push(() => makeCharacter(
  58944. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58945. {
  58946. front: {
  58947. height: math.unit(2.5, "meters"),
  58948. weight: math.unit(230, "lb"),
  58949. name: "Front",
  58950. image: {
  58951. source: "./media/characters/tarken/front.svg",
  58952. extra: 764/720,
  58953. bottom: 49/813
  58954. }
  58955. },
  58956. back: {
  58957. height: math.unit(2.5, "meters"),
  58958. weight: math.unit(230, "lb"),
  58959. name: "Back",
  58960. image: {
  58961. source: "./media/characters/tarken/back.svg",
  58962. extra: 756/720,
  58963. bottom: 35/791
  58964. }
  58965. },
  58966. frontNsfw: {
  58967. height: math.unit(2.5, "meters"),
  58968. weight: math.unit(230, "lb"),
  58969. name: "Front (NSFW)",
  58970. image: {
  58971. source: "./media/characters/tarken/front-nsfw.svg",
  58972. extra: 764/720,
  58973. bottom: 49/813
  58974. }
  58975. },
  58976. backNsfw: {
  58977. height: math.unit(2.5, "meters"),
  58978. weight: math.unit(230, "lb"),
  58979. name: "Back (NSFW)",
  58980. image: {
  58981. source: "./media/characters/tarken/back-nsfw.svg",
  58982. extra: 756/720,
  58983. bottom: 35/791
  58984. }
  58985. },
  58986. head: {
  58987. height: math.unit(2.22, "feet"),
  58988. name: "Head",
  58989. image: {
  58990. source: "./media/characters/tarken/head.svg"
  58991. }
  58992. },
  58993. tail: {
  58994. height: math.unit(5.25, "feet"),
  58995. name: "Tail",
  58996. image: {
  58997. source: "./media/characters/tarken/tail.svg"
  58998. }
  58999. },
  59000. dick: {
  59001. height: math.unit(1.95, "feet"),
  59002. name: "Dick",
  59003. image: {
  59004. source: "./media/characters/tarken/dick.svg"
  59005. }
  59006. },
  59007. hand: {
  59008. height: math.unit(1.78, "feet"),
  59009. name: "Hand",
  59010. image: {
  59011. source: "./media/characters/tarken/hand.svg"
  59012. }
  59013. },
  59014. beam: {
  59015. height: math.unit(1.5, "feet"),
  59016. name: "Beam",
  59017. image: {
  59018. source: "./media/characters/tarken/beam.svg"
  59019. }
  59020. },
  59021. },
  59022. [
  59023. {
  59024. name: "Original Size",
  59025. height: math.unit(2.5, "meters")
  59026. },
  59027. {
  59028. name: "Macro",
  59029. height: math.unit(150, "meters"),
  59030. default: true
  59031. },
  59032. {
  59033. name: "Macro+",
  59034. height: math.unit(300, "meters")
  59035. },
  59036. {
  59037. name: "Mega",
  59038. height: math.unit(2, "km")
  59039. },
  59040. {
  59041. name: "Mega+",
  59042. height: math.unit(35, "km")
  59043. },
  59044.  {
  59045. name: "Mega++",
  59046. height: math.unit(60, "km")
  59047. },
  59048. {
  59049. name: "Giga",
  59050. height: math.unit(200, "km")
  59051. },
  59052. {
  59053. name: "Giga+",
  59054. height: math.unit(2500, "km")
  59055. },
  59056. {
  59057. name: "Giga++",
  59058. height: math.unit(6600, "km")
  59059. },
  59060. {
  59061. name: "Terra",
  59062. height: math.unit(20000, "km")
  59063. },
  59064. {
  59065. name: "Terra+",
  59066. height: math.unit(300000, "km")
  59067. },
  59068. ]
  59069. ))
  59070. characterMakers.push(() => makeCharacter(
  59071. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59072. {
  59073. magpie_dressed: {
  59074. height: math.unit(1.7, "meters"),
  59075. weight: math.unit(70, "kg"),
  59076. name: "Dressed",
  59077. image: {
  59078. source: "./media/characters/otreus/magpie-dressed.svg",
  59079. extra: 691/672,
  59080. bottom: 116/807
  59081. },
  59082. form: "magpie",
  59083. default: true
  59084. },
  59085. magpie_nude: {
  59086. height: math.unit(1.7, "meters"),
  59087. weight: math.unit(70, "kg"),
  59088. name: "Nude",
  59089. image: {
  59090. source: "./media/characters/otreus/magpie-nude.svg",
  59091. extra: 691/672,
  59092. bottom: 116/807
  59093. },
  59094. form: "magpie",
  59095. },
  59096. magpie_dressedLewd: {
  59097. height: math.unit(1.7, "meters"),
  59098. weight: math.unit(70, "kg"),
  59099. name: "Dressed (Lewd)",
  59100. image: {
  59101. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59102. extra: 691/672,
  59103. bottom: 116/807
  59104. },
  59105. form: "magpie",
  59106. },
  59107. magpie_nudeLewd: {
  59108. height: math.unit(1.7, "meters"),
  59109. weight: math.unit(70, "kg"),
  59110. name: "Nude (Lewd)",
  59111. image: {
  59112. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59113. extra: 691/672,
  59114. bottom: 116/807
  59115. },
  59116. form: "magpie",
  59117. },
  59118. magpie_leftFoot: {
  59119. height: math.unit(1.58, "feet"),
  59120. name: "Left Foot",
  59121. image: {
  59122. source: "./media/characters/otreus/magpie-left-foot.svg"
  59123. },
  59124. form: "magpie",
  59125. },
  59126. magpie_rightFoot: {
  59127. height: math.unit(1.58, "feet"),
  59128. name: "Right Foot",
  59129. image: {
  59130. source: "./media/characters/otreus/magpie-right-foot.svg"
  59131. },
  59132. form: "magpie",
  59133. },
  59134. magpie_wingspan: {
  59135. height: math.unit(2, "meters"),
  59136. weight: math.unit(70, "kg"),
  59137. name: "Wingspan",
  59138. image: {
  59139. source: "./media/characters/otreus/magpie-wingspan.svg"
  59140. },
  59141. extraAttributes: {
  59142. "wingspan": {
  59143. name: "Wingspan",
  59144. power: 1,
  59145. type: "length",
  59146. base: math.unit(3.35, "meters")
  59147. },
  59148. },
  59149. form: "magpie",
  59150. },
  59151. hippogriff_dressed: {
  59152. height: math.unit(1.7, "meters"),
  59153. weight: math.unit(70, "kg"),
  59154. name: "Dressed",
  59155. image: {
  59156. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59157. extra: 710/689,
  59158. bottom: 67/777
  59159. },
  59160. form: "hippogriff",
  59161. default: true
  59162. },
  59163. hippogriff_nude: {
  59164. height: math.unit(1.7, "meters"),
  59165. weight: math.unit(70, "kg"),
  59166. name: "Nude",
  59167. image: {
  59168. source: "./media/characters/otreus/hippogriff-nude.svg",
  59169. extra: 710/689,
  59170. bottom: 67/777
  59171. },
  59172. form: "hippogriff",
  59173. },
  59174. hippogriff_dressedLewd: {
  59175. height: math.unit(1.7, "meters"),
  59176. weight: math.unit(70, "kg"),
  59177. name: "Dressed (Lewd)",
  59178. image: {
  59179. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59180. extra: 710/689,
  59181. bottom: 67/777
  59182. },
  59183. form: "hippogriff",
  59184. },
  59185. hippogriff_nudeLewd: {
  59186. height: math.unit(1.7, "meters"),
  59187. weight: math.unit(70, "kg"),
  59188. name: "Nude (Lewd)",
  59189. image: {
  59190. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59191. extra: 710/689,
  59192. bottom: 67/777
  59193. },
  59194. form: "hippogriff",
  59195. },
  59196. },
  59197. [
  59198. {
  59199. name: "Original Size",
  59200. height: math.unit(1.7, "meters"),
  59201. allForms: true
  59202. },
  59203. {
  59204. name: "Incognito Size",
  59205. height: math.unit(2, "meters"),
  59206. allForms: true
  59207. },
  59208. {
  59209. name: "Mega",
  59210. height: math.unit(2, "km"),
  59211. allForms: true
  59212. },
  59213. {
  59214. name: "Mega+",
  59215. height: math.unit(40, "km"),
  59216. allForms: true
  59217. },
  59218. {
  59219. name: "Giga",
  59220. height: math.unit(250, "km"),
  59221. allForms: true
  59222. },
  59223. {
  59224. name: "Giga+",
  59225. height: math.unit(3000, "km"),
  59226. allForms: true
  59227. },
  59228. {
  59229. name: "Terra",
  59230. height: math.unit(20000, "km"),
  59231. allForms: true
  59232. },
  59233. {
  59234. name: "Solar (Home Size)",
  59235. height: math.unit(3e6, "km"),
  59236. allForms: true,
  59237. default: true
  59238. },
  59239. ],
  59240. {
  59241. "magpie": {
  59242. name: "Magpie",
  59243. default: true
  59244. },
  59245. "hippogriff": {
  59246. name: "Hippogriff",
  59247. },
  59248. }
  59249. ))
  59250. characterMakers.push(() => makeCharacter(
  59251. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59252. {
  59253. frontDressed: {
  59254. height: math.unit(1.8, "meters"),
  59255. weight: math.unit(90, "kg"),
  59256. name: "Front (Dressed)",
  59257. image: {
  59258. source: "./media/characters/thalia/front-dressed.svg",
  59259. extra: 478/402,
  59260. bottom: 55/533
  59261. }
  59262. },
  59263. backDressed: {
  59264. height: math.unit(1.8, "meters"),
  59265. weight: math.unit(90, "kg"),
  59266. name: "Back (Dressed)",
  59267. image: {
  59268. source: "./media/characters/thalia/back-dressed.svg",
  59269. extra: 500/424,
  59270. bottom: 15/515
  59271. }
  59272. },
  59273. frontNude: {
  59274. height: math.unit(1.8, "meters"),
  59275. weight: math.unit(90, "kg"),
  59276. name: "Front (Nude)",
  59277. image: {
  59278. source: "./media/characters/thalia/front-nude.svg",
  59279. extra: 478/402,
  59280. bottom: 55/533
  59281. }
  59282. },
  59283. backNude: {
  59284. height: math.unit(1.8, "meters"),
  59285. weight: math.unit(90, "kg"),
  59286. name: "Back (Nude)",
  59287. image: {
  59288. source: "./media/characters/thalia/back-nude.svg",
  59289. extra: 500/424,
  59290. bottom: 15/515
  59291. }
  59292. },
  59293. },
  59294. [
  59295. {
  59296. name: "Incognito",
  59297. height: math.unit(3, "meters")
  59298. },
  59299. {
  59300. name: "Macro",
  59301. height: math.unit(500, "meters")
  59302. },
  59303. {
  59304. name: "Mega",
  59305. height: math.unit(5, "km")
  59306. },
  59307. {
  59308. name: "Mega+",
  59309. height: math.unit(30, "km")
  59310. },
  59311. {
  59312. name: "Giga",
  59313. height: math.unit(350, "km")
  59314. },
  59315. {
  59316. name: "Giga+",
  59317. height: math.unit(4000, "km")
  59318. },
  59319. {
  59320. name: "Terra",
  59321. height: math.unit(35000, "km")
  59322. },
  59323. {
  59324. name: "Original Size",
  59325. height: math.unit(130000, "km")
  59326. },
  59327. {
  59328. name: "Solar (Home Size)",
  59329. height: math.unit(4e6, "km"),
  59330. default: true
  59331. },
  59332. ]
  59333. ))
  59334. characterMakers.push(() => makeCharacter(
  59335. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59336. {
  59337. front: {
  59338. height: math.unit(1.8, "meters"),
  59339. weight: math.unit(95, "kg"),
  59340. name: "Front",
  59341. image: {
  59342. source: "./media/characters/shango/front.svg",
  59343. extra: 1925/1774,
  59344. bottom: 67/1992
  59345. }
  59346. },
  59347. back: {
  59348. height: math.unit(1.8, "meters"),
  59349. weight: math.unit(95, "kg"),
  59350. name: "Back",
  59351. image: {
  59352. source: "./media/characters/shango/back.svg",
  59353. extra: 1915/1766,
  59354. bottom: 52/1967
  59355. }
  59356. },
  59357. frontLewd: {
  59358. height: math.unit(1.8, "meters"),
  59359. weight: math.unit(95, "kg"),
  59360. name: "Front (Lewd)",
  59361. image: {
  59362. source: "./media/characters/shango/front-lewd.svg",
  59363. extra: 1925/1774,
  59364. bottom: 67/1992
  59365. }
  59366. },
  59367. backLewd: {
  59368. height: math.unit(1.8, "meters"),
  59369. weight: math.unit(95, "kg"),
  59370. name: "Back (Lewd)",
  59371. image: {
  59372. source: "./media/characters/shango/back-lewd.svg",
  59373. extra: 1915/1766,
  59374. bottom: 52/1967
  59375. }
  59376. },
  59377. maw: {
  59378. height: math.unit(1.64, "feet"),
  59379. name: "Maw",
  59380. image: {
  59381. source: "./media/characters/shango/maw.svg"
  59382. }
  59383. },
  59384. dick: {
  59385. height: math.unit(2.14, "feet"),
  59386. name: "Dick",
  59387. image: {
  59388. source: "./media/characters/shango/dick.svg"
  59389. }
  59390. },
  59391. },
  59392. [
  59393. {
  59394. name: "Incognito",
  59395. height: math.unit(1.8, "meters")
  59396. },
  59397. {
  59398. name: "Home Size",
  59399. height: math.unit(60, "meters"),
  59400. default: true
  59401. },
  59402. {
  59403. name: "Macro",
  59404. height: math.unit(450, "meters")
  59405. },
  59406. {
  59407. name: "Mega",
  59408. height: math.unit(6, "km")
  59409. },
  59410. {
  59411. name: "Mega+",
  59412. height: math.unit(35, "km")
  59413. },
  59414. {
  59415. name: "Giga",
  59416. height: math.unit(500, "km")
  59417. },
  59418. {
  59419. name: "Giga+",
  59420. height: math.unit(5000, "km")
  59421. },
  59422. {
  59423. name: "Terra",
  59424. height: math.unit(60000, "km")
  59425. },
  59426. {
  59427. name: "Terra+",
  59428. height: math.unit(400000, "km")
  59429. },
  59430. ]
  59431. ))
  59432. characterMakers.push(() => makeCharacter(
  59433. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59434. {
  59435. front: {
  59436. height: math.unit(2, "meters"),
  59437. weight: math.unit(95, "kg"),
  59438. name: "Front",
  59439. image: {
  59440. source: "./media/characters/osiris-gryphon/front.svg",
  59441. extra: 1508/1313,
  59442. bottom: 87/1595
  59443. }
  59444. },
  59445. back: {
  59446. height: math.unit(2, "meters"),
  59447. weight: math.unit(95, "kg"),
  59448. name: "Back",
  59449. image: {
  59450. source: "./media/characters/osiris-gryphon/back.svg",
  59451. extra: 1436/1309,
  59452. bottom: 64/1500
  59453. }
  59454. },
  59455. frontLewd: {
  59456. height: math.unit(2, "meters"),
  59457. weight: math.unit(95, "kg"),
  59458. name: "Front-lewd",
  59459. image: {
  59460. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59461. extra: 1508/1313,
  59462. bottom: 87/1595
  59463. }
  59464. },
  59465. wing: {
  59466. height: math.unit(6.3333, "feet"),
  59467. name: "Wing",
  59468. image: {
  59469. source: "./media/characters/osiris-gryphon/wing.svg"
  59470. }
  59471. },
  59472. },
  59473. [
  59474. {
  59475. name: "Incognito",
  59476. height: math.unit(2, "meters")
  59477. },
  59478. {
  59479. name: "Home Size",
  59480. height: math.unit(30, "meters"),
  59481. default: true
  59482. },
  59483. {
  59484. name: "Macro",
  59485. height: math.unit(100, "meters")
  59486. },
  59487. {
  59488. name: "Macro+",
  59489. height: math.unit(350, "meters")
  59490. },
  59491. {
  59492. name: "Mega",
  59493. height: math.unit(40, "km")
  59494. },
  59495. {
  59496. name: "Giga",
  59497. height: math.unit(300, "km")
  59498. },
  59499. {
  59500. name: "Giga+",
  59501. height: math.unit(2000, "km")
  59502. },
  59503. {
  59504. name: "Terra",
  59505. height: math.unit(30000, "km")
  59506. },
  59507. ]
  59508. ))
  59509. characterMakers.push(() => makeCharacter(
  59510. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59511. {
  59512. front: {
  59513. height: math.unit(2.5, "meters"),
  59514. weight: math.unit(200, "kg"),
  59515. name: "Front",
  59516. image: {
  59517. source: "./media/characters/atlas-dragon/front.svg",
  59518. extra: 745/462,
  59519. bottom: 36/781
  59520. }
  59521. },
  59522. back: {
  59523. height: math.unit(2.5, "meters"),
  59524. weight: math.unit(200, "kg"),
  59525. name: "Back",
  59526. image: {
  59527. source: "./media/characters/atlas-dragon/back.svg",
  59528. extra: 848/822,
  59529. bottom: 57/905
  59530. }
  59531. },
  59532. frontLewd: {
  59533. height: math.unit(2.5, "meters"),
  59534. weight: math.unit(200, "kg"),
  59535. name: "Front (Lewd)",
  59536. image: {
  59537. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59538. extra: 745/462,
  59539. bottom: 36/781
  59540. }
  59541. },
  59542. backLewd: {
  59543. height: math.unit(2.5, "meters"),
  59544. weight: math.unit(200, "kg"),
  59545. name: "Back (Lewd)",
  59546. image: {
  59547. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59548. extra: 848/822,
  59549. bottom: 57/905
  59550. }
  59551. },
  59552. },
  59553. [
  59554. {
  59555. name: "Incognito",
  59556. height: math.unit(2.5, "meters")
  59557. },
  59558. {
  59559. name: "Small Macro",
  59560. height: math.unit(50, "meters")
  59561. },
  59562. {
  59563. name: "Macro",
  59564. height: math.unit(350, "meters")
  59565. },
  59566. {
  59567. name: "Mega",
  59568. height: math.unit(5.5, "kilometers")
  59569. },
  59570. {
  59571. name: "Mega+",
  59572. height: math.unit(50, "km")
  59573. },
  59574. {
  59575. name: "Giga",
  59576. height: math.unit(350, "km")
  59577. },
  59578. {
  59579. name: "Giga+",
  59580. height: math.unit(2000, "km")
  59581. },
  59582. {
  59583. name: "Giga++",
  59584. height: math.unit(6500, "km")
  59585. },
  59586. {
  59587. name: "Terra",
  59588. height: math.unit(30000, "km")
  59589. },
  59590. {
  59591. name: "Terra+",
  59592. height: math.unit(250000, "km")
  59593. },
  59594. {
  59595. name: "True Size",
  59596. height: math.unit(100, "multiverses"),
  59597. default: true
  59598. },
  59599. ]
  59600. ))
  59601. characterMakers.push(() => makeCharacter(
  59602. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59603. {
  59604. front: {
  59605. height: math.unit(1.8, "m"),
  59606. weight: math.unit(120, "kg"),
  59607. name: "Front",
  59608. image: {
  59609. source: "./media/characters/chey/front.svg",
  59610. extra: 1359/1270,
  59611. bottom: 18/1377
  59612. }
  59613. },
  59614. arm: {
  59615. height: math.unit(2.05, "feet"),
  59616. name: "Arm",
  59617. image: {
  59618. source: "./media/characters/chey/arm.svg"
  59619. }
  59620. },
  59621. head: {
  59622. height: math.unit(1.89, "feet"),
  59623. name: "Head",
  59624. image: {
  59625. source: "./media/characters/chey/head.svg"
  59626. }
  59627. },
  59628. },
  59629. [
  59630. {
  59631. name: "Original Size",
  59632. height: math.unit(5, "cm")
  59633. },
  59634. {
  59635. name: "Incognito Size",
  59636. height: math.unit(2.4, "m")
  59637. },
  59638. {
  59639. name: "Home Size",
  59640. height: math.unit(200, "meters"),
  59641. default: true
  59642. },
  59643. {
  59644. name: "Mega",
  59645. height: math.unit(2, "km")
  59646. },
  59647. {
  59648. name: "Giga (Preferred Size)",
  59649. height: math.unit(2000, "km")
  59650. },
  59651. {
  59652. name: "Giga+",
  59653. height: math.unit(6000, "km")
  59654. },
  59655. {
  59656. name: "Terra",
  59657. height: math.unit(17000, "km")
  59658. },
  59659. {
  59660. name: "Terra+",
  59661. height: math.unit(75000, "km")
  59662. },
  59663. {
  59664. name: "Terra++",
  59665. height: math.unit(225000, "km")
  59666. },
  59667. ]
  59668. ))
  59669. characterMakers.push(() => makeCharacter(
  59670. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59671. {
  59672. side: {
  59673. height: math.unit(7.8, "meters"),
  59674. name: "Side",
  59675. image: {
  59676. source: "./media/characters/ragnarok/side.svg",
  59677. extra: 725/621,
  59678. bottom: 72/797
  59679. }
  59680. },
  59681. },
  59682. [
  59683. {
  59684. name: "Normal",
  59685. height: math.unit(7.8, "meters"),
  59686. default: true
  59687. },
  59688. ]
  59689. ))
  59690. characterMakers.push(() => makeCharacter(
  59691. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59692. {
  59693. hyena_front: {
  59694. height: math.unit(2.1, "meters"),
  59695. weight: math.unit(110, "kg"),
  59696. name: "Front",
  59697. image: {
  59698. source: "./media/characters/nima/hyena-front.svg",
  59699. extra: 1904/1796,
  59700. bottom: 67/1971
  59701. },
  59702. form: "hyena",
  59703. },
  59704. hyena_back: {
  59705. height: math.unit(2.1, "meters"),
  59706. weight: math.unit(110, "kg"),
  59707. name: "Back",
  59708. image: {
  59709. source: "./media/characters/nima/hyena-back.svg",
  59710. extra: 1964/1884,
  59711. bottom: 35/1999
  59712. },
  59713. form: "hyena",
  59714. },
  59715. shark_front: {
  59716. height: math.unit(1.95, "meters"),
  59717. weight: math.unit(110, "kg"),
  59718. name: "Front",
  59719. image: {
  59720. source: "./media/characters/nima/shark-front.svg",
  59721. extra: 2238/2013,
  59722. bottom: 0/223
  59723. },
  59724. form: "shark",
  59725. },
  59726. paw: {
  59727. height: math.unit(1, "feet"),
  59728. name: "Paw",
  59729. image: {
  59730. source: "./media/characters/nima/paw.svg"
  59731. }
  59732. },
  59733. circlet: {
  59734. height: math.unit(0.3, "feet"),
  59735. name: "Circlet",
  59736. image: {
  59737. source: "./media/characters/nima/circlet.svg"
  59738. }
  59739. },
  59740. necklace: {
  59741. height: math.unit(1.2, "feet"),
  59742. name: "Necklace",
  59743. image: {
  59744. source: "./media/characters/nima/necklace.svg"
  59745. }
  59746. },
  59747. bracelet: {
  59748. height: math.unit(0.51, "feet"),
  59749. name: "Bracelet",
  59750. image: {
  59751. source: "./media/characters/nima/bracelet.svg"
  59752. }
  59753. },
  59754. armband: {
  59755. height: math.unit(1.3, "feet"),
  59756. name: "Armband",
  59757. image: {
  59758. source: "./media/characters/nima/armband.svg"
  59759. }
  59760. },
  59761. },
  59762. [
  59763. {
  59764. name: "Incognito",
  59765. height: math.unit(2.1, "meters"),
  59766. allForms: true
  59767. },
  59768. {
  59769. name: "Small Macro",
  59770. height: math.unit(50, "meters"),
  59771. allForms: true
  59772. },
  59773. {
  59774. name: "Macro",
  59775. height: math.unit(200, "meters"),
  59776. allForms: true
  59777. },
  59778. {
  59779. name: "Mega",
  59780. height: math.unit(2.5, "km"),
  59781. allForms: true
  59782. },
  59783. {
  59784. name: "Mega+",
  59785. height: math.unit(30, "km"),
  59786. allForms: true
  59787. },
  59788. {
  59789. name: "Giga (Home Size)",
  59790. height: math.unit(400, "km"),
  59791. allForms: true,
  59792. default: true
  59793. },
  59794. {
  59795. name: "Giga+",
  59796. height: math.unit(2500, "km"),
  59797. allForms: true
  59798. },
  59799. {
  59800. name: "Giga++",
  59801. height: math.unit(8000, "km"),
  59802. allForms: true
  59803. },
  59804. {
  59805. name: "Terra",
  59806. height: math.unit(20000, "km"),
  59807. allForms: true
  59808. },
  59809. {
  59810. name: "Terra+",
  59811. height: math.unit(70000, "km"),
  59812. allForms: true
  59813. },
  59814. {
  59815. name: "Terra++",
  59816. height: math.unit(600000, "km"),
  59817. allForms: true
  59818. },
  59819. {
  59820. name: "Galactic",
  59821. height: math.unit(40, "galaxies"),
  59822. allForms: true
  59823. },
  59824. {
  59825. name: "Universal",
  59826. height: math.unit(40, "universes"),
  59827. allForms: true
  59828. },
  59829. ],
  59830. {
  59831. "hyena": {
  59832. name: "Hyena",
  59833. default: true
  59834. },
  59835. "shark": {
  59836. name: "Shark",
  59837. },
  59838. }
  59839. ))
  59840. characterMakers.push(() => makeCharacter(
  59841. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59842. {
  59843. anthro_front: {
  59844. height: math.unit(1.5, "meters"),
  59845. name: "Front",
  59846. image: {
  59847. source: "./media/characters/adelaide/anthro-front.svg",
  59848. extra: 860/783,
  59849. bottom: 60/920
  59850. },
  59851. form: "anthro",
  59852. default: true
  59853. },
  59854. hand: {
  59855. height: math.unit(0.65, "feet"),
  59856. name: "Hand",
  59857. image: {
  59858. source: "./media/characters/adelaide/hand.svg"
  59859. },
  59860. form: "anthro"
  59861. },
  59862. foot: {
  59863. height: math.unit(1.38 * 259 / 314, "feet"),
  59864. name: "Foot",
  59865. image: {
  59866. source: "./media/characters/adelaide/foot.svg",
  59867. extra: 259/259,
  59868. bottom: 55/314
  59869. },
  59870. form: "anthro"
  59871. },
  59872. feather: {
  59873. height: math.unit(0.85, "feet"),
  59874. name: "Feather",
  59875. image: {
  59876. source: "./media/characters/adelaide/feather.svg"
  59877. },
  59878. form: "anthro"
  59879. },
  59880. feral_side: {
  59881. height: math.unit(1, "meters"),
  59882. name: "Side",
  59883. image: {
  59884. source: "./media/characters/adelaide/feral-side.svg",
  59885. extra: 550/467,
  59886. bottom: 37/587
  59887. },
  59888. form: "feral",
  59889. default: true
  59890. },
  59891. feral_hand: {
  59892. height: math.unit(0.58, "feet"),
  59893. name: "Hand",
  59894. image: {
  59895. source: "./media/characters/adelaide/hand.svg"
  59896. },
  59897. form: "feral"
  59898. },
  59899. feral_foot: {
  59900. height: math.unit(1.2 * 259 / 314, "feet"),
  59901. name: "Foot",
  59902. image: {
  59903. source: "./media/characters/adelaide/foot.svg",
  59904. extra: 259/259,
  59905. bottom: 55/314
  59906. },
  59907. form: "feral"
  59908. },
  59909. feral_feather: {
  59910. height: math.unit(0.63, "feet"),
  59911. name: "Feather",
  59912. image: {
  59913. source: "./media/characters/adelaide/feather.svg"
  59914. },
  59915. form: "feral"
  59916. },
  59917. },
  59918. [
  59919. {
  59920. name: "Normal",
  59921. height: math.unit(1.5, "meters"),
  59922. form: "anthro",
  59923. default: true
  59924. },
  59925. {
  59926. name: "Normal",
  59927. height: math.unit(1, "meters"),
  59928. form: "feral",
  59929. default: true
  59930. },
  59931. ],
  59932. {
  59933. "anthro": {
  59934. name: "Anthro",
  59935. default: true
  59936. },
  59937. "feral": {
  59938. name: "Feral",
  59939. },
  59940. }
  59941. ))
  59942. characterMakers.push(() => makeCharacter(
  59943. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59944. {
  59945. front: {
  59946. height: math.unit(2.5, "meters"),
  59947. name: "Front",
  59948. image: {
  59949. source: "./media/characters/goa/front.svg",
  59950. extra: 1109/1013,
  59951. bottom: 150/1259
  59952. }
  59953. },
  59954. },
  59955. [
  59956. {
  59957. name: "Normal",
  59958. height: math.unit(2.5, "meters"),
  59959. default: true
  59960. },
  59961. ]
  59962. ))
  59963. characterMakers.push(() => makeCharacter(
  59964. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59965. {
  59966. front: {
  59967. height: math.unit(2, "meters"),
  59968. weight: math.unit(100, "kg"),
  59969. name: "Front",
  59970. image: {
  59971. source: "./media/characters/kiki-weavile/front.svg",
  59972. extra: 357/332,
  59973. bottom: 60/417
  59974. }
  59975. },
  59976. },
  59977. [
  59978. {
  59979. name: "Normal",
  59980. height: math.unit(2, "meters"),
  59981. default: true
  59982. },
  59983. ]
  59984. ))
  59985. characterMakers.push(() => makeCharacter(
  59986. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59987. {
  59988. side: {
  59989. height: math.unit(1.6, "meters"),
  59990. name: "Side",
  59991. image: {
  59992. source: "./media/characters/liza/side.svg",
  59993. extra: 943/915,
  59994. bottom: 72/1015
  59995. }
  59996. },
  59997. },
  59998. [
  59999. {
  60000. name: "Normal",
  60001. height: math.unit(1.6, "meters"),
  60002. default: true
  60003. },
  60004. ]
  60005. ))
  60006. characterMakers.push(() => makeCharacter(
  60007. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60008. {
  60009. side: {
  60010. height: math.unit(2.5, "meters"),
  60011. preyCapacity: math.unit(1, "people"),
  60012. name: "Side",
  60013. image: {
  60014. source: "./media/characters/persephone-sweetbreath/side.svg",
  60015. extra: 796/700,
  60016. bottom: 44/840
  60017. }
  60018. },
  60019. sideVore: {
  60020. height: math.unit(2.5, "meters"),
  60021. preyCapacity: math.unit(1, "people"),
  60022. name: "Side (Full)",
  60023. image: {
  60024. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60025. extra: 796/700,
  60026. bottom: 44/840
  60027. }
  60028. },
  60029. },
  60030. [
  60031. {
  60032. name: "Normal",
  60033. height: math.unit(2.5, "meters"),
  60034. default: true
  60035. },
  60036. ]
  60037. ))
  60038. characterMakers.push(() => makeCharacter(
  60039. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60040. {
  60041. front: {
  60042. height: math.unit(32, "meters"),
  60043. name: "Front",
  60044. image: {
  60045. source: "./media/characters/pierce/front.svg",
  60046. extra: 1695/1475,
  60047. bottom: 185/1880
  60048. }
  60049. },
  60050. side: {
  60051. height: math.unit(32, "meters"),
  60052. name: "Side",
  60053. image: {
  60054. source: "./media/characters/pierce/side.svg",
  60055. extra: 974/859,
  60056. bottom: 43/1017
  60057. }
  60058. },
  60059. frontWingless: {
  60060. height: math.unit(32, "meters"),
  60061. name: "Front (Wingless)",
  60062. image: {
  60063. source: "./media/characters/pierce/front-wingless.svg",
  60064. extra: 1695/1475,
  60065. bottom: 185/1880
  60066. }
  60067. },
  60068. sideWingless: {
  60069. height: math.unit(32, "meters"),
  60070. name: "Side (Wingless)",
  60071. image: {
  60072. source: "./media/characters/pierce/side-wingless.svg",
  60073. extra: 974/859,
  60074. bottom: 43/1017
  60075. }
  60076. },
  60077. maw: {
  60078. height: math.unit(19.3, "meters"),
  60079. name: "Maw",
  60080. image: {
  60081. source: "./media/characters/pierce/maw.svg"
  60082. }
  60083. },
  60084. },
  60085. [
  60086. {
  60087. name: "Small",
  60088. height: math.unit(8.5, "meters")
  60089. },
  60090. {
  60091. name: "Normal",
  60092. height: math.unit(32, "meters"),
  60093. default: true
  60094. },
  60095. ]
  60096. ))
  60097. characterMakers.push(() => makeCharacter(
  60098. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60099. {
  60100. front: {
  60101. height: math.unit(2.3, "meters"),
  60102. weight: math.unit(165, "kg"),
  60103. name: "Front",
  60104. image: {
  60105. source: "./media/characters/shira/front.svg",
  60106. extra: 924/919,
  60107. bottom: 17/941
  60108. },
  60109. form: "cobra",
  60110. default: true
  60111. },
  60112. back: {
  60113. height: math.unit(2.3, "meters"),
  60114. weight: math.unit(165, "kg"),
  60115. name: "Back",
  60116. image: {
  60117. source: "./media/characters/shira/back.svg",
  60118. extra: 928/922,
  60119. bottom: 18/946
  60120. },
  60121. form: "cobra"
  60122. },
  60123. frontLewd: {
  60124. height: math.unit(2.3, "meters"),
  60125. weight: math.unit(165, "kg"),
  60126. name: "Front (Lewd)",
  60127. image: {
  60128. source: "./media/characters/shira/front-lewd.svg",
  60129. extra: 924/919,
  60130. bottom: 17/941
  60131. },
  60132. form: "cobra"
  60133. },
  60134. backLewd: {
  60135. height: math.unit(2.3, "meters"),
  60136. weight: math.unit(165, "kg"),
  60137. name: "Back (Lewd)",
  60138. image: {
  60139. source: "./media/characters/shira/back-lewd.svg",
  60140. extra: 928/922,
  60141. bottom: 18/946
  60142. },
  60143. form: "cobra"
  60144. },
  60145. maw: {
  60146. height: math.unit(1.14, "feet"),
  60147. name: "Maw",
  60148. image: {
  60149. source: "./media/characters/shira/maw.svg"
  60150. },
  60151. form: "cobra"
  60152. },
  60153. magma_front: {
  60154. height: math.unit(2.3, "meters"),
  60155. weight: math.unit(165, "kg"),
  60156. name: "Front",
  60157. image: {
  60158. source: "./media/characters/shira/magma-front.svg",
  60159. extra: 1870/1693,
  60160. bottom: 24/1894
  60161. },
  60162. form: "magma",
  60163. },
  60164. magma_back: {
  60165. height: math.unit(2.3, "meters"),
  60166. weight: math.unit(165, "kg"),
  60167. name: "Back",
  60168. image: {
  60169. source: "./media/characters/shira/magma-back.svg",
  60170. extra: 1918/1756,
  60171. bottom: 46/1964
  60172. },
  60173. form: "magma",
  60174. },
  60175. },
  60176. [
  60177. {
  60178. name: "Incognito",
  60179. height: math.unit(2.3, "meters"),
  60180. allForms: true
  60181. },
  60182. {
  60183. name: "Home Size",
  60184. height: math.unit(150, "meters"),
  60185. default: true,
  60186. allForms: true
  60187. },
  60188. {
  60189. name: "Macro",
  60190. height: math.unit(2, "km"),
  60191. allForms: true
  60192. },
  60193. {
  60194. name: "Mega",
  60195. height: math.unit(30, "km"),
  60196. allForms: true
  60197. },
  60198. {
  60199. name: "Giga",
  60200. height: math.unit(450, "km"),
  60201. allForms: true
  60202. },
  60203. {
  60204. name: "Giga+",
  60205. height: math.unit(3000, "km"),
  60206. allForms: true
  60207. },
  60208. {
  60209. name: "Giga++",
  60210. height: math.unit(6000, "km"),
  60211. allForms: true
  60212. },
  60213. {
  60214. name: "Terra",
  60215. height: math.unit(80000, "km"),
  60216. allForms: true
  60217. },
  60218. {
  60219. name: "Terra+",
  60220. height: math.unit(350000, "km"),
  60221. allForms: true
  60222. },
  60223. {
  60224. name: "Solar",
  60225. height: math.unit(1e6, "km"),
  60226. allForms: true
  60227. },
  60228. ],
  60229. {
  60230. "cobra": {
  60231. name: "Cobra",
  60232. default: true
  60233. },
  60234. "magma": {
  60235. name: "Magma Dragon",
  60236. },
  60237. }
  60238. ))
  60239. characterMakers.push(() => makeCharacter(
  60240. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60241. {
  60242. front: {
  60243. height: math.unit(2, "meters"),
  60244. weight: math.unit(160, "kg"),
  60245. name: "Front",
  60246. image: {
  60247. source: "./media/characters/daxerios/front.svg",
  60248. extra: 1334/1277,
  60249. bottom: 45/1379
  60250. }
  60251. },
  60252. frontLewd: {
  60253. height: math.unit(2, "meters"),
  60254. weight: math.unit(160, "kg"),
  60255. name: "Front (Lewd)",
  60256. image: {
  60257. source: "./media/characters/daxerios/front-lewd.svg",
  60258. extra: 1334/1277,
  60259. bottom: 45/1379
  60260. }
  60261. },
  60262. dick: {
  60263. height: math.unit(2.35, "feet"),
  60264. name: "Dick",
  60265. image: {
  60266. source: "./media/characters/daxerios/dick.svg"
  60267. }
  60268. },
  60269. },
  60270. [
  60271. {
  60272. name: "\"Small\"",
  60273. height: math.unit(5, "meters")
  60274. },
  60275. {
  60276. name: "Original Size",
  60277. height: math.unit(500, "meters"),
  60278. default: true
  60279. },
  60280. {
  60281. name: "Mega",
  60282. height: math.unit(2, "km")
  60283. },
  60284. {
  60285. name: "Mega+",
  60286. height: math.unit(35, "km")
  60287. },
  60288. {
  60289. name: "Giga",
  60290. height: math.unit(250, "km")
  60291. },
  60292. {
  60293. name: "Giga+",
  60294. height: math.unit(3000, "km")
  60295. },
  60296. {
  60297. name: "Terra",
  60298. height: math.unit(25000, "km")
  60299. },
  60300. {
  60301. name: "Terra+",
  60302. height: math.unit(300000, "km")
  60303. },
  60304. {
  60305. name: "Solar",
  60306. height: math.unit(1e6, "km")
  60307. },
  60308. ]
  60309. ))
  60310. characterMakers.push(() => makeCharacter(
  60311. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60312. {
  60313. front: {
  60314. height: math.unit(8 + 4/12, "feet"),
  60315. weight: math.unit(464, "lb"),
  60316. name: "Front",
  60317. image: {
  60318. source: "./media/characters/caveat/front.svg",
  60319. extra: 1861/1678,
  60320. bottom: 40/1901
  60321. }
  60322. },
  60323. },
  60324. [
  60325. {
  60326. name: "Normal",
  60327. height: math.unit(8 + 4/12, "feet"),
  60328. default: true
  60329. },
  60330. ]
  60331. ))
  60332. characterMakers.push(() => makeCharacter(
  60333. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60334. {
  60335. front: {
  60336. height: math.unit(12, "feet"),
  60337. weight: math.unit(1800, "lb"),
  60338. name: "Front",
  60339. image: {
  60340. source: "./media/characters/centbair/front.svg",
  60341. extra: 781/663,
  60342. bottom: 25/806
  60343. }
  60344. },
  60345. frontNsfw: {
  60346. height: math.unit(12, "feet"),
  60347. weight: math.unit(1800, "lb"),
  60348. name: "Front (NSFW)",
  60349. image: {
  60350. source: "./media/characters/centbair/front-nsfw.svg",
  60351. extra: 781/663,
  60352. bottom: 25/806
  60353. }
  60354. },
  60355. back: {
  60356. height: math.unit(12, "feet"),
  60357. weight: math.unit(1800, "lb"),
  60358. name: "Back",
  60359. image: {
  60360. source: "./media/characters/centbair/back.svg",
  60361. extra: 808/761,
  60362. bottom: 19/827
  60363. }
  60364. },
  60365. dick: {
  60366. height: math.unit(6.5, "feet"),
  60367. name: "Dick",
  60368. image: {
  60369. source: "./media/characters/centbair/dick.svg"
  60370. }
  60371. },
  60372. slit: {
  60373. height: math.unit(3.25, "feet"),
  60374. name: "Slit",
  60375. image: {
  60376. source: "./media/characters/centbair/slit.svg"
  60377. }
  60378. },
  60379. },
  60380. [
  60381. {
  60382. name: "Normal",
  60383. height: math.unit(12, "feet"),
  60384. default: true
  60385. },
  60386. ]
  60387. ))
  60388. characterMakers.push(() => makeCharacter(
  60389. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60390. {
  60391. front: {
  60392. height: math.unit(5 + 7/12, "feet"),
  60393. name: "Front",
  60394. image: {
  60395. source: "./media/characters/andy/front.svg",
  60396. extra: 634/588,
  60397. bottom: 36/670
  60398. },
  60399. extraAttributes: {
  60400. "pawLength": {
  60401. name: "Paw Length",
  60402. power: 1,
  60403. type: "length",
  60404. base: math.unit(1, "feet")
  60405. },
  60406. }
  60407. },
  60408. side: {
  60409. height: math.unit(5 + 7/12, "feet"),
  60410. name: "Side",
  60411. image: {
  60412. source: "./media/characters/andy/side.svg",
  60413. extra: 641/596,
  60414. bottom: 34/675
  60415. },
  60416. extraAttributes: {
  60417. "pawLength": {
  60418. name: "Paw Length",
  60419. power: 1,
  60420. type: "length",
  60421. base: math.unit(1, "feet")
  60422. },
  60423. }
  60424. },
  60425. back: {
  60426. height: math.unit(5 + 7/12, "feet"),
  60427. name: "Back",
  60428. image: {
  60429. source: "./media/characters/andy/back.svg",
  60430. extra: 618/583,
  60431. bottom: 39/657
  60432. },
  60433. extraAttributes: {
  60434. "pawLength": {
  60435. name: "Paw Length",
  60436. power: 1,
  60437. type: "length",
  60438. base: math.unit(1, "feet")
  60439. },
  60440. }
  60441. },
  60442. paw: {
  60443. height: math.unit(1.13, "feet"),
  60444. name: "Paw",
  60445. image: {
  60446. source: "./media/characters/andy/paw.svg"
  60447. }
  60448. },
  60449. },
  60450. [
  60451. {
  60452. name: "Micro",
  60453. height: math.unit(4, "inches")
  60454. },
  60455. {
  60456. name: "Normal",
  60457. height: math.unit(5 + 7/12, "feet"),
  60458. default: true
  60459. },
  60460. {
  60461. name: "Macro",
  60462. height: math.unit(390.42, "feet")
  60463. },
  60464. ]
  60465. ))
  60466. characterMakers.push(() => makeCharacter(
  60467. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60468. {
  60469. front: {
  60470. height: math.unit(7, "feet"),
  60471. weight: math.unit(250, "lb"),
  60472. name: "Front",
  60473. image: {
  60474. source: "./media/characters/vix-titan/front.svg",
  60475. extra: 460/428,
  60476. bottom: 15/475
  60477. },
  60478. extraAttributes: {
  60479. "pawWidth": {
  60480. name: "Paw Width",
  60481. power: 1,
  60482. type: "length",
  60483. base: math.unit(0.75, "feet")
  60484. },
  60485. }
  60486. },
  60487. },
  60488. [
  60489. {
  60490. name: "Normal",
  60491. height: math.unit(7, "feet"),
  60492. default: true
  60493. },
  60494. {
  60495. name: "Giant",
  60496. height: math.unit(1500, "feet")
  60497. },
  60498. {
  60499. name: "Mega",
  60500. height: math.unit(10, "miles")
  60501. },
  60502. {
  60503. name: "Giga",
  60504. height: math.unit(150, "miles")
  60505. },
  60506. {
  60507. name: "Tera",
  60508. height: math.unit(144000, "miles")
  60509. },
  60510. ]
  60511. ))
  60512. characterMakers.push(() => makeCharacter(
  60513. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60514. {
  60515. front: {
  60516. height: math.unit(6 + 2/12, "feet"),
  60517. name: "Front",
  60518. image: {
  60519. source: "./media/characters/reiku/front.svg",
  60520. extra: 1910/1757,
  60521. bottom: 103/2013
  60522. },
  60523. extraAttributes: {
  60524. "thighThickness": {
  60525. name: "Thigh Thickness",
  60526. power: 1,
  60527. type: "length",
  60528. base: math.unit(1.12, "feet")
  60529. },
  60530. "assThickness": {
  60531. name: "Ass Thickness",
  60532. power: 1,
  60533. type: "length",
  60534. base: math.unit(1.12*2, "feet")
  60535. },
  60536. }
  60537. },
  60538. side: {
  60539. height: math.unit(6 + 2/12, "feet"),
  60540. name: "Side",
  60541. image: {
  60542. source: "./media/characters/reiku/side.svg",
  60543. extra: 1846/1748,
  60544. bottom: 99/1945
  60545. },
  60546. extraAttributes: {
  60547. "thighThickness": {
  60548. name: "Thigh Thickness",
  60549. power: 1,
  60550. type: "length",
  60551. base: math.unit(1.12, "feet")
  60552. },
  60553. "assThickness": {
  60554. name: "Ass Thickness",
  60555. power: 1,
  60556. type: "length",
  60557. base: math.unit(1.12*2, "feet")
  60558. },
  60559. }
  60560. },
  60561. back: {
  60562. height: math.unit(6 + 2/12, "feet"),
  60563. name: "Back",
  60564. image: {
  60565. source: "./media/characters/reiku/back.svg",
  60566. extra: 1941/1786,
  60567. bottom: 34/1975
  60568. },
  60569. extraAttributes: {
  60570. "thighThickness": {
  60571. name: "Thigh Thickness",
  60572. power: 1,
  60573. type: "length",
  60574. base: math.unit(1.12, "feet")
  60575. },
  60576. "assThickness": {
  60577. name: "Ass Thickness",
  60578. power: 1,
  60579. type: "length",
  60580. base: math.unit(1.12*2, "feet")
  60581. },
  60582. }
  60583. },
  60584. head: {
  60585. height: math.unit(1.8, "feet"),
  60586. name: "Head",
  60587. image: {
  60588. source: "./media/characters/reiku/head.svg"
  60589. }
  60590. },
  60591. tailTop: {
  60592. height: math.unit(8.4, "feet"),
  60593. name: "Tail (Top)",
  60594. image: {
  60595. source: "./media/characters/reiku/tail-top.svg"
  60596. }
  60597. },
  60598. tailBottom: {
  60599. height: math.unit(8.4, "feet"),
  60600. name: "Tail (Bottom)",
  60601. image: {
  60602. source: "./media/characters/reiku/tail-bottom.svg"
  60603. }
  60604. },
  60605. foot: {
  60606. height: math.unit(2.6, "feet"),
  60607. name: "Foot",
  60608. image: {
  60609. source: "./media/characters/reiku/foot.svg"
  60610. }
  60611. },
  60612. footCurled: {
  60613. height: math.unit(2.3, "feet"),
  60614. name: "Foot (Curled)",
  60615. image: {
  60616. source: "./media/characters/reiku/foot-curled.svg"
  60617. }
  60618. },
  60619. footSide: {
  60620. height: math.unit(1.26, "feet"),
  60621. name: "Foot (Side)",
  60622. image: {
  60623. source: "./media/characters/reiku/foot-side.svg"
  60624. }
  60625. },
  60626. },
  60627. [
  60628. {
  60629. name: "Normal",
  60630. height: math.unit(6 + 2/12, "feet"),
  60631. default: true
  60632. },
  60633. ]
  60634. ))
  60635. characterMakers.push(() => makeCharacter(
  60636. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60637. {
  60638. front: {
  60639. height: math.unit(7, "feet"),
  60640. weight: math.unit(500, "kg"),
  60641. name: "Front",
  60642. image: {
  60643. source: "./media/characters/cialda/front.svg",
  60644. extra: 912/745,
  60645. bottom: 55/967
  60646. }
  60647. },
  60648. },
  60649. [
  60650. {
  60651. name: "Normal",
  60652. height: math.unit(7, "feet"),
  60653. default: true
  60654. },
  60655. ]
  60656. ))
  60657. characterMakers.push(() => makeCharacter(
  60658. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60659. {
  60660. side: {
  60661. height: math.unit(6, "feet"),
  60662. weight: math.unit(600, "lb"),
  60663. preyCapacity: math.unit(25, "liters"),
  60664. name: "Side",
  60665. image: {
  60666. source: "./media/characters/darkkin/side.svg",
  60667. extra: 1597/1447,
  60668. bottom: 101/1698
  60669. }
  60670. },
  60671. },
  60672. [
  60673. {
  60674. name: "Canon Height",
  60675. height: math.unit(568, "feet"),
  60676. default: true
  60677. },
  60678. ]
  60679. ))
  60680. characterMakers.push(() => makeCharacter(
  60681. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60682. {
  60683. front: {
  60684. height: math.unit(6, "feet"),
  60685. weight: math.unit(1500, "lb"),
  60686. preyCapacity: math.unit(3, "people"),
  60687. name: "Front",
  60688. image: {
  60689. source: "./media/characters/livnia/front.svg",
  60690. extra: 934/932,
  60691. bottom: 83/1017
  60692. }
  60693. },
  60694. back: {
  60695. height: math.unit(6, "feet"),
  60696. weight: math.unit(1500, "lb"),
  60697. preyCapacity: math.unit(3, "people"),
  60698. name: "Back",
  60699. image: {
  60700. source: "./media/characters/livnia/back.svg",
  60701. extra: 916/915,
  60702. bottom: 58/974
  60703. }
  60704. },
  60705. head: {
  60706. height: math.unit(1.53, "feet"),
  60707. name: "Head",
  60708. image: {
  60709. source: "./media/characters/livnia/head.svg"
  60710. }
  60711. },
  60712. maw: {
  60713. height: math.unit(0.78, "feet"),
  60714. name: "Maw",
  60715. image: {
  60716. source: "./media/characters/livnia/maw.svg"
  60717. }
  60718. },
  60719. genitals: {
  60720. height: math.unit(0.35, "feet"),
  60721. name: "Genitals",
  60722. image: {
  60723. source: "./media/characters/livnia/genitals.svg"
  60724. }
  60725. },
  60726. },
  60727. [
  60728. {
  60729. name: "Normal",
  60730. height: math.unit(1000, "feet"),
  60731. default: true
  60732. },
  60733. ]
  60734. ))
  60735. characterMakers.push(() => makeCharacter(
  60736. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60737. {
  60738. front: {
  60739. height: math.unit(4, "feet"),
  60740. weight: math.unit(73, "lb"),
  60741. name: "Front",
  60742. image: {
  60743. source: "./media/characters/hayaku/front.svg",
  60744. extra: 1011/888,
  60745. bottom: 33/1044
  60746. }
  60747. },
  60748. back: {
  60749. height: math.unit(4, "feet"),
  60750. weight: math.unit(73, "lb"),
  60751. name: "Back",
  60752. image: {
  60753. source: "./media/characters/hayaku/back.svg",
  60754. extra: 1040/930,
  60755. bottom: 20/1060
  60756. }
  60757. },
  60758. },
  60759. [
  60760. {
  60761. name: "Normal",
  60762. height: math.unit(4, "feet"),
  60763. default: true
  60764. },
  60765. ]
  60766. ))
  60767. characterMakers.push(() => makeCharacter(
  60768. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60769. {
  60770. front: {
  60771. height: math.unit(6 + 7/12, "feet"),
  60772. weight: math.unit(300, "lb"),
  60773. name: "Front",
  60774. image: {
  60775. source: "./media/characters/athena-bryzant/front.svg",
  60776. extra: 870/835,
  60777. bottom: 33/903
  60778. }
  60779. },
  60780. back: {
  60781. height: math.unit(6 + 7/12, "feet"),
  60782. weight: math.unit(300, "lb"),
  60783. name: "Back",
  60784. image: {
  60785. source: "./media/characters/athena-bryzant/back.svg",
  60786. extra: 858/823,
  60787. bottom: 30/888
  60788. }
  60789. },
  60790. head: {
  60791. height: math.unit(2.38, "feet"),
  60792. name: "Head",
  60793. image: {
  60794. source: "./media/characters/athena-bryzant/head.svg"
  60795. }
  60796. },
  60797. wings: {
  60798. height: math.unit(2.85, "feet"),
  60799. name: "Wings",
  60800. image: {
  60801. source: "./media/characters/athena-bryzant/wings.svg"
  60802. }
  60803. },
  60804. },
  60805. [
  60806. {
  60807. name: "Normal",
  60808. height: math.unit(6 + 7/12, "feet"),
  60809. default: true
  60810. },
  60811. {
  60812. name: "Big",
  60813. height: math.unit(8, "feet")
  60814. },
  60815. {
  60816. name: "Very Big",
  60817. height: math.unit(11, "feet")
  60818. },
  60819. ]
  60820. ))
  60821. characterMakers.push(() => makeCharacter(
  60822. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60823. {
  60824. side: {
  60825. height: math.unit(3, "meters"),
  60826. weight: math.unit(7500, "kg"),
  60827. preyCapacity: math.unit(1e12, "people"),
  60828. name: "Side",
  60829. image: {
  60830. source: "./media/characters/zel-kesh/side.svg",
  60831. extra: 910/407,
  60832. bottom: 147/1057
  60833. }
  60834. },
  60835. },
  60836. [
  60837. {
  60838. name: "Normal",
  60839. height: math.unit(3, "meters"),
  60840. default: true
  60841. },
  60842. ]
  60843. ))
  60844. characterMakers.push(() => makeCharacter(
  60845. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60846. {
  60847. front: {
  60848. height: math.unit(2, "meters"),
  60849. weight: math.unit(95, "kg"),
  60850. name: "Front",
  60851. image: {
  60852. source: "./media/characters/kane-fox/front.svg",
  60853. extra: 945/888,
  60854. bottom: 27/972
  60855. }
  60856. },
  60857. back: {
  60858. height: math.unit(2, "meters"),
  60859. weight: math.unit(95, "kg"),
  60860. name: "Back",
  60861. image: {
  60862. source: "./media/characters/kane-fox/back.svg",
  60863. extra: 959/914,
  60864. bottom: 15/974
  60865. }
  60866. },
  60867. frontLewd: {
  60868. height: math.unit(2, "meters"),
  60869. weight: math.unit(95, "kg"),
  60870. name: "Front (Lewd)",
  60871. image: {
  60872. source: "./media/characters/kane-fox/front-lewd.svg",
  60873. extra: 945/888,
  60874. bottom: 27/972
  60875. }
  60876. },
  60877. },
  60878. [
  60879. {
  60880. name: "Home Size",
  60881. height: math.unit(2, "meters"),
  60882. default: true
  60883. },
  60884. {
  60885. name: "Macro",
  60886. height: math.unit(200, "meters")
  60887. },
  60888. {
  60889. name: "Small Mega",
  60890. height: math.unit(3, "km")
  60891. },
  60892. {
  60893. name: "Mega",
  60894. height: math.unit(50, "km")
  60895. },
  60896. {
  60897. name: "Giga",
  60898. height: math.unit(200, "km")
  60899. },
  60900. {
  60901. name: "Giga+",
  60902. height: math.unit(2500, "km")
  60903. },
  60904. {
  60905. name: "Terra",
  60906. height: math.unit(70000, "km")
  60907. },
  60908. {
  60909. name: "Terra+",
  60910. height: math.unit(150000, "km")
  60911. },
  60912. {
  60913. name: "Terra++",
  60914. height: math.unit(400000, "km")
  60915. },
  60916. ]
  60917. ))
  60918. characterMakers.push(() => makeCharacter(
  60919. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60920. {
  60921. otter_front: {
  60922. height: math.unit(1.8, "meters"),
  60923. weight: math.unit(90, "kg"),
  60924. name: "Front",
  60925. image: {
  60926. source: "./media/characters/ayranus/otter-front.svg",
  60927. extra: 468/452,
  60928. bottom: 43/511
  60929. },
  60930. form: "otter",
  60931. },
  60932. otter_frontLewd: {
  60933. height: math.unit(1.8, "meters"),
  60934. weight: math.unit(90, "kg"),
  60935. name: "Front (Lewd)",
  60936. image: {
  60937. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60938. extra: 468/452,
  60939. bottom: 43/511
  60940. },
  60941. form: "otter",
  60942. },
  60943. lionbat_front: {
  60944. height: math.unit(1.8, "meters"),
  60945. weight: math.unit(90, "kg"),
  60946. name: "Front (Lewd)",
  60947. image: {
  60948. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60949. extra: 797/740,
  60950. bottom: 78/875
  60951. },
  60952. form: "lionbat",
  60953. },
  60954. paw: {
  60955. height: math.unit(1.5, "feet"),
  60956. name: "Paw",
  60957. image: {
  60958. source: "./media/characters/ayranus/paw.svg"
  60959. },
  60960. },
  60961. },
  60962. [
  60963. {
  60964. name: "Incognito",
  60965. height: math.unit(1.8, "meters"),
  60966. allForms: true
  60967. },
  60968. {
  60969. name: "Macro",
  60970. height: math.unit(60, "meters"),
  60971. allForms: true
  60972. },
  60973. {
  60974. name: "Macro+",
  60975. height: math.unit(200, "meters"),
  60976. allForms: true
  60977. },
  60978. {
  60979. name: "Mega",
  60980. height: math.unit(35, "km"),
  60981. allForms: true
  60982. },
  60983. {
  60984. name: "Giga",
  60985. height: math.unit(220, "km"),
  60986. allForms: true
  60987. },
  60988. {
  60989. name: "Giga+",
  60990. height: math.unit(1500, "km"),
  60991. allForms: true
  60992. },
  60993. {
  60994. name: "Terra",
  60995. height: math.unit(13000, "km"),
  60996. allForms: true
  60997. },
  60998. {
  60999. name: "Terra+",
  61000. height: math.unit(500000, "km"),
  61001. allForms: true
  61002. },
  61003. {
  61004. name: "Galactic",
  61005. height: math.unit(486080, "parsecs"),
  61006. default: true,
  61007. allForms: true
  61008. },
  61009. ],
  61010. {
  61011. "otter": {
  61012. name: "Otter",
  61013. default: true
  61014. },
  61015. "lionbat": {
  61016. name: "Lionbat",
  61017. },
  61018. }
  61019. ))
  61020. characterMakers.push(() => makeCharacter(
  61021. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61022. {
  61023. front: {
  61024. height: math.unit(7 + 4/12, "feet"),
  61025. weight: math.unit(400, "lb"),
  61026. name: "Front",
  61027. image: {
  61028. source: "./media/characters/proxy/front.svg",
  61029. extra: 1605/1542,
  61030. bottom: 55/1660
  61031. }
  61032. },
  61033. side: {
  61034. height: math.unit(7 + 4/12, "feet"),
  61035. weight: math.unit(400, "lb"),
  61036. name: "Side",
  61037. image: {
  61038. source: "./media/characters/proxy/side.svg",
  61039. extra: 794/759,
  61040. bottom: 6/800
  61041. }
  61042. },
  61043. hand: {
  61044. height: math.unit(1.54, "feet"),
  61045. name: "Hand",
  61046. image: {
  61047. source: "./media/characters/proxy/hand.svg"
  61048. }
  61049. },
  61050. paw: {
  61051. height: math.unit(1.53, "feet"),
  61052. name: "Paw",
  61053. image: {
  61054. source: "./media/characters/proxy/paw.svg"
  61055. }
  61056. },
  61057. maw: {
  61058. height: math.unit(1.9, "feet"),
  61059. name: "Maw",
  61060. image: {
  61061. source: "./media/characters/proxy/maw.svg"
  61062. }
  61063. },
  61064. },
  61065. [
  61066. {
  61067. name: "Normal",
  61068. height: math.unit(7 + 4/12, "feet"),
  61069. default: true
  61070. },
  61071. ]
  61072. ))
  61073. characterMakers.push(() => makeCharacter(
  61074. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61075. {
  61076. front: {
  61077. height: math.unit(4, "meters"),
  61078. name: "Front",
  61079. image: {
  61080. source: "./media/characters/crocozilla/front.svg",
  61081. extra: 1790/1742,
  61082. bottom: 78/1868
  61083. }
  61084. },
  61085. },
  61086. [
  61087. {
  61088. name: "Normal",
  61089. height: math.unit(4, "meters"),
  61090. default: true
  61091. },
  61092. ]
  61093. ))
  61094. characterMakers.push(() => makeCharacter(
  61095. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61096. {
  61097. front: {
  61098. height: math.unit(1.8, "meters"),
  61099. weight: math.unit(120, "kg"),
  61100. name: "Front",
  61101. image: {
  61102. source: "./media/characters/kurz/front.svg",
  61103. extra: 1960/1824,
  61104. bottom: 41/2001
  61105. }
  61106. },
  61107. back: {
  61108. height: math.unit(1.8, "meters"),
  61109. weight: math.unit(120, "kg"),
  61110. name: "Back",
  61111. image: {
  61112. source: "./media/characters/kurz/back.svg",
  61113. extra: 1906/1787,
  61114. bottom: 60/1966
  61115. }
  61116. },
  61117. frontLewd: {
  61118. height: math.unit(1.8, "meters"),
  61119. weight: math.unit(120, "kg"),
  61120. name: "Front (Lewd)",
  61121. image: {
  61122. source: "./media/characters/kurz/front-lewd.svg",
  61123. extra: 1960/1824,
  61124. bottom: 41/2001
  61125. }
  61126. },
  61127. maw: {
  61128. height: math.unit(0.69, "meters"),
  61129. name: "Maw",
  61130. image: {
  61131. source: "./media/characters/kurz/maw.svg"
  61132. }
  61133. },
  61134. },
  61135. [
  61136. {
  61137. name: "Original Size",
  61138. height: math.unit(1.8, "meters")
  61139. },
  61140. {
  61141. name: "Incognito Size",
  61142. height: math.unit(2.4, "meters"),
  61143. default: true
  61144. },
  61145. {
  61146. name: "Macro",
  61147. height: math.unit(30, "meters")
  61148. },
  61149. {
  61150. name: "Macro+",
  61151. height: math.unit(250, "meters")
  61152. },
  61153. {
  61154. name: "Mega",
  61155. height: math.unit(2, "km")
  61156. },
  61157. {
  61158. name: "Mega+",
  61159. height: math.unit(35, "km")
  61160. },
  61161. {
  61162. name: "Mega++",
  61163. height: math.unit(75, "km")
  61164. },
  61165. {
  61166. name: "Giga",
  61167. height: math.unit(250, "km")
  61168. },
  61169. {
  61170. name: "Terra",
  61171. height: math.unit(15000, "km")
  61172. },
  61173. {
  61174. name: "Terra+",
  61175. height: math.unit(2250000, "km")
  61176. },
  61177. ]
  61178. ))
  61179. characterMakers.push(() => makeCharacter(
  61180. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61181. {
  61182. front: {
  61183. height: math.unit(16 + 3/12, "feet"),
  61184. weight: math.unit(3575, "lb"),
  61185. name: "Front",
  61186. image: {
  61187. source: "./media/characters/nikita/front.svg",
  61188. extra: 1064/955,
  61189. bottom: 47/1111
  61190. }
  61191. },
  61192. },
  61193. [
  61194. {
  61195. name: "Normal",
  61196. height: math.unit(16 + 3/12, "feet"),
  61197. default: true
  61198. },
  61199. {
  61200. name: "Big",
  61201. height: math.unit(21, "feet")
  61202. },
  61203. {
  61204. name: "Biggest",
  61205. height: math.unit(50, "feet")
  61206. },
  61207. ]
  61208. ))
  61209. characterMakers.push(() => makeCharacter(
  61210. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61211. {
  61212. front: {
  61213. height: math.unit(1.92, "m"),
  61214. weight: math.unit(76, "kg"),
  61215. name: "Front",
  61216. image: {
  61217. source: "./media/characters/kyara/front.svg",
  61218. extra: 1550/1438,
  61219. bottom: 139/1689
  61220. }
  61221. },
  61222. back: {
  61223. height: math.unit(1.92, "m"),
  61224. weight: math.unit(76, "kg"),
  61225. name: "Back",
  61226. image: {
  61227. source: "./media/characters/kyara/back.svg",
  61228. extra: 1523/1427,
  61229. bottom: 83/1606
  61230. }
  61231. },
  61232. head: {
  61233. height: math.unit(1.22, "feet"),
  61234. name: "Head",
  61235. image: {
  61236. source: "./media/characters/kyara/head.svg"
  61237. }
  61238. },
  61239. maw: {
  61240. height: math.unit(0.73, "feet"),
  61241. name: "Maw",
  61242. image: {
  61243. source: "./media/characters/kyara/maw.svg"
  61244. }
  61245. },
  61246. paws: {
  61247. height: math.unit(0.95, "feet"),
  61248. name: "Paws",
  61249. image: {
  61250. source: "./media/characters/kyara/paws.svg"
  61251. }
  61252. },
  61253. },
  61254. [
  61255. {
  61256. name: "Normal",
  61257. height: math.unit(1.92, "meters"),
  61258. default: true
  61259. },
  61260. {
  61261. name: "Mini Macro",
  61262. height: math.unit(192, "meters")
  61263. },
  61264. {
  61265. name: "Macro",
  61266. height: math.unit(480, "meters")
  61267. },
  61268. {
  61269. name: "Mega Macro",
  61270. height: math.unit(1440, "meters")
  61271. },
  61272. ]
  61273. ))
  61274. characterMakers.push(() => makeCharacter(
  61275. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61276. {
  61277. front: {
  61278. height: math.unit(6, "feet"),
  61279. weight: math.unit(160, "lbs"),
  61280. preyCapacity: math.unit(0.05, "people"),
  61281. name: "Front",
  61282. image: {
  61283. source: "./media/characters/layla-amari/front.svg",
  61284. extra: 1922/1723,
  61285. bottom: 90/2012
  61286. }
  61287. },
  61288. back: {
  61289. height: math.unit(6, "feet"),
  61290. weight: math.unit(160, "lbs"),
  61291. preyCapacity: math.unit(0.05, "people"),
  61292. name: "Back",
  61293. image: {
  61294. source: "./media/characters/layla-amari/back.svg",
  61295. extra: 1917/1718,
  61296. bottom: 50/1967
  61297. }
  61298. },
  61299. frontDressed: {
  61300. height: math.unit(6, "feet"),
  61301. weight: math.unit(160, "lbs"),
  61302. preyCapacity: math.unit(0.05, "people"),
  61303. name: "Front (Dressed)",
  61304. image: {
  61305. source: "./media/characters/layla-amari/front-dressed.svg",
  61306. extra: 1922/1723,
  61307. bottom: 90/2012
  61308. }
  61309. },
  61310. face: {
  61311. height: math.unit(0.93, "feet"),
  61312. name: "Face",
  61313. image: {
  61314. source: "./media/characters/layla-amari/face.svg"
  61315. }
  61316. },
  61317. hand: {
  61318. height: math.unit(0.66 , "feet"),
  61319. name: "Hand",
  61320. image: {
  61321. source: "./media/characters/layla-amari/hand.svg"
  61322. }
  61323. },
  61324. foot: {
  61325. height: math.unit(1, "feet"),
  61326. name: "Foot",
  61327. image: {
  61328. source: "./media/characters/layla-amari/foot.svg"
  61329. }
  61330. },
  61331. necklace: {
  61332. height: math.unit(0.32, "feet"),
  61333. name: "Necklace",
  61334. image: {
  61335. source: "./media/characters/layla-amari/necklace.svg"
  61336. }
  61337. },
  61338. nipple: {
  61339. height: math.unit(0.2, "feet"),
  61340. name: "Nipple",
  61341. image: {
  61342. source: "./media/characters/layla-amari/nipple.svg"
  61343. }
  61344. },
  61345. slit: {
  61346. height: math.unit(0.26, "feet"),
  61347. name: "Slit",
  61348. image: {
  61349. source: "./media/characters/layla-amari/slit.svg"
  61350. }
  61351. },
  61352. },
  61353. [
  61354. {
  61355. name: "Natural",
  61356. height: math.unit(825, "feet"),
  61357. default: true
  61358. },
  61359. {
  61360. name: "Enhanced",
  61361. height: math.unit(8250, "feet")
  61362. },
  61363. {
  61364. name: "Apparent Size",
  61365. height: math.unit(9.04363e+8, "meters")
  61366. },
  61367. ]
  61368. ))
  61369. characterMakers.push(() => makeCharacter(
  61370. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61371. {
  61372. front: {
  61373. height: math.unit(1.3, "meters"),
  61374. name: "Front",
  61375. image: {
  61376. source: "./media/characters/percy/front.svg",
  61377. extra: 1444/1289,
  61378. bottom: 54/1498
  61379. }
  61380. },
  61381. },
  61382. [
  61383. {
  61384. name: "Normal",
  61385. height: math.unit(1.3, "meters"),
  61386. default: true
  61387. },
  61388. ]
  61389. ))
  61390. characterMakers.push(() => makeCharacter(
  61391. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61392. {
  61393. side: {
  61394. height: math.unit(10, "meters"),
  61395. name: "Side",
  61396. image: {
  61397. source: "./media/characters/grev/side.svg",
  61398. extra: 653/266,
  61399. bottom: 77/730
  61400. }
  61401. },
  61402. head: {
  61403. height: math.unit(16.2, "m"),
  61404. name: "Head",
  61405. image: {
  61406. source: "./media/characters/grev/head.svg"
  61407. }
  61408. },
  61409. dick: {
  61410. height: math.unit(2.8135932034, "m"),
  61411. name: "Dick",
  61412. image: {
  61413. source: "./media/characters/grev/dick.svg"
  61414. }
  61415. },
  61416. },
  61417. [
  61418. {
  61419. name: "Friend-Sized",
  61420. height: math.unit(80, "cm")
  61421. },
  61422. {
  61423. name: "Normal",
  61424. height: math.unit(10, "meters"),
  61425. default: true
  61426. },
  61427. {
  61428. name: "Macro",
  61429. height: math.unit(200, "meters")
  61430. },
  61431. ]
  61432. ))
  61433. characterMakers.push(() => makeCharacter(
  61434. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61435. {
  61436. front: {
  61437. height: math.unit(19.75, "feet"),
  61438. weight: math.unit(20000, "lb"),
  61439. name: "Front",
  61440. image: {
  61441. source: "./media/characters/azuuca/front.svg",
  61442. extra: 1593/1511,
  61443. bottom: 55/1648
  61444. }
  61445. },
  61446. },
  61447. [
  61448. {
  61449. name: "Normal",
  61450. height: math.unit(19.75, "feet"),
  61451. default: true
  61452. },
  61453. ]
  61454. ))
  61455. characterMakers.push(() => makeCharacter(
  61456. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61457. {
  61458. front: {
  61459. height: math.unit(15, "feet"),
  61460. weight: math.unit(1500, "lb"),
  61461. name: "Front",
  61462. image: {
  61463. source: "./media/characters/valuria/front.svg",
  61464. extra: 1588/1486,
  61465. bottom: 31/1619
  61466. }
  61467. },
  61468. },
  61469. [
  61470. {
  61471. name: "Normal",
  61472. height: math.unit(15, "feet"),
  61473. default: true
  61474. },
  61475. {
  61476. name: "Small",
  61477. height: math.unit(500, "feet")
  61478. },
  61479. {
  61480. name: "Macro",
  61481. height: math.unit(4000, "feet")
  61482. },
  61483. {
  61484. name: "Mega Macro",
  61485. height: math.unit(2000, "miles")
  61486. },
  61487. {
  61488. name: "Giga Macro",
  61489. height: math.unit(3e6, "miles")
  61490. },
  61491. ]
  61492. ))
  61493. characterMakers.push(() => makeCharacter(
  61494. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61495. {
  61496. front: {
  61497. height: math.unit(3500, "solarradii"),
  61498. name: "Front",
  61499. image: {
  61500. source: "./media/characters/terigaia/front.svg",
  61501. extra: 1531/1451,
  61502. bottom: 98/1629
  61503. }
  61504. },
  61505. },
  61506. [
  61507. {
  61508. name: "Normal",
  61509. height: math.unit(3500, "solarradii"),
  61510. default: true
  61511. },
  61512. ]
  61513. ))
  61514. characterMakers.push(() => makeCharacter(
  61515. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61516. {
  61517. front: {
  61518. height: math.unit(9.34, "feet"),
  61519. weight: math.unit(600, "lb"),
  61520. name: "Front",
  61521. image: {
  61522. source: "./media/characters/blair-blaziken/front.svg",
  61523. extra: 1557/1462,
  61524. bottom: 55/1612
  61525. }
  61526. },
  61527. },
  61528. [
  61529. {
  61530. name: "Normal",
  61531. height: math.unit(9.34, "feet"),
  61532. default: true
  61533. },
  61534. ]
  61535. ))
  61536. characterMakers.push(() => makeCharacter(
  61537. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61538. {
  61539. pistrogre_front: {
  61540. height: math.unit(10, "feet"),
  61541. weight: math.unit(10, "tons"),
  61542. name: "Front",
  61543. image: {
  61544. source: "./media/characters/braxia/pistrogre-front.svg",
  61545. extra: 1531/1334,
  61546. bottom: 114/1645
  61547. },
  61548. form: "pistrogre",
  61549. default: true
  61550. },
  61551. human_front: {
  61552. height: math.unit(10, "feet"),
  61553. weight: math.unit(10, "tons"),
  61554. name: "Front",
  61555. image: {
  61556. source: "./media/characters/braxia/human-front.svg",
  61557. extra: 1574/1501,
  61558. bottom: 37/1611
  61559. },
  61560. form: "human",
  61561. default: true
  61562. },
  61563. },
  61564. [
  61565. {
  61566. name: "Normal",
  61567. height: math.unit(10, "feet"),
  61568. default: true,
  61569. allForms: true
  61570. },
  61571. {
  61572. name: "Macro",
  61573. height: math.unit(1000, "feet"),
  61574. allForms: true
  61575. },
  61576. {
  61577. name: "Mega Macro",
  61578. height: math.unit(100, "miles"),
  61579. allForms: true
  61580. },
  61581. {
  61582. name: "Cosmic",
  61583. height: math.unit(1000000, "lightyears"),
  61584. allForms: true
  61585. },
  61586. {
  61587. name: "ϐѮԆԬӁꭍϞԢ",
  61588. height: math.unit(1000, "multiverses"),
  61589. allForms: true
  61590. },
  61591. ],
  61592. {
  61593. "pistrogre": {
  61594. name: "Pistrogre",
  61595. default: true
  61596. },
  61597. "human": {
  61598. name: "Human",
  61599. },
  61600. }
  61601. ))
  61602. characterMakers.push(() => makeCharacter(
  61603. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61604. {
  61605. front: {
  61606. height: math.unit(6 + 1/12, "feet"),
  61607. weight: math.unit(280, "lb"),
  61608. name: "Front",
  61609. image: {
  61610. source: "./media/characters/kiriga-yato/front.svg",
  61611. extra: 445/394,
  61612. bottom: 11/456
  61613. }
  61614. },
  61615. },
  61616. [
  61617. {
  61618. name: "Descended",
  61619. height: math.unit(3, "feet")
  61620. },
  61621. {
  61622. name: "Average",
  61623. height: math.unit(6 + 1/12, "feet"),
  61624. default: true
  61625. },
  61626. {
  61627. name: "Ascended",
  61628. height: math.unit(9 + 2/12, "feet")
  61629. },
  61630. ]
  61631. ))
  61632. characterMakers.push(() => makeCharacter(
  61633. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61634. {
  61635. front: {
  61636. height: math.unit(6, "feet"),
  61637. weight: math.unit(150, "lb"),
  61638. name: "Front",
  61639. image: {
  61640. source: "./media/characters/kylie/front.svg",
  61641. extra: 1114/1046,
  61642. bottom: 65/1179
  61643. },
  61644. extraAttributes: {
  61645. "hoofSize": {
  61646. name: "Hoof Size",
  61647. power: 2,
  61648. type: "area",
  61649. base: math.unit(0.034, "m^2")
  61650. },
  61651. "footSize": {
  61652. name: "Foot Size",
  61653. power: 2,
  61654. type: "area",
  61655. base: math.unit(0.75, "m^2")
  61656. },
  61657. }
  61658. },
  61659. side: {
  61660. height: math.unit(6, "feet"),
  61661. weight: math.unit(150, "lb"),
  61662. name: "Side",
  61663. image: {
  61664. source: "./media/characters/kylie/side.svg",
  61665. extra: 1178/1110,
  61666. bottom: 21/1199
  61667. },
  61668. extraAttributes: {
  61669. "hoofSize": {
  61670. name: "Hoof Size",
  61671. power: 2,
  61672. type: "area",
  61673. base: math.unit(0.034, "m^2")
  61674. },
  61675. "footSize": {
  61676. name: "Foot Size",
  61677. power: 2,
  61678. type: "area",
  61679. base: math.unit(0.75, "m^2")
  61680. },
  61681. }
  61682. },
  61683. back: {
  61684. height: math.unit(6, "feet"),
  61685. weight: math.unit(150, "lb"),
  61686. name: "Back",
  61687. image: {
  61688. source: "./media/characters/kylie/back.svg",
  61689. extra: 1115/1047,
  61690. bottom: 66/1181
  61691. },
  61692. extraAttributes: {
  61693. "hoofSize": {
  61694. name: "Hoof Size",
  61695. power: 2,
  61696. type: "area",
  61697. base: math.unit(0.034, "m^2")
  61698. },
  61699. "footSize": {
  61700. name: "Foot Size",
  61701. power: 2,
  61702. type: "area",
  61703. base: math.unit(0.75, "m^2")
  61704. },
  61705. }
  61706. },
  61707. head: {
  61708. height: math.unit(1.85, "feet"),
  61709. name: "Head",
  61710. image: {
  61711. source: "./media/characters/kylie/head.svg"
  61712. }
  61713. },
  61714. },
  61715. [
  61716. {
  61717. name: "Normal",
  61718. height: math.unit(90, "meters"),
  61719. default: true
  61720. },
  61721. ]
  61722. ))
  61723. characterMakers.push(() => makeCharacter(
  61724. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61725. {
  61726. front: {
  61727. height: math.unit(245, "feet"),
  61728. weight: math.unit(400000, "lb"),
  61729. name: "Front",
  61730. image: {
  61731. source: "./media/characters/sabado/front.svg",
  61732. extra: 1309/1164,
  61733. bottom: 29/1338
  61734. }
  61735. },
  61736. },
  61737. [
  61738. {
  61739. name: "Normal",
  61740. height: math.unit(245, "feet"),
  61741. default: true
  61742. },
  61743. ]
  61744. ))
  61745. characterMakers.push(() => makeCharacter(
  61746. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61747. {
  61748. shark_front: {
  61749. height: math.unit(2, "meters"),
  61750. weight: math.unit(200, "kg"),
  61751. name: "Front",
  61752. image: {
  61753. source: "./media/characters/zechal/shark-front.svg",
  61754. extra: 969/925,
  61755. bottom: 74/1043
  61756. },
  61757. form: "shark",
  61758. },
  61759. shark_back: {
  61760. height: math.unit(2, "meters"),
  61761. weight: math.unit(200, "kg"),
  61762. name: "Back",
  61763. image: {
  61764. source: "./media/characters/zechal/shark-back.svg",
  61765. extra: 994/949,
  61766. bottom: 176/1170
  61767. },
  61768. form: "shark",
  61769. },
  61770. shark_frontLewd: {
  61771. height: math.unit(2, "meters"),
  61772. weight: math.unit(200, "kg"),
  61773. name: "Front (Lewd)",
  61774. image: {
  61775. source: "./media/characters/zechal/shark-front-lewd.svg",
  61776. extra: 969/925,
  61777. bottom: 74/1043
  61778. },
  61779. form: "shark",
  61780. },
  61781. shark_side: {
  61782. height: math.unit(1.56, "meters"),
  61783. weight: math.unit(200, "kg"),
  61784. name: "Side",
  61785. image: {
  61786. source: "./media/characters/zechal/shark-side.svg"
  61787. },
  61788. form: "shark",
  61789. },
  61790. dragon_front: {
  61791. height: math.unit(2, "meters"),
  61792. weight: math.unit(200, "kg"),
  61793. name: "Front",
  61794. image: {
  61795. source: "./media/characters/zechal/dragon-front.svg",
  61796. extra: 1041/925,
  61797. bottom: 74/1115
  61798. },
  61799. form: "dragon",
  61800. },
  61801. dragon_back: {
  61802. height: math.unit(2, "meters"),
  61803. weight: math.unit(200, "kg"),
  61804. name: "Back",
  61805. image: {
  61806. source: "./media/characters/zechal/dragon-back.svg",
  61807. extra: 1061/949,
  61808. bottom: 176/1237
  61809. },
  61810. form: "dragon",
  61811. },
  61812. dragon_frontLewd: {
  61813. height: math.unit(2, "meters"),
  61814. weight: math.unit(200, "kg"),
  61815. name: "Front (Lewd)",
  61816. image: {
  61817. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61818. extra: 1041/925,
  61819. bottom: 74/1115
  61820. },
  61821. form: "dragon",
  61822. },
  61823. dragon_side: {
  61824. height: math.unit(1.56, "meters"),
  61825. weight: math.unit(200, "kg"),
  61826. name: "Side",
  61827. image: {
  61828. source: "./media/characters/zechal/dragon-side.svg"
  61829. },
  61830. form: "dragon",
  61831. },
  61832. foot: {
  61833. height: math.unit(0.5, "meters"),
  61834. name: "Foot",
  61835. image: {
  61836. source: "./media/characters/zechal/foot.svg"
  61837. }
  61838. },
  61839. sheathFront: {
  61840. height: math.unit(0.45, "meters"),
  61841. name: "Sheath (Front)",
  61842. image: {
  61843. source: "./media/characters/zechal/sheath-front.svg"
  61844. }
  61845. },
  61846. sheathSide: {
  61847. height: math.unit(0.45, "meters"),
  61848. name: "Sheath (Side)",
  61849. image: {
  61850. source: "./media/characters/zechal/sheath-side.svg"
  61851. }
  61852. },
  61853. },
  61854. [
  61855. {
  61856. name: "Incognito",
  61857. height: math.unit(2, "meters"),
  61858. allForms: true
  61859. },
  61860. {
  61861. name: "Small Rampage",
  61862. height: math.unit(25, "meters"),
  61863. allForms: true
  61864. },
  61865. {
  61866. name: "Home Size",
  61867. height: math.unit(250, "meters"),
  61868. allForms: true,
  61869. default: true
  61870. },
  61871. {
  61872. name: "Macro+",
  61873. height: math.unit(700, "meters"),
  61874. allForms: true
  61875. },
  61876. {
  61877. name: "Small Mega",
  61878. height: math.unit(3, "km"),
  61879. allForms: true
  61880. },
  61881. {
  61882. name: "Mega",
  61883. height: math.unit(15, "km"),
  61884. allForms: true
  61885. },
  61886. {
  61887. name: "Giga",
  61888. height: math.unit(300, "km"),
  61889. allForms: true
  61890. },
  61891. {
  61892. name: "Giga+",
  61893. height: math.unit(1750, "km"),
  61894. allForms: true
  61895. },
  61896. {
  61897. name: "Continental",
  61898. height: math.unit(5000, "km"),
  61899. allForms: true
  61900. },
  61901. {
  61902. name: "Terra",
  61903. height: math.unit(20000, "km"),
  61904. allForms: true
  61905. },
  61906. {
  61907. name: "Terra+",
  61908. height: math.unit(300000, "km"),
  61909. allForms: true
  61910. },
  61911. {
  61912. name: "Solar",
  61913. height: math.unit(40000000, "km"),
  61914. allForms: true
  61915. },
  61916. {
  61917. name: "Galactic",
  61918. height: math.unit(810133, "parsecs"),
  61919. allForms: true
  61920. },
  61921. {
  61922. name: "Universal",
  61923. height: math.unit(25, "universes"),
  61924. allForms: true
  61925. },
  61926. ],
  61927. {
  61928. "shark": {
  61929. name: "Shark",
  61930. default: true
  61931. },
  61932. "dragon": {
  61933. name: "Dragon",
  61934. },
  61935. }
  61936. ))
  61937. characterMakers.push(() => makeCharacter(
  61938. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61939. {
  61940. front: {
  61941. height: math.unit(2.2, "meters"),
  61942. weight: math.unit(150, "kg"),
  61943. name: "Front",
  61944. image: {
  61945. source: "./media/characters/sergis/front.svg",
  61946. extra: 1314/1312,
  61947. bottom: 112/1426
  61948. }
  61949. },
  61950. back: {
  61951. height: math.unit(2.2, "meters"),
  61952. weight: math.unit(150, "kg"),
  61953. name: "Back",
  61954. image: {
  61955. source: "./media/characters/sergis/back.svg",
  61956. extra: 1335/1333,
  61957. bottom: 19/1354
  61958. }
  61959. },
  61960. frontLewd: {
  61961. height: math.unit(2.2, "meters"),
  61962. weight: math.unit(150, "kg"),
  61963. name: "Front (Lewd)",
  61964. image: {
  61965. source: "./media/characters/sergis/front-lewd.svg",
  61966. extra: 1314/1312,
  61967. bottom: 112/1426
  61968. }
  61969. },
  61970. frontDressed: {
  61971. height: math.unit(2.2, "meters"),
  61972. weight: math.unit(150, "kg"),
  61973. name: "Front (Dressed)",
  61974. image: {
  61975. source: "./media/characters/sergis/front-dressed.svg",
  61976. extra: 1330/1328,
  61977. bottom: 95/1425
  61978. }
  61979. },
  61980. frontDressedLewd: {
  61981. height: math.unit(2.2, "meters"),
  61982. weight: math.unit(150, "kg"),
  61983. name: "Front (Dressed, Lewd)",
  61984. image: {
  61985. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61986. extra: 1330/1328,
  61987. bottom: 95/1425
  61988. }
  61989. },
  61990. maw: {
  61991. height: math.unit(0.48, "meters"),
  61992. name: "Maw",
  61993. image: {
  61994. source: "./media/characters/sergis/maw.svg"
  61995. }
  61996. },
  61997. sheath: {
  61998. height: math.unit(0.38, "meters"),
  61999. name: "Sheath",
  62000. image: {
  62001. source: "./media/characters/sergis/sheath.svg"
  62002. }
  62003. },
  62004. },
  62005. [
  62006. {
  62007. name: "Incognito Size",
  62008. height: math.unit(2.2, "meters")
  62009. },
  62010. {
  62011. name: "Small Macro",
  62012. height: math.unit(40, "meters")
  62013. },
  62014. {
  62015. name: "Macro",
  62016. height: math.unit(150, "meters")
  62017. },
  62018. {
  62019. name: "Macro+",
  62020. height: math.unit(300, "meters")
  62021. },
  62022. {
  62023. name: "Mega",
  62024. height: math.unit(2.5, "km")
  62025. },
  62026. {
  62027. name: "Mega+",
  62028. height: math.unit(30, "km")
  62029. },
  62030. {
  62031. name: "Home Size",
  62032. height: math.unit(300, "km"),
  62033. default: true
  62034. },
  62035. {
  62036. name: "Giga+",
  62037. height: math.unit(1000, "km")
  62038. },
  62039. {
  62040. name: "Giga++",
  62041. height: math.unit(6000, "km")
  62042. },
  62043. {
  62044. name: "Terra",
  62045. height: math.unit(70000, "km")
  62046. },
  62047. {
  62048. name: "Terra+",
  62049. height: math.unit(200000, "km")
  62050. },
  62051. {
  62052. name: "Galactic",
  62053. height: math.unit(634200, "lightyears")
  62054. },
  62055. ]
  62056. ))
  62057. characterMakers.push(() => makeCharacter(
  62058. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62059. {
  62060. standard: {
  62061. height: math.unit(1 + 5/12, "feet"),
  62062. name: "Standard",
  62063. image: {
  62064. source: "./media/characters/spade/standard.svg",
  62065. extra: 1794/1703,
  62066. bottom: 115/1909
  62067. }
  62068. },
  62069. disguised: {
  62070. height: math.unit(1 + 5/12, "feet"),
  62071. name: "Disguised",
  62072. image: {
  62073. source: "./media/characters/spade/disguised.svg",
  62074. extra: 1794/1700,
  62075. bottom: 98/1892
  62076. }
  62077. },
  62078. },
  62079. [
  62080. {
  62081. name: "Normal",
  62082. height: math.unit(1 + 5/12, "feet"),
  62083. default: true
  62084. },
  62085. ]
  62086. ))
  62087. characterMakers.push(() => makeCharacter(
  62088. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62089. {
  62090. frontNsfw: {
  62091. height: math.unit(5, "meters"),
  62092. weight: math.unit(2000, "kg"),
  62093. preyCapacity: math.unit(5, "people"),
  62094. name: "Front (NSFW)",
  62095. image: {
  62096. source: "./media/characters/zeanlain/front-nsfw.svg",
  62097. extra: 1087/938,
  62098. bottom: 93/1180
  62099. },
  62100. extraAttributes: {
  62101. "wingspan": {
  62102. name: "Wingspan",
  62103. power: 1,
  62104. type: "length",
  62105. base: math.unit(10, "meters")
  62106. },
  62107. "footSize": {
  62108. name: "Foot Size",
  62109. power: 1,
  62110. type: "length",
  62111. base: math.unit(0.68, "meters")
  62112. },
  62113. "cockLength": {
  62114. name: "Cock Length",
  62115. power: 1,
  62116. type: "length",
  62117. base: math.unit(1.69, "meters")
  62118. },
  62119. "ballVolume": {
  62120. name: "Ball Volume",
  62121. power: 3,
  62122. type: "volume",
  62123. base: math.unit(0.028, "m^3")
  62124. },
  62125. }
  62126. },
  62127. front: {
  62128. height: math.unit(5, "meters"),
  62129. weight: math.unit(2000, "kg"),
  62130. preyCapacity: math.unit(3, "people"),
  62131. name: "Front",
  62132. image: {
  62133. source: "./media/characters/zeanlain/front.svg",
  62134. extra: 1087/938,
  62135. bottom: 93/1180
  62136. },
  62137. extraAttributes: {
  62138. "wingspan": {
  62139. name: "Wingspan",
  62140. power: 1,
  62141. type: "length",
  62142. base: math.unit(10, "meters")
  62143. },
  62144. "footSize": {
  62145. name: "Foot Size",
  62146. power: 1,
  62147. type: "length",
  62148. base: math.unit(0.68, "meters")
  62149. },
  62150. }
  62151. },
  62152. },
  62153. [
  62154. {
  62155. name: "Normal",
  62156. height: math.unit(5, "meters"),
  62157. default: true
  62158. },
  62159. ]
  62160. ))
  62161. characterMakers.push(() => makeCharacter(
  62162. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62163. {
  62164. front: {
  62165. height: math.unit(10, "meters"),
  62166. weight: math.unit(250000, "kg"),
  62167. name: "Front",
  62168. image: {
  62169. source: "./media/characters/airamis/front.svg",
  62170. extra: 865/835,
  62171. bottom: 13/878
  62172. }
  62173. },
  62174. },
  62175. [
  62176. {
  62177. name: "Normal",
  62178. height: math.unit(10, "meters"),
  62179. default: true
  62180. },
  62181. ]
  62182. ))
  62183. characterMakers.push(() => makeCharacter(
  62184. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62185. {
  62186. front: {
  62187. height: math.unit(3 + 3/12, "feet"),
  62188. weight: math.unit(75, "lb"),
  62189. name: "Front",
  62190. image: {
  62191. source: "./media/characters/corra-tourmaline/front.svg",
  62192. extra: 1037/864,
  62193. bottom: 39/1076
  62194. }
  62195. },
  62196. back: {
  62197. height: math.unit(3 + 3/12, "feet"),
  62198. weight: math.unit(75, "lb"),
  62199. name: "Back",
  62200. image: {
  62201. source: "./media/characters/corra-tourmaline/back.svg",
  62202. extra: 1022/849,
  62203. bottom: 26/1048
  62204. }
  62205. },
  62206. dressed: {
  62207. height: math.unit(3 + 3/12, "feet"),
  62208. weight: math.unit(75, "lb"),
  62209. name: "Dressed",
  62210. image: {
  62211. source: "./media/characters/corra-tourmaline/dressed.svg",
  62212. extra: 1037/864,
  62213. bottom: 39/1076
  62214. }
  62215. },
  62216. beans: {
  62217. height: math.unit(0.37, "feet"),
  62218. name: "Beans",
  62219. image: {
  62220. source: "./media/characters/corra-tourmaline/beans.svg"
  62221. }
  62222. },
  62223. },
  62224. [
  62225. {
  62226. name: "Normal",
  62227. height: math.unit(3 + 3/12, "feet"),
  62228. default: true
  62229. },
  62230. {
  62231. name: "Macro",
  62232. height: math.unit(32, "feet")
  62233. },
  62234. ]
  62235. ))
  62236. characterMakers.push(() => makeCharacter(
  62237. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62238. {
  62239. front: {
  62240. height: math.unit(6 + 2/12, "feet"),
  62241. weight: math.unit(203, "lb"),
  62242. name: "Front",
  62243. image: {
  62244. source: "./media/characters/maki-kawa/front.svg",
  62245. extra: 950/890,
  62246. bottom: 62/1012
  62247. }
  62248. },
  62249. back: {
  62250. height: math.unit(6 + 2/12, "feet"),
  62251. weight: math.unit(203, "lb"),
  62252. name: "Back",
  62253. image: {
  62254. source: "./media/characters/maki-kawa/back.svg",
  62255. extra: 953/878,
  62256. bottom: 49/1002
  62257. }
  62258. },
  62259. frontBarista: {
  62260. height: math.unit(6 + 2/12, "feet"),
  62261. weight: math.unit(203, "lb"),
  62262. name: "Front (Barista)",
  62263. image: {
  62264. source: "./media/characters/maki-kawa/front-barista.svg",
  62265. extra: 943/883,
  62266. bottom: 69/1012
  62267. }
  62268. },
  62269. backBarista: {
  62270. height: math.unit(6 + 2/12, "feet"),
  62271. weight: math.unit(203, "lb"),
  62272. name: "Back (Barista)",
  62273. image: {
  62274. source: "./media/characters/maki-kawa/back-barista.svg",
  62275. extra: 953/878,
  62276. bottom: 49/1002
  62277. }
  62278. },
  62279. frontWrestler: {
  62280. height: math.unit(6 + 2/12, "feet"),
  62281. weight: math.unit(203, "lb"),
  62282. name: "Front (Wrestler)",
  62283. image: {
  62284. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62285. extra: 950/890,
  62286. bottom: 62/1012
  62287. }
  62288. },
  62289. backWrestler: {
  62290. height: math.unit(6 + 2/12, "feet"),
  62291. weight: math.unit(203, "lb"),
  62292. name: "Back (Wrestler)",
  62293. image: {
  62294. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62295. extra: 953/878,
  62296. bottom: 49/1002
  62297. }
  62298. },
  62299. headFront: {
  62300. height: math.unit(1.64, "feet"),
  62301. name: "Head (Front)",
  62302. image: {
  62303. source: "./media/characters/maki-kawa/head-front.svg"
  62304. }
  62305. },
  62306. headSide: {
  62307. height: math.unit(1.59, "feet"),
  62308. name: "Head (Side)",
  62309. image: {
  62310. source: "./media/characters/maki-kawa/head-side.svg"
  62311. }
  62312. },
  62313. paw: {
  62314. height: math.unit(0.9, "feet"),
  62315. name: "Paw",
  62316. image: {
  62317. source: "./media/characters/maki-kawa/paw.svg"
  62318. }
  62319. },
  62320. },
  62321. [
  62322. {
  62323. name: "Normal",
  62324. height: math.unit(6 + 2/12, "feet"),
  62325. default: true
  62326. },
  62327. {
  62328. name: "Macro",
  62329. height: math.unit(617, "feet")
  62330. },
  62331. ]
  62332. ))
  62333. characterMakers.push(() => makeCharacter(
  62334. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62335. {
  62336. front: {
  62337. height: math.unit(10, "feet"),
  62338. weight: math.unit(1500, "lb"),
  62339. name: "Front",
  62340. image: {
  62341. source: "./media/characters/lennox/front.svg",
  62342. extra: 1623/1496,
  62343. bottom: 18/1641
  62344. }
  62345. },
  62346. back: {
  62347. height: math.unit(10, "feet"),
  62348. weight: math.unit(1500, "lb"),
  62349. name: "Back",
  62350. image: {
  62351. source: "./media/characters/lennox/back.svg",
  62352. extra: 1641/1481,
  62353. bottom: 13/1654
  62354. }
  62355. },
  62356. maw: {
  62357. height: math.unit(2.94, "feet"),
  62358. name: "Maw",
  62359. image: {
  62360. source: "./media/characters/lennox/maw.svg"
  62361. }
  62362. },
  62363. },
  62364. [
  62365. {
  62366. name: "Micro",
  62367. height: math.unit(1, "inch")
  62368. },
  62369. {
  62370. name: "Normal",
  62371. height: math.unit(10, "feet"),
  62372. default: true
  62373. },
  62374. {
  62375. name: "Macro",
  62376. height: math.unit(200, "feet")
  62377. },
  62378. ]
  62379. ))
  62380. characterMakers.push(() => makeCharacter(
  62381. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62382. {
  62383. frontDressed: {
  62384. height: math.unit(15 + 7/12, "feet"),
  62385. weight: math.unit(5000, "lb"),
  62386. name: "Front (Dressed)",
  62387. image: {
  62388. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62389. extra: 1136/1023,
  62390. bottom: 51/1187
  62391. }
  62392. },
  62393. backDressed: {
  62394. height: math.unit(15 + 7/12, "feet"),
  62395. weight: math.unit(5000, "lb"),
  62396. name: "Back (Dressed)",
  62397. image: {
  62398. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62399. extra: 2359/2143,
  62400. bottom: 103/2462
  62401. }
  62402. },
  62403. front: {
  62404. height: math.unit(15 + 7/12, "feet"),
  62405. weight: math.unit(5000, "lb"),
  62406. name: "Front",
  62407. image: {
  62408. source: "./media/characters/vyse-iron-thunder/front.svg",
  62409. extra: 1136/1023,
  62410. bottom: 51/1187
  62411. }
  62412. },
  62413. hand: {
  62414. height: math.unit(2.36, "feet"),
  62415. name: "Hand",
  62416. image: {
  62417. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62418. }
  62419. },
  62420. foot: {
  62421. height: math.unit(1.72, "feet"),
  62422. name: "Foot",
  62423. image: {
  62424. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62425. }
  62426. },
  62427. mouth: {
  62428. height: math.unit(2, "feet"),
  62429. name: "Mouth",
  62430. image: {
  62431. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62432. }
  62433. },
  62434. eye: {
  62435. height: math.unit(0.58, "feet"),
  62436. name: "Eye",
  62437. image: {
  62438. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62439. }
  62440. },
  62441. },
  62442. [
  62443. {
  62444. name: "Normal",
  62445. height: math.unit(15 + 7/12, "feet"),
  62446. default: true
  62447. },
  62448. {
  62449. name: "Macro",
  62450. height: math.unit(157, "feet")
  62451. },
  62452. {
  62453. name: "Macro+",
  62454. height: math.unit(1570, "feet")
  62455. },
  62456. {
  62457. name: "Macro++",
  62458. height: math.unit(15700, "feet")
  62459. },
  62460. {
  62461. name: "Macro+++",
  62462. height: math.unit(157000, "feet")
  62463. },
  62464. {
  62465. name: "Macro++++",
  62466. height: math.unit(1570000, "feet")
  62467. },
  62468. ]
  62469. ))
  62470. characterMakers.push(() => makeCharacter(
  62471. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62472. {
  62473. side: {
  62474. height: math.unit(6, "feet"),
  62475. weight: math.unit(115, "lb"),
  62476. name: "Side",
  62477. image: {
  62478. source: "./media/characters/moonbeam/side.svg",
  62479. extra: 839/485,
  62480. bottom: 60/899
  62481. }
  62482. },
  62483. },
  62484. [
  62485. {
  62486. name: "Normal",
  62487. height: math.unit(6, "feet"),
  62488. default: true
  62489. },
  62490. ]
  62491. ))
  62492. characterMakers.push(() => makeCharacter(
  62493. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62494. {
  62495. front: {
  62496. height: math.unit(3500, "miles"),
  62497. weight: math.unit(1659, "petatonnes"),
  62498. name: "Front",
  62499. image: {
  62500. source: "./media/characters/baltica/front.svg",
  62501. extra: 429/428,
  62502. bottom: 41/470
  62503. }
  62504. },
  62505. back: {
  62506. height: math.unit(3500, "miles"),
  62507. weight: math.unit(1659, "petatonnes"),
  62508. name: "Back",
  62509. image: {
  62510. source: "./media/characters/baltica/back.svg",
  62511. extra: 452/451,
  62512. bottom: 8/460
  62513. }
  62514. },
  62515. },
  62516. [
  62517. {
  62518. name: "Gigamacro",
  62519. height: math.unit(3500, "miles"),
  62520. default: true
  62521. },
  62522. ]
  62523. ))
  62524. characterMakers.push(() => makeCharacter(
  62525. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62526. {
  62527. front: {
  62528. height: math.unit(6 + 10/12, "feet"),
  62529. weight: math.unit(200, "lb"),
  62530. name: "Front",
  62531. image: {
  62532. source: "./media/characters/shadow-wolf/front.svg",
  62533. extra: 1931/1760,
  62534. bottom: 88/2019
  62535. }
  62536. },
  62537. },
  62538. [
  62539. {
  62540. name: "Normal",
  62541. height: math.unit(6 + 10/12, "feet"),
  62542. default: true
  62543. },
  62544. ]
  62545. ))
  62546. characterMakers.push(() => makeCharacter(
  62547. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62548. {
  62549. front: {
  62550. height: math.unit(5 + 10/12, "feet"),
  62551. name: "Front",
  62552. image: {
  62553. source: "./media/characters/quincy-praying-mantis/front.svg",
  62554. extra: 1055/891,
  62555. bottom: 92/1147
  62556. }
  62557. },
  62558. soles: {
  62559. height: math.unit(0.85, "feet"),
  62560. name: "Soles",
  62561. image: {
  62562. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62563. extra: 429/324,
  62564. bottom: 89/518
  62565. },
  62566. extraAttributes: {
  62567. "shoeSize": {
  62568. name: "Shoe Size",
  62569. power: 1,
  62570. type: "length",
  62571. base: math.unit(23, "ShoeSizeMensUS"),
  62572. defaultUnit: "ShoeSizeMensUS"
  62573. },
  62574. }
  62575. },
  62576. foot: {
  62577. height: math.unit(0.72, "feet"),
  62578. name: "Foot",
  62579. image: {
  62580. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62581. extra: 349/349,
  62582. bottom: 76/425
  62583. }
  62584. },
  62585. },
  62586. [
  62587. {
  62588. name: "Normal",
  62589. height: math.unit(5 + 10/12, "feet"),
  62590. default: true
  62591. },
  62592. ]
  62593. ))
  62594. characterMakers.push(() => makeCharacter(
  62595. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62596. {
  62597. front: {
  62598. height: math.unit(6, "feet"),
  62599. name: "Front",
  62600. image: {
  62601. source: "./media/characters/christopher-redwood/front.svg",
  62602. extra: 1402/1341,
  62603. bottom: 23/1425
  62604. }
  62605. },
  62606. back: {
  62607. height: math.unit(6, "feet"),
  62608. name: "Back",
  62609. image: {
  62610. source: "./media/characters/christopher-redwood/back.svg",
  62611. extra: 1406/1345,
  62612. bottom: 36/1442
  62613. }
  62614. },
  62615. head: {
  62616. height: math.unit(1.685, "feet"),
  62617. name: "Head",
  62618. image: {
  62619. source: "./media/characters/christopher-redwood/head.svg"
  62620. }
  62621. },
  62622. },
  62623. [
  62624. {
  62625. name: "Normal",
  62626. height: math.unit(6, "feet"),
  62627. default: true
  62628. },
  62629. ]
  62630. ))
  62631. characterMakers.push(() => makeCharacter(
  62632. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62633. {
  62634. front: {
  62635. height: math.unit(1.9, "meters"),
  62636. weight: math.unit(140, "lb"),
  62637. name: "Front",
  62638. image: {
  62639. source: "./media/characters/kara-fox/front.svg",
  62640. extra: 766/711,
  62641. bottom: 41/807
  62642. }
  62643. },
  62644. back: {
  62645. height: math.unit(1.9, "meters"),
  62646. weight: math.unit(140, "lb"),
  62647. name: "Back",
  62648. image: {
  62649. source: "./media/characters/kara-fox/back.svg",
  62650. extra: 766/596,
  62651. bottom: 29/795
  62652. }
  62653. },
  62654. maw: {
  62655. height: math.unit(0.78, "feet"),
  62656. name: "Maw",
  62657. image: {
  62658. source: "./media/characters/kara-fox/maw.svg"
  62659. }
  62660. },
  62661. pawpads: {
  62662. height: math.unit(0.96, "feet"),
  62663. name: "Pawpads",
  62664. image: {
  62665. source: "./media/characters/kara-fox/pawpads.svg"
  62666. }
  62667. },
  62668. },
  62669. [
  62670. {
  62671. name: "Normal",
  62672. height: math.unit(1.9, "meters"),
  62673. default: true
  62674. },
  62675. {
  62676. name: "Giantess",
  62677. height: math.unit(80, "meters")
  62678. },
  62679. ]
  62680. ))
  62681. characterMakers.push(() => makeCharacter(
  62682. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62683. {
  62684. front: {
  62685. height: math.unit(12, "feet"),
  62686. name: "Front",
  62687. image: {
  62688. source: "./media/characters/naomi-espeon/front.svg",
  62689. extra: 892/797,
  62690. bottom: 5/897
  62691. }
  62692. },
  62693. back: {
  62694. height: math.unit(12, "feet"),
  62695. name: "Back",
  62696. image: {
  62697. source: "./media/characters/naomi-espeon/back.svg",
  62698. extra: 890/785,
  62699. bottom: 12/902
  62700. }
  62701. },
  62702. },
  62703. [
  62704. {
  62705. name: "Normal",
  62706. height: math.unit(12, "feet"),
  62707. default: true
  62708. },
  62709. ]
  62710. ))
  62711. characterMakers.push(() => makeCharacter(
  62712. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62713. {
  62714. anthro_front: {
  62715. height: math.unit(8, "feet"),
  62716. weight: math.unit(625, "lb"),
  62717. name: "Front",
  62718. image: {
  62719. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62720. extra: 638/574,
  62721. bottom: 73/711
  62722. },
  62723. form: "anthro",
  62724. default: true
  62725. },
  62726. anthro_back: {
  62727. height: math.unit(8, "feet"),
  62728. weight: math.unit(625, "lb"),
  62729. name: "Back",
  62730. image: {
  62731. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62732. extra: 674/614,
  62733. bottom: 7/681
  62734. },
  62735. form: "anthro",
  62736. },
  62737. taur_side: {
  62738. height: math.unit(16, "feet"),
  62739. weight: math.unit(4.5, "tons"),
  62740. name: "Side",
  62741. image: {
  62742. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62743. extra: 704/646,
  62744. bottom: 132/836
  62745. },
  62746. form: "taur",
  62747. default: true
  62748. },
  62749. },
  62750. [
  62751. {
  62752. name: "Normal",
  62753. height: math.unit(8, "feet"),
  62754. default: true,
  62755. form: "anthro"
  62756. },
  62757. {
  62758. name: "Normal",
  62759. height: math.unit(16, "feet"),
  62760. default: true,
  62761. form: "taur"
  62762. },
  62763. ],
  62764. {
  62765. "anthro": {
  62766. name: "Anthro",
  62767. default: true
  62768. },
  62769. "taur": {
  62770. name: "Taur",
  62771. },
  62772. }
  62773. ))
  62774. characterMakers.push(() => makeCharacter(
  62775. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  62776. {
  62777. front: {
  62778. height: math.unit(190, "cm"),
  62779. weight: math.unit(110, "kg"),
  62780. name: "Front",
  62781. image: {
  62782. source: "./media/characters/amelie/front.svg",
  62783. extra: 530/442,
  62784. bottom: 35/565
  62785. }
  62786. },
  62787. },
  62788. [
  62789. {
  62790. name: "Normal",
  62791. height: math.unit(190, "cm"),
  62792. default: true
  62793. },
  62794. ]
  62795. ))
  62796. characterMakers.push(() => makeCharacter(
  62797. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  62798. {
  62799. front: {
  62800. height: math.unit(21, "feet"),
  62801. weight: math.unit(30000, "lb"),
  62802. name: "Front",
  62803. image: {
  62804. source: "./media/characters/valence/front.svg",
  62805. extra: 1430/1306,
  62806. bottom: 51/1481
  62807. }
  62808. },
  62809. },
  62810. [
  62811. {
  62812. name: "Normal",
  62813. height: math.unit(21, "feet"),
  62814. default: true
  62815. },
  62816. ]
  62817. ))
  62818. characterMakers.push(() => makeCharacter(
  62819. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  62820. {
  62821. front: {
  62822. height: math.unit(5 + 9/12, "feet"),
  62823. weight: math.unit(170, "lb"),
  62824. name: "Front",
  62825. image: {
  62826. source: "./media/characters/aurora-adkins/front.svg",
  62827. extra: 1141/1089,
  62828. bottom: 41/1182
  62829. }
  62830. },
  62831. },
  62832. [
  62833. {
  62834. name: "Tiny",
  62835. height: math.unit(7, "mm")
  62836. },
  62837. {
  62838. name: "Small",
  62839. height: math.unit(3.4, "inches")
  62840. },
  62841. {
  62842. name: "Normal",
  62843. height: math.unit(5 + 9/12, "feet"),
  62844. default: true
  62845. },
  62846. {
  62847. name: "Big",
  62848. height: math.unit(31, "feet")
  62849. },
  62850. {
  62851. name: "Giant",
  62852. height: math.unit(300, "feet")
  62853. },
  62854. ]
  62855. ))
  62856. characterMakers.push(() => makeCharacter(
  62857. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  62858. {
  62859. front: {
  62860. height: math.unit(5 + 6/12, "feet"),
  62861. weight: math.unit(210, "lb"),
  62862. name: "Front",
  62863. image: {
  62864. source: "./media/characters/cyber/front.svg",
  62865. extra: 1968/1798,
  62866. bottom: 10/1978
  62867. },
  62868. extraAttributes: {
  62869. "shoeSize": {
  62870. name: "Shoe Size",
  62871. power: 1,
  62872. type: "length",
  62873. base: math.unit(30, "ShoeSizeMensUS")
  62874. },
  62875. }
  62876. },
  62877. },
  62878. [
  62879. {
  62880. name: "Normal",
  62881. height: math.unit(5 + 6/12, "feet"),
  62882. default: true
  62883. },
  62884. ]
  62885. ))
  62886. characterMakers.push(() => makeCharacter(
  62887. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  62888. {
  62889. front: {
  62890. height: math.unit(6 + 6/12, "feet"),
  62891. weight: math.unit(140, "lb"),
  62892. name: "Front",
  62893. image: {
  62894. source: "./media/characters/sapphire-wairimea/front.svg",
  62895. extra: 475/458,
  62896. bottom: 14/489
  62897. }
  62898. },
  62899. },
  62900. [
  62901. {
  62902. name: "Normal",
  62903. height: math.unit(6 + 6/12, "feet")
  62904. },
  62905. {
  62906. name: "Macro",
  62907. height: math.unit(132, "feet"),
  62908. default: true
  62909. },
  62910. ]
  62911. ))
  62912. characterMakers.push(() => makeCharacter(
  62913. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  62914. {
  62915. front: {
  62916. height: math.unit(1.6, "meters"),
  62917. weight: math.unit(100, "lb"),
  62918. name: "Front",
  62919. image: {
  62920. source: "./media/characters/cirkazi/front.svg",
  62921. extra: 489/477,
  62922. bottom: 0/489
  62923. }
  62924. },
  62925. },
  62926. [
  62927. {
  62928. name: "Normal",
  62929. height: math.unit(1.6, "meters")
  62930. },
  62931. {
  62932. name: "Macro",
  62933. height: math.unit(800, "feet"),
  62934. default: true
  62935. },
  62936. ]
  62937. ))
  62938. characterMakers.push(() => makeCharacter(
  62939. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  62940. {
  62941. front: {
  62942. height: math.unit(5 + 10/12, "feet"),
  62943. weight: math.unit(145, "lb"),
  62944. name: "Front",
  62945. image: {
  62946. source: "./media/characters/corrin-cavelli/front.svg",
  62947. extra: 483/464,
  62948. bottom: 6/489
  62949. }
  62950. },
  62951. },
  62952. [
  62953. {
  62954. name: "Human",
  62955. height: math.unit(5 + 10/12, "feet")
  62956. },
  62957. {
  62958. name: "Giant",
  62959. height: math.unit(210, "feet"),
  62960. default: true
  62961. },
  62962. ]
  62963. ))
  62964. characterMakers.push(() => makeCharacter(
  62965. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  62966. {
  62967. back: {
  62968. height: math.unit(5 + 6/12, "feet"),
  62969. weight: math.unit(115, "lb"),
  62970. name: "Back",
  62971. image: {
  62972. source: "./media/characters/lori-lopez/back.svg",
  62973. extra: 483/474,
  62974. bottom: 6/489
  62975. }
  62976. },
  62977. },
  62978. [
  62979. {
  62980. name: "Human",
  62981. height: math.unit(5 + 6/12, "feet")
  62982. },
  62983. {
  62984. name: "Macro",
  62985. height: math.unit(198, "feet"),
  62986. default: true
  62987. },
  62988. ]
  62989. ))
  62990. characterMakers.push(() => makeCharacter(
  62991. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  62992. {
  62993. front: {
  62994. height: math.unit(6, "feet"),
  62995. weight: math.unit(220, "lb"),
  62996. name: "Front",
  62997. image: {
  62998. source: "./media/characters/sylvia-beauregard/front.svg",
  62999. extra: 483/479,
  63000. bottom: 6/489
  63001. }
  63002. },
  63003. },
  63004. [
  63005. {
  63006. name: "Macro",
  63007. height: math.unit(2071, "feet"),
  63008. default: true
  63009. },
  63010. ]
  63011. ))
  63012. characterMakers.push(() => makeCharacter(
  63013. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63014. {
  63015. back: {
  63016. height: math.unit(5 + 6/12, "feet"),
  63017. weight: math.unit(160, "lb"),
  63018. name: "Back",
  63019. image: {
  63020. source: "./media/characters/akiko-takahashi/back.svg",
  63021. extra: 459/454,
  63022. bottom: 27/486
  63023. }
  63024. },
  63025. },
  63026. [
  63027. {
  63028. name: "Human",
  63029. height: math.unit(5 + 6/12, "feet")
  63030. },
  63031. {
  63032. name: "Macro",
  63033. height: math.unit(198, "feet"),
  63034. default: true
  63035. },
  63036. {
  63037. name: "Megamacro",
  63038. height: math.unit(7128, "feet")
  63039. },
  63040. ]
  63041. ))
  63042. characterMakers.push(() => makeCharacter(
  63043. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63044. {
  63045. front: {
  63046. height: math.unit(6, "feet"),
  63047. weight: math.unit(140, "lb"),
  63048. name: "Front",
  63049. image: {
  63050. source: "./media/characters/velvet-garza/front.svg",
  63051. extra: 480/462,
  63052. bottom: 7/487
  63053. }
  63054. },
  63055. },
  63056. [
  63057. {
  63058. name: "Macro",
  63059. height: math.unit(37, "feet"),
  63060. default: true
  63061. },
  63062. ]
  63063. ))
  63064. characterMakers.push(() => makeCharacter(
  63065. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63066. {
  63067. front: {
  63068. height: math.unit(7 + 6/12, "feet"),
  63069. weight: math.unit(400, "lb"),
  63070. name: "Front",
  63071. image: {
  63072. source: "./media/characters/gaia/front.svg",
  63073. extra: 474/463,
  63074. bottom: 13/487
  63075. }
  63076. },
  63077. },
  63078. [
  63079. {
  63080. name: "MiniMacro",
  63081. height: math.unit(7 + 6/12, "feet")
  63082. },
  63083. {
  63084. name: "GigaMacro",
  63085. height: math.unit(14500, "feet"),
  63086. default: true
  63087. },
  63088. ]
  63089. ))
  63090. characterMakers.push(() => makeCharacter(
  63091. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63092. {
  63093. front: {
  63094. height: math.unit(6, "feet"),
  63095. weight: math.unit(150, "lb"),
  63096. name: "Front",
  63097. image: {
  63098. source: "./media/characters/tim/front.svg",
  63099. extra: 1878/1743,
  63100. bottom: 9/1887
  63101. }
  63102. },
  63103. frontDressed: {
  63104. height: math.unit(6, "feet"),
  63105. weight: math.unit(150, "lb"),
  63106. name: "Front (Dressed)",
  63107. image: {
  63108. source: "./media/characters/tim/front-dressed.svg",
  63109. extra: 1765/1485,
  63110. bottom: 48/1813
  63111. }
  63112. },
  63113. backDressed: {
  63114. height: math.unit(6, "feet"),
  63115. weight: math.unit(150, "lb"),
  63116. name: "Back (Dressed)",
  63117. image: {
  63118. source: "./media/characters/tim/back-dressed.svg",
  63119. extra: 1750/1465,
  63120. bottom: 25/1775
  63121. }
  63122. },
  63123. dick: {
  63124. height: math.unit(1.5, "feet"),
  63125. weight: math.unit(6, "lb"),
  63126. name: "Dick",
  63127. image: {
  63128. source: "./media/characters/tim/dick.svg"
  63129. }
  63130. },
  63131. hand: {
  63132. height: math.unit(0.522, "feet"),
  63133. name: "Hand",
  63134. image: {
  63135. source: "./media/characters/tim/hand.svg"
  63136. }
  63137. },
  63138. palm: {
  63139. height: math.unit(0.48, "feet"),
  63140. name: "Palm",
  63141. image: {
  63142. source: "./media/characters/tim/palm.svg"
  63143. }
  63144. },
  63145. paw: {
  63146. height: math.unit(0.9, "feet"),
  63147. name: "Paw",
  63148. image: {
  63149. source: "./media/characters/tim/paw.svg"
  63150. }
  63151. },
  63152. sole: {
  63153. height: math.unit(0.88, "feet"),
  63154. name: "Sole",
  63155. image: {
  63156. source: "./media/characters/tim/sole.svg"
  63157. }
  63158. },
  63159. },
  63160. [
  63161. {
  63162. name: "Macro",
  63163. height: math.unit(1000, "feet")
  63164. },
  63165. {
  63166. name: "Megamacro",
  63167. height: math.unit(10000, "feet"),
  63168. default: true
  63169. },
  63170. {
  63171. name: "Megamacro+",
  63172. height: math.unit(50000, "feet")
  63173. },
  63174. {
  63175. name: "Gigamacro",
  63176. height: math.unit(150000, "km")
  63177. },
  63178. ]
  63179. ))
  63180. characterMakers.push(() => makeCharacter(
  63181. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63182. {
  63183. front: {
  63184. height: math.unit(5 + 8/12, "feet"),
  63185. weight: math.unit(170, "lb"),
  63186. name: "Front",
  63187. image: {
  63188. source: "./media/characters/abel-delreoux/front.svg",
  63189. extra: 1615/1500,
  63190. bottom: 82/1697
  63191. }
  63192. },
  63193. back: {
  63194. height: math.unit(5 + 8/12, "feet"),
  63195. weight: math.unit(170, "lb"),
  63196. name: "Back",
  63197. image: {
  63198. source: "./media/characters/abel-delreoux/back.svg",
  63199. extra: 1644/1534,
  63200. bottom: 24/1668
  63201. }
  63202. },
  63203. casual: {
  63204. height: math.unit(5 + 8/12, "feet"),
  63205. weight: math.unit(170, "lb"),
  63206. name: "Casual",
  63207. image: {
  63208. source: "./media/characters/abel-delreoux/casual.svg",
  63209. extra: 1716/1598,
  63210. bottom: 29/1745
  63211. }
  63212. },
  63213. sleepy: {
  63214. height: math.unit(5 + 8/12, "feet"),
  63215. weight: math.unit(170, "lb"),
  63216. name: "Sleepy",
  63217. image: {
  63218. source: "./media/characters/abel-delreoux/sleepy.svg",
  63219. extra: 1649/1573,
  63220. bottom: 22/1671
  63221. }
  63222. },
  63223. fem: {
  63224. height: math.unit(5 + 8/12, "feet"),
  63225. weight: math.unit(170, "lb"),
  63226. name: "Fem",
  63227. image: {
  63228. source: "./media/characters/abel-delreoux/fem.svg",
  63229. extra: 1680/1564,
  63230. bottom: 17/1697
  63231. }
  63232. },
  63233. hand: {
  63234. height: math.unit(0.78, "feet"),
  63235. name: "Hand",
  63236. image: {
  63237. source: "./media/characters/abel-delreoux/hand.svg"
  63238. }
  63239. },
  63240. paw: {
  63241. height: math.unit(0.78, "feet"),
  63242. name: "Paw",
  63243. image: {
  63244. source: "./media/characters/abel-delreoux/paw.svg"
  63245. }
  63246. },
  63247. },
  63248. [
  63249. {
  63250. name: "Normal",
  63251. height: math.unit(5 + 8/12, "feet"),
  63252. default: true
  63253. },
  63254. ]
  63255. ))
  63256. characterMakers.push(() => makeCharacter(
  63257. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63258. {
  63259. front: {
  63260. height: math.unit(6, "feet"),
  63261. weight: math.unit(159, "lb"),
  63262. name: "Front",
  63263. image: {
  63264. source: "./media/characters/meus/front.svg",
  63265. extra: 938/843,
  63266. bottom: 37/975
  63267. }
  63268. },
  63269. back: {
  63270. height: math.unit(6, "feet"),
  63271. weight: math.unit(159, "lb"),
  63272. name: "Back",
  63273. image: {
  63274. source: "./media/characters/meus/back.svg",
  63275. extra: 967/873,
  63276. bottom: 12/979
  63277. }
  63278. },
  63279. },
  63280. [
  63281. {
  63282. name: "Micro",
  63283. height: math.unit(2, "inches")
  63284. },
  63285. {
  63286. name: "Mini",
  63287. height: math.unit(6, "inches")
  63288. },
  63289. {
  63290. name: "Normal",
  63291. height: math.unit(6, "feet"),
  63292. default: true
  63293. },
  63294. {
  63295. name: "Macro",
  63296. height: math.unit(84, "feet")
  63297. },
  63298. ]
  63299. ))
  63300. characterMakers.push(() => makeCharacter(
  63301. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63302. {
  63303. front: {
  63304. height: math.unit(60, "cm"),
  63305. weight: math.unit(18, "kg"),
  63306. name: "Front",
  63307. image: {
  63308. source: "./media/characters/yamato/front.svg",
  63309. extra: 733/688,
  63310. bottom: 29/762
  63311. }
  63312. },
  63313. },
  63314. [
  63315. {
  63316. name: "Micro",
  63317. height: math.unit(6, "cm")
  63318. },
  63319. {
  63320. name: "Normal",
  63321. height: math.unit(60, "cm"),
  63322. default: true
  63323. },
  63324. ]
  63325. ))
  63326. characterMakers.push(() => makeCharacter(
  63327. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63328. {
  63329. front: {
  63330. height: math.unit(9, "feet"),
  63331. weight: math.unit(518, "lb"),
  63332. name: "Front",
  63333. image: {
  63334. source: "./media/characters/barus/front.svg",
  63335. extra: 1877/1795,
  63336. bottom: 55/1932
  63337. }
  63338. },
  63339. },
  63340. [
  63341. {
  63342. name: "Base Height",
  63343. height: math.unit(9, "feet"),
  63344. default: true
  63345. },
  63346. {
  63347. name: "Large",
  63348. height: math.unit(18, "feet")
  63349. },
  63350. {
  63351. name: "Giant",
  63352. height: math.unit(100, "feet")
  63353. },
  63354. {
  63355. name: "Huge",
  63356. height: math.unit(500, "feet")
  63357. },
  63358. {
  63359. name: "Enormous",
  63360. height: math.unit(300, "meters")
  63361. },
  63362. {
  63363. name: "Deity Among Man",
  63364. height: math.unit(3000, "meters")
  63365. },
  63366. ]
  63367. ))
  63368. characterMakers.push(() => makeCharacter(
  63369. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63370. {
  63371. front: {
  63372. height: math.unit(1.7, "meters"),
  63373. name: "Front",
  63374. image: {
  63375. source: "./media/characters/yari/front.svg",
  63376. extra: 1210/1125,
  63377. bottom: 283/1493
  63378. }
  63379. },
  63380. back: {
  63381. height: math.unit(1.7, "meters"),
  63382. name: "Back",
  63383. image: {
  63384. source: "./media/characters/yari/back.svg",
  63385. extra: 1240/1195,
  63386. bottom: 180/1420
  63387. }
  63388. },
  63389. head: {
  63390. height: math.unit(1.26, "feet"),
  63391. name: "Head",
  63392. image: {
  63393. source: "./media/characters/yari/head.svg"
  63394. }
  63395. },
  63396. },
  63397. [
  63398. {
  63399. name: "Nano",
  63400. height: math.unit(0.5, "mm")
  63401. },
  63402. {
  63403. name: "Micro",
  63404. height: math.unit(3, "inches")
  63405. },
  63406. {
  63407. name: "Short",
  63408. height: math.unit(1.5, "meters")
  63409. },
  63410. {
  63411. name: "Norm",
  63412. height: math.unit(1.7, "meters"),
  63413. default: true
  63414. },
  63415. ]
  63416. ))
  63417. characterMakers.push(() => makeCharacter(
  63418. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63419. {
  63420. front: {
  63421. height: math.unit(5 + 2/12, "feet"),
  63422. weight: math.unit(110, "lb"),
  63423. name: "Front",
  63424. image: {
  63425. source: "./media/characters/salem/front.svg",
  63426. extra: 1895/1800,
  63427. bottom: 23/1918
  63428. }
  63429. },
  63430. back: {
  63431. height: math.unit(5 + 2/12, "feet"),
  63432. weight: math.unit(110, "lb"),
  63433. name: "Back",
  63434. image: {
  63435. source: "./media/characters/salem/back.svg",
  63436. extra: 1875/1802,
  63437. bottom: 20/1895
  63438. }
  63439. },
  63440. head: {
  63441. height: math.unit(1, "feet"),
  63442. name: "Head",
  63443. image: {
  63444. source: "./media/characters/salem/head.svg"
  63445. }
  63446. },
  63447. paw: {
  63448. height: math.unit(0.59, "feet"),
  63449. name: "Paw",
  63450. image: {
  63451. source: "./media/characters/salem/paw.svg"
  63452. }
  63453. },
  63454. beans: {
  63455. height: math.unit(0.66, "feet"),
  63456. name: "Beans",
  63457. image: {
  63458. source: "./media/characters/salem/beans.svg"
  63459. }
  63460. },
  63461. eye: {
  63462. height: math.unit(0.224, "feet"),
  63463. name: "Eye",
  63464. image: {
  63465. source: "./media/characters/salem/eye.svg"
  63466. }
  63467. },
  63468. semiferal: {
  63469. height: math.unit(2.3, "feet"),
  63470. name: "Semiferal",
  63471. image: {
  63472. source: "./media/characters/salem/semiferal.svg",
  63473. extra: 914/839,
  63474. bottom: 32/946
  63475. }
  63476. },
  63477. },
  63478. [
  63479. {
  63480. name: "Micro",
  63481. height: math.unit(4, "inches")
  63482. },
  63483. {
  63484. name: "Normal",
  63485. height: math.unit(5 + 2/12, "feet"),
  63486. default: true
  63487. },
  63488. {
  63489. name: "Macro",
  63490. height: math.unit(108, "feet")
  63491. },
  63492. {
  63493. name: "Macro+",
  63494. height: math.unit(1500, "feet")
  63495. },
  63496. ]
  63497. ))
  63498. characterMakers.push(() => makeCharacter(
  63499. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63500. {
  63501. front: {
  63502. height: math.unit(7 + 6/12, "feet"),
  63503. weight: math.unit(600, "kg"),
  63504. preyCapacity: math.unit(10, "people"),
  63505. name: "Front",
  63506. image: {
  63507. source: "./media/characters/kii/front.svg",
  63508. extra: 3296/3087,
  63509. bottom: 130/3426
  63510. }
  63511. },
  63512. },
  63513. [
  63514. {
  63515. name: "Normal",
  63516. height: math.unit(7 + 6/12, "feet"),
  63517. default: true
  63518. },
  63519. ]
  63520. ))
  63521. characterMakers.push(() => makeCharacter(
  63522. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63523. {
  63524. front: {
  63525. height: math.unit(2, "meters"),
  63526. weight: math.unit(200, "lb"),
  63527. name: "Front",
  63528. image: {
  63529. source: "./media/characters/taffy/front.svg",
  63530. extra: 1666/1618,
  63531. bottom: 157/1823
  63532. }
  63533. },
  63534. back: {
  63535. height: math.unit(2, "meters"),
  63536. weight: math.unit(200, "lb"),
  63537. name: "Back",
  63538. image: {
  63539. source: "./media/characters/taffy/back.svg",
  63540. extra: 1635/1583,
  63541. bottom: 153/1788
  63542. }
  63543. },
  63544. },
  63545. [
  63546. {
  63547. name: "Normal",
  63548. height: math.unit(2, "meters"),
  63549. default: true
  63550. },
  63551. ]
  63552. ))
  63553. characterMakers.push(() => makeCharacter(
  63554. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63555. {
  63556. front: {
  63557. height: math.unit(1.55, "meters"),
  63558. weight: math.unit(60, "kg"),
  63559. name: "Front",
  63560. image: {
  63561. source: "./media/characters/barley/front.svg",
  63562. extra: 1520/1340,
  63563. bottom: 47/1567
  63564. }
  63565. },
  63566. back: {
  63567. height: math.unit(1.55, "meters"),
  63568. weight: math.unit(60, "kg"),
  63569. name: "Back",
  63570. image: {
  63571. source: "./media/characters/barley/back.svg",
  63572. extra: 1543/1341,
  63573. bottom: 12/1555
  63574. }
  63575. },
  63576. feet: {
  63577. height: math.unit(2.18, "feet"),
  63578. name: "Feet",
  63579. image: {
  63580. source: "./media/characters/barley/feet.svg"
  63581. }
  63582. },
  63583. },
  63584. [
  63585. {
  63586. name: "Normal",
  63587. height: math.unit(1.55, "meters"),
  63588. default: true
  63589. },
  63590. ]
  63591. ))
  63592. characterMakers.push(() => makeCharacter(
  63593. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  63594. {
  63595. dressed: {
  63596. height: math.unit(6, "feet"),
  63597. name: "Dressed",
  63598. image: {
  63599. source: "./media/characters/lydia-lopez/dressed.svg",
  63600. extra: 1319/1277,
  63601. bottom: 90/1409
  63602. }
  63603. },
  63604. nude: {
  63605. height: math.unit(6, "feet"),
  63606. name: "Nude",
  63607. image: {
  63608. source: "./media/characters/lydia-lopez/nude.svg",
  63609. extra: 1319/1277,
  63610. bottom: 90/1409
  63611. }
  63612. },
  63613. },
  63614. [
  63615. {
  63616. name: "Normal",
  63617. height: math.unit(6, "feet"),
  63618. default: true
  63619. },
  63620. {
  63621. name: "Maximum",
  63622. height: math.unit(2101, "feet")
  63623. },
  63624. ]
  63625. ))
  63626. characterMakers.push(() => makeCharacter(
  63627. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  63628. {
  63629. front: {
  63630. height: math.unit(5 + 4/12, "feet"),
  63631. weight: math.unit(250, "lb"),
  63632. volume: math.unit(20, "gallons"),
  63633. name: "Front",
  63634. image: {
  63635. source: "./media/characters/kira-slime/front.svg",
  63636. extra: 442/403,
  63637. bottom: 18/460
  63638. }
  63639. },
  63640. frontNsfw: {
  63641. height: math.unit(5 + 4/12, "feet"),
  63642. weight: math.unit(250, "lb"),
  63643. volume: math.unit(20, "gallons"),
  63644. name: "Front (NSFW)",
  63645. image: {
  63646. source: "./media/characters/kira-slime/front-nsfw.svg",
  63647. extra: 442/403,
  63648. bottom: 18/460
  63649. }
  63650. },
  63651. },
  63652. [
  63653. {
  63654. name: "Droplet",
  63655. height: math.unit(0.0464452, "feet")
  63656. },
  63657. {
  63658. name: "Pint",
  63659. height: math.unit(0.9824, "feet")
  63660. },
  63661. {
  63662. name: "Bucket",
  63663. height: math.unit(2.83, "feet")
  63664. },
  63665. {
  63666. name: "Normal",
  63667. height: math.unit(5 + 4/12, "feet"),
  63668. default: true
  63669. },
  63670. {
  63671. name: "Tub",
  63672. height: math.unit(8.46614, "feet")
  63673. },
  63674. {
  63675. name: "Pool",
  63676. height: math.unit(31.1895, "feet")
  63677. },
  63678. {
  63679. name: "Pond",
  63680. height: math.unit(170.349, "feet")
  63681. },
  63682. {
  63683. name: "Lake",
  63684. height: math.unit(289334, "feet")
  63685. },
  63686. {
  63687. name: "Ocean",
  63688. height: math.unit(1.11940e+7, "feet")
  63689. },
  63690. ]
  63691. ))
  63692. characterMakers.push(() => makeCharacter(
  63693. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  63694. {
  63695. front: {
  63696. height: math.unit(5 + 6/12, "feet"),
  63697. weight: math.unit(120, "lb"),
  63698. name: "Front",
  63699. image: {
  63700. source: "./media/characters/holiday/front.svg",
  63701. extra: 456/403,
  63702. bottom: 4/460
  63703. }
  63704. },
  63705. back: {
  63706. height: math.unit(5 + 6/12, "feet"),
  63707. weight: math.unit(120, "lb"),
  63708. name: "Back",
  63709. image: {
  63710. source: "./media/characters/holiday/back.svg",
  63711. extra: 450/404,
  63712. bottom: 12/462
  63713. }
  63714. },
  63715. head: {
  63716. height: math.unit(2.3, "feet"),
  63717. name: "Head",
  63718. image: {
  63719. source: "./media/characters/holiday/head.svg"
  63720. }
  63721. },
  63722. },
  63723. [
  63724. {
  63725. name: "Normal",
  63726. height: math.unit(5 + 6/12, "feet"),
  63727. default: true
  63728. },
  63729. {
  63730. name: "Macro",
  63731. height: math.unit(6574.25, "feet")
  63732. },
  63733. ]
  63734. ))
  63735. characterMakers.push(() => makeCharacter(
  63736. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  63737. {
  63738. front: {
  63739. height: math.unit(6 + 2/12, "feet"),
  63740. weight: math.unit(200, "lb"),
  63741. name: "Front",
  63742. image: {
  63743. source: "./media/characters/camina/front.svg",
  63744. extra: 1048/985,
  63745. bottom: 30/1078
  63746. }
  63747. },
  63748. },
  63749. [
  63750. {
  63751. name: "Normal",
  63752. height: math.unit(6 + 2/12, "feet"),
  63753. default: true
  63754. },
  63755. ]
  63756. ))
  63757. characterMakers.push(() => makeCharacter(
  63758. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  63759. {
  63760. front: {
  63761. height: math.unit(30, "cm"),
  63762. weight: math.unit(420, "grams"),
  63763. name: "Front",
  63764. image: {
  63765. source: "./media/characters/smuck/front.svg",
  63766. extra: 379/345,
  63767. bottom: 36/415
  63768. }
  63769. },
  63770. },
  63771. [
  63772. {
  63773. name: "Smuck-Sized",
  63774. height: math.unit(30, "cm"),
  63775. default: true
  63776. },
  63777. ]
  63778. ))
  63779. characterMakers.push(() => makeCharacter(
  63780. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  63781. {
  63782. frontSfw: {
  63783. height: math.unit(10, "feet"),
  63784. weight: math.unit(1000, "kg"),
  63785. preyCapacity: math.unit(2, "people"),
  63786. name: "Front (SFW)",
  63787. image: {
  63788. source: "./media/characters/bylur/front-sfw.svg",
  63789. extra: 419/343,
  63790. bottom: 3/422
  63791. },
  63792. default: true
  63793. },
  63794. frontSheath: {
  63795. height: math.unit(10, "feet"),
  63796. weight: math.unit(1000, "kg"),
  63797. preyCapacity: math.unit(2, "people"),
  63798. name: "Front (Sheath)",
  63799. image: {
  63800. source: "./media/characters/bylur/front-sheath.svg",
  63801. extra: 419/343,
  63802. bottom: 3/422
  63803. }
  63804. },
  63805. frontErect: {
  63806. height: math.unit(10, "feet"),
  63807. weight: math.unit(1000, "kg"),
  63808. preyCapacity: math.unit(2, "people"),
  63809. name: "Front (Erect)",
  63810. image: {
  63811. source: "./media/characters/bylur/front-erect.svg",
  63812. extra: 419/343,
  63813. bottom: 3/422
  63814. }
  63815. },
  63816. back: {
  63817. height: math.unit(10, "feet"),
  63818. weight: math.unit(1000, "kg"),
  63819. preyCapacity: math.unit(2, "people"),
  63820. name: "Back",
  63821. image: {
  63822. source: "./media/characters/bylur/back.svg",
  63823. extra: 392/315,
  63824. bottom: 3/395
  63825. }
  63826. },
  63827. maw: {
  63828. height: math.unit(3.65, "feet"),
  63829. name: "Maw",
  63830. image: {
  63831. source: "./media/characters/bylur/maw.svg"
  63832. }
  63833. },
  63834. },
  63835. [
  63836. {
  63837. name: "Slightly Human Sized",
  63838. height: math.unit(10, "feet")
  63839. },
  63840. {
  63841. name: "Normal",
  63842. height: math.unit(35, "feet"),
  63843. default: true
  63844. },
  63845. {
  63846. name: "Macro",
  63847. height: math.unit(130, "feet")
  63848. },
  63849. ]
  63850. ))
  63851. characterMakers.push(() => makeCharacter(
  63852. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  63853. {
  63854. frontNsfw: {
  63855. height: math.unit(6, "feet"),
  63856. weight: math.unit(250, "lb"),
  63857. preyCapacity: math.unit(0.05, "people"),
  63858. name: "Front (NSFW)",
  63859. image: {
  63860. source: "./media/characters/oarven/front-nsfw.svg",
  63861. extra: 1795/1783,
  63862. bottom: 142/1937
  63863. }
  63864. },
  63865. frontSfw: {
  63866. height: math.unit(6, "feet"),
  63867. weight: math.unit(250, "lb"),
  63868. preyCapacity: math.unit(0.05, "people"),
  63869. name: "Front (SFW)",
  63870. image: {
  63871. source: "./media/characters/oarven/front-sfw.svg",
  63872. extra: 1795/1783,
  63873. bottom: 142/1937
  63874. }
  63875. },
  63876. },
  63877. [
  63878. {
  63879. name: "Megamacro",
  63880. height: math.unit(5, "miles"),
  63881. default: true
  63882. },
  63883. {
  63884. name: "Maximum Height",
  63885. height: math.unit(5, "AUs")
  63886. },
  63887. ]
  63888. ))
  63889. characterMakers.push(() => makeCharacter(
  63890. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  63891. {
  63892. side: {
  63893. height: math.unit(1065, "meters"),
  63894. weight: math.unit(1e12, "kg"),
  63895. volume: math.unit(3265000000, "m^3"),
  63896. name: "Side",
  63897. image: {
  63898. source: "./media/characters/solidarity/side.svg"
  63899. }
  63900. },
  63901. front: {
  63902. height: math.unit(1065, "meters"),
  63903. weight: math.unit(3265000000000, "kg"),
  63904. volume: math.unit(3265000000, "m^3"),
  63905. name: "Front",
  63906. image: {
  63907. source: "./media/characters/solidarity/front.svg"
  63908. }
  63909. },
  63910. top: {
  63911. height: math.unit(5823, "meters"),
  63912. weight: math.unit(3265000000000, "kg"),
  63913. volume: math.unit(3265000000, "m^3"),
  63914. name: "Top",
  63915. image: {
  63916. source: "./media/characters/solidarity/top.svg"
  63917. }
  63918. },
  63919. },
  63920. [
  63921. {
  63922. name: "Normal",
  63923. height: math.unit(1065, "meters"),
  63924. default: true
  63925. },
  63926. ]
  63927. ))
  63928. //characters
  63929. function makeCharacters() {
  63930. const results = [];
  63931. characterMakers.forEach(character => {
  63932. results.push(character());
  63933. });
  63934. return results;
  63935. }