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

67468 行
1.7 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. "king-cheetah": {
  2419. name: "King Cheetah",
  2420. parents: ["cheetah"]
  2421. },
  2422. "secretary-bird": {
  2423. name: "Secretary Bird",
  2424. parents: ["bird-of-prey"]
  2425. },
  2426. "russian-blue": {
  2427. name: "Russian Blue",
  2428. parents: ["housecat"]
  2429. },
  2430. "wholphin": {
  2431. name: "Wholphin",
  2432. parents: ["whale", "dolphin"]
  2433. },
  2434. "sea-dragon": {
  2435. name: "Sea Dragon",
  2436. parents: ["dragon", "aquatic"]
  2437. },
  2438. "brown-bear": {
  2439. name: "Brown Bear",
  2440. parents: ["bear"]
  2441. },
  2442. "vampire-bat": {
  2443. name: "Vampire Bat",
  2444. parents: ["bat"]
  2445. },
  2446. "dilophosaurus": {
  2447. name: "Dilophosaurus",
  2448. parents: ["theropod"]
  2449. },
  2450. "nagainini": {
  2451. name: "Nagainini",
  2452. parents: ["naga"]
  2453. },
  2454. "kaizleon": {
  2455. name: "Kaizleon",
  2456. parents: ["humanoid"]
  2457. },
  2458. }
  2459. //species
  2460. function getSpeciesInfo(speciesList) {
  2461. let result = new Set();
  2462. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2463. result.add(entry)
  2464. });
  2465. return Array.from(result);
  2466. };
  2467. function getSpeciesInfoHelper(species) {
  2468. if (!speciesData[species]) {
  2469. console.warn(species + " doesn't exist");
  2470. return [];
  2471. }
  2472. if (speciesData[species].parents) {
  2473. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2474. } else {
  2475. return [species];
  2476. }
  2477. }
  2478. characterMakers.push(() => makeCharacter(
  2479. {
  2480. name: "Fen",
  2481. species: ["crux"],
  2482. description: {
  2483. title: "Bio",
  2484. text: "Very furry. Sheds on everything."
  2485. },
  2486. tags: [
  2487. "anthro",
  2488. "goo"
  2489. ]
  2490. },
  2491. {
  2492. front: {
  2493. height: math.unit(12, "feet"),
  2494. weight: math.unit(2400, "lb"),
  2495. preyCapacity: math.unit(1, "people"),
  2496. name: "Front",
  2497. image: {
  2498. source: "./media/characters/fen/front.svg",
  2499. extra: 1804/1562,
  2500. bottom: 205/2009
  2501. },
  2502. extraAttributes: {
  2503. pawSize: {
  2504. name: "Paw Size",
  2505. power: 2,
  2506. type: "area",
  2507. base: math.unit(0.35, "m^2")
  2508. }
  2509. }
  2510. },
  2511. diving: {
  2512. height: math.unit(4.9, "meters"),
  2513. weight: math.unit(2400, "lb"),
  2514. name: "Diving",
  2515. image: {
  2516. source: "./media/characters/fen/diving.svg"
  2517. }
  2518. },
  2519. sleeby: {
  2520. height: math.unit(3.45, "meters"),
  2521. weight: math.unit(2400, "lb"),
  2522. name: "Sleeby",
  2523. image: {
  2524. source: "./media/characters/fen/sleeby.svg"
  2525. }
  2526. },
  2527. goo: {
  2528. height: math.unit(12, "feet"),
  2529. weight: math.unit(3600, "lb"),
  2530. volume: math.unit(1000, "liters"),
  2531. preyCapacity: math.unit(6, "people"),
  2532. name: "Goo",
  2533. image: {
  2534. source: "./media/characters/fen/goo.svg",
  2535. extra: 1307/1071,
  2536. bottom: 134/1441
  2537. }
  2538. },
  2539. horror: {
  2540. height: math.unit(13.6, "feet"),
  2541. weight: math.unit(2400, "lb"),
  2542. preyCapacity: math.unit(1, "people"),
  2543. name: "Horror",
  2544. image: {
  2545. source: "./media/characters/fen/horror.svg",
  2546. extra: 893/797,
  2547. bottom: 0/893
  2548. }
  2549. },
  2550. gooNsfw: {
  2551. height: math.unit(12, "feet"),
  2552. weight: math.unit(3750, "lb"),
  2553. volume: math.unit(1000, "liters"),
  2554. preyCapacity: math.unit(6, "people"),
  2555. name: "Goo (NSFW)",
  2556. image: {
  2557. source: "./media/characters/fen/goo-nsfw.svg",
  2558. extra: 1875/1734,
  2559. bottom: 122/1997
  2560. }
  2561. },
  2562. maw: {
  2563. height: math.unit(5.03, "feet"),
  2564. name: "Maw",
  2565. image: {
  2566. source: "./media/characters/fen/maw.svg"
  2567. }
  2568. },
  2569. gooCeiling: {
  2570. height: math.unit(6.6, "feet"),
  2571. weight: math.unit(3000, "lb"),
  2572. volume: math.unit(1000, "liters"),
  2573. preyCapacity: math.unit(6, "people"),
  2574. name: "Maw (Goo)",
  2575. image: {
  2576. source: "./media/characters/fen/goo-maw.svg"
  2577. }
  2578. },
  2579. paw: {
  2580. height: math.unit(3.77, "feet"),
  2581. name: "Paw",
  2582. image: {
  2583. source: "./media/characters/fen/paw.svg"
  2584. },
  2585. extraAttributes: {
  2586. "toeSize": {
  2587. name: "Toe Size",
  2588. power: 2,
  2589. type: "area",
  2590. base: math.unit(0.02875, "m^2")
  2591. },
  2592. "pawSize": {
  2593. name: "Paw Size",
  2594. power: 2,
  2595. type: "area",
  2596. base: math.unit(0.378, "m^2")
  2597. },
  2598. }
  2599. },
  2600. tail: {
  2601. height: math.unit(12.1, "feet"),
  2602. name: "Tail",
  2603. image: {
  2604. source: "./media/characters/fen/tail.svg"
  2605. }
  2606. },
  2607. tailFull: {
  2608. height: math.unit(12.1, "feet"),
  2609. name: "Full Tail",
  2610. image: {
  2611. source: "./media/characters/fen/tail-full.svg"
  2612. }
  2613. },
  2614. back: {
  2615. height: math.unit(12, "feet"),
  2616. weight: math.unit(2400, "lb"),
  2617. name: "Back",
  2618. image: {
  2619. source: "./media/characters/fen/back.svg",
  2620. },
  2621. info: {
  2622. description: {
  2623. mode: "append",
  2624. text: "\n\nHe is not currently looking at you."
  2625. }
  2626. }
  2627. },
  2628. full: {
  2629. height: math.unit(1.85, "meter"),
  2630. weight: math.unit(3200, "lb"),
  2631. preyCapacity: math.unit(3, "people"),
  2632. name: "Full",
  2633. image: {
  2634. source: "./media/characters/fen/full.svg",
  2635. extra: 1133/859,
  2636. bottom: 145/1278
  2637. },
  2638. info: {
  2639. description: {
  2640. mode: "append",
  2641. text: "\n\nMunch."
  2642. }
  2643. }
  2644. },
  2645. gooLounging: {
  2646. height: math.unit(4.53, "feet"),
  2647. weight: math.unit(3000, "lb"),
  2648. preyCapacity: math.unit(6, "people"),
  2649. name: "Goo (Lounging)",
  2650. image: {
  2651. source: "./media/characters/fen/goo-lounging.svg",
  2652. bottom: 116 / 613
  2653. }
  2654. },
  2655. lounging: {
  2656. height: math.unit(10.52, "feet"),
  2657. weight: math.unit(2400, "lb"),
  2658. name: "Lounging",
  2659. image: {
  2660. source: "./media/characters/fen/lounging.svg"
  2661. }
  2662. },
  2663. },
  2664. [
  2665. {
  2666. name: "Small",
  2667. height: math.unit(2.2428, "meter")
  2668. },
  2669. {
  2670. name: "Normal",
  2671. height: math.unit(12, "feet"),
  2672. default: true,
  2673. },
  2674. {
  2675. name: "Big",
  2676. height: math.unit(20, "feet")
  2677. },
  2678. {
  2679. name: "Minimacro",
  2680. height: math.unit(40, "feet"),
  2681. info: {
  2682. description: {
  2683. mode: "append",
  2684. text: "\n\nTOO DAMN BIG"
  2685. }
  2686. }
  2687. },
  2688. {
  2689. name: "Macro",
  2690. height: math.unit(100, "feet"),
  2691. info: {
  2692. description: {
  2693. mode: "append",
  2694. text: "\n\nTOO DAMN BIG"
  2695. }
  2696. }
  2697. },
  2698. {
  2699. name: "Megamacro",
  2700. height: math.unit(2, "miles")
  2701. },
  2702. {
  2703. name: "Gigamacro",
  2704. height: math.unit(10, "earths")
  2705. },
  2706. ]
  2707. ))
  2708. characterMakers.push(() => makeCharacter(
  2709. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2710. {
  2711. front: {
  2712. height: math.unit(183, "cm"),
  2713. weight: math.unit(80, "kg"),
  2714. name: "Front",
  2715. image: {
  2716. source: "./media/characters/sofia-fluttertail/front.svg",
  2717. bottom: 0.01,
  2718. extra: 2154 / 2081
  2719. }
  2720. },
  2721. frontAlt: {
  2722. height: math.unit(183, "cm"),
  2723. weight: math.unit(80, "kg"),
  2724. name: "Front (alt)",
  2725. image: {
  2726. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2727. }
  2728. },
  2729. back: {
  2730. height: math.unit(183, "cm"),
  2731. weight: math.unit(80, "kg"),
  2732. name: "Back",
  2733. image: {
  2734. source: "./media/characters/sofia-fluttertail/back.svg"
  2735. }
  2736. },
  2737. kneeling: {
  2738. height: math.unit(125, "cm"),
  2739. weight: math.unit(80, "kg"),
  2740. name: "Kneeling",
  2741. image: {
  2742. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2743. extra: 1033 / 977,
  2744. bottom: 23.7 / 1057
  2745. }
  2746. },
  2747. maw: {
  2748. height: math.unit(183 / 5, "cm"),
  2749. name: "Maw",
  2750. image: {
  2751. source: "./media/characters/sofia-fluttertail/maw.svg"
  2752. }
  2753. },
  2754. mawcloseup: {
  2755. height: math.unit(183 / 5 * 0.41, "cm"),
  2756. name: "Maw (Closeup)",
  2757. image: {
  2758. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2759. }
  2760. },
  2761. paws: {
  2762. height: math.unit(1.17, "feet"),
  2763. name: "Paws",
  2764. image: {
  2765. source: "./media/characters/sofia-fluttertail/paws.svg",
  2766. extra: 851 / 851,
  2767. bottom: 17 / 868
  2768. }
  2769. },
  2770. },
  2771. [
  2772. {
  2773. name: "Normal",
  2774. height: math.unit(1.83, "meter")
  2775. },
  2776. {
  2777. name: "Size Thief",
  2778. height: math.unit(18, "feet")
  2779. },
  2780. {
  2781. name: "50 Foot Collie",
  2782. height: math.unit(50, "feet")
  2783. },
  2784. {
  2785. name: "Macro",
  2786. height: math.unit(96, "feet"),
  2787. default: true
  2788. },
  2789. {
  2790. name: "Megamerger",
  2791. height: math.unit(650, "feet")
  2792. },
  2793. ]
  2794. ))
  2795. characterMakers.push(() => makeCharacter(
  2796. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2797. {
  2798. front: {
  2799. height: math.unit(7, "feet"),
  2800. weight: math.unit(100, "kg"),
  2801. name: "Front",
  2802. image: {
  2803. source: "./media/characters/march/front.svg",
  2804. extra: 1992/1851,
  2805. bottom: 39/2031
  2806. }
  2807. },
  2808. foot: {
  2809. height: math.unit(0.9, "feet"),
  2810. name: "Foot",
  2811. image: {
  2812. source: "./media/characters/march/foot.svg"
  2813. }
  2814. },
  2815. },
  2816. [
  2817. {
  2818. name: "Normal",
  2819. height: math.unit(7.9, "feet")
  2820. },
  2821. {
  2822. name: "Macro",
  2823. height: math.unit(220, "meters")
  2824. },
  2825. {
  2826. name: "Megamacro",
  2827. height: math.unit(2.98, "km"),
  2828. default: true
  2829. },
  2830. {
  2831. name: "Gigamacro",
  2832. height: math.unit(15963, "km")
  2833. },
  2834. {
  2835. name: "Teramacro",
  2836. height: math.unit(2980000000, "km")
  2837. },
  2838. {
  2839. name: "Examacro",
  2840. height: math.unit(250, "parsecs")
  2841. },
  2842. ]
  2843. ))
  2844. characterMakers.push(() => makeCharacter(
  2845. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2846. {
  2847. front: {
  2848. height: math.unit(6, "feet"),
  2849. weight: math.unit(60, "kg"),
  2850. name: "Front",
  2851. image: {
  2852. source: "./media/characters/noir/front.svg",
  2853. extra: 1,
  2854. bottom: 0.032
  2855. }
  2856. },
  2857. },
  2858. [
  2859. {
  2860. name: "Normal",
  2861. height: math.unit(6.6, "feet")
  2862. },
  2863. {
  2864. name: "Macro",
  2865. height: math.unit(500, "feet")
  2866. },
  2867. {
  2868. name: "Megamacro",
  2869. height: math.unit(2.5, "km"),
  2870. default: true
  2871. },
  2872. {
  2873. name: "Gigamacro",
  2874. height: math.unit(22500, "km")
  2875. },
  2876. {
  2877. name: "Teramacro",
  2878. height: math.unit(2500000000, "km")
  2879. },
  2880. {
  2881. name: "Examacro",
  2882. height: math.unit(200, "parsecs")
  2883. },
  2884. ]
  2885. ))
  2886. characterMakers.push(() => makeCharacter(
  2887. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2888. {
  2889. front: {
  2890. height: math.unit(7, "feet"),
  2891. weight: math.unit(100, "kg"),
  2892. name: "Front",
  2893. image: {
  2894. source: "./media/characters/okuri/front.svg",
  2895. extra: 739/665,
  2896. bottom: 39/778
  2897. }
  2898. },
  2899. back: {
  2900. height: math.unit(7, "feet"),
  2901. weight: math.unit(100, "kg"),
  2902. name: "Back",
  2903. image: {
  2904. source: "./media/characters/okuri/back.svg",
  2905. extra: 734/653,
  2906. bottom: 13/747
  2907. }
  2908. },
  2909. sitting: {
  2910. height: math.unit(2.95, "feet"),
  2911. weight: math.unit(100, "kg"),
  2912. name: "Sitting",
  2913. image: {
  2914. source: "./media/characters/okuri/sitting.svg",
  2915. extra: 370/318,
  2916. bottom: 99/469
  2917. }
  2918. },
  2919. },
  2920. [
  2921. {
  2922. name: "Smallest",
  2923. height: math.unit(5 + 2/12, "feet")
  2924. },
  2925. {
  2926. name: "Smaller",
  2927. height: math.unit(300, "feet")
  2928. },
  2929. {
  2930. name: "Small",
  2931. height: math.unit(1000, "feet")
  2932. },
  2933. {
  2934. name: "Macro",
  2935. height: math.unit(1, "mile")
  2936. },
  2937. {
  2938. name: "Mega Macro (Small)",
  2939. height: math.unit(20, "km")
  2940. },
  2941. {
  2942. name: "Mega Macro (Large)",
  2943. height: math.unit(600, "km")
  2944. },
  2945. {
  2946. name: "Giga Macro",
  2947. height: math.unit(10000, "km")
  2948. },
  2949. {
  2950. name: "Normal",
  2951. height: math.unit(577560, "km"),
  2952. default: true
  2953. },
  2954. {
  2955. name: "Large",
  2956. height: math.unit(4, "galaxies")
  2957. },
  2958. {
  2959. name: "Largest",
  2960. height: math.unit(15, "multiverses")
  2961. },
  2962. ]
  2963. ))
  2964. characterMakers.push(() => makeCharacter(
  2965. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2966. {
  2967. front: {
  2968. height: math.unit(7, "feet"),
  2969. weight: math.unit(100, "kg"),
  2970. name: "Front",
  2971. image: {
  2972. source: "./media/characters/manny/front.svg",
  2973. extra: 1,
  2974. bottom: 0.06
  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/manny/back.svg",
  2983. extra: 1,
  2984. bottom: 0.014
  2985. }
  2986. },
  2987. },
  2988. [
  2989. {
  2990. name: "Normal",
  2991. height: math.unit(7, "feet"),
  2992. },
  2993. {
  2994. name: "Macro",
  2995. height: math.unit(78, "feet"),
  2996. default: true
  2997. },
  2998. {
  2999. name: "Macro+",
  3000. height: math.unit(300, "meters")
  3001. },
  3002. {
  3003. name: "Macro++",
  3004. height: math.unit(2400, "meters")
  3005. },
  3006. {
  3007. name: "Megamacro",
  3008. height: math.unit(5167, "meters")
  3009. },
  3010. {
  3011. name: "Gigamacro",
  3012. height: math.unit(41769, "miles")
  3013. },
  3014. ]
  3015. ))
  3016. characterMakers.push(() => makeCharacter(
  3017. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  3018. {
  3019. front: {
  3020. height: math.unit(7, "feet"),
  3021. weight: math.unit(100, "kg"),
  3022. name: "Front",
  3023. image: {
  3024. source: "./media/characters/adake/front-1.svg"
  3025. }
  3026. },
  3027. frontAlt: {
  3028. height: math.unit(7, "feet"),
  3029. weight: math.unit(100, "kg"),
  3030. name: "Front (Alt)",
  3031. image: {
  3032. source: "./media/characters/adake/front-2.svg",
  3033. extra: 1,
  3034. bottom: 0.01
  3035. }
  3036. },
  3037. back: {
  3038. height: math.unit(7, "feet"),
  3039. weight: math.unit(100, "kg"),
  3040. name: "Back",
  3041. image: {
  3042. source: "./media/characters/adake/back.svg",
  3043. }
  3044. },
  3045. kneel: {
  3046. height: math.unit(5.385, "feet"),
  3047. weight: math.unit(100, "kg"),
  3048. name: "Kneeling",
  3049. image: {
  3050. source: "./media/characters/adake/kneel.svg",
  3051. bottom: 0.052
  3052. }
  3053. },
  3054. },
  3055. [
  3056. {
  3057. name: "Normal",
  3058. height: math.unit(7, "feet"),
  3059. },
  3060. {
  3061. name: "Macro",
  3062. height: math.unit(78, "feet"),
  3063. default: true
  3064. },
  3065. {
  3066. name: "Macro+",
  3067. height: math.unit(300, "meters")
  3068. },
  3069. {
  3070. name: "Macro++",
  3071. height: math.unit(2400, "meters")
  3072. },
  3073. {
  3074. name: "Megamacro",
  3075. height: math.unit(5167, "meters")
  3076. },
  3077. {
  3078. name: "Gigamacro",
  3079. height: math.unit(41769, "miles")
  3080. },
  3081. ]
  3082. ))
  3083. characterMakers.push(() => makeCharacter(
  3084. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3085. {
  3086. front: {
  3087. height: math.unit(1.65, "meters"),
  3088. weight: math.unit(50, "kg"),
  3089. name: "Front",
  3090. image: {
  3091. source: "./media/characters/elijah/front.svg",
  3092. extra: 858 / 830,
  3093. bottom: 95.5 / 953.8559
  3094. }
  3095. },
  3096. back: {
  3097. height: math.unit(1.65, "meters"),
  3098. weight: math.unit(50, "kg"),
  3099. name: "Back",
  3100. image: {
  3101. source: "./media/characters/elijah/back.svg",
  3102. extra: 895 / 850,
  3103. bottom: 5.3 / 897.956
  3104. }
  3105. },
  3106. frontNsfw: {
  3107. height: math.unit(1.65, "meters"),
  3108. weight: math.unit(50, "kg"),
  3109. name: "Front (NSFW)",
  3110. image: {
  3111. source: "./media/characters/elijah/front-nsfw.svg",
  3112. extra: 858 / 830,
  3113. bottom: 95.5 / 953.8559
  3114. }
  3115. },
  3116. backNsfw: {
  3117. height: math.unit(1.65, "meters"),
  3118. weight: math.unit(50, "kg"),
  3119. name: "Back (NSFW)",
  3120. image: {
  3121. source: "./media/characters/elijah/back-nsfw.svg",
  3122. extra: 895 / 850,
  3123. bottom: 5.3 / 897.956
  3124. }
  3125. },
  3126. dick: {
  3127. height: math.unit(1, "feet"),
  3128. name: "Dick",
  3129. image: {
  3130. source: "./media/characters/elijah/dick.svg"
  3131. }
  3132. },
  3133. beakOpen: {
  3134. height: math.unit(1.25, "feet"),
  3135. name: "Beak (Open)",
  3136. image: {
  3137. source: "./media/characters/elijah/beak-open.svg"
  3138. }
  3139. },
  3140. beakShut: {
  3141. height: math.unit(1.25, "feet"),
  3142. name: "Beak (Shut)",
  3143. image: {
  3144. source: "./media/characters/elijah/beak-shut.svg"
  3145. }
  3146. },
  3147. footFlexing: {
  3148. height: math.unit(1.61, "feet"),
  3149. name: "Foot (Flexing)",
  3150. image: {
  3151. source: "./media/characters/elijah/foot-flexing.svg"
  3152. }
  3153. },
  3154. footStepping: {
  3155. height: math.unit(1.44, "feet"),
  3156. name: "Foot (Stepping)",
  3157. image: {
  3158. source: "./media/characters/elijah/foot-stepping.svg"
  3159. }
  3160. },
  3161. plantigradeLeg: {
  3162. height: math.unit(2.34, "feet"),
  3163. name: "Plantigrade Leg",
  3164. image: {
  3165. source: "./media/characters/elijah/plantigrade-leg.svg"
  3166. }
  3167. },
  3168. plantigradeFootLeft: {
  3169. height: math.unit(0.9, "feet"),
  3170. name: "Plantigrade Foot (Left)",
  3171. image: {
  3172. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3173. }
  3174. },
  3175. plantigradeFootRight: {
  3176. height: math.unit(0.9, "feet"),
  3177. name: "Plantigrade Foot (Right)",
  3178. image: {
  3179. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3180. }
  3181. },
  3182. },
  3183. [
  3184. {
  3185. name: "Normal",
  3186. height: math.unit(1.65, "meters")
  3187. },
  3188. {
  3189. name: "Macro",
  3190. height: math.unit(55, "meters"),
  3191. default: true
  3192. },
  3193. {
  3194. name: "Macro+",
  3195. height: math.unit(105, "meters")
  3196. },
  3197. ]
  3198. ))
  3199. characterMakers.push(() => makeCharacter(
  3200. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3201. {
  3202. front: {
  3203. height: math.unit(7 + 2/12, "feet"),
  3204. weight: math.unit(320, "kg"),
  3205. preyCapacity: math.unit(0.276549935, "people"),
  3206. name: "Front",
  3207. image: {
  3208. source: "./media/characters/rai/front.svg",
  3209. extra: 1802/1696,
  3210. bottom: 68/1870
  3211. },
  3212. form: "anthro",
  3213. default: true
  3214. },
  3215. frontDressed: {
  3216. height: math.unit(7 + 2/12, "feet"),
  3217. weight: math.unit(320, "kg"),
  3218. preyCapacity: math.unit(0.276549935, "people"),
  3219. name: "Front (Dressed)",
  3220. image: {
  3221. source: "./media/characters/rai/front-dressed.svg",
  3222. extra: 1802/1696,
  3223. bottom: 68/1870
  3224. },
  3225. form: "anthro"
  3226. },
  3227. side: {
  3228. height: math.unit(7 + 2/12, "feet"),
  3229. weight: math.unit(320, "kg"),
  3230. preyCapacity: math.unit(0.276549935, "people"),
  3231. name: "Side",
  3232. image: {
  3233. source: "./media/characters/rai/side.svg",
  3234. extra: 1789/1710,
  3235. bottom: 115/1904
  3236. },
  3237. form: "anthro"
  3238. },
  3239. back: {
  3240. height: math.unit(7 + 2/12, "feet"),
  3241. weight: math.unit(320, "kg"),
  3242. preyCapacity: math.unit(0.276549935, "people"),
  3243. name: "Back",
  3244. image: {
  3245. source: "./media/characters/rai/back.svg",
  3246. extra: 1770/1707,
  3247. bottom: 28/1798
  3248. },
  3249. form: "anthro"
  3250. },
  3251. feral: {
  3252. height: math.unit(9.5, "feet"),
  3253. weight: math.unit(640, "kg"),
  3254. preyCapacity: math.unit(4, "people"),
  3255. name: "Feral",
  3256. image: {
  3257. source: "./media/characters/rai/feral.svg",
  3258. extra: 945/553,
  3259. bottom: 176/1121
  3260. },
  3261. form: "feral",
  3262. default: true
  3263. },
  3264. dragon: {
  3265. height: math.unit(23, "feet"),
  3266. weight: math.unit(50000, "lb"),
  3267. name: "Dragon",
  3268. image: {
  3269. source: "./media/characters/rai/dragon.svg",
  3270. extra: 2498 / 2030,
  3271. bottom: 85.2 / 2584
  3272. },
  3273. form: "dragon",
  3274. default: true
  3275. },
  3276. maw: {
  3277. height: math.unit(1.69, "feet"),
  3278. name: "Maw",
  3279. image: {
  3280. source: "./media/characters/rai/maw.svg"
  3281. },
  3282. form: "anthro"
  3283. },
  3284. },
  3285. [
  3286. {
  3287. name: "Normal",
  3288. height: math.unit(7 + 2/12, "feet"),
  3289. form: "anthro"
  3290. },
  3291. {
  3292. name: "Big",
  3293. height: math.unit(11, "feet"),
  3294. form: "anthro"
  3295. },
  3296. {
  3297. name: "Minimacro",
  3298. height: math.unit(77, "feet"),
  3299. form: "anthro"
  3300. },
  3301. {
  3302. name: "Macro",
  3303. height: math.unit(302, "feet"),
  3304. default: true,
  3305. form: "anthro"
  3306. },
  3307. {
  3308. name: "Normal",
  3309. height: math.unit(9.5, "feet"),
  3310. form: "feral",
  3311. default: true
  3312. },
  3313. {
  3314. name: "Normal",
  3315. height: math.unit(23, "feet"),
  3316. form: "dragon",
  3317. default: true
  3318. }
  3319. ],
  3320. {
  3321. "anthro": {
  3322. name: "Anthro",
  3323. default: true
  3324. },
  3325. "feral": {
  3326. name: "Feral",
  3327. },
  3328. "dragon": {
  3329. name: "Dragon",
  3330. },
  3331. }
  3332. ))
  3333. characterMakers.push(() => makeCharacter(
  3334. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3335. {
  3336. frontDressed: {
  3337. height: math.unit(216, "feet"),
  3338. weight: math.unit(7000000, "lb"),
  3339. preyCapacity: math.unit(1321, "people"),
  3340. name: "Front (Dressed)",
  3341. image: {
  3342. source: "./media/characters/jazzy/front-dressed.svg",
  3343. extra: 2738 / 2651,
  3344. bottom: 41.8 / 2786
  3345. }
  3346. },
  3347. backDressed: {
  3348. height: math.unit(216, "feet"),
  3349. weight: math.unit(7000000, "lb"),
  3350. preyCapacity: math.unit(1321, "people"),
  3351. name: "Back (Dressed)",
  3352. image: {
  3353. source: "./media/characters/jazzy/back-dressed.svg",
  3354. extra: 2775 / 2673,
  3355. bottom: 36.8 / 2817
  3356. }
  3357. },
  3358. front: {
  3359. height: math.unit(216, "feet"),
  3360. weight: math.unit(7000000, "lb"),
  3361. preyCapacity: math.unit(1321, "people"),
  3362. name: "Front",
  3363. image: {
  3364. source: "./media/characters/jazzy/front.svg",
  3365. extra: 2738 / 2651,
  3366. bottom: 41.8 / 2786
  3367. }
  3368. },
  3369. back: {
  3370. height: math.unit(216, "feet"),
  3371. weight: math.unit(7000000, "lb"),
  3372. preyCapacity: math.unit(1321, "people"),
  3373. name: "Back",
  3374. image: {
  3375. source: "./media/characters/jazzy/back.svg",
  3376. extra: 2775 / 2673,
  3377. bottom: 36.8 / 2817
  3378. }
  3379. },
  3380. maw: {
  3381. height: math.unit(20, "feet"),
  3382. name: "Maw",
  3383. image: {
  3384. source: "./media/characters/jazzy/maw.svg"
  3385. }
  3386. },
  3387. paws: {
  3388. height: math.unit(27.5, "feet"),
  3389. name: "Paws",
  3390. image: {
  3391. source: "./media/characters/jazzy/paws.svg"
  3392. }
  3393. },
  3394. eye: {
  3395. height: math.unit(4.4, "feet"),
  3396. name: "Eye",
  3397. image: {
  3398. source: "./media/characters/jazzy/eye.svg"
  3399. }
  3400. },
  3401. droneOffense: {
  3402. height: math.unit(9.5, "inches"),
  3403. name: "Drone (Offense)",
  3404. image: {
  3405. source: "./media/characters/jazzy/drone-offense.svg"
  3406. }
  3407. },
  3408. droneRecon: {
  3409. height: math.unit(9.5, "inches"),
  3410. name: "Drone (Recon)",
  3411. image: {
  3412. source: "./media/characters/jazzy/drone-recon.svg"
  3413. }
  3414. },
  3415. droneDefense: {
  3416. height: math.unit(9.5, "inches"),
  3417. name: "Drone (Defense)",
  3418. image: {
  3419. source: "./media/characters/jazzy/drone-defense.svg"
  3420. }
  3421. },
  3422. },
  3423. [
  3424. {
  3425. name: "Macro",
  3426. height: math.unit(216, "feet"),
  3427. default: true
  3428. },
  3429. ]
  3430. ))
  3431. characterMakers.push(() => makeCharacter(
  3432. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3433. {
  3434. front: {
  3435. height: math.unit(9 + 6/12, "feet"),
  3436. weight: math.unit(700, "lb"),
  3437. name: "Front",
  3438. image: {
  3439. source: "./media/characters/flamm/front.svg",
  3440. extra: 1736/1596,
  3441. bottom: 93/1829
  3442. }
  3443. },
  3444. buff: {
  3445. height: math.unit(9 + 6/12, "feet"),
  3446. weight: math.unit(950, "lb"),
  3447. name: "Buff",
  3448. image: {
  3449. source: "./media/characters/flamm/buff.svg",
  3450. extra: 3018/2874,
  3451. bottom: 221/3239
  3452. }
  3453. },
  3454. },
  3455. [
  3456. {
  3457. name: "Normal",
  3458. height: math.unit(9.5, "feet")
  3459. },
  3460. {
  3461. name: "Macro",
  3462. height: math.unit(200, "feet"),
  3463. default: true
  3464. },
  3465. ]
  3466. ))
  3467. characterMakers.push(() => makeCharacter(
  3468. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3469. {
  3470. front: {
  3471. height: math.unit(5 + 3/12, "feet"),
  3472. weight: math.unit(60, "kg"),
  3473. name: "Front",
  3474. image: {
  3475. source: "./media/characters/zephiro/front.svg",
  3476. extra: 1873/1761,
  3477. bottom: 147/2020
  3478. }
  3479. },
  3480. side: {
  3481. height: math.unit(5 + 3/12, "feet"),
  3482. weight: math.unit(60, "kg"),
  3483. name: "Side",
  3484. image: {
  3485. source: "./media/characters/zephiro/side.svg",
  3486. extra: 1929/1827,
  3487. bottom: 65/1994
  3488. }
  3489. },
  3490. back: {
  3491. height: math.unit(5 + 3/12, "feet"),
  3492. weight: math.unit(60, "kg"),
  3493. name: "Back",
  3494. image: {
  3495. source: "./media/characters/zephiro/back.svg",
  3496. extra: 1926/1816,
  3497. bottom: 41/1967
  3498. }
  3499. },
  3500. hand: {
  3501. height: math.unit(0.68, "feet"),
  3502. name: "Hand",
  3503. image: {
  3504. source: "./media/characters/zephiro/hand.svg"
  3505. }
  3506. },
  3507. paw: {
  3508. height: math.unit(1, "feet"),
  3509. name: "Paw",
  3510. image: {
  3511. source: "./media/characters/zephiro/paw.svg"
  3512. }
  3513. },
  3514. beans: {
  3515. height: math.unit(0.93, "feet"),
  3516. name: "Beans",
  3517. image: {
  3518. source: "./media/characters/zephiro/beans.svg"
  3519. }
  3520. },
  3521. },
  3522. [
  3523. {
  3524. name: "Micro",
  3525. height: math.unit(3, "inches")
  3526. },
  3527. {
  3528. name: "Normal",
  3529. height: math.unit(5 + 3 / 12, "feet"),
  3530. default: true
  3531. },
  3532. {
  3533. name: "Macro",
  3534. height: math.unit(118, "feet")
  3535. },
  3536. ]
  3537. ))
  3538. characterMakers.push(() => makeCharacter(
  3539. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3540. {
  3541. front: {
  3542. height: math.unit(5, "feet"),
  3543. weight: math.unit(90, "kg"),
  3544. preyCapacity: math.unit(14, "people"),
  3545. name: "Front",
  3546. image: {
  3547. source: "./media/characters/fory/front.svg",
  3548. extra: 2862 / 2674,
  3549. bottom: 180 / 3043.8
  3550. },
  3551. form: "weaselbun",
  3552. default: true,
  3553. extraAttributes: {
  3554. "pawSize": {
  3555. name: "Paw Size",
  3556. power: 2,
  3557. type: "area",
  3558. base: math.unit(0.1596, "m^2")
  3559. },
  3560. "pawLength": {
  3561. name: "Paw Length",
  3562. power: 1,
  3563. type: "length",
  3564. base: math.unit(0.7, "m")
  3565. }
  3566. }
  3567. },
  3568. back: {
  3569. height: math.unit(5, "feet"),
  3570. weight: math.unit(90, "kg"),
  3571. preyCapacity: math.unit(14, "people"),
  3572. name: "Back",
  3573. image: {
  3574. source: "./media/characters/fory/back.svg",
  3575. extra: 1790/1672,
  3576. bottom: 84/1874
  3577. },
  3578. form: "weaselbun",
  3579. extraAttributes: {
  3580. "pawSize": {
  3581. name: "Paw Size",
  3582. power: 2,
  3583. type: "area",
  3584. base: math.unit(0.1596, "m^2")
  3585. },
  3586. "pawLength": {
  3587. name: "Paw Length",
  3588. power: 1,
  3589. type: "length",
  3590. base: math.unit(0.7, "m")
  3591. }
  3592. }
  3593. },
  3594. paw: {
  3595. height: math.unit(2.14, "feet"),
  3596. name: "Paw",
  3597. image: {
  3598. source: "./media/characters/fory/paw.svg"
  3599. },
  3600. form: "weaselbun",
  3601. extraAttributes: {
  3602. "pawSize": {
  3603. name: "Paw Size",
  3604. power: 2,
  3605. type: "area",
  3606. base: math.unit(0.1596, "m^2")
  3607. },
  3608. "pawLength": {
  3609. name: "Paw Length",
  3610. power: 1,
  3611. type: "length",
  3612. base: math.unit(0.48, "m")
  3613. }
  3614. }
  3615. },
  3616. bunBack: {
  3617. height: math.unit(3, "feet"),
  3618. weight: math.unit(20, "kg"),
  3619. preyCapacity: math.unit(3, "people"),
  3620. name: "Back",
  3621. image: {
  3622. source: "./media/characters/fory/bun-back.svg",
  3623. extra: 1749/1564,
  3624. bottom: 246/1995
  3625. },
  3626. form: "bun",
  3627. default: true,
  3628. extraAttributes: {
  3629. "pawSize": {
  3630. name: "Paw Size",
  3631. power: 2,
  3632. type: "area",
  3633. base: math.unit(0.072, "m^2")
  3634. },
  3635. "pawLength": {
  3636. name: "Paw Length",
  3637. power: 1,
  3638. type: "length",
  3639. base: math.unit(0.45, "m")
  3640. }
  3641. }
  3642. },
  3643. },
  3644. [
  3645. {
  3646. name: "Normal",
  3647. height: math.unit(5, "feet"),
  3648. form: "weaselbun"
  3649. },
  3650. {
  3651. name: "Macro",
  3652. height: math.unit(50, "feet"),
  3653. default: true,
  3654. form: "weaselbun"
  3655. },
  3656. {
  3657. name: "Megamacro",
  3658. height: math.unit(10, "miles"),
  3659. form: "weaselbun"
  3660. },
  3661. {
  3662. name: "Gigamacro",
  3663. height: math.unit(5, "earths"),
  3664. form: "weaselbun"
  3665. },
  3666. {
  3667. name: "Normal",
  3668. height: math.unit(3, "feet"),
  3669. default: true,
  3670. form: "bun"
  3671. },
  3672. {
  3673. name: "Fun-Size",
  3674. height: math.unit(12, "feet"),
  3675. form: "bun"
  3676. },
  3677. {
  3678. name: "Macro",
  3679. height: math.unit(100, "feet"),
  3680. form: "bun"
  3681. },
  3682. {
  3683. name: "Planetary",
  3684. height: math.unit(3, "earths"),
  3685. form: "bun"
  3686. },
  3687. ],
  3688. {
  3689. "weaselbun": {
  3690. name: "Weaselbun",
  3691. default: true
  3692. },
  3693. "bun": {
  3694. name: "Bun",
  3695. },
  3696. }
  3697. ))
  3698. characterMakers.push(() => makeCharacter(
  3699. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3700. {
  3701. front: {
  3702. height: math.unit(7, "feet"),
  3703. weight: math.unit(90, "kg"),
  3704. name: "Front",
  3705. image: {
  3706. source: "./media/characters/kurrikage/front.svg",
  3707. extra: 1845/1733,
  3708. bottom: 119/1964
  3709. }
  3710. },
  3711. back: {
  3712. height: math.unit(7, "feet"),
  3713. weight: math.unit(90, "kg"),
  3714. name: "Back",
  3715. image: {
  3716. source: "./media/characters/kurrikage/back.svg",
  3717. extra: 1790/1677,
  3718. bottom: 61/1851
  3719. }
  3720. },
  3721. dressed: {
  3722. height: math.unit(7, "feet"),
  3723. weight: math.unit(90, "kg"),
  3724. name: "Dressed",
  3725. image: {
  3726. source: "./media/characters/kurrikage/dressed.svg",
  3727. extra: 1845/1733,
  3728. bottom: 119/1964
  3729. }
  3730. },
  3731. foot: {
  3732. height: math.unit(1.5, "feet"),
  3733. name: "Foot",
  3734. image: {
  3735. source: "./media/characters/kurrikage/foot.svg"
  3736. }
  3737. },
  3738. staff: {
  3739. height: math.unit(6.7, "feet"),
  3740. name: "Staff",
  3741. image: {
  3742. source: "./media/characters/kurrikage/staff.svg"
  3743. }
  3744. },
  3745. peek: {
  3746. height: math.unit(1.05, "feet"),
  3747. name: "Peeking",
  3748. image: {
  3749. source: "./media/characters/kurrikage/peek.svg",
  3750. bottom: 0.08
  3751. }
  3752. },
  3753. },
  3754. [
  3755. {
  3756. name: "Normal",
  3757. height: math.unit(12, "feet"),
  3758. default: true
  3759. },
  3760. {
  3761. name: "Big",
  3762. height: math.unit(20, "feet")
  3763. },
  3764. {
  3765. name: "Macro",
  3766. height: math.unit(500, "feet")
  3767. },
  3768. {
  3769. name: "Megamacro",
  3770. height: math.unit(20, "miles")
  3771. },
  3772. ]
  3773. ))
  3774. characterMakers.push(() => makeCharacter(
  3775. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3776. {
  3777. front: {
  3778. height: math.unit(6, "feet"),
  3779. weight: math.unit(75, "kg"),
  3780. name: "Front",
  3781. image: {
  3782. source: "./media/characters/shingo/front.svg",
  3783. extra: 1900/1825,
  3784. bottom: 82/1982
  3785. }
  3786. },
  3787. side: {
  3788. height: math.unit(6, "feet"),
  3789. weight: math.unit(75, "kg"),
  3790. name: "Side",
  3791. image: {
  3792. source: "./media/characters/shingo/side.svg",
  3793. extra: 1930/1865,
  3794. bottom: 16/1946
  3795. }
  3796. },
  3797. back: {
  3798. height: math.unit(6, "feet"),
  3799. weight: math.unit(75, "kg"),
  3800. name: "Back",
  3801. image: {
  3802. source: "./media/characters/shingo/back.svg",
  3803. extra: 1922/1852,
  3804. bottom: 16/1938
  3805. }
  3806. },
  3807. frontDressed: {
  3808. height: math.unit(6, "feet"),
  3809. weight: math.unit(150, "lb"),
  3810. name: "Front-dressed",
  3811. image: {
  3812. source: "./media/characters/shingo/front-dressed.svg",
  3813. extra: 1900/1825,
  3814. bottom: 82/1982
  3815. }
  3816. },
  3817. paw: {
  3818. height: math.unit(1.29, "feet"),
  3819. name: "Paw",
  3820. image: {
  3821. source: "./media/characters/shingo/paw.svg"
  3822. }
  3823. },
  3824. hand: {
  3825. height: math.unit(1.07, "feet"),
  3826. name: "Hand",
  3827. image: {
  3828. source: "./media/characters/shingo/hand.svg"
  3829. }
  3830. },
  3831. frontAlt: {
  3832. height: math.unit(6, "feet"),
  3833. weight: math.unit(75, "kg"),
  3834. name: "Front (Alt)",
  3835. image: {
  3836. source: "./media/characters/shingo/front-alt.svg",
  3837. extra: 3511 / 3338,
  3838. bottom: 0.005
  3839. }
  3840. },
  3841. frontAlt2: {
  3842. height: math.unit(6, "feet"),
  3843. weight: math.unit(75, "kg"),
  3844. name: "Front (Alt 2)",
  3845. image: {
  3846. source: "./media/characters/shingo/front-alt-2.svg",
  3847. extra: 706/681,
  3848. bottom: 11/717
  3849. }
  3850. },
  3851. pawAlt: {
  3852. height: math.unit(1, "feet"),
  3853. name: "Paw (Alt)",
  3854. image: {
  3855. source: "./media/characters/shingo/paw-alt.svg"
  3856. }
  3857. },
  3858. },
  3859. [
  3860. {
  3861. name: "Micro",
  3862. height: math.unit(4, "inches")
  3863. },
  3864. {
  3865. name: "Normal",
  3866. height: math.unit(6, "feet"),
  3867. default: true
  3868. },
  3869. {
  3870. name: "Macro",
  3871. height: math.unit(108, "feet")
  3872. },
  3873. {
  3874. name: "Macro+",
  3875. height: math.unit(1500, "feet")
  3876. },
  3877. ]
  3878. ))
  3879. characterMakers.push(() => makeCharacter(
  3880. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3881. {
  3882. side: {
  3883. height: math.unit(6, "feet"),
  3884. weight: math.unit(75, "kg"),
  3885. name: "Side",
  3886. image: {
  3887. source: "./media/characters/aigey/side.svg"
  3888. }
  3889. },
  3890. },
  3891. [
  3892. {
  3893. name: "Macro",
  3894. height: math.unit(200, "feet"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Megamacro",
  3899. height: math.unit(100, "miles")
  3900. },
  3901. ]
  3902. )
  3903. )
  3904. characterMakers.push(() => makeCharacter(
  3905. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3906. {
  3907. front: {
  3908. height: math.unit(13, "feet"),
  3909. weight: math.unit(1036.80, "kg"),
  3910. name: "Front",
  3911. image: {
  3912. source: "./media/characters/natasha/front.svg",
  3913. extra: 1301/1210,
  3914. bottom: 39/1340
  3915. }
  3916. },
  3917. back: {
  3918. height: math.unit(13, "feet"),
  3919. weight: math.unit(1036.80, "kg"),
  3920. name: "Back",
  3921. image: {
  3922. source: "./media/characters/natasha/back.svg",
  3923. extra: 1342/1252,
  3924. bottom: 20/1362
  3925. }
  3926. },
  3927. head: {
  3928. height: math.unit(3.48, "feet"),
  3929. name: "Head",
  3930. image: {
  3931. source: "./media/characters/natasha/head.svg"
  3932. }
  3933. },
  3934. jaws: {
  3935. height: math.unit(3.52, "feet"),
  3936. name: "Jaws",
  3937. image: {
  3938. source: "./media/characters/natasha/jaws.svg"
  3939. }
  3940. },
  3941. paws: {
  3942. height: math.unit(2.7, "feet"),
  3943. name: "Paws",
  3944. image: {
  3945. source: "./media/characters/natasha/paws.svg"
  3946. }
  3947. },
  3948. collar: {
  3949. height: math.unit(0.89, "feet"),
  3950. name: "Collar",
  3951. image: {
  3952. source: "./media/characters/natasha/collar.svg"
  3953. }
  3954. },
  3955. gauge: {
  3956. height: math.unit(0.36, "feet"),
  3957. name: "Gauge",
  3958. image: {
  3959. source: "./media/characters/natasha/gauge.svg"
  3960. }
  3961. },
  3962. },
  3963. [
  3964. {
  3965. name: "Shortstack",
  3966. height: math.unit(3, "feet")
  3967. },
  3968. {
  3969. name: "Normal",
  3970. height: math.unit(13, "feet"),
  3971. default: true
  3972. },
  3973. {
  3974. name: "Macro",
  3975. height: math.unit(100, "feet")
  3976. },
  3977. {
  3978. name: "Macro+",
  3979. height: math.unit(260, "feet")
  3980. },
  3981. {
  3982. name: "Macro++",
  3983. height: math.unit(1, "mile")
  3984. },
  3985. ]
  3986. ))
  3987. characterMakers.push(() => makeCharacter(
  3988. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3989. {
  3990. front: {
  3991. height: math.unit(6, "feet"),
  3992. weight: math.unit(75, "kg"),
  3993. name: "Front",
  3994. image: {
  3995. source: "./media/characters/malik/front.svg",
  3996. extra: 1750/1561,
  3997. bottom: 80/1830
  3998. },
  3999. extraAttributes: {
  4000. "toeSize": {
  4001. name: "Toe Size",
  4002. power: 2,
  4003. type: "area",
  4004. base: math.unit(0.0159, "m^2")
  4005. },
  4006. "pawSize": {
  4007. name: "Paw Size",
  4008. power: 2,
  4009. type: "area",
  4010. base: math.unit(0.09834, "m^2")
  4011. },
  4012. }
  4013. },
  4014. side: {
  4015. height: math.unit(6, "feet"),
  4016. weight: math.unit(75, "kg"),
  4017. name: "Side",
  4018. image: {
  4019. source: "./media/characters/malik/side.svg",
  4020. extra: 1802/1685,
  4021. bottom: 42/1844
  4022. },
  4023. extraAttributes: {
  4024. "toeSize": {
  4025. name: "Toe Size",
  4026. power: 2,
  4027. type: "area",
  4028. base: math.unit(0.0159, "m^2")
  4029. },
  4030. "pawSize": {
  4031. name: "Paw Size",
  4032. power: 2,
  4033. type: "area",
  4034. base: math.unit(0.09834, "m^2")
  4035. },
  4036. }
  4037. },
  4038. back: {
  4039. height: math.unit(6, "feet"),
  4040. weight: math.unit(75, "kg"),
  4041. name: "Back",
  4042. image: {
  4043. source: "./media/characters/malik/back.svg",
  4044. extra: 1803/1607,
  4045. bottom: 33/1836
  4046. },
  4047. extraAttributes: {
  4048. "toeSize": {
  4049. name: "Toe Size",
  4050. power: 2,
  4051. type: "area",
  4052. base: math.unit(0.0159, "m^2")
  4053. },
  4054. "pawSize": {
  4055. name: "Paw Size",
  4056. power: 2,
  4057. type: "area",
  4058. base: math.unit(0.09834, "m^2")
  4059. },
  4060. }
  4061. },
  4062. },
  4063. [
  4064. {
  4065. name: "Macro",
  4066. height: math.unit(156, "feet"),
  4067. default: true
  4068. },
  4069. {
  4070. name: "Macro+",
  4071. height: math.unit(1188, "feet")
  4072. },
  4073. ]
  4074. ))
  4075. characterMakers.push(() => makeCharacter(
  4076. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4077. {
  4078. front: {
  4079. height: math.unit(6, "feet"),
  4080. weight: math.unit(75, "kg"),
  4081. name: "Front",
  4082. image: {
  4083. source: "./media/characters/sefer/front.svg",
  4084. extra: 848 / 659,
  4085. bottom: 28.3 / 876.442
  4086. }
  4087. },
  4088. back: {
  4089. height: math.unit(6, "feet"),
  4090. weight: math.unit(75, "kg"),
  4091. name: "Back",
  4092. image: {
  4093. source: "./media/characters/sefer/back.svg",
  4094. extra: 864 / 695,
  4095. bottom: 10 / 871
  4096. }
  4097. },
  4098. frontDressed: {
  4099. height: math.unit(6, "feet"),
  4100. weight: math.unit(75, "kg"),
  4101. name: "Dressed",
  4102. image: {
  4103. source: "./media/characters/sefer/dressed.svg",
  4104. extra: 839 / 653,
  4105. bottom: 37.6 / 878
  4106. }
  4107. },
  4108. },
  4109. [
  4110. {
  4111. name: "Normal",
  4112. height: math.unit(6, "feet"),
  4113. default: true
  4114. },
  4115. {
  4116. name: "Big",
  4117. height: math.unit(8, "meters")
  4118. },
  4119. ]
  4120. ))
  4121. characterMakers.push(() => makeCharacter(
  4122. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4123. {
  4124. body: {
  4125. height: math.unit(2.2428, "meter"),
  4126. weight: math.unit(124.738, "kg"),
  4127. name: "Body",
  4128. image: {
  4129. extra: 1225 / 1050,
  4130. source: "./media/characters/north/front.svg"
  4131. }
  4132. }
  4133. },
  4134. [
  4135. {
  4136. name: "Micro",
  4137. height: math.unit(4, "inches")
  4138. },
  4139. {
  4140. name: "Macro",
  4141. height: math.unit(63, "meters")
  4142. },
  4143. {
  4144. name: "Megamacro",
  4145. height: math.unit(101, "miles"),
  4146. default: true
  4147. }
  4148. ]
  4149. ))
  4150. characterMakers.push(() => makeCharacter(
  4151. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4152. {
  4153. angled: {
  4154. height: math.unit(4, "meter"),
  4155. weight: math.unit(150, "kg"),
  4156. name: "Angled",
  4157. image: {
  4158. source: "./media/characters/talan/angled-sfw.svg",
  4159. bottom: 29 / 3734
  4160. }
  4161. },
  4162. angledNsfw: {
  4163. height: math.unit(4, "meter"),
  4164. weight: math.unit(150, "kg"),
  4165. name: "Angled (NSFW)",
  4166. image: {
  4167. source: "./media/characters/talan/angled-nsfw.svg",
  4168. bottom: 29 / 3734
  4169. }
  4170. },
  4171. frontNsfw: {
  4172. height: math.unit(4, "meter"),
  4173. weight: math.unit(150, "kg"),
  4174. name: "Front (NSFW)",
  4175. image: {
  4176. source: "./media/characters/talan/front-nsfw.svg",
  4177. bottom: 29 / 3734
  4178. }
  4179. },
  4180. sideNsfw: {
  4181. height: math.unit(4, "meter"),
  4182. weight: math.unit(150, "kg"),
  4183. name: "Side (NSFW)",
  4184. image: {
  4185. source: "./media/characters/talan/side-nsfw.svg",
  4186. bottom: 29 / 3734
  4187. }
  4188. },
  4189. back: {
  4190. height: math.unit(4, "meter"),
  4191. weight: math.unit(150, "kg"),
  4192. name: "Back",
  4193. image: {
  4194. source: "./media/characters/talan/back.svg"
  4195. }
  4196. },
  4197. dickBottom: {
  4198. height: math.unit(0.621, "meter"),
  4199. name: "Dick (Bottom)",
  4200. image: {
  4201. source: "./media/characters/talan/dick-bottom.svg"
  4202. }
  4203. },
  4204. dickTop: {
  4205. height: math.unit(0.621, "meter"),
  4206. name: "Dick (Top)",
  4207. image: {
  4208. source: "./media/characters/talan/dick-top.svg"
  4209. }
  4210. },
  4211. dickSide: {
  4212. height: math.unit(0.305, "meter"),
  4213. name: "Dick (Side)",
  4214. image: {
  4215. source: "./media/characters/talan/dick-side.svg"
  4216. }
  4217. },
  4218. dickFront: {
  4219. height: math.unit(0.305, "meter"),
  4220. name: "Dick (Front)",
  4221. image: {
  4222. source: "./media/characters/talan/dick-front.svg"
  4223. }
  4224. },
  4225. },
  4226. [
  4227. {
  4228. name: "Normal",
  4229. height: math.unit(4, "meters")
  4230. },
  4231. {
  4232. name: "Macro",
  4233. height: math.unit(100, "meters")
  4234. },
  4235. {
  4236. name: "Megamacro",
  4237. height: math.unit(2, "miles"),
  4238. default: true
  4239. },
  4240. {
  4241. name: "Gigamacro",
  4242. height: math.unit(5000, "miles")
  4243. },
  4244. {
  4245. name: "Teramacro",
  4246. height: math.unit(100, "parsecs")
  4247. }
  4248. ]
  4249. ))
  4250. characterMakers.push(() => makeCharacter(
  4251. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4252. {
  4253. front: {
  4254. height: math.unit(2, "meter"),
  4255. weight: math.unit(90, "kg"),
  4256. name: "Front",
  4257. image: {
  4258. source: "./media/characters/gael'rathus/front.svg"
  4259. }
  4260. },
  4261. frontAlt: {
  4262. height: math.unit(2, "meter"),
  4263. weight: math.unit(90, "kg"),
  4264. name: "Front (alt)",
  4265. image: {
  4266. source: "./media/characters/gael'rathus/front-alt.svg"
  4267. }
  4268. },
  4269. frontAlt2: {
  4270. height: math.unit(2, "meter"),
  4271. weight: math.unit(90, "kg"),
  4272. name: "Front (alt 2)",
  4273. image: {
  4274. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Normal",
  4281. height: math.unit(9, "feet"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Large",
  4286. height: math.unit(25, "feet")
  4287. },
  4288. {
  4289. name: "Macro",
  4290. height: math.unit(0.25, "miles")
  4291. },
  4292. {
  4293. name: "Megamacro",
  4294. height: math.unit(10, "miles")
  4295. }
  4296. ]
  4297. ))
  4298. characterMakers.push(() => makeCharacter(
  4299. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4300. {
  4301. side: {
  4302. height: math.unit(2, "meter"),
  4303. weight: math.unit(140, "kg"),
  4304. name: "Side",
  4305. image: {
  4306. source: "./media/characters/sosha/side.svg",
  4307. extra: 1170/1006,
  4308. bottom: 94/1264
  4309. }
  4310. },
  4311. maw: {
  4312. height: math.unit(2.87, "feet"),
  4313. name: "Maw",
  4314. image: {
  4315. source: "./media/characters/sosha/maw.svg",
  4316. extra: 966/865,
  4317. bottom: 0/966
  4318. }
  4319. },
  4320. cooch: {
  4321. height: math.unit(5.6, "feet"),
  4322. name: "Cooch",
  4323. image: {
  4324. source: "./media/characters/sosha/cooch.svg"
  4325. }
  4326. },
  4327. },
  4328. [
  4329. {
  4330. name: "Normal",
  4331. height: math.unit(12, "feet"),
  4332. default: true
  4333. }
  4334. ]
  4335. ))
  4336. characterMakers.push(() => makeCharacter(
  4337. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4338. {
  4339. side: {
  4340. height: math.unit(5 + 5 / 12, "feet"),
  4341. weight: math.unit(170, "kg"),
  4342. name: "Side",
  4343. image: {
  4344. source: "./media/characters/runnola/side.svg",
  4345. extra: 741 / 448,
  4346. bottom: 0.05
  4347. }
  4348. },
  4349. },
  4350. [
  4351. {
  4352. name: "Small",
  4353. height: math.unit(3, "feet")
  4354. },
  4355. {
  4356. name: "Normal",
  4357. height: math.unit(5 + 5 / 12, "feet"),
  4358. default: true
  4359. },
  4360. {
  4361. name: "Big",
  4362. height: math.unit(10, "feet")
  4363. },
  4364. ]
  4365. ))
  4366. characterMakers.push(() => makeCharacter(
  4367. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4368. {
  4369. front: {
  4370. height: math.unit(2, "meter"),
  4371. weight: math.unit(50, "kg"),
  4372. name: "Front",
  4373. image: {
  4374. source: "./media/characters/kurribird/front.svg",
  4375. bottom: 0.015
  4376. }
  4377. },
  4378. frontAlt: {
  4379. height: math.unit(1.5, "meter"),
  4380. weight: math.unit(50, "kg"),
  4381. name: "Front (Alt)",
  4382. image: {
  4383. source: "./media/characters/kurribird/front-alt.svg",
  4384. extra: 1.45
  4385. }
  4386. },
  4387. },
  4388. [
  4389. {
  4390. name: "Normal",
  4391. height: math.unit(7, "feet")
  4392. },
  4393. {
  4394. name: "Big",
  4395. height: math.unit(12, "feet"),
  4396. default: true
  4397. },
  4398. {
  4399. name: "Macro",
  4400. height: math.unit(1500, "feet")
  4401. },
  4402. {
  4403. name: "Megamacro",
  4404. height: math.unit(2, "miles")
  4405. }
  4406. ]
  4407. ))
  4408. characterMakers.push(() => makeCharacter(
  4409. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4410. {
  4411. front: {
  4412. height: math.unit(2, "meter"),
  4413. weight: math.unit(80, "kg"),
  4414. name: "Front",
  4415. image: {
  4416. source: "./media/characters/elbial/front.svg",
  4417. extra: 1643 / 1556,
  4418. bottom: 60.2 / 1696
  4419. }
  4420. },
  4421. side: {
  4422. height: math.unit(2, "meter"),
  4423. weight: math.unit(80, "kg"),
  4424. name: "Side",
  4425. image: {
  4426. source: "./media/characters/elbial/side.svg",
  4427. extra: 1601/1528,
  4428. bottom: 97/1698
  4429. }
  4430. },
  4431. back: {
  4432. height: math.unit(2, "meter"),
  4433. weight: math.unit(80, "kg"),
  4434. name: "Back",
  4435. image: {
  4436. source: "./media/characters/elbial/back.svg",
  4437. extra: 1653/1569,
  4438. bottom: 20/1673
  4439. }
  4440. },
  4441. frontDressed: {
  4442. height: math.unit(2, "meter"),
  4443. weight: math.unit(80, "kg"),
  4444. name: "Front (Dressed)",
  4445. image: {
  4446. source: "./media/characters/elbial/front-dressed.svg",
  4447. extra: 1638/1569,
  4448. bottom: 70/1708
  4449. }
  4450. },
  4451. genitals: {
  4452. height: math.unit(2 / 3.367, "meter"),
  4453. name: "Genitals",
  4454. image: {
  4455. source: "./media/characters/elbial/genitals.svg"
  4456. }
  4457. },
  4458. },
  4459. [
  4460. {
  4461. name: "Large",
  4462. height: math.unit(100, "feet")
  4463. },
  4464. {
  4465. name: "Macro",
  4466. height: math.unit(500, "feet"),
  4467. default: true
  4468. },
  4469. {
  4470. name: "Megamacro",
  4471. height: math.unit(10, "miles")
  4472. },
  4473. {
  4474. name: "Gigamacro",
  4475. height: math.unit(25000, "miles")
  4476. },
  4477. {
  4478. name: "Full-Size",
  4479. height: math.unit(8000000, "gigaparsecs")
  4480. }
  4481. ]
  4482. ))
  4483. characterMakers.push(() => makeCharacter(
  4484. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4485. {
  4486. front: {
  4487. height: math.unit(2, "meter"),
  4488. weight: math.unit(60, "kg"),
  4489. name: "Front",
  4490. image: {
  4491. source: "./media/characters/noah/front.svg",
  4492. extra: 1383/1313,
  4493. bottom: 104/1487
  4494. }
  4495. },
  4496. hand: {
  4497. height: math.unit(0.6, "feet"),
  4498. name: "Hand",
  4499. image: {
  4500. source: "./media/characters/noah/hand.svg"
  4501. }
  4502. },
  4503. talons: {
  4504. height: math.unit(1.385, "feet"),
  4505. name: "Talons",
  4506. image: {
  4507. source: "./media/characters/noah/talons.svg"
  4508. }
  4509. },
  4510. beak: {
  4511. height: math.unit(0.43, "feet"),
  4512. name: "Beak",
  4513. image: {
  4514. source: "./media/characters/noah/beak.svg"
  4515. }
  4516. },
  4517. collar: {
  4518. height: math.unit(0.88, "feet"),
  4519. name: "Collar",
  4520. image: {
  4521. source: "./media/characters/noah/collar.svg"
  4522. }
  4523. },
  4524. eyeNarrow: {
  4525. height: math.unit(0.18, "feet"),
  4526. name: "Eye (Narrow)",
  4527. image: {
  4528. source: "./media/characters/noah/eye-narrow.svg"
  4529. }
  4530. },
  4531. eyeNormal: {
  4532. height: math.unit(0.18, "feet"),
  4533. name: "Eye (Normal)",
  4534. image: {
  4535. source: "./media/characters/noah/eye-normal.svg"
  4536. }
  4537. },
  4538. eyeWide: {
  4539. height: math.unit(0.18, "feet"),
  4540. name: "Eye (Wide)",
  4541. image: {
  4542. source: "./media/characters/noah/eye-wide.svg"
  4543. }
  4544. },
  4545. ear: {
  4546. height: math.unit(0.64, "feet"),
  4547. name: "Ear",
  4548. image: {
  4549. source: "./media/characters/noah/ear.svg"
  4550. }
  4551. },
  4552. },
  4553. [
  4554. {
  4555. name: "Large",
  4556. height: math.unit(50, "feet")
  4557. },
  4558. {
  4559. name: "Macro",
  4560. height: math.unit(750, "feet"),
  4561. default: true
  4562. },
  4563. {
  4564. name: "Megamacro",
  4565. height: math.unit(50, "miles")
  4566. },
  4567. {
  4568. name: "Gigamacro",
  4569. height: math.unit(100000, "miles")
  4570. },
  4571. {
  4572. name: "Full-Size",
  4573. height: math.unit(3000000000, "miles")
  4574. }
  4575. ]
  4576. ))
  4577. characterMakers.push(() => makeCharacter(
  4578. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4579. {
  4580. front: {
  4581. height: math.unit(2, "meter"),
  4582. weight: math.unit(80, "kg"),
  4583. name: "Front",
  4584. image: {
  4585. source: "./media/characters/natalya/front.svg"
  4586. }
  4587. },
  4588. back: {
  4589. height: math.unit(2, "meter"),
  4590. weight: math.unit(80, "kg"),
  4591. name: "Back",
  4592. image: {
  4593. source: "./media/characters/natalya/back.svg"
  4594. }
  4595. }
  4596. },
  4597. [
  4598. {
  4599. name: "Normal",
  4600. height: math.unit(150, "feet"),
  4601. default: true
  4602. },
  4603. {
  4604. name: "Megamacro",
  4605. height: math.unit(5, "miles")
  4606. },
  4607. {
  4608. name: "Full-Size",
  4609. height: math.unit(600, "kiloparsecs")
  4610. }
  4611. ]
  4612. ))
  4613. characterMakers.push(() => makeCharacter(
  4614. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4615. {
  4616. front: {
  4617. height: math.unit(2, "meter"),
  4618. weight: math.unit(50, "kg"),
  4619. name: "Front",
  4620. image: {
  4621. source: "./media/characters/erestrebah/front.svg",
  4622. extra: 1262/1162,
  4623. bottom: 96/1358
  4624. }
  4625. },
  4626. back: {
  4627. height: math.unit(2, "meter"),
  4628. weight: math.unit(50, "kg"),
  4629. name: "Back",
  4630. image: {
  4631. source: "./media/characters/erestrebah/back.svg",
  4632. extra: 1257/1139,
  4633. bottom: 13/1270
  4634. }
  4635. },
  4636. wing: {
  4637. height: math.unit(2, "meter"),
  4638. weight: math.unit(50, "kg"),
  4639. name: "Wing",
  4640. image: {
  4641. source: "./media/characters/erestrebah/wing.svg",
  4642. extra: 1262/1162,
  4643. bottom: 96/1358
  4644. }
  4645. },
  4646. mouth: {
  4647. height: math.unit(0.39, "feet"),
  4648. name: "Mouth",
  4649. image: {
  4650. source: "./media/characters/erestrebah/mouth.svg"
  4651. }
  4652. }
  4653. },
  4654. [
  4655. {
  4656. name: "Normal",
  4657. height: math.unit(10, "feet")
  4658. },
  4659. {
  4660. name: "Large",
  4661. height: math.unit(50, "feet"),
  4662. default: true
  4663. },
  4664. {
  4665. name: "Macro",
  4666. height: math.unit(300, "feet")
  4667. },
  4668. {
  4669. name: "Macro+",
  4670. height: math.unit(750, "feet")
  4671. },
  4672. {
  4673. name: "Megamacro",
  4674. height: math.unit(3, "miles")
  4675. }
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4680. {
  4681. front: {
  4682. height: math.unit(2, "meter"),
  4683. weight: math.unit(80, "kg"),
  4684. name: "Front",
  4685. image: {
  4686. source: "./media/characters/jennifer/front.svg",
  4687. bottom: 0.11,
  4688. extra: 1.16
  4689. }
  4690. },
  4691. frontAlt: {
  4692. height: math.unit(2, "meter"),
  4693. weight: math.unit(80, "kg"),
  4694. name: "Front (Alt)",
  4695. image: {
  4696. source: "./media/characters/jennifer/front-alt.svg"
  4697. }
  4698. }
  4699. },
  4700. [
  4701. {
  4702. name: "Canon Height",
  4703. height: math.unit(120, "feet"),
  4704. default: true
  4705. },
  4706. {
  4707. name: "Macro+",
  4708. height: math.unit(300, "feet")
  4709. },
  4710. {
  4711. name: "Megamacro",
  4712. height: math.unit(20000, "feet")
  4713. }
  4714. ]
  4715. ))
  4716. characterMakers.push(() => makeCharacter(
  4717. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4718. {
  4719. front: {
  4720. height: math.unit(2, "meter"),
  4721. weight: math.unit(50, "kg"),
  4722. name: "Front",
  4723. image: {
  4724. source: "./media/characters/kalista/front.svg",
  4725. extra: 1314/1145,
  4726. bottom: 101/1415
  4727. }
  4728. },
  4729. back: {
  4730. height: math.unit(2, "meter"),
  4731. weight: math.unit(50, "kg"),
  4732. name: "Back",
  4733. image: {
  4734. source: "./media/characters/kalista/back.svg",
  4735. extra: 1366 / 1156,
  4736. bottom: 33.9 / 1362.78
  4737. }
  4738. }
  4739. },
  4740. [
  4741. {
  4742. name: "Uncomfortably Small",
  4743. height: math.unit(10, "feet")
  4744. },
  4745. {
  4746. name: "Small",
  4747. height: math.unit(30, "feet")
  4748. },
  4749. {
  4750. name: "Macro",
  4751. height: math.unit(100, "feet"),
  4752. default: true
  4753. },
  4754. {
  4755. name: "Macro+",
  4756. height: math.unit(2000, "feet")
  4757. },
  4758. {
  4759. name: "True Form",
  4760. height: math.unit(8924, "miles")
  4761. }
  4762. ]
  4763. ))
  4764. characterMakers.push(() => makeCharacter(
  4765. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4766. {
  4767. front: {
  4768. height: math.unit(2, "meter"),
  4769. weight: math.unit(120, "kg"),
  4770. name: "Front",
  4771. image: {
  4772. source: "./media/characters/ggv/front.svg"
  4773. }
  4774. },
  4775. side: {
  4776. height: math.unit(2, "meter"),
  4777. weight: math.unit(120, "kg"),
  4778. name: "Side",
  4779. image: {
  4780. source: "./media/characters/ggv/side.svg"
  4781. }
  4782. }
  4783. },
  4784. [
  4785. {
  4786. name: "Extremely Puny",
  4787. height: math.unit(9 + 5 / 12, "feet")
  4788. },
  4789. {
  4790. name: "Horribly Small",
  4791. height: math.unit(47.7, "miles"),
  4792. default: true
  4793. },
  4794. {
  4795. name: "Reasonably Sized",
  4796. height: math.unit(25000, "parsecs")
  4797. },
  4798. {
  4799. name: "Slightly Uncompressed",
  4800. height: math.unit(7.77e31, "parsecs")
  4801. },
  4802. {
  4803. name: "Omniversal",
  4804. height: math.unit(1e300, "meters")
  4805. },
  4806. ]
  4807. ))
  4808. characterMakers.push(() => makeCharacter(
  4809. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4810. {
  4811. front: {
  4812. height: math.unit(2, "meter"),
  4813. weight: math.unit(75, "lb"),
  4814. name: "Front",
  4815. image: {
  4816. source: "./media/characters/napalm/front.svg"
  4817. }
  4818. },
  4819. back: {
  4820. height: math.unit(2, "meter"),
  4821. weight: math.unit(75, "lb"),
  4822. name: "Back",
  4823. image: {
  4824. source: "./media/characters/napalm/back.svg"
  4825. }
  4826. }
  4827. },
  4828. [
  4829. {
  4830. name: "Standard",
  4831. height: math.unit(55, "feet"),
  4832. default: true
  4833. }
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(7 + 5 / 6, "feet"),
  4841. weight: math.unit(325, "lb"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/asana/front.svg",
  4845. extra: 1133 / 1060,
  4846. bottom: 15.2 / 1148.6
  4847. }
  4848. },
  4849. back: {
  4850. height: math.unit(7 + 5 / 6, "feet"),
  4851. weight: math.unit(325, "lb"),
  4852. name: "Back",
  4853. image: {
  4854. source: "./media/characters/asana/back.svg",
  4855. extra: 1114 / 1043,
  4856. bottom: 5 / 1120
  4857. }
  4858. },
  4859. dressedDark: {
  4860. height: math.unit(7 + 5 / 6, "feet"),
  4861. weight: math.unit(325, "lb"),
  4862. name: "Dressed (Dark)",
  4863. image: {
  4864. source: "./media/characters/asana/dressed-dark.svg",
  4865. extra: 1133 / 1060,
  4866. bottom: 15.2 / 1148.6
  4867. }
  4868. },
  4869. dressedLight: {
  4870. height: math.unit(7 + 5 / 6, "feet"),
  4871. weight: math.unit(325, "lb"),
  4872. name: "Dressed (Light)",
  4873. image: {
  4874. source: "./media/characters/asana/dressed-light.svg",
  4875. extra: 1133 / 1060,
  4876. bottom: 15.2 / 1148.6
  4877. }
  4878. },
  4879. },
  4880. [
  4881. {
  4882. name: "Standard",
  4883. height: math.unit(7 + 5 / 6, "feet"),
  4884. default: true
  4885. },
  4886. {
  4887. name: "Large",
  4888. height: math.unit(10, "meters")
  4889. },
  4890. {
  4891. name: "Macro",
  4892. height: math.unit(2500, "meters")
  4893. },
  4894. {
  4895. name: "Megamacro",
  4896. height: math.unit(5e6, "meters")
  4897. },
  4898. {
  4899. name: "Examacro",
  4900. height: math.unit(5e12, "lightyears")
  4901. },
  4902. {
  4903. name: "Max Size",
  4904. height: math.unit(1e31, "lightyears")
  4905. }
  4906. ]
  4907. ))
  4908. characterMakers.push(() => makeCharacter(
  4909. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4910. {
  4911. front: {
  4912. height: math.unit(2, "meter"),
  4913. weight: math.unit(60, "kg"),
  4914. name: "Front",
  4915. image: {
  4916. source: "./media/characters/ebony/front.svg",
  4917. bottom: 0.03,
  4918. extra: 1045 / 810 + 0.03
  4919. }
  4920. },
  4921. side: {
  4922. height: math.unit(2, "meter"),
  4923. weight: math.unit(60, "kg"),
  4924. name: "Side",
  4925. image: {
  4926. source: "./media/characters/ebony/side.svg",
  4927. bottom: 0.03,
  4928. extra: 1045 / 810 + 0.03
  4929. }
  4930. },
  4931. back: {
  4932. height: math.unit(2, "meter"),
  4933. weight: math.unit(60, "kg"),
  4934. name: "Back",
  4935. image: {
  4936. source: "./media/characters/ebony/back.svg",
  4937. bottom: 0.01,
  4938. extra: 1045 / 810 + 0.01
  4939. }
  4940. },
  4941. },
  4942. [
  4943. // TODO check why I did this lol
  4944. {
  4945. name: "Standard",
  4946. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4947. default: true
  4948. },
  4949. {
  4950. name: "Macro",
  4951. height: math.unit(200, "feet")
  4952. },
  4953. {
  4954. name: "Gigamacro",
  4955. height: math.unit(13000, "km")
  4956. }
  4957. ]
  4958. ))
  4959. characterMakers.push(() => makeCharacter(
  4960. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4961. {
  4962. front: {
  4963. height: math.unit(6, "feet"),
  4964. weight: math.unit(175, "lb"),
  4965. name: "Front",
  4966. image: {
  4967. source: "./media/characters/mountain/front.svg",
  4968. extra: 972 / 955,
  4969. bottom: 64 / 1036.6
  4970. }
  4971. },
  4972. back: {
  4973. height: math.unit(6, "feet"),
  4974. weight: math.unit(175, "lb"),
  4975. name: "Back",
  4976. image: {
  4977. source: "./media/characters/mountain/back.svg",
  4978. extra: 970 / 950,
  4979. bottom: 28.25 / 999
  4980. }
  4981. },
  4982. },
  4983. [
  4984. {
  4985. name: "Large",
  4986. height: math.unit(20, "meters")
  4987. },
  4988. {
  4989. name: "Macro",
  4990. height: math.unit(300, "meters")
  4991. },
  4992. {
  4993. name: "Gigamacro",
  4994. height: math.unit(10000, "km"),
  4995. default: true
  4996. },
  4997. {
  4998. name: "Examacro",
  4999. height: math.unit(10e9, "lightyears")
  5000. }
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  5005. {
  5006. front: {
  5007. height: math.unit(8, "feet"),
  5008. weight: math.unit(500, "lb"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/rick/front.svg"
  5012. }
  5013. }
  5014. },
  5015. [
  5016. {
  5017. name: "Normal",
  5018. height: math.unit(8, "feet"),
  5019. default: true
  5020. },
  5021. {
  5022. name: "Macro",
  5023. height: math.unit(5, "km")
  5024. }
  5025. ]
  5026. ))
  5027. characterMakers.push(() => makeCharacter(
  5028. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5029. {
  5030. front: {
  5031. height: math.unit(8, "feet"),
  5032. weight: math.unit(120, "lb"),
  5033. name: "Front",
  5034. image: {
  5035. source: "./media/characters/ona/front.svg"
  5036. }
  5037. },
  5038. frontAlt: {
  5039. height: math.unit(8, "feet"),
  5040. weight: math.unit(120, "lb"),
  5041. name: "Front (Alt)",
  5042. image: {
  5043. source: "./media/characters/ona/front-alt.svg"
  5044. }
  5045. },
  5046. back: {
  5047. height: math.unit(8, "feet"),
  5048. weight: math.unit(120, "lb"),
  5049. name: "Back",
  5050. image: {
  5051. source: "./media/characters/ona/back.svg"
  5052. }
  5053. },
  5054. foot: {
  5055. height: math.unit(1.1, "feet"),
  5056. name: "Foot",
  5057. image: {
  5058. source: "./media/characters/ona/foot.svg"
  5059. }
  5060. }
  5061. },
  5062. [
  5063. {
  5064. name: "Megamacro",
  5065. height: math.unit(70, "km"),
  5066. default: true
  5067. },
  5068. {
  5069. name: "Gigamacro",
  5070. height: math.unit(681818, "miles")
  5071. },
  5072. {
  5073. name: "Examacro",
  5074. height: math.unit(3800000, "lightyears")
  5075. },
  5076. ]
  5077. ))
  5078. characterMakers.push(() => makeCharacter(
  5079. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5080. {
  5081. front: {
  5082. height: math.unit(12, "feet"),
  5083. weight: math.unit(3000, "lb"),
  5084. name: "Front",
  5085. image: {
  5086. source: "./media/characters/mech/front.svg",
  5087. extra: 2900 / 2770,
  5088. bottom: 110 / 3010
  5089. }
  5090. },
  5091. back: {
  5092. height: math.unit(12, "feet"),
  5093. weight: math.unit(3000, "lb"),
  5094. name: "Back",
  5095. image: {
  5096. source: "./media/characters/mech/back.svg",
  5097. extra: 3011 / 2890,
  5098. bottom: 94 / 3105
  5099. }
  5100. },
  5101. maw: {
  5102. height: math.unit(3.07, "feet"),
  5103. name: "Maw",
  5104. image: {
  5105. source: "./media/characters/mech/maw.svg"
  5106. }
  5107. },
  5108. head: {
  5109. height: math.unit(3.07, "feet"),
  5110. name: "Head",
  5111. image: {
  5112. source: "./media/characters/mech/head.svg"
  5113. }
  5114. },
  5115. dick: {
  5116. height: math.unit(1.43, "feet"),
  5117. name: "Dick",
  5118. image: {
  5119. source: "./media/characters/mech/dick.svg"
  5120. }
  5121. },
  5122. },
  5123. [
  5124. {
  5125. name: "Normal",
  5126. height: math.unit(12, "feet")
  5127. },
  5128. {
  5129. name: "Macro",
  5130. height: math.unit(300, "feet"),
  5131. default: true
  5132. },
  5133. {
  5134. name: "Macro+",
  5135. height: math.unit(1500, "feet")
  5136. },
  5137. ]
  5138. ))
  5139. characterMakers.push(() => makeCharacter(
  5140. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5141. {
  5142. front: {
  5143. height: math.unit(1.3, "meter"),
  5144. weight: math.unit(30, "kg"),
  5145. name: "Front",
  5146. image: {
  5147. source: "./media/characters/gregory/front.svg",
  5148. }
  5149. }
  5150. },
  5151. [
  5152. {
  5153. name: "Normal",
  5154. height: math.unit(1.3, "meter"),
  5155. default: true
  5156. },
  5157. {
  5158. name: "Macro",
  5159. height: math.unit(20, "meter")
  5160. }
  5161. ]
  5162. ))
  5163. characterMakers.push(() => makeCharacter(
  5164. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5165. {
  5166. front: {
  5167. height: math.unit(2.8, "meter"),
  5168. weight: math.unit(200, "kg"),
  5169. name: "Front",
  5170. image: {
  5171. source: "./media/characters/elory/front.svg",
  5172. }
  5173. }
  5174. },
  5175. [
  5176. {
  5177. name: "Normal",
  5178. height: math.unit(2.8, "meter"),
  5179. default: true
  5180. },
  5181. {
  5182. name: "Macro",
  5183. height: math.unit(38, "meter")
  5184. }
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5189. {
  5190. front: {
  5191. height: math.unit(470, "feet"),
  5192. weight: math.unit(924, "tons"),
  5193. name: "Front",
  5194. image: {
  5195. source: "./media/characters/angelpatamon/front.svg",
  5196. }
  5197. }
  5198. },
  5199. [
  5200. {
  5201. name: "Normal",
  5202. height: math.unit(470, "feet"),
  5203. default: true
  5204. },
  5205. {
  5206. name: "Deity Size I",
  5207. height: math.unit(28651.2, "km")
  5208. },
  5209. {
  5210. name: "Deity Size II",
  5211. height: math.unit(171907.2, "km")
  5212. }
  5213. ]
  5214. ))
  5215. characterMakers.push(() => makeCharacter(
  5216. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5217. {
  5218. side: {
  5219. height: math.unit(7.2, "meter"),
  5220. weight: math.unit(8.2, "tons"),
  5221. name: "Side",
  5222. image: {
  5223. source: "./media/characters/cryae/side.svg",
  5224. extra: 3500 / 1500
  5225. }
  5226. }
  5227. },
  5228. [
  5229. {
  5230. name: "Normal",
  5231. height: math.unit(7.2, "meter"),
  5232. default: true
  5233. }
  5234. ]
  5235. ))
  5236. characterMakers.push(() => makeCharacter(
  5237. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5238. {
  5239. front: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(175, "lb"),
  5242. name: "Front",
  5243. image: {
  5244. source: "./media/characters/xera/front.svg",
  5245. extra: 2377 / 1972,
  5246. bottom: 75.5 / 2452
  5247. }
  5248. },
  5249. side: {
  5250. height: math.unit(6, "feet"),
  5251. weight: math.unit(175, "lb"),
  5252. name: "Side",
  5253. image: {
  5254. source: "./media/characters/xera/side.svg",
  5255. extra: 2345 / 2019,
  5256. bottom: 39.7 / 2384
  5257. }
  5258. },
  5259. back: {
  5260. height: math.unit(6, "feet"),
  5261. weight: math.unit(175, "lb"),
  5262. name: "Back",
  5263. image: {
  5264. source: "./media/characters/xera/back.svg",
  5265. extra: 2095 / 1984,
  5266. bottom: 67 / 2166
  5267. }
  5268. },
  5269. },
  5270. [
  5271. {
  5272. name: "Small",
  5273. height: math.unit(10, "feet")
  5274. },
  5275. {
  5276. name: "Macro",
  5277. height: math.unit(500, "meters"),
  5278. default: true
  5279. },
  5280. {
  5281. name: "Macro+",
  5282. height: math.unit(10, "km")
  5283. },
  5284. {
  5285. name: "Gigamacro",
  5286. height: math.unit(25000, "km")
  5287. },
  5288. {
  5289. name: "Teramacro",
  5290. height: math.unit(3e6, "km")
  5291. }
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5296. {
  5297. front: {
  5298. height: math.unit(6, "feet"),
  5299. weight: math.unit(175, "lb"),
  5300. name: "Front",
  5301. image: {
  5302. source: "./media/characters/nebula/front.svg",
  5303. extra: 2566 / 2362,
  5304. bottom: 81 / 2644
  5305. }
  5306. }
  5307. },
  5308. [
  5309. {
  5310. name: "Small",
  5311. height: math.unit(4.5, "meters")
  5312. },
  5313. {
  5314. name: "Macro",
  5315. height: math.unit(1500, "meters"),
  5316. default: true
  5317. },
  5318. {
  5319. name: "Megamacro",
  5320. height: math.unit(150, "km")
  5321. },
  5322. {
  5323. name: "Gigamacro",
  5324. height: math.unit(27000, "km")
  5325. }
  5326. ]
  5327. ))
  5328. characterMakers.push(() => makeCharacter(
  5329. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5330. {
  5331. front: {
  5332. height: math.unit(6, "feet"),
  5333. weight: math.unit(225, "lb"),
  5334. name: "Front",
  5335. image: {
  5336. source: "./media/characters/abysgar/front.svg",
  5337. extra: 1739/1614,
  5338. bottom: 71/1810
  5339. }
  5340. },
  5341. frontNsfw: {
  5342. height: math.unit(6, "feet"),
  5343. weight: math.unit(225, "lb"),
  5344. name: "Front (NSFW)",
  5345. image: {
  5346. source: "./media/characters/abysgar/front-nsfw.svg",
  5347. extra: 1739/1614,
  5348. bottom: 71/1810
  5349. }
  5350. },
  5351. back: {
  5352. height: math.unit(4.6, "feet"),
  5353. weight: math.unit(225, "lb"),
  5354. name: "Back",
  5355. image: {
  5356. source: "./media/characters/abysgar/back.svg",
  5357. extra: 1384/1327,
  5358. bottom: 0/1384
  5359. }
  5360. },
  5361. head: {
  5362. height: math.unit(1.25, "feet"),
  5363. name: "Head",
  5364. image: {
  5365. source: "./media/characters/abysgar/head.svg",
  5366. extra: 669/569,
  5367. bottom: 0/669
  5368. }
  5369. },
  5370. },
  5371. [
  5372. {
  5373. name: "Small",
  5374. height: math.unit(4.5, "meters")
  5375. },
  5376. {
  5377. name: "Macro",
  5378. height: math.unit(1250, "meters"),
  5379. default: true
  5380. },
  5381. {
  5382. name: "Megamacro",
  5383. height: math.unit(125, "km")
  5384. },
  5385. {
  5386. name: "Gigamacro",
  5387. height: math.unit(26000, "km")
  5388. }
  5389. ]
  5390. ))
  5391. characterMakers.push(() => makeCharacter(
  5392. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5393. {
  5394. front: {
  5395. height: math.unit(6, "feet"),
  5396. weight: math.unit(180, "lb"),
  5397. name: "Front",
  5398. image: {
  5399. source: "./media/characters/yakuz/front.svg"
  5400. }
  5401. }
  5402. },
  5403. [
  5404. {
  5405. name: "Small",
  5406. height: math.unit(5, "meters")
  5407. },
  5408. {
  5409. name: "Macro",
  5410. height: math.unit(1500, "meters"),
  5411. default: true
  5412. },
  5413. {
  5414. name: "Megamacro",
  5415. height: math.unit(200, "km")
  5416. },
  5417. {
  5418. name: "Gigamacro",
  5419. height: math.unit(100000, "km")
  5420. }
  5421. ]
  5422. ))
  5423. characterMakers.push(() => makeCharacter(
  5424. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5425. {
  5426. front: {
  5427. height: math.unit(6, "feet"),
  5428. weight: math.unit(175, "lb"),
  5429. name: "Front",
  5430. image: {
  5431. source: "./media/characters/mirova/front.svg",
  5432. extra: 3334 / 3071,
  5433. bottom: 42 / 3375.6
  5434. }
  5435. }
  5436. },
  5437. [
  5438. {
  5439. name: "Small",
  5440. height: math.unit(5, "meters")
  5441. },
  5442. {
  5443. name: "Macro",
  5444. height: math.unit(900, "meters"),
  5445. default: true
  5446. },
  5447. {
  5448. name: "Megamacro",
  5449. height: math.unit(135, "km")
  5450. },
  5451. {
  5452. name: "Gigamacro",
  5453. height: math.unit(20000, "km")
  5454. }
  5455. ]
  5456. ))
  5457. characterMakers.push(() => makeCharacter(
  5458. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5459. {
  5460. side: {
  5461. height: math.unit(28.35, "feet"),
  5462. weight: math.unit(99.75, "tons"),
  5463. name: "Side",
  5464. image: {
  5465. source: "./media/characters/asana-mech/side.svg",
  5466. extra: 923 / 699,
  5467. bottom: 50 / 975
  5468. }
  5469. },
  5470. chaingun: {
  5471. height: math.unit(7, "feet"),
  5472. weight: math.unit(2400, "lb"),
  5473. name: "Chaingun",
  5474. image: {
  5475. source: "./media/characters/asana-mech/chaingun.svg"
  5476. }
  5477. },
  5478. laser: {
  5479. height: math.unit(7.12, "feet"),
  5480. weight: math.unit(2000, "lb"),
  5481. name: "Laser",
  5482. image: {
  5483. source: "./media/characters/asana-mech/laser.svg"
  5484. }
  5485. },
  5486. },
  5487. [
  5488. {
  5489. name: "Normal",
  5490. height: math.unit(28.35, "feet"),
  5491. default: true
  5492. },
  5493. {
  5494. name: "Macro",
  5495. height: math.unit(2500, "feet")
  5496. },
  5497. {
  5498. name: "Megamacro",
  5499. height: math.unit(25, "miles")
  5500. },
  5501. {
  5502. name: "Examacro",
  5503. height: math.unit(6e8, "lightyears")
  5504. },
  5505. ]
  5506. ))
  5507. characterMakers.push(() => makeCharacter(
  5508. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5509. {
  5510. front: {
  5511. height: math.unit(5, "meters"),
  5512. weight: math.unit(1000, "kg"),
  5513. name: "Front",
  5514. image: {
  5515. source: "./media/characters/asche/front.svg",
  5516. extra: 1258 / 1190,
  5517. bottom: 47 / 1305
  5518. }
  5519. },
  5520. frontUnderwear: {
  5521. height: math.unit(5, "meters"),
  5522. weight: math.unit(1000, "kg"),
  5523. name: "Front (Underwear)",
  5524. image: {
  5525. source: "./media/characters/asche/front-underwear.svg",
  5526. extra: 1258 / 1190,
  5527. bottom: 47 / 1305
  5528. }
  5529. },
  5530. frontDressed: {
  5531. height: math.unit(5, "meters"),
  5532. weight: math.unit(1000, "kg"),
  5533. name: "Front (Dressed)",
  5534. image: {
  5535. source: "./media/characters/asche/front-dressed.svg",
  5536. extra: 1258 / 1190,
  5537. bottom: 47 / 1305
  5538. }
  5539. },
  5540. frontArmor: {
  5541. height: math.unit(5, "meters"),
  5542. weight: math.unit(1000, "kg"),
  5543. name: "Front (Armored)",
  5544. image: {
  5545. source: "./media/characters/asche/front-armored.svg",
  5546. extra: 1374 / 1308,
  5547. bottom: 23 / 1397
  5548. }
  5549. },
  5550. mp724: {
  5551. height: math.unit(0.96, "meters"),
  5552. weight: math.unit(38, "kg"),
  5553. name: "H&K MP724",
  5554. image: {
  5555. source: "./media/characters/asche/h&k-mp724.svg"
  5556. }
  5557. },
  5558. side: {
  5559. height: math.unit(5, "meters"),
  5560. weight: math.unit(1000, "kg"),
  5561. name: "Side",
  5562. image: {
  5563. source: "./media/characters/asche/side.svg",
  5564. extra: 1717 / 1609,
  5565. bottom: 0.005
  5566. }
  5567. },
  5568. back: {
  5569. height: math.unit(5, "meters"),
  5570. weight: math.unit(1000, "kg"),
  5571. name: "Back",
  5572. image: {
  5573. source: "./media/characters/asche/back.svg",
  5574. extra: 1570 / 1501
  5575. }
  5576. },
  5577. },
  5578. [
  5579. {
  5580. name: "DEFCON 5",
  5581. height: math.unit(5, "meters")
  5582. },
  5583. {
  5584. name: "DEFCON 4",
  5585. height: math.unit(500, "meters"),
  5586. default: true
  5587. },
  5588. {
  5589. name: "DEFCON 3",
  5590. height: math.unit(5, "km")
  5591. },
  5592. {
  5593. name: "DEFCON 2",
  5594. height: math.unit(500, "km")
  5595. },
  5596. {
  5597. name: "DEFCON 1",
  5598. height: math.unit(500000, "km")
  5599. },
  5600. {
  5601. name: "DEFCON 0",
  5602. height: math.unit(3, "gigaparsecs")
  5603. },
  5604. ]
  5605. ))
  5606. characterMakers.push(() => makeCharacter(
  5607. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5608. {
  5609. front: {
  5610. height: math.unit(7, "feet"),
  5611. weight: math.unit(92.7, "kg"),
  5612. name: "Front",
  5613. image: {
  5614. source: "./media/characters/gale/front.svg",
  5615. extra: 977/919,
  5616. bottom: 105/1082
  5617. }
  5618. },
  5619. side: {
  5620. height: math.unit(6.7, "feet"),
  5621. weight: math.unit(92.7, "kg"),
  5622. name: "Side",
  5623. image: {
  5624. source: "./media/characters/gale/side.svg",
  5625. extra: 978/922,
  5626. bottom: 140/1118
  5627. }
  5628. },
  5629. back: {
  5630. height: math.unit(7, "feet"),
  5631. weight: math.unit(92.7, "kg"),
  5632. name: "Back",
  5633. image: {
  5634. source: "./media/characters/gale/back.svg",
  5635. extra: 966/920,
  5636. bottom: 61/1027
  5637. }
  5638. },
  5639. maw: {
  5640. height: math.unit(2.23, "feet"),
  5641. name: "Maw",
  5642. image: {
  5643. source: "./media/characters/gale/maw.svg"
  5644. }
  5645. },
  5646. foot: {
  5647. height: math.unit(2.1, "feet"),
  5648. name: "Foot",
  5649. image: {
  5650. source: "./media/characters/gale/foot.svg"
  5651. }
  5652. },
  5653. },
  5654. [
  5655. {
  5656. name: "Normal",
  5657. height: math.unit(7, "feet")
  5658. },
  5659. {
  5660. name: "Macro",
  5661. height: math.unit(150, "feet"),
  5662. default: true
  5663. },
  5664. {
  5665. name: "Macro+",
  5666. height: math.unit(300, "feet")
  5667. },
  5668. ]
  5669. ))
  5670. characterMakers.push(() => makeCharacter(
  5671. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5672. {
  5673. front: {
  5674. height: math.unit(5 + 10/12, "feet"),
  5675. weight: math.unit(67, "kg"),
  5676. name: "Front",
  5677. image: {
  5678. source: "./media/characters/draylen/front.svg",
  5679. extra: 832/777,
  5680. bottom: 85/917
  5681. }
  5682. }
  5683. },
  5684. [
  5685. {
  5686. name: "Normal",
  5687. height: math.unit(5 + 10/12, "feet")
  5688. },
  5689. {
  5690. name: "Macro",
  5691. height: math.unit(150, "feet"),
  5692. default: true
  5693. }
  5694. ]
  5695. ))
  5696. characterMakers.push(() => makeCharacter(
  5697. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5698. {
  5699. front: {
  5700. height: math.unit(7 + 9 / 12, "feet"),
  5701. weight: math.unit(379, "lbs"),
  5702. name: "Front",
  5703. image: {
  5704. source: "./media/characters/chez/front.svg"
  5705. }
  5706. },
  5707. side: {
  5708. height: math.unit(7 + 9 / 12, "feet"),
  5709. weight: math.unit(379, "lbs"),
  5710. name: "Side",
  5711. image: {
  5712. source: "./media/characters/chez/side.svg"
  5713. }
  5714. }
  5715. },
  5716. [
  5717. {
  5718. name: "Normal",
  5719. height: math.unit(7 + 9 / 12, "feet"),
  5720. default: true
  5721. },
  5722. {
  5723. name: "God King",
  5724. height: math.unit(9750000, "meters")
  5725. }
  5726. ]
  5727. ))
  5728. characterMakers.push(() => makeCharacter(
  5729. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5730. {
  5731. front: {
  5732. height: math.unit(6, "feet"),
  5733. weight: math.unit(275, "lbs"),
  5734. name: "Front",
  5735. image: {
  5736. source: "./media/characters/kaylum/front.svg",
  5737. bottom: 0.01,
  5738. extra: 1166 / 1031
  5739. }
  5740. },
  5741. frontWingless: {
  5742. height: math.unit(6, "feet"),
  5743. weight: math.unit(275, "lbs"),
  5744. name: "Front (Wingless)",
  5745. image: {
  5746. source: "./media/characters/kaylum/front-wingless.svg",
  5747. bottom: 0.01,
  5748. extra: 1117 / 1031
  5749. }
  5750. }
  5751. },
  5752. [
  5753. {
  5754. name: "Normal",
  5755. height: math.unit(3.05, "meters")
  5756. },
  5757. {
  5758. name: "Master",
  5759. height: math.unit(5.5, "meters")
  5760. },
  5761. {
  5762. name: "Rampage",
  5763. height: math.unit(19, "meters")
  5764. },
  5765. {
  5766. name: "Macro Lite",
  5767. height: math.unit(37, "meters")
  5768. },
  5769. {
  5770. name: "Hyper Predator",
  5771. height: math.unit(61, "meters")
  5772. },
  5773. {
  5774. name: "Macro",
  5775. height: math.unit(138, "meters"),
  5776. default: true
  5777. }
  5778. ]
  5779. ))
  5780. characterMakers.push(() => makeCharacter(
  5781. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5782. {
  5783. front: {
  5784. height: math.unit(5 + 5 / 12, "feet"),
  5785. weight: math.unit(120, "lbs"),
  5786. name: "Front",
  5787. image: {
  5788. source: "./media/characters/geta/front.svg",
  5789. extra: 1003/933,
  5790. bottom: 21/1024
  5791. }
  5792. },
  5793. paw: {
  5794. height: math.unit(0.35, "feet"),
  5795. name: "Paw",
  5796. image: {
  5797. source: "./media/characters/geta/paw.svg"
  5798. }
  5799. },
  5800. },
  5801. [
  5802. {
  5803. name: "Micro",
  5804. height: math.unit(3, "inches"),
  5805. default: true
  5806. },
  5807. {
  5808. name: "Normal",
  5809. height: math.unit(5 + 5 / 12, "feet")
  5810. }
  5811. ]
  5812. ))
  5813. characterMakers.push(() => makeCharacter(
  5814. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5815. {
  5816. front: {
  5817. height: math.unit(6, "feet"),
  5818. weight: math.unit(300, "lbs"),
  5819. name: "Front",
  5820. image: {
  5821. source: "./media/characters/tyrnn/front.svg"
  5822. }
  5823. }
  5824. },
  5825. [
  5826. {
  5827. name: "Main Height",
  5828. height: math.unit(355, "feet"),
  5829. default: true
  5830. },
  5831. {
  5832. name: "Fave. Height",
  5833. height: math.unit(2400, "feet")
  5834. }
  5835. ]
  5836. ))
  5837. characterMakers.push(() => makeCharacter(
  5838. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5839. {
  5840. front: {
  5841. height: math.unit(6, "feet"),
  5842. weight: math.unit(300, "lbs"),
  5843. name: "Front",
  5844. image: {
  5845. source: "./media/characters/appledectomy/front.svg"
  5846. }
  5847. }
  5848. },
  5849. [
  5850. {
  5851. name: "Macro",
  5852. height: math.unit(2500, "feet")
  5853. },
  5854. {
  5855. name: "Megamacro",
  5856. height: math.unit(50, "miles"),
  5857. default: true
  5858. },
  5859. {
  5860. name: "Gigamacro",
  5861. height: math.unit(5000, "miles")
  5862. },
  5863. {
  5864. name: "Teramacro",
  5865. height: math.unit(250000, "miles")
  5866. },
  5867. ]
  5868. ))
  5869. characterMakers.push(() => makeCharacter(
  5870. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5871. {
  5872. front: {
  5873. height: math.unit(6, "feet"),
  5874. weight: math.unit(200, "lbs"),
  5875. name: "Front",
  5876. image: {
  5877. source: "./media/characters/vulpes/front.svg",
  5878. extra: 573 / 543,
  5879. bottom: 0.033
  5880. }
  5881. },
  5882. side: {
  5883. height: math.unit(6, "feet"),
  5884. weight: math.unit(200, "lbs"),
  5885. name: "Side",
  5886. image: {
  5887. source: "./media/characters/vulpes/side.svg",
  5888. extra: 577 / 549,
  5889. bottom: 11 / 588
  5890. }
  5891. },
  5892. back: {
  5893. height: math.unit(6, "feet"),
  5894. weight: math.unit(200, "lbs"),
  5895. name: "Back",
  5896. image: {
  5897. source: "./media/characters/vulpes/back.svg",
  5898. extra: 573 / 549,
  5899. bottom: 20 / 593
  5900. }
  5901. },
  5902. feet: {
  5903. height: math.unit(1.276, "feet"),
  5904. name: "Feet",
  5905. image: {
  5906. source: "./media/characters/vulpes/feet.svg"
  5907. }
  5908. },
  5909. maw: {
  5910. height: math.unit(1.18, "feet"),
  5911. name: "Maw",
  5912. image: {
  5913. source: "./media/characters/vulpes/maw.svg"
  5914. }
  5915. },
  5916. },
  5917. [
  5918. {
  5919. name: "Micro",
  5920. height: math.unit(2, "inches")
  5921. },
  5922. {
  5923. name: "Normal",
  5924. height: math.unit(6.3, "feet")
  5925. },
  5926. {
  5927. name: "Macro",
  5928. height: math.unit(850, "feet")
  5929. },
  5930. {
  5931. name: "Megamacro",
  5932. height: math.unit(7500, "feet"),
  5933. default: true
  5934. },
  5935. {
  5936. name: "Gigamacro",
  5937. height: math.unit(570000, "miles")
  5938. }
  5939. ]
  5940. ))
  5941. characterMakers.push(() => makeCharacter(
  5942. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5943. {
  5944. front: {
  5945. height: math.unit(6, "feet"),
  5946. weight: math.unit(210, "lbs"),
  5947. name: "Front",
  5948. image: {
  5949. source: "./media/characters/rain-fallen/front.svg"
  5950. }
  5951. },
  5952. side: {
  5953. height: math.unit(6, "feet"),
  5954. weight: math.unit(210, "lbs"),
  5955. name: "Side",
  5956. image: {
  5957. source: "./media/characters/rain-fallen/side.svg"
  5958. }
  5959. },
  5960. back: {
  5961. height: math.unit(6, "feet"),
  5962. weight: math.unit(210, "lbs"),
  5963. name: "Back",
  5964. image: {
  5965. source: "./media/characters/rain-fallen/back.svg"
  5966. }
  5967. },
  5968. feral: {
  5969. height: math.unit(9, "feet"),
  5970. weight: math.unit(700, "lbs"),
  5971. name: "Feral",
  5972. image: {
  5973. source: "./media/characters/rain-fallen/feral.svg"
  5974. }
  5975. },
  5976. },
  5977. [
  5978. {
  5979. name: "Meddling with Mortals",
  5980. height: math.unit(8 + 8/12, "feet")
  5981. },
  5982. {
  5983. name: "Normal",
  5984. height: math.unit(5, "meter")
  5985. },
  5986. {
  5987. name: "Macro",
  5988. height: math.unit(150, "meter"),
  5989. default: true
  5990. },
  5991. {
  5992. name: "Megamacro",
  5993. height: math.unit(278e6, "meter")
  5994. },
  5995. {
  5996. name: "Gigamacro",
  5997. height: math.unit(2e9, "meter")
  5998. },
  5999. {
  6000. name: "Teramacro",
  6001. height: math.unit(8e12, "meter")
  6002. },
  6003. {
  6004. name: "Devourer",
  6005. height: math.unit(14, "zettameters")
  6006. },
  6007. {
  6008. name: "Scarlet King",
  6009. height: math.unit(18, "yottameters")
  6010. },
  6011. {
  6012. name: "Void",
  6013. height: math.unit(1e88, "yottameters")
  6014. }
  6015. ]
  6016. ))
  6017. characterMakers.push(() => makeCharacter(
  6018. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6019. {
  6020. standing: {
  6021. height: math.unit(6, "feet"),
  6022. weight: math.unit(180, "lbs"),
  6023. name: "Standing",
  6024. image: {
  6025. source: "./media/characters/zaakira/standing.svg",
  6026. extra: 1599/1504,
  6027. bottom: 39/1638
  6028. }
  6029. },
  6030. laying: {
  6031. height: math.unit(3.3, "feet"),
  6032. weight: math.unit(180, "lbs"),
  6033. name: "Laying",
  6034. image: {
  6035. source: "./media/characters/zaakira/laying.svg"
  6036. }
  6037. },
  6038. },
  6039. [
  6040. {
  6041. name: "Normal",
  6042. height: math.unit(12, "feet")
  6043. },
  6044. {
  6045. name: "Macro",
  6046. height: math.unit(279, "feet"),
  6047. default: true
  6048. }
  6049. ]
  6050. ))
  6051. characterMakers.push(() => makeCharacter(
  6052. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6053. {
  6054. femSfw: {
  6055. height: math.unit(8, "feet"),
  6056. weight: math.unit(350, "lb"),
  6057. name: "Fem",
  6058. image: {
  6059. source: "./media/characters/sigvald/fem-sfw.svg",
  6060. extra: 182 / 164,
  6061. bottom: 8.7 / 190.5
  6062. }
  6063. },
  6064. femNsfw: {
  6065. height: math.unit(8, "feet"),
  6066. weight: math.unit(350, "lb"),
  6067. name: "Fem (NSFW)",
  6068. image: {
  6069. source: "./media/characters/sigvald/fem-nsfw.svg",
  6070. extra: 182 / 164,
  6071. bottom: 8.7 / 190.5
  6072. }
  6073. },
  6074. maleNsfw: {
  6075. height: math.unit(8, "feet"),
  6076. weight: math.unit(350, "lb"),
  6077. name: "Male (NSFW)",
  6078. image: {
  6079. source: "./media/characters/sigvald/male-nsfw.svg",
  6080. extra: 182 / 164,
  6081. bottom: 8.7 / 190.5
  6082. }
  6083. },
  6084. hermNsfw: {
  6085. height: math.unit(8, "feet"),
  6086. weight: math.unit(350, "lb"),
  6087. name: "Herm (NSFW)",
  6088. image: {
  6089. source: "./media/characters/sigvald/herm-nsfw.svg",
  6090. extra: 182 / 164,
  6091. bottom: 8.7 / 190.5
  6092. }
  6093. },
  6094. dick: {
  6095. height: math.unit(2.36, "feet"),
  6096. name: "Dick",
  6097. image: {
  6098. source: "./media/characters/sigvald/dick.svg"
  6099. }
  6100. },
  6101. eye: {
  6102. height: math.unit(0.31, "feet"),
  6103. name: "Eye",
  6104. image: {
  6105. source: "./media/characters/sigvald/eye.svg"
  6106. }
  6107. },
  6108. mouth: {
  6109. height: math.unit(0.92, "feet"),
  6110. name: "Mouth",
  6111. image: {
  6112. source: "./media/characters/sigvald/mouth.svg"
  6113. }
  6114. },
  6115. paws: {
  6116. height: math.unit(2.2, "feet"),
  6117. name: "Paws",
  6118. image: {
  6119. source: "./media/characters/sigvald/paws.svg"
  6120. }
  6121. }
  6122. },
  6123. [
  6124. {
  6125. name: "Normal",
  6126. height: math.unit(8, "feet")
  6127. },
  6128. {
  6129. name: "Large",
  6130. height: math.unit(12, "feet")
  6131. },
  6132. {
  6133. name: "Larger",
  6134. height: math.unit(20, "feet")
  6135. },
  6136. {
  6137. name: "Macro",
  6138. height: math.unit(150, "feet")
  6139. },
  6140. {
  6141. name: "Macro+",
  6142. height: math.unit(200, "feet"),
  6143. default: true
  6144. },
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6149. {
  6150. anthro_front: {
  6151. height: math.unit(5 + 11/12, "feet"),
  6152. weight: math.unit(250, "lb"),
  6153. name: "Front",
  6154. image: {
  6155. source: "./media/characters/scott/anthro-front.svg",
  6156. extra: 851/781,
  6157. bottom: 54/905
  6158. },
  6159. form: "anthro",
  6160. default: true
  6161. },
  6162. anthro_side: {
  6163. height: math.unit(5.1, "feet"),
  6164. weight: math.unit(250, "lb"),
  6165. name: "Side",
  6166. image: {
  6167. source: "./media/characters/scott/anthro-side.svg"
  6168. },
  6169. form: "anthro",
  6170. },
  6171. anthro_dick: {
  6172. height: math.unit(1.33, "feet"),
  6173. name: "Dick",
  6174. image: {
  6175. source: "./media/characters/scott/anthro-dick.svg"
  6176. },
  6177. form: "anthro",
  6178. },
  6179. side: {
  6180. height: math.unit(12, "feet"),
  6181. weight: math.unit(2000, "kg"),
  6182. name: "Side",
  6183. image: {
  6184. source: "./media/characters/scott/side.svg",
  6185. extra: 754 / 724,
  6186. bottom: 0.069
  6187. },
  6188. form: "taur",
  6189. default: true
  6190. },
  6191. upright: {
  6192. height: math.unit(12, "feet"),
  6193. weight: math.unit(2000, "kg"),
  6194. name: "Upright",
  6195. image: {
  6196. source: "./media/characters/scott/upright.svg",
  6197. extra: 3881 / 3722,
  6198. bottom: 0.05
  6199. },
  6200. form: "taur",
  6201. },
  6202. },
  6203. [
  6204. {
  6205. name: "Normal",
  6206. height: math.unit(5 + 11/12, "feet"),
  6207. default: true,
  6208. form: "anthro"
  6209. },
  6210. {
  6211. name: "Normal",
  6212. height: math.unit(12, "feet"),
  6213. default: true,
  6214. form: "taur"
  6215. },
  6216. ],
  6217. {
  6218. "anthro": {
  6219. name: "Anthro",
  6220. default: true
  6221. },
  6222. "taur": {
  6223. name: "Taur",
  6224. },
  6225. }
  6226. ))
  6227. characterMakers.push(() => makeCharacter(
  6228. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6229. {
  6230. side: {
  6231. height: math.unit(8, "meters"),
  6232. weight: math.unit(84755, "lbs"),
  6233. name: "Side",
  6234. image: {
  6235. source: "./media/characters/tobias/side.svg",
  6236. extra: 1474 / 1096,
  6237. bottom: 38.9 / 1513.1235
  6238. }
  6239. },
  6240. maw: {
  6241. height: math.unit(2.3, "meters"),
  6242. name: "Maw",
  6243. image: {
  6244. source: "./media/characters/tobias/maw.svg"
  6245. }
  6246. },
  6247. burp: {
  6248. height: math.unit(2.85, "meters"),
  6249. name: "Burp",
  6250. image: {
  6251. source: "./media/characters/tobias/burp.svg"
  6252. }
  6253. },
  6254. },
  6255. [
  6256. {
  6257. name: "Normal",
  6258. height: math.unit(8, "meters"),
  6259. default: true
  6260. },
  6261. ]
  6262. ))
  6263. characterMakers.push(() => makeCharacter(
  6264. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6265. {
  6266. front: {
  6267. height: math.unit(5.5, "feet"),
  6268. weight: math.unit(400, "lbs"),
  6269. name: "Front",
  6270. image: {
  6271. source: "./media/characters/kieran/front.svg",
  6272. extra: 2694 / 2364,
  6273. bottom: 217 / 2908
  6274. }
  6275. },
  6276. side: {
  6277. height: math.unit(5.5, "feet"),
  6278. weight: math.unit(400, "lbs"),
  6279. name: "Side",
  6280. image: {
  6281. source: "./media/characters/kieran/side.svg",
  6282. extra: 875 / 777,
  6283. bottom: 84.6 / 959
  6284. }
  6285. },
  6286. },
  6287. [
  6288. {
  6289. name: "Normal",
  6290. height: math.unit(5.5, "feet"),
  6291. default: true
  6292. },
  6293. ]
  6294. ))
  6295. characterMakers.push(() => makeCharacter(
  6296. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6297. {
  6298. side: {
  6299. height: math.unit(2, "meters"),
  6300. weight: math.unit(70, "kg"),
  6301. name: "Side",
  6302. image: {
  6303. source: "./media/characters/sanya/side.svg",
  6304. bottom: 0.02,
  6305. extra: 1.02
  6306. }
  6307. },
  6308. },
  6309. [
  6310. {
  6311. name: "Small",
  6312. height: math.unit(2, "meters")
  6313. },
  6314. {
  6315. name: "Normal",
  6316. height: math.unit(3, "meters")
  6317. },
  6318. {
  6319. name: "Macro",
  6320. height: math.unit(16, "meters"),
  6321. default: true
  6322. },
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6327. {
  6328. front: {
  6329. height: math.unit(2, "meters"),
  6330. weight: math.unit(120, "kg"),
  6331. name: "Front",
  6332. image: {
  6333. source: "./media/characters/miranda/front.svg",
  6334. extra: 195 / 185,
  6335. bottom: 10.9 / 206.5
  6336. }
  6337. },
  6338. back: {
  6339. height: math.unit(2, "meters"),
  6340. weight: math.unit(120, "kg"),
  6341. name: "Back",
  6342. image: {
  6343. source: "./media/characters/miranda/back.svg",
  6344. extra: 201 / 193,
  6345. bottom: 2.3 / 203.7
  6346. }
  6347. },
  6348. },
  6349. [
  6350. {
  6351. name: "Normal",
  6352. height: math.unit(10, "feet"),
  6353. default: true
  6354. }
  6355. ]
  6356. ))
  6357. characterMakers.push(() => makeCharacter(
  6358. { name: "James", species: ["deer"], tags: ["anthro"] },
  6359. {
  6360. side: {
  6361. height: math.unit(2, "meters"),
  6362. weight: math.unit(100, "kg"),
  6363. name: "Front",
  6364. image: {
  6365. source: "./media/characters/james/front.svg",
  6366. extra: 10 / 8.5
  6367. }
  6368. },
  6369. },
  6370. [
  6371. {
  6372. name: "Normal",
  6373. height: math.unit(8.5, "feet"),
  6374. default: true
  6375. }
  6376. ]
  6377. ))
  6378. characterMakers.push(() => makeCharacter(
  6379. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6380. {
  6381. side: {
  6382. height: math.unit(9.5, "feet"),
  6383. weight: math.unit(2500, "lbs"),
  6384. name: "Side",
  6385. image: {
  6386. source: "./media/characters/heather/side.svg"
  6387. }
  6388. },
  6389. },
  6390. [
  6391. {
  6392. name: "Normal",
  6393. height: math.unit(9.5, "feet"),
  6394. default: true
  6395. }
  6396. ]
  6397. ))
  6398. characterMakers.push(() => makeCharacter(
  6399. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6400. {
  6401. side: {
  6402. height: math.unit(6.5, "feet"),
  6403. weight: math.unit(400, "lbs"),
  6404. name: "Side",
  6405. image: {
  6406. source: "./media/characters/lukas/side.svg",
  6407. extra: 7.25 / 6.5
  6408. }
  6409. },
  6410. },
  6411. [
  6412. {
  6413. name: "Normal",
  6414. height: math.unit(6.5, "feet"),
  6415. default: true
  6416. }
  6417. ]
  6418. ))
  6419. characterMakers.push(() => makeCharacter(
  6420. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6421. {
  6422. side: {
  6423. height: math.unit(5, "feet"),
  6424. weight: math.unit(3000, "lbs"),
  6425. name: "Side",
  6426. image: {
  6427. source: "./media/characters/louise/side.svg"
  6428. }
  6429. },
  6430. },
  6431. [
  6432. {
  6433. name: "Normal",
  6434. height: math.unit(5, "feet"),
  6435. default: true
  6436. }
  6437. ]
  6438. ))
  6439. characterMakers.push(() => makeCharacter(
  6440. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6441. {
  6442. side: {
  6443. height: math.unit(6, "feet"),
  6444. weight: math.unit(150, "lbs"),
  6445. name: "Side",
  6446. image: {
  6447. source: "./media/characters/ramona/side.svg",
  6448. extra: 871/854,
  6449. bottom: 41/912
  6450. }
  6451. },
  6452. },
  6453. [
  6454. {
  6455. name: "Normal",
  6456. height: math.unit(6 + 4/12, "feet")
  6457. },
  6458. {
  6459. name: "Minimacro",
  6460. height: math.unit(5.3, "meters"),
  6461. default: true
  6462. },
  6463. {
  6464. name: "Macro",
  6465. height: math.unit(20, "stories")
  6466. },
  6467. {
  6468. name: "Macro+",
  6469. height: math.unit(50, "stories")
  6470. },
  6471. ]
  6472. ))
  6473. characterMakers.push(() => makeCharacter(
  6474. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6475. {
  6476. standing: {
  6477. height: math.unit(5.75, "feet"),
  6478. weight: math.unit(160, "lbs"),
  6479. name: "Standing",
  6480. image: {
  6481. source: "./media/characters/deerpuff/standing.svg",
  6482. extra: 682 / 624
  6483. }
  6484. },
  6485. sitting: {
  6486. height: math.unit(5.75 / 1.79, "feet"),
  6487. weight: math.unit(160, "lbs"),
  6488. name: "Sitting",
  6489. image: {
  6490. source: "./media/characters/deerpuff/sitting.svg",
  6491. bottom: 44 / 400,
  6492. extra: 1
  6493. }
  6494. },
  6495. taurLaying: {
  6496. height: math.unit(6, "feet"),
  6497. weight: math.unit(400, "lbs"),
  6498. name: "Taur (Laying)",
  6499. image: {
  6500. source: "./media/characters/deerpuff/taur-laying.svg"
  6501. }
  6502. },
  6503. },
  6504. [
  6505. {
  6506. name: "Puffball",
  6507. height: math.unit(6, "inches")
  6508. },
  6509. {
  6510. name: "Normalpuff",
  6511. height: math.unit(5.75, "feet")
  6512. },
  6513. {
  6514. name: "Macropuff",
  6515. height: math.unit(1500, "feet"),
  6516. default: true
  6517. },
  6518. {
  6519. name: "Megapuff",
  6520. height: math.unit(500, "miles")
  6521. },
  6522. {
  6523. name: "Gigapuff",
  6524. height: math.unit(250000, "miles")
  6525. },
  6526. {
  6527. name: "Omegapuff",
  6528. height: math.unit(1000, "lightyears")
  6529. },
  6530. ]
  6531. ))
  6532. characterMakers.push(() => makeCharacter(
  6533. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6534. {
  6535. stomping: {
  6536. height: math.unit(6, "feet"),
  6537. weight: math.unit(170, "lbs"),
  6538. name: "Stomping",
  6539. image: {
  6540. source: "./media/characters/vivian/stomping.svg"
  6541. }
  6542. },
  6543. sitting: {
  6544. height: math.unit(6 / 1.75, "feet"),
  6545. weight: math.unit(170, "lbs"),
  6546. name: "Sitting",
  6547. image: {
  6548. source: "./media/characters/vivian/sitting.svg",
  6549. bottom: 1 / 6.4,
  6550. extra: 1,
  6551. }
  6552. },
  6553. },
  6554. [
  6555. {
  6556. name: "Normal",
  6557. height: math.unit(7, "feet"),
  6558. default: true
  6559. },
  6560. {
  6561. name: "Macro",
  6562. height: math.unit(10, "stories")
  6563. },
  6564. {
  6565. name: "Macro+",
  6566. height: math.unit(30, "stories")
  6567. },
  6568. {
  6569. name: "Megamacro",
  6570. height: math.unit(10, "miles")
  6571. },
  6572. {
  6573. name: "Megamacro+",
  6574. height: math.unit(2750000, "meters")
  6575. },
  6576. ]
  6577. ))
  6578. characterMakers.push(() => makeCharacter(
  6579. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6580. {
  6581. front: {
  6582. height: math.unit(6, "feet"),
  6583. weight: math.unit(160, "lbs"),
  6584. name: "Front",
  6585. image: {
  6586. source: "./media/characters/prince/front.svg",
  6587. extra: 1938/1682,
  6588. bottom: 45/1983
  6589. }
  6590. },
  6591. back: {
  6592. height: math.unit(6, "feet"),
  6593. weight: math.unit(160, "lbs"),
  6594. name: "Back",
  6595. image: {
  6596. source: "./media/characters/prince/back.svg",
  6597. extra: 1955/1726,
  6598. bottom: 6/1961
  6599. }
  6600. },
  6601. },
  6602. [
  6603. {
  6604. name: "Normal",
  6605. height: math.unit(7.75, "feet"),
  6606. default: true
  6607. },
  6608. {
  6609. name: "Not cute",
  6610. height: math.unit(17, "feet")
  6611. },
  6612. {
  6613. name: "I said NOT",
  6614. height: math.unit(91, "feet")
  6615. },
  6616. {
  6617. name: "Please stop",
  6618. height: math.unit(560, "feet")
  6619. },
  6620. {
  6621. name: "What have you done",
  6622. height: math.unit(2200, "feet")
  6623. },
  6624. {
  6625. name: "Deer God",
  6626. height: math.unit(3.6, "miles")
  6627. },
  6628. ]
  6629. ))
  6630. characterMakers.push(() => makeCharacter(
  6631. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6632. {
  6633. standing: {
  6634. height: math.unit(6, "feet"),
  6635. weight: math.unit(300, "lbs"),
  6636. name: "Standing",
  6637. image: {
  6638. source: "./media/characters/psymon/standing.svg",
  6639. extra: 1888 / 1810,
  6640. bottom: 0.05
  6641. }
  6642. },
  6643. slithering: {
  6644. height: math.unit(6, "feet"),
  6645. weight: math.unit(300, "lbs"),
  6646. name: "Slithering",
  6647. image: {
  6648. source: "./media/characters/psymon/slithering.svg",
  6649. extra: 1330 / 1224
  6650. }
  6651. },
  6652. slitheringAlt: {
  6653. height: math.unit(6, "feet"),
  6654. weight: math.unit(300, "lbs"),
  6655. name: "Slithering (Alt)",
  6656. image: {
  6657. source: "./media/characters/psymon/slithering-alt.svg",
  6658. extra: 1330 / 1224
  6659. }
  6660. },
  6661. },
  6662. [
  6663. {
  6664. name: "Normal",
  6665. height: math.unit(11.25, "feet"),
  6666. default: true
  6667. },
  6668. {
  6669. name: "Large",
  6670. height: math.unit(27, "feet")
  6671. },
  6672. {
  6673. name: "Giant",
  6674. height: math.unit(87, "feet")
  6675. },
  6676. {
  6677. name: "Macro",
  6678. height: math.unit(365, "feet")
  6679. },
  6680. {
  6681. name: "Megamacro",
  6682. height: math.unit(3, "miles")
  6683. },
  6684. {
  6685. name: "World Serpent",
  6686. height: math.unit(8000, "miles")
  6687. },
  6688. ]
  6689. ))
  6690. characterMakers.push(() => makeCharacter(
  6691. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6692. {
  6693. front: {
  6694. height: math.unit(6, "feet"),
  6695. weight: math.unit(180, "lbs"),
  6696. name: "Front",
  6697. image: {
  6698. source: "./media/characters/daimos/front.svg",
  6699. extra: 4160 / 3897,
  6700. bottom: 0.021
  6701. }
  6702. }
  6703. },
  6704. [
  6705. {
  6706. name: "Normal",
  6707. height: math.unit(8, "feet"),
  6708. default: true
  6709. },
  6710. {
  6711. name: "Big Dog",
  6712. height: math.unit(22, "feet")
  6713. },
  6714. {
  6715. name: "Macro",
  6716. height: math.unit(127, "feet")
  6717. },
  6718. {
  6719. name: "Megamacro",
  6720. height: math.unit(3600, "feet")
  6721. },
  6722. ]
  6723. ))
  6724. characterMakers.push(() => makeCharacter(
  6725. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6726. {
  6727. side: {
  6728. height: math.unit(6, "feet"),
  6729. weight: math.unit(180, "lbs"),
  6730. name: "Side",
  6731. image: {
  6732. source: "./media/characters/blake/side.svg",
  6733. extra: 1212 / 1120,
  6734. bottom: 0.05
  6735. }
  6736. },
  6737. crouched: {
  6738. height: math.unit(6 * 0.57, "feet"),
  6739. weight: math.unit(180, "lbs"),
  6740. name: "Crouched",
  6741. image: {
  6742. source: "./media/characters/blake/crouched.svg",
  6743. extra: 840 / 587,
  6744. bottom: 0.04
  6745. }
  6746. },
  6747. bent: {
  6748. height: math.unit(6 * 0.75, "feet"),
  6749. weight: math.unit(180, "lbs"),
  6750. name: "Bent",
  6751. image: {
  6752. source: "./media/characters/blake/bent.svg",
  6753. extra: 592 / 544,
  6754. bottom: 0.035
  6755. }
  6756. },
  6757. },
  6758. [
  6759. {
  6760. name: "Normal",
  6761. height: math.unit(8 + 1 / 6, "feet"),
  6762. default: true
  6763. },
  6764. {
  6765. name: "Big Backside",
  6766. height: math.unit(37, "feet")
  6767. },
  6768. {
  6769. name: "Subway Shredder",
  6770. height: math.unit(72, "feet")
  6771. },
  6772. {
  6773. name: "City Carver",
  6774. height: math.unit(1675, "feet")
  6775. },
  6776. {
  6777. name: "Tectonic Tweaker",
  6778. height: math.unit(2300, "miles")
  6779. },
  6780. ]
  6781. ))
  6782. characterMakers.push(() => makeCharacter(
  6783. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6784. {
  6785. front: {
  6786. height: math.unit(6, "feet"),
  6787. weight: math.unit(180, "lbs"),
  6788. name: "Front",
  6789. image: {
  6790. source: "./media/characters/guisetto/front.svg",
  6791. extra: 856 / 817,
  6792. bottom: 0.06
  6793. }
  6794. },
  6795. airborne: {
  6796. height: math.unit(6, "feet"),
  6797. weight: math.unit(180, "lbs"),
  6798. name: "Airborne",
  6799. image: {
  6800. source: "./media/characters/guisetto/airborne.svg",
  6801. extra: 584 / 525
  6802. }
  6803. },
  6804. },
  6805. [
  6806. {
  6807. name: "Normal",
  6808. height: math.unit(10 + 11 / 12, "feet"),
  6809. default: true
  6810. },
  6811. {
  6812. name: "Large",
  6813. height: math.unit(35, "feet")
  6814. },
  6815. {
  6816. name: "Macro",
  6817. height: math.unit(475, "feet")
  6818. },
  6819. ]
  6820. ))
  6821. characterMakers.push(() => makeCharacter(
  6822. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6823. {
  6824. front: {
  6825. height: math.unit(6, "feet"),
  6826. weight: math.unit(180, "lbs"),
  6827. name: "Front",
  6828. image: {
  6829. source: "./media/characters/luxor/front.svg",
  6830. extra: 2940 / 2152
  6831. }
  6832. },
  6833. back: {
  6834. height: math.unit(6, "feet"),
  6835. weight: math.unit(180, "lbs"),
  6836. name: "Back",
  6837. image: {
  6838. source: "./media/characters/luxor/back.svg",
  6839. extra: 1083 / 960
  6840. }
  6841. },
  6842. },
  6843. [
  6844. {
  6845. name: "Normal",
  6846. height: math.unit(5 + 5 / 6, "feet"),
  6847. default: true
  6848. },
  6849. {
  6850. name: "Lamp",
  6851. height: math.unit(50, "feet")
  6852. },
  6853. {
  6854. name: "Lämp",
  6855. height: math.unit(300, "feet")
  6856. },
  6857. {
  6858. name: "The sun is a lamp",
  6859. height: math.unit(250000, "miles")
  6860. },
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6865. {
  6866. front: {
  6867. height: math.unit(6, "feet"),
  6868. weight: math.unit(50, "lbs"),
  6869. name: "Front",
  6870. image: {
  6871. source: "./media/characters/huoyan/front.svg"
  6872. }
  6873. },
  6874. side: {
  6875. height: math.unit(6, "feet"),
  6876. weight: math.unit(180, "lbs"),
  6877. name: "Side",
  6878. image: {
  6879. source: "./media/characters/huoyan/side.svg"
  6880. }
  6881. },
  6882. },
  6883. [
  6884. {
  6885. name: "Chef",
  6886. height: math.unit(9, "feet")
  6887. },
  6888. {
  6889. name: "Normal",
  6890. height: math.unit(65, "feet"),
  6891. default: true
  6892. },
  6893. {
  6894. name: "Macro",
  6895. height: math.unit(780, "feet")
  6896. },
  6897. {
  6898. name: "Flaming Mountain",
  6899. height: math.unit(4.8, "miles")
  6900. },
  6901. {
  6902. name: "Celestial",
  6903. height: math.unit(765000, "miles")
  6904. },
  6905. ]
  6906. ))
  6907. characterMakers.push(() => makeCharacter(
  6908. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6909. {
  6910. front: {
  6911. height: math.unit(5 + 3 / 4, "feet"),
  6912. weight: math.unit(120, "lbs"),
  6913. name: "Front",
  6914. image: {
  6915. source: "./media/characters/tails/front.svg"
  6916. }
  6917. }
  6918. },
  6919. [
  6920. {
  6921. name: "Normal",
  6922. height: math.unit(5 + 3 / 4, "feet"),
  6923. default: true
  6924. }
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6929. {
  6930. front: {
  6931. height: math.unit(4, "feet"),
  6932. weight: math.unit(50, "lbs"),
  6933. name: "Front",
  6934. image: {
  6935. source: "./media/characters/rainy/front.svg"
  6936. }
  6937. }
  6938. },
  6939. [
  6940. {
  6941. name: "Macro",
  6942. height: math.unit(800, "feet"),
  6943. default: true
  6944. }
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6949. {
  6950. front: {
  6951. height: math.unit(6, "feet"),
  6952. weight: math.unit(150, "lbs"),
  6953. name: "Front",
  6954. image: {
  6955. source: "./media/characters/rainier/front.svg"
  6956. }
  6957. }
  6958. },
  6959. [
  6960. {
  6961. name: "Micro",
  6962. height: math.unit(2, "mm"),
  6963. default: true
  6964. }
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6969. {
  6970. front: {
  6971. height: math.unit(8 + 4/12, "feet"),
  6972. weight: math.unit(450, "kilograms"),
  6973. name: "Front",
  6974. image: {
  6975. source: "./media/characters/andy-renard/front.svg",
  6976. extra: 862/809,
  6977. bottom: 85/947
  6978. },
  6979. extraAttributes: {
  6980. "pawSize": {
  6981. name: "Paw Size",
  6982. power: 2,
  6983. type: "area",
  6984. base: math.unit(0.45*0.3, "meters^2")
  6985. },
  6986. "handSize": {
  6987. name: "Hand Size",
  6988. power: 2,
  6989. type: "area",
  6990. base: math.unit(0.4 * 0.3, "meters^2")
  6991. },
  6992. "cockSize": {
  6993. name: "Cock Length",
  6994. power: 1,
  6995. type: "length",
  6996. base: math.unit(0.75, "meters")
  6997. },
  6998. "ballDiameter": {
  6999. name: "Ball Diameter",
  7000. power: 1,
  7001. type: "length",
  7002. base: math.unit(0.3, "meters")
  7003. },
  7004. "ballVolume": {
  7005. name: "Ball Volume",
  7006. power: 3,
  7007. type: "volume",
  7008. base: math.unit(0.01413716694, "meters^3")
  7009. },
  7010. }
  7011. },
  7012. back: {
  7013. height: math.unit(8 + 4/12, "feet"),
  7014. weight: math.unit(450, "kilograms"),
  7015. name: "Back",
  7016. image: {
  7017. source: "./media/characters/andy-renard/back.svg",
  7018. extra: 1112/1033,
  7019. bottom: 64/1176
  7020. },
  7021. extraAttributes: {
  7022. "pawSize": {
  7023. name: "Paw Size",
  7024. power: 2,
  7025. type: "area",
  7026. base: math.unit(0.45*0.3, "meters^2")
  7027. },
  7028. "handSize": {
  7029. name: "Hand Size",
  7030. power: 2,
  7031. type: "area",
  7032. base: math.unit(0.4 * 0.3, "meters^2")
  7033. },
  7034. "cockSize": {
  7035. name: "Cock Length",
  7036. power: 1,
  7037. type: "length",
  7038. base: math.unit(0.75, "meters")
  7039. },
  7040. "ballDiameter": {
  7041. name: "Ball Diameter",
  7042. power: 1,
  7043. type: "length",
  7044. base: math.unit(0.3, "meters")
  7045. },
  7046. "ballVolume": {
  7047. name: "Ball Volume",
  7048. power: 3,
  7049. type: "volume",
  7050. base: math.unit(0.01413716694, "meters^3")
  7051. },
  7052. }
  7053. },
  7054. },
  7055. [
  7056. {
  7057. name: "Tall",
  7058. height: math.unit(6 + 8/12, "feet")
  7059. },
  7060. {
  7061. name: "Very Tall",
  7062. height: math.unit(8 + 4/12, "feet")
  7063. },
  7064. {
  7065. name: "Mini Macro",
  7066. height: math.unit(15, "feet"),
  7067. default: true
  7068. },
  7069. {
  7070. name: "Giant",
  7071. height: math.unit(50, "feet")
  7072. },
  7073. {
  7074. name: "Nice",
  7075. height: math.unit(69, "feet")
  7076. },
  7077. {
  7078. name: "Macro",
  7079. height: math.unit(100, "feet")
  7080. },
  7081. {
  7082. name: "Enormous",
  7083. height: math.unit(500, "feet")
  7084. },
  7085. {
  7086. name: "Gargantuan",
  7087. height: math.unit(1000, "feet")
  7088. },
  7089. {
  7090. name: "Mega",
  7091. height: math.unit(1, "mile")
  7092. },
  7093. {
  7094. name: "Giga",
  7095. height: math.unit(50, "miles")
  7096. },
  7097. {
  7098. name: "Tera",
  7099. height: math.unit(1000, "miles")
  7100. },
  7101. {
  7102. name: "Cosmic",
  7103. height: math.unit(1.5, "galaxies")
  7104. },
  7105. {
  7106. name: "God",
  7107. height: math.unit(1.5, "universes")
  7108. },
  7109. {
  7110. name: "Chief Execute God",
  7111. height: math.unit(1.5, "multiverses")
  7112. },
  7113. ]
  7114. ))
  7115. characterMakers.push(() => makeCharacter(
  7116. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7117. {
  7118. front: {
  7119. height: math.unit(6, "feet"),
  7120. weight: math.unit(210, "lbs"),
  7121. name: "Front",
  7122. image: {
  7123. source: "./media/characters/cimmaron/front-sfw.svg",
  7124. extra: 701 / 676,
  7125. bottom: 0.046
  7126. }
  7127. },
  7128. back: {
  7129. height: math.unit(6, "feet"),
  7130. weight: math.unit(210, "lbs"),
  7131. name: "Back",
  7132. image: {
  7133. source: "./media/characters/cimmaron/back-sfw.svg",
  7134. extra: 701 / 676,
  7135. bottom: 0.046
  7136. }
  7137. },
  7138. frontNsfw: {
  7139. height: math.unit(6, "feet"),
  7140. weight: math.unit(210, "lbs"),
  7141. name: "Front (NSFW)",
  7142. image: {
  7143. source: "./media/characters/cimmaron/front-nsfw.svg",
  7144. extra: 701 / 676,
  7145. bottom: 0.046
  7146. }
  7147. },
  7148. backNsfw: {
  7149. height: math.unit(6, "feet"),
  7150. weight: math.unit(210, "lbs"),
  7151. name: "Back (NSFW)",
  7152. image: {
  7153. source: "./media/characters/cimmaron/back-nsfw.svg",
  7154. extra: 701 / 676,
  7155. bottom: 0.046
  7156. }
  7157. },
  7158. dick: {
  7159. height: math.unit(1.714, "feet"),
  7160. name: "Dick",
  7161. image: {
  7162. source: "./media/characters/cimmaron/dick.svg"
  7163. }
  7164. },
  7165. },
  7166. [
  7167. {
  7168. name: "Normal",
  7169. height: math.unit(6, "feet"),
  7170. default: true
  7171. },
  7172. {
  7173. name: "Macro Mayor",
  7174. height: math.unit(350, "meters")
  7175. },
  7176. ]
  7177. ))
  7178. characterMakers.push(() => makeCharacter(
  7179. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7180. {
  7181. front: {
  7182. height: math.unit(6, "feet"),
  7183. weight: math.unit(200, "lbs"),
  7184. name: "Front",
  7185. image: {
  7186. source: "./media/characters/akari/front.svg",
  7187. extra: 962 / 901,
  7188. bottom: 0.04
  7189. }
  7190. }
  7191. },
  7192. [
  7193. {
  7194. name: "Micro",
  7195. height: math.unit(5, "inches"),
  7196. default: true
  7197. },
  7198. {
  7199. name: "Normal",
  7200. height: math.unit(7, "feet")
  7201. },
  7202. ]
  7203. ))
  7204. characterMakers.push(() => makeCharacter(
  7205. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7206. {
  7207. front: {
  7208. height: math.unit(6, "feet"),
  7209. weight: math.unit(140, "lbs"),
  7210. name: "Front",
  7211. image: {
  7212. source: "./media/characters/cynosura/front.svg",
  7213. extra: 437/410,
  7214. bottom: 9/446
  7215. }
  7216. },
  7217. back: {
  7218. height: math.unit(6, "feet"),
  7219. weight: math.unit(140, "lbs"),
  7220. name: "Back",
  7221. image: {
  7222. source: "./media/characters/cynosura/back.svg",
  7223. extra: 1304/1160,
  7224. bottom: 71/1375
  7225. }
  7226. },
  7227. },
  7228. [
  7229. {
  7230. name: "Micro",
  7231. height: math.unit(4, "inches")
  7232. },
  7233. {
  7234. name: "Normal",
  7235. height: math.unit(5.75, "feet"),
  7236. default: true
  7237. },
  7238. {
  7239. name: "Tall",
  7240. height: math.unit(10, "feet")
  7241. },
  7242. {
  7243. name: "Big",
  7244. height: math.unit(20, "feet")
  7245. },
  7246. {
  7247. name: "Macro",
  7248. height: math.unit(50, "feet")
  7249. },
  7250. ]
  7251. ))
  7252. characterMakers.push(() => makeCharacter(
  7253. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7254. {
  7255. front: {
  7256. height: math.unit(13 + 2/12, "feet"),
  7257. weight: math.unit(800, "kg"),
  7258. name: "Front",
  7259. image: {
  7260. source: "./media/characters/gin/front.svg",
  7261. extra: 1312/1191,
  7262. bottom: 45/1357
  7263. }
  7264. },
  7265. mouth: {
  7266. height: math.unit(2.39 * 1.8, "feet"),
  7267. name: "Mouth",
  7268. image: {
  7269. source: "./media/characters/gin/mouth.svg"
  7270. }
  7271. },
  7272. hand: {
  7273. height: math.unit(1.57 * 2.19, "feet"),
  7274. name: "Hand",
  7275. image: {
  7276. source: "./media/characters/gin/hand.svg"
  7277. }
  7278. },
  7279. foot: {
  7280. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7281. name: "Foot",
  7282. image: {
  7283. source: "./media/characters/gin/foot.svg"
  7284. }
  7285. },
  7286. sole: {
  7287. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7288. name: "Sole",
  7289. image: {
  7290. source: "./media/characters/gin/sole.svg"
  7291. }
  7292. },
  7293. },
  7294. [
  7295. {
  7296. name: "Very Small",
  7297. height: math.unit(13 + 2 / 12, "feet")
  7298. },
  7299. {
  7300. name: "Micro",
  7301. height: math.unit(600, "miles")
  7302. },
  7303. {
  7304. name: "Regular",
  7305. height: math.unit(20, "earths"),
  7306. default: true
  7307. },
  7308. {
  7309. name: "Macro",
  7310. height: math.unit(2.2, "solarradii")
  7311. },
  7312. {
  7313. name: "Teramacro",
  7314. height: math.unit(1.2, "galaxies")
  7315. },
  7316. {
  7317. name: "Omegamacro",
  7318. height: math.unit(200, "universes")
  7319. },
  7320. ]
  7321. ))
  7322. characterMakers.push(() => makeCharacter(
  7323. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7324. {
  7325. front: {
  7326. height: math.unit(6 + 1 / 6, "feet"),
  7327. weight: math.unit(178, "lbs"),
  7328. name: "Front",
  7329. image: {
  7330. source: "./media/characters/guy/front.svg"
  7331. }
  7332. }
  7333. },
  7334. [
  7335. {
  7336. name: "Normal",
  7337. height: math.unit(6 + 1 / 6, "feet"),
  7338. default: true
  7339. },
  7340. {
  7341. name: "Large",
  7342. height: math.unit(25 + 7 / 12, "feet")
  7343. },
  7344. {
  7345. name: "Macro",
  7346. height: math.unit(60 + 9 / 12, "feet")
  7347. },
  7348. {
  7349. name: "Macro+",
  7350. height: math.unit(246, "feet")
  7351. },
  7352. {
  7353. name: "Macro++",
  7354. height: math.unit(878, "feet")
  7355. }
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7360. {
  7361. front: {
  7362. height: math.unit(9, "feet"),
  7363. weight: math.unit(800, "lbs"),
  7364. name: "Front",
  7365. image: {
  7366. source: "./media/characters/tiberius/front.svg",
  7367. extra: 2295 / 2071
  7368. }
  7369. },
  7370. back: {
  7371. height: math.unit(9, "feet"),
  7372. weight: math.unit(800, "lbs"),
  7373. name: "Back",
  7374. image: {
  7375. source: "./media/characters/tiberius/back.svg",
  7376. extra: 2373 / 2160
  7377. }
  7378. },
  7379. },
  7380. [
  7381. {
  7382. name: "Normal",
  7383. height: math.unit(9, "feet"),
  7384. default: true
  7385. }
  7386. ]
  7387. ))
  7388. characterMakers.push(() => makeCharacter(
  7389. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7390. {
  7391. front: {
  7392. height: math.unit(6, "feet"),
  7393. weight: math.unit(600, "lbs"),
  7394. name: "Front",
  7395. image: {
  7396. source: "./media/characters/surgo/front.svg",
  7397. extra: 3591 / 2227
  7398. }
  7399. },
  7400. back: {
  7401. height: math.unit(6, "feet"),
  7402. weight: math.unit(600, "lbs"),
  7403. name: "Back",
  7404. image: {
  7405. source: "./media/characters/surgo/back.svg",
  7406. extra: 3557 / 2228
  7407. }
  7408. },
  7409. laying: {
  7410. height: math.unit(6 * 0.85, "feet"),
  7411. weight: math.unit(600, "lbs"),
  7412. name: "Laying",
  7413. image: {
  7414. source: "./media/characters/surgo/laying.svg"
  7415. }
  7416. },
  7417. },
  7418. [
  7419. {
  7420. name: "Normal",
  7421. height: math.unit(6, "feet"),
  7422. default: true
  7423. }
  7424. ]
  7425. ))
  7426. characterMakers.push(() => makeCharacter(
  7427. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7428. {
  7429. side: {
  7430. height: math.unit(6, "feet"),
  7431. weight: math.unit(150, "lbs"),
  7432. name: "Side",
  7433. image: {
  7434. source: "./media/characters/cibus/side.svg",
  7435. extra: 800 / 400
  7436. }
  7437. },
  7438. },
  7439. [
  7440. {
  7441. name: "Normal",
  7442. height: math.unit(6, "feet"),
  7443. default: true
  7444. }
  7445. ]
  7446. ))
  7447. characterMakers.push(() => makeCharacter(
  7448. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7449. {
  7450. front: {
  7451. height: math.unit(6, "feet"),
  7452. weight: math.unit(240, "lbs"),
  7453. name: "Front",
  7454. image: {
  7455. source: "./media/characters/nibbles/front.svg"
  7456. }
  7457. },
  7458. side: {
  7459. height: math.unit(6, "feet"),
  7460. weight: math.unit(240, "lbs"),
  7461. name: "Side",
  7462. image: {
  7463. source: "./media/characters/nibbles/side.svg"
  7464. }
  7465. },
  7466. },
  7467. [
  7468. {
  7469. name: "Normal",
  7470. height: math.unit(9, "feet"),
  7471. default: true
  7472. }
  7473. ]
  7474. ))
  7475. characterMakers.push(() => makeCharacter(
  7476. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7477. {
  7478. side: {
  7479. height: math.unit(5 + 1 / 6, "feet"),
  7480. weight: math.unit(130, "lbs"),
  7481. name: "Side",
  7482. image: {
  7483. source: "./media/characters/rikky/side.svg",
  7484. extra: 851 / 801
  7485. }
  7486. },
  7487. },
  7488. [
  7489. {
  7490. name: "Normal",
  7491. height: math.unit(5 + 1 / 6, "feet")
  7492. },
  7493. {
  7494. name: "Macro",
  7495. height: math.unit(152, "feet"),
  7496. default: true
  7497. },
  7498. {
  7499. name: "Megamacro",
  7500. height: math.unit(7, "miles")
  7501. }
  7502. ]
  7503. ))
  7504. characterMakers.push(() => makeCharacter(
  7505. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7506. {
  7507. side: {
  7508. height: math.unit(370, "cm"),
  7509. weight: math.unit(350, "lbs"),
  7510. name: "Side",
  7511. image: {
  7512. source: "./media/characters/malfressa/side.svg"
  7513. }
  7514. },
  7515. walking: {
  7516. height: math.unit(370, "cm"),
  7517. weight: math.unit(350, "lbs"),
  7518. name: "Walking",
  7519. image: {
  7520. source: "./media/characters/malfressa/walking.svg"
  7521. }
  7522. },
  7523. feral: {
  7524. height: math.unit(2500, "cm"),
  7525. weight: math.unit(100000, "lbs"),
  7526. name: "Feral",
  7527. image: {
  7528. source: "./media/characters/malfressa/feral.svg",
  7529. extra: 2108 / 837,
  7530. bottom: 0.02
  7531. }
  7532. },
  7533. },
  7534. [
  7535. {
  7536. name: "Normal",
  7537. height: math.unit(370, "cm")
  7538. },
  7539. {
  7540. name: "Macro",
  7541. height: math.unit(300, "meters"),
  7542. default: true
  7543. }
  7544. ]
  7545. ))
  7546. characterMakers.push(() => makeCharacter(
  7547. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7548. {
  7549. front: {
  7550. height: math.unit(6, "feet"),
  7551. weight: math.unit(60, "kg"),
  7552. name: "Front",
  7553. image: {
  7554. source: "./media/characters/jaro/front.svg",
  7555. extra: 845/817,
  7556. bottom: 45/890
  7557. }
  7558. },
  7559. back: {
  7560. height: math.unit(6, "feet"),
  7561. weight: math.unit(60, "kg"),
  7562. name: "Back",
  7563. image: {
  7564. source: "./media/characters/jaro/back.svg",
  7565. extra: 847/817,
  7566. bottom: 34/881
  7567. }
  7568. },
  7569. },
  7570. [
  7571. {
  7572. name: "Micro",
  7573. height: math.unit(7, "inches")
  7574. },
  7575. {
  7576. name: "Normal",
  7577. height: math.unit(5.5, "feet"),
  7578. default: true
  7579. },
  7580. {
  7581. name: "Minimacro",
  7582. height: math.unit(20, "feet")
  7583. },
  7584. {
  7585. name: "Macro",
  7586. height: math.unit(200, "meters")
  7587. }
  7588. ]
  7589. ))
  7590. characterMakers.push(() => makeCharacter(
  7591. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7592. {
  7593. front: {
  7594. height: math.unit(6, "feet"),
  7595. weight: math.unit(195, "lb"),
  7596. name: "Front",
  7597. image: {
  7598. source: "./media/characters/rogue/front.svg"
  7599. }
  7600. },
  7601. },
  7602. [
  7603. {
  7604. name: "Macro",
  7605. height: math.unit(90, "feet"),
  7606. default: true
  7607. },
  7608. ]
  7609. ))
  7610. characterMakers.push(() => makeCharacter(
  7611. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7612. {
  7613. standing: {
  7614. height: math.unit(5 + 8 / 12, "feet"),
  7615. weight: math.unit(140, "lb"),
  7616. name: "Standing",
  7617. image: {
  7618. source: "./media/characters/piper/standing.svg",
  7619. extra: 1440/1284,
  7620. bottom: 66/1506
  7621. }
  7622. },
  7623. running: {
  7624. height: math.unit(5 + 8 / 12, "feet"),
  7625. weight: math.unit(140, "lb"),
  7626. name: "Running",
  7627. image: {
  7628. source: "./media/characters/piper/running.svg",
  7629. extra: 3948/3655,
  7630. bottom: 0/3948
  7631. }
  7632. },
  7633. sole: {
  7634. height: math.unit(0.81, "feet"),
  7635. weight: math.unit(2, "kg"),
  7636. name: "Sole",
  7637. image: {
  7638. source: "./media/characters/piper/sole.svg"
  7639. }
  7640. },
  7641. nipple: {
  7642. height: math.unit(0.25, "feet"),
  7643. weight: math.unit(1.5, "lb"),
  7644. name: "Nipple",
  7645. image: {
  7646. source: "./media/characters/piper/nipple.svg"
  7647. }
  7648. },
  7649. head: {
  7650. height: math.unit(1.1, "feet"),
  7651. name: "Head",
  7652. image: {
  7653. source: "./media/characters/piper/head.svg"
  7654. }
  7655. },
  7656. },
  7657. [
  7658. {
  7659. name: "Micro",
  7660. height: math.unit(2, "inches")
  7661. },
  7662. {
  7663. name: "Normal",
  7664. height: math.unit(5 + 8 / 12, "feet")
  7665. },
  7666. {
  7667. name: "Macro",
  7668. height: math.unit(250, "feet"),
  7669. default: true
  7670. },
  7671. {
  7672. name: "Megamacro",
  7673. height: math.unit(7, "miles")
  7674. },
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7679. {
  7680. front: {
  7681. height: math.unit(6, "feet"),
  7682. weight: math.unit(220, "lb"),
  7683. name: "Front",
  7684. image: {
  7685. source: "./media/characters/gemini/front.svg"
  7686. }
  7687. },
  7688. back: {
  7689. height: math.unit(6, "feet"),
  7690. weight: math.unit(220, "lb"),
  7691. name: "Back",
  7692. image: {
  7693. source: "./media/characters/gemini/back.svg"
  7694. }
  7695. },
  7696. kneeling: {
  7697. height: math.unit(6 / 1.5, "feet"),
  7698. weight: math.unit(220, "lb"),
  7699. name: "Kneeling",
  7700. image: {
  7701. source: "./media/characters/gemini/kneeling.svg",
  7702. bottom: 0.02
  7703. }
  7704. },
  7705. },
  7706. [
  7707. {
  7708. name: "Macro",
  7709. height: math.unit(300, "meters"),
  7710. default: true
  7711. },
  7712. {
  7713. name: "Megamacro",
  7714. height: math.unit(6900, "meters")
  7715. },
  7716. ]
  7717. ))
  7718. characterMakers.push(() => makeCharacter(
  7719. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7720. {
  7721. anthro: {
  7722. height: math.unit(2.35, "meters"),
  7723. weight: math.unit(73, "kg"),
  7724. name: "Anthro",
  7725. image: {
  7726. source: "./media/characters/alicia/anthro.svg",
  7727. extra: 2571 / 2385,
  7728. bottom: 75 / 2648
  7729. }
  7730. },
  7731. paw: {
  7732. height: math.unit(1.32, "feet"),
  7733. name: "Paw",
  7734. image: {
  7735. source: "./media/characters/alicia/paw.svg"
  7736. }
  7737. },
  7738. feral: {
  7739. height: math.unit(1.69, "meters"),
  7740. weight: math.unit(73, "kg"),
  7741. name: "Feral",
  7742. image: {
  7743. source: "./media/characters/alicia/feral.svg",
  7744. extra: 2123 / 1715,
  7745. bottom: 222 / 2349
  7746. }
  7747. },
  7748. },
  7749. [
  7750. {
  7751. name: "Normal",
  7752. height: math.unit(2.35, "meters")
  7753. },
  7754. {
  7755. name: "Macro",
  7756. height: math.unit(60, "meters"),
  7757. default: true
  7758. },
  7759. {
  7760. name: "Megamacro",
  7761. height: math.unit(10000, "kilometers")
  7762. },
  7763. ]
  7764. ))
  7765. characterMakers.push(() => makeCharacter(
  7766. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7767. {
  7768. front: {
  7769. height: math.unit(7, "feet"),
  7770. weight: math.unit(250, "lbs"),
  7771. name: "Front",
  7772. image: {
  7773. source: "./media/characters/archy/front.svg"
  7774. }
  7775. }
  7776. },
  7777. [
  7778. {
  7779. name: "Micro",
  7780. height: math.unit(1, "inch")
  7781. },
  7782. {
  7783. name: "Shorty",
  7784. height: math.unit(5, "feet")
  7785. },
  7786. {
  7787. name: "Normal",
  7788. height: math.unit(7, "feet")
  7789. },
  7790. {
  7791. name: "Macro",
  7792. height: math.unit(600, "meters"),
  7793. default: true
  7794. },
  7795. {
  7796. name: "Megamacro",
  7797. height: math.unit(1, "mile")
  7798. },
  7799. ]
  7800. ))
  7801. characterMakers.push(() => makeCharacter(
  7802. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7803. {
  7804. front: {
  7805. height: math.unit(1.65, "meters"),
  7806. weight: math.unit(74, "kg"),
  7807. name: "Front",
  7808. image: {
  7809. source: "./media/characters/berri/front.svg",
  7810. extra: 857 / 837,
  7811. bottom: 18 / 877
  7812. }
  7813. },
  7814. bum: {
  7815. height: math.unit(1.46, "feet"),
  7816. name: "Bum",
  7817. image: {
  7818. source: "./media/characters/berri/bum.svg"
  7819. }
  7820. },
  7821. mouth: {
  7822. height: math.unit(0.44, "feet"),
  7823. name: "Mouth",
  7824. image: {
  7825. source: "./media/characters/berri/mouth.svg"
  7826. }
  7827. },
  7828. paw: {
  7829. height: math.unit(0.826, "feet"),
  7830. name: "Paw",
  7831. image: {
  7832. source: "./media/characters/berri/paw.svg"
  7833. }
  7834. },
  7835. },
  7836. [
  7837. {
  7838. name: "Normal",
  7839. height: math.unit(1.65, "meters")
  7840. },
  7841. {
  7842. name: "Macro",
  7843. height: math.unit(60, "m"),
  7844. default: true
  7845. },
  7846. {
  7847. name: "Megamacro",
  7848. height: math.unit(9.213, "km")
  7849. },
  7850. {
  7851. name: "Planet Eater",
  7852. height: math.unit(489, "megameters")
  7853. },
  7854. {
  7855. name: "Teramacro",
  7856. height: math.unit(2471635000000, "meters")
  7857. },
  7858. {
  7859. name: "Examacro",
  7860. height: math.unit(8.0624e+26, "meters")
  7861. }
  7862. ]
  7863. ))
  7864. characterMakers.push(() => makeCharacter(
  7865. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7866. {
  7867. front: {
  7868. height: math.unit(1.72, "meters"),
  7869. weight: math.unit(68, "kg"),
  7870. name: "Front",
  7871. image: {
  7872. source: "./media/characters/lexi/front.svg"
  7873. }
  7874. }
  7875. },
  7876. [
  7877. {
  7878. name: "Very Smol",
  7879. height: math.unit(10, "mm")
  7880. },
  7881. {
  7882. name: "Micro",
  7883. height: math.unit(6.8, "cm"),
  7884. default: true
  7885. },
  7886. {
  7887. name: "Normal",
  7888. height: math.unit(1.72, "m")
  7889. }
  7890. ]
  7891. ))
  7892. characterMakers.push(() => makeCharacter(
  7893. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7894. {
  7895. front: {
  7896. height: math.unit(1.69, "meters"),
  7897. weight: math.unit(68, "kg"),
  7898. name: "Front",
  7899. image: {
  7900. source: "./media/characters/martin/front.svg",
  7901. extra: 596 / 581
  7902. }
  7903. }
  7904. },
  7905. [
  7906. {
  7907. name: "Micro",
  7908. height: math.unit(6.85, "cm"),
  7909. default: true
  7910. },
  7911. {
  7912. name: "Normal",
  7913. height: math.unit(1.69, "m")
  7914. }
  7915. ]
  7916. ))
  7917. characterMakers.push(() => makeCharacter(
  7918. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7919. {
  7920. front: {
  7921. height: math.unit(1.69, "meters"),
  7922. weight: math.unit(68, "kg"),
  7923. name: "Front",
  7924. image: {
  7925. source: "./media/characters/juno/front.svg"
  7926. }
  7927. }
  7928. },
  7929. [
  7930. {
  7931. name: "Micro",
  7932. height: math.unit(7, "cm")
  7933. },
  7934. {
  7935. name: "Normal",
  7936. height: math.unit(1.89, "m")
  7937. },
  7938. {
  7939. name: "Macro",
  7940. height: math.unit(353, "meters"),
  7941. default: true
  7942. }
  7943. ]
  7944. ))
  7945. characterMakers.push(() => makeCharacter(
  7946. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7947. {
  7948. front: {
  7949. height: math.unit(1.93, "meters"),
  7950. weight: math.unit(83, "kg"),
  7951. name: "Front",
  7952. image: {
  7953. source: "./media/characters/samantha/front.svg"
  7954. }
  7955. },
  7956. frontClothed: {
  7957. height: math.unit(1.93, "meters"),
  7958. weight: math.unit(83, "kg"),
  7959. name: "Front (Clothed)",
  7960. image: {
  7961. source: "./media/characters/samantha/front-clothed.svg"
  7962. }
  7963. },
  7964. back: {
  7965. height: math.unit(1.93, "meters"),
  7966. weight: math.unit(83, "kg"),
  7967. name: "Back",
  7968. image: {
  7969. source: "./media/characters/samantha/back.svg"
  7970. }
  7971. },
  7972. },
  7973. [
  7974. {
  7975. name: "Normal",
  7976. height: math.unit(1.93, "m")
  7977. },
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(74, "meters"),
  7981. default: true
  7982. },
  7983. {
  7984. name: "Macro+",
  7985. height: math.unit(223, "meters"),
  7986. },
  7987. {
  7988. name: "Megamacro",
  7989. height: math.unit(8381, "meters"),
  7990. },
  7991. {
  7992. name: "Megamacro+",
  7993. height: math.unit(12000, "kilometers")
  7994. },
  7995. ]
  7996. ))
  7997. characterMakers.push(() => makeCharacter(
  7998. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7999. {
  8000. front: {
  8001. height: math.unit(1.92, "meters"),
  8002. weight: math.unit(80, "kg"),
  8003. name: "Front",
  8004. image: {
  8005. source: "./media/characters/dr-clay/front.svg"
  8006. }
  8007. },
  8008. frontClothed: {
  8009. height: math.unit(1.92, "meters"),
  8010. weight: math.unit(80, "kg"),
  8011. name: "Front (Clothed)",
  8012. image: {
  8013. source: "./media/characters/dr-clay/front-clothed.svg"
  8014. }
  8015. }
  8016. },
  8017. [
  8018. {
  8019. name: "Normal",
  8020. height: math.unit(1.92, "m")
  8021. },
  8022. {
  8023. name: "Macro",
  8024. height: math.unit(214, "meters"),
  8025. default: true
  8026. },
  8027. {
  8028. name: "Macro+",
  8029. height: math.unit(12.237, "meters"),
  8030. },
  8031. {
  8032. name: "Megamacro",
  8033. height: math.unit(557, "megameters"),
  8034. },
  8035. {
  8036. name: "Unimaginable",
  8037. height: math.unit(120e9, "lightyears")
  8038. },
  8039. ]
  8040. ))
  8041. characterMakers.push(() => makeCharacter(
  8042. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8043. {
  8044. front: {
  8045. height: math.unit(2, "meters"),
  8046. weight: math.unit(80, "kg"),
  8047. name: "Front",
  8048. image: {
  8049. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8050. }
  8051. }
  8052. },
  8053. [
  8054. {
  8055. name: "Teramacro",
  8056. height: math.unit(500000, "lightyears"),
  8057. default: true
  8058. },
  8059. ]
  8060. ))
  8061. characterMakers.push(() => makeCharacter(
  8062. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8063. {
  8064. crux: {
  8065. height: math.unit(2, "meters"),
  8066. weight: math.unit(150, "kg"),
  8067. name: "Crux",
  8068. image: {
  8069. source: "./media/characters/vemus/crux.svg",
  8070. extra: 1074/936,
  8071. bottom: 23/1097
  8072. }
  8073. },
  8074. skunkTanuki: {
  8075. height: math.unit(2, "meters"),
  8076. weight: math.unit(150, "kg"),
  8077. name: "Skunk-Tanuki",
  8078. image: {
  8079. source: "./media/characters/vemus/skunk-tanuki.svg",
  8080. extra: 926/893,
  8081. bottom: 20/946
  8082. }
  8083. },
  8084. },
  8085. [
  8086. {
  8087. name: "Normal",
  8088. height: math.unit(4, "meters"),
  8089. default: true
  8090. },
  8091. {
  8092. name: "Big",
  8093. height: math.unit(8, "meters")
  8094. },
  8095. {
  8096. name: "Macro",
  8097. height: math.unit(100, "meters")
  8098. },
  8099. {
  8100. name: "Macro+",
  8101. height: math.unit(1500, "meters")
  8102. },
  8103. {
  8104. name: "Stellar",
  8105. height: math.unit(14e8, "meters")
  8106. },
  8107. ]
  8108. ))
  8109. characterMakers.push(() => makeCharacter(
  8110. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8111. {
  8112. front: {
  8113. height: math.unit(2, "meters"),
  8114. weight: math.unit(70, "kg"),
  8115. name: "Front",
  8116. image: {
  8117. source: "./media/characters/beherit/front.svg",
  8118. extra: 1234/1109,
  8119. bottom: 55/1289
  8120. }
  8121. }
  8122. },
  8123. [
  8124. {
  8125. name: "Normal",
  8126. height: math.unit(6, "feet")
  8127. },
  8128. {
  8129. name: "Lorg",
  8130. height: math.unit(25, "feet"),
  8131. default: true
  8132. },
  8133. {
  8134. name: "Lorger",
  8135. height: math.unit(75, "feet")
  8136. },
  8137. {
  8138. name: "Macro",
  8139. height: math.unit(200, "meters")
  8140. },
  8141. ]
  8142. ))
  8143. characterMakers.push(() => makeCharacter(
  8144. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8145. {
  8146. front: {
  8147. height: math.unit(2, "meters"),
  8148. weight: math.unit(150, "kg"),
  8149. name: "Front",
  8150. image: {
  8151. source: "./media/characters/everett/front.svg",
  8152. extra: 1017/866,
  8153. bottom: 86/1103
  8154. }
  8155. },
  8156. paw: {
  8157. height: math.unit(2 / 3.6, "meters"),
  8158. name: "Paw",
  8159. image: {
  8160. source: "./media/characters/everett/paw.svg"
  8161. }
  8162. },
  8163. },
  8164. [
  8165. {
  8166. name: "Normal",
  8167. height: math.unit(15, "feet"),
  8168. default: true
  8169. },
  8170. {
  8171. name: "Lorg",
  8172. height: math.unit(70, "feet"),
  8173. default: true
  8174. },
  8175. {
  8176. name: "Lorger",
  8177. height: math.unit(250, "feet")
  8178. },
  8179. {
  8180. name: "Macro",
  8181. height: math.unit(500, "meters")
  8182. },
  8183. ]
  8184. ))
  8185. characterMakers.push(() => makeCharacter(
  8186. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8187. {
  8188. front: {
  8189. height: math.unit(2, "meters"),
  8190. weight: math.unit(86, "kg"),
  8191. name: "Front",
  8192. image: {
  8193. source: "./media/characters/rose/front.svg",
  8194. extra: 1785/1636,
  8195. bottom: 30/1815
  8196. },
  8197. form: "liom",
  8198. default: true
  8199. },
  8200. frontSporty: {
  8201. height: math.unit(2, "meters"),
  8202. weight: math.unit(86, "kg"),
  8203. name: "Front (Sporty)",
  8204. image: {
  8205. source: "./media/characters/rose/front-sporty.svg",
  8206. extra: 350/335,
  8207. bottom: 10/360
  8208. },
  8209. form: "liom"
  8210. },
  8211. frontAlt: {
  8212. height: math.unit(1.6, "meters"),
  8213. weight: math.unit(86, "kg"),
  8214. name: "Front (Alt)",
  8215. image: {
  8216. source: "./media/characters/rose/front-alt.svg",
  8217. extra: 299/283,
  8218. bottom: 3/302
  8219. },
  8220. form: "liom"
  8221. },
  8222. plush: {
  8223. height: math.unit(2, "meters"),
  8224. weight: math.unit(86/3, "kg"),
  8225. name: "Plush",
  8226. image: {
  8227. source: "./media/characters/rose/plush.svg",
  8228. extra: 361/337,
  8229. bottom: 11/372
  8230. },
  8231. form: "plush",
  8232. default: true
  8233. },
  8234. faeStanding: {
  8235. height: math.unit(10, "cm"),
  8236. weight: math.unit(10, "grams"),
  8237. name: "Standing",
  8238. image: {
  8239. source: "./media/characters/rose/fae-standing.svg",
  8240. extra: 1189/1060,
  8241. bottom: 27/1216
  8242. },
  8243. form: "fae",
  8244. default: true
  8245. },
  8246. faeSitting: {
  8247. height: math.unit(5, "cm"),
  8248. weight: math.unit(10, "grams"),
  8249. name: "Sitting",
  8250. image: {
  8251. source: "./media/characters/rose/fae-sitting.svg",
  8252. extra: 737/577,
  8253. bottom: 356/1093
  8254. },
  8255. form: "fae"
  8256. },
  8257. faePaw: {
  8258. height: math.unit(1.35, "cm"),
  8259. name: "Paw",
  8260. image: {
  8261. source: "./media/characters/rose/fae-paw.svg"
  8262. },
  8263. form: "fae"
  8264. },
  8265. },
  8266. [
  8267. {
  8268. name: "True Micro",
  8269. height: math.unit(9, "cm"),
  8270. form: "liom"
  8271. },
  8272. {
  8273. name: "Micro",
  8274. height: math.unit(16, "cm"),
  8275. form: "liom"
  8276. },
  8277. {
  8278. name: "Normal",
  8279. height: math.unit(1.85, "meters"),
  8280. default: true,
  8281. form: "liom"
  8282. },
  8283. {
  8284. name: "Mini-Macro",
  8285. height: math.unit(5, "meters"),
  8286. form: "liom"
  8287. },
  8288. {
  8289. name: "Macro",
  8290. height: math.unit(15, "meters"),
  8291. form: "liom"
  8292. },
  8293. {
  8294. name: "True Macro",
  8295. height: math.unit(40, "meters"),
  8296. form: "liom"
  8297. },
  8298. {
  8299. name: "City Scale",
  8300. height: math.unit(1, "km"),
  8301. form: "liom"
  8302. },
  8303. {
  8304. name: "Plushie",
  8305. height: math.unit(9, "cm"),
  8306. form: "plush",
  8307. default: true
  8308. },
  8309. {
  8310. name: "Fae",
  8311. height: math.unit(10, "cm"),
  8312. form: "fae",
  8313. default: true
  8314. },
  8315. ],
  8316. {
  8317. "liom": {
  8318. name: "Liom"
  8319. },
  8320. "plush": {
  8321. name: "Plush"
  8322. },
  8323. "fae": {
  8324. name: "Fae Fox",
  8325. default: true
  8326. }
  8327. }
  8328. ))
  8329. characterMakers.push(() => makeCharacter(
  8330. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8331. {
  8332. front: {
  8333. height: math.unit(2, "meters"),
  8334. weight: math.unit(350, "lbs"),
  8335. name: "Front",
  8336. image: {
  8337. source: "./media/characters/regal/front.svg"
  8338. }
  8339. },
  8340. back: {
  8341. height: math.unit(2, "meters"),
  8342. weight: math.unit(350, "lbs"),
  8343. name: "Back",
  8344. image: {
  8345. source: "./media/characters/regal/back.svg"
  8346. }
  8347. },
  8348. },
  8349. [
  8350. {
  8351. name: "Macro",
  8352. height: math.unit(350, "feet"),
  8353. default: true
  8354. }
  8355. ]
  8356. ))
  8357. characterMakers.push(() => makeCharacter(
  8358. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8359. {
  8360. standing: {
  8361. height: math.unit(4 + 11/12, "feet"),
  8362. weight: math.unit(100, "lb"),
  8363. name: "Standing",
  8364. image: {
  8365. source: "./media/characters/opal/standing.svg",
  8366. extra: 1588/1513,
  8367. bottom: 23/1611
  8368. }
  8369. },
  8370. sitting: {
  8371. height: math.unit(2.3, "feet"),
  8372. weight: math.unit(100, "lb"),
  8373. name: "Sitting",
  8374. image: {
  8375. source: "./media/characters/opal/sitting.svg",
  8376. extra: 1031/892,
  8377. bottom: 142/1173
  8378. }
  8379. },
  8380. hand: {
  8381. height: math.unit(0.59, "feet"),
  8382. name: "Hand",
  8383. image: {
  8384. source: "./media/characters/opal/hand.svg"
  8385. }
  8386. },
  8387. foot: {
  8388. height: math.unit(0.61, "feet"),
  8389. name: "Foot",
  8390. image: {
  8391. source: "./media/characters/opal/foot.svg"
  8392. }
  8393. },
  8394. },
  8395. [
  8396. {
  8397. name: "Small",
  8398. height: math.unit(4 + 11 / 12, "feet")
  8399. },
  8400. {
  8401. name: "Normal",
  8402. height: math.unit(20, "feet"),
  8403. default: true
  8404. },
  8405. {
  8406. name: "Macro",
  8407. height: math.unit(120, "feet")
  8408. },
  8409. {
  8410. name: "Megamacro",
  8411. height: math.unit(80, "miles")
  8412. },
  8413. {
  8414. name: "True Size",
  8415. height: math.unit(100000, "lightyears")
  8416. },
  8417. ]
  8418. ))
  8419. characterMakers.push(() => makeCharacter(
  8420. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8421. {
  8422. front: {
  8423. height: math.unit(6, "feet"),
  8424. weight: math.unit(200, "lbs"),
  8425. name: "Front",
  8426. image: {
  8427. source: "./media/characters/vector-wuff/front.svg"
  8428. }
  8429. }
  8430. },
  8431. [
  8432. {
  8433. name: "Normal",
  8434. height: math.unit(2.8, "meters")
  8435. },
  8436. {
  8437. name: "Macro",
  8438. height: math.unit(450, "meters"),
  8439. default: true
  8440. },
  8441. {
  8442. name: "Megamacro",
  8443. height: math.unit(15, "kilometers")
  8444. }
  8445. ]
  8446. ))
  8447. characterMakers.push(() => makeCharacter(
  8448. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8449. {
  8450. front: {
  8451. height: math.unit(6, "feet"),
  8452. weight: math.unit(256, "lbs"),
  8453. name: "Front",
  8454. image: {
  8455. source: "./media/characters/dannik/front.svg"
  8456. }
  8457. }
  8458. },
  8459. [
  8460. {
  8461. name: "Macro",
  8462. height: math.unit(69.57, "meters"),
  8463. default: true
  8464. },
  8465. ]
  8466. ))
  8467. characterMakers.push(() => makeCharacter(
  8468. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8469. {
  8470. front: {
  8471. height: math.unit(6, "feet"),
  8472. weight: math.unit(120, "lbs"),
  8473. name: "Front",
  8474. image: {
  8475. source: "./media/characters/azura-saharah/front.svg"
  8476. }
  8477. },
  8478. back: {
  8479. height: math.unit(6, "feet"),
  8480. weight: math.unit(120, "lbs"),
  8481. name: "Back",
  8482. image: {
  8483. source: "./media/characters/azura-saharah/back.svg"
  8484. }
  8485. },
  8486. },
  8487. [
  8488. {
  8489. name: "Macro",
  8490. height: math.unit(100, "feet"),
  8491. default: true
  8492. },
  8493. ]
  8494. ))
  8495. characterMakers.push(() => makeCharacter(
  8496. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8497. {
  8498. side: {
  8499. height: math.unit(5 + 4 / 12, "feet"),
  8500. weight: math.unit(163, "lbs"),
  8501. name: "Side",
  8502. image: {
  8503. source: "./media/characters/kennedy/side.svg"
  8504. }
  8505. }
  8506. },
  8507. [
  8508. {
  8509. name: "Standard Doggo",
  8510. height: math.unit(5 + 4 / 12, "feet")
  8511. },
  8512. {
  8513. name: "Big Doggo",
  8514. height: math.unit(25 + 3 / 12, "feet"),
  8515. default: true
  8516. },
  8517. ]
  8518. ))
  8519. characterMakers.push(() => makeCharacter(
  8520. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8521. {
  8522. front: {
  8523. height: math.unit(5 + 5/12, "feet"),
  8524. weight: math.unit(100, "lbs"),
  8525. name: "Front",
  8526. image: {
  8527. source: "./media/characters/odios-de-lunar/front.svg",
  8528. extra: 1468/1323,
  8529. bottom: 22/1490
  8530. }
  8531. }
  8532. },
  8533. [
  8534. {
  8535. name: "Micro",
  8536. height: math.unit(3, "inches")
  8537. },
  8538. {
  8539. name: "Normal",
  8540. height: math.unit(5.5, "feet"),
  8541. default: true
  8542. },
  8543. {
  8544. name: "Macro",
  8545. height: math.unit(100, "feet")
  8546. },
  8547. ]
  8548. ))
  8549. characterMakers.push(() => makeCharacter(
  8550. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8551. {
  8552. back: {
  8553. height: math.unit(6, "feet"),
  8554. weight: math.unit(220, "lbs"),
  8555. name: "Back",
  8556. image: {
  8557. source: "./media/characters/mandake/back.svg"
  8558. }
  8559. }
  8560. },
  8561. [
  8562. {
  8563. name: "Normal",
  8564. height: math.unit(7, "feet"),
  8565. default: true
  8566. },
  8567. {
  8568. name: "Macro",
  8569. height: math.unit(78, "feet")
  8570. },
  8571. {
  8572. name: "Macro+",
  8573. height: math.unit(300, "meters")
  8574. },
  8575. {
  8576. name: "Macro++",
  8577. height: math.unit(2400, "feet")
  8578. },
  8579. {
  8580. name: "Megamacro",
  8581. height: math.unit(5167, "meters")
  8582. },
  8583. {
  8584. name: "Gigamacro",
  8585. height: math.unit(41769, "miles")
  8586. },
  8587. ]
  8588. ))
  8589. characterMakers.push(() => makeCharacter(
  8590. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8591. {
  8592. front: {
  8593. height: math.unit(6, "feet"),
  8594. weight: math.unit(120, "lbs"),
  8595. name: "Front",
  8596. image: {
  8597. source: "./media/characters/yozey/front.svg"
  8598. }
  8599. },
  8600. frontAlt: {
  8601. height: math.unit(6, "feet"),
  8602. weight: math.unit(120, "lbs"),
  8603. name: "Front (Alt)",
  8604. image: {
  8605. source: "./media/characters/yozey/front-alt.svg"
  8606. }
  8607. },
  8608. side: {
  8609. height: math.unit(6, "feet"),
  8610. weight: math.unit(120, "lbs"),
  8611. name: "Side",
  8612. image: {
  8613. source: "./media/characters/yozey/side.svg"
  8614. }
  8615. },
  8616. },
  8617. [
  8618. {
  8619. name: "Micro",
  8620. height: math.unit(3, "inches"),
  8621. default: true
  8622. },
  8623. {
  8624. name: "Normal",
  8625. height: math.unit(6, "feet")
  8626. }
  8627. ]
  8628. ))
  8629. characterMakers.push(() => makeCharacter(
  8630. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8631. {
  8632. front: {
  8633. height: math.unit(6, "feet"),
  8634. weight: math.unit(103, "lbs"),
  8635. name: "Front",
  8636. image: {
  8637. source: "./media/characters/valeska-voss/front.svg"
  8638. }
  8639. }
  8640. },
  8641. [
  8642. {
  8643. name: "Mini-Sized Sub",
  8644. height: math.unit(3.1, "inches")
  8645. },
  8646. {
  8647. name: "Mid-Sized Sub",
  8648. height: math.unit(6.2, "inches")
  8649. },
  8650. {
  8651. name: "Full-Sized Sub",
  8652. height: math.unit(9.3, "inches")
  8653. },
  8654. {
  8655. name: "Normal",
  8656. height: math.unit(5 + 2 / 12, "foot"),
  8657. default: true
  8658. },
  8659. ]
  8660. ))
  8661. characterMakers.push(() => makeCharacter(
  8662. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8663. {
  8664. front: {
  8665. height: math.unit(6, "feet"),
  8666. weight: math.unit(160, "lbs"),
  8667. name: "Front",
  8668. image: {
  8669. source: "./media/characters/gene-zeta/front.svg",
  8670. extra: 3006 / 2826,
  8671. bottom: 182 / 3188
  8672. }
  8673. }
  8674. },
  8675. [
  8676. {
  8677. name: "Micro",
  8678. height: math.unit(6, "inches")
  8679. },
  8680. {
  8681. name: "Normal",
  8682. height: math.unit(5 + 11 / 12, "foot"),
  8683. default: true
  8684. },
  8685. {
  8686. name: "Macro",
  8687. height: math.unit(140, "feet")
  8688. },
  8689. {
  8690. name: "Supercharged",
  8691. height: math.unit(2500, "feet")
  8692. },
  8693. ]
  8694. ))
  8695. characterMakers.push(() => makeCharacter(
  8696. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8697. {
  8698. front: {
  8699. height: math.unit(6, "feet"),
  8700. weight: math.unit(350, "lbs"),
  8701. name: "Front",
  8702. image: {
  8703. source: "./media/characters/razinox/front.svg",
  8704. extra: 1686 / 1548,
  8705. bottom: 28.2 / 1868
  8706. }
  8707. },
  8708. back: {
  8709. height: math.unit(6, "feet"),
  8710. weight: math.unit(350, "lbs"),
  8711. name: "Back",
  8712. image: {
  8713. source: "./media/characters/razinox/back.svg",
  8714. extra: 1660 / 1590,
  8715. bottom: 15 / 1665
  8716. }
  8717. },
  8718. },
  8719. [
  8720. {
  8721. name: "Normal",
  8722. height: math.unit(10 + 8 / 12, "foot")
  8723. },
  8724. {
  8725. name: "Minimacro",
  8726. height: math.unit(15, "foot")
  8727. },
  8728. {
  8729. name: "Macro",
  8730. height: math.unit(60, "foot"),
  8731. default: true
  8732. },
  8733. {
  8734. name: "Megamacro",
  8735. height: math.unit(5, "miles")
  8736. },
  8737. {
  8738. name: "Gigamacro",
  8739. height: math.unit(6000, "miles")
  8740. },
  8741. ]
  8742. ))
  8743. characterMakers.push(() => makeCharacter(
  8744. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8745. {
  8746. front: {
  8747. height: math.unit(6, "feet"),
  8748. weight: math.unit(150, "lbs"),
  8749. name: "Front",
  8750. image: {
  8751. source: "./media/characters/cobalt/front.svg"
  8752. }
  8753. }
  8754. },
  8755. [
  8756. {
  8757. name: "Normal",
  8758. height: math.unit(8 + 1 / 12, "foot")
  8759. },
  8760. {
  8761. name: "Macro",
  8762. height: math.unit(111, "foot"),
  8763. default: true
  8764. },
  8765. {
  8766. name: "Supracosmic",
  8767. height: math.unit(1e42, "feet")
  8768. },
  8769. ]
  8770. ))
  8771. characterMakers.push(() => makeCharacter(
  8772. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8773. {
  8774. front: {
  8775. height: math.unit(5, "inches"),
  8776. name: "Front",
  8777. image: {
  8778. source: "./media/characters/amanda/front.svg",
  8779. extra: 926/791,
  8780. bottom: 38/964
  8781. }
  8782. },
  8783. back: {
  8784. height: math.unit(5, "inches"),
  8785. name: "Back",
  8786. image: {
  8787. source: "./media/characters/amanda/back.svg",
  8788. extra: 909/805,
  8789. bottom: 43/952
  8790. }
  8791. },
  8792. },
  8793. [
  8794. {
  8795. name: "Micro",
  8796. height: math.unit(5, "inches"),
  8797. default: true
  8798. },
  8799. ]
  8800. ))
  8801. characterMakers.push(() => makeCharacter(
  8802. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8803. {
  8804. front: {
  8805. height: math.unit(2.75, "meters"),
  8806. weight: math.unit(1200, "lb"),
  8807. name: "Front",
  8808. image: {
  8809. source: "./media/characters/teal/front.svg",
  8810. extra: 2463 / 2320,
  8811. bottom: 166 / 2629
  8812. }
  8813. },
  8814. back: {
  8815. height: math.unit(2.75, "meters"),
  8816. weight: math.unit(1200, "lb"),
  8817. name: "Back",
  8818. image: {
  8819. source: "./media/characters/teal/back.svg",
  8820. extra: 2580 / 2489,
  8821. bottom: 151 / 2731
  8822. }
  8823. },
  8824. sitting: {
  8825. height: math.unit(1.9, "meters"),
  8826. weight: math.unit(1200, "lb"),
  8827. name: "Sitting",
  8828. image: {
  8829. source: "./media/characters/teal/sitting.svg",
  8830. extra: 623 / 590,
  8831. bottom: 121 / 744
  8832. }
  8833. },
  8834. standing: {
  8835. height: math.unit(2.75, "meters"),
  8836. weight: math.unit(1200, "lb"),
  8837. name: "Standing",
  8838. image: {
  8839. source: "./media/characters/teal/standing.svg",
  8840. extra: 923 / 893,
  8841. bottom: 60 / 983
  8842. }
  8843. },
  8844. stretching: {
  8845. height: math.unit(3.65, "meters"),
  8846. weight: math.unit(1200, "lb"),
  8847. name: "Stretching",
  8848. image: {
  8849. source: "./media/characters/teal/stretching.svg",
  8850. extra: 1276 / 1244,
  8851. bottom: 0 / 1276
  8852. }
  8853. },
  8854. legged: {
  8855. height: math.unit(1.3, "meters"),
  8856. weight: math.unit(100, "lb"),
  8857. name: "Legged",
  8858. image: {
  8859. source: "./media/characters/teal/legged.svg",
  8860. extra: 462 / 437,
  8861. bottom: 24 / 486
  8862. }
  8863. },
  8864. naga: {
  8865. height: math.unit(5.4, "meters"),
  8866. weight: math.unit(4000, "lb"),
  8867. name: "Naga",
  8868. image: {
  8869. source: "./media/characters/teal/naga.svg",
  8870. extra: 1902 / 1858,
  8871. bottom: 0 / 1902
  8872. }
  8873. },
  8874. hand: {
  8875. height: math.unit(0.52, "meters"),
  8876. name: "Hand",
  8877. image: {
  8878. source: "./media/characters/teal/hand.svg"
  8879. }
  8880. },
  8881. maw: {
  8882. height: math.unit(0.43, "meters"),
  8883. name: "Maw",
  8884. image: {
  8885. source: "./media/characters/teal/maw.svg"
  8886. }
  8887. },
  8888. slit: {
  8889. height: math.unit(0.25, "meters"),
  8890. name: "Slit",
  8891. image: {
  8892. source: "./media/characters/teal/slit.svg"
  8893. }
  8894. },
  8895. },
  8896. [
  8897. {
  8898. name: "Normal",
  8899. height: math.unit(2.75, "meters"),
  8900. default: true
  8901. },
  8902. {
  8903. name: "Macro",
  8904. height: math.unit(300, "feet")
  8905. },
  8906. {
  8907. name: "Macro+",
  8908. height: math.unit(2000, "feet")
  8909. },
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8914. {
  8915. frontCat: {
  8916. height: math.unit(6, "feet"),
  8917. weight: math.unit(180, "lbs"),
  8918. name: "Front (Cat)",
  8919. image: {
  8920. source: "./media/characters/ravin-amulet/front-cat.svg"
  8921. }
  8922. },
  8923. frontCatAlt: {
  8924. height: math.unit(6, "feet"),
  8925. weight: math.unit(180, "lbs"),
  8926. name: "Front (Alt, Cat)",
  8927. image: {
  8928. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8929. }
  8930. },
  8931. frontWerewolf: {
  8932. height: math.unit(6 * 1.2, "feet"),
  8933. weight: math.unit(225, "lbs"),
  8934. name: "Front (Werewolf)",
  8935. image: {
  8936. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8937. }
  8938. },
  8939. backWerewolf: {
  8940. height: math.unit(6 * 1.2, "feet"),
  8941. weight: math.unit(225, "lbs"),
  8942. name: "Back (Werewolf)",
  8943. image: {
  8944. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8945. }
  8946. },
  8947. },
  8948. [
  8949. {
  8950. name: "Nano",
  8951. height: math.unit(1, "micrometer")
  8952. },
  8953. {
  8954. name: "Micro",
  8955. height: math.unit(1, "inch")
  8956. },
  8957. {
  8958. name: "Normal",
  8959. height: math.unit(6, "feet"),
  8960. default: true
  8961. },
  8962. {
  8963. name: "Macro",
  8964. height: math.unit(60, "feet")
  8965. }
  8966. ]
  8967. ))
  8968. characterMakers.push(() => makeCharacter(
  8969. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8970. {
  8971. front: {
  8972. height: math.unit(6, "feet"),
  8973. weight: math.unit(165, "lbs"),
  8974. name: "Front",
  8975. image: {
  8976. source: "./media/characters/fluoresce/front.svg"
  8977. }
  8978. }
  8979. },
  8980. [
  8981. {
  8982. name: "Micro",
  8983. height: math.unit(6, "cm")
  8984. },
  8985. {
  8986. name: "Normal",
  8987. height: math.unit(5 + 7 / 12, "feet"),
  8988. default: true
  8989. },
  8990. {
  8991. name: "Macro",
  8992. height: math.unit(56, "feet")
  8993. },
  8994. {
  8995. name: "Megamacro",
  8996. height: math.unit(1.9, "miles")
  8997. },
  8998. ]
  8999. ))
  9000. characterMakers.push(() => makeCharacter(
  9001. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  9002. {
  9003. front: {
  9004. height: math.unit(9 + 6 / 12, "feet"),
  9005. weight: math.unit(523, "lbs"),
  9006. name: "Side",
  9007. image: {
  9008. source: "./media/characters/aurora/side.svg",
  9009. extra: 474/393,
  9010. bottom: 5/479
  9011. }
  9012. }
  9013. },
  9014. [
  9015. {
  9016. name: "Normal",
  9017. height: math.unit(9 + 6 / 12, "feet")
  9018. },
  9019. {
  9020. name: "Macro",
  9021. height: math.unit(96, "feet"),
  9022. default: true
  9023. },
  9024. {
  9025. name: "Macro+",
  9026. height: math.unit(243, "feet")
  9027. },
  9028. ]
  9029. ))
  9030. characterMakers.push(() => makeCharacter(
  9031. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9032. {
  9033. front: {
  9034. height: math.unit(194, "cm"),
  9035. weight: math.unit(90, "kg"),
  9036. name: "Front",
  9037. image: {
  9038. source: "./media/characters/ranek/front.svg",
  9039. extra: 1862/1791,
  9040. bottom: 80/1942
  9041. }
  9042. },
  9043. back: {
  9044. height: math.unit(194, "cm"),
  9045. weight: math.unit(90, "kg"),
  9046. name: "Back",
  9047. image: {
  9048. source: "./media/characters/ranek/back.svg",
  9049. extra: 1853/1787,
  9050. bottom: 74/1927
  9051. }
  9052. },
  9053. feral: {
  9054. height: math.unit(30, "cm"),
  9055. weight: math.unit(1.6, "lbs"),
  9056. name: "Feral",
  9057. image: {
  9058. source: "./media/characters/ranek/feral.svg",
  9059. extra: 990/631,
  9060. bottom: 29/1019
  9061. }
  9062. },
  9063. },
  9064. [
  9065. {
  9066. name: "Normal",
  9067. height: math.unit(194, "cm"),
  9068. default: true
  9069. },
  9070. {
  9071. name: "Macro",
  9072. height: math.unit(100, "meters")
  9073. },
  9074. ]
  9075. ))
  9076. characterMakers.push(() => makeCharacter(
  9077. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9078. {
  9079. front: {
  9080. height: math.unit(5 + 6 / 12, "feet"),
  9081. weight: math.unit(153, "lbs"),
  9082. name: "Front",
  9083. image: {
  9084. source: "./media/characters/andrew-cooper/front.svg"
  9085. }
  9086. },
  9087. },
  9088. [
  9089. {
  9090. name: "Nano",
  9091. height: math.unit(1, "mm")
  9092. },
  9093. {
  9094. name: "Micro",
  9095. height: math.unit(2, "inches")
  9096. },
  9097. {
  9098. name: "Normal",
  9099. height: math.unit(5 + 6 / 12, "feet"),
  9100. default: true
  9101. }
  9102. ]
  9103. ))
  9104. characterMakers.push(() => makeCharacter(
  9105. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9106. {
  9107. front: {
  9108. height: math.unit(6, "feet"),
  9109. weight: math.unit(180, "lbs"),
  9110. name: "Front",
  9111. image: {
  9112. source: "./media/characters/akane-sato/front.svg",
  9113. extra: 1219 / 1140
  9114. }
  9115. },
  9116. back: {
  9117. height: math.unit(6, "feet"),
  9118. weight: math.unit(180, "lbs"),
  9119. name: "Back",
  9120. image: {
  9121. source: "./media/characters/akane-sato/back.svg",
  9122. extra: 1219 / 1170
  9123. }
  9124. },
  9125. },
  9126. [
  9127. {
  9128. name: "Normal",
  9129. height: math.unit(2.5, "meters")
  9130. },
  9131. {
  9132. name: "Macro",
  9133. height: math.unit(250, "meters"),
  9134. default: true
  9135. },
  9136. {
  9137. name: "Megamacro",
  9138. height: math.unit(25, "km")
  9139. },
  9140. ]
  9141. ))
  9142. characterMakers.push(() => makeCharacter(
  9143. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9144. {
  9145. front: {
  9146. height: math.unit(6, "feet"),
  9147. weight: math.unit(65, "kg"),
  9148. name: "Front",
  9149. image: {
  9150. source: "./media/characters/rook/front.svg",
  9151. extra: 960 / 950
  9152. }
  9153. }
  9154. },
  9155. [
  9156. {
  9157. name: "Normal",
  9158. height: math.unit(8.8, "feet")
  9159. },
  9160. {
  9161. name: "Macro",
  9162. height: math.unit(88, "feet"),
  9163. default: true
  9164. },
  9165. {
  9166. name: "Megamacro",
  9167. height: math.unit(8, "miles")
  9168. },
  9169. ]
  9170. ))
  9171. characterMakers.push(() => makeCharacter(
  9172. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9173. {
  9174. front: {
  9175. height: math.unit(12 + 2 / 12, "feet"),
  9176. weight: math.unit(808, "lbs"),
  9177. name: "Front",
  9178. image: {
  9179. source: "./media/characters/prodigy/front.svg"
  9180. }
  9181. }
  9182. },
  9183. [
  9184. {
  9185. name: "Normal",
  9186. height: math.unit(12 + 2 / 12, "feet"),
  9187. default: true
  9188. },
  9189. {
  9190. name: "Macro",
  9191. height: math.unit(143, "feet")
  9192. },
  9193. {
  9194. name: "Macro+",
  9195. height: math.unit(400, "feet")
  9196. },
  9197. ]
  9198. ))
  9199. characterMakers.push(() => makeCharacter(
  9200. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9201. {
  9202. front: {
  9203. height: math.unit(6, "feet"),
  9204. weight: math.unit(225, "lbs"),
  9205. name: "Front",
  9206. image: {
  9207. source: "./media/characters/daniel/front.svg"
  9208. }
  9209. },
  9210. leaning: {
  9211. height: math.unit(6, "feet"),
  9212. weight: math.unit(225, "lbs"),
  9213. name: "Leaning",
  9214. image: {
  9215. source: "./media/characters/daniel/leaning.svg"
  9216. }
  9217. },
  9218. },
  9219. [
  9220. {
  9221. name: "Macro",
  9222. height: math.unit(1000, "feet"),
  9223. default: true
  9224. },
  9225. ]
  9226. ))
  9227. characterMakers.push(() => makeCharacter(
  9228. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9229. {
  9230. front: {
  9231. height: math.unit(6, "feet"),
  9232. weight: math.unit(88, "lbs"),
  9233. name: "Front",
  9234. image: {
  9235. source: "./media/characters/chiros/front.svg",
  9236. extra: 306 / 226
  9237. }
  9238. },
  9239. side: {
  9240. height: math.unit(6, "feet"),
  9241. weight: math.unit(88, "lbs"),
  9242. name: "Side",
  9243. image: {
  9244. source: "./media/characters/chiros/side.svg",
  9245. extra: 306 / 226
  9246. }
  9247. },
  9248. },
  9249. [
  9250. {
  9251. name: "Normal",
  9252. height: math.unit(6, "cm"),
  9253. default: true
  9254. },
  9255. ]
  9256. ))
  9257. characterMakers.push(() => makeCharacter(
  9258. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9259. {
  9260. front: {
  9261. height: math.unit(6, "feet"),
  9262. weight: math.unit(100, "lbs"),
  9263. name: "Front",
  9264. image: {
  9265. source: "./media/characters/selka/front.svg",
  9266. extra: 947 / 887
  9267. }
  9268. }
  9269. },
  9270. [
  9271. {
  9272. name: "Normal",
  9273. height: math.unit(5, "cm"),
  9274. default: true
  9275. },
  9276. ]
  9277. ))
  9278. characterMakers.push(() => makeCharacter(
  9279. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9280. {
  9281. front: {
  9282. height: math.unit(8 + 3 / 12, "feet"),
  9283. weight: math.unit(424, "lbs"),
  9284. name: "Front",
  9285. image: {
  9286. source: "./media/characters/verin/front.svg",
  9287. extra: 1845 / 1550
  9288. }
  9289. },
  9290. frontArmored: {
  9291. height: math.unit(8 + 3 / 12, "feet"),
  9292. weight: math.unit(424, "lbs"),
  9293. name: "Front (Armored)",
  9294. image: {
  9295. source: "./media/characters/verin/front-armor.svg",
  9296. extra: 1845 / 1550,
  9297. bottom: 0.01
  9298. }
  9299. },
  9300. back: {
  9301. height: math.unit(8 + 3 / 12, "feet"),
  9302. weight: math.unit(424, "lbs"),
  9303. name: "Back",
  9304. image: {
  9305. source: "./media/characters/verin/back.svg",
  9306. bottom: 0.1,
  9307. extra: 1
  9308. }
  9309. },
  9310. foot: {
  9311. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9312. name: "Foot",
  9313. image: {
  9314. source: "./media/characters/verin/foot.svg"
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Normal",
  9321. height: math.unit(8 + 3 / 12, "feet")
  9322. },
  9323. {
  9324. name: "Minimacro",
  9325. height: math.unit(21, "feet"),
  9326. default: true
  9327. },
  9328. {
  9329. name: "Macro",
  9330. height: math.unit(626, "feet")
  9331. },
  9332. ]
  9333. ))
  9334. characterMakers.push(() => makeCharacter(
  9335. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9336. {
  9337. front: {
  9338. height: math.unit(2.718, "meters"),
  9339. weight: math.unit(150, "lbs"),
  9340. name: "Front",
  9341. image: {
  9342. source: "./media/characters/sovrim-terraquian/front.svg",
  9343. extra: 1752/1689,
  9344. bottom: 36/1788
  9345. }
  9346. },
  9347. back: {
  9348. height: math.unit(2.718, "meters"),
  9349. weight: math.unit(150, "lbs"),
  9350. name: "Back",
  9351. image: {
  9352. source: "./media/characters/sovrim-terraquian/back.svg",
  9353. extra: 1698/1657,
  9354. bottom: 58/1756
  9355. }
  9356. },
  9357. tongue: {
  9358. height: math.unit(2.865, "feet"),
  9359. name: "Tongue",
  9360. image: {
  9361. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9362. }
  9363. },
  9364. hand: {
  9365. height: math.unit(1.61, "feet"),
  9366. name: "Hand",
  9367. image: {
  9368. source: "./media/characters/sovrim-terraquian/hand.svg"
  9369. }
  9370. },
  9371. foot: {
  9372. height: math.unit(1.05, "feet"),
  9373. name: "Foot",
  9374. image: {
  9375. source: "./media/characters/sovrim-terraquian/foot.svg"
  9376. }
  9377. },
  9378. footAlt: {
  9379. height: math.unit(0.88, "feet"),
  9380. name: "Foot (Alt)",
  9381. image: {
  9382. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9383. }
  9384. },
  9385. },
  9386. [
  9387. {
  9388. name: "Micro",
  9389. height: math.unit(2, "inches")
  9390. },
  9391. {
  9392. name: "Small",
  9393. height: math.unit(1, "meter")
  9394. },
  9395. {
  9396. name: "Normal",
  9397. height: math.unit(Math.E, "meters"),
  9398. default: true
  9399. },
  9400. {
  9401. name: "Macro",
  9402. height: math.unit(20, "meters")
  9403. },
  9404. {
  9405. name: "Macro+",
  9406. height: math.unit(400, "meters")
  9407. },
  9408. ]
  9409. ))
  9410. characterMakers.push(() => makeCharacter(
  9411. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9412. {
  9413. front: {
  9414. height: math.unit(7, "feet"),
  9415. weight: math.unit(489, "lbs"),
  9416. name: "Front",
  9417. image: {
  9418. source: "./media/characters/reece-silvermane/front.svg",
  9419. bottom: 0.02,
  9420. extra: 1
  9421. }
  9422. },
  9423. },
  9424. [
  9425. {
  9426. name: "Macro",
  9427. height: math.unit(1.5, "miles"),
  9428. default: true
  9429. },
  9430. ]
  9431. ))
  9432. characterMakers.push(() => makeCharacter(
  9433. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9434. {
  9435. front: {
  9436. height: math.unit(6, "feet"),
  9437. weight: math.unit(78, "kg"),
  9438. name: "Front",
  9439. image: {
  9440. source: "./media/characters/kane/front.svg",
  9441. extra: 978 / 899
  9442. }
  9443. },
  9444. back: {
  9445. height: math.unit(6, "feet"),
  9446. weight: math.unit(78, "kg"),
  9447. name: "Back",
  9448. image: {
  9449. source: "./media/characters/kane/back.svg",
  9450. extra: 1966/1800,
  9451. bottom: 0/1966
  9452. }
  9453. },
  9454. head: {
  9455. height: math.unit(1.4, "feet"),
  9456. name: "Head",
  9457. image: {
  9458. source: "./media/characters/kane/head.svg"
  9459. }
  9460. },
  9461. },
  9462. [
  9463. {
  9464. name: "Normal",
  9465. height: math.unit(2.1, "m"),
  9466. },
  9467. {
  9468. name: "Macro",
  9469. height: math.unit(1, "km"),
  9470. default: true
  9471. },
  9472. ]
  9473. ))
  9474. characterMakers.push(() => makeCharacter(
  9475. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9476. {
  9477. front: {
  9478. height: math.unit(6, "feet"),
  9479. weight: math.unit(200, "kg"),
  9480. name: "Front",
  9481. image: {
  9482. source: "./media/characters/tegon/front.svg",
  9483. bottom: 0.01,
  9484. extra: 1
  9485. }
  9486. },
  9487. },
  9488. [
  9489. {
  9490. name: "Micro",
  9491. height: math.unit(1, "inch")
  9492. },
  9493. {
  9494. name: "Normal",
  9495. height: math.unit(6 + 3 / 12, "feet"),
  9496. default: true
  9497. },
  9498. {
  9499. name: "Macro",
  9500. height: math.unit(300, "feet")
  9501. },
  9502. {
  9503. name: "Megamacro",
  9504. height: math.unit(69, "miles")
  9505. },
  9506. ]
  9507. ))
  9508. characterMakers.push(() => makeCharacter(
  9509. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9510. {
  9511. side: {
  9512. height: math.unit(6, "feet"),
  9513. weight: math.unit(2304, "lbs"),
  9514. name: "Side",
  9515. image: {
  9516. source: "./media/characters/arcturax/side.svg",
  9517. extra: 790 / 376,
  9518. bottom: 0.01
  9519. }
  9520. },
  9521. },
  9522. [
  9523. {
  9524. name: "Micro",
  9525. height: math.unit(2, "inch")
  9526. },
  9527. {
  9528. name: "Normal",
  9529. height: math.unit(6, "feet")
  9530. },
  9531. {
  9532. name: "Macro",
  9533. height: math.unit(39, "feet"),
  9534. default: true
  9535. },
  9536. {
  9537. name: "Megamacro",
  9538. height: math.unit(7, "miles")
  9539. },
  9540. ]
  9541. ))
  9542. characterMakers.push(() => makeCharacter(
  9543. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9544. {
  9545. front: {
  9546. height: math.unit(6, "feet"),
  9547. weight: math.unit(50, "lbs"),
  9548. name: "Front",
  9549. image: {
  9550. source: "./media/characters/sentri/front.svg",
  9551. extra: 1750 / 1570,
  9552. bottom: 0.025
  9553. }
  9554. },
  9555. frontAlt: {
  9556. height: math.unit(6, "feet"),
  9557. weight: math.unit(50, "lbs"),
  9558. name: "Front (Alt)",
  9559. image: {
  9560. source: "./media/characters/sentri/front-alt.svg",
  9561. extra: 1750 / 1570,
  9562. bottom: 0.025
  9563. }
  9564. },
  9565. },
  9566. [
  9567. {
  9568. name: "Normal",
  9569. height: math.unit(15, "feet"),
  9570. default: true
  9571. },
  9572. {
  9573. name: "Macro",
  9574. height: math.unit(2500, "feet")
  9575. }
  9576. ]
  9577. ))
  9578. characterMakers.push(() => makeCharacter(
  9579. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9580. {
  9581. front: {
  9582. height: math.unit(5 + 8 / 12, "feet"),
  9583. weight: math.unit(130, "lbs"),
  9584. name: "Front",
  9585. image: {
  9586. source: "./media/characters/corvin/front.svg",
  9587. extra: 1803 / 1629
  9588. }
  9589. },
  9590. frontShirt: {
  9591. height: math.unit(5 + 8 / 12, "feet"),
  9592. weight: math.unit(130, "lbs"),
  9593. name: "Front (Shirt)",
  9594. image: {
  9595. source: "./media/characters/corvin/front-shirt.svg",
  9596. extra: 1803 / 1629
  9597. }
  9598. },
  9599. frontPoncho: {
  9600. height: math.unit(5 + 8 / 12, "feet"),
  9601. weight: math.unit(130, "lbs"),
  9602. name: "Front (Poncho)",
  9603. image: {
  9604. source: "./media/characters/corvin/front-poncho.svg",
  9605. extra: 1803 / 1629
  9606. }
  9607. },
  9608. side: {
  9609. height: math.unit(5 + 8 / 12, "feet"),
  9610. weight: math.unit(130, "lbs"),
  9611. name: "Side",
  9612. image: {
  9613. source: "./media/characters/corvin/side.svg",
  9614. extra: 1012 / 945
  9615. }
  9616. },
  9617. back: {
  9618. height: math.unit(5 + 8 / 12, "feet"),
  9619. weight: math.unit(130, "lbs"),
  9620. name: "Back",
  9621. image: {
  9622. source: "./media/characters/corvin/back.svg",
  9623. extra: 1803 / 1629
  9624. }
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Micro",
  9630. height: math.unit(3, "inches")
  9631. },
  9632. {
  9633. name: "Normal",
  9634. height: math.unit(5 + 8 / 12, "feet")
  9635. },
  9636. {
  9637. name: "Macro",
  9638. height: math.unit(300, "feet"),
  9639. default: true
  9640. },
  9641. {
  9642. name: "Megamacro",
  9643. height: math.unit(500, "miles")
  9644. }
  9645. ]
  9646. ))
  9647. characterMakers.push(() => makeCharacter(
  9648. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9649. {
  9650. front: {
  9651. height: math.unit(6, "feet"),
  9652. weight: math.unit(135, "lbs"),
  9653. name: "Front",
  9654. image: {
  9655. source: "./media/characters/q/front.svg",
  9656. extra: 854 / 752,
  9657. bottom: 0.005
  9658. }
  9659. },
  9660. back: {
  9661. height: math.unit(6, "feet"),
  9662. weight: math.unit(130, "lbs"),
  9663. name: "Back",
  9664. image: {
  9665. source: "./media/characters/q/back.svg",
  9666. extra: 854 / 752
  9667. }
  9668. },
  9669. },
  9670. [
  9671. {
  9672. name: "Macro",
  9673. height: math.unit(90, "feet"),
  9674. default: true
  9675. },
  9676. {
  9677. name: "Extra Macro",
  9678. height: math.unit(300, "feet"),
  9679. },
  9680. {
  9681. name: "BIG WALF",
  9682. height: math.unit(750, "feet"),
  9683. },
  9684. ]
  9685. ))
  9686. characterMakers.push(() => makeCharacter(
  9687. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9688. {
  9689. front: {
  9690. height: math.unit(3, "feet"),
  9691. weight: math.unit(28, "lbs"),
  9692. name: "Front",
  9693. image: {
  9694. source: "./media/characters/citrine/front.svg"
  9695. }
  9696. }
  9697. },
  9698. [
  9699. {
  9700. name: "Normal",
  9701. height: math.unit(3, "feet"),
  9702. default: true
  9703. }
  9704. ]
  9705. ))
  9706. characterMakers.push(() => makeCharacter(
  9707. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9708. {
  9709. front: {
  9710. height: math.unit(14, "feet"),
  9711. weight: math.unit(1450, "kg"),
  9712. preyCapacity: math.unit(15, "people"),
  9713. name: "Front",
  9714. image: {
  9715. source: "./media/characters/aura-starwind/front.svg",
  9716. extra: 1440/1327,
  9717. bottom: 11/1451
  9718. }
  9719. },
  9720. side: {
  9721. height: math.unit(14, "feet"),
  9722. weight: math.unit(1450, "kg"),
  9723. preyCapacity: math.unit(15, "people"),
  9724. name: "Side",
  9725. image: {
  9726. source: "./media/characters/aura-starwind/side.svg",
  9727. extra: 1654 / 1497
  9728. }
  9729. },
  9730. taur: {
  9731. height: math.unit(18, "feet"),
  9732. weight: math.unit(5500, "kg"),
  9733. preyCapacity: math.unit(50, "people"),
  9734. name: "Taur",
  9735. image: {
  9736. source: "./media/characters/aura-starwind/taur.svg",
  9737. extra: 1760 / 1650
  9738. }
  9739. },
  9740. feral: {
  9741. height: math.unit(46, "feet"),
  9742. weight: math.unit(25000, "kg"),
  9743. preyCapacity: math.unit(120, "people"),
  9744. name: "Feral",
  9745. image: {
  9746. source: "./media/characters/aura-starwind/feral.svg"
  9747. }
  9748. },
  9749. },
  9750. [
  9751. {
  9752. name: "Normal",
  9753. height: math.unit(14, "feet"),
  9754. default: true
  9755. },
  9756. {
  9757. name: "Macro",
  9758. height: math.unit(50, "meters")
  9759. },
  9760. {
  9761. name: "Megamacro",
  9762. height: math.unit(5000, "meters")
  9763. },
  9764. {
  9765. name: "Gigamacro",
  9766. height: math.unit(100000, "kilometers")
  9767. },
  9768. ]
  9769. ))
  9770. characterMakers.push(() => makeCharacter(
  9771. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9772. {
  9773. front: {
  9774. height: math.unit(2 + 7 / 12, "feet"),
  9775. weight: math.unit(32, "lbs"),
  9776. name: "Front",
  9777. image: {
  9778. source: "./media/characters/rivet/front.svg",
  9779. extra: 1716 / 1658,
  9780. bottom: 0.03
  9781. }
  9782. },
  9783. foot: {
  9784. height: math.unit(0.551, "feet"),
  9785. name: "Rivet's Foot",
  9786. image: {
  9787. source: "./media/characters/rivet/foot.svg"
  9788. },
  9789. rename: true
  9790. }
  9791. },
  9792. [
  9793. {
  9794. name: "Micro",
  9795. height: math.unit(1.5, "inches"),
  9796. },
  9797. {
  9798. name: "Normal",
  9799. height: math.unit(2 + 7 / 12, "feet"),
  9800. default: true
  9801. },
  9802. {
  9803. name: "Macro",
  9804. height: math.unit(85, "feet")
  9805. },
  9806. {
  9807. name: "Megamacro",
  9808. height: math.unit(2.2, "km")
  9809. }
  9810. ]
  9811. ))
  9812. characterMakers.push(() => makeCharacter(
  9813. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9814. {
  9815. front: {
  9816. height: math.unit(5 + 9 / 12, "feet"),
  9817. weight: math.unit(150, "lbs"),
  9818. name: "Front",
  9819. image: {
  9820. source: "./media/characters/coffee/front.svg",
  9821. extra: 946/880,
  9822. bottom: 66/1012
  9823. }
  9824. },
  9825. foot: {
  9826. height: math.unit(1.29, "feet"),
  9827. name: "Foot",
  9828. image: {
  9829. source: "./media/characters/coffee/foot.svg"
  9830. }
  9831. },
  9832. },
  9833. [
  9834. {
  9835. name: "Micro",
  9836. height: math.unit(2, "inches"),
  9837. },
  9838. {
  9839. name: "Normal",
  9840. height: math.unit(5 + 9 / 12, "feet"),
  9841. default: true
  9842. },
  9843. {
  9844. name: "Macro",
  9845. height: math.unit(800, "feet")
  9846. },
  9847. {
  9848. name: "Megamacro",
  9849. height: math.unit(25, "miles")
  9850. }
  9851. ]
  9852. ))
  9853. characterMakers.push(() => makeCharacter(
  9854. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9855. {
  9856. front: {
  9857. height: math.unit(6, "feet"),
  9858. weight: math.unit(200, "lbs"),
  9859. name: "Front",
  9860. image: {
  9861. source: "./media/characters/chari-gal/front.svg",
  9862. extra: 735/649,
  9863. bottom: 55/790
  9864. },
  9865. form: "normal",
  9866. default: true
  9867. },
  9868. back: {
  9869. height: math.unit(6, "feet"),
  9870. weight: math.unit(200, "lb"),
  9871. name: "Back",
  9872. image: {
  9873. source: "./media/characters/chari-gal/back.svg",
  9874. extra: 762/666,
  9875. bottom: 31/793
  9876. },
  9877. form: "normal"
  9878. },
  9879. mouth: {
  9880. height: math.unit(1.35, "feet"),
  9881. name: "Mouth",
  9882. image: {
  9883. source: "./media/characters/chari-gal/mouth.svg"
  9884. },
  9885. form: "normal"
  9886. },
  9887. gigantamax: {
  9888. height: math.unit(6 * 16, "feet"),
  9889. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9890. name: "Gigantamax",
  9891. image: {
  9892. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9893. extra: 1507/1149,
  9894. bottom: 254/1761
  9895. },
  9896. form: "gigantamax",
  9897. default: true
  9898. },
  9899. },
  9900. [
  9901. {
  9902. name: "Normal",
  9903. height: math.unit(5 + 7 / 12, "feet"),
  9904. form: "normal",
  9905. },
  9906. {
  9907. name: "Macro",
  9908. height: math.unit(200, "feet"),
  9909. default: true,
  9910. form: "normal"
  9911. },
  9912. {
  9913. name: "Normal",
  9914. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9915. form: "gigantamax",
  9916. },
  9917. {
  9918. name: "Macro",
  9919. height: math.unit(16 * 200, "feet"),
  9920. default: true,
  9921. form: "gigantamax"
  9922. },
  9923. ],
  9924. {
  9925. "normal": {
  9926. name: "Normal",
  9927. default: true
  9928. },
  9929. "gigantamax": {
  9930. name: "Gigantamax",
  9931. },
  9932. }
  9933. ))
  9934. characterMakers.push(() => makeCharacter(
  9935. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9936. {
  9937. front: {
  9938. height: math.unit(6, "feet"),
  9939. weight: math.unit(150, "lbs"),
  9940. name: "Front",
  9941. image: {
  9942. source: "./media/characters/nova/front.svg",
  9943. extra: 5000 / 4722,
  9944. bottom: 0.02
  9945. }
  9946. }
  9947. },
  9948. [
  9949. {
  9950. name: "Micro-",
  9951. height: math.unit(0.8, "inches")
  9952. },
  9953. {
  9954. name: "Micro",
  9955. height: math.unit(2, "inches"),
  9956. default: true
  9957. },
  9958. ]
  9959. ))
  9960. characterMakers.push(() => makeCharacter(
  9961. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9962. {
  9963. koboldFront: {
  9964. height: math.unit(3 + 1 / 12, "feet"),
  9965. weight: math.unit(21.7, "lbs"),
  9966. name: "Front",
  9967. image: {
  9968. source: "./media/characters/argent/kobold-front.svg",
  9969. extra: 1471 / 1331,
  9970. bottom: 100.8 / 1575.5
  9971. },
  9972. form: "kobold",
  9973. default: true
  9974. },
  9975. dragonFront: {
  9976. height: math.unit(75, "inches"),
  9977. name: "Front",
  9978. image: {
  9979. source: "./media/characters/argent/dragon-front.svg",
  9980. extra: 1389/1248,
  9981. bottom: 54/1443
  9982. },
  9983. form: "dragon",
  9984. },
  9985. dragonBack: {
  9986. height: math.unit(75, "inches"),
  9987. name: "Back",
  9988. image: {
  9989. source: "./media/characters/argent/dragon-back.svg",
  9990. extra: 1399/1271,
  9991. bottom: 23/1422
  9992. },
  9993. form: "dragon",
  9994. },
  9995. dragonDressed: {
  9996. height: math.unit(75, "inches"),
  9997. name: "Dressed",
  9998. image: {
  9999. source: "./media/characters/argent/dragon-dressed.svg",
  10000. extra: 1350/1215,
  10001. bottom: 26/1376
  10002. },
  10003. form: "dragon"
  10004. },
  10005. dragonHead: {
  10006. height: math.unit(23.5, "inches"),
  10007. name: "Head",
  10008. image: {
  10009. source: "./media/characters/argent/dragon-head.svg"
  10010. },
  10011. form: "dragon",
  10012. },
  10013. },
  10014. [
  10015. {
  10016. name: "Micro",
  10017. height: math.unit(2, "inches"),
  10018. form: "kobold",
  10019. },
  10020. {
  10021. name: "Normal",
  10022. height: math.unit(3 + 1 / 12, "feet"),
  10023. form: "kobold",
  10024. default: true
  10025. },
  10026. {
  10027. name: "Macro",
  10028. height: math.unit(120, "feet"),
  10029. form: "kobold",
  10030. },
  10031. {
  10032. name: "Speck",
  10033. height: math.unit(1, "mm"),
  10034. form: "dragon",
  10035. },
  10036. {
  10037. name: "Tiny",
  10038. height: math.unit(1, "cm"),
  10039. form: "dragon",
  10040. },
  10041. {
  10042. name: "Micro",
  10043. height: math.unit(5, "cm"),
  10044. form: "dragon",
  10045. },
  10046. {
  10047. name: "Normal",
  10048. height: math.unit(75, "inches"),
  10049. form: "dragon",
  10050. default: true
  10051. },
  10052. {
  10053. name: "Extra Tall",
  10054. height: math.unit(9, "feet"),
  10055. form: "dragon",
  10056. },
  10057. {
  10058. name: "Inconvenient",
  10059. height: math.unit(5, "meters"),
  10060. form: "dragon",
  10061. },
  10062. {
  10063. name: "Macro",
  10064. height: math.unit(70, "meters"),
  10065. form: "dragon",
  10066. },
  10067. {
  10068. name: "Macro+",
  10069. height: math.unit(250, "meters"),
  10070. form: "dragon",
  10071. },
  10072. {
  10073. name: "Megamacro",
  10074. height: math.unit(20, "km"),
  10075. form: "dragon",
  10076. },
  10077. {
  10078. name: "Mountainous",
  10079. height: math.unit(100, "km"),
  10080. form: "dragon",
  10081. },
  10082. {
  10083. name: "Continental",
  10084. height: math.unit(2, "megameters"),
  10085. form: "dragon",
  10086. },
  10087. {
  10088. name: "Too Big",
  10089. height: math.unit(900, "megameters"),
  10090. form: "dragon",
  10091. },
  10092. ],
  10093. {
  10094. "kobold": {
  10095. name: "Kobold",
  10096. default: true
  10097. },
  10098. "dragon": {
  10099. name: "Dragon",
  10100. },
  10101. }
  10102. ))
  10103. characterMakers.push(() => makeCharacter(
  10104. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10105. {
  10106. lamp: {
  10107. height: math.unit(7 * 1559 / 989, "feet"),
  10108. name: "Magic Lamp",
  10109. image: {
  10110. source: "./media/characters/mira-al-cul/lamp.svg",
  10111. extra: 1617 / 1559
  10112. }
  10113. },
  10114. front: {
  10115. height: math.unit(7, "feet"),
  10116. name: "Front",
  10117. image: {
  10118. source: "./media/characters/mira-al-cul/front.svg",
  10119. extra: 1044 / 990
  10120. }
  10121. },
  10122. },
  10123. [
  10124. {
  10125. name: "Heavily Restricted",
  10126. height: math.unit(7 * 1559 / 989, "feet")
  10127. },
  10128. {
  10129. name: "Freshly Freed",
  10130. height: math.unit(50 * 1559 / 989, "feet")
  10131. },
  10132. {
  10133. name: "World Encompassing",
  10134. height: math.unit(10000 * 1559 / 989, "miles")
  10135. },
  10136. {
  10137. name: "Galactic",
  10138. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10139. },
  10140. {
  10141. name: "Palmed Universe",
  10142. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10143. default: true
  10144. },
  10145. {
  10146. name: "Multiversal Matriarch",
  10147. height: math.unit(8.87e10, "yottameters")
  10148. },
  10149. {
  10150. name: "Void Mother",
  10151. height: math.unit(3.14e110, "yottaparsecs")
  10152. },
  10153. {
  10154. name: "Toying with Transcendence",
  10155. height: math.unit(1e307, "meters")
  10156. },
  10157. ]
  10158. ))
  10159. characterMakers.push(() => makeCharacter(
  10160. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10161. {
  10162. front: {
  10163. height: math.unit(17 + 1 / 12, "feet"),
  10164. weight: math.unit(476.2 * 5, "lbs"),
  10165. name: "Front",
  10166. image: {
  10167. source: "./media/characters/kuro-shi-uchū/front.svg",
  10168. extra: 2329 / 1835,
  10169. bottom: 0.02
  10170. }
  10171. },
  10172. },
  10173. [
  10174. {
  10175. name: "Micro",
  10176. height: math.unit(2, "inches")
  10177. },
  10178. {
  10179. name: "Normal",
  10180. height: math.unit(12, "meters")
  10181. },
  10182. {
  10183. name: "Planetary",
  10184. height: math.unit(0.00929, "AU"),
  10185. default: true
  10186. },
  10187. {
  10188. name: "Universal",
  10189. height: math.unit(20, "gigaparsecs")
  10190. },
  10191. ]
  10192. ))
  10193. characterMakers.push(() => makeCharacter(
  10194. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10195. {
  10196. front: {
  10197. height: math.unit(5 + 2 / 12, "feet"),
  10198. weight: math.unit(120, "lbs"),
  10199. name: "Front",
  10200. image: {
  10201. source: "./media/characters/katherine/front.svg",
  10202. extra: 2075 / 1969
  10203. }
  10204. },
  10205. dress: {
  10206. height: math.unit(5 + 2 / 12, "feet"),
  10207. weight: math.unit(120, "lbs"),
  10208. name: "Dress",
  10209. image: {
  10210. source: "./media/characters/katherine/dress.svg",
  10211. extra: 2258 / 2064
  10212. }
  10213. },
  10214. },
  10215. [
  10216. {
  10217. name: "Micro",
  10218. height: math.unit(1, "inches"),
  10219. default: true
  10220. },
  10221. {
  10222. name: "Normal",
  10223. height: math.unit(5 + 2 / 12, "feet")
  10224. },
  10225. {
  10226. name: "Macro",
  10227. height: math.unit(100, "meters")
  10228. },
  10229. {
  10230. name: "Megamacro",
  10231. height: math.unit(80, "miles")
  10232. },
  10233. ]
  10234. ))
  10235. characterMakers.push(() => makeCharacter(
  10236. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10237. {
  10238. front: {
  10239. height: math.unit(7 + 8 / 12, "feet"),
  10240. weight: math.unit(250, "lbs"),
  10241. name: "Front",
  10242. image: {
  10243. source: "./media/characters/yevis/front.svg",
  10244. extra: 1938 / 1755
  10245. }
  10246. }
  10247. },
  10248. [
  10249. {
  10250. name: "Mortal",
  10251. height: math.unit(7 + 8 / 12, "feet")
  10252. },
  10253. {
  10254. name: "Battle",
  10255. height: math.unit(25 + 11 / 12, "feet")
  10256. },
  10257. {
  10258. name: "Wrath",
  10259. height: math.unit(1654 + 11 / 12, "feet")
  10260. },
  10261. {
  10262. name: "Planet Destroyer",
  10263. height: math.unit(12000, "miles")
  10264. },
  10265. {
  10266. name: "Galaxy Conqueror",
  10267. height: math.unit(1.45, "zettameters"),
  10268. default: true
  10269. },
  10270. {
  10271. name: "Universal War",
  10272. height: math.unit(184, "gigaparsecs")
  10273. },
  10274. {
  10275. name: "Eternity War",
  10276. height: math.unit(1.98e55, "yottaparsecs")
  10277. },
  10278. ]
  10279. ))
  10280. characterMakers.push(() => makeCharacter(
  10281. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10282. {
  10283. front: {
  10284. height: math.unit(5 + 8 / 12, "feet"),
  10285. weight: math.unit(63, "kg"),
  10286. name: "Front",
  10287. image: {
  10288. source: "./media/characters/xavier/front.svg",
  10289. extra: 944 / 883
  10290. }
  10291. },
  10292. frontStretch: {
  10293. height: math.unit(5 + 8 / 12, "feet"),
  10294. weight: math.unit(63, "kg"),
  10295. name: "Stretching",
  10296. image: {
  10297. source: "./media/characters/xavier/front-stretch.svg",
  10298. extra: 962 / 820
  10299. }
  10300. },
  10301. },
  10302. [
  10303. {
  10304. name: "Normal",
  10305. height: math.unit(5 + 8 / 12, "feet")
  10306. },
  10307. {
  10308. name: "Macro",
  10309. height: math.unit(100, "meters"),
  10310. default: true
  10311. },
  10312. {
  10313. name: "McLargeHuge",
  10314. height: math.unit(10, "miles")
  10315. },
  10316. ]
  10317. ))
  10318. characterMakers.push(() => makeCharacter(
  10319. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10320. {
  10321. front: {
  10322. height: math.unit(5 + 5 / 12, "feet"),
  10323. weight: math.unit(150, "lb"),
  10324. name: "Front",
  10325. image: {
  10326. source: "./media/characters/joshii/front.svg",
  10327. extra: 765 / 653,
  10328. bottom: 51 / 816
  10329. }
  10330. },
  10331. foot: {
  10332. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10333. name: "Foot",
  10334. image: {
  10335. source: "./media/characters/joshii/foot.svg"
  10336. }
  10337. },
  10338. },
  10339. [
  10340. {
  10341. name: "Micro",
  10342. height: math.unit(2, "inches")
  10343. },
  10344. {
  10345. name: "Normal",
  10346. height: math.unit(5 + 5 / 12, "feet")
  10347. },
  10348. {
  10349. name: "Macro",
  10350. height: math.unit(785, "feet"),
  10351. default: true
  10352. },
  10353. {
  10354. name: "Megamacro",
  10355. height: math.unit(24.5, "miles")
  10356. },
  10357. ]
  10358. ))
  10359. characterMakers.push(() => makeCharacter(
  10360. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10361. {
  10362. front: {
  10363. height: math.unit(6, "feet"),
  10364. weight: math.unit(150, "lb"),
  10365. name: "Front",
  10366. image: {
  10367. source: "./media/characters/goddess-elizabeth/front.svg",
  10368. extra: 1800 / 1525,
  10369. bottom: 0.005
  10370. }
  10371. },
  10372. foot: {
  10373. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10374. name: "Foot",
  10375. image: {
  10376. source: "./media/characters/goddess-elizabeth/foot.svg"
  10377. }
  10378. },
  10379. mouth: {
  10380. height: math.unit(6, "feet"),
  10381. name: "Mouth",
  10382. image: {
  10383. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10384. }
  10385. },
  10386. },
  10387. [
  10388. {
  10389. name: "Micro",
  10390. height: math.unit(12, "feet")
  10391. },
  10392. {
  10393. name: "Normal",
  10394. height: math.unit(80, "miles"),
  10395. default: true
  10396. },
  10397. {
  10398. name: "Macro",
  10399. height: math.unit(15000, "parsecs")
  10400. },
  10401. ]
  10402. ))
  10403. characterMakers.push(() => makeCharacter(
  10404. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10405. {
  10406. front: {
  10407. height: math.unit(5 + 9 / 12, "feet"),
  10408. weight: math.unit(144, "lb"),
  10409. name: "Front",
  10410. image: {
  10411. source: "./media/characters/kara/front.svg"
  10412. }
  10413. },
  10414. feet: {
  10415. height: math.unit(6 / 6.765, "feet"),
  10416. name: "Kara's Feet",
  10417. rename: true,
  10418. image: {
  10419. source: "./media/characters/kara/feet.svg"
  10420. }
  10421. },
  10422. },
  10423. [
  10424. {
  10425. name: "Normal",
  10426. height: math.unit(5 + 9 / 12, "feet")
  10427. },
  10428. {
  10429. name: "Macro",
  10430. height: math.unit(174, "feet"),
  10431. default: true
  10432. },
  10433. ]
  10434. ))
  10435. characterMakers.push(() => makeCharacter(
  10436. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10437. {
  10438. front: {
  10439. height: math.unit(18, "feet"),
  10440. weight: math.unit(4050, "lb"),
  10441. name: "Front",
  10442. image: {
  10443. source: "./media/characters/tyrone/front.svg",
  10444. extra: 2405 / 2270,
  10445. bottom: 182 / 2587
  10446. }
  10447. },
  10448. },
  10449. [
  10450. {
  10451. name: "Normal",
  10452. height: math.unit(18, "feet"),
  10453. default: true
  10454. },
  10455. {
  10456. name: "Macro",
  10457. height: math.unit(300, "feet")
  10458. },
  10459. {
  10460. name: "Megamacro",
  10461. height: math.unit(15, "km")
  10462. },
  10463. {
  10464. name: "Gigamacro",
  10465. height: math.unit(500, "km")
  10466. },
  10467. {
  10468. name: "Teramacro",
  10469. height: math.unit(0.5, "gigameters")
  10470. },
  10471. {
  10472. name: "Omnimacro",
  10473. height: math.unit(1e252, "yottauniverse")
  10474. },
  10475. ]
  10476. ))
  10477. characterMakers.push(() => makeCharacter(
  10478. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10479. {
  10480. front: {
  10481. height: math.unit(7 + 8 / 12, "feet"),
  10482. weight: math.unit(120, "lb"),
  10483. name: "Front",
  10484. image: {
  10485. source: "./media/characters/danny/front.svg",
  10486. extra: 1490 / 1350
  10487. }
  10488. },
  10489. back: {
  10490. height: math.unit(7 + 8 / 12, "feet"),
  10491. weight: math.unit(120, "lb"),
  10492. name: "Back",
  10493. image: {
  10494. source: "./media/characters/danny/back.svg",
  10495. extra: 1490 / 1350
  10496. }
  10497. },
  10498. },
  10499. [
  10500. {
  10501. name: "Normal",
  10502. height: math.unit(7 + 8 / 12, "feet"),
  10503. default: true
  10504. },
  10505. ]
  10506. ))
  10507. characterMakers.push(() => makeCharacter(
  10508. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10509. {
  10510. front: {
  10511. height: math.unit(3.5, "inches"),
  10512. weight: math.unit(19, "grams"),
  10513. name: "Front",
  10514. image: {
  10515. source: "./media/characters/mallow/front.svg",
  10516. extra: 471 / 431
  10517. }
  10518. },
  10519. back: {
  10520. height: math.unit(3.5, "inches"),
  10521. weight: math.unit(19, "grams"),
  10522. name: "Back",
  10523. image: {
  10524. source: "./media/characters/mallow/back.svg",
  10525. extra: 471 / 431
  10526. }
  10527. },
  10528. },
  10529. [
  10530. {
  10531. name: "Normal",
  10532. height: math.unit(3.5, "inches"),
  10533. default: true
  10534. },
  10535. ]
  10536. ))
  10537. characterMakers.push(() => makeCharacter(
  10538. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10539. {
  10540. front: {
  10541. height: math.unit(9, "feet"),
  10542. weight: math.unit(230, "kg"),
  10543. name: "Front",
  10544. image: {
  10545. source: "./media/characters/starry-aqua/front.svg"
  10546. }
  10547. },
  10548. back: {
  10549. height: math.unit(9, "feet"),
  10550. weight: math.unit(230, "kg"),
  10551. name: "Back",
  10552. image: {
  10553. source: "./media/characters/starry-aqua/back.svg"
  10554. }
  10555. },
  10556. hand: {
  10557. height: math.unit(9 * 0.1168, "feet"),
  10558. name: "Hand",
  10559. image: {
  10560. source: "./media/characters/starry-aqua/hand.svg"
  10561. }
  10562. },
  10563. foot: {
  10564. height: math.unit(9 * 0.18, "feet"),
  10565. name: "Foot",
  10566. image: {
  10567. source: "./media/characters/starry-aqua/foot.svg"
  10568. }
  10569. }
  10570. },
  10571. [
  10572. {
  10573. name: "Micro",
  10574. height: math.unit(3, "inches")
  10575. },
  10576. {
  10577. name: "Normal",
  10578. height: math.unit(9, "feet")
  10579. },
  10580. {
  10581. name: "Macro",
  10582. height: math.unit(300, "feet"),
  10583. default: true
  10584. },
  10585. {
  10586. name: "Megamacro",
  10587. height: math.unit(3200, "feet")
  10588. }
  10589. ]
  10590. ))
  10591. characterMakers.push(() => makeCharacter(
  10592. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10593. {
  10594. front: {
  10595. height: math.unit(15, "feet"),
  10596. weight: math.unit(5026, "lb"),
  10597. name: "Front",
  10598. image: {
  10599. source: "./media/characters/luka-towers/front.svg",
  10600. extra: 1269/1133,
  10601. bottom: 51/1320
  10602. }
  10603. },
  10604. },
  10605. [
  10606. {
  10607. name: "Normal",
  10608. height: math.unit(15, "feet"),
  10609. default: true
  10610. },
  10611. {
  10612. name: "Minimacro",
  10613. height: math.unit(25, "feet")
  10614. },
  10615. {
  10616. name: "Macro",
  10617. height: math.unit(320, "feet")
  10618. },
  10619. {
  10620. name: "Megamacro",
  10621. height: math.unit(35000, "feet")
  10622. },
  10623. {
  10624. name: "Gigamacro",
  10625. height: math.unit(4000, "miles")
  10626. },
  10627. {
  10628. name: "Teramacro",
  10629. height: math.unit(15000, "miles")
  10630. },
  10631. ]
  10632. ))
  10633. characterMakers.push(() => makeCharacter(
  10634. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10635. {
  10636. front: {
  10637. height: math.unit(6, "feet"),
  10638. weight: math.unit(150, "lb"),
  10639. name: "Front",
  10640. image: {
  10641. source: "./media/characters/natalie-nightring/front.svg",
  10642. extra: 1,
  10643. bottom: 0.06
  10644. }
  10645. },
  10646. },
  10647. [
  10648. {
  10649. name: "Uh Oh",
  10650. height: math.unit(0.1, "mm")
  10651. },
  10652. {
  10653. name: "Small",
  10654. height: math.unit(3, "inches")
  10655. },
  10656. {
  10657. name: "Human Scale",
  10658. height: math.unit(6, "feet")
  10659. },
  10660. {
  10661. name: "Librarian",
  10662. height: math.unit(50, "feet"),
  10663. default: true
  10664. },
  10665. {
  10666. name: "Immense",
  10667. height: math.unit(200, "miles")
  10668. },
  10669. ]
  10670. ))
  10671. characterMakers.push(() => makeCharacter(
  10672. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10673. {
  10674. front: {
  10675. height: math.unit(6, "feet"),
  10676. weight: math.unit(180, "lbs"),
  10677. name: "Front",
  10678. image: {
  10679. source: "./media/characters/danni-rosie/front.svg",
  10680. extra: 1260 / 1128,
  10681. bottom: 0.022
  10682. }
  10683. },
  10684. },
  10685. [
  10686. {
  10687. name: "Micro",
  10688. height: math.unit(2, "inches"),
  10689. default: true
  10690. },
  10691. ]
  10692. ))
  10693. characterMakers.push(() => makeCharacter(
  10694. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10695. {
  10696. front: {
  10697. height: math.unit(5 + 9 / 12, "feet"),
  10698. weight: math.unit(220, "lb"),
  10699. name: "Front",
  10700. image: {
  10701. source: "./media/characters/samantha-kruse/front.svg",
  10702. extra: (985 / 935),
  10703. bottom: 0.03
  10704. }
  10705. },
  10706. frontUndressed: {
  10707. height: math.unit(5 + 9 / 12, "feet"),
  10708. weight: math.unit(220, "lb"),
  10709. name: "Front (Undressed)",
  10710. image: {
  10711. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10712. extra: (973 / 923),
  10713. bottom: 0.025
  10714. }
  10715. },
  10716. fat: {
  10717. height: math.unit(5 + 9 / 12, "feet"),
  10718. weight: math.unit(900, "lb"),
  10719. name: "Front (Fat)",
  10720. image: {
  10721. source: "./media/characters/samantha-kruse/fat.svg",
  10722. extra: 2688 / 2561
  10723. }
  10724. },
  10725. },
  10726. [
  10727. {
  10728. name: "Normal",
  10729. height: math.unit(5 + 9 / 12, "feet"),
  10730. default: true
  10731. }
  10732. ]
  10733. ))
  10734. characterMakers.push(() => makeCharacter(
  10735. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10736. {
  10737. back: {
  10738. height: math.unit(5 + 4 / 12, "feet"),
  10739. weight: math.unit(4963, "lb"),
  10740. name: "Back",
  10741. image: {
  10742. source: "./media/characters/amelia-rosie/back.svg",
  10743. extra: 1113 / 963,
  10744. bottom: 0.01
  10745. }
  10746. },
  10747. },
  10748. [
  10749. {
  10750. name: "Level 0",
  10751. height: math.unit(5 + 4 / 12, "feet")
  10752. },
  10753. {
  10754. name: "Level 1",
  10755. height: math.unit(164597, "feet"),
  10756. default: true
  10757. },
  10758. {
  10759. name: "Level 2",
  10760. height: math.unit(956243, "miles")
  10761. },
  10762. {
  10763. name: "Level 3",
  10764. height: math.unit(29421709423, "miles")
  10765. },
  10766. {
  10767. name: "Level 4",
  10768. height: math.unit(154, "lightyears")
  10769. },
  10770. {
  10771. name: "Level 5",
  10772. height: math.unit(4738272, "lightyears")
  10773. },
  10774. {
  10775. name: "Level 6",
  10776. height: math.unit(145787152896, "lightyears")
  10777. },
  10778. ]
  10779. ))
  10780. characterMakers.push(() => makeCharacter(
  10781. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10782. {
  10783. front: {
  10784. height: math.unit(5 + 11 / 12, "feet"),
  10785. weight: math.unit(65, "kg"),
  10786. name: "Front",
  10787. image: {
  10788. source: "./media/characters/rook-kitara/front.svg",
  10789. extra: 1347 / 1274,
  10790. bottom: 0.005
  10791. }
  10792. },
  10793. },
  10794. [
  10795. {
  10796. name: "Totally Unfair",
  10797. height: math.unit(1.8, "mm")
  10798. },
  10799. {
  10800. name: "Lap Rookie",
  10801. height: math.unit(1.4, "feet")
  10802. },
  10803. {
  10804. name: "Normal",
  10805. height: math.unit(5 + 11 / 12, "feet"),
  10806. default: true
  10807. },
  10808. {
  10809. name: "How Did This Happen",
  10810. height: math.unit(80, "miles")
  10811. }
  10812. ]
  10813. ))
  10814. characterMakers.push(() => makeCharacter(
  10815. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10816. {
  10817. front: {
  10818. height: math.unit(7, "feet"),
  10819. weight: math.unit(300, "lb"),
  10820. name: "Front",
  10821. image: {
  10822. source: "./media/characters/pisces/front.svg",
  10823. extra: 2255 / 2115,
  10824. bottom: 0.03
  10825. }
  10826. },
  10827. back: {
  10828. height: math.unit(7, "feet"),
  10829. weight: math.unit(300, "lb"),
  10830. name: "Back",
  10831. image: {
  10832. source: "./media/characters/pisces/back.svg",
  10833. extra: 2146 / 2055,
  10834. bottom: 0.04
  10835. }
  10836. },
  10837. },
  10838. [
  10839. {
  10840. name: "Normal",
  10841. height: math.unit(7, "feet"),
  10842. default: true
  10843. },
  10844. {
  10845. name: "Swimming Pool",
  10846. height: math.unit(12.2, "meters")
  10847. },
  10848. {
  10849. name: "Olympic Swimming Pool",
  10850. height: math.unit(56.3, "meters")
  10851. },
  10852. {
  10853. name: "Lake Superior",
  10854. height: math.unit(93900, "meters")
  10855. },
  10856. {
  10857. name: "Mediterranean Sea",
  10858. height: math.unit(644457, "meters")
  10859. },
  10860. {
  10861. name: "World's Oceans",
  10862. height: math.unit(4567491, "meters")
  10863. },
  10864. ]
  10865. ))
  10866. characterMakers.push(() => makeCharacter(
  10867. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10868. {
  10869. front: {
  10870. height: math.unit(2.3, "meters"),
  10871. weight: math.unit(120, "kg"),
  10872. name: "Front",
  10873. image: {
  10874. source: "./media/characters/zelas/front.svg"
  10875. }
  10876. },
  10877. side: {
  10878. height: math.unit(2.3, "meters"),
  10879. weight: math.unit(120, "kg"),
  10880. name: "Side",
  10881. image: {
  10882. source: "./media/characters/zelas/side.svg"
  10883. }
  10884. },
  10885. back: {
  10886. height: math.unit(2.3, "meters"),
  10887. weight: math.unit(120, "kg"),
  10888. name: "Back",
  10889. image: {
  10890. source: "./media/characters/zelas/back.svg"
  10891. }
  10892. },
  10893. foot: {
  10894. height: math.unit(1.116, "feet"),
  10895. name: "Foot",
  10896. image: {
  10897. source: "./media/characters/zelas/foot.svg"
  10898. }
  10899. },
  10900. },
  10901. [
  10902. {
  10903. name: "Normal",
  10904. height: math.unit(2.3, "meters")
  10905. },
  10906. {
  10907. name: "Macro",
  10908. height: math.unit(30, "meters"),
  10909. default: true
  10910. },
  10911. ]
  10912. ))
  10913. characterMakers.push(() => makeCharacter(
  10914. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10915. {
  10916. front: {
  10917. height: math.unit(1, "inch"),
  10918. weight: math.unit(0.21, "grams"),
  10919. name: "Front",
  10920. image: {
  10921. source: "./media/characters/talbot/front.svg",
  10922. extra: 594 / 544
  10923. }
  10924. },
  10925. },
  10926. [
  10927. {
  10928. name: "Micro",
  10929. height: math.unit(1, "inch"),
  10930. default: true
  10931. },
  10932. ]
  10933. ))
  10934. characterMakers.push(() => makeCharacter(
  10935. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10936. {
  10937. front: {
  10938. height: math.unit(3 + 3 / 12, "feet"),
  10939. weight: math.unit(51.8, "lb"),
  10940. name: "Front",
  10941. image: {
  10942. source: "./media/characters/fliss/front.svg",
  10943. extra: 840 / 640
  10944. }
  10945. },
  10946. },
  10947. [
  10948. {
  10949. name: "Teeny Tiny",
  10950. height: math.unit(1, "mm")
  10951. },
  10952. {
  10953. name: "Small",
  10954. height: math.unit(1, "inch"),
  10955. default: true
  10956. },
  10957. {
  10958. name: "Standard Sylveon",
  10959. height: math.unit(3 + 3 / 12, "feet")
  10960. },
  10961. {
  10962. name: "Large Nuisance",
  10963. height: math.unit(33, "feet")
  10964. },
  10965. {
  10966. name: "City Filler",
  10967. height: math.unit(3000, "feet")
  10968. },
  10969. {
  10970. name: "New Horizon",
  10971. height: math.unit(6000, "miles")
  10972. },
  10973. ]
  10974. ))
  10975. characterMakers.push(() => makeCharacter(
  10976. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10977. {
  10978. front: {
  10979. height: math.unit(5, "cm"),
  10980. weight: math.unit(1.94, "g"),
  10981. name: "Front",
  10982. image: {
  10983. source: "./media/characters/fleta/front.svg",
  10984. extra: 835 / 803
  10985. }
  10986. },
  10987. back: {
  10988. height: math.unit(5, "cm"),
  10989. weight: math.unit(1.94, "g"),
  10990. name: "Back",
  10991. image: {
  10992. source: "./media/characters/fleta/back.svg",
  10993. extra: 835 / 803
  10994. }
  10995. },
  10996. },
  10997. [
  10998. {
  10999. name: "Micro",
  11000. height: math.unit(5, "cm"),
  11001. default: true
  11002. },
  11003. ]
  11004. ))
  11005. characterMakers.push(() => makeCharacter(
  11006. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  11007. {
  11008. front: {
  11009. height: math.unit(6, "feet"),
  11010. weight: math.unit(225, "lb"),
  11011. name: "Front",
  11012. image: {
  11013. source: "./media/characters/dominic/front.svg",
  11014. extra: 1770 / 1620,
  11015. bottom: 0.025
  11016. }
  11017. },
  11018. back: {
  11019. height: math.unit(6, "feet"),
  11020. weight: math.unit(225, "lb"),
  11021. name: "Back",
  11022. image: {
  11023. source: "./media/characters/dominic/back.svg",
  11024. extra: 1745 / 1620,
  11025. bottom: 0.065
  11026. }
  11027. },
  11028. },
  11029. [
  11030. {
  11031. name: "Nano",
  11032. height: math.unit(0.1, "mm")
  11033. },
  11034. {
  11035. name: "Micro-",
  11036. height: math.unit(1, "mm")
  11037. },
  11038. {
  11039. name: "Micro",
  11040. height: math.unit(4, "inches")
  11041. },
  11042. {
  11043. name: "Normal",
  11044. height: math.unit(6 + 4 / 12, "feet"),
  11045. default: true
  11046. },
  11047. {
  11048. name: "Macro",
  11049. height: math.unit(115, "feet")
  11050. },
  11051. {
  11052. name: "Macro+",
  11053. height: math.unit(955, "feet")
  11054. },
  11055. {
  11056. name: "Megamacro",
  11057. height: math.unit(8990, "feet")
  11058. },
  11059. {
  11060. name: "Gigmacro",
  11061. height: math.unit(9310, "miles")
  11062. },
  11063. {
  11064. name: "Teramacro",
  11065. height: math.unit(1567005010, "miles")
  11066. },
  11067. {
  11068. name: "Examacro",
  11069. height: math.unit(1425, "parsecs")
  11070. },
  11071. ]
  11072. ))
  11073. characterMakers.push(() => makeCharacter(
  11074. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11075. {
  11076. front: {
  11077. height: math.unit(400, "feet"),
  11078. weight: math.unit(44444444, "lb"),
  11079. name: "Front",
  11080. image: {
  11081. source: "./media/characters/major-colonel/front.svg"
  11082. }
  11083. },
  11084. back: {
  11085. height: math.unit(400, "feet"),
  11086. weight: math.unit(44444444, "lb"),
  11087. name: "Back",
  11088. image: {
  11089. source: "./media/characters/major-colonel/back.svg"
  11090. }
  11091. },
  11092. },
  11093. [
  11094. {
  11095. name: "Macro",
  11096. height: math.unit(400, "feet"),
  11097. default: true
  11098. },
  11099. ]
  11100. ))
  11101. characterMakers.push(() => makeCharacter(
  11102. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11103. {
  11104. catFront: {
  11105. height: math.unit(6, "feet"),
  11106. weight: math.unit(120, "lb"),
  11107. name: "Front (Cat Side)",
  11108. image: {
  11109. source: "./media/characters/axel-lycan/cat-front.svg",
  11110. extra: 430 / 402,
  11111. bottom: 43 / 472.35
  11112. }
  11113. },
  11114. catBack: {
  11115. height: math.unit(6, "feet"),
  11116. weight: math.unit(120, "lb"),
  11117. name: "Back (Cat Side)",
  11118. image: {
  11119. source: "./media/characters/axel-lycan/cat-back.svg",
  11120. extra: 447 / 419,
  11121. bottom: 23.3 / 469
  11122. }
  11123. },
  11124. wolfFront: {
  11125. height: math.unit(6, "feet"),
  11126. weight: math.unit(120, "lb"),
  11127. name: "Front (Wolf Side)",
  11128. image: {
  11129. source: "./media/characters/axel-lycan/wolf-front.svg",
  11130. extra: 485 / 456,
  11131. bottom: 19 / 504
  11132. }
  11133. },
  11134. wolfBack: {
  11135. height: math.unit(6, "feet"),
  11136. weight: math.unit(120, "lb"),
  11137. name: "Back (Wolf Side)",
  11138. image: {
  11139. source: "./media/characters/axel-lycan/wolf-back.svg",
  11140. extra: 475 / 438,
  11141. bottom: 39.2 / 514
  11142. }
  11143. },
  11144. },
  11145. [
  11146. {
  11147. name: "Macro",
  11148. height: math.unit(1, "km"),
  11149. default: true
  11150. },
  11151. ]
  11152. ))
  11153. characterMakers.push(() => makeCharacter(
  11154. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11155. {
  11156. front: {
  11157. height: math.unit(5 + 9 / 12, "feet"),
  11158. weight: math.unit(175, "lb"),
  11159. name: "Front",
  11160. image: {
  11161. source: "./media/characters/vanrel-hyena/front.svg",
  11162. extra: 1086 / 1010,
  11163. bottom: 0.04
  11164. }
  11165. },
  11166. },
  11167. [
  11168. {
  11169. name: "Normal",
  11170. height: math.unit(5 + 9 / 12, "feet"),
  11171. default: true
  11172. },
  11173. ]
  11174. ))
  11175. characterMakers.push(() => makeCharacter(
  11176. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11177. {
  11178. front: {
  11179. height: math.unit(6, "feet"),
  11180. weight: math.unit(103, "lb"),
  11181. name: "Front",
  11182. image: {
  11183. source: "./media/characters/abbott-absol/front.svg",
  11184. extra: 765/694,
  11185. bottom: 47/812
  11186. }
  11187. },
  11188. },
  11189. [
  11190. {
  11191. name: "Megamicro",
  11192. height: math.unit(0.1, "mm")
  11193. },
  11194. {
  11195. name: "Micro",
  11196. height: math.unit(1, "inch")
  11197. },
  11198. {
  11199. name: "Normal",
  11200. height: math.unit(6, "feet"),
  11201. default: true
  11202. },
  11203. ]
  11204. ))
  11205. characterMakers.push(() => makeCharacter(
  11206. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11207. {
  11208. front: {
  11209. height: math.unit(6, "feet"),
  11210. weight: math.unit(264, "lb"),
  11211. name: "Front",
  11212. image: {
  11213. source: "./media/characters/hector/front.svg",
  11214. extra: 2280 / 2130,
  11215. bottom: 0.07
  11216. }
  11217. },
  11218. },
  11219. [
  11220. {
  11221. name: "Normal",
  11222. height: math.unit(12.25, "foot"),
  11223. default: true
  11224. },
  11225. {
  11226. name: "Macro",
  11227. height: math.unit(160, "feet")
  11228. },
  11229. ]
  11230. ))
  11231. characterMakers.push(() => makeCharacter(
  11232. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11233. {
  11234. front: {
  11235. height: math.unit(6, "feet"),
  11236. weight: math.unit(150, "lb"),
  11237. name: "Front",
  11238. image: {
  11239. source: "./media/characters/sal/front.svg",
  11240. extra: 1846 / 1699,
  11241. bottom: 0.04
  11242. }
  11243. },
  11244. },
  11245. [
  11246. {
  11247. name: "Megamacro",
  11248. height: math.unit(10, "miles"),
  11249. default: true
  11250. },
  11251. ]
  11252. ))
  11253. characterMakers.push(() => makeCharacter(
  11254. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11255. {
  11256. front: {
  11257. height: math.unit(3, "meters"),
  11258. weight: math.unit(450, "kg"),
  11259. name: "front",
  11260. image: {
  11261. source: "./media/characters/ranger/front.svg",
  11262. extra: 2401 / 2243,
  11263. bottom: 0.05
  11264. }
  11265. },
  11266. },
  11267. [
  11268. {
  11269. name: "Normal",
  11270. height: math.unit(3, "meters"),
  11271. default: true
  11272. },
  11273. ]
  11274. ))
  11275. characterMakers.push(() => makeCharacter(
  11276. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11277. {
  11278. front: {
  11279. height: math.unit(14, "feet"),
  11280. weight: math.unit(800, "kg"),
  11281. name: "Front",
  11282. image: {
  11283. source: "./media/characters/theresa/front.svg",
  11284. extra: 3575 / 3346,
  11285. bottom: 0.03
  11286. }
  11287. },
  11288. },
  11289. [
  11290. {
  11291. name: "Normal",
  11292. height: math.unit(14, "feet"),
  11293. default: true
  11294. },
  11295. ]
  11296. ))
  11297. characterMakers.push(() => makeCharacter(
  11298. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11299. {
  11300. front: {
  11301. height: math.unit(6, "feet"),
  11302. weight: math.unit(3, "kg"),
  11303. name: "Front",
  11304. image: {
  11305. source: "./media/characters/ine/front.svg",
  11306. extra: 678 / 539,
  11307. bottom: 0.023
  11308. }
  11309. },
  11310. },
  11311. [
  11312. {
  11313. name: "Normal",
  11314. height: math.unit(2.265, "feet"),
  11315. default: true
  11316. },
  11317. ]
  11318. ))
  11319. characterMakers.push(() => makeCharacter(
  11320. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11321. {
  11322. front: {
  11323. height: math.unit(5, "feet"),
  11324. weight: math.unit(30, "kg"),
  11325. name: "Front",
  11326. image: {
  11327. source: "./media/characters/vial/front.svg",
  11328. extra: 1365 / 1277,
  11329. bottom: 0.04
  11330. }
  11331. },
  11332. },
  11333. [
  11334. {
  11335. name: "Normal",
  11336. height: math.unit(5, "feet"),
  11337. default: true
  11338. },
  11339. ]
  11340. ))
  11341. characterMakers.push(() => makeCharacter(
  11342. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11343. {
  11344. side: {
  11345. height: math.unit(3.4, "meters"),
  11346. weight: math.unit(1000, "lb"),
  11347. name: "Side",
  11348. image: {
  11349. source: "./media/characters/rovoska/side.svg",
  11350. extra: 4403 / 1515
  11351. }
  11352. },
  11353. },
  11354. [
  11355. {
  11356. name: "Normal",
  11357. height: math.unit(3.4, "meters"),
  11358. default: true
  11359. },
  11360. ]
  11361. ))
  11362. characterMakers.push(() => makeCharacter(
  11363. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11364. {
  11365. front: {
  11366. height: math.unit(8, "feet"),
  11367. weight: math.unit(315, "lb"),
  11368. name: "Front",
  11369. image: {
  11370. source: "./media/characters/gunner-rotthbauer/front.svg"
  11371. }
  11372. },
  11373. back: {
  11374. height: math.unit(8, "feet"),
  11375. weight: math.unit(315, "lb"),
  11376. name: "Back",
  11377. image: {
  11378. source: "./media/characters/gunner-rotthbauer/back.svg"
  11379. }
  11380. },
  11381. },
  11382. [
  11383. {
  11384. name: "Micro",
  11385. height: math.unit(3.5, "inches")
  11386. },
  11387. {
  11388. name: "Normal",
  11389. height: math.unit(8, "feet"),
  11390. default: true
  11391. },
  11392. {
  11393. name: "Macro",
  11394. height: math.unit(250, "feet")
  11395. },
  11396. {
  11397. name: "Megamacro",
  11398. height: math.unit(1, "AU")
  11399. },
  11400. ]
  11401. ))
  11402. characterMakers.push(() => makeCharacter(
  11403. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11404. {
  11405. front: {
  11406. height: math.unit(5 + 5 / 12, "feet"),
  11407. weight: math.unit(140, "lb"),
  11408. name: "Front",
  11409. image: {
  11410. source: "./media/characters/allatia/front.svg",
  11411. extra: 1227 / 1180,
  11412. bottom: 0.027
  11413. }
  11414. },
  11415. },
  11416. [
  11417. {
  11418. name: "Normal",
  11419. height: math.unit(5 + 5 / 12, "feet")
  11420. },
  11421. {
  11422. name: "Macro",
  11423. height: math.unit(250, "feet"),
  11424. default: true
  11425. },
  11426. {
  11427. name: "Megamacro",
  11428. height: math.unit(8, "miles")
  11429. }
  11430. ]
  11431. ))
  11432. characterMakers.push(() => makeCharacter(
  11433. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11434. {
  11435. front: {
  11436. height: math.unit(6, "feet"),
  11437. weight: math.unit(120, "lb"),
  11438. name: "Front",
  11439. image: {
  11440. source: "./media/characters/tene/front.svg",
  11441. extra: 814/750,
  11442. bottom: 36/850
  11443. }
  11444. },
  11445. stomping: {
  11446. height: math.unit(2.025, "meters"),
  11447. weight: math.unit(120, "lb"),
  11448. name: "Stomping",
  11449. image: {
  11450. source: "./media/characters/tene/stomping.svg",
  11451. extra: 885/821,
  11452. bottom: 15/900
  11453. }
  11454. },
  11455. sitting: {
  11456. height: math.unit(1, "meter"),
  11457. weight: math.unit(120, "lb"),
  11458. name: "Sitting",
  11459. image: {
  11460. source: "./media/characters/tene/sitting.svg",
  11461. extra: 396/366,
  11462. bottom: 79/475
  11463. }
  11464. },
  11465. smiling: {
  11466. height: math.unit(1.2, "feet"),
  11467. name: "Smiling",
  11468. image: {
  11469. source: "./media/characters/tene/smiling.svg",
  11470. extra: 1364/1071,
  11471. bottom: 0/1364
  11472. }
  11473. },
  11474. smug: {
  11475. height: math.unit(1.3, "feet"),
  11476. name: "Smug",
  11477. image: {
  11478. source: "./media/characters/tene/smug.svg",
  11479. extra: 1323/1082,
  11480. bottom: 0/1323
  11481. }
  11482. },
  11483. feral: {
  11484. height: math.unit(3.9, "feet"),
  11485. weight: math.unit(250, "lb"),
  11486. name: "Feral",
  11487. image: {
  11488. source: "./media/characters/tene/feral.svg",
  11489. extra: 717 / 458,
  11490. bottom: 0.179
  11491. }
  11492. },
  11493. },
  11494. [
  11495. {
  11496. name: "Normal",
  11497. height: math.unit(6, "feet")
  11498. },
  11499. {
  11500. name: "Macro",
  11501. height: math.unit(300, "feet"),
  11502. default: true
  11503. },
  11504. {
  11505. name: "Megamacro",
  11506. height: math.unit(5, "miles")
  11507. },
  11508. ]
  11509. ))
  11510. characterMakers.push(() => makeCharacter(
  11511. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11512. {
  11513. side: {
  11514. height: math.unit(6, "feet"),
  11515. name: "Side",
  11516. image: {
  11517. source: "./media/characters/evander/side.svg",
  11518. extra: 877 / 477
  11519. }
  11520. },
  11521. },
  11522. [
  11523. {
  11524. name: "Normal",
  11525. height: math.unit(0.83, "meters"),
  11526. default: true
  11527. },
  11528. ]
  11529. ))
  11530. characterMakers.push(() => makeCharacter(
  11531. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11532. {
  11533. front: {
  11534. height: math.unit(12, "feet"),
  11535. weight: math.unit(1000, "lb"),
  11536. name: "Front",
  11537. image: {
  11538. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11539. extra: 1762 / 1611
  11540. }
  11541. },
  11542. back: {
  11543. height: math.unit(12, "feet"),
  11544. weight: math.unit(1000, "lb"),
  11545. name: "Back",
  11546. image: {
  11547. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11548. extra: 1762 / 1611
  11549. }
  11550. },
  11551. },
  11552. [
  11553. {
  11554. name: "Normal",
  11555. height: math.unit(12, "feet"),
  11556. default: true
  11557. },
  11558. {
  11559. name: "Kaiju",
  11560. height: math.unit(150, "feet")
  11561. },
  11562. ]
  11563. ))
  11564. characterMakers.push(() => makeCharacter(
  11565. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11566. {
  11567. front: {
  11568. height: math.unit(5 + 11/12, "feet"),
  11569. weight: math.unit(180, "lb"),
  11570. name: "Front",
  11571. image: {
  11572. source: "./media/characters/zero-alurus/front.svg",
  11573. extra: 1032/957,
  11574. bottom: 10/1042
  11575. }
  11576. },
  11577. back: {
  11578. height: math.unit(5 + 11/12, "feet"),
  11579. weight: math.unit(180, "lb"),
  11580. name: "Back",
  11581. image: {
  11582. source: "./media/characters/zero-alurus/back.svg",
  11583. extra: 1027/950,
  11584. bottom: 12/1039
  11585. }
  11586. },
  11587. },
  11588. [
  11589. {
  11590. name: "Normal",
  11591. height: math.unit(5 + 11 / 12, "feet")
  11592. },
  11593. {
  11594. name: "Mini-Macro",
  11595. height: math.unit(25, "feet")
  11596. },
  11597. {
  11598. name: "Macro",
  11599. height: math.unit(90, "feet"),
  11600. default: true
  11601. },
  11602. {
  11603. name: "Macro+",
  11604. height: math.unit(500, "feet")
  11605. },
  11606. {
  11607. name: "Megamacro",
  11608. height: math.unit(1200, "feet")
  11609. },
  11610. ]
  11611. ))
  11612. characterMakers.push(() => makeCharacter(
  11613. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11614. {
  11615. front: {
  11616. height: math.unit(6, "feet"),
  11617. weight: math.unit(200, "lb"),
  11618. name: "Front",
  11619. image: {
  11620. source: "./media/characters/mega-shi/front.svg",
  11621. extra: 1279 / 1250,
  11622. bottom: 0.02
  11623. }
  11624. },
  11625. back: {
  11626. height: math.unit(6, "feet"),
  11627. weight: math.unit(200, "lb"),
  11628. name: "Back",
  11629. image: {
  11630. source: "./media/characters/mega-shi/back.svg",
  11631. extra: 1279 / 1250,
  11632. bottom: 0.02
  11633. }
  11634. },
  11635. },
  11636. [
  11637. {
  11638. name: "Micro",
  11639. height: math.unit(16 + 6 / 12, "feet")
  11640. },
  11641. {
  11642. name: "Third Dimension",
  11643. height: math.unit(40, "meters")
  11644. },
  11645. {
  11646. name: "Normal",
  11647. height: math.unit(660, "feet"),
  11648. default: true
  11649. },
  11650. {
  11651. name: "Megamacro",
  11652. height: math.unit(10, "miles")
  11653. },
  11654. {
  11655. name: "Planetary Launch",
  11656. height: math.unit(500, "miles")
  11657. },
  11658. {
  11659. name: "Interstellar",
  11660. height: math.unit(1e9, "miles")
  11661. },
  11662. {
  11663. name: "Leaving the Universe",
  11664. height: math.unit(1, "gigaparsec")
  11665. },
  11666. {
  11667. name: "Travelling Universes",
  11668. height: math.unit(30e15, "parsecs")
  11669. },
  11670. ]
  11671. ))
  11672. characterMakers.push(() => makeCharacter(
  11673. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11674. {
  11675. front: {
  11676. height: math.unit(5 + 4/12, "feet"),
  11677. weight: math.unit(120, "lb"),
  11678. name: "Front",
  11679. image: {
  11680. source: "./media/characters/odyssey/front.svg",
  11681. extra: 1747/1571,
  11682. bottom: 47/1794
  11683. }
  11684. },
  11685. side: {
  11686. height: math.unit(5.1, "feet"),
  11687. weight: math.unit(120, "lb"),
  11688. name: "Side",
  11689. image: {
  11690. source: "./media/characters/odyssey/side.svg",
  11691. extra: 1847/1619,
  11692. bottom: 47/1894
  11693. }
  11694. },
  11695. lounging: {
  11696. height: math.unit(1.464, "feet"),
  11697. weight: math.unit(120, "lb"),
  11698. name: "Lounging",
  11699. image: {
  11700. source: "./media/characters/odyssey/lounging.svg",
  11701. extra: 1235/837,
  11702. bottom: 551/1786
  11703. }
  11704. },
  11705. },
  11706. [
  11707. {
  11708. name: "Normal",
  11709. height: math.unit(5 + 4 / 12, "feet")
  11710. },
  11711. {
  11712. name: "Macro",
  11713. height: math.unit(1, "km")
  11714. },
  11715. {
  11716. name: "Megamacro",
  11717. height: math.unit(3000, "km")
  11718. },
  11719. {
  11720. name: "Gigamacro",
  11721. height: math.unit(1, "AU"),
  11722. default: true
  11723. },
  11724. {
  11725. name: "Omniversal",
  11726. height: math.unit(100e14, "lightyears")
  11727. },
  11728. ]
  11729. ))
  11730. characterMakers.push(() => makeCharacter(
  11731. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11732. {
  11733. front: {
  11734. height: math.unit(5 + 10/12, "feet"),
  11735. name: "Front",
  11736. image: {
  11737. source: "./media/characters/mekuto/front.svg",
  11738. extra: 875/835,
  11739. bottom: 46/921
  11740. }
  11741. },
  11742. },
  11743. [
  11744. {
  11745. name: "Minimicro",
  11746. height: math.unit(0.2, "inches")
  11747. },
  11748. {
  11749. name: "Micro",
  11750. height: math.unit(1.5, "inches")
  11751. },
  11752. {
  11753. name: "Normal",
  11754. height: math.unit(5 + 10 / 12, "feet"),
  11755. default: true
  11756. },
  11757. {
  11758. name: "Minimacro",
  11759. height: math.unit(17 + 9 / 12, "feet")
  11760. },
  11761. {
  11762. name: "Macro",
  11763. height: math.unit(177.5, "feet")
  11764. },
  11765. {
  11766. name: "Megamacro",
  11767. height: math.unit(152, "miles")
  11768. },
  11769. ]
  11770. ))
  11771. characterMakers.push(() => makeCharacter(
  11772. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11773. {
  11774. front: {
  11775. height: math.unit(6.5, "inches"),
  11776. weight: math.unit(13, "oz"),
  11777. name: "Front",
  11778. image: {
  11779. source: "./media/characters/dafydd-tomos/front.svg",
  11780. extra: 2990 / 2603,
  11781. bottom: 0.03
  11782. }
  11783. },
  11784. },
  11785. [
  11786. {
  11787. name: "Micro",
  11788. height: math.unit(6.5, "inches"),
  11789. default: true
  11790. },
  11791. ]
  11792. ))
  11793. characterMakers.push(() => makeCharacter(
  11794. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11795. {
  11796. front: {
  11797. height: math.unit(6, "feet"),
  11798. weight: math.unit(150, "lb"),
  11799. name: "Front",
  11800. image: {
  11801. source: "./media/characters/splinter/front.svg",
  11802. extra: 2990 / 2882,
  11803. bottom: 0.04
  11804. }
  11805. },
  11806. back: {
  11807. height: math.unit(6, "feet"),
  11808. weight: math.unit(150, "lb"),
  11809. name: "Back",
  11810. image: {
  11811. source: "./media/characters/splinter/back.svg",
  11812. extra: 2990 / 2882,
  11813. bottom: 0.04
  11814. }
  11815. },
  11816. },
  11817. [
  11818. {
  11819. name: "Normal",
  11820. height: math.unit(6, "feet")
  11821. },
  11822. {
  11823. name: "Macro",
  11824. height: math.unit(230, "meters"),
  11825. default: true
  11826. },
  11827. ]
  11828. ))
  11829. characterMakers.push(() => makeCharacter(
  11830. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11831. {
  11832. front: {
  11833. height: math.unit(4 + 10 / 12, "feet"),
  11834. weight: math.unit(480, "lb"),
  11835. name: "Front",
  11836. image: {
  11837. source: "./media/characters/snow-gabumon/front.svg",
  11838. extra: 1140 / 963,
  11839. bottom: 0.058
  11840. }
  11841. },
  11842. back: {
  11843. height: math.unit(4 + 10 / 12, "feet"),
  11844. weight: math.unit(480, "lb"),
  11845. name: "Back",
  11846. image: {
  11847. source: "./media/characters/snow-gabumon/back.svg",
  11848. extra: 1115 / 962,
  11849. bottom: 0.041
  11850. }
  11851. },
  11852. frontUndresed: {
  11853. height: math.unit(4 + 10 / 12, "feet"),
  11854. weight: math.unit(480, "lb"),
  11855. name: "Front (Undressed)",
  11856. image: {
  11857. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11858. extra: 1061 / 960,
  11859. bottom: 0.045
  11860. }
  11861. },
  11862. },
  11863. [
  11864. {
  11865. name: "Micro",
  11866. height: math.unit(1, "inch")
  11867. },
  11868. {
  11869. name: "Normal",
  11870. height: math.unit(4 + 10 / 12, "feet"),
  11871. default: true
  11872. },
  11873. {
  11874. name: "Macro",
  11875. height: math.unit(200, "feet")
  11876. },
  11877. {
  11878. name: "Megamacro",
  11879. height: math.unit(120, "miles")
  11880. },
  11881. {
  11882. name: "Gigamacro",
  11883. height: math.unit(9800, "miles")
  11884. },
  11885. ]
  11886. ))
  11887. characterMakers.push(() => makeCharacter(
  11888. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11889. {
  11890. front: {
  11891. height: math.unit(1.7, "meters"),
  11892. weight: math.unit(140, "lb"),
  11893. name: "Front",
  11894. image: {
  11895. source: "./media/characters/moody/front.svg",
  11896. extra: 3226 / 3007,
  11897. bottom: 0.087
  11898. }
  11899. },
  11900. },
  11901. [
  11902. {
  11903. name: "Micro",
  11904. height: math.unit(1, "mm")
  11905. },
  11906. {
  11907. name: "Normal",
  11908. height: math.unit(1.7, "meters"),
  11909. default: true
  11910. },
  11911. {
  11912. name: "Macro",
  11913. height: math.unit(80, "meters")
  11914. },
  11915. {
  11916. name: "Macro+",
  11917. height: math.unit(500, "meters")
  11918. },
  11919. ]
  11920. ))
  11921. characterMakers.push(() => makeCharacter(
  11922. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11923. {
  11924. front: {
  11925. height: math.unit(6, "feet"),
  11926. weight: math.unit(150, "lb"),
  11927. name: "Front",
  11928. image: {
  11929. source: "./media/characters/zyas/front.svg",
  11930. extra: 1180 / 1120,
  11931. bottom: 0.045
  11932. }
  11933. },
  11934. },
  11935. [
  11936. {
  11937. name: "Normal",
  11938. height: math.unit(10, "feet"),
  11939. default: true
  11940. },
  11941. {
  11942. name: "Macro",
  11943. height: math.unit(500, "feet")
  11944. },
  11945. {
  11946. name: "Megamacro",
  11947. height: math.unit(5, "miles")
  11948. },
  11949. {
  11950. name: "Teramacro",
  11951. height: math.unit(150000, "miles")
  11952. },
  11953. ]
  11954. ))
  11955. characterMakers.push(() => makeCharacter(
  11956. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11957. {
  11958. front: {
  11959. height: math.unit(6, "feet"),
  11960. weight: math.unit(150, "lb"),
  11961. name: "Front",
  11962. image: {
  11963. source: "./media/characters/cuon/front.svg",
  11964. extra: 1390 / 1320,
  11965. bottom: 0.008
  11966. }
  11967. },
  11968. },
  11969. [
  11970. {
  11971. name: "Micro",
  11972. height: math.unit(3, "inches")
  11973. },
  11974. {
  11975. name: "Normal",
  11976. height: math.unit(18 + 9 / 12, "feet"),
  11977. default: true
  11978. },
  11979. {
  11980. name: "Macro",
  11981. height: math.unit(360, "feet")
  11982. },
  11983. {
  11984. name: "Megamacro",
  11985. height: math.unit(360, "miles")
  11986. },
  11987. ]
  11988. ))
  11989. characterMakers.push(() => makeCharacter(
  11990. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11991. {
  11992. front: {
  11993. height: math.unit(2.4, "meters"),
  11994. weight: math.unit(70, "kg"),
  11995. name: "Front",
  11996. image: {
  11997. source: "./media/characters/nyanuxk/front.svg",
  11998. extra: 1172 / 1084,
  11999. bottom: 0.065
  12000. }
  12001. },
  12002. side: {
  12003. height: math.unit(2.4, "meters"),
  12004. weight: math.unit(70, "kg"),
  12005. name: "Side",
  12006. image: {
  12007. source: "./media/characters/nyanuxk/side.svg",
  12008. extra: 1190 / 1132,
  12009. bottom: 0.007
  12010. }
  12011. },
  12012. back: {
  12013. height: math.unit(2.4, "meters"),
  12014. weight: math.unit(70, "kg"),
  12015. name: "Back",
  12016. image: {
  12017. source: "./media/characters/nyanuxk/back.svg",
  12018. extra: 1200 / 1141,
  12019. bottom: 0.015
  12020. }
  12021. },
  12022. foot: {
  12023. height: math.unit(0.52, "meters"),
  12024. name: "Foot",
  12025. image: {
  12026. source: "./media/characters/nyanuxk/foot.svg"
  12027. }
  12028. },
  12029. },
  12030. [
  12031. {
  12032. name: "Micro",
  12033. height: math.unit(2, "cm")
  12034. },
  12035. {
  12036. name: "Normal",
  12037. height: math.unit(2.4, "meters"),
  12038. default: true
  12039. },
  12040. {
  12041. name: "Smaller Macro",
  12042. height: math.unit(120, "meters")
  12043. },
  12044. {
  12045. name: "Bigger Macro",
  12046. height: math.unit(1.2, "km")
  12047. },
  12048. {
  12049. name: "Megamacro",
  12050. height: math.unit(15, "kilometers")
  12051. },
  12052. {
  12053. name: "Gigamacro",
  12054. height: math.unit(2000, "km")
  12055. },
  12056. {
  12057. name: "Teramacro",
  12058. height: math.unit(500000, "km")
  12059. },
  12060. ]
  12061. ))
  12062. characterMakers.push(() => makeCharacter(
  12063. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12064. {
  12065. side: {
  12066. height: math.unit(6, "feet"),
  12067. name: "Side",
  12068. image: {
  12069. source: "./media/characters/ailbhe/side.svg",
  12070. extra: 757 / 464,
  12071. bottom: 0.041
  12072. }
  12073. },
  12074. },
  12075. [
  12076. {
  12077. name: "Normal",
  12078. height: math.unit(1.07, "meters"),
  12079. default: true
  12080. },
  12081. ]
  12082. ))
  12083. characterMakers.push(() => makeCharacter(
  12084. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12085. {
  12086. front: {
  12087. height: math.unit(6, "feet"),
  12088. weight: math.unit(120, "kg"),
  12089. name: "Front",
  12090. image: {
  12091. source: "./media/characters/zevulfius/front.svg",
  12092. extra: 965 / 903
  12093. }
  12094. },
  12095. side: {
  12096. height: math.unit(6, "feet"),
  12097. weight: math.unit(120, "kg"),
  12098. name: "Side",
  12099. image: {
  12100. source: "./media/characters/zevulfius/side.svg",
  12101. extra: 939 / 900
  12102. }
  12103. },
  12104. back: {
  12105. height: math.unit(6, "feet"),
  12106. weight: math.unit(120, "kg"),
  12107. name: "Back",
  12108. image: {
  12109. source: "./media/characters/zevulfius/back.svg",
  12110. extra: 918 / 854,
  12111. bottom: 0.005
  12112. }
  12113. },
  12114. foot: {
  12115. height: math.unit(6 / 3.72, "feet"),
  12116. name: "Foot",
  12117. image: {
  12118. source: "./media/characters/zevulfius/foot.svg"
  12119. }
  12120. },
  12121. },
  12122. [
  12123. {
  12124. name: "Macro",
  12125. height: math.unit(750, "meters")
  12126. },
  12127. {
  12128. name: "Megamacro",
  12129. height: math.unit(20, "km"),
  12130. default: true
  12131. },
  12132. {
  12133. name: "Gigamacro",
  12134. height: math.unit(2000, "km")
  12135. },
  12136. {
  12137. name: "Teramacro",
  12138. height: math.unit(250000, "km")
  12139. },
  12140. ]
  12141. ))
  12142. characterMakers.push(() => makeCharacter(
  12143. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12144. {
  12145. front: {
  12146. height: math.unit(100, "feet"),
  12147. weight: math.unit(350, "kg"),
  12148. name: "Front",
  12149. image: {
  12150. source: "./media/characters/rikes/front.svg",
  12151. extra: 1565 / 1483,
  12152. bottom: 0.017
  12153. }
  12154. },
  12155. },
  12156. [
  12157. {
  12158. name: "Macro",
  12159. height: math.unit(100, "feet"),
  12160. default: true
  12161. },
  12162. ]
  12163. ))
  12164. characterMakers.push(() => makeCharacter(
  12165. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12166. {
  12167. front: {
  12168. height: math.unit(8, "feet"),
  12169. weight: math.unit(356, "lb"),
  12170. name: "Front",
  12171. image: {
  12172. source: "./media/characters/adam-silver-mane/front.svg",
  12173. extra: 1036/937,
  12174. bottom: 63/1099
  12175. }
  12176. },
  12177. side: {
  12178. height: math.unit(8, "feet"),
  12179. weight: math.unit(356, "lb"),
  12180. name: "Side",
  12181. image: {
  12182. source: "./media/characters/adam-silver-mane/side.svg",
  12183. extra: 997/901,
  12184. bottom: 59/1056
  12185. }
  12186. },
  12187. frontNsfw: {
  12188. height: math.unit(8, "feet"),
  12189. weight: math.unit(356, "lb"),
  12190. name: "Front (NSFW)",
  12191. image: {
  12192. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12193. extra: 1036/937,
  12194. bottom: 63/1099
  12195. }
  12196. },
  12197. sideNsfw: {
  12198. height: math.unit(8, "feet"),
  12199. weight: math.unit(356, "lb"),
  12200. name: "Side (NSFW)",
  12201. image: {
  12202. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12203. extra: 997/901,
  12204. bottom: 59/1056
  12205. }
  12206. },
  12207. dick: {
  12208. height: math.unit(2.1, "feet"),
  12209. name: "Dick",
  12210. image: {
  12211. source: "./media/characters/adam-silver-mane/dick.svg"
  12212. }
  12213. },
  12214. taur: {
  12215. height: math.unit(16, "feet"),
  12216. weight: math.unit(1500, "kg"),
  12217. name: "Taur",
  12218. image: {
  12219. source: "./media/characters/adam-silver-mane/taur.svg",
  12220. extra: 1713 / 1571,
  12221. bottom: 0.01
  12222. }
  12223. },
  12224. },
  12225. [
  12226. {
  12227. name: "Normal",
  12228. height: math.unit(8, "feet")
  12229. },
  12230. {
  12231. name: "Minimacro",
  12232. height: math.unit(80, "feet")
  12233. },
  12234. {
  12235. name: "MDA",
  12236. height: math.unit(80, "meters")
  12237. },
  12238. {
  12239. name: "Macro",
  12240. height: math.unit(800, "feet"),
  12241. default: true
  12242. },
  12243. {
  12244. name: "Megamacro",
  12245. height: math.unit(8000, "feet")
  12246. },
  12247. {
  12248. name: "Gigamacro",
  12249. height: math.unit(800, "miles")
  12250. },
  12251. {
  12252. name: "Teramacro",
  12253. height: math.unit(80000, "miles")
  12254. },
  12255. {
  12256. name: "Celestial",
  12257. height: math.unit(8e6, "miles")
  12258. },
  12259. {
  12260. name: "Star Dragon",
  12261. height: math.unit(800000, "parsecs")
  12262. },
  12263. {
  12264. name: "Godly",
  12265. height: math.unit(800, "teraparsecs")
  12266. },
  12267. ]
  12268. ))
  12269. characterMakers.push(() => makeCharacter(
  12270. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12271. {
  12272. front: {
  12273. height: math.unit(6, "feet"),
  12274. weight: math.unit(150, "lb"),
  12275. name: "Front",
  12276. image: {
  12277. source: "./media/characters/ky'owin/front.svg",
  12278. extra: 3862/3053,
  12279. bottom: 74/3936
  12280. }
  12281. },
  12282. },
  12283. [
  12284. {
  12285. name: "Normal",
  12286. height: math.unit(6 + 8 / 12, "feet")
  12287. },
  12288. {
  12289. name: "Large",
  12290. height: math.unit(68, "feet")
  12291. },
  12292. {
  12293. name: "Macro",
  12294. height: math.unit(132, "feet")
  12295. },
  12296. {
  12297. name: "Macro+",
  12298. height: math.unit(340, "feet")
  12299. },
  12300. {
  12301. name: "Macro++",
  12302. height: math.unit(680, "feet"),
  12303. default: true
  12304. },
  12305. {
  12306. name: "Megamacro",
  12307. height: math.unit(1, "mile")
  12308. },
  12309. {
  12310. name: "Megamacro+",
  12311. height: math.unit(10, "miles")
  12312. },
  12313. ]
  12314. ))
  12315. characterMakers.push(() => makeCharacter(
  12316. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12317. {
  12318. front: {
  12319. height: math.unit(4, "feet"),
  12320. weight: math.unit(50, "lb"),
  12321. name: "Front",
  12322. image: {
  12323. source: "./media/characters/mal/front.svg",
  12324. extra: 785 / 724,
  12325. bottom: 0.07
  12326. }
  12327. },
  12328. },
  12329. [
  12330. {
  12331. name: "Micro",
  12332. height: math.unit(4, "inches")
  12333. },
  12334. {
  12335. name: "Normal",
  12336. height: math.unit(4, "feet"),
  12337. default: true
  12338. },
  12339. {
  12340. name: "Macro",
  12341. height: math.unit(200, "feet")
  12342. },
  12343. ]
  12344. ))
  12345. characterMakers.push(() => makeCharacter(
  12346. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12347. {
  12348. front: {
  12349. height: math.unit(6, "feet"),
  12350. weight: math.unit(150, "lb"),
  12351. name: "Front",
  12352. image: {
  12353. source: "./media/characters/jordan-deware/front.svg",
  12354. extra: 1191 / 1012
  12355. }
  12356. },
  12357. },
  12358. [
  12359. {
  12360. name: "Nano",
  12361. height: math.unit(0.01, "mm")
  12362. },
  12363. {
  12364. name: "Minimicro",
  12365. height: math.unit(1, "mm")
  12366. },
  12367. {
  12368. name: "Micro",
  12369. height: math.unit(0.5, "inches")
  12370. },
  12371. {
  12372. name: "Normal",
  12373. height: math.unit(4, "feet"),
  12374. default: true
  12375. },
  12376. {
  12377. name: "Minimacro",
  12378. height: math.unit(40, "meters")
  12379. },
  12380. {
  12381. name: "Small Macro",
  12382. height: math.unit(400, "meters")
  12383. },
  12384. {
  12385. name: "Macro",
  12386. height: math.unit(4, "miles")
  12387. },
  12388. {
  12389. name: "Megamacro",
  12390. height: math.unit(40, "miles")
  12391. },
  12392. {
  12393. name: "Megamacro+",
  12394. height: math.unit(400, "miles")
  12395. },
  12396. {
  12397. name: "Gigamacro",
  12398. height: math.unit(400000, "miles")
  12399. },
  12400. ]
  12401. ))
  12402. characterMakers.push(() => makeCharacter(
  12403. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12404. {
  12405. front: {
  12406. height: math.unit(15, "feet"),
  12407. weight: math.unit(3000, "kg"),
  12408. preyCapacity: math.unit(450, "people"),
  12409. name: "Front",
  12410. image: {
  12411. source: "./media/characters/kimiko/front.svg",
  12412. extra: 875/832,
  12413. bottom: 36/911
  12414. },
  12415. extraAttributes: {
  12416. "pawSize": {
  12417. name: "Paw Size",
  12418. power: 1,
  12419. type: "length",
  12420. base: math.unit(0.9, "meters")
  12421. },
  12422. }
  12423. },
  12424. side: {
  12425. height: math.unit(15, "feet"),
  12426. weight: math.unit(3000, "kg"),
  12427. preyCapacity: math.unit(400, "people"),
  12428. name: "Side",
  12429. image: {
  12430. source: "./media/characters/kimiko/side.svg",
  12431. extra: 448/270,
  12432. bottom: 7/455
  12433. },
  12434. extraAttributes: {
  12435. "pawSize": {
  12436. name: "Paw Size",
  12437. power: 1,
  12438. type: "length",
  12439. base: math.unit(0.9, "meters")
  12440. },
  12441. }
  12442. },
  12443. maw: {
  12444. height: math.unit(0.81, "feet"),
  12445. name: "Maw",
  12446. image: {
  12447. source: "./media/characters/kimiko/maw.svg"
  12448. }
  12449. },
  12450. },
  12451. [
  12452. {
  12453. name: "Normal",
  12454. height: math.unit(15, "feet"),
  12455. default: true
  12456. },
  12457. {
  12458. name: "Macro",
  12459. height: math.unit(220, "feet")
  12460. },
  12461. {
  12462. name: "Macro+",
  12463. height: math.unit(1450, "feet")
  12464. },
  12465. {
  12466. name: "Megamacro",
  12467. height: math.unit(11500, "feet")
  12468. },
  12469. {
  12470. name: "Gigamacro",
  12471. height: math.unit(9500, "miles")
  12472. },
  12473. {
  12474. name: "Teramacro",
  12475. height: math.unit(2208005005, "miles")
  12476. },
  12477. {
  12478. name: "Examacro",
  12479. height: math.unit(2750, "parsecs")
  12480. },
  12481. {
  12482. name: "Zettamacro",
  12483. height: math.unit(101500, "parsecs")
  12484. },
  12485. ]
  12486. ))
  12487. characterMakers.push(() => makeCharacter(
  12488. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12489. {
  12490. front: {
  12491. height: math.unit(6, "feet"),
  12492. weight: math.unit(70, "kg"),
  12493. name: "Front",
  12494. image: {
  12495. source: "./media/characters/andrew-sleepy/front.svg"
  12496. }
  12497. },
  12498. side: {
  12499. height: math.unit(6, "feet"),
  12500. weight: math.unit(70, "kg"),
  12501. name: "Side",
  12502. image: {
  12503. source: "./media/characters/andrew-sleepy/side.svg"
  12504. }
  12505. },
  12506. },
  12507. [
  12508. {
  12509. name: "Micro",
  12510. height: math.unit(1, "mm"),
  12511. default: true
  12512. },
  12513. ]
  12514. ))
  12515. characterMakers.push(() => makeCharacter(
  12516. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12517. {
  12518. front: {
  12519. height: math.unit(6, "feet"),
  12520. weight: math.unit(150, "lb"),
  12521. name: "Front",
  12522. image: {
  12523. source: "./media/characters/judio/front.svg",
  12524. extra: 1258 / 1110
  12525. }
  12526. },
  12527. },
  12528. [
  12529. {
  12530. name: "Normal",
  12531. height: math.unit(5 + 6 / 12, "feet")
  12532. },
  12533. {
  12534. name: "Macro",
  12535. height: math.unit(1000, "feet"),
  12536. default: true
  12537. },
  12538. {
  12539. name: "Megamacro",
  12540. height: math.unit(10, "miles")
  12541. },
  12542. ]
  12543. ))
  12544. characterMakers.push(() => makeCharacter(
  12545. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12546. {
  12547. frontDressed: {
  12548. height: math.unit(6, "feet"),
  12549. weight: math.unit(68, "kg"),
  12550. name: "Front (Dressed)",
  12551. image: {
  12552. source: "./media/characters/nomaxice/front-dressed.svg",
  12553. extra: 1137/824,
  12554. bottom: 74/1211
  12555. }
  12556. },
  12557. frontShorts: {
  12558. height: math.unit(6, "feet"),
  12559. weight: math.unit(68, "kg"),
  12560. name: "Front (Shorts)",
  12561. image: {
  12562. source: "./media/characters/nomaxice/front-shorts.svg",
  12563. extra: 1137/824,
  12564. bottom: 74/1211
  12565. }
  12566. },
  12567. back: {
  12568. height: math.unit(6, "feet"),
  12569. weight: math.unit(68, "kg"),
  12570. name: "Back",
  12571. image: {
  12572. source: "./media/characters/nomaxice/back.svg",
  12573. extra: 822/786,
  12574. bottom: 39/861
  12575. }
  12576. },
  12577. hand: {
  12578. height: math.unit(0.565, "feet"),
  12579. name: "Hand",
  12580. image: {
  12581. source: "./media/characters/nomaxice/hand.svg"
  12582. }
  12583. },
  12584. foot: {
  12585. height: math.unit(1, "feet"),
  12586. name: "Foot",
  12587. image: {
  12588. source: "./media/characters/nomaxice/foot.svg"
  12589. }
  12590. },
  12591. },
  12592. [
  12593. {
  12594. name: "Micro",
  12595. height: math.unit(8, "cm")
  12596. },
  12597. {
  12598. name: "Norm",
  12599. height: math.unit(1.82, "m")
  12600. },
  12601. {
  12602. name: "Norm+",
  12603. height: math.unit(8.8, "feet"),
  12604. default: true
  12605. },
  12606. {
  12607. name: "Big",
  12608. height: math.unit(8, "meters")
  12609. },
  12610. {
  12611. name: "Macro",
  12612. height: math.unit(18, "meters")
  12613. },
  12614. {
  12615. name: "Macro+",
  12616. height: math.unit(88, "meters")
  12617. },
  12618. ]
  12619. ))
  12620. characterMakers.push(() => makeCharacter(
  12621. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12622. {
  12623. front: {
  12624. height: math.unit(12, "feet"),
  12625. weight: math.unit(1.5, "tons"),
  12626. name: "Front",
  12627. image: {
  12628. source: "./media/characters/dydros/front.svg",
  12629. extra: 863 / 800,
  12630. bottom: 0.015
  12631. }
  12632. },
  12633. back: {
  12634. height: math.unit(12, "feet"),
  12635. weight: math.unit(1.5, "tons"),
  12636. name: "Back",
  12637. image: {
  12638. source: "./media/characters/dydros/back.svg",
  12639. extra: 900 / 843,
  12640. bottom: 0.005
  12641. }
  12642. },
  12643. },
  12644. [
  12645. {
  12646. name: "Normal",
  12647. height: math.unit(12, "feet"),
  12648. default: true
  12649. },
  12650. ]
  12651. ))
  12652. characterMakers.push(() => makeCharacter(
  12653. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12654. {
  12655. front: {
  12656. height: math.unit(6, "feet"),
  12657. weight: math.unit(100, "kg"),
  12658. name: "Front",
  12659. image: {
  12660. source: "./media/characters/riggi/front.svg",
  12661. extra: 5787 / 5303
  12662. }
  12663. },
  12664. hyper: {
  12665. height: math.unit(6 * 5 / 3, "feet"),
  12666. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12667. name: "Hyper",
  12668. image: {
  12669. source: "./media/characters/riggi/hyper.svg",
  12670. extra: 3595 / 3485
  12671. }
  12672. },
  12673. },
  12674. [
  12675. {
  12676. name: "Small Macro",
  12677. height: math.unit(50, "feet")
  12678. },
  12679. {
  12680. name: "Default",
  12681. height: math.unit(200, "feet"),
  12682. default: true
  12683. },
  12684. {
  12685. name: "Loom",
  12686. height: math.unit(10000, "feet")
  12687. },
  12688. {
  12689. name: "Cruising Altitude",
  12690. height: math.unit(30000, "feet")
  12691. },
  12692. {
  12693. name: "Megamacro",
  12694. height: math.unit(100, "miles")
  12695. },
  12696. {
  12697. name: "Continent Sized",
  12698. height: math.unit(2800, "miles")
  12699. },
  12700. {
  12701. name: "Earth Sized",
  12702. height: math.unit(8000, "miles")
  12703. },
  12704. ]
  12705. ))
  12706. characterMakers.push(() => makeCharacter(
  12707. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12708. {
  12709. front: {
  12710. height: math.unit(6, "feet"),
  12711. weight: math.unit(250, "lb"),
  12712. name: "Front",
  12713. image: {
  12714. source: "./media/characters/alexi/front.svg",
  12715. extra: 3483 / 3291,
  12716. bottom: 0.04
  12717. }
  12718. },
  12719. back: {
  12720. height: math.unit(6, "feet"),
  12721. weight: math.unit(250, "lb"),
  12722. name: "Back",
  12723. image: {
  12724. source: "./media/characters/alexi/back.svg",
  12725. extra: 3533 / 3356,
  12726. bottom: 0.021
  12727. }
  12728. },
  12729. frontTransforming: {
  12730. height: math.unit(8.58, "feet"),
  12731. weight: math.unit(1300, "lb"),
  12732. name: "Transforming",
  12733. image: {
  12734. source: "./media/characters/alexi/front-transforming.svg",
  12735. extra: 437 / 409,
  12736. bottom: 19 / 458.66
  12737. }
  12738. },
  12739. frontTransformed: {
  12740. height: math.unit(12.5, "feet"),
  12741. weight: math.unit(4000, "lb"),
  12742. name: "Transformed",
  12743. image: {
  12744. source: "./media/characters/alexi/front-transformed.svg",
  12745. extra: 639 / 614,
  12746. bottom: 30.55 / 671
  12747. }
  12748. },
  12749. },
  12750. [
  12751. {
  12752. name: "Normal",
  12753. height: math.unit(14, "feet"),
  12754. default: true
  12755. },
  12756. {
  12757. name: "Minimacro",
  12758. height: math.unit(30, "meters")
  12759. },
  12760. {
  12761. name: "Macro",
  12762. height: math.unit(500, "meters")
  12763. },
  12764. {
  12765. name: "Megamacro",
  12766. height: math.unit(9000, "km")
  12767. },
  12768. {
  12769. name: "Teramacro",
  12770. height: math.unit(384000, "km")
  12771. },
  12772. ]
  12773. ))
  12774. characterMakers.push(() => makeCharacter(
  12775. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12776. {
  12777. front: {
  12778. height: math.unit(6, "feet"),
  12779. weight: math.unit(150, "lb"),
  12780. name: "Front",
  12781. image: {
  12782. source: "./media/characters/kayroo/front.svg",
  12783. extra: 1153 / 1038,
  12784. bottom: 0.06
  12785. }
  12786. },
  12787. foot: {
  12788. height: math.unit(6, "feet"),
  12789. weight: math.unit(150, "lb"),
  12790. name: "Foot",
  12791. image: {
  12792. source: "./media/characters/kayroo/foot.svg"
  12793. }
  12794. },
  12795. },
  12796. [
  12797. {
  12798. name: "Normal",
  12799. height: math.unit(8, "feet"),
  12800. default: true
  12801. },
  12802. {
  12803. name: "Minimacro",
  12804. height: math.unit(250, "feet")
  12805. },
  12806. {
  12807. name: "Macro",
  12808. height: math.unit(2800, "feet")
  12809. },
  12810. {
  12811. name: "Megamacro",
  12812. height: math.unit(5200, "feet")
  12813. },
  12814. {
  12815. name: "Gigamacro",
  12816. height: math.unit(27000, "feet")
  12817. },
  12818. {
  12819. name: "Omega",
  12820. height: math.unit(45000, "feet")
  12821. },
  12822. ]
  12823. ))
  12824. characterMakers.push(() => makeCharacter(
  12825. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12826. {
  12827. front: {
  12828. height: math.unit(18, "feet"),
  12829. weight: math.unit(5800, "lb"),
  12830. name: "Front",
  12831. image: {
  12832. source: "./media/characters/rhys/front.svg",
  12833. extra: 3386 / 3090,
  12834. bottom: 0.07
  12835. }
  12836. },
  12837. },
  12838. [
  12839. {
  12840. name: "Normal",
  12841. height: math.unit(18, "feet"),
  12842. default: true
  12843. },
  12844. {
  12845. name: "Working Size",
  12846. height: math.unit(200, "feet")
  12847. },
  12848. {
  12849. name: "Demolition Size",
  12850. height: math.unit(2000, "feet")
  12851. },
  12852. {
  12853. name: "Maximum Licensed Size",
  12854. height: math.unit(5, "miles")
  12855. },
  12856. {
  12857. name: "Maximum Observed Size",
  12858. height: math.unit(10, "yottameters")
  12859. },
  12860. ]
  12861. ))
  12862. characterMakers.push(() => makeCharacter(
  12863. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12864. {
  12865. front: {
  12866. height: math.unit(6, "feet"),
  12867. weight: math.unit(250, "lb"),
  12868. name: "Front",
  12869. image: {
  12870. source: "./media/characters/toto/front.svg",
  12871. extra: 527 / 479,
  12872. bottom: 0.05
  12873. }
  12874. },
  12875. },
  12876. [
  12877. {
  12878. name: "Micro",
  12879. height: math.unit(3, "feet")
  12880. },
  12881. {
  12882. name: "Normal",
  12883. height: math.unit(10, "feet")
  12884. },
  12885. {
  12886. name: "Macro",
  12887. height: math.unit(150, "feet"),
  12888. default: true
  12889. },
  12890. {
  12891. name: "Megamacro",
  12892. height: math.unit(1200, "feet")
  12893. },
  12894. ]
  12895. ))
  12896. characterMakers.push(() => makeCharacter(
  12897. { name: "King", species: ["lion"], tags: ["anthro"] },
  12898. {
  12899. back: {
  12900. height: math.unit(6, "feet"),
  12901. weight: math.unit(150, "lb"),
  12902. name: "Back",
  12903. image: {
  12904. source: "./media/characters/king/back.svg"
  12905. }
  12906. },
  12907. },
  12908. [
  12909. {
  12910. name: "Micro",
  12911. height: math.unit(2, "inches")
  12912. },
  12913. {
  12914. name: "Normal",
  12915. height: math.unit(8, "feet")
  12916. },
  12917. {
  12918. name: "Macro",
  12919. height: math.unit(200, "feet"),
  12920. default: true
  12921. },
  12922. {
  12923. name: "Megamacro",
  12924. height: math.unit(50, "miles")
  12925. },
  12926. ]
  12927. ))
  12928. characterMakers.push(() => makeCharacter(
  12929. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12930. {
  12931. front: {
  12932. height: math.unit(11, "feet"),
  12933. weight: math.unit(1400, "lb"),
  12934. name: "Front",
  12935. image: {
  12936. source: "./media/characters/cordite/front.svg",
  12937. extra: 1919/1827,
  12938. bottom: 40/1959
  12939. }
  12940. },
  12941. side: {
  12942. height: math.unit(11, "feet"),
  12943. weight: math.unit(1400, "lb"),
  12944. name: "Side",
  12945. image: {
  12946. source: "./media/characters/cordite/side.svg",
  12947. extra: 1908/1793,
  12948. bottom: 38/1946
  12949. }
  12950. },
  12951. back: {
  12952. height: math.unit(11, "feet"),
  12953. weight: math.unit(1400, "lb"),
  12954. name: "Back",
  12955. image: {
  12956. source: "./media/characters/cordite/back.svg",
  12957. extra: 1938/1837,
  12958. bottom: 10/1948
  12959. }
  12960. },
  12961. feral: {
  12962. height: math.unit(2, "feet"),
  12963. weight: math.unit(90, "lb"),
  12964. name: "Feral",
  12965. image: {
  12966. source: "./media/characters/cordite/feral.svg",
  12967. extra: 1260 / 755,
  12968. bottom: 0.05
  12969. }
  12970. },
  12971. },
  12972. [
  12973. {
  12974. name: "Normal",
  12975. height: math.unit(11, "feet"),
  12976. default: true
  12977. },
  12978. ]
  12979. ))
  12980. characterMakers.push(() => makeCharacter(
  12981. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12982. {
  12983. front: {
  12984. height: math.unit(6, "feet"),
  12985. weight: math.unit(150, "lb"),
  12986. name: "Front",
  12987. image: {
  12988. source: "./media/characters/pianostrong/front.svg",
  12989. extra: 6577 / 6254,
  12990. bottom: 0.02
  12991. }
  12992. },
  12993. side: {
  12994. height: math.unit(6, "feet"),
  12995. weight: math.unit(150, "lb"),
  12996. name: "Side",
  12997. image: {
  12998. source: "./media/characters/pianostrong/side.svg",
  12999. extra: 6106 / 5730
  13000. }
  13001. },
  13002. back: {
  13003. height: math.unit(6, "feet"),
  13004. weight: math.unit(150, "lb"),
  13005. name: "Back",
  13006. image: {
  13007. source: "./media/characters/pianostrong/back.svg",
  13008. extra: 6085 / 5733,
  13009. bottom: 0.01
  13010. }
  13011. },
  13012. },
  13013. [
  13014. {
  13015. name: "Macro",
  13016. height: math.unit(100, "feet")
  13017. },
  13018. {
  13019. name: "Macro+",
  13020. height: math.unit(300, "feet"),
  13021. default: true
  13022. },
  13023. {
  13024. name: "Macro++",
  13025. height: math.unit(1000, "feet")
  13026. },
  13027. ]
  13028. ))
  13029. characterMakers.push(() => makeCharacter(
  13030. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13031. {
  13032. front: {
  13033. height: math.unit(6, "feet"),
  13034. weight: math.unit(150, "lb"),
  13035. name: "Front",
  13036. image: {
  13037. source: "./media/characters/kona/front.svg",
  13038. extra: 2960 / 2629,
  13039. bottom: 0.005
  13040. }
  13041. },
  13042. },
  13043. [
  13044. {
  13045. name: "Normal",
  13046. height: math.unit(11 + 8 / 12, "feet")
  13047. },
  13048. {
  13049. name: "Macro",
  13050. height: math.unit(850, "feet"),
  13051. default: true
  13052. },
  13053. {
  13054. name: "Macro+",
  13055. height: math.unit(1.5, "km"),
  13056. default: true
  13057. },
  13058. {
  13059. name: "Megamacro",
  13060. height: math.unit(80, "miles")
  13061. },
  13062. {
  13063. name: "Gigamacro",
  13064. height: math.unit(3500, "miles")
  13065. },
  13066. ]
  13067. ))
  13068. characterMakers.push(() => makeCharacter(
  13069. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13070. {
  13071. side: {
  13072. height: math.unit(1.9, "meters"),
  13073. weight: math.unit(326, "kg"),
  13074. name: "Side",
  13075. image: {
  13076. source: "./media/characters/levi/side.svg",
  13077. extra: 1704 / 1334,
  13078. bottom: 0.02
  13079. }
  13080. },
  13081. },
  13082. [
  13083. {
  13084. name: "Normal",
  13085. height: math.unit(1.9, "meters"),
  13086. default: true
  13087. },
  13088. {
  13089. name: "Macro",
  13090. height: math.unit(20, "meters")
  13091. },
  13092. {
  13093. name: "Macro+",
  13094. height: math.unit(200, "meters")
  13095. },
  13096. {
  13097. name: "Megamacro",
  13098. height: math.unit(2, "km")
  13099. },
  13100. {
  13101. name: "Megamacro+",
  13102. height: math.unit(20, "km")
  13103. },
  13104. {
  13105. name: "Gigamacro",
  13106. height: math.unit(2500, "km")
  13107. },
  13108. {
  13109. name: "Gigamacro+",
  13110. height: math.unit(120000, "km")
  13111. },
  13112. {
  13113. name: "Teramacro",
  13114. height: math.unit(7.77e6, "km")
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13120. {
  13121. front: {
  13122. height: math.unit(6 + 4/12, "feet"),
  13123. weight: math.unit(190, "lb"),
  13124. name: "Front",
  13125. image: {
  13126. source: "./media/characters/bmc/front.svg",
  13127. extra: 1626/1472,
  13128. bottom: 79/1705
  13129. }
  13130. },
  13131. back: {
  13132. height: math.unit(6 + 4/12, "feet"),
  13133. weight: math.unit(190, "lb"),
  13134. name: "Back",
  13135. image: {
  13136. source: "./media/characters/bmc/back.svg",
  13137. extra: 1640/1479,
  13138. bottom: 45/1685
  13139. }
  13140. },
  13141. frontArmor: {
  13142. height: math.unit(6 + 4/12, "feet"),
  13143. weight: math.unit(190, "lb"),
  13144. name: "Front-armor",
  13145. image: {
  13146. source: "./media/characters/bmc/front-armor.svg",
  13147. extra: 1538/1468,
  13148. bottom: 79/1617
  13149. }
  13150. },
  13151. },
  13152. [
  13153. {
  13154. name: "Human-sized",
  13155. height: math.unit(6 + 4 / 12, "feet")
  13156. },
  13157. {
  13158. name: "Interactive Size",
  13159. height: math.unit(25, "feet")
  13160. },
  13161. {
  13162. name: "Small",
  13163. height: math.unit(250, "feet")
  13164. },
  13165. {
  13166. name: "Normal",
  13167. height: math.unit(1250, "feet"),
  13168. default: true
  13169. },
  13170. {
  13171. name: "Good Day",
  13172. height: math.unit(88, "miles")
  13173. },
  13174. {
  13175. name: "Largest Measured Size",
  13176. height: math.unit(105.960, "galaxies")
  13177. },
  13178. ]
  13179. ))
  13180. characterMakers.push(() => makeCharacter(
  13181. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13182. {
  13183. front: {
  13184. height: math.unit(20, "feet"),
  13185. weight: math.unit(2016, "kg"),
  13186. name: "Front",
  13187. image: {
  13188. source: "./media/characters/sven-the-kaiju/front.svg",
  13189. extra: 1277/1250,
  13190. bottom: 35/1312
  13191. }
  13192. },
  13193. mouth: {
  13194. height: math.unit(1.85, "feet"),
  13195. name: "Mouth",
  13196. image: {
  13197. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13198. }
  13199. },
  13200. },
  13201. [
  13202. {
  13203. name: "Fairy",
  13204. height: math.unit(6, "inches")
  13205. },
  13206. {
  13207. name: "Normal",
  13208. height: math.unit(20, "feet"),
  13209. default: true
  13210. },
  13211. {
  13212. name: "Rampage",
  13213. height: math.unit(200, "feet")
  13214. },
  13215. {
  13216. name: "Archfey Forest Guardian",
  13217. height: math.unit(1, "mile")
  13218. },
  13219. ]
  13220. ))
  13221. characterMakers.push(() => makeCharacter(
  13222. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13223. {
  13224. front: {
  13225. height: math.unit(4, "meters"),
  13226. weight: math.unit(2, "tons"),
  13227. name: "Front",
  13228. image: {
  13229. source: "./media/characters/marik/front.svg",
  13230. extra: 1057 / 1003,
  13231. bottom: 0.08
  13232. }
  13233. },
  13234. },
  13235. [
  13236. {
  13237. name: "Normal",
  13238. height: math.unit(4, "meters"),
  13239. default: true
  13240. },
  13241. {
  13242. name: "Macro",
  13243. height: math.unit(20, "meters")
  13244. },
  13245. {
  13246. name: "Megamacro",
  13247. height: math.unit(50, "km")
  13248. },
  13249. {
  13250. name: "Gigamacro",
  13251. height: math.unit(100, "km")
  13252. },
  13253. {
  13254. name: "Alpha Macro",
  13255. height: math.unit(7.88e7, "yottameters")
  13256. },
  13257. ]
  13258. ))
  13259. characterMakers.push(() => makeCharacter(
  13260. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13261. {
  13262. front: {
  13263. height: math.unit(6, "feet"),
  13264. weight: math.unit(110, "lb"),
  13265. name: "Front",
  13266. image: {
  13267. source: "./media/characters/mel/front.svg",
  13268. extra: 736 / 617,
  13269. bottom: 0.017
  13270. }
  13271. },
  13272. },
  13273. [
  13274. {
  13275. name: "Pico",
  13276. height: math.unit(3, "pm")
  13277. },
  13278. {
  13279. name: "Nano",
  13280. height: math.unit(3, "nm")
  13281. },
  13282. {
  13283. name: "Micro",
  13284. height: math.unit(0.3, "mm"),
  13285. default: true
  13286. },
  13287. {
  13288. name: "Micro+",
  13289. height: math.unit(3, "mm")
  13290. },
  13291. {
  13292. name: "Normal",
  13293. height: math.unit(5 + 10.5 / 12, "feet")
  13294. },
  13295. ]
  13296. ))
  13297. characterMakers.push(() => makeCharacter(
  13298. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13299. {
  13300. kaiju: {
  13301. height: math.unit(1.75, "meters"),
  13302. weight: math.unit(55, "kg"),
  13303. name: "Kaiju",
  13304. image: {
  13305. source: "./media/characters/lykonous/kaiju.svg",
  13306. extra: 1055 / 946,
  13307. bottom: 0.135
  13308. }
  13309. },
  13310. },
  13311. [
  13312. {
  13313. name: "Normal",
  13314. height: math.unit(2.5, "meters"),
  13315. default: true
  13316. },
  13317. {
  13318. name: "Kaiju Dragon",
  13319. height: math.unit(60, "meters")
  13320. },
  13321. {
  13322. name: "Mega Kaiju",
  13323. height: math.unit(120, "km")
  13324. },
  13325. {
  13326. name: "Giga Kaiju",
  13327. height: math.unit(200, "megameters")
  13328. },
  13329. {
  13330. name: "Terra Kaiju",
  13331. height: math.unit(400, "gigameters")
  13332. },
  13333. {
  13334. name: "Kaiju Dragon God",
  13335. height: math.unit(13000, "exaparsecs")
  13336. },
  13337. ]
  13338. ))
  13339. characterMakers.push(() => makeCharacter(
  13340. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13341. {
  13342. front: {
  13343. height: math.unit(6, "feet"),
  13344. weight: math.unit(150, "lb"),
  13345. name: "Front",
  13346. image: {
  13347. source: "./media/characters/blü/front.svg",
  13348. extra: 1883 / 1564,
  13349. bottom: 0.031
  13350. }
  13351. },
  13352. },
  13353. [
  13354. {
  13355. name: "Normal",
  13356. height: math.unit(13, "feet"),
  13357. default: true
  13358. },
  13359. {
  13360. name: "Big Boi",
  13361. height: math.unit(150, "meters")
  13362. },
  13363. {
  13364. name: "Mini Stomper",
  13365. height: math.unit(300, "meters")
  13366. },
  13367. {
  13368. name: "Macro",
  13369. height: math.unit(1000, "meters")
  13370. },
  13371. {
  13372. name: "Megamacro",
  13373. height: math.unit(11000, "meters")
  13374. },
  13375. {
  13376. name: "Gigamacro",
  13377. height: math.unit(11000, "km")
  13378. },
  13379. {
  13380. name: "Teramacro",
  13381. height: math.unit(420000, "km")
  13382. },
  13383. {
  13384. name: "Examacro",
  13385. height: math.unit(120, "parsecs")
  13386. },
  13387. {
  13388. name: "God Tho",
  13389. height: math.unit(98000000000, "parsecs")
  13390. },
  13391. ]
  13392. ))
  13393. characterMakers.push(() => makeCharacter(
  13394. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13395. {
  13396. taurFront: {
  13397. height: math.unit(6, "feet"),
  13398. weight: math.unit(200, "lb"),
  13399. name: "Taur (Front)",
  13400. image: {
  13401. source: "./media/characters/scales/taur-front.svg",
  13402. extra: 1,
  13403. bottom: 0.05
  13404. }
  13405. },
  13406. taurBack: {
  13407. height: math.unit(6, "feet"),
  13408. weight: math.unit(200, "lb"),
  13409. name: "Taur (Back)",
  13410. image: {
  13411. source: "./media/characters/scales/taur-back.svg",
  13412. extra: 1,
  13413. bottom: 0.08
  13414. }
  13415. },
  13416. anthro: {
  13417. height: math.unit(6 * 7 / 12, "feet"),
  13418. weight: math.unit(100, "lb"),
  13419. name: "Anthro",
  13420. image: {
  13421. source: "./media/characters/scales/anthro.svg",
  13422. extra: 1,
  13423. bottom: 0.06
  13424. }
  13425. },
  13426. },
  13427. [
  13428. {
  13429. name: "Normal",
  13430. height: math.unit(12, "feet"),
  13431. default: true
  13432. },
  13433. ]
  13434. ))
  13435. characterMakers.push(() => makeCharacter(
  13436. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13437. {
  13438. front: {
  13439. height: math.unit(6, "feet"),
  13440. weight: math.unit(150, "lb"),
  13441. name: "Front",
  13442. image: {
  13443. source: "./media/characters/koragos/front.svg",
  13444. extra: 841 / 794,
  13445. bottom: 0.035
  13446. }
  13447. },
  13448. back: {
  13449. height: math.unit(6, "feet"),
  13450. weight: math.unit(150, "lb"),
  13451. name: "Back",
  13452. image: {
  13453. source: "./media/characters/koragos/back.svg",
  13454. extra: 841 / 810,
  13455. bottom: 0.022
  13456. }
  13457. },
  13458. },
  13459. [
  13460. {
  13461. name: "Normal",
  13462. height: math.unit(6 + 11 / 12, "feet"),
  13463. default: true
  13464. },
  13465. {
  13466. name: "Macro",
  13467. height: math.unit(490, "feet")
  13468. },
  13469. {
  13470. name: "Megamacro",
  13471. height: math.unit(10, "miles")
  13472. },
  13473. {
  13474. name: "Gigamacro",
  13475. height: math.unit(50, "miles")
  13476. },
  13477. ]
  13478. ))
  13479. characterMakers.push(() => makeCharacter(
  13480. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13481. {
  13482. front: {
  13483. height: math.unit(6, "feet"),
  13484. weight: math.unit(250, "lb"),
  13485. name: "Front",
  13486. image: {
  13487. source: "./media/characters/xylrem/front.svg",
  13488. extra: 3323 / 3050,
  13489. bottom: 0.065
  13490. }
  13491. },
  13492. },
  13493. [
  13494. {
  13495. name: "Micro",
  13496. height: math.unit(4, "feet")
  13497. },
  13498. {
  13499. name: "Normal",
  13500. height: math.unit(16, "feet"),
  13501. default: true
  13502. },
  13503. {
  13504. name: "Macro",
  13505. height: math.unit(2720, "feet")
  13506. },
  13507. {
  13508. name: "Megamacro",
  13509. height: math.unit(25000, "miles")
  13510. },
  13511. ]
  13512. ))
  13513. characterMakers.push(() => makeCharacter(
  13514. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13515. {
  13516. front: {
  13517. height: math.unit(8, "feet"),
  13518. weight: math.unit(250, "kg"),
  13519. name: "Front",
  13520. image: {
  13521. source: "./media/characters/ikideru/front.svg",
  13522. extra: 930 / 870,
  13523. bottom: 0.087
  13524. }
  13525. },
  13526. back: {
  13527. height: math.unit(8, "feet"),
  13528. weight: math.unit(250, "kg"),
  13529. name: "Back",
  13530. image: {
  13531. source: "./media/characters/ikideru/back.svg",
  13532. extra: 919 / 852,
  13533. bottom: 0.055
  13534. }
  13535. },
  13536. },
  13537. [
  13538. {
  13539. name: "Rare",
  13540. height: math.unit(8, "feet"),
  13541. default: true
  13542. },
  13543. {
  13544. name: "Playful Loom",
  13545. height: math.unit(80, "feet")
  13546. },
  13547. {
  13548. name: "City Leaner",
  13549. height: math.unit(230, "feet")
  13550. },
  13551. {
  13552. name: "Megamacro",
  13553. height: math.unit(2500, "feet")
  13554. },
  13555. {
  13556. name: "Gigamacro",
  13557. height: math.unit(26400, "feet")
  13558. },
  13559. {
  13560. name: "Tectonic Shifter",
  13561. height: math.unit(1.7, "megameters")
  13562. },
  13563. {
  13564. name: "Planet Carer",
  13565. height: math.unit(21, "megameters")
  13566. },
  13567. {
  13568. name: "God",
  13569. height: math.unit(11157.22, "parsecs")
  13570. },
  13571. ]
  13572. ))
  13573. characterMakers.push(() => makeCharacter(
  13574. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13575. {
  13576. front: {
  13577. height: math.unit(6, "feet"),
  13578. weight: math.unit(120, "lb"),
  13579. name: "Front",
  13580. image: {
  13581. source: "./media/characters/neo/front.svg"
  13582. }
  13583. },
  13584. },
  13585. [
  13586. {
  13587. name: "Micro",
  13588. height: math.unit(2, "inches"),
  13589. default: true
  13590. },
  13591. {
  13592. name: "Human Size",
  13593. height: math.unit(5 + 8 / 12, "feet")
  13594. },
  13595. ]
  13596. ))
  13597. characterMakers.push(() => makeCharacter(
  13598. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13599. {
  13600. front: {
  13601. height: math.unit(13 + 10 / 12, "feet"),
  13602. weight: math.unit(5320, "lb"),
  13603. name: "Front",
  13604. image: {
  13605. source: "./media/characters/chauncey-chantz/front.svg",
  13606. extra: 1587 / 1435,
  13607. bottom: 0.02
  13608. }
  13609. },
  13610. },
  13611. [
  13612. {
  13613. name: "Normal",
  13614. height: math.unit(13 + 10 / 12, "feet"),
  13615. default: true
  13616. },
  13617. {
  13618. name: "Macro",
  13619. height: math.unit(45, "feet")
  13620. },
  13621. {
  13622. name: "Megamacro",
  13623. height: math.unit(250, "miles")
  13624. },
  13625. {
  13626. name: "Planetary",
  13627. height: math.unit(10000, "miles")
  13628. },
  13629. {
  13630. name: "Galactic",
  13631. height: math.unit(40000, "parsecs")
  13632. },
  13633. {
  13634. name: "Universal",
  13635. height: math.unit(1, "yottameter")
  13636. },
  13637. ]
  13638. ))
  13639. characterMakers.push(() => makeCharacter(
  13640. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13641. {
  13642. front: {
  13643. height: math.unit(6, "feet"),
  13644. weight: math.unit(150, "lb"),
  13645. name: "Front",
  13646. image: {
  13647. source: "./media/characters/epifox/front.svg",
  13648. extra: 1,
  13649. bottom: 0.075
  13650. }
  13651. },
  13652. },
  13653. [
  13654. {
  13655. name: "Micro",
  13656. height: math.unit(6, "inches")
  13657. },
  13658. {
  13659. name: "Normal",
  13660. height: math.unit(12, "feet"),
  13661. default: true
  13662. },
  13663. {
  13664. name: "Macro",
  13665. height: math.unit(3810, "feet")
  13666. },
  13667. {
  13668. name: "Megamacro",
  13669. height: math.unit(500, "miles")
  13670. },
  13671. ]
  13672. ))
  13673. characterMakers.push(() => makeCharacter(
  13674. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13675. {
  13676. front: {
  13677. height: math.unit(1.8796, "m"),
  13678. weight: math.unit(230, "lb"),
  13679. name: "Front",
  13680. image: {
  13681. source: "./media/characters/colin-t/front.svg",
  13682. extra: 1272 / 1193,
  13683. bottom: 0.07
  13684. }
  13685. },
  13686. },
  13687. [
  13688. {
  13689. name: "Micro",
  13690. height: math.unit(0.571, "meters")
  13691. },
  13692. {
  13693. name: "Normal",
  13694. height: math.unit(1.8796, "meters"),
  13695. default: true
  13696. },
  13697. {
  13698. name: "Tall",
  13699. height: math.unit(4, "meters")
  13700. },
  13701. {
  13702. name: "Macro",
  13703. height: math.unit(67.241, "meters")
  13704. },
  13705. {
  13706. name: "Megamacro",
  13707. height: math.unit(371.856, "meters")
  13708. },
  13709. {
  13710. name: "Planetary",
  13711. height: math.unit(12631.5689, "km")
  13712. },
  13713. ]
  13714. ))
  13715. characterMakers.push(() => makeCharacter(
  13716. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13717. {
  13718. front: {
  13719. height: math.unit(1.85, "meters"),
  13720. weight: math.unit(80, "kg"),
  13721. name: "Front",
  13722. image: {
  13723. source: "./media/characters/matvei/front.svg",
  13724. extra: 456/447,
  13725. bottom: 8/464
  13726. }
  13727. },
  13728. back: {
  13729. height: math.unit(1.85, "meters"),
  13730. weight: math.unit(80, "kg"),
  13731. name: "Back",
  13732. image: {
  13733. source: "./media/characters/matvei/back.svg",
  13734. extra: 434/427,
  13735. bottom: 11/445
  13736. }
  13737. },
  13738. },
  13739. [
  13740. {
  13741. name: "Normal",
  13742. height: math.unit(1.85, "meters"),
  13743. default: true
  13744. },
  13745. ]
  13746. ))
  13747. characterMakers.push(() => makeCharacter(
  13748. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13749. {
  13750. front: {
  13751. height: math.unit(5 + 9 / 12, "feet"),
  13752. weight: math.unit(70, "lb"),
  13753. name: "Front",
  13754. image: {
  13755. source: "./media/characters/quincy/front.svg",
  13756. extra: 3041 / 2751
  13757. }
  13758. },
  13759. back: {
  13760. height: math.unit(5 + 9 / 12, "feet"),
  13761. weight: math.unit(70, "lb"),
  13762. name: "Back",
  13763. image: {
  13764. source: "./media/characters/quincy/back.svg",
  13765. extra: 3041 / 2751
  13766. }
  13767. },
  13768. flying: {
  13769. height: math.unit(5 + 4 / 12, "feet"),
  13770. weight: math.unit(70, "lb"),
  13771. name: "Flying",
  13772. image: {
  13773. source: "./media/characters/quincy/flying.svg",
  13774. extra: 1044 / 930
  13775. }
  13776. },
  13777. },
  13778. [
  13779. {
  13780. name: "Micro",
  13781. height: math.unit(3, "cm")
  13782. },
  13783. {
  13784. name: "Normal",
  13785. height: math.unit(5 + 9 / 12, "feet")
  13786. },
  13787. {
  13788. name: "Macro",
  13789. height: math.unit(200, "meters"),
  13790. default: true
  13791. },
  13792. {
  13793. name: "Megamacro",
  13794. height: math.unit(1000, "meters")
  13795. },
  13796. ]
  13797. ))
  13798. characterMakers.push(() => makeCharacter(
  13799. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13800. {
  13801. front: {
  13802. height: math.unit(3 + 11/12, "feet"),
  13803. weight: math.unit(50, "lb"),
  13804. name: "Front",
  13805. image: {
  13806. source: "./media/characters/vanrel/front.svg",
  13807. extra: 1104/949,
  13808. bottom: 52/1156
  13809. }
  13810. },
  13811. back: {
  13812. height: math.unit(3 + 11/12, "feet"),
  13813. weight: math.unit(50, "lb"),
  13814. name: "Back",
  13815. image: {
  13816. source: "./media/characters/vanrel/back.svg",
  13817. extra: 1119/976,
  13818. bottom: 37/1156
  13819. }
  13820. },
  13821. tome: {
  13822. height: math.unit(1.35, "feet"),
  13823. weight: math.unit(10, "lb"),
  13824. name: "Vanrel's Tome",
  13825. rename: true,
  13826. image: {
  13827. source: "./media/characters/vanrel/tome.svg"
  13828. }
  13829. },
  13830. beans: {
  13831. height: math.unit(0.89, "feet"),
  13832. name: "Beans",
  13833. image: {
  13834. source: "./media/characters/vanrel/beans.svg"
  13835. }
  13836. },
  13837. },
  13838. [
  13839. {
  13840. name: "Normal",
  13841. height: math.unit(3 + 11/12, "feet"),
  13842. default: true
  13843. },
  13844. ]
  13845. ))
  13846. characterMakers.push(() => makeCharacter(
  13847. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13848. {
  13849. front: {
  13850. height: math.unit(7 + 5 / 12, "feet"),
  13851. name: "Front",
  13852. image: {
  13853. source: "./media/characters/kuiper-vanrel/front.svg",
  13854. extra: 1219/1169,
  13855. bottom: 69/1288
  13856. }
  13857. },
  13858. back: {
  13859. height: math.unit(7 + 5 / 12, "feet"),
  13860. name: "Back",
  13861. image: {
  13862. source: "./media/characters/kuiper-vanrel/back.svg",
  13863. extra: 1236/1193,
  13864. bottom: 27/1263
  13865. }
  13866. },
  13867. foot: {
  13868. height: math.unit(0.55, "meters"),
  13869. name: "Foot",
  13870. image: {
  13871. source: "./media/characters/kuiper-vanrel/foot.svg",
  13872. }
  13873. },
  13874. battle: {
  13875. height: math.unit(6.824, "feet"),
  13876. name: "Battle",
  13877. image: {
  13878. source: "./media/characters/kuiper-vanrel/battle.svg",
  13879. extra: 1466 / 1327,
  13880. bottom: 29 / 1492.5
  13881. }
  13882. },
  13883. meerkui: {
  13884. height: math.unit(18, "inches"),
  13885. name: "Meerkui",
  13886. image: {
  13887. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13888. extra: 1354/1289,
  13889. bottom: 69/1423
  13890. }
  13891. },
  13892. },
  13893. [
  13894. {
  13895. name: "Normal",
  13896. height: math.unit(7 + 5 / 12, "feet"),
  13897. default: true
  13898. },
  13899. ]
  13900. ))
  13901. characterMakers.push(() => makeCharacter(
  13902. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13903. {
  13904. front: {
  13905. height: math.unit(8 + 5 / 12, "feet"),
  13906. name: "Front",
  13907. image: {
  13908. source: "./media/characters/keset-vanrel/front.svg",
  13909. extra: 1231/1148,
  13910. bottom: 82/1313
  13911. }
  13912. },
  13913. back: {
  13914. height: math.unit(8 + 5 / 12, "feet"),
  13915. name: "Back",
  13916. image: {
  13917. source: "./media/characters/keset-vanrel/back.svg",
  13918. extra: 1240/1174,
  13919. bottom: 33/1273
  13920. }
  13921. },
  13922. hand: {
  13923. height: math.unit(0.6, "meters"),
  13924. name: "Hand",
  13925. image: {
  13926. source: "./media/characters/keset-vanrel/hand.svg"
  13927. }
  13928. },
  13929. foot: {
  13930. height: math.unit(0.94978, "meters"),
  13931. name: "Foot",
  13932. image: {
  13933. source: "./media/characters/keset-vanrel/foot.svg"
  13934. }
  13935. },
  13936. battle: {
  13937. height: math.unit(7.408, "feet"),
  13938. name: "Battle",
  13939. image: {
  13940. source: "./media/characters/keset-vanrel/battle.svg",
  13941. extra: 1890 / 1386,
  13942. bottom: 73.28 / 1970
  13943. }
  13944. },
  13945. },
  13946. [
  13947. {
  13948. name: "Normal",
  13949. height: math.unit(8 + 5 / 12, "feet"),
  13950. default: true
  13951. },
  13952. ]
  13953. ))
  13954. characterMakers.push(() => makeCharacter(
  13955. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13956. {
  13957. front: {
  13958. height: math.unit(6, "feet"),
  13959. weight: math.unit(150, "lb"),
  13960. name: "Front",
  13961. image: {
  13962. source: "./media/characters/neos/front.svg",
  13963. extra: 1696 / 992,
  13964. bottom: 0.14
  13965. }
  13966. },
  13967. },
  13968. [
  13969. {
  13970. name: "Normal",
  13971. height: math.unit(54, "cm"),
  13972. default: true
  13973. },
  13974. {
  13975. name: "Macro",
  13976. height: math.unit(100, "m")
  13977. },
  13978. {
  13979. name: "Megamacro",
  13980. height: math.unit(10, "km")
  13981. },
  13982. {
  13983. name: "Megamacro+",
  13984. height: math.unit(100, "km")
  13985. },
  13986. {
  13987. name: "Gigamacro",
  13988. height: math.unit(100, "Mm")
  13989. },
  13990. {
  13991. name: "Teramacro",
  13992. height: math.unit(100, "Gm")
  13993. },
  13994. {
  13995. name: "Examacro",
  13996. height: math.unit(100, "Em")
  13997. },
  13998. {
  13999. name: "Godly",
  14000. height: math.unit(10000, "Ym")
  14001. },
  14002. {
  14003. name: "Beyond Godly",
  14004. height: math.unit(25, "multiverses")
  14005. },
  14006. ]
  14007. ))
  14008. characterMakers.push(() => makeCharacter(
  14009. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  14010. {
  14011. fluide_tame: {
  14012. height: math.unit(5, "feet"),
  14013. name: "Tame",
  14014. image: {
  14015. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14016. extra: 1655/1574,
  14017. bottom: 231/1886
  14018. },
  14019. form: "fluide",
  14020. default: true
  14021. },
  14022. fluide_nude: {
  14023. height: math.unit(5, "feet"),
  14024. name: "Nude",
  14025. image: {
  14026. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14027. extra: 1655/1574,
  14028. bottom: 231/1886
  14029. },
  14030. form: "fluide",
  14031. },
  14032. male_tame: {
  14033. height: math.unit(5, "feet"),
  14034. name: "Tame",
  14035. image: {
  14036. source: "./media/characters/sammy-mouse/male-tame.svg",
  14037. extra: 1655/1574,
  14038. bottom: 231/1886
  14039. },
  14040. form: "male",
  14041. default: true
  14042. },
  14043. male_nude: {
  14044. height: math.unit(5, "feet"),
  14045. name: "Nude",
  14046. image: {
  14047. source: "./media/characters/sammy-mouse/male-nude.svg",
  14048. extra: 1655/1574,
  14049. bottom: 231/1886
  14050. },
  14051. form: "male",
  14052. },
  14053. female_nude: {
  14054. height: math.unit(5, "feet"),
  14055. name: "Nude",
  14056. image: {
  14057. source: "./media/characters/sammy-mouse/female-nude.svg",
  14058. extra: 1655/1574,
  14059. bottom: 231/1886
  14060. },
  14061. form: "female",
  14062. default: true
  14063. },
  14064. mouth: {
  14065. height: math.unit(0.32, "feet"),
  14066. name: "Mouth",
  14067. image: {
  14068. source: "./media/characters/sammy-mouse/mouth.svg"
  14069. },
  14070. allForms: true
  14071. },
  14072. paw: {
  14073. height: math.unit(0.42, "feet"),
  14074. name: "Paw",
  14075. image: {
  14076. source: "./media/characters/sammy-mouse/paw.svg"
  14077. },
  14078. allForms: true
  14079. },
  14080. },
  14081. [
  14082. {
  14083. name: "Micro",
  14084. height: math.unit(5, "inches"),
  14085. allForms: true
  14086. },
  14087. {
  14088. name: "Normal",
  14089. height: math.unit(5, "feet"),
  14090. default: true,
  14091. allForms: true
  14092. },
  14093. {
  14094. name: "Macro",
  14095. height: math.unit(60, "feet"),
  14096. allForms: true
  14097. },
  14098. ],
  14099. {
  14100. "fluide": {
  14101. name: "Fluide",
  14102. default: true
  14103. },
  14104. "male": {
  14105. name: "Male",
  14106. },
  14107. "female": {
  14108. name: "Female",
  14109. },
  14110. }
  14111. ))
  14112. characterMakers.push(() => makeCharacter(
  14113. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14114. {
  14115. front: {
  14116. height: math.unit(4, "feet"),
  14117. weight: math.unit(50, "lb"),
  14118. name: "Front",
  14119. image: {
  14120. source: "./media/characters/kole/front.svg",
  14121. extra: 1423 / 1303,
  14122. bottom: 0.025
  14123. }
  14124. },
  14125. back: {
  14126. height: math.unit(4, "feet"),
  14127. weight: math.unit(50, "lb"),
  14128. name: "Back",
  14129. image: {
  14130. source: "./media/characters/kole/back.svg",
  14131. extra: 1426 / 1280,
  14132. bottom: 0.02
  14133. }
  14134. },
  14135. },
  14136. [
  14137. {
  14138. name: "Normal",
  14139. height: math.unit(4, "feet"),
  14140. default: true
  14141. },
  14142. ]
  14143. ))
  14144. characterMakers.push(() => makeCharacter(
  14145. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14146. {
  14147. front: {
  14148. height: math.unit(2.5, "feet"),
  14149. weight: math.unit(32, "lb"),
  14150. name: "Front",
  14151. image: {
  14152. source: "./media/characters/rufran/front.svg",
  14153. extra: 1313/885,
  14154. bottom: 94/1407
  14155. }
  14156. },
  14157. side: {
  14158. height: math.unit(2.5, "feet"),
  14159. weight: math.unit(32, "lb"),
  14160. name: "Side",
  14161. image: {
  14162. source: "./media/characters/rufran/side.svg",
  14163. extra: 1109/852,
  14164. bottom: 118/1227
  14165. }
  14166. },
  14167. back: {
  14168. height: math.unit(2.5, "feet"),
  14169. weight: math.unit(32, "lb"),
  14170. name: "Back",
  14171. image: {
  14172. source: "./media/characters/rufran/back.svg",
  14173. extra: 1280/878,
  14174. bottom: 131/1411
  14175. }
  14176. },
  14177. mouth: {
  14178. height: math.unit(1.13, "feet"),
  14179. name: "Mouth",
  14180. image: {
  14181. source: "./media/characters/rufran/mouth.svg"
  14182. }
  14183. },
  14184. foot: {
  14185. height: math.unit(1.33, "feet"),
  14186. name: "Foot",
  14187. image: {
  14188. source: "./media/characters/rufran/foot.svg"
  14189. }
  14190. },
  14191. koboldFront: {
  14192. height: math.unit(2 + 6 / 12, "feet"),
  14193. weight: math.unit(20, "lb"),
  14194. name: "Front (Kobold)",
  14195. image: {
  14196. source: "./media/characters/rufran/kobold-front.svg",
  14197. extra: 2041 / 1839,
  14198. bottom: 0.055
  14199. }
  14200. },
  14201. koboldBack: {
  14202. height: math.unit(2 + 6 / 12, "feet"),
  14203. weight: math.unit(20, "lb"),
  14204. name: "Back (Kobold)",
  14205. image: {
  14206. source: "./media/characters/rufran/kobold-back.svg",
  14207. extra: 2054 / 1839,
  14208. bottom: 0.01
  14209. }
  14210. },
  14211. koboldHand: {
  14212. height: math.unit(0.2166, "meters"),
  14213. name: "Hand (Kobold)",
  14214. image: {
  14215. source: "./media/characters/rufran/kobold-hand.svg"
  14216. }
  14217. },
  14218. koboldFoot: {
  14219. height: math.unit(0.185, "meters"),
  14220. name: "Foot (Kobold)",
  14221. image: {
  14222. source: "./media/characters/rufran/kobold-foot.svg"
  14223. }
  14224. },
  14225. },
  14226. [
  14227. {
  14228. name: "Micro",
  14229. height: math.unit(1, "inch")
  14230. },
  14231. {
  14232. name: "Normal",
  14233. height: math.unit(2 + 6 / 12, "feet"),
  14234. default: true
  14235. },
  14236. {
  14237. name: "Big",
  14238. height: math.unit(60, "feet")
  14239. },
  14240. {
  14241. name: "Macro",
  14242. height: math.unit(325, "feet")
  14243. },
  14244. ]
  14245. ))
  14246. characterMakers.push(() => makeCharacter(
  14247. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14248. {
  14249. front: {
  14250. height: math.unit(0.3, "meters"),
  14251. weight: math.unit(3.5, "kg"),
  14252. name: "Front",
  14253. image: {
  14254. source: "./media/characters/chip/front.svg",
  14255. extra: 748 / 674
  14256. }
  14257. },
  14258. },
  14259. [
  14260. {
  14261. name: "Micro",
  14262. height: math.unit(1, "inch"),
  14263. default: true
  14264. },
  14265. ]
  14266. ))
  14267. characterMakers.push(() => makeCharacter(
  14268. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14269. {
  14270. side: {
  14271. height: math.unit(2.3, "meters"),
  14272. weight: math.unit(3500, "lb"),
  14273. name: "Side",
  14274. image: {
  14275. source: "./media/characters/torvid/side.svg",
  14276. extra: 1972 / 722,
  14277. bottom: 0.035
  14278. }
  14279. },
  14280. },
  14281. [
  14282. {
  14283. name: "Normal",
  14284. height: math.unit(2.3, "meters"),
  14285. default: true
  14286. },
  14287. ]
  14288. ))
  14289. characterMakers.push(() => makeCharacter(
  14290. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14291. {
  14292. front: {
  14293. height: math.unit(2, "meters"),
  14294. weight: math.unit(150.5, "kg"),
  14295. name: "Front",
  14296. image: {
  14297. source: "./media/characters/susan/front.svg",
  14298. extra: 693 / 635,
  14299. bottom: 0.05
  14300. }
  14301. },
  14302. },
  14303. [
  14304. {
  14305. name: "Megamacro",
  14306. height: math.unit(505, "miles"),
  14307. default: true
  14308. },
  14309. ]
  14310. ))
  14311. characterMakers.push(() => makeCharacter(
  14312. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14313. {
  14314. front: {
  14315. height: math.unit(6, "feet"),
  14316. weight: math.unit(150, "lb"),
  14317. name: "Front",
  14318. image: {
  14319. source: "./media/characters/raindrops/front.svg",
  14320. extra: 2655 / 2461,
  14321. bottom: 49 / 2705
  14322. }
  14323. },
  14324. back: {
  14325. height: math.unit(6, "feet"),
  14326. weight: math.unit(150, "lb"),
  14327. name: "Back",
  14328. image: {
  14329. source: "./media/characters/raindrops/back.svg",
  14330. extra: 2574 / 2400,
  14331. bottom: 65 / 2634
  14332. }
  14333. },
  14334. },
  14335. [
  14336. {
  14337. name: "Micro",
  14338. height: math.unit(6, "inches")
  14339. },
  14340. {
  14341. name: "Normal",
  14342. height: math.unit(6 + 2 / 12, "feet")
  14343. },
  14344. {
  14345. name: "Macro",
  14346. height: math.unit(131, "feet"),
  14347. default: true
  14348. },
  14349. {
  14350. name: "Megamacro",
  14351. height: math.unit(15, "miles")
  14352. },
  14353. {
  14354. name: "Gigamacro",
  14355. height: math.unit(4000, "miles")
  14356. },
  14357. {
  14358. name: "Teramacro",
  14359. height: math.unit(315000, "miles")
  14360. },
  14361. ]
  14362. ))
  14363. characterMakers.push(() => makeCharacter(
  14364. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14365. {
  14366. front: {
  14367. height: math.unit(2.794, "meters"),
  14368. weight: math.unit(325, "kg"),
  14369. name: "Front",
  14370. image: {
  14371. source: "./media/characters/tezwa/front.svg",
  14372. extra: 2083 / 1906,
  14373. bottom: 0.031
  14374. }
  14375. },
  14376. foot: {
  14377. height: math.unit(0.687, "meters"),
  14378. name: "Foot",
  14379. image: {
  14380. source: "./media/characters/tezwa/foot.svg"
  14381. }
  14382. },
  14383. },
  14384. [
  14385. {
  14386. name: "Normal",
  14387. height: math.unit(9 + 2 / 12, "feet"),
  14388. default: true
  14389. },
  14390. ]
  14391. ))
  14392. characterMakers.push(() => makeCharacter(
  14393. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14394. {
  14395. front: {
  14396. height: math.unit(58, "feet"),
  14397. weight: math.unit(89000, "lb"),
  14398. name: "Front",
  14399. image: {
  14400. source: "./media/characters/typhus/front.svg",
  14401. extra: 816 / 800,
  14402. bottom: 0.065
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Macro",
  14409. height: math.unit(58, "feet"),
  14410. default: true
  14411. },
  14412. ]
  14413. ))
  14414. characterMakers.push(() => makeCharacter(
  14415. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14416. {
  14417. front: {
  14418. height: math.unit(12, "feet"),
  14419. weight: math.unit(6, "tonnes"),
  14420. name: "Front",
  14421. image: {
  14422. source: "./media/characters/lyra-von-wulf/front.svg",
  14423. extra: 1,
  14424. bottom: 0.10
  14425. }
  14426. },
  14427. frontMecha: {
  14428. height: math.unit(12, "feet"),
  14429. weight: math.unit(12, "tonnes"),
  14430. name: "Front (Mecha)",
  14431. image: {
  14432. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14433. extra: 1,
  14434. bottom: 0.042
  14435. }
  14436. },
  14437. maw: {
  14438. height: math.unit(2.2, "feet"),
  14439. name: "Maw",
  14440. image: {
  14441. source: "./media/characters/lyra-von-wulf/maw.svg"
  14442. }
  14443. },
  14444. },
  14445. [
  14446. {
  14447. name: "Normal",
  14448. height: math.unit(12, "feet"),
  14449. default: true
  14450. },
  14451. {
  14452. name: "Classic",
  14453. height: math.unit(50, "feet")
  14454. },
  14455. {
  14456. name: "Macro",
  14457. height: math.unit(500, "feet")
  14458. },
  14459. {
  14460. name: "Megamacro",
  14461. height: math.unit(1, "mile")
  14462. },
  14463. {
  14464. name: "Gigamacro",
  14465. height: math.unit(400, "miles")
  14466. },
  14467. {
  14468. name: "Teramacro",
  14469. height: math.unit(22000, "miles")
  14470. },
  14471. {
  14472. name: "Solarmacro",
  14473. height: math.unit(8600000, "miles")
  14474. },
  14475. {
  14476. name: "Galactic",
  14477. height: math.unit(1057000, "lightyears")
  14478. },
  14479. ]
  14480. ))
  14481. characterMakers.push(() => makeCharacter(
  14482. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14483. {
  14484. front: {
  14485. height: math.unit(6 + 10 / 12, "feet"),
  14486. weight: math.unit(150, "lb"),
  14487. name: "Front",
  14488. image: {
  14489. source: "./media/characters/dixon/front.svg",
  14490. extra: 3361 / 3209,
  14491. bottom: 0.01
  14492. }
  14493. },
  14494. },
  14495. [
  14496. {
  14497. name: "Normal",
  14498. height: math.unit(6 + 10 / 12, "feet"),
  14499. default: true
  14500. },
  14501. {
  14502. name: "Big",
  14503. height: math.unit(12, "meters")
  14504. },
  14505. {
  14506. name: "Macro",
  14507. height: math.unit(500, "meters")
  14508. },
  14509. {
  14510. name: "Megamacro",
  14511. height: math.unit(2, "km")
  14512. },
  14513. ]
  14514. ))
  14515. characterMakers.push(() => makeCharacter(
  14516. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14517. {
  14518. kingCheetah_front: {
  14519. height: math.unit(1.85, "meters"),
  14520. weight: math.unit(68, "kg"),
  14521. name: "Front",
  14522. image: {
  14523. source: "./media/characters/kauko/king-cheetah-front.svg",
  14524. extra: 1007/972,
  14525. bottom: 35/1042
  14526. },
  14527. form: "king-cheetah",
  14528. default: true
  14529. },
  14530. kingCheetah_back: {
  14531. height: math.unit(1.85, "meters"),
  14532. weight: math.unit(68, "kg"),
  14533. name: "Back",
  14534. image: {
  14535. source: "./media/characters/kauko/king-cheetah-back.svg",
  14536. extra: 1015/980,
  14537. bottom: 11/1026
  14538. },
  14539. form: "king-cheetah",
  14540. },
  14541. kingCheetah_hand: {
  14542. height: math.unit(0.23, "meters"),
  14543. name: "Hand",
  14544. image: {
  14545. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14546. },
  14547. form: "king-cheetah",
  14548. },
  14549. kingCheetah_paw: {
  14550. height: math.unit(0.38, "meters"),
  14551. name: "Paw",
  14552. image: {
  14553. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14554. },
  14555. form: "king-cheetah",
  14556. },
  14557. kingCheetah_nape: {
  14558. height: math.unit(0.23, "meters"),
  14559. name: "Nape",
  14560. image: {
  14561. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14562. },
  14563. form: "king-cheetah",
  14564. },
  14565. wolf_front: {
  14566. height: math.unit(1.88, "meters"),
  14567. weight: math.unit(74, "kg"),
  14568. name: "Front",
  14569. image: {
  14570. source: "./media/characters/kauko/wolf-front.svg",
  14571. extra: 952/908,
  14572. bottom: 64/1016
  14573. },
  14574. form: "wolf",
  14575. default: true
  14576. },
  14577. wolf_dressed: {
  14578. height: math.unit(1.88, "meters"),
  14579. weight: math.unit(74, "kg"),
  14580. name: "Dressed",
  14581. image: {
  14582. source: "./media/characters/kauko/wolf-dressed.svg",
  14583. extra: 963/916,
  14584. bottom: 101/1064
  14585. },
  14586. form: "wolf",
  14587. },
  14588. wolf_hand: {
  14589. height: math.unit(0.3, "meters"),
  14590. name: "Hand",
  14591. image: {
  14592. source: "./media/characters/kauko/wolf-hand.svg"
  14593. },
  14594. form: "wolf",
  14595. },
  14596. wolf_paw: {
  14597. height: math.unit(0.407, "meters"),
  14598. name: "Paw",
  14599. image: {
  14600. source: "./media/characters/kauko/wolf-paw.svg"
  14601. },
  14602. form: "wolf",
  14603. },
  14604. wolf_nape: {
  14605. height: math.unit(0.25, "meters"),
  14606. name: "Nape",
  14607. image: {
  14608. source: "./media/characters/kauko/wolf-nape.svg"
  14609. },
  14610. form: "wolf",
  14611. },
  14612. },
  14613. [
  14614. {
  14615. name: "Normal",
  14616. height: math.unit(1.85, "m"),
  14617. default: true,
  14618. form: "king-cheetah"
  14619. },
  14620. {
  14621. name: "Normal",
  14622. height: math.unit(1.88, "m"),
  14623. default: true,
  14624. form: "wolf"
  14625. },
  14626. ],
  14627. {
  14628. "king-cheetah": {
  14629. name: "King Cheetah",
  14630. default: true
  14631. },
  14632. "wolf": {
  14633. name: "Wolf",
  14634. },
  14635. }
  14636. ))
  14637. characterMakers.push(() => makeCharacter(
  14638. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14639. {
  14640. frontSfw: {
  14641. height: math.unit(5, "meters"),
  14642. weight: math.unit(4250, "lb"),
  14643. name: "Front",
  14644. image: {
  14645. source: "./media/characters/varg/front-sfw.svg",
  14646. extra: 1103/1010,
  14647. bottom: 50/1153
  14648. },
  14649. form: "anthro",
  14650. default: true
  14651. },
  14652. backSfw: {
  14653. height: math.unit(5, "meters"),
  14654. weight: math.unit(4250, "lb"),
  14655. name: "Back",
  14656. image: {
  14657. source: "./media/characters/varg/back-sfw.svg",
  14658. extra: 1038/1022,
  14659. bottom: 36/1074
  14660. },
  14661. form: "anthro"
  14662. },
  14663. frontNsfw: {
  14664. height: math.unit(5, "meters"),
  14665. weight: math.unit(4250, "lb"),
  14666. name: "Front (NSFW)",
  14667. image: {
  14668. source: "./media/characters/varg/front-nsfw.svg",
  14669. extra: 1103/1010,
  14670. bottom: 50/1153
  14671. },
  14672. form: "anthro"
  14673. },
  14674. sheath: {
  14675. height: math.unit(3.8, "feet"),
  14676. weight: math.unit(90, "kilograms"),
  14677. name: "Sheath",
  14678. image: {
  14679. source: "./media/characters/varg/sheath.svg"
  14680. },
  14681. form: "anthro"
  14682. },
  14683. dick: {
  14684. height: math.unit(4.6, "feet"),
  14685. weight: math.unit(451, "kilograms"),
  14686. name: "Dick",
  14687. image: {
  14688. source: "./media/characters/varg/dick.svg"
  14689. },
  14690. form: "anthro"
  14691. },
  14692. feralSfw: {
  14693. height: math.unit(5, "meters"),
  14694. weight: math.unit(100000, "lb"),
  14695. name: "Side",
  14696. image: {
  14697. source: "./media/characters/varg/feral-sfw.svg",
  14698. extra: 1065/511,
  14699. bottom: 211/1276
  14700. },
  14701. form: "feral",
  14702. default: true
  14703. },
  14704. feralNsfw: {
  14705. height: math.unit(5, "meters"),
  14706. weight: math.unit(100000, "lb"),
  14707. name: "Side (NSFW)",
  14708. image: {
  14709. source: "./media/characters/varg/feral-nsfw.svg",
  14710. extra: 1065/511,
  14711. bottom: 211/1276
  14712. },
  14713. form: "feral",
  14714. },
  14715. feralSheath: {
  14716. height: math.unit(9.8, "feet"),
  14717. weight: math.unit(2000, "kilograms"),
  14718. name: "Sheath",
  14719. image: {
  14720. source: "./media/characters/varg/sheath.svg"
  14721. },
  14722. form: "feral"
  14723. },
  14724. feralDick: {
  14725. height: math.unit(13.11, "feet"),
  14726. weight: math.unit(10440, "kilograms"),
  14727. name: "Dick",
  14728. image: {
  14729. source: "./media/characters/varg/dick.svg"
  14730. },
  14731. form: "feral"
  14732. },
  14733. },
  14734. [
  14735. {
  14736. name: "Normal",
  14737. height: math.unit(5, "meters"),
  14738. form: "anthro"
  14739. },
  14740. {
  14741. name: "Macro",
  14742. height: math.unit(200, "meters"),
  14743. form: "anthro"
  14744. },
  14745. {
  14746. name: "Megamacro",
  14747. height: math.unit(20, "kilometers"),
  14748. form: "anthro"
  14749. },
  14750. {
  14751. name: "True Size",
  14752. height: math.unit(211, "km"),
  14753. form: "anthro",
  14754. default: true
  14755. },
  14756. {
  14757. name: "Gigamacro",
  14758. height: math.unit(1000, "km"),
  14759. form: "anthro"
  14760. },
  14761. {
  14762. name: "Gigamacro+",
  14763. height: math.unit(8000, "km"),
  14764. form: "anthro"
  14765. },
  14766. {
  14767. name: "Teramacro",
  14768. height: math.unit(1000000, "km"),
  14769. form: "anthro"
  14770. },
  14771. {
  14772. name: "Normal",
  14773. height: math.unit(5, "meters"),
  14774. form: "feral"
  14775. },
  14776. {
  14777. name: "Macro",
  14778. height: math.unit(200, "meters"),
  14779. form: "feral"
  14780. },
  14781. {
  14782. name: "Megamacro",
  14783. height: math.unit(20, "kilometers"),
  14784. form: "feral"
  14785. },
  14786. {
  14787. name: "True Size",
  14788. height: math.unit(211, "km"),
  14789. form: "feral",
  14790. default: true
  14791. },
  14792. {
  14793. name: "Gigamacro",
  14794. height: math.unit(1000, "km"),
  14795. form: "feral"
  14796. },
  14797. {
  14798. name: "Gigamacro+",
  14799. height: math.unit(8000, "km"),
  14800. form: "feral"
  14801. },
  14802. {
  14803. name: "Teramacro",
  14804. height: math.unit(1000000, "km"),
  14805. form: "feral"
  14806. },
  14807. ],
  14808. {
  14809. "anthro": {
  14810. name: "Anthro",
  14811. default: true
  14812. },
  14813. "feral": {
  14814. name: "Feral",
  14815. },
  14816. }
  14817. ))
  14818. characterMakers.push(() => makeCharacter(
  14819. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14820. {
  14821. front: {
  14822. height: math.unit(7 + 7 / 12, "feet"),
  14823. weight: math.unit(267, "lb"),
  14824. name: "Front",
  14825. image: {
  14826. source: "./media/characters/dayza/front.svg",
  14827. extra: 1262 / 1200,
  14828. bottom: 0.035
  14829. }
  14830. },
  14831. side: {
  14832. height: math.unit(7 + 7 / 12, "feet"),
  14833. weight: math.unit(267, "lb"),
  14834. name: "Side",
  14835. image: {
  14836. source: "./media/characters/dayza/side.svg",
  14837. extra: 1295 / 1245,
  14838. bottom: 0.05
  14839. }
  14840. },
  14841. back: {
  14842. height: math.unit(7 + 7 / 12, "feet"),
  14843. weight: math.unit(267, "lb"),
  14844. name: "Back",
  14845. image: {
  14846. source: "./media/characters/dayza/back.svg",
  14847. extra: 1241 / 1170
  14848. }
  14849. },
  14850. },
  14851. [
  14852. {
  14853. name: "Normal",
  14854. height: math.unit(7 + 7 / 12, "feet"),
  14855. default: true
  14856. },
  14857. {
  14858. name: "Macro",
  14859. height: math.unit(155, "feet")
  14860. },
  14861. ]
  14862. ))
  14863. characterMakers.push(() => makeCharacter(
  14864. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14865. {
  14866. front: {
  14867. height: math.unit(6 + 5 / 12, "feet"),
  14868. weight: math.unit(160, "lb"),
  14869. name: "Front",
  14870. image: {
  14871. source: "./media/characters/xanthos/front.svg",
  14872. extra: 1,
  14873. bottom: 0.04
  14874. }
  14875. },
  14876. back: {
  14877. height: math.unit(6 + 5 / 12, "feet"),
  14878. weight: math.unit(160, "lb"),
  14879. name: "Back",
  14880. image: {
  14881. source: "./media/characters/xanthos/back.svg",
  14882. extra: 1,
  14883. bottom: 0.03
  14884. }
  14885. },
  14886. hand: {
  14887. height: math.unit(0.928, "feet"),
  14888. name: "Hand",
  14889. image: {
  14890. source: "./media/characters/xanthos/hand.svg"
  14891. }
  14892. },
  14893. foot: {
  14894. height: math.unit(1.286, "feet"),
  14895. name: "Foot",
  14896. image: {
  14897. source: "./media/characters/xanthos/foot.svg"
  14898. }
  14899. },
  14900. },
  14901. [
  14902. {
  14903. name: "Normal",
  14904. height: math.unit(6 + 5 / 12, "feet"),
  14905. default: true
  14906. },
  14907. {
  14908. name: "Normal+",
  14909. height: math.unit(6, "meters")
  14910. },
  14911. {
  14912. name: "Macro",
  14913. height: math.unit(40, "feet")
  14914. },
  14915. {
  14916. name: "Macro+",
  14917. height: math.unit(200, "meters")
  14918. },
  14919. {
  14920. name: "Megamacro",
  14921. height: math.unit(20, "km")
  14922. },
  14923. {
  14924. name: "Megamacro+",
  14925. height: math.unit(100, "km")
  14926. },
  14927. {
  14928. name: "Gigamacro",
  14929. height: math.unit(200, "megameters")
  14930. },
  14931. {
  14932. name: "Gigamacro+",
  14933. height: math.unit(1.5, "gigameters")
  14934. },
  14935. ]
  14936. ))
  14937. characterMakers.push(() => makeCharacter(
  14938. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14939. {
  14940. front: {
  14941. height: math.unit(6 + 3 / 12, "feet"),
  14942. weight: math.unit(215, "lb"),
  14943. name: "Front",
  14944. image: {
  14945. source: "./media/characters/grynn/front.svg",
  14946. extra: 4627 / 4209,
  14947. bottom: 0.047
  14948. }
  14949. },
  14950. },
  14951. [
  14952. {
  14953. name: "Micro",
  14954. height: math.unit(6, "inches")
  14955. },
  14956. {
  14957. name: "Normal",
  14958. height: math.unit(6 + 3 / 12, "feet"),
  14959. default: true
  14960. },
  14961. {
  14962. name: "Big",
  14963. height: math.unit(104, "feet")
  14964. },
  14965. {
  14966. name: "Macro",
  14967. height: math.unit(944, "feet")
  14968. },
  14969. {
  14970. name: "Macro+",
  14971. height: math.unit(9480, "feet")
  14972. },
  14973. {
  14974. name: "Megamacro",
  14975. height: math.unit(78752, "feet")
  14976. },
  14977. {
  14978. name: "Megamacro+",
  14979. height: math.unit(630128, "feet")
  14980. },
  14981. {
  14982. name: "Megamacro++",
  14983. height: math.unit(3150695, "feet")
  14984. },
  14985. ]
  14986. ))
  14987. characterMakers.push(() => makeCharacter(
  14988. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14989. {
  14990. front: {
  14991. height: math.unit(7 + 5 / 12, "feet"),
  14992. weight: math.unit(450, "lb"),
  14993. name: "Front",
  14994. image: {
  14995. source: "./media/characters/mocha-aura/front.svg",
  14996. extra: 1907 / 1817,
  14997. bottom: 0.04
  14998. }
  14999. },
  15000. back: {
  15001. height: math.unit(7 + 5 / 12, "feet"),
  15002. weight: math.unit(450, "lb"),
  15003. name: "Back",
  15004. image: {
  15005. source: "./media/characters/mocha-aura/back.svg",
  15006. extra: 1900 / 1825,
  15007. bottom: 0.045
  15008. }
  15009. },
  15010. },
  15011. [
  15012. {
  15013. name: "Nano",
  15014. height: math.unit(1, "nm")
  15015. },
  15016. {
  15017. name: "Megamicro",
  15018. height: math.unit(1, "mm")
  15019. },
  15020. {
  15021. name: "Micro",
  15022. height: math.unit(3, "inches")
  15023. },
  15024. {
  15025. name: "Normal",
  15026. height: math.unit(7 + 5 / 12, "feet"),
  15027. default: true
  15028. },
  15029. {
  15030. name: "Macro",
  15031. height: math.unit(30, "feet")
  15032. },
  15033. {
  15034. name: "Megamacro",
  15035. height: math.unit(3500, "feet")
  15036. },
  15037. {
  15038. name: "Teramacro",
  15039. height: math.unit(500000, "miles")
  15040. },
  15041. {
  15042. name: "Petamacro",
  15043. height: math.unit(50000000000000000, "parsecs")
  15044. },
  15045. ]
  15046. ))
  15047. characterMakers.push(() => makeCharacter(
  15048. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15049. {
  15050. front: {
  15051. height: math.unit(6, "feet"),
  15052. weight: math.unit(150, "lb"),
  15053. name: "Front",
  15054. image: {
  15055. source: "./media/characters/ilisha-devya/front.svg",
  15056. extra: 1053/1049,
  15057. bottom: 270/1323
  15058. }
  15059. },
  15060. back: {
  15061. height: math.unit(6, "feet"),
  15062. weight: math.unit(150, "lb"),
  15063. name: "Back",
  15064. image: {
  15065. source: "./media/characters/ilisha-devya/back.svg",
  15066. extra: 1131/1128,
  15067. bottom: 39/1170
  15068. }
  15069. },
  15070. },
  15071. [
  15072. {
  15073. name: "Macro",
  15074. height: math.unit(500, "feet"),
  15075. default: true
  15076. },
  15077. {
  15078. name: "Megamacro",
  15079. height: math.unit(10, "miles")
  15080. },
  15081. {
  15082. name: "Gigamacro",
  15083. height: math.unit(100000, "miles")
  15084. },
  15085. {
  15086. name: "Examacro",
  15087. height: math.unit(1e9, "lightyears")
  15088. },
  15089. {
  15090. name: "Omniversal",
  15091. height: math.unit(1e33, "lightyears")
  15092. },
  15093. {
  15094. name: "Beyond Infinite",
  15095. height: math.unit(1e100, "lightyears")
  15096. },
  15097. ]
  15098. ))
  15099. characterMakers.push(() => makeCharacter(
  15100. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15101. {
  15102. Side: {
  15103. height: math.unit(6, "feet"),
  15104. weight: math.unit(150, "lb"),
  15105. name: "Side",
  15106. image: {
  15107. source: "./media/characters/mira/side.svg",
  15108. extra: 900 / 799,
  15109. bottom: 0.02
  15110. }
  15111. },
  15112. },
  15113. [
  15114. {
  15115. name: "Human Size",
  15116. height: math.unit(6, "feet")
  15117. },
  15118. {
  15119. name: "Macro",
  15120. height: math.unit(100, "feet"),
  15121. default: true
  15122. },
  15123. {
  15124. name: "Megamacro",
  15125. height: math.unit(10, "miles")
  15126. },
  15127. {
  15128. name: "Gigamacro",
  15129. height: math.unit(25000, "miles")
  15130. },
  15131. {
  15132. name: "Teramacro",
  15133. height: math.unit(300, "AU")
  15134. },
  15135. {
  15136. name: "Full Size",
  15137. height: math.unit(4.5e10, "lightyears")
  15138. },
  15139. ]
  15140. ))
  15141. characterMakers.push(() => makeCharacter(
  15142. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15143. {
  15144. front: {
  15145. height: math.unit(6, "feet"),
  15146. weight: math.unit(150, "lb"),
  15147. name: "Front",
  15148. image: {
  15149. source: "./media/characters/holly/front.svg",
  15150. extra: 639 / 606
  15151. }
  15152. },
  15153. back: {
  15154. height: math.unit(6, "feet"),
  15155. weight: math.unit(150, "lb"),
  15156. name: "Back",
  15157. image: {
  15158. source: "./media/characters/holly/back.svg",
  15159. extra: 623 / 598
  15160. }
  15161. },
  15162. frontWorking: {
  15163. height: math.unit(6, "feet"),
  15164. weight: math.unit(150, "lb"),
  15165. name: "Front (Working)",
  15166. image: {
  15167. source: "./media/characters/holly/front-working.svg",
  15168. extra: 607 / 577,
  15169. bottom: 0.048
  15170. }
  15171. },
  15172. },
  15173. [
  15174. {
  15175. name: "Normal",
  15176. height: math.unit(12 + 3 / 12, "feet"),
  15177. default: true
  15178. },
  15179. ]
  15180. ))
  15181. characterMakers.push(() => makeCharacter(
  15182. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15183. {
  15184. front: {
  15185. height: math.unit(6, "feet"),
  15186. weight: math.unit(150, "lb"),
  15187. name: "Front",
  15188. image: {
  15189. source: "./media/characters/porter/front.svg",
  15190. extra: 1,
  15191. bottom: 0.01
  15192. }
  15193. },
  15194. frontRobes: {
  15195. height: math.unit(6, "feet"),
  15196. weight: math.unit(150, "lb"),
  15197. name: "Front (Robes)",
  15198. image: {
  15199. source: "./media/characters/porter/front-robes.svg",
  15200. extra: 1.01,
  15201. bottom: 0.01
  15202. }
  15203. },
  15204. },
  15205. [
  15206. {
  15207. name: "Normal",
  15208. height: math.unit(11 + 9 / 12, "feet"),
  15209. default: true
  15210. },
  15211. ]
  15212. ))
  15213. characterMakers.push(() => makeCharacter(
  15214. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15215. {
  15216. legendary: {
  15217. height: math.unit(6, "feet"),
  15218. weight: math.unit(150, "lb"),
  15219. name: "Legendary",
  15220. image: {
  15221. source: "./media/characters/lucy/legendary.svg",
  15222. extra: 1355 / 1100,
  15223. bottom: 0.045
  15224. }
  15225. },
  15226. },
  15227. [
  15228. {
  15229. name: "Legendary",
  15230. height: math.unit(86882 * 2, "miles"),
  15231. default: true
  15232. },
  15233. ]
  15234. ))
  15235. characterMakers.push(() => makeCharacter(
  15236. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15237. {
  15238. front: {
  15239. height: math.unit(6, "feet"),
  15240. weight: math.unit(150, "lb"),
  15241. name: "Front",
  15242. image: {
  15243. source: "./media/characters/drusilla/front.svg",
  15244. extra: 678 / 635,
  15245. bottom: 0.03
  15246. }
  15247. },
  15248. back: {
  15249. height: math.unit(6, "feet"),
  15250. weight: math.unit(150, "lb"),
  15251. name: "Back",
  15252. image: {
  15253. source: "./media/characters/drusilla/back.svg",
  15254. extra: 678 / 635,
  15255. bottom: 0.005
  15256. }
  15257. },
  15258. },
  15259. [
  15260. {
  15261. name: "Macro",
  15262. height: math.unit(100, "feet")
  15263. },
  15264. {
  15265. name: "Canon Height",
  15266. height: math.unit(2000, "feet"),
  15267. default: true
  15268. },
  15269. ]
  15270. ))
  15271. characterMakers.push(() => makeCharacter(
  15272. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15273. {
  15274. front: {
  15275. height: math.unit(6, "feet"),
  15276. weight: math.unit(180, "lb"),
  15277. name: "Front",
  15278. image: {
  15279. source: "./media/characters/renard-thatch/front.svg",
  15280. extra: 2411 / 2275,
  15281. bottom: 0.01
  15282. }
  15283. },
  15284. frontPosing: {
  15285. height: math.unit(6, "feet"),
  15286. weight: math.unit(180, "lb"),
  15287. name: "Front (Posing)",
  15288. image: {
  15289. source: "./media/characters/renard-thatch/front-posing.svg",
  15290. extra: 2381 / 2261,
  15291. bottom: 0.01
  15292. }
  15293. },
  15294. back: {
  15295. height: math.unit(6, "feet"),
  15296. weight: math.unit(180, "lb"),
  15297. name: "Back",
  15298. image: {
  15299. source: "./media/characters/renard-thatch/back.svg",
  15300. extra: 2428 / 2288
  15301. }
  15302. },
  15303. },
  15304. [
  15305. {
  15306. name: "Micro",
  15307. height: math.unit(3, "inches")
  15308. },
  15309. {
  15310. name: "Default",
  15311. height: math.unit(6, "feet"),
  15312. default: true
  15313. },
  15314. {
  15315. name: "Macro",
  15316. height: math.unit(75, "feet")
  15317. },
  15318. ]
  15319. ))
  15320. characterMakers.push(() => makeCharacter(
  15321. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15322. {
  15323. front: {
  15324. height: math.unit(1450, "feet"),
  15325. weight: math.unit(1.21e6, "tons"),
  15326. name: "Front",
  15327. image: {
  15328. source: "./media/characters/sekvra/front.svg",
  15329. extra: 1193/1190,
  15330. bottom: 78/1271
  15331. }
  15332. },
  15333. side: {
  15334. height: math.unit(1450, "feet"),
  15335. weight: math.unit(1.21e6, "tons"),
  15336. name: "Side",
  15337. image: {
  15338. source: "./media/characters/sekvra/side.svg",
  15339. extra: 1193/1190,
  15340. bottom: 52/1245
  15341. }
  15342. },
  15343. back: {
  15344. height: math.unit(1450, "feet"),
  15345. weight: math.unit(1.21e6, "tons"),
  15346. name: "Back",
  15347. image: {
  15348. source: "./media/characters/sekvra/back.svg",
  15349. extra: 1219/1216,
  15350. bottom: 21/1240
  15351. }
  15352. },
  15353. frontClothed: {
  15354. height: math.unit(1450, "feet"),
  15355. weight: math.unit(1.21e6, "tons"),
  15356. name: "Front (Clothed)",
  15357. image: {
  15358. source: "./media/characters/sekvra/front-clothed.svg",
  15359. extra: 1192/1189,
  15360. bottom: 79/1271
  15361. }
  15362. },
  15363. },
  15364. [
  15365. {
  15366. name: "Macro",
  15367. height: math.unit(1450, "feet"),
  15368. default: true
  15369. },
  15370. {
  15371. name: "Megamacro",
  15372. height: math.unit(15000, "feet")
  15373. },
  15374. ]
  15375. ))
  15376. characterMakers.push(() => makeCharacter(
  15377. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15378. {
  15379. front: {
  15380. height: math.unit(6, "feet"),
  15381. weight: math.unit(150, "lb"),
  15382. name: "Front",
  15383. image: {
  15384. source: "./media/characters/carmine/front.svg",
  15385. extra: 1557/1538,
  15386. bottom: 68/1625
  15387. }
  15388. },
  15389. frontArmor: {
  15390. height: math.unit(6, "feet"),
  15391. weight: math.unit(150, "lb"),
  15392. name: "Front (Armor)",
  15393. image: {
  15394. source: "./media/characters/carmine/front-armor.svg",
  15395. extra: 1549/1530,
  15396. bottom: 82/1631
  15397. }
  15398. },
  15399. mouth: {
  15400. height: math.unit(0.55, "feet"),
  15401. name: "Mouth",
  15402. image: {
  15403. source: "./media/characters/carmine/mouth.svg"
  15404. }
  15405. },
  15406. hand: {
  15407. height: math.unit(1.05, "feet"),
  15408. name: "Hand",
  15409. image: {
  15410. source: "./media/characters/carmine/hand.svg"
  15411. }
  15412. },
  15413. foot: {
  15414. height: math.unit(0.6, "feet"),
  15415. name: "Foot",
  15416. image: {
  15417. source: "./media/characters/carmine/foot.svg"
  15418. }
  15419. },
  15420. },
  15421. [
  15422. {
  15423. name: "Large",
  15424. height: math.unit(1, "mile")
  15425. },
  15426. {
  15427. name: "Huge",
  15428. height: math.unit(40, "miles"),
  15429. default: true
  15430. },
  15431. {
  15432. name: "Colossal",
  15433. height: math.unit(2500, "miles")
  15434. },
  15435. ]
  15436. ))
  15437. characterMakers.push(() => makeCharacter(
  15438. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15439. {
  15440. front: {
  15441. height: math.unit(6, "feet"),
  15442. weight: math.unit(150, "lb"),
  15443. name: "Front",
  15444. image: {
  15445. source: "./media/characters/elyssia/front.svg",
  15446. extra: 2201 / 2035,
  15447. bottom: 0.05
  15448. }
  15449. },
  15450. frontClothed: {
  15451. height: math.unit(6, "feet"),
  15452. weight: math.unit(150, "lb"),
  15453. name: "Front (Clothed)",
  15454. image: {
  15455. source: "./media/characters/elyssia/front-clothed.svg",
  15456. extra: 2201 / 2035,
  15457. bottom: 0.05
  15458. }
  15459. },
  15460. back: {
  15461. height: math.unit(6, "feet"),
  15462. weight: math.unit(150, "lb"),
  15463. name: "Back",
  15464. image: {
  15465. source: "./media/characters/elyssia/back.svg",
  15466. extra: 2201 / 2035,
  15467. bottom: 0.013
  15468. }
  15469. },
  15470. },
  15471. [
  15472. {
  15473. name: "Smaller",
  15474. height: math.unit(150, "feet")
  15475. },
  15476. {
  15477. name: "Standard",
  15478. height: math.unit(1400, "feet"),
  15479. default: true
  15480. },
  15481. {
  15482. name: "Distracted",
  15483. height: math.unit(15000, "feet")
  15484. },
  15485. ]
  15486. ))
  15487. characterMakers.push(() => makeCharacter(
  15488. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15489. {
  15490. front: {
  15491. height: math.unit(7 + 4/12, "feet"),
  15492. weight: math.unit(690, "lb"),
  15493. name: "Front",
  15494. image: {
  15495. source: "./media/characters/geno-maxwell/front.svg",
  15496. extra: 984/856,
  15497. bottom: 87/1071
  15498. }
  15499. },
  15500. back: {
  15501. height: math.unit(7 + 4/12, "feet"),
  15502. weight: math.unit(690, "lb"),
  15503. name: "Back",
  15504. image: {
  15505. source: "./media/characters/geno-maxwell/back.svg",
  15506. extra: 981/854,
  15507. bottom: 57/1038
  15508. }
  15509. },
  15510. frontCostume: {
  15511. height: math.unit(7 + 4/12, "feet"),
  15512. weight: math.unit(690, "lb"),
  15513. name: "Front (Costume)",
  15514. image: {
  15515. source: "./media/characters/geno-maxwell/front-costume.svg",
  15516. extra: 984/856,
  15517. bottom: 87/1071
  15518. }
  15519. },
  15520. backcostume: {
  15521. height: math.unit(7 + 4/12, "feet"),
  15522. weight: math.unit(690, "lb"),
  15523. name: "Back (Costume)",
  15524. image: {
  15525. source: "./media/characters/geno-maxwell/back-costume.svg",
  15526. extra: 981/854,
  15527. bottom: 57/1038
  15528. }
  15529. },
  15530. },
  15531. [
  15532. {
  15533. name: "Micro",
  15534. height: math.unit(3, "inches")
  15535. },
  15536. {
  15537. name: "Normal",
  15538. height: math.unit(7 + 4 / 12, "feet"),
  15539. default: true
  15540. },
  15541. {
  15542. name: "Macro",
  15543. height: math.unit(220, "feet")
  15544. },
  15545. {
  15546. name: "Megamacro",
  15547. height: math.unit(11, "miles")
  15548. },
  15549. ]
  15550. ))
  15551. characterMakers.push(() => makeCharacter(
  15552. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15553. {
  15554. front: {
  15555. height: math.unit(7 + 4/12, "feet"),
  15556. weight: math.unit(750, "lb"),
  15557. name: "Front",
  15558. image: {
  15559. source: "./media/characters/regena-maxwell/front.svg",
  15560. extra: 984/856,
  15561. bottom: 87/1071
  15562. }
  15563. },
  15564. back: {
  15565. height: math.unit(7 + 4/12, "feet"),
  15566. weight: math.unit(750, "lb"),
  15567. name: "Back",
  15568. image: {
  15569. source: "./media/characters/regena-maxwell/back.svg",
  15570. extra: 981/854,
  15571. bottom: 57/1038
  15572. }
  15573. },
  15574. frontCostume: {
  15575. height: math.unit(7 + 4/12, "feet"),
  15576. weight: math.unit(750, "lb"),
  15577. name: "Front (Costume)",
  15578. image: {
  15579. source: "./media/characters/regena-maxwell/front-costume.svg",
  15580. extra: 984/856,
  15581. bottom: 87/1071
  15582. }
  15583. },
  15584. backcostume: {
  15585. height: math.unit(7 + 4/12, "feet"),
  15586. weight: math.unit(750, "lb"),
  15587. name: "Back (Costume)",
  15588. image: {
  15589. source: "./media/characters/regena-maxwell/back-costume.svg",
  15590. extra: 981/854,
  15591. bottom: 57/1038
  15592. }
  15593. },
  15594. },
  15595. [
  15596. {
  15597. name: "Normal",
  15598. height: math.unit(7 + 4 / 12, "feet"),
  15599. default: true
  15600. },
  15601. {
  15602. name: "Macro",
  15603. height: math.unit(220, "feet")
  15604. },
  15605. {
  15606. name: "Megamacro",
  15607. height: math.unit(11, "miles")
  15608. },
  15609. ]
  15610. ))
  15611. characterMakers.push(() => makeCharacter(
  15612. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15613. {
  15614. front: {
  15615. height: math.unit(6, "feet"),
  15616. weight: math.unit(150, "lb"),
  15617. name: "Front",
  15618. image: {
  15619. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15620. extra: 860 / 690,
  15621. bottom: 0.03
  15622. }
  15623. },
  15624. },
  15625. [
  15626. {
  15627. name: "Normal",
  15628. height: math.unit(1.7, "meters"),
  15629. default: true
  15630. },
  15631. ]
  15632. ))
  15633. characterMakers.push(() => makeCharacter(
  15634. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15635. {
  15636. front: {
  15637. height: math.unit(6, "feet"),
  15638. weight: math.unit(150, "lb"),
  15639. name: "Front",
  15640. image: {
  15641. source: "./media/characters/quilly/front.svg",
  15642. extra: 890 / 776
  15643. }
  15644. },
  15645. },
  15646. [
  15647. {
  15648. name: "Gigamacro",
  15649. height: math.unit(404090, "miles"),
  15650. default: true
  15651. },
  15652. ]
  15653. ))
  15654. characterMakers.push(() => makeCharacter(
  15655. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15656. {
  15657. front: {
  15658. height: math.unit(7 + 8 / 12, "feet"),
  15659. weight: math.unit(350, "lb"),
  15660. name: "Front",
  15661. image: {
  15662. source: "./media/characters/tempest/front.svg",
  15663. extra: 1175 / 1086,
  15664. bottom: 0.02
  15665. }
  15666. },
  15667. },
  15668. [
  15669. {
  15670. name: "Normal",
  15671. height: math.unit(7 + 8 / 12, "feet"),
  15672. default: true
  15673. },
  15674. ]
  15675. ))
  15676. characterMakers.push(() => makeCharacter(
  15677. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15678. {
  15679. side: {
  15680. height: math.unit(4 + 5 / 12, "feet"),
  15681. weight: math.unit(80, "lb"),
  15682. name: "Side",
  15683. image: {
  15684. source: "./media/characters/rodger/side.svg",
  15685. extra: 1235 / 1118
  15686. }
  15687. },
  15688. },
  15689. [
  15690. {
  15691. name: "Micro",
  15692. height: math.unit(1, "inch")
  15693. },
  15694. {
  15695. name: "Normal",
  15696. height: math.unit(4 + 5 / 12, "feet"),
  15697. default: true
  15698. },
  15699. {
  15700. name: "Macro",
  15701. height: math.unit(120, "feet")
  15702. },
  15703. ]
  15704. ))
  15705. characterMakers.push(() => makeCharacter(
  15706. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15707. {
  15708. front: {
  15709. height: math.unit(6, "feet"),
  15710. weight: math.unit(150, "lb"),
  15711. name: "Front",
  15712. image: {
  15713. source: "./media/characters/danyel/front.svg",
  15714. extra: 1185 / 1123,
  15715. bottom: 0.05
  15716. }
  15717. },
  15718. },
  15719. [
  15720. {
  15721. name: "Shrunken",
  15722. height: math.unit(0.5, "mm")
  15723. },
  15724. {
  15725. name: "Micro",
  15726. height: math.unit(1, "mm"),
  15727. default: true
  15728. },
  15729. {
  15730. name: "Upsized",
  15731. height: math.unit(5 + 5 / 12, "feet")
  15732. },
  15733. ]
  15734. ))
  15735. characterMakers.push(() => makeCharacter(
  15736. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15737. {
  15738. front: {
  15739. height: math.unit(5 + 6 / 12, "feet"),
  15740. weight: math.unit(200, "lb"),
  15741. name: "Front",
  15742. image: {
  15743. source: "./media/characters/vivian-bijoux/front.svg",
  15744. extra: 1217/1209,
  15745. bottom: 76/1293
  15746. }
  15747. },
  15748. back: {
  15749. height: math.unit(5 + 6 / 12, "feet"),
  15750. weight: math.unit(200, "lb"),
  15751. name: "Back",
  15752. image: {
  15753. source: "./media/characters/vivian-bijoux/back.svg",
  15754. extra: 1214/1208,
  15755. bottom: 51/1265
  15756. }
  15757. },
  15758. dressed: {
  15759. height: math.unit(5 + 6 / 12, "feet"),
  15760. weight: math.unit(200, "lb"),
  15761. name: "Dressed",
  15762. image: {
  15763. source: "./media/characters/vivian-bijoux/dressed.svg",
  15764. extra: 1217/1209,
  15765. bottom: 76/1293
  15766. }
  15767. },
  15768. },
  15769. [
  15770. {
  15771. name: "Normal",
  15772. height: math.unit(5 + 6 / 12, "feet"),
  15773. default: true
  15774. },
  15775. {
  15776. name: "Bad Dream",
  15777. height: math.unit(500, "feet")
  15778. },
  15779. {
  15780. name: "Nightmare",
  15781. height: math.unit(500, "miles")
  15782. },
  15783. ]
  15784. ))
  15785. characterMakers.push(() => makeCharacter(
  15786. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15787. {
  15788. front: {
  15789. height: math.unit(6 + 1 / 12, "feet"),
  15790. weight: math.unit(260, "lb"),
  15791. name: "Front",
  15792. image: {
  15793. source: "./media/characters/zeta/front.svg",
  15794. extra: 1968 / 1889,
  15795. bottom: 0.06
  15796. }
  15797. },
  15798. back: {
  15799. height: math.unit(6 + 1 / 12, "feet"),
  15800. weight: math.unit(260, "lb"),
  15801. name: "Back",
  15802. image: {
  15803. source: "./media/characters/zeta/back.svg",
  15804. extra: 1944 / 1858,
  15805. bottom: 0.03
  15806. }
  15807. },
  15808. hand: {
  15809. height: math.unit(1.112, "feet"),
  15810. name: "Hand",
  15811. image: {
  15812. source: "./media/characters/zeta/hand.svg"
  15813. }
  15814. },
  15815. foot: {
  15816. height: math.unit(1.48, "feet"),
  15817. name: "Foot",
  15818. image: {
  15819. source: "./media/characters/zeta/foot.svg"
  15820. }
  15821. },
  15822. },
  15823. [
  15824. {
  15825. name: "Micro",
  15826. height: math.unit(6, "inches")
  15827. },
  15828. {
  15829. name: "Normal",
  15830. height: math.unit(6 + 1 / 12, "feet"),
  15831. default: true
  15832. },
  15833. {
  15834. name: "Macro",
  15835. height: math.unit(20, "feet")
  15836. },
  15837. ]
  15838. ))
  15839. characterMakers.push(() => makeCharacter(
  15840. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15841. {
  15842. front: {
  15843. height: math.unit(6, "feet"),
  15844. weight: math.unit(150, "lb"),
  15845. name: "Front",
  15846. image: {
  15847. source: "./media/characters/jamie-larsen/front.svg",
  15848. extra: 962 / 933,
  15849. bottom: 0.02
  15850. }
  15851. },
  15852. back: {
  15853. height: math.unit(6, "feet"),
  15854. weight: math.unit(150, "lb"),
  15855. name: "Back",
  15856. image: {
  15857. source: "./media/characters/jamie-larsen/back.svg",
  15858. extra: 997 / 946
  15859. }
  15860. },
  15861. },
  15862. [
  15863. {
  15864. name: "Macro",
  15865. height: math.unit(28 + 7 / 12, "feet"),
  15866. default: true
  15867. },
  15868. {
  15869. name: "Macro+",
  15870. height: math.unit(180, "feet")
  15871. },
  15872. {
  15873. name: "Megamacro",
  15874. height: math.unit(10, "miles")
  15875. },
  15876. {
  15877. name: "Gigamacro",
  15878. height: math.unit(200000, "miles")
  15879. },
  15880. ]
  15881. ))
  15882. characterMakers.push(() => makeCharacter(
  15883. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15884. {
  15885. front: {
  15886. height: math.unit(6, "feet"),
  15887. weight: math.unit(120, "lb"),
  15888. name: "Front",
  15889. image: {
  15890. source: "./media/characters/vance/front.svg",
  15891. extra: 1980 / 1890,
  15892. bottom: 0.09
  15893. }
  15894. },
  15895. back: {
  15896. height: math.unit(6, "feet"),
  15897. weight: math.unit(120, "lb"),
  15898. name: "Back",
  15899. image: {
  15900. source: "./media/characters/vance/back.svg",
  15901. extra: 2081 / 1994,
  15902. bottom: 0.014
  15903. }
  15904. },
  15905. hand: {
  15906. height: math.unit(0.88, "feet"),
  15907. name: "Hand",
  15908. image: {
  15909. source: "./media/characters/vance/hand.svg"
  15910. }
  15911. },
  15912. foot: {
  15913. height: math.unit(0.64, "feet"),
  15914. name: "Foot",
  15915. image: {
  15916. source: "./media/characters/vance/foot.svg"
  15917. }
  15918. },
  15919. },
  15920. [
  15921. {
  15922. name: "Small",
  15923. height: math.unit(90, "feet"),
  15924. default: true
  15925. },
  15926. {
  15927. name: "Macro",
  15928. height: math.unit(100, "meters")
  15929. },
  15930. {
  15931. name: "Megamacro",
  15932. height: math.unit(15, "miles")
  15933. },
  15934. ]
  15935. ))
  15936. characterMakers.push(() => makeCharacter(
  15937. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15938. {
  15939. front: {
  15940. height: math.unit(6, "feet"),
  15941. weight: math.unit(180, "lb"),
  15942. name: "Front",
  15943. image: {
  15944. source: "./media/characters/xochitl/front.svg",
  15945. extra: 2297 / 2261,
  15946. bottom: 0.065
  15947. }
  15948. },
  15949. back: {
  15950. height: math.unit(6, "feet"),
  15951. weight: math.unit(180, "lb"),
  15952. name: "Back",
  15953. image: {
  15954. source: "./media/characters/xochitl/back.svg",
  15955. extra: 2386 / 2354,
  15956. bottom: 0.01
  15957. }
  15958. },
  15959. foot: {
  15960. height: math.unit(6 / 5 * 1.15, "feet"),
  15961. weight: math.unit(150, "lb"),
  15962. name: "Foot",
  15963. image: {
  15964. source: "./media/characters/xochitl/foot.svg"
  15965. }
  15966. },
  15967. },
  15968. [
  15969. {
  15970. name: "Macro",
  15971. height: math.unit(80, "feet")
  15972. },
  15973. {
  15974. name: "Macro+",
  15975. height: math.unit(400, "feet"),
  15976. default: true
  15977. },
  15978. {
  15979. name: "Gigamacro",
  15980. height: math.unit(80000, "miles")
  15981. },
  15982. {
  15983. name: "Gigamacro+",
  15984. height: math.unit(400000, "miles")
  15985. },
  15986. {
  15987. name: "Teramacro",
  15988. height: math.unit(300, "AU")
  15989. },
  15990. ]
  15991. ))
  15992. characterMakers.push(() => makeCharacter(
  15993. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15994. {
  15995. front: {
  15996. height: math.unit(6, "feet"),
  15997. weight: math.unit(150, "lb"),
  15998. name: "Front",
  15999. image: {
  16000. source: "./media/characters/vincent/front.svg",
  16001. extra: 1130 / 1080,
  16002. bottom: 0.055
  16003. }
  16004. },
  16005. beak: {
  16006. height: math.unit(6 * 0.1, "feet"),
  16007. name: "Beak",
  16008. image: {
  16009. source: "./media/characters/vincent/beak.svg"
  16010. }
  16011. },
  16012. hand: {
  16013. height: math.unit(6 * 0.85, "feet"),
  16014. weight: math.unit(150, "lb"),
  16015. name: "Hand",
  16016. image: {
  16017. source: "./media/characters/vincent/hand.svg"
  16018. }
  16019. },
  16020. foot: {
  16021. height: math.unit(6 * 0.19, "feet"),
  16022. weight: math.unit(150, "lb"),
  16023. name: "Foot",
  16024. image: {
  16025. source: "./media/characters/vincent/foot.svg"
  16026. }
  16027. },
  16028. },
  16029. [
  16030. {
  16031. name: "Base",
  16032. height: math.unit(6 + 5 / 12, "feet"),
  16033. default: true
  16034. },
  16035. {
  16036. name: "Macro",
  16037. height: math.unit(300, "feet")
  16038. },
  16039. {
  16040. name: "Megamacro",
  16041. height: math.unit(2, "miles")
  16042. },
  16043. {
  16044. name: "Gigamacro",
  16045. height: math.unit(1000, "miles")
  16046. },
  16047. ]
  16048. ))
  16049. characterMakers.push(() => makeCharacter(
  16050. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16051. {
  16052. front: {
  16053. height: math.unit(2, "meters"),
  16054. weight: math.unit(500, "kg"),
  16055. name: "Front",
  16056. image: {
  16057. source: "./media/characters/coatl/front.svg",
  16058. extra: 3948 / 3500,
  16059. bottom: 0.082
  16060. }
  16061. },
  16062. },
  16063. [
  16064. {
  16065. name: "Normal",
  16066. height: math.unit(4, "meters")
  16067. },
  16068. {
  16069. name: "Macro",
  16070. height: math.unit(100, "meters"),
  16071. default: true
  16072. },
  16073. {
  16074. name: "Macro+",
  16075. height: math.unit(300, "meters")
  16076. },
  16077. {
  16078. name: "Megamacro",
  16079. height: math.unit(3, "gigameters")
  16080. },
  16081. {
  16082. name: "Megamacro+",
  16083. height: math.unit(300, "terameters")
  16084. },
  16085. {
  16086. name: "Megamacro++",
  16087. height: math.unit(3, "lightyears")
  16088. },
  16089. ]
  16090. ))
  16091. characterMakers.push(() => makeCharacter(
  16092. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16093. {
  16094. front: {
  16095. height: math.unit(6, "feet"),
  16096. weight: math.unit(50, "kg"),
  16097. name: "front",
  16098. image: {
  16099. source: "./media/characters/shiroryu/front.svg",
  16100. extra: 1990 / 1935
  16101. }
  16102. },
  16103. },
  16104. [
  16105. {
  16106. name: "Mortal Mingling",
  16107. height: math.unit(3, "meters")
  16108. },
  16109. {
  16110. name: "Kaiju-ish",
  16111. height: math.unit(250, "meters")
  16112. },
  16113. {
  16114. name: "Somewhat Godly",
  16115. height: math.unit(400, "km"),
  16116. default: true
  16117. },
  16118. {
  16119. name: "Planetary",
  16120. height: math.unit(300, "megameters")
  16121. },
  16122. {
  16123. name: "Galaxy-dwarfing",
  16124. height: math.unit(450, "kiloparsecs")
  16125. },
  16126. {
  16127. name: "Universe Eater",
  16128. height: math.unit(150, "gigaparsecs")
  16129. },
  16130. {
  16131. name: "Almost Immeasurable",
  16132. height: math.unit(1.3e266, "yottaparsecs")
  16133. },
  16134. ]
  16135. ))
  16136. characterMakers.push(() => makeCharacter(
  16137. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16138. {
  16139. front: {
  16140. height: math.unit(6, "feet"),
  16141. weight: math.unit(150, "lb"),
  16142. name: "Front",
  16143. image: {
  16144. source: "./media/characters/umeko/front.svg",
  16145. extra: 1,
  16146. bottom: 0.019
  16147. }
  16148. },
  16149. frontArmored: {
  16150. height: math.unit(6, "feet"),
  16151. weight: math.unit(150, "lb"),
  16152. name: "Front (Armored)",
  16153. image: {
  16154. source: "./media/characters/umeko/front-armored.svg",
  16155. extra: 1,
  16156. bottom: 0.021
  16157. }
  16158. },
  16159. },
  16160. [
  16161. {
  16162. name: "Macro",
  16163. height: math.unit(220, "feet"),
  16164. default: true
  16165. },
  16166. {
  16167. name: "Guardian Dragon",
  16168. height: math.unit(50, "miles")
  16169. },
  16170. {
  16171. name: "Cosmic",
  16172. height: math.unit(800000, "miles")
  16173. },
  16174. ]
  16175. ))
  16176. characterMakers.push(() => makeCharacter(
  16177. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16178. {
  16179. front: {
  16180. height: math.unit(6, "feet"),
  16181. weight: math.unit(150, "lb"),
  16182. name: "Front",
  16183. image: {
  16184. source: "./media/characters/cassidy/front.svg",
  16185. extra: 810/808,
  16186. bottom: 41/851
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Canon Height",
  16193. height: math.unit(120, "feet"),
  16194. default: true
  16195. },
  16196. {
  16197. name: "Macro+",
  16198. height: math.unit(400, "feet")
  16199. },
  16200. {
  16201. name: "Macro++",
  16202. height: math.unit(4000, "feet")
  16203. },
  16204. {
  16205. name: "Megamacro",
  16206. height: math.unit(3, "miles")
  16207. },
  16208. ]
  16209. ))
  16210. characterMakers.push(() => makeCharacter(
  16211. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16212. {
  16213. front: {
  16214. height: math.unit(6, "feet"),
  16215. weight: math.unit(150, "lb"),
  16216. name: "Front",
  16217. image: {
  16218. source: "./media/characters/isaac/front.svg",
  16219. extra: 896 / 815,
  16220. bottom: 0.11
  16221. }
  16222. },
  16223. },
  16224. [
  16225. {
  16226. name: "Human Size",
  16227. height: math.unit(8, "feet"),
  16228. default: true
  16229. },
  16230. {
  16231. name: "Macro",
  16232. height: math.unit(400, "feet")
  16233. },
  16234. {
  16235. name: "Megamacro",
  16236. height: math.unit(50, "miles")
  16237. },
  16238. {
  16239. name: "Canon Height",
  16240. height: math.unit(200, "AU")
  16241. },
  16242. ]
  16243. ))
  16244. characterMakers.push(() => makeCharacter(
  16245. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16246. {
  16247. front: {
  16248. height: math.unit(6, "feet"),
  16249. weight: math.unit(72, "kg"),
  16250. name: "Front",
  16251. image: {
  16252. source: "./media/characters/sleekit/front.svg",
  16253. extra: 4693 / 4487,
  16254. bottom: 0.012
  16255. }
  16256. },
  16257. },
  16258. [
  16259. {
  16260. name: "Minimum Height",
  16261. height: math.unit(10, "meters")
  16262. },
  16263. {
  16264. name: "Smaller",
  16265. height: math.unit(25, "meters")
  16266. },
  16267. {
  16268. name: "Larger",
  16269. height: math.unit(38, "meters"),
  16270. default: true
  16271. },
  16272. {
  16273. name: "Maximum height",
  16274. height: math.unit(100, "meters")
  16275. },
  16276. ]
  16277. ))
  16278. characterMakers.push(() => makeCharacter(
  16279. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16280. {
  16281. front: {
  16282. height: math.unit(6, "feet"),
  16283. weight: math.unit(150, "lb"),
  16284. name: "Front",
  16285. image: {
  16286. source: "./media/characters/nillia/front.svg",
  16287. extra: 719/665,
  16288. bottom: 6/725
  16289. }
  16290. },
  16291. back: {
  16292. height: math.unit(6, "feet"),
  16293. weight: math.unit(150, "lb"),
  16294. name: "Back",
  16295. image: {
  16296. source: "./media/characters/nillia/back.svg",
  16297. extra: 705/651,
  16298. bottom: 5/710
  16299. }
  16300. },
  16301. },
  16302. [
  16303. {
  16304. name: "Canon Height",
  16305. height: math.unit(489, "feet"),
  16306. default: true
  16307. }
  16308. ]
  16309. ))
  16310. characterMakers.push(() => makeCharacter(
  16311. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16312. {
  16313. front: {
  16314. height: math.unit(6, "feet"),
  16315. weight: math.unit(150, "lb"),
  16316. name: "Front",
  16317. image: {
  16318. source: "./media/characters/mesmyriza/front.svg",
  16319. extra: 1541/1291,
  16320. bottom: 87/1628
  16321. }
  16322. },
  16323. foot: {
  16324. height: math.unit(6 / (250 / 35), "feet"),
  16325. name: "Foot",
  16326. image: {
  16327. source: "./media/characters/mesmyriza/foot.svg"
  16328. }
  16329. },
  16330. },
  16331. [
  16332. {
  16333. name: "Macro",
  16334. height: math.unit(457, "meters"),
  16335. default: true
  16336. },
  16337. {
  16338. name: "Megamacro",
  16339. height: math.unit(8, "megameters")
  16340. },
  16341. ]
  16342. ))
  16343. characterMakers.push(() => makeCharacter(
  16344. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16345. {
  16346. front: {
  16347. height: math.unit(6, "feet"),
  16348. weight: math.unit(250, "lb"),
  16349. name: "Front",
  16350. image: {
  16351. source: "./media/characters/saudade/front.svg",
  16352. extra: 1172 / 1139,
  16353. bottom: 0.035
  16354. }
  16355. },
  16356. },
  16357. [
  16358. {
  16359. name: "Micro",
  16360. height: math.unit(3, "inches")
  16361. },
  16362. {
  16363. name: "Normal",
  16364. height: math.unit(6, "feet"),
  16365. default: true
  16366. },
  16367. {
  16368. name: "Macro",
  16369. height: math.unit(50, "feet")
  16370. },
  16371. {
  16372. name: "Megamacro",
  16373. height: math.unit(2800, "feet")
  16374. },
  16375. ]
  16376. ))
  16377. characterMakers.push(() => makeCharacter(
  16378. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16379. {
  16380. front: {
  16381. height: math.unit(5 + 4 / 12, "feet"),
  16382. weight: math.unit(100, "lb"),
  16383. name: "Front",
  16384. image: {
  16385. source: "./media/characters/keireer/front.svg",
  16386. extra: 716 / 666,
  16387. bottom: 0.05
  16388. }
  16389. },
  16390. },
  16391. [
  16392. {
  16393. name: "Normal",
  16394. height: math.unit(5 + 4 / 12, "feet"),
  16395. default: true
  16396. },
  16397. ]
  16398. ))
  16399. characterMakers.push(() => makeCharacter(
  16400. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16401. {
  16402. front: {
  16403. height: math.unit(5.5, "feet"),
  16404. weight: math.unit(90, "kg"),
  16405. name: "Front",
  16406. image: {
  16407. source: "./media/characters/mirja/front.svg",
  16408. extra: 1452/1262,
  16409. bottom: 67/1519
  16410. }
  16411. },
  16412. frontDressed: {
  16413. height: math.unit(5.5, "feet"),
  16414. weight: math.unit(90, "lb"),
  16415. name: "Front (Dressed)",
  16416. image: {
  16417. source: "./media/characters/mirja/dressed.svg",
  16418. extra: 1452/1262,
  16419. bottom: 67/1519
  16420. }
  16421. },
  16422. back: {
  16423. height: math.unit(6, "feet"),
  16424. weight: math.unit(90, "lb"),
  16425. name: "Back",
  16426. image: {
  16427. source: "./media/characters/mirja/back.svg",
  16428. extra: 1892/1795,
  16429. bottom: 48/1940
  16430. }
  16431. },
  16432. maw: {
  16433. height: math.unit(1.312, "feet"),
  16434. name: "Maw",
  16435. image: {
  16436. source: "./media/characters/mirja/maw.svg"
  16437. }
  16438. },
  16439. paw: {
  16440. height: math.unit(1.15, "feet"),
  16441. name: "Paw",
  16442. image: {
  16443. source: "./media/characters/mirja/paw.svg"
  16444. }
  16445. },
  16446. },
  16447. [
  16448. {
  16449. name: "\"Incognito\"",
  16450. height: math.unit(3, "meters")
  16451. },
  16452. {
  16453. name: "Strolling Size",
  16454. height: math.unit(15, "km")
  16455. },
  16456. {
  16457. name: "Larger Strolling Size",
  16458. height: math.unit(400, "km")
  16459. },
  16460. {
  16461. name: "Preferred Size",
  16462. height: math.unit(5000, "km"),
  16463. default: true
  16464. },
  16465. {
  16466. name: "True Size",
  16467. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16468. },
  16469. ]
  16470. ))
  16471. characterMakers.push(() => makeCharacter(
  16472. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16473. {
  16474. front: {
  16475. height: math.unit(15, "feet"),
  16476. weight: math.unit(880, "kg"),
  16477. name: "Front",
  16478. image: {
  16479. source: "./media/characters/nightraver/front.svg",
  16480. extra: 2444 / 2160,
  16481. bottom: 0.027
  16482. }
  16483. },
  16484. back: {
  16485. height: math.unit(15, "feet"),
  16486. weight: math.unit(880, "kg"),
  16487. name: "Back",
  16488. image: {
  16489. source: "./media/characters/nightraver/back.svg",
  16490. extra: 2309 / 2180,
  16491. bottom: 0.005
  16492. }
  16493. },
  16494. sole: {
  16495. height: math.unit(2.878, "feet"),
  16496. name: "Sole",
  16497. image: {
  16498. source: "./media/characters/nightraver/sole.svg"
  16499. }
  16500. },
  16501. foot: {
  16502. height: math.unit(2.285, "feet"),
  16503. name: "Foot",
  16504. image: {
  16505. source: "./media/characters/nightraver/foot.svg"
  16506. }
  16507. },
  16508. maw: {
  16509. height: math.unit(2.67, "feet"),
  16510. name: "Maw",
  16511. image: {
  16512. source: "./media/characters/nightraver/maw.svg"
  16513. }
  16514. },
  16515. },
  16516. [
  16517. {
  16518. name: "Micro",
  16519. height: math.unit(1, "cm")
  16520. },
  16521. {
  16522. name: "Normal",
  16523. height: math.unit(15, "feet"),
  16524. default: true
  16525. },
  16526. {
  16527. name: "Macro",
  16528. height: math.unit(300, "feet")
  16529. },
  16530. {
  16531. name: "Megamacro",
  16532. height: math.unit(300, "miles")
  16533. },
  16534. {
  16535. name: "Gigamacro",
  16536. height: math.unit(10000, "miles")
  16537. },
  16538. ]
  16539. ))
  16540. characterMakers.push(() => makeCharacter(
  16541. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16542. {
  16543. side: {
  16544. height: math.unit(2, "inches"),
  16545. weight: math.unit(5, "grams"),
  16546. name: "Side",
  16547. image: {
  16548. source: "./media/characters/arc/side.svg"
  16549. }
  16550. },
  16551. },
  16552. [
  16553. {
  16554. name: "Micro",
  16555. height: math.unit(2, "inches"),
  16556. default: true
  16557. },
  16558. ]
  16559. ))
  16560. characterMakers.push(() => makeCharacter(
  16561. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16562. {
  16563. front: {
  16564. height: math.unit(1.1938, "meters"),
  16565. weight: math.unit(54, "kg"),
  16566. name: "Front",
  16567. image: {
  16568. source: "./media/characters/nebula-shahar/front.svg",
  16569. extra: 1642 / 1436,
  16570. bottom: 0.06
  16571. }
  16572. },
  16573. },
  16574. [
  16575. {
  16576. name: "Megamicro",
  16577. height: math.unit(0.3, "mm")
  16578. },
  16579. {
  16580. name: "Micro",
  16581. height: math.unit(3, "cm")
  16582. },
  16583. {
  16584. name: "Normal",
  16585. height: math.unit(138, "cm"),
  16586. default: true
  16587. },
  16588. {
  16589. name: "Macro",
  16590. height: math.unit(30, "m")
  16591. },
  16592. ]
  16593. ))
  16594. characterMakers.push(() => makeCharacter(
  16595. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16596. {
  16597. front: {
  16598. height: math.unit(5.24, "feet"),
  16599. weight: math.unit(150, "lb"),
  16600. name: "Front",
  16601. image: {
  16602. source: "./media/characters/shayla/front.svg",
  16603. extra: 1512 / 1414,
  16604. bottom: 0.01
  16605. }
  16606. },
  16607. back: {
  16608. height: math.unit(5.24, "feet"),
  16609. weight: math.unit(150, "lb"),
  16610. name: "Back",
  16611. image: {
  16612. source: "./media/characters/shayla/back.svg",
  16613. extra: 1512 / 1414
  16614. }
  16615. },
  16616. hand: {
  16617. height: math.unit(0.7781496062992126, "feet"),
  16618. name: "Hand",
  16619. image: {
  16620. source: "./media/characters/shayla/hand.svg"
  16621. }
  16622. },
  16623. foot: {
  16624. height: math.unit(1.4206036745406823, "feet"),
  16625. name: "Foot",
  16626. image: {
  16627. source: "./media/characters/shayla/foot.svg"
  16628. }
  16629. },
  16630. },
  16631. [
  16632. {
  16633. name: "Micro",
  16634. height: math.unit(0.32, "feet")
  16635. },
  16636. {
  16637. name: "Normal",
  16638. height: math.unit(5.24, "feet"),
  16639. default: true
  16640. },
  16641. {
  16642. name: "Macro",
  16643. height: math.unit(492.12, "feet")
  16644. },
  16645. {
  16646. name: "Megamacro",
  16647. height: math.unit(186.41, "miles")
  16648. },
  16649. ]
  16650. ))
  16651. characterMakers.push(() => makeCharacter(
  16652. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16653. {
  16654. front: {
  16655. height: math.unit(2.2, "m"),
  16656. weight: math.unit(120, "kg"),
  16657. name: "Front",
  16658. image: {
  16659. source: "./media/characters/pia-jr/front.svg",
  16660. extra: 1000 / 970,
  16661. bottom: 0.035
  16662. }
  16663. },
  16664. hand: {
  16665. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16666. name: "Hand",
  16667. image: {
  16668. source: "./media/characters/pia-jr/hand.svg"
  16669. }
  16670. },
  16671. paw: {
  16672. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16673. name: "Paw",
  16674. image: {
  16675. source: "./media/characters/pia-jr/paw.svg"
  16676. }
  16677. },
  16678. },
  16679. [
  16680. {
  16681. name: "Micro",
  16682. height: math.unit(1.2, "cm")
  16683. },
  16684. {
  16685. name: "Normal",
  16686. height: math.unit(2.2, "m"),
  16687. default: true
  16688. },
  16689. {
  16690. name: "Macro",
  16691. height: math.unit(180, "m")
  16692. },
  16693. {
  16694. name: "Megamacro",
  16695. height: math.unit(420, "km")
  16696. },
  16697. ]
  16698. ))
  16699. characterMakers.push(() => makeCharacter(
  16700. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16701. {
  16702. front: {
  16703. height: math.unit(2, "m"),
  16704. weight: math.unit(115, "kg"),
  16705. name: "Front",
  16706. image: {
  16707. source: "./media/characters/pia-sr/front.svg",
  16708. extra: 760 / 730,
  16709. bottom: 0.015
  16710. }
  16711. },
  16712. back: {
  16713. height: math.unit(2, "m"),
  16714. weight: math.unit(115, "kg"),
  16715. name: "Back",
  16716. image: {
  16717. source: "./media/characters/pia-sr/back.svg",
  16718. extra: 760 / 730,
  16719. bottom: 0.01
  16720. }
  16721. },
  16722. hand: {
  16723. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16724. name: "Hand",
  16725. image: {
  16726. source: "./media/characters/pia-sr/hand.svg"
  16727. }
  16728. },
  16729. foot: {
  16730. height: math.unit(1.83, "feet"),
  16731. name: "Foot",
  16732. image: {
  16733. source: "./media/characters/pia-sr/foot.svg"
  16734. }
  16735. },
  16736. },
  16737. [
  16738. {
  16739. name: "Micro",
  16740. height: math.unit(88, "mm")
  16741. },
  16742. {
  16743. name: "Normal",
  16744. height: math.unit(2, "m"),
  16745. default: true
  16746. },
  16747. {
  16748. name: "Macro",
  16749. height: math.unit(200, "m")
  16750. },
  16751. {
  16752. name: "Megamacro",
  16753. height: math.unit(420, "km")
  16754. },
  16755. ]
  16756. ))
  16757. characterMakers.push(() => makeCharacter(
  16758. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16759. {
  16760. front: {
  16761. height: math.unit(8 + 2 / 12, "feet"),
  16762. weight: math.unit(300, "lb"),
  16763. name: "Front",
  16764. image: {
  16765. source: "./media/characters/kibibyte/front.svg",
  16766. extra: 2221 / 2098,
  16767. bottom: 0.04
  16768. }
  16769. },
  16770. },
  16771. [
  16772. {
  16773. name: "Normal",
  16774. height: math.unit(8 + 2 / 12, "feet"),
  16775. default: true
  16776. },
  16777. {
  16778. name: "Socialable Macro",
  16779. height: math.unit(50, "feet")
  16780. },
  16781. {
  16782. name: "Macro",
  16783. height: math.unit(300, "feet")
  16784. },
  16785. {
  16786. name: "Megamacro",
  16787. height: math.unit(500, "miles")
  16788. },
  16789. ]
  16790. ))
  16791. characterMakers.push(() => makeCharacter(
  16792. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16793. {
  16794. front: {
  16795. height: math.unit(6, "feet"),
  16796. weight: math.unit(150, "lb"),
  16797. name: "Front",
  16798. image: {
  16799. source: "./media/characters/felix/front.svg",
  16800. extra: 762 / 722,
  16801. bottom: 0.02
  16802. }
  16803. },
  16804. frontClothed: {
  16805. height: math.unit(6, "feet"),
  16806. weight: math.unit(150, "lb"),
  16807. name: "Front (Clothed)",
  16808. image: {
  16809. source: "./media/characters/felix/front-clothed.svg",
  16810. extra: 762 / 722,
  16811. bottom: 0.02
  16812. }
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Normal",
  16818. height: math.unit(6 + 8 / 12, "feet"),
  16819. default: true
  16820. },
  16821. {
  16822. name: "Macro",
  16823. height: math.unit(2600, "feet")
  16824. },
  16825. {
  16826. name: "Megamacro",
  16827. height: math.unit(450, "miles")
  16828. },
  16829. ]
  16830. ))
  16831. characterMakers.push(() => makeCharacter(
  16832. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16833. {
  16834. front: {
  16835. height: math.unit(6 + 1 / 12, "feet"),
  16836. weight: math.unit(250, "lb"),
  16837. name: "Front",
  16838. image: {
  16839. source: "./media/characters/tobo/front.svg",
  16840. extra: 608 / 586,
  16841. bottom: 0.023
  16842. }
  16843. },
  16844. back: {
  16845. height: math.unit(6 + 1 / 12, "feet"),
  16846. weight: math.unit(250, "lb"),
  16847. name: "Back",
  16848. image: {
  16849. source: "./media/characters/tobo/back.svg",
  16850. extra: 608 / 586
  16851. }
  16852. },
  16853. },
  16854. [
  16855. {
  16856. name: "Nano",
  16857. height: math.unit(2, "nm")
  16858. },
  16859. {
  16860. name: "Megamicro",
  16861. height: math.unit(0.1, "mm")
  16862. },
  16863. {
  16864. name: "Micro",
  16865. height: math.unit(1, "inch"),
  16866. default: true
  16867. },
  16868. {
  16869. name: "Human-sized",
  16870. height: math.unit(6 + 1 / 12, "feet")
  16871. },
  16872. {
  16873. name: "Macro",
  16874. height: math.unit(250, "feet")
  16875. },
  16876. {
  16877. name: "Megamacro",
  16878. height: math.unit(75, "miles")
  16879. },
  16880. {
  16881. name: "Texas-sized",
  16882. height: math.unit(750, "miles")
  16883. },
  16884. {
  16885. name: "Teramacro",
  16886. height: math.unit(50000, "miles")
  16887. },
  16888. ]
  16889. ))
  16890. characterMakers.push(() => makeCharacter(
  16891. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16892. {
  16893. front: {
  16894. height: math.unit(6, "feet"),
  16895. weight: math.unit(269, "lb"),
  16896. name: "Front",
  16897. image: {
  16898. source: "./media/characters/danny-kapowsky/front.svg",
  16899. extra: 766 / 736,
  16900. bottom: 0.044
  16901. }
  16902. },
  16903. back: {
  16904. height: math.unit(6, "feet"),
  16905. weight: math.unit(269, "lb"),
  16906. name: "Back",
  16907. image: {
  16908. source: "./media/characters/danny-kapowsky/back.svg",
  16909. extra: 797 / 760,
  16910. bottom: 0.025
  16911. }
  16912. },
  16913. },
  16914. [
  16915. {
  16916. name: "Macro",
  16917. height: math.unit(150, "feet"),
  16918. default: true
  16919. },
  16920. {
  16921. name: "Macro+",
  16922. height: math.unit(200, "feet")
  16923. },
  16924. {
  16925. name: "Macro++",
  16926. height: math.unit(300, "feet")
  16927. },
  16928. {
  16929. name: "Macro+++",
  16930. height: math.unit(400, "feet")
  16931. },
  16932. ]
  16933. ))
  16934. characterMakers.push(() => makeCharacter(
  16935. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16936. {
  16937. side: {
  16938. height: math.unit(6, "feet"),
  16939. weight: math.unit(170, "lb"),
  16940. name: "Side",
  16941. image: {
  16942. source: "./media/characters/finn/side.svg",
  16943. extra: 1953 / 1807,
  16944. bottom: 0.057
  16945. }
  16946. },
  16947. },
  16948. [
  16949. {
  16950. name: "Megamacro",
  16951. height: math.unit(14445, "feet"),
  16952. default: true
  16953. },
  16954. ]
  16955. ))
  16956. characterMakers.push(() => makeCharacter(
  16957. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16958. {
  16959. front: {
  16960. height: math.unit(5 + 6 / 12, "feet"),
  16961. weight: math.unit(125, "lb"),
  16962. name: "Front",
  16963. image: {
  16964. source: "./media/characters/roy/front.svg",
  16965. extra: 1,
  16966. bottom: 0.11
  16967. }
  16968. },
  16969. },
  16970. [
  16971. {
  16972. name: "Micro",
  16973. height: math.unit(3, "inches"),
  16974. default: true
  16975. },
  16976. {
  16977. name: "Normal",
  16978. height: math.unit(5 + 6 / 12, "feet")
  16979. },
  16980. {
  16981. name: "Lesser Macro",
  16982. height: math.unit(60, "feet")
  16983. },
  16984. {
  16985. name: "Greater Macro",
  16986. height: math.unit(120, "feet")
  16987. },
  16988. ]
  16989. ))
  16990. characterMakers.push(() => makeCharacter(
  16991. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16992. {
  16993. front: {
  16994. height: math.unit(6, "feet"),
  16995. weight: math.unit(100, "lb"),
  16996. name: "Front",
  16997. image: {
  16998. source: "./media/characters/aevsivs/front.svg",
  16999. extra: 1,
  17000. bottom: 0.03
  17001. }
  17002. },
  17003. back: {
  17004. height: math.unit(6, "feet"),
  17005. weight: math.unit(100, "lb"),
  17006. name: "Back",
  17007. image: {
  17008. source: "./media/characters/aevsivs/back.svg"
  17009. }
  17010. },
  17011. },
  17012. [
  17013. {
  17014. name: "Micro",
  17015. height: math.unit(2, "inches"),
  17016. default: true
  17017. },
  17018. {
  17019. name: "Normal",
  17020. height: math.unit(5, "feet")
  17021. },
  17022. ]
  17023. ))
  17024. characterMakers.push(() => makeCharacter(
  17025. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17026. {
  17027. front: {
  17028. height: math.unit(5 + 7 / 12, "feet"),
  17029. weight: math.unit(159, "lb"),
  17030. name: "Front",
  17031. image: {
  17032. source: "./media/characters/hildegard/front.svg",
  17033. extra: 289 / 269,
  17034. bottom: 7.63 / 297.8
  17035. }
  17036. },
  17037. back: {
  17038. height: math.unit(5 + 7 / 12, "feet"),
  17039. weight: math.unit(159, "lb"),
  17040. name: "Back",
  17041. image: {
  17042. source: "./media/characters/hildegard/back.svg",
  17043. extra: 280 / 260,
  17044. bottom: 2.3 / 282
  17045. }
  17046. },
  17047. },
  17048. [
  17049. {
  17050. name: "Normal",
  17051. height: math.unit(5 + 7 / 12, "feet"),
  17052. default: true
  17053. },
  17054. ]
  17055. ))
  17056. characterMakers.push(() => makeCharacter(
  17057. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17058. {
  17059. bernard: {
  17060. height: math.unit(2 + 7 / 12, "feet"),
  17061. weight: math.unit(66, "lb"),
  17062. name: "Bernard",
  17063. rename: true,
  17064. image: {
  17065. source: "./media/characters/bernard-wilder/bernard.svg",
  17066. extra: 192 / 128,
  17067. bottom: 0.05
  17068. }
  17069. },
  17070. wilder: {
  17071. height: math.unit(5 + 8 / 12, "feet"),
  17072. weight: math.unit(143, "lb"),
  17073. name: "Wilder",
  17074. rename: true,
  17075. image: {
  17076. source: "./media/characters/bernard-wilder/wilder.svg",
  17077. extra: 361 / 312,
  17078. bottom: 0.02
  17079. }
  17080. },
  17081. },
  17082. [
  17083. {
  17084. name: "Normal",
  17085. height: math.unit(2 + 7 / 12, "feet"),
  17086. default: true
  17087. },
  17088. ]
  17089. ))
  17090. characterMakers.push(() => makeCharacter(
  17091. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17092. {
  17093. anthro: {
  17094. height: math.unit(6 + 1 / 12, "feet"),
  17095. weight: math.unit(155, "lb"),
  17096. name: "Anthro",
  17097. image: {
  17098. source: "./media/characters/hearth/anthro.svg",
  17099. extra: 1178/1136,
  17100. bottom: 28/1206
  17101. }
  17102. },
  17103. feral: {
  17104. height: math.unit(3.78, "feet"),
  17105. weight: math.unit(35, "kg"),
  17106. name: "Feral",
  17107. image: {
  17108. source: "./media/characters/hearth/feral.svg",
  17109. extra: 153 / 135,
  17110. bottom: 0.03
  17111. }
  17112. },
  17113. },
  17114. [
  17115. {
  17116. name: "Normal",
  17117. height: math.unit(6 + 1 / 12, "feet"),
  17118. default: true
  17119. },
  17120. ]
  17121. ))
  17122. characterMakers.push(() => makeCharacter(
  17123. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17124. {
  17125. front: {
  17126. height: math.unit(6, "feet"),
  17127. weight: math.unit(182, "lb"),
  17128. name: "Front",
  17129. image: {
  17130. source: "./media/characters/ingrid/front.svg",
  17131. extra: 294 / 268,
  17132. bottom: 0.027
  17133. }
  17134. },
  17135. },
  17136. [
  17137. {
  17138. name: "Normal",
  17139. height: math.unit(6, "feet"),
  17140. default: true
  17141. },
  17142. ]
  17143. ))
  17144. characterMakers.push(() => makeCharacter(
  17145. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17146. {
  17147. eevee: {
  17148. height: math.unit(2 + 10 / 12, "feet"),
  17149. weight: math.unit(86, "lb"),
  17150. name: "Malgam",
  17151. image: {
  17152. source: "./media/characters/malgam/eevee.svg",
  17153. extra: 952/784,
  17154. bottom: 38/990
  17155. }
  17156. },
  17157. sylveon: {
  17158. height: math.unit(4, "feet"),
  17159. weight: math.unit(101, "lb"),
  17160. name: "Future Malgam",
  17161. rename: true,
  17162. image: {
  17163. source: "./media/characters/malgam/sylveon.svg",
  17164. extra: 371 / 325,
  17165. bottom: 0.015
  17166. }
  17167. },
  17168. gigantamax: {
  17169. height: math.unit(50, "feet"),
  17170. name: "Gigantamax Malgam",
  17171. rename: true,
  17172. image: {
  17173. source: "./media/characters/malgam/gigantamax.svg"
  17174. }
  17175. },
  17176. },
  17177. [
  17178. {
  17179. name: "Normal",
  17180. height: math.unit(2 + 10 / 12, "feet"),
  17181. default: true
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17187. {
  17188. front: {
  17189. height: math.unit(5 + 11 / 12, "feet"),
  17190. weight: math.unit(188, "lb"),
  17191. name: "Front",
  17192. image: {
  17193. source: "./media/characters/fleur/front.svg",
  17194. extra: 309 / 283,
  17195. bottom: 0.007
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Normal",
  17202. height: math.unit(5 + 11 / 12, "feet"),
  17203. default: true
  17204. },
  17205. ]
  17206. ))
  17207. characterMakers.push(() => makeCharacter(
  17208. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17209. {
  17210. front: {
  17211. height: math.unit(5 + 4 / 12, "feet"),
  17212. weight: math.unit(122, "lb"),
  17213. name: "Front",
  17214. image: {
  17215. source: "./media/characters/jude/front.svg",
  17216. extra: 288 / 273,
  17217. bottom: 0.03
  17218. }
  17219. },
  17220. },
  17221. [
  17222. {
  17223. name: "Normal",
  17224. height: math.unit(5 + 4 / 12, "feet"),
  17225. default: true
  17226. },
  17227. ]
  17228. ))
  17229. characterMakers.push(() => makeCharacter(
  17230. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17231. {
  17232. front: {
  17233. height: math.unit(5 + 11 / 12, "feet"),
  17234. weight: math.unit(190, "lb"),
  17235. name: "Front",
  17236. image: {
  17237. source: "./media/characters/seara/front.svg",
  17238. extra: 1,
  17239. bottom: 0.05
  17240. }
  17241. },
  17242. },
  17243. [
  17244. {
  17245. name: "Normal",
  17246. height: math.unit(5 + 11 / 12, "feet"),
  17247. default: true
  17248. },
  17249. ]
  17250. ))
  17251. characterMakers.push(() => makeCharacter(
  17252. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17253. {
  17254. front: {
  17255. height: math.unit(16 + 5 / 12, "feet"),
  17256. weight: math.unit(524, "lb"),
  17257. name: "Front",
  17258. image: {
  17259. source: "./media/characters/caspian-lugia/front.svg",
  17260. extra: 1,
  17261. bottom: 0.04
  17262. }
  17263. },
  17264. },
  17265. [
  17266. {
  17267. name: "Normal",
  17268. height: math.unit(16 + 5 / 12, "feet"),
  17269. default: true
  17270. },
  17271. ]
  17272. ))
  17273. characterMakers.push(() => makeCharacter(
  17274. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17275. {
  17276. front: {
  17277. height: math.unit(5 + 7 / 12, "feet"),
  17278. weight: math.unit(170, "lb"),
  17279. name: "Front",
  17280. image: {
  17281. source: "./media/characters/mika/front.svg",
  17282. extra: 1,
  17283. bottom: 0.016
  17284. }
  17285. },
  17286. },
  17287. [
  17288. {
  17289. name: "Normal",
  17290. height: math.unit(5 + 7 / 12, "feet"),
  17291. default: true
  17292. },
  17293. ]
  17294. ))
  17295. characterMakers.push(() => makeCharacter(
  17296. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17297. {
  17298. front: {
  17299. height: math.unit(6 + 2 / 12, "feet"),
  17300. weight: math.unit(268, "lb"),
  17301. name: "Front",
  17302. image: {
  17303. source: "./media/characters/sol/front.svg",
  17304. extra: 247 / 231,
  17305. bottom: 0.05
  17306. }
  17307. },
  17308. },
  17309. [
  17310. {
  17311. name: "Normal",
  17312. height: math.unit(6 + 2 / 12, "feet"),
  17313. default: true
  17314. },
  17315. ]
  17316. ))
  17317. characterMakers.push(() => makeCharacter(
  17318. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17319. {
  17320. buizel: {
  17321. height: math.unit(2 + 5 / 12, "feet"),
  17322. weight: math.unit(87, "lb"),
  17323. name: "Front",
  17324. image: {
  17325. source: "./media/characters/umiko/buizel.svg",
  17326. extra: 172 / 157,
  17327. bottom: 0.01
  17328. },
  17329. form: "buizel",
  17330. default: true
  17331. },
  17332. floatzel: {
  17333. height: math.unit(5 + 9 / 12, "feet"),
  17334. weight: math.unit(250, "lb"),
  17335. name: "Front",
  17336. image: {
  17337. source: "./media/characters/umiko/floatzel.svg",
  17338. extra: 1076/1006,
  17339. bottom: 15/1091
  17340. },
  17341. form: "floatzel",
  17342. default: true
  17343. },
  17344. },
  17345. [
  17346. {
  17347. name: "Normal",
  17348. height: math.unit(2 + 5 / 12, "feet"),
  17349. form: "buizel",
  17350. default: true
  17351. },
  17352. {
  17353. name: "Normal",
  17354. height: math.unit(5 + 9 / 12, "feet"),
  17355. form: "floatzel",
  17356. default: true
  17357. },
  17358. ],
  17359. {
  17360. "buizel": {
  17361. name: "Buizel"
  17362. },
  17363. "floatzel": {
  17364. name: "Floatzel",
  17365. default: true
  17366. }
  17367. }
  17368. ))
  17369. characterMakers.push(() => makeCharacter(
  17370. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17371. {
  17372. front: {
  17373. height: math.unit(6 + 2 / 12, "feet"),
  17374. weight: math.unit(146, "lb"),
  17375. name: "Front",
  17376. image: {
  17377. source: "./media/characters/iliac/front.svg",
  17378. extra: 389 / 365,
  17379. bottom: 0.035
  17380. }
  17381. },
  17382. },
  17383. [
  17384. {
  17385. name: "Normal",
  17386. height: math.unit(6 + 2 / 12, "feet"),
  17387. default: true
  17388. },
  17389. ]
  17390. ))
  17391. characterMakers.push(() => makeCharacter(
  17392. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17393. {
  17394. front: {
  17395. height: math.unit(6, "feet"),
  17396. weight: math.unit(170, "lb"),
  17397. name: "Front",
  17398. image: {
  17399. source: "./media/characters/topaz/front.svg",
  17400. extra: 317 / 303,
  17401. bottom: 0.055
  17402. }
  17403. },
  17404. },
  17405. [
  17406. {
  17407. name: "Normal",
  17408. height: math.unit(6, "feet"),
  17409. default: true
  17410. },
  17411. ]
  17412. ))
  17413. characterMakers.push(() => makeCharacter(
  17414. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17415. {
  17416. front: {
  17417. height: math.unit(5 + 11 / 12, "feet"),
  17418. weight: math.unit(144, "lb"),
  17419. name: "Front",
  17420. image: {
  17421. source: "./media/characters/gabriel/front.svg",
  17422. extra: 285 / 262,
  17423. bottom: 0.004
  17424. }
  17425. },
  17426. },
  17427. [
  17428. {
  17429. name: "Normal",
  17430. height: math.unit(5 + 11 / 12, "feet"),
  17431. default: true
  17432. },
  17433. ]
  17434. ))
  17435. characterMakers.push(() => makeCharacter(
  17436. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17437. {
  17438. side: {
  17439. height: math.unit(6 + 5 / 12, "feet"),
  17440. weight: math.unit(300, "lb"),
  17441. name: "Side",
  17442. image: {
  17443. source: "./media/characters/tempest-suicune/side.svg",
  17444. extra: 195 / 154,
  17445. bottom: 0.04
  17446. }
  17447. },
  17448. },
  17449. [
  17450. {
  17451. name: "Normal",
  17452. height: math.unit(6 + 5 / 12, "feet"),
  17453. default: true
  17454. },
  17455. ]
  17456. ))
  17457. characterMakers.push(() => makeCharacter(
  17458. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17459. {
  17460. front: {
  17461. height: math.unit(7 + 2 / 12, "feet"),
  17462. weight: math.unit(322, "lb"),
  17463. name: "Front",
  17464. image: {
  17465. source: "./media/characters/vulcan/front.svg",
  17466. extra: 154 / 147,
  17467. bottom: 0.04
  17468. }
  17469. },
  17470. },
  17471. [
  17472. {
  17473. name: "Normal",
  17474. height: math.unit(7 + 2 / 12, "feet"),
  17475. default: true
  17476. },
  17477. ]
  17478. ))
  17479. characterMakers.push(() => makeCharacter(
  17480. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17481. {
  17482. front: {
  17483. height: math.unit(5 + 10 / 12, "feet"),
  17484. weight: math.unit(264, "lb"),
  17485. name: "Front",
  17486. image: {
  17487. source: "./media/characters/gault/front.svg",
  17488. extra: 161 / 140,
  17489. bottom: 0.028
  17490. }
  17491. },
  17492. },
  17493. [
  17494. {
  17495. name: "Normal",
  17496. height: math.unit(5 + 10 / 12, "feet"),
  17497. default: true
  17498. },
  17499. ]
  17500. ))
  17501. characterMakers.push(() => makeCharacter(
  17502. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17503. {
  17504. front: {
  17505. height: math.unit(6, "feet"),
  17506. weight: math.unit(150, "lb"),
  17507. name: "Front",
  17508. image: {
  17509. source: "./media/characters/shard/front.svg",
  17510. extra: 273 / 238,
  17511. bottom: 0.02
  17512. }
  17513. },
  17514. },
  17515. [
  17516. {
  17517. name: "Normal",
  17518. height: math.unit(3 + 6 / 12, "feet"),
  17519. default: true
  17520. },
  17521. ]
  17522. ))
  17523. characterMakers.push(() => makeCharacter(
  17524. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17525. {
  17526. front: {
  17527. height: math.unit(5 + 11 / 12, "feet"),
  17528. weight: math.unit(146, "lb"),
  17529. name: "Front",
  17530. image: {
  17531. source: "./media/characters/ashe/front.svg",
  17532. extra: 400 / 373,
  17533. bottom: 0.01
  17534. }
  17535. },
  17536. },
  17537. [
  17538. {
  17539. name: "Normal",
  17540. height: math.unit(5 + 11 / 12, "feet"),
  17541. default: true
  17542. },
  17543. ]
  17544. ))
  17545. characterMakers.push(() => makeCharacter(
  17546. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17547. {
  17548. front: {
  17549. height: math.unit(5 + 5 / 12, "feet"),
  17550. weight: math.unit(135, "lb"),
  17551. name: "Front",
  17552. image: {
  17553. source: "./media/characters/beatrix/front.svg",
  17554. extra: 392 / 379,
  17555. bottom: 0.01
  17556. }
  17557. },
  17558. },
  17559. [
  17560. {
  17561. name: "Normal",
  17562. height: math.unit(6, "feet"),
  17563. default: true
  17564. },
  17565. ]
  17566. ))
  17567. characterMakers.push(() => makeCharacter(
  17568. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17569. {
  17570. front: {
  17571. height: math.unit(6 + 2/12, "feet"),
  17572. weight: math.unit(135, "lb"),
  17573. name: "Front",
  17574. image: {
  17575. source: "./media/characters/ignatius/front.svg",
  17576. extra: 1380/1259,
  17577. bottom: 27/1407
  17578. }
  17579. },
  17580. },
  17581. [
  17582. {
  17583. name: "Normal",
  17584. height: math.unit(6 + 2/12, "feet"),
  17585. default: true
  17586. },
  17587. ]
  17588. ))
  17589. characterMakers.push(() => makeCharacter(
  17590. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17591. {
  17592. front: {
  17593. height: math.unit(6 + 2 / 12, "feet"),
  17594. weight: math.unit(138, "lb"),
  17595. name: "Front",
  17596. image: {
  17597. source: "./media/characters/mei-li/front.svg",
  17598. extra: 237 / 229,
  17599. bottom: 0.03
  17600. }
  17601. },
  17602. },
  17603. [
  17604. {
  17605. name: "Normal",
  17606. height: math.unit(6 + 2 / 12, "feet"),
  17607. default: true
  17608. },
  17609. ]
  17610. ))
  17611. characterMakers.push(() => makeCharacter(
  17612. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17613. {
  17614. front: {
  17615. height: math.unit(2 + 4 / 12, "feet"),
  17616. weight: math.unit(62, "lb"),
  17617. name: "Front",
  17618. image: {
  17619. source: "./media/characters/puru/front.svg",
  17620. extra: 206 / 149,
  17621. bottom: 0.06
  17622. }
  17623. },
  17624. },
  17625. [
  17626. {
  17627. name: "Normal",
  17628. height: math.unit(2 + 4 / 12, "feet"),
  17629. default: true
  17630. },
  17631. ]
  17632. ))
  17633. characterMakers.push(() => makeCharacter(
  17634. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17635. {
  17636. anthro: {
  17637. height: math.unit(5 + 8/12, "feet"),
  17638. weight: math.unit(200, "lb"),
  17639. energyNeed: math.unit(2000, "kcal"),
  17640. name: "Anthro",
  17641. image: {
  17642. source: "./media/characters/kee/anthro.svg",
  17643. extra: 3251/3184,
  17644. bottom: 250/3501
  17645. }
  17646. },
  17647. taur: {
  17648. height: math.unit(11, "feet"),
  17649. weight: math.unit(500, "lb"),
  17650. energyNeed: math.unit(5000, "kcal"),
  17651. name: "Taur",
  17652. image: {
  17653. source: "./media/characters/kee/taur.svg",
  17654. extra: 1362/1320,
  17655. bottom: 83/1445
  17656. }
  17657. },
  17658. },
  17659. [
  17660. {
  17661. name: "Normal",
  17662. height: math.unit(5 + 8/12, "feet"),
  17663. default: true
  17664. },
  17665. {
  17666. name: "Macro",
  17667. height: math.unit(35, "feet")
  17668. },
  17669. ]
  17670. ))
  17671. characterMakers.push(() => makeCharacter(
  17672. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17673. {
  17674. anthro: {
  17675. height: math.unit(7, "feet"),
  17676. weight: math.unit(190, "lb"),
  17677. name: "Anthro",
  17678. image: {
  17679. source: "./media/characters/cobalt-dracha/anthro.svg",
  17680. extra: 231 / 225,
  17681. bottom: 0.04
  17682. }
  17683. },
  17684. feral: {
  17685. height: math.unit(9 + 7 / 12, "feet"),
  17686. weight: math.unit(294, "lb"),
  17687. name: "Feral",
  17688. image: {
  17689. source: "./media/characters/cobalt-dracha/feral.svg",
  17690. extra: 692 / 633,
  17691. bottom: 0.05
  17692. }
  17693. },
  17694. },
  17695. [
  17696. {
  17697. name: "Normal",
  17698. height: math.unit(7, "feet"),
  17699. default: true
  17700. },
  17701. ]
  17702. ))
  17703. characterMakers.push(() => makeCharacter(
  17704. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17705. {
  17706. fallen: {
  17707. height: math.unit(11 + 8 / 12, "feet"),
  17708. weight: math.unit(485, "lb"),
  17709. name: "Java (Fallen)",
  17710. rename: true,
  17711. image: {
  17712. source: "./media/characters/java/fallen.svg",
  17713. extra: 226 / 208,
  17714. bottom: 0.005
  17715. }
  17716. },
  17717. godkin: {
  17718. height: math.unit(10 + 6 / 12, "feet"),
  17719. weight: math.unit(328, "lb"),
  17720. name: "Java (Godkin)",
  17721. rename: true,
  17722. image: {
  17723. source: "./media/characters/java/godkin.svg",
  17724. extra: 1104/1068,
  17725. bottom: 36/1140
  17726. }
  17727. },
  17728. },
  17729. [
  17730. {
  17731. name: "Normal",
  17732. height: math.unit(11 + 8 / 12, "feet"),
  17733. default: true
  17734. },
  17735. ]
  17736. ))
  17737. characterMakers.push(() => makeCharacter(
  17738. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17739. {
  17740. front: {
  17741. height: math.unit(5 + 9 / 12, "feet"),
  17742. weight: math.unit(170, "lb"),
  17743. name: "Front",
  17744. image: {
  17745. source: "./media/characters/purna/front.svg",
  17746. extra: 239 / 229,
  17747. bottom: 0.01
  17748. }
  17749. },
  17750. },
  17751. [
  17752. {
  17753. name: "Normal",
  17754. height: math.unit(5 + 9 / 12, "feet"),
  17755. default: true
  17756. },
  17757. ]
  17758. ))
  17759. characterMakers.push(() => makeCharacter(
  17760. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17761. {
  17762. front: {
  17763. height: math.unit(5 + 9 / 12, "feet"),
  17764. weight: math.unit(142, "lb"),
  17765. name: "Front",
  17766. image: {
  17767. source: "./media/characters/kuva/front.svg",
  17768. extra: 281 / 271,
  17769. bottom: 0.006
  17770. }
  17771. },
  17772. },
  17773. [
  17774. {
  17775. name: "Normal",
  17776. height: math.unit(5 + 9 / 12, "feet"),
  17777. default: true
  17778. },
  17779. ]
  17780. ))
  17781. characterMakers.push(() => makeCharacter(
  17782. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17783. {
  17784. anthro: {
  17785. height: math.unit(9 + 2 / 12, "feet"),
  17786. weight: math.unit(270, "lb"),
  17787. name: "Anthro",
  17788. image: {
  17789. source: "./media/characters/embra/anthro.svg",
  17790. extra: 200 / 187,
  17791. bottom: 0.02
  17792. }
  17793. },
  17794. feral: {
  17795. height: math.unit(18 + 8 / 12, "feet"),
  17796. weight: math.unit(576, "lb"),
  17797. name: "Feral",
  17798. image: {
  17799. source: "./media/characters/embra/feral.svg",
  17800. extra: 152 / 137,
  17801. bottom: 0.037
  17802. }
  17803. },
  17804. },
  17805. [
  17806. {
  17807. name: "Normal",
  17808. height: math.unit(9 + 2 / 12, "feet"),
  17809. default: true
  17810. },
  17811. ]
  17812. ))
  17813. characterMakers.push(() => makeCharacter(
  17814. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17815. {
  17816. anthro: {
  17817. height: math.unit(10 + 9 / 12, "feet"),
  17818. weight: math.unit(224, "lb"),
  17819. name: "Anthro",
  17820. image: {
  17821. source: "./media/characters/grottos/anthro.svg",
  17822. extra: 350 / 332,
  17823. bottom: 0.045
  17824. }
  17825. },
  17826. feral: {
  17827. height: math.unit(20 + 7 / 12, "feet"),
  17828. weight: math.unit(629, "lb"),
  17829. name: "Feral",
  17830. image: {
  17831. source: "./media/characters/grottos/feral.svg",
  17832. extra: 207 / 190,
  17833. bottom: 0.05
  17834. }
  17835. },
  17836. },
  17837. [
  17838. {
  17839. name: "Normal",
  17840. height: math.unit(10 + 9 / 12, "feet"),
  17841. default: true
  17842. },
  17843. ]
  17844. ))
  17845. characterMakers.push(() => makeCharacter(
  17846. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17847. {
  17848. anthro: {
  17849. height: math.unit(9 + 6 / 12, "feet"),
  17850. weight: math.unit(298, "lb"),
  17851. name: "Anthro",
  17852. image: {
  17853. source: "./media/characters/frifna/anthro.svg",
  17854. extra: 282 / 269,
  17855. bottom: 0.015
  17856. }
  17857. },
  17858. feral: {
  17859. height: math.unit(16 + 2 / 12, "feet"),
  17860. weight: math.unit(624, "lb"),
  17861. name: "Feral",
  17862. image: {
  17863. source: "./media/characters/frifna/feral.svg"
  17864. }
  17865. },
  17866. },
  17867. [
  17868. {
  17869. name: "Normal",
  17870. height: math.unit(9 + 6 / 12, "feet"),
  17871. default: true
  17872. },
  17873. ]
  17874. ))
  17875. characterMakers.push(() => makeCharacter(
  17876. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17877. {
  17878. front: {
  17879. height: math.unit(6 + 2 / 12, "feet"),
  17880. weight: math.unit(168, "lb"),
  17881. name: "Front",
  17882. image: {
  17883. source: "./media/characters/elise/front.svg",
  17884. extra: 276 / 271
  17885. }
  17886. },
  17887. },
  17888. [
  17889. {
  17890. name: "Normal",
  17891. height: math.unit(6 + 2 / 12, "feet"),
  17892. default: true
  17893. },
  17894. ]
  17895. ))
  17896. characterMakers.push(() => makeCharacter(
  17897. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17898. {
  17899. front: {
  17900. height: math.unit(5 + 10 / 12, "feet"),
  17901. weight: math.unit(210, "lb"),
  17902. name: "Front",
  17903. image: {
  17904. source: "./media/characters/glade/front.svg",
  17905. extra: 258 / 247,
  17906. bottom: 0.008
  17907. }
  17908. },
  17909. },
  17910. [
  17911. {
  17912. name: "Normal",
  17913. height: math.unit(5 + 10 / 12, "feet"),
  17914. default: true
  17915. },
  17916. ]
  17917. ))
  17918. characterMakers.push(() => makeCharacter(
  17919. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17920. {
  17921. front: {
  17922. height: math.unit(5 + 10 / 12, "feet"),
  17923. weight: math.unit(129, "lb"),
  17924. name: "Front",
  17925. image: {
  17926. source: "./media/characters/rina/front.svg",
  17927. extra: 266 / 255,
  17928. bottom: 0.005
  17929. }
  17930. },
  17931. },
  17932. [
  17933. {
  17934. name: "Normal",
  17935. height: math.unit(5 + 10 / 12, "feet"),
  17936. default: true
  17937. },
  17938. ]
  17939. ))
  17940. characterMakers.push(() => makeCharacter(
  17941. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17942. {
  17943. front: {
  17944. height: math.unit(6 + 1 / 12, "feet"),
  17945. weight: math.unit(192, "lb"),
  17946. name: "Front",
  17947. image: {
  17948. source: "./media/characters/veronica/front.svg",
  17949. extra: 319 / 309,
  17950. bottom: 0.005
  17951. }
  17952. },
  17953. },
  17954. [
  17955. {
  17956. name: "Normal",
  17957. height: math.unit(6 + 1 / 12, "feet"),
  17958. default: true
  17959. },
  17960. ]
  17961. ))
  17962. characterMakers.push(() => makeCharacter(
  17963. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17964. {
  17965. front: {
  17966. height: math.unit(9 + 3 / 12, "feet"),
  17967. weight: math.unit(1100, "lb"),
  17968. name: "Front",
  17969. image: {
  17970. source: "./media/characters/braxton/front.svg",
  17971. extra: 1057 / 984,
  17972. bottom: 0.05
  17973. }
  17974. },
  17975. },
  17976. [
  17977. {
  17978. name: "Normal",
  17979. height: math.unit(9 + 3 / 12, "feet")
  17980. },
  17981. {
  17982. name: "Giant",
  17983. height: math.unit(300, "feet"),
  17984. default: true
  17985. },
  17986. {
  17987. name: "Macro",
  17988. height: math.unit(700, "feet")
  17989. },
  17990. {
  17991. name: "Megamacro",
  17992. height: math.unit(6000, "feet")
  17993. },
  17994. ]
  17995. ))
  17996. characterMakers.push(() => makeCharacter(
  17997. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17998. {
  17999. front: {
  18000. height: math.unit(6 + 7 / 12, "feet"),
  18001. weight: math.unit(150, "lb"),
  18002. name: "Front",
  18003. image: {
  18004. source: "./media/characters/blue-feyonics/front.svg",
  18005. extra: 1403 / 1306,
  18006. bottom: 0.047
  18007. }
  18008. },
  18009. },
  18010. [
  18011. {
  18012. name: "Normal",
  18013. height: math.unit(6 + 7 / 12, "feet"),
  18014. default: true
  18015. },
  18016. ]
  18017. ))
  18018. characterMakers.push(() => makeCharacter(
  18019. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18020. {
  18021. front: {
  18022. height: math.unit(1.8, "meters"),
  18023. weight: math.unit(60, "kg"),
  18024. name: "Front",
  18025. image: {
  18026. source: "./media/characters/maxwell/front.svg",
  18027. extra: 2060 / 1873
  18028. }
  18029. },
  18030. },
  18031. [
  18032. {
  18033. name: "Micro",
  18034. height: math.unit(1, "mm")
  18035. },
  18036. {
  18037. name: "Normal",
  18038. height: math.unit(1.8, "meter"),
  18039. default: true
  18040. },
  18041. {
  18042. name: "Macro",
  18043. height: math.unit(30, "meters")
  18044. },
  18045. {
  18046. name: "Megamacro",
  18047. height: math.unit(10, "km")
  18048. },
  18049. ]
  18050. ))
  18051. characterMakers.push(() => makeCharacter(
  18052. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18053. {
  18054. front: {
  18055. height: math.unit(6, "feet"),
  18056. weight: math.unit(150, "lb"),
  18057. name: "Front",
  18058. image: {
  18059. source: "./media/characters/jack/front.svg",
  18060. extra: 1754 / 1640,
  18061. bottom: 0.01
  18062. }
  18063. },
  18064. },
  18065. [
  18066. {
  18067. name: "Normal",
  18068. height: math.unit(80000, "feet"),
  18069. default: true
  18070. },
  18071. {
  18072. name: "Max size",
  18073. height: math.unit(10, "lightyears")
  18074. },
  18075. ]
  18076. ))
  18077. characterMakers.push(() => makeCharacter(
  18078. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18079. {
  18080. urban: {
  18081. height: math.unit(5, "feet"),
  18082. weight: math.unit(240, "lb"),
  18083. name: "Urban",
  18084. image: {
  18085. source: "./media/characters/cafat/urban.svg",
  18086. extra: 1223/1126,
  18087. bottom: 205/1428
  18088. }
  18089. },
  18090. summer: {
  18091. height: math.unit(5, "feet"),
  18092. weight: math.unit(240, "lb"),
  18093. name: "Summer",
  18094. image: {
  18095. source: "./media/characters/cafat/summer.svg",
  18096. extra: 1223/1126,
  18097. bottom: 205/1428
  18098. }
  18099. },
  18100. winter: {
  18101. height: math.unit(5, "feet"),
  18102. weight: math.unit(240, "lb"),
  18103. name: "Winter",
  18104. image: {
  18105. source: "./media/characters/cafat/winter.svg",
  18106. extra: 1223/1126,
  18107. bottom: 205/1428
  18108. }
  18109. },
  18110. lingerie: {
  18111. height: math.unit(5, "feet"),
  18112. weight: math.unit(240, "lb"),
  18113. name: "Lingerie",
  18114. image: {
  18115. source: "./media/characters/cafat/lingerie.svg",
  18116. extra: 1223/1126,
  18117. bottom: 205/1428
  18118. }
  18119. },
  18120. upright: {
  18121. height: math.unit(6.3, "feet"),
  18122. weight: math.unit(240, "lb"),
  18123. name: "Upright",
  18124. image: {
  18125. source: "./media/characters/cafat/upright.svg",
  18126. bottom: 0.01
  18127. }
  18128. },
  18129. uprightFull: {
  18130. height: math.unit(6.3, "feet"),
  18131. weight: math.unit(240, "lb"),
  18132. name: "Upright (Full)",
  18133. image: {
  18134. source: "./media/characters/cafat/upright-full.svg",
  18135. bottom: 0.01
  18136. }
  18137. },
  18138. },
  18139. [
  18140. {
  18141. name: "Small",
  18142. height: math.unit(5, "feet"),
  18143. default: true
  18144. },
  18145. {
  18146. name: "Large",
  18147. height: math.unit(13, "feet")
  18148. },
  18149. ]
  18150. ))
  18151. characterMakers.push(() => makeCharacter(
  18152. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18153. {
  18154. front: {
  18155. height: math.unit(6, "feet"),
  18156. weight: math.unit(150, "lb"),
  18157. name: "Front",
  18158. image: {
  18159. source: "./media/characters/verin-raharra/front.svg",
  18160. extra: 5019 / 4835,
  18161. bottom: 0.023
  18162. }
  18163. },
  18164. },
  18165. [
  18166. {
  18167. name: "Normal",
  18168. height: math.unit(7 + 5 / 12, "feet"),
  18169. default: true
  18170. },
  18171. {
  18172. name: "Upsized",
  18173. height: math.unit(20, "feet")
  18174. },
  18175. ]
  18176. ))
  18177. characterMakers.push(() => makeCharacter(
  18178. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18179. {
  18180. front: {
  18181. height: math.unit(7, "feet"),
  18182. weight: math.unit(230, "lb"),
  18183. name: "Front",
  18184. image: {
  18185. source: "./media/characters/nakata/front.svg",
  18186. extra: 1.005,
  18187. bottom: 0.01
  18188. }
  18189. },
  18190. },
  18191. [
  18192. {
  18193. name: "Normal",
  18194. height: math.unit(7, "feet"),
  18195. default: true
  18196. },
  18197. {
  18198. name: "Big",
  18199. height: math.unit(14, "feet")
  18200. },
  18201. {
  18202. name: "Macro",
  18203. height: math.unit(400, "feet")
  18204. },
  18205. ]
  18206. ))
  18207. characterMakers.push(() => makeCharacter(
  18208. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18209. {
  18210. front: {
  18211. height: math.unit(4.91, "feet"),
  18212. weight: math.unit(100, "lb"),
  18213. name: "Front",
  18214. image: {
  18215. source: "./media/characters/lily/front.svg",
  18216. extra: 1585 / 1415,
  18217. bottom: 0.02
  18218. }
  18219. },
  18220. },
  18221. [
  18222. {
  18223. name: "Normal",
  18224. height: math.unit(4.91, "feet"),
  18225. default: true
  18226. },
  18227. ]
  18228. ))
  18229. characterMakers.push(() => makeCharacter(
  18230. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18231. {
  18232. laying: {
  18233. height: math.unit(4 + 4 / 12, "feet"),
  18234. weight: math.unit(600, "lb"),
  18235. name: "Laying",
  18236. image: {
  18237. source: "./media/characters/sheila/laying.svg",
  18238. extra: 1333 / 1265,
  18239. bottom: 0.16
  18240. }
  18241. },
  18242. },
  18243. [
  18244. {
  18245. name: "Normal",
  18246. height: math.unit(4 + 4 / 12, "feet"),
  18247. default: true
  18248. },
  18249. ]
  18250. ))
  18251. characterMakers.push(() => makeCharacter(
  18252. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18253. {
  18254. front: {
  18255. height: math.unit(6, "feet"),
  18256. weight: math.unit(190, "lb"),
  18257. name: "Front",
  18258. image: {
  18259. source: "./media/characters/sax/front.svg",
  18260. extra: 1187 / 973,
  18261. bottom: 0.042
  18262. }
  18263. },
  18264. },
  18265. [
  18266. {
  18267. name: "Micro",
  18268. height: math.unit(4, "inches"),
  18269. default: true
  18270. },
  18271. ]
  18272. ))
  18273. characterMakers.push(() => makeCharacter(
  18274. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18275. {
  18276. front: {
  18277. height: math.unit(6, "feet"),
  18278. weight: math.unit(150, "lb"),
  18279. name: "Front",
  18280. image: {
  18281. source: "./media/characters/pandora/front.svg",
  18282. extra: 2720 / 2556,
  18283. bottom: 0.015
  18284. }
  18285. },
  18286. back: {
  18287. height: math.unit(6, "feet"),
  18288. weight: math.unit(150, "lb"),
  18289. name: "Back",
  18290. image: {
  18291. source: "./media/characters/pandora/back.svg",
  18292. extra: 2720 / 2556,
  18293. bottom: 0.01
  18294. }
  18295. },
  18296. beans: {
  18297. height: math.unit(6 / 8, "feet"),
  18298. name: "Beans",
  18299. image: {
  18300. source: "./media/characters/pandora/beans.svg"
  18301. }
  18302. },
  18303. collar: {
  18304. height: math.unit(0.31, "feet"),
  18305. name: "Collar",
  18306. image: {
  18307. source: "./media/characters/pandora/collar.svg"
  18308. }
  18309. },
  18310. skirt: {
  18311. height: math.unit(6, "feet"),
  18312. weight: math.unit(150, "lb"),
  18313. name: "Skirt",
  18314. image: {
  18315. source: "./media/characters/pandora/skirt.svg",
  18316. extra: 1622 / 1525,
  18317. bottom: 0.015
  18318. }
  18319. },
  18320. hoodie: {
  18321. height: math.unit(6, "feet"),
  18322. weight: math.unit(150, "lb"),
  18323. name: "Hoodie",
  18324. image: {
  18325. source: "./media/characters/pandora/hoodie.svg",
  18326. extra: 1622 / 1525,
  18327. bottom: 0.015
  18328. }
  18329. },
  18330. casual: {
  18331. height: math.unit(6, "feet"),
  18332. weight: math.unit(150, "lb"),
  18333. name: "Casual",
  18334. image: {
  18335. source: "./media/characters/pandora/casual.svg",
  18336. extra: 1622 / 1525,
  18337. bottom: 0.015
  18338. }
  18339. },
  18340. },
  18341. [
  18342. {
  18343. name: "Normal",
  18344. height: math.unit(6, "feet")
  18345. },
  18346. {
  18347. name: "Big Steppy",
  18348. height: math.unit(1, "km"),
  18349. default: true
  18350. },
  18351. {
  18352. name: "Galactic Steppy",
  18353. height: math.unit(2, "gigameters")
  18354. },
  18355. ]
  18356. ))
  18357. characterMakers.push(() => makeCharacter(
  18358. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18359. {
  18360. side: {
  18361. height: math.unit(10, "feet"),
  18362. weight: math.unit(800, "kg"),
  18363. name: "Side",
  18364. image: {
  18365. source: "./media/characters/venio-darcony/side.svg",
  18366. extra: 1373 / 1003,
  18367. bottom: 0.037
  18368. }
  18369. },
  18370. front: {
  18371. height: math.unit(19, "feet"),
  18372. weight: math.unit(800, "kg"),
  18373. name: "Front",
  18374. image: {
  18375. source: "./media/characters/venio-darcony/front.svg"
  18376. }
  18377. },
  18378. back: {
  18379. height: math.unit(19, "feet"),
  18380. weight: math.unit(800, "kg"),
  18381. name: "Back",
  18382. image: {
  18383. source: "./media/characters/venio-darcony/back.svg"
  18384. }
  18385. },
  18386. sideNsfw: {
  18387. height: math.unit(10, "feet"),
  18388. weight: math.unit(800, "kg"),
  18389. name: "Side (NSFW)",
  18390. image: {
  18391. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18392. extra: 1373 / 1003,
  18393. bottom: 0.037
  18394. }
  18395. },
  18396. frontNsfw: {
  18397. height: math.unit(19, "feet"),
  18398. weight: math.unit(800, "kg"),
  18399. name: "Front (NSFW)",
  18400. image: {
  18401. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18402. }
  18403. },
  18404. backNsfw: {
  18405. height: math.unit(19, "feet"),
  18406. weight: math.unit(800, "kg"),
  18407. name: "Back (NSFW)",
  18408. image: {
  18409. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18410. }
  18411. },
  18412. sideArmored: {
  18413. height: math.unit(10, "feet"),
  18414. weight: math.unit(800, "kg"),
  18415. name: "Side (Armored)",
  18416. image: {
  18417. source: "./media/characters/venio-darcony/side-armored.svg",
  18418. extra: 1373 / 1003,
  18419. bottom: 0.037
  18420. }
  18421. },
  18422. frontArmored: {
  18423. height: math.unit(19, "feet"),
  18424. weight: math.unit(900, "kg"),
  18425. name: "Front (Armored)",
  18426. image: {
  18427. source: "./media/characters/venio-darcony/front-armored.svg"
  18428. }
  18429. },
  18430. backArmored: {
  18431. height: math.unit(19, "feet"),
  18432. weight: math.unit(900, "kg"),
  18433. name: "Back (Armored)",
  18434. image: {
  18435. source: "./media/characters/venio-darcony/back-armored.svg"
  18436. }
  18437. },
  18438. sword: {
  18439. height: math.unit(10, "feet"),
  18440. weight: math.unit(50, "lb"),
  18441. name: "Sword",
  18442. image: {
  18443. source: "./media/characters/venio-darcony/sword.svg"
  18444. }
  18445. },
  18446. },
  18447. [
  18448. {
  18449. name: "Normal",
  18450. height: math.unit(10, "feet")
  18451. },
  18452. {
  18453. name: "Macro",
  18454. height: math.unit(130, "feet"),
  18455. default: true
  18456. },
  18457. {
  18458. name: "Macro+",
  18459. height: math.unit(240, "feet")
  18460. },
  18461. ]
  18462. ))
  18463. characterMakers.push(() => makeCharacter(
  18464. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18465. {
  18466. front: {
  18467. height: math.unit(6, "feet"),
  18468. weight: math.unit(150, "lb"),
  18469. name: "Front",
  18470. image: {
  18471. source: "./media/characters/veski/front.svg",
  18472. extra: 1299 / 1225,
  18473. bottom: 0.04
  18474. }
  18475. },
  18476. back: {
  18477. height: math.unit(6, "feet"),
  18478. weight: math.unit(150, "lb"),
  18479. name: "Back",
  18480. image: {
  18481. source: "./media/characters/veski/back.svg",
  18482. extra: 1299 / 1225,
  18483. bottom: 0.008
  18484. }
  18485. },
  18486. maw: {
  18487. height: math.unit(1.5 * 1.21, "feet"),
  18488. name: "Maw",
  18489. image: {
  18490. source: "./media/characters/veski/maw.svg"
  18491. }
  18492. },
  18493. },
  18494. [
  18495. {
  18496. name: "Macro",
  18497. height: math.unit(2, "km"),
  18498. default: true
  18499. },
  18500. ]
  18501. ))
  18502. characterMakers.push(() => makeCharacter(
  18503. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18504. {
  18505. front: {
  18506. height: math.unit(5 + 7 / 12, "feet"),
  18507. name: "Front",
  18508. image: {
  18509. source: "./media/characters/isabelle/front.svg",
  18510. extra: 2130 / 1976,
  18511. bottom: 0.05
  18512. }
  18513. },
  18514. },
  18515. [
  18516. {
  18517. name: "Supermicro",
  18518. height: math.unit(10, "micrometers")
  18519. },
  18520. {
  18521. name: "Micro",
  18522. height: math.unit(1, "inch")
  18523. },
  18524. {
  18525. name: "Tiny",
  18526. height: math.unit(5, "inches")
  18527. },
  18528. {
  18529. name: "Standard",
  18530. height: math.unit(5 + 7 / 12, "inches")
  18531. },
  18532. {
  18533. name: "Macro",
  18534. height: math.unit(80, "meters"),
  18535. default: true
  18536. },
  18537. {
  18538. name: "Megamacro",
  18539. height: math.unit(250, "meters")
  18540. },
  18541. {
  18542. name: "Gigamacro",
  18543. height: math.unit(5, "km")
  18544. },
  18545. {
  18546. name: "Cosmic",
  18547. height: math.unit(2.5e6, "miles")
  18548. },
  18549. ]
  18550. ))
  18551. characterMakers.push(() => makeCharacter(
  18552. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18553. {
  18554. front: {
  18555. height: math.unit(6, "feet"),
  18556. weight: math.unit(150, "lb"),
  18557. name: "Front",
  18558. image: {
  18559. source: "./media/characters/hanzo/front.svg",
  18560. extra: 374 / 344,
  18561. bottom: 0.02
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Normal",
  18568. height: math.unit(8, "feet"),
  18569. default: true
  18570. },
  18571. ]
  18572. ))
  18573. characterMakers.push(() => makeCharacter(
  18574. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18575. {
  18576. front: {
  18577. height: math.unit(7, "feet"),
  18578. weight: math.unit(130, "lb"),
  18579. name: "Front",
  18580. image: {
  18581. source: "./media/characters/anna/front.svg",
  18582. extra: 169 / 145,
  18583. bottom: 0.06
  18584. }
  18585. },
  18586. full: {
  18587. height: math.unit(4.96, "feet"),
  18588. weight: math.unit(220, "lb"),
  18589. name: "Full",
  18590. image: {
  18591. source: "./media/characters/anna/full.svg",
  18592. extra: 138 / 114,
  18593. bottom: 0.15
  18594. }
  18595. },
  18596. tongue: {
  18597. height: math.unit(2.53, "feet"),
  18598. name: "Tongue",
  18599. image: {
  18600. source: "./media/characters/anna/tongue.svg"
  18601. }
  18602. },
  18603. },
  18604. [
  18605. {
  18606. name: "Normal",
  18607. height: math.unit(7, "feet"),
  18608. default: true
  18609. },
  18610. ]
  18611. ))
  18612. characterMakers.push(() => makeCharacter(
  18613. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18614. {
  18615. front: {
  18616. height: math.unit(7 + 1/12, "feet"),
  18617. weight: math.unit(150, "lb"),
  18618. name: "Front",
  18619. image: {
  18620. source: "./media/characters/ian-corvid/front.svg",
  18621. extra: 621/591,
  18622. bottom: 14/635
  18623. }
  18624. },
  18625. back: {
  18626. height: math.unit(7 + 1/12, "feet"),
  18627. weight: math.unit(150, "lb"),
  18628. name: "Back",
  18629. image: {
  18630. source: "./media/characters/ian-corvid/back.svg",
  18631. extra: 621/600,
  18632. bottom: 10/631
  18633. }
  18634. },
  18635. stomping: {
  18636. height: math.unit(7 + 1/12, "feet"),
  18637. weight: math.unit(150, "lb"),
  18638. name: "Stomping",
  18639. image: {
  18640. source: "./media/characters/ian-corvid/stomping.svg",
  18641. extra: 309/291,
  18642. bottom: 7/316
  18643. }
  18644. },
  18645. tongue: {
  18646. height: math.unit(3.9, "feet"),
  18647. name: "Tongue",
  18648. image: {
  18649. source: "./media/characters/ian-corvid/tongue.svg"
  18650. }
  18651. },
  18652. beak: {
  18653. height: math.unit(0.9, "feet"),
  18654. name: "Beak",
  18655. image: {
  18656. source: "./media/characters/ian-corvid/beak.svg"
  18657. }
  18658. },
  18659. sitting: {
  18660. height: math.unit(7 / 1.8, "feet"),
  18661. weight: math.unit(150, "lb"),
  18662. name: "Sitting",
  18663. image: {
  18664. source: "./media/characters/ian-corvid/sitting.svg",
  18665. extra: 1400 / 1269,
  18666. bottom: 0.15
  18667. }
  18668. },
  18669. },
  18670. [
  18671. {
  18672. name: "Tiny Microw",
  18673. height: math.unit(1, "inch")
  18674. },
  18675. {
  18676. name: "Microw",
  18677. height: math.unit(6, "inches")
  18678. },
  18679. {
  18680. name: "Crow",
  18681. height: math.unit(7 + 1 / 12, "feet"),
  18682. default: true
  18683. },
  18684. {
  18685. name: "Macrow",
  18686. height: math.unit(176, "feet")
  18687. },
  18688. ]
  18689. ))
  18690. characterMakers.push(() => makeCharacter(
  18691. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18692. {
  18693. front: {
  18694. height: math.unit(5 + 7 / 12, "feet"),
  18695. weight: math.unit(147, "lb"),
  18696. name: "Front",
  18697. image: {
  18698. source: "./media/characters/natalie-kellon/front.svg",
  18699. extra: 1214 / 1141,
  18700. bottom: 0.02
  18701. }
  18702. },
  18703. },
  18704. [
  18705. {
  18706. name: "Micro",
  18707. height: math.unit(1 / 16, "inch")
  18708. },
  18709. {
  18710. name: "Tiny",
  18711. height: math.unit(4, "inches")
  18712. },
  18713. {
  18714. name: "Normal",
  18715. height: math.unit(5 + 7 / 12, "feet"),
  18716. default: true
  18717. },
  18718. {
  18719. name: "Amazon",
  18720. height: math.unit(12, "feet")
  18721. },
  18722. {
  18723. name: "Giantess",
  18724. height: math.unit(160, "meters")
  18725. },
  18726. {
  18727. name: "Titaness",
  18728. height: math.unit(800, "meters")
  18729. },
  18730. ]
  18731. ))
  18732. characterMakers.push(() => makeCharacter(
  18733. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18734. {
  18735. front: {
  18736. height: math.unit(6, "feet"),
  18737. weight: math.unit(150, "lb"),
  18738. name: "Front",
  18739. image: {
  18740. source: "./media/characters/alluria/front.svg",
  18741. extra: 806 / 738,
  18742. bottom: 0.01
  18743. }
  18744. },
  18745. side: {
  18746. height: math.unit(6, "feet"),
  18747. weight: math.unit(150, "lb"),
  18748. name: "Side",
  18749. image: {
  18750. source: "./media/characters/alluria/side.svg",
  18751. extra: 800 / 750,
  18752. }
  18753. },
  18754. back: {
  18755. height: math.unit(6, "feet"),
  18756. weight: math.unit(150, "lb"),
  18757. name: "Back",
  18758. image: {
  18759. source: "./media/characters/alluria/back.svg",
  18760. extra: 806 / 738,
  18761. }
  18762. },
  18763. frontMaid: {
  18764. height: math.unit(6, "feet"),
  18765. weight: math.unit(150, "lb"),
  18766. name: "Front (Maid)",
  18767. image: {
  18768. source: "./media/characters/alluria/front-maid.svg",
  18769. extra: 806 / 738,
  18770. bottom: 0.01
  18771. }
  18772. },
  18773. sideMaid: {
  18774. height: math.unit(6, "feet"),
  18775. weight: math.unit(150, "lb"),
  18776. name: "Side (Maid)",
  18777. image: {
  18778. source: "./media/characters/alluria/side-maid.svg",
  18779. extra: 800 / 750,
  18780. bottom: 0.005
  18781. }
  18782. },
  18783. backMaid: {
  18784. height: math.unit(6, "feet"),
  18785. weight: math.unit(150, "lb"),
  18786. name: "Back (Maid)",
  18787. image: {
  18788. source: "./media/characters/alluria/back-maid.svg",
  18789. extra: 806 / 738,
  18790. }
  18791. },
  18792. },
  18793. [
  18794. {
  18795. name: "Micro",
  18796. height: math.unit(6, "inches"),
  18797. default: true
  18798. },
  18799. ]
  18800. ))
  18801. characterMakers.push(() => makeCharacter(
  18802. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18803. {
  18804. front: {
  18805. height: math.unit(6, "feet"),
  18806. weight: math.unit(150, "lb"),
  18807. name: "Front",
  18808. image: {
  18809. source: "./media/characters/kyle/front.svg",
  18810. extra: 1069 / 962,
  18811. bottom: 77.228 / 1727.45
  18812. }
  18813. },
  18814. },
  18815. [
  18816. {
  18817. name: "Macro",
  18818. height: math.unit(150, "feet"),
  18819. default: true
  18820. },
  18821. ]
  18822. ))
  18823. characterMakers.push(() => makeCharacter(
  18824. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18825. {
  18826. front: {
  18827. height: math.unit(6, "feet"),
  18828. weight: math.unit(300, "lb"),
  18829. name: "Front",
  18830. image: {
  18831. source: "./media/characters/duncan/front.svg",
  18832. extra: 1650 / 1482,
  18833. bottom: 0.05
  18834. }
  18835. },
  18836. },
  18837. [
  18838. {
  18839. name: "Macro",
  18840. height: math.unit(100, "feet"),
  18841. default: true
  18842. },
  18843. ]
  18844. ))
  18845. characterMakers.push(() => makeCharacter(
  18846. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18847. {
  18848. front: {
  18849. height: math.unit(5 + 4 / 12, "feet"),
  18850. weight: math.unit(220, "lb"),
  18851. name: "Front",
  18852. image: {
  18853. source: "./media/characters/memory/front.svg",
  18854. extra: 3641 / 3545,
  18855. bottom: 0.03
  18856. }
  18857. },
  18858. back: {
  18859. height: math.unit(5 + 4 / 12, "feet"),
  18860. weight: math.unit(220, "lb"),
  18861. name: "Back",
  18862. image: {
  18863. source: "./media/characters/memory/back.svg",
  18864. extra: 3641 / 3545,
  18865. bottom: 0.025
  18866. }
  18867. },
  18868. frontSkirt: {
  18869. height: math.unit(5 + 4 / 12, "feet"),
  18870. weight: math.unit(220, "lb"),
  18871. name: "Front (Skirt)",
  18872. image: {
  18873. source: "./media/characters/memory/front-skirt.svg",
  18874. extra: 3641 / 3545,
  18875. bottom: 0.03
  18876. }
  18877. },
  18878. frontDress: {
  18879. height: math.unit(5 + 4 / 12, "feet"),
  18880. weight: math.unit(220, "lb"),
  18881. name: "Front (Dress)",
  18882. image: {
  18883. source: "./media/characters/memory/front-dress.svg",
  18884. extra: 3641 / 3545,
  18885. bottom: 0.03
  18886. }
  18887. },
  18888. },
  18889. [
  18890. {
  18891. name: "Micro",
  18892. height: math.unit(6, "inches"),
  18893. default: true
  18894. },
  18895. {
  18896. name: "Normal",
  18897. height: math.unit(5 + 4 / 12, "feet")
  18898. },
  18899. ]
  18900. ))
  18901. characterMakers.push(() => makeCharacter(
  18902. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18903. {
  18904. front: {
  18905. height: math.unit(4 + 11 / 12, "feet"),
  18906. weight: math.unit(100, "lb"),
  18907. name: "Front",
  18908. image: {
  18909. source: "./media/characters/luno/front.svg",
  18910. extra: 1535 / 1487,
  18911. bottom: 0.03
  18912. }
  18913. },
  18914. },
  18915. [
  18916. {
  18917. name: "Micro",
  18918. height: math.unit(3, "inches")
  18919. },
  18920. {
  18921. name: "Normal",
  18922. height: math.unit(4 + 11 / 12, "feet"),
  18923. default: true
  18924. },
  18925. {
  18926. name: "Macro",
  18927. height: math.unit(300, "feet")
  18928. },
  18929. {
  18930. name: "Megamacro",
  18931. height: math.unit(700, "miles")
  18932. },
  18933. ]
  18934. ))
  18935. characterMakers.push(() => makeCharacter(
  18936. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18937. {
  18938. front: {
  18939. height: math.unit(6 + 2 / 12, "feet"),
  18940. weight: math.unit(170, "lb"),
  18941. name: "Front",
  18942. image: {
  18943. source: "./media/characters/jamesy/front.svg",
  18944. extra: 440 / 382,
  18945. bottom: 0.005
  18946. }
  18947. },
  18948. },
  18949. [
  18950. {
  18951. name: "Micro",
  18952. height: math.unit(3, "inches")
  18953. },
  18954. {
  18955. name: "Normal",
  18956. height: math.unit(6 + 2 / 12, "feet"),
  18957. default: true
  18958. },
  18959. {
  18960. name: "Macro",
  18961. height: math.unit(300, "feet")
  18962. },
  18963. {
  18964. name: "Megamacro",
  18965. height: math.unit(700, "miles")
  18966. },
  18967. ]
  18968. ))
  18969. characterMakers.push(() => makeCharacter(
  18970. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18971. {
  18972. front: {
  18973. height: math.unit(6, "feet"),
  18974. weight: math.unit(160, "lb"),
  18975. name: "Front",
  18976. image: {
  18977. source: "./media/characters/mark/front.svg",
  18978. extra: 3300 / 3100,
  18979. bottom: 136.42 / 3440.47
  18980. }
  18981. },
  18982. },
  18983. [
  18984. {
  18985. name: "Macro",
  18986. height: math.unit(120, "meters")
  18987. },
  18988. {
  18989. name: "Bigger Macro",
  18990. height: math.unit(350, "meters")
  18991. },
  18992. {
  18993. name: "Megamacro",
  18994. height: math.unit(8, "km"),
  18995. default: true
  18996. },
  18997. {
  18998. name: "Continental",
  18999. height: math.unit(4550, "km")
  19000. },
  19001. {
  19002. name: "Planetary",
  19003. height: math.unit(65000, "km")
  19004. },
  19005. ]
  19006. ))
  19007. characterMakers.push(() => makeCharacter(
  19008. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  19009. {
  19010. front: {
  19011. height: math.unit(6, "feet"),
  19012. weight: math.unit(400, "lb"),
  19013. name: "Front",
  19014. image: {
  19015. source: "./media/characters/mac/front.svg",
  19016. extra: 1048 / 987.7,
  19017. bottom: 60 / 1107.6,
  19018. }
  19019. },
  19020. },
  19021. [
  19022. {
  19023. name: "Macro",
  19024. height: math.unit(500, "feet"),
  19025. default: true
  19026. },
  19027. ]
  19028. ))
  19029. characterMakers.push(() => makeCharacter(
  19030. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19031. {
  19032. front: {
  19033. height: math.unit(5 + 2 / 12, "feet"),
  19034. weight: math.unit(190, "lb"),
  19035. name: "Front",
  19036. image: {
  19037. source: "./media/characters/bari/front.svg",
  19038. extra: 3156 / 2880,
  19039. bottom: 0.03
  19040. }
  19041. },
  19042. back: {
  19043. height: math.unit(5 + 2 / 12, "feet"),
  19044. weight: math.unit(190, "lb"),
  19045. name: "Back",
  19046. image: {
  19047. source: "./media/characters/bari/back.svg",
  19048. extra: 3260 / 2834,
  19049. bottom: 0.025
  19050. }
  19051. },
  19052. frontPlush: {
  19053. height: math.unit(5 + 2 / 12, "feet"),
  19054. weight: math.unit(190, "lb"),
  19055. name: "Front (Plush)",
  19056. image: {
  19057. source: "./media/characters/bari/front-plush.svg",
  19058. extra: 1112 / 1061,
  19059. bottom: 0.002
  19060. }
  19061. },
  19062. },
  19063. [
  19064. {
  19065. name: "Micro",
  19066. height: math.unit(3, "inches")
  19067. },
  19068. {
  19069. name: "Normal",
  19070. height: math.unit(5 + 2 / 12, "feet"),
  19071. default: true
  19072. },
  19073. {
  19074. name: "Macro",
  19075. height: math.unit(20, "feet")
  19076. },
  19077. ]
  19078. ))
  19079. characterMakers.push(() => makeCharacter(
  19080. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19081. {
  19082. front: {
  19083. height: math.unit(6 + 1 / 12, "feet"),
  19084. weight: math.unit(275, "lb"),
  19085. name: "Front",
  19086. image: {
  19087. source: "./media/characters/hunter-misha-raven/front.svg"
  19088. }
  19089. },
  19090. },
  19091. [
  19092. {
  19093. name: "Mortal",
  19094. height: math.unit(6 + 1 / 12, "feet")
  19095. },
  19096. {
  19097. name: "Divine",
  19098. height: math.unit(1.12134e34, "parsecs"),
  19099. default: true
  19100. },
  19101. ]
  19102. ))
  19103. characterMakers.push(() => makeCharacter(
  19104. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19105. {
  19106. front: {
  19107. height: math.unit(6 + 3 / 12, "feet"),
  19108. weight: math.unit(220, "lb"),
  19109. name: "Front",
  19110. image: {
  19111. source: "./media/characters/max-calore/front.svg",
  19112. extra: 1700 / 1648,
  19113. bottom: 0.01
  19114. }
  19115. },
  19116. back: {
  19117. height: math.unit(6 + 3 / 12, "feet"),
  19118. weight: math.unit(220, "lb"),
  19119. name: "Back",
  19120. image: {
  19121. source: "./media/characters/max-calore/back.svg",
  19122. extra: 1700 / 1648,
  19123. bottom: 0.01
  19124. }
  19125. },
  19126. },
  19127. [
  19128. {
  19129. name: "Normal",
  19130. height: math.unit(6 + 3 / 12, "feet"),
  19131. default: true
  19132. },
  19133. ]
  19134. ))
  19135. characterMakers.push(() => makeCharacter(
  19136. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19137. {
  19138. side: {
  19139. height: math.unit(2 + 8 / 12, "feet"),
  19140. weight: math.unit(99, "lb"),
  19141. name: "Side",
  19142. image: {
  19143. source: "./media/characters/aspen/side.svg",
  19144. extra: 152 / 138,
  19145. bottom: 0.032
  19146. }
  19147. },
  19148. },
  19149. [
  19150. {
  19151. name: "Normal",
  19152. height: math.unit(2 + 8 / 12, "feet"),
  19153. default: true
  19154. },
  19155. ]
  19156. ))
  19157. characterMakers.push(() => makeCharacter(
  19158. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19159. {
  19160. side: {
  19161. height: math.unit(3 + 2 / 12, "feet"),
  19162. weight: math.unit(224, "lb"),
  19163. name: "Side",
  19164. image: {
  19165. source: "./media/characters/sheila-feral-wolf/side.svg",
  19166. extra: 179 / 166,
  19167. bottom: 0.03
  19168. }
  19169. },
  19170. },
  19171. [
  19172. {
  19173. name: "Normal",
  19174. height: math.unit(3 + 2 / 12, "feet"),
  19175. default: true
  19176. },
  19177. ]
  19178. ))
  19179. characterMakers.push(() => makeCharacter(
  19180. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19181. {
  19182. side: {
  19183. height: math.unit(1 + 9 / 12, "feet"),
  19184. weight: math.unit(38, "lb"),
  19185. name: "Side",
  19186. image: {
  19187. source: "./media/characters/michelle/side.svg",
  19188. extra: 147 / 136.7,
  19189. bottom: 0.03
  19190. }
  19191. },
  19192. },
  19193. [
  19194. {
  19195. name: "Normal",
  19196. height: math.unit(1 + 9 / 12, "feet"),
  19197. default: true
  19198. },
  19199. ]
  19200. ))
  19201. characterMakers.push(() => makeCharacter(
  19202. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19203. {
  19204. front: {
  19205. height: math.unit(1.54, "feet"),
  19206. weight: math.unit(50, "lb"),
  19207. name: "Front",
  19208. image: {
  19209. source: "./media/characters/nino/front.svg"
  19210. }
  19211. },
  19212. },
  19213. [
  19214. {
  19215. name: "Normal",
  19216. height: math.unit(1.54, "feet"),
  19217. default: true
  19218. },
  19219. ]
  19220. ))
  19221. characterMakers.push(() => makeCharacter(
  19222. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19223. {
  19224. front: {
  19225. height: math.unit(1.49, "feet"),
  19226. weight: math.unit(45, "lb"),
  19227. name: "Front",
  19228. image: {
  19229. source: "./media/characters/viola/front.svg"
  19230. }
  19231. },
  19232. },
  19233. [
  19234. {
  19235. name: "Normal",
  19236. height: math.unit(1.49, "feet"),
  19237. default: true
  19238. },
  19239. ]
  19240. ))
  19241. characterMakers.push(() => makeCharacter(
  19242. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19243. {
  19244. front: {
  19245. height: math.unit(6 + 5 / 12, "feet"),
  19246. weight: math.unit(580, "lb"),
  19247. name: "Front",
  19248. image: {
  19249. source: "./media/characters/atlas/front.svg",
  19250. extra: 298.5 / 290,
  19251. bottom: 0.015
  19252. }
  19253. },
  19254. },
  19255. [
  19256. {
  19257. name: "Normal",
  19258. height: math.unit(6 + 5 / 12, "feet"),
  19259. default: true
  19260. },
  19261. ]
  19262. ))
  19263. characterMakers.push(() => makeCharacter(
  19264. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19265. {
  19266. side: {
  19267. height: math.unit(15.6, "inches"),
  19268. weight: math.unit(10, "lb"),
  19269. name: "Side",
  19270. image: {
  19271. source: "./media/characters/davy/side.svg",
  19272. extra: 200 / 170,
  19273. bottom: 0.01
  19274. }
  19275. },
  19276. },
  19277. [
  19278. {
  19279. name: "Normal",
  19280. height: math.unit(15.6, "inches"),
  19281. default: true
  19282. },
  19283. ]
  19284. ))
  19285. characterMakers.push(() => makeCharacter(
  19286. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19287. {
  19288. side: {
  19289. height: math.unit(4 + 8 / 12, "feet"),
  19290. weight: math.unit(166, "lb"),
  19291. name: "Side",
  19292. image: {
  19293. source: "./media/characters/fiona/side.svg",
  19294. extra: 232 / 220,
  19295. bottom: 0.03
  19296. }
  19297. },
  19298. },
  19299. [
  19300. {
  19301. name: "Normal",
  19302. height: math.unit(4 + 8 / 12, "feet"),
  19303. default: true
  19304. },
  19305. ]
  19306. ))
  19307. characterMakers.push(() => makeCharacter(
  19308. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19309. {
  19310. front: {
  19311. height: math.unit(26, "inches"),
  19312. weight: math.unit(35, "lb"),
  19313. name: "Front",
  19314. image: {
  19315. source: "./media/characters/lyla/front.svg",
  19316. bottom: 0.1
  19317. }
  19318. },
  19319. },
  19320. [
  19321. {
  19322. name: "Normal",
  19323. height: math.unit(3, "feet"),
  19324. default: true
  19325. },
  19326. ]
  19327. ))
  19328. characterMakers.push(() => makeCharacter(
  19329. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19330. {
  19331. side: {
  19332. height: math.unit(1.8, "feet"),
  19333. weight: math.unit(44, "lb"),
  19334. name: "Side",
  19335. image: {
  19336. source: "./media/characters/perseus/side.svg",
  19337. bottom: 0.21
  19338. }
  19339. },
  19340. },
  19341. [
  19342. {
  19343. name: "Normal",
  19344. height: math.unit(1.8, "feet"),
  19345. default: true
  19346. },
  19347. ]
  19348. ))
  19349. characterMakers.push(() => makeCharacter(
  19350. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19351. {
  19352. side: {
  19353. height: math.unit(4 + 2 / 12, "feet"),
  19354. weight: math.unit(20, "lb"),
  19355. name: "Side",
  19356. image: {
  19357. source: "./media/characters/remus/side.svg"
  19358. }
  19359. },
  19360. },
  19361. [
  19362. {
  19363. name: "Normal",
  19364. height: math.unit(4 + 2 / 12, "feet"),
  19365. default: true
  19366. },
  19367. ]
  19368. ))
  19369. characterMakers.push(() => makeCharacter(
  19370. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19371. {
  19372. front: {
  19373. height: math.unit(4 + 11 / 12, "feet"),
  19374. weight: math.unit(114, "lb"),
  19375. name: "Front",
  19376. image: {
  19377. source: "./media/characters/raf/front.svg",
  19378. extra: 1504/1339,
  19379. bottom: 26/1530
  19380. }
  19381. },
  19382. side: {
  19383. height: math.unit(4 + 11 / 12, "feet"),
  19384. weight: math.unit(114, "lb"),
  19385. name: "Side",
  19386. image: {
  19387. source: "./media/characters/raf/side.svg",
  19388. extra: 1466/1316,
  19389. bottom: 29/1495
  19390. }
  19391. },
  19392. paw: {
  19393. height: math.unit(1.45, "feet"),
  19394. name: "Paw",
  19395. image: {
  19396. source: "./media/characters/raf/paw.svg"
  19397. },
  19398. extraAttributes: {
  19399. "toeSize": {
  19400. name: "Toe Size",
  19401. power: 2,
  19402. type: "area",
  19403. base: math.unit(0.004, "m^2")
  19404. },
  19405. "padSize": {
  19406. name: "Pad Size",
  19407. power: 2,
  19408. type: "area",
  19409. base: math.unit(0.04, "m^2")
  19410. },
  19411. "footSize": {
  19412. name: "Foot Size",
  19413. power: 2,
  19414. type: "area",
  19415. base: math.unit(0.08, "m^2")
  19416. },
  19417. }
  19418. },
  19419. },
  19420. [
  19421. {
  19422. name: "Micro",
  19423. height: math.unit(2, "inches")
  19424. },
  19425. {
  19426. name: "Normal",
  19427. height: math.unit(4 + 11 / 12, "feet"),
  19428. default: true
  19429. },
  19430. {
  19431. name: "Macro",
  19432. height: math.unit(70, "feet")
  19433. },
  19434. ]
  19435. ))
  19436. characterMakers.push(() => makeCharacter(
  19437. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19438. {
  19439. front: {
  19440. height: math.unit(1.5, "meters"),
  19441. weight: math.unit(68, "kg"),
  19442. name: "Front",
  19443. image: {
  19444. source: "./media/characters/liam-einarr/front.svg",
  19445. extra: 2822 / 2666
  19446. }
  19447. },
  19448. back: {
  19449. height: math.unit(1.5, "meters"),
  19450. weight: math.unit(68, "kg"),
  19451. name: "Back",
  19452. image: {
  19453. source: "./media/characters/liam-einarr/back.svg",
  19454. extra: 2822 / 2666,
  19455. bottom: 0.015
  19456. }
  19457. },
  19458. },
  19459. [
  19460. {
  19461. name: "Normal",
  19462. height: math.unit(1.5, "meters"),
  19463. default: true
  19464. },
  19465. {
  19466. name: "Macro",
  19467. height: math.unit(150, "meters")
  19468. },
  19469. {
  19470. name: "Megamacro",
  19471. height: math.unit(35, "km")
  19472. },
  19473. ]
  19474. ))
  19475. characterMakers.push(() => makeCharacter(
  19476. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19477. {
  19478. front: {
  19479. height: math.unit(6, "feet"),
  19480. weight: math.unit(75, "kg"),
  19481. name: "Front",
  19482. image: {
  19483. source: "./media/characters/linda/front.svg",
  19484. extra: 930 / 874,
  19485. bottom: 0.004
  19486. }
  19487. },
  19488. },
  19489. [
  19490. {
  19491. name: "Normal",
  19492. height: math.unit(6, "feet"),
  19493. default: true
  19494. },
  19495. ]
  19496. ))
  19497. characterMakers.push(() => makeCharacter(
  19498. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19499. {
  19500. front: {
  19501. height: math.unit(6 + 8 / 12, "feet"),
  19502. weight: math.unit(220, "lb"),
  19503. name: "Front",
  19504. image: {
  19505. source: "./media/characters/caylex/front.svg",
  19506. extra: 821 / 772,
  19507. bottom: 0.07
  19508. }
  19509. },
  19510. back: {
  19511. height: math.unit(6 + 8 / 12, "feet"),
  19512. weight: math.unit(220, "lb"),
  19513. name: "Back",
  19514. image: {
  19515. source: "./media/characters/caylex/back.svg",
  19516. extra: 821 / 772,
  19517. bottom: 0.022
  19518. }
  19519. },
  19520. hand: {
  19521. height: math.unit(1.25, "feet"),
  19522. name: "Hand",
  19523. image: {
  19524. source: "./media/characters/caylex/hand.svg"
  19525. }
  19526. },
  19527. foot: {
  19528. height: math.unit(1.6, "feet"),
  19529. name: "Foot",
  19530. image: {
  19531. source: "./media/characters/caylex/foot.svg"
  19532. }
  19533. },
  19534. armored: {
  19535. height: math.unit(6 + 8 / 12, "feet"),
  19536. weight: math.unit(250, "lb"),
  19537. name: "Armored",
  19538. image: {
  19539. source: "./media/characters/caylex/armored.svg",
  19540. extra: 1420 / 1310,
  19541. bottom: 0.045
  19542. }
  19543. },
  19544. },
  19545. [
  19546. {
  19547. name: "Normal",
  19548. height: math.unit(6 + 8 / 12, "feet"),
  19549. default: true
  19550. },
  19551. {
  19552. name: "Normal+",
  19553. height: math.unit(12, "feet")
  19554. },
  19555. ]
  19556. ))
  19557. characterMakers.push(() => makeCharacter(
  19558. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19559. {
  19560. front: {
  19561. height: math.unit(7 + 6 / 12, "feet"),
  19562. weight: math.unit(288, "lb"),
  19563. name: "Front",
  19564. image: {
  19565. source: "./media/characters/alana/front.svg",
  19566. extra: 679 / 653,
  19567. bottom: 22.5 / 701
  19568. }
  19569. },
  19570. },
  19571. [
  19572. {
  19573. name: "Normal",
  19574. height: math.unit(7 + 6 / 12, "feet")
  19575. },
  19576. {
  19577. name: "Large",
  19578. height: math.unit(50, "feet")
  19579. },
  19580. {
  19581. name: "Macro",
  19582. height: math.unit(100, "feet"),
  19583. default: true
  19584. },
  19585. {
  19586. name: "Macro+",
  19587. height: math.unit(200, "feet")
  19588. },
  19589. ]
  19590. ))
  19591. characterMakers.push(() => makeCharacter(
  19592. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19593. {
  19594. front: {
  19595. height: math.unit(6 + 1 / 12, "feet"),
  19596. weight: math.unit(210, "lb"),
  19597. name: "Front",
  19598. image: {
  19599. source: "./media/characters/hasani/front.svg",
  19600. extra: 244 / 232,
  19601. bottom: 0.01
  19602. }
  19603. },
  19604. back: {
  19605. height: math.unit(6 + 1 / 12, "feet"),
  19606. weight: math.unit(210, "lb"),
  19607. name: "Back",
  19608. image: {
  19609. source: "./media/characters/hasani/back.svg",
  19610. extra: 244 / 232,
  19611. bottom: 0.01
  19612. }
  19613. },
  19614. },
  19615. [
  19616. {
  19617. name: "Normal",
  19618. height: math.unit(6 + 1 / 12, "feet")
  19619. },
  19620. {
  19621. name: "Macro",
  19622. height: math.unit(175, "feet"),
  19623. default: true
  19624. },
  19625. ]
  19626. ))
  19627. characterMakers.push(() => makeCharacter(
  19628. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19629. {
  19630. front: {
  19631. height: math.unit(1.82, "meters"),
  19632. weight: math.unit(140, "lb"),
  19633. name: "Front",
  19634. image: {
  19635. source: "./media/characters/nita/front.svg",
  19636. extra: 2473 / 2363,
  19637. bottom: 0.01
  19638. }
  19639. },
  19640. },
  19641. [
  19642. {
  19643. name: "Normal",
  19644. height: math.unit(1.82, "m")
  19645. },
  19646. {
  19647. name: "Macro",
  19648. height: math.unit(300, "m")
  19649. },
  19650. {
  19651. name: "Mistake Canon",
  19652. height: math.unit(0.5, "miles"),
  19653. default: true
  19654. },
  19655. {
  19656. name: "Big Mistake",
  19657. height: math.unit(13, "miles")
  19658. },
  19659. {
  19660. name: "Playing God",
  19661. height: math.unit(2450, "miles")
  19662. },
  19663. ]
  19664. ))
  19665. characterMakers.push(() => makeCharacter(
  19666. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19667. {
  19668. front: {
  19669. height: math.unit(4, "feet"),
  19670. weight: math.unit(120, "lb"),
  19671. name: "Front",
  19672. image: {
  19673. source: "./media/characters/shiriko/front.svg",
  19674. extra: 970/934,
  19675. bottom: 5/975
  19676. }
  19677. },
  19678. },
  19679. [
  19680. {
  19681. name: "Normal",
  19682. height: math.unit(4, "feet"),
  19683. default: true
  19684. },
  19685. ]
  19686. ))
  19687. characterMakers.push(() => makeCharacter(
  19688. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19689. {
  19690. front: {
  19691. height: math.unit(6, "feet"),
  19692. name: "front",
  19693. image: {
  19694. source: "./media/characters/deja/front.svg",
  19695. extra: 926 / 840,
  19696. bottom: 0.07
  19697. }
  19698. },
  19699. },
  19700. [
  19701. {
  19702. name: "Planck Length",
  19703. height: math.unit(1.6e-35, "meters")
  19704. },
  19705. {
  19706. name: "Normal",
  19707. height: math.unit(30.48, "meters"),
  19708. default: true
  19709. },
  19710. {
  19711. name: "Universal",
  19712. height: math.unit(8.8e26, "meters")
  19713. },
  19714. ]
  19715. ))
  19716. characterMakers.push(() => makeCharacter(
  19717. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19718. {
  19719. side: {
  19720. height: math.unit(8, "feet"),
  19721. weight: math.unit(6300, "lb"),
  19722. name: "Side",
  19723. image: {
  19724. source: "./media/characters/anima/side.svg",
  19725. bottom: 0.035
  19726. }
  19727. },
  19728. },
  19729. [
  19730. {
  19731. name: "Normal",
  19732. height: math.unit(8, "feet"),
  19733. default: true
  19734. },
  19735. ]
  19736. ))
  19737. characterMakers.push(() => makeCharacter(
  19738. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19739. {
  19740. front: {
  19741. height: math.unit(8, "feet"),
  19742. weight: math.unit(350, "lb"),
  19743. name: "Front",
  19744. image: {
  19745. source: "./media/characters/bianca/front.svg",
  19746. extra: 234 / 225,
  19747. bottom: 0.03
  19748. }
  19749. },
  19750. },
  19751. [
  19752. {
  19753. name: "Normal",
  19754. height: math.unit(8, "feet"),
  19755. default: true
  19756. },
  19757. ]
  19758. ))
  19759. characterMakers.push(() => makeCharacter(
  19760. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19761. {
  19762. front: {
  19763. height: math.unit(11 + 5/12, "feet"),
  19764. weight: math.unit(1200, "lb"),
  19765. name: "Front",
  19766. image: {
  19767. source: "./media/characters/adinia/front.svg",
  19768. extra: 1767/1641,
  19769. bottom: 44/1811
  19770. },
  19771. extraAttributes: {
  19772. "energyIntake": {
  19773. name: "Energy Intake",
  19774. power: 3,
  19775. type: "energy",
  19776. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19777. },
  19778. }
  19779. },
  19780. back: {
  19781. height: math.unit(11 + 5/12, "feet"),
  19782. weight: math.unit(1200, "lb"),
  19783. name: "Back",
  19784. image: {
  19785. source: "./media/characters/adinia/back.svg",
  19786. extra: 1834/1684,
  19787. bottom: 14/1848
  19788. },
  19789. extraAttributes: {
  19790. "energyIntake": {
  19791. name: "Energy Intake",
  19792. power: 3,
  19793. type: "energy",
  19794. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19795. },
  19796. }
  19797. },
  19798. maw: {
  19799. height: math.unit(3.79, "feet"),
  19800. name: "Maw",
  19801. image: {
  19802. source: "./media/characters/adinia/maw.svg"
  19803. }
  19804. },
  19805. rump: {
  19806. height: math.unit(4.6, "feet"),
  19807. name: "Rump",
  19808. image: {
  19809. source: "./media/characters/adinia/rump.svg"
  19810. }
  19811. },
  19812. },
  19813. [
  19814. {
  19815. name: "Normal",
  19816. height: math.unit(11 + 5 / 12, "feet"),
  19817. default: true
  19818. },
  19819. ]
  19820. ))
  19821. characterMakers.push(() => makeCharacter(
  19822. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19823. {
  19824. front: {
  19825. height: math.unit(3, "meters"),
  19826. weight: math.unit(200, "kg"),
  19827. name: "Front",
  19828. image: {
  19829. source: "./media/characters/lykasa/front.svg",
  19830. extra: 1076 / 976,
  19831. bottom: 0.06
  19832. }
  19833. },
  19834. },
  19835. [
  19836. {
  19837. name: "Normal",
  19838. height: math.unit(3, "meters")
  19839. },
  19840. {
  19841. name: "Kaiju",
  19842. height: math.unit(120, "meters"),
  19843. default: true
  19844. },
  19845. {
  19846. name: "Mega Kaiju",
  19847. height: math.unit(240, "km")
  19848. },
  19849. {
  19850. name: "Giga Kaiju",
  19851. height: math.unit(400, "megameters")
  19852. },
  19853. {
  19854. name: "Tera Kaiju",
  19855. height: math.unit(800, "gigameters")
  19856. },
  19857. {
  19858. name: "Kaiju Dragon Goddess",
  19859. height: math.unit(26, "zettaparsecs")
  19860. },
  19861. ]
  19862. ))
  19863. characterMakers.push(() => makeCharacter(
  19864. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19865. {
  19866. side: {
  19867. height: math.unit(283 / 124 * 6, "feet"),
  19868. weight: math.unit(35000, "lb"),
  19869. name: "Side",
  19870. image: {
  19871. source: "./media/characters/malfaren/side.svg",
  19872. extra: 1310/529,
  19873. bottom: 24/1334
  19874. }
  19875. },
  19876. front: {
  19877. height: math.unit(22.36, "feet"),
  19878. weight: math.unit(35000, "lb"),
  19879. name: "Front",
  19880. image: {
  19881. source: "./media/characters/malfaren/front.svg",
  19882. extra: 1237/1115,
  19883. bottom: 32/1269
  19884. }
  19885. },
  19886. maw: {
  19887. height: math.unit(6.9, "feet"),
  19888. name: "Maw",
  19889. image: {
  19890. source: "./media/characters/malfaren/maw.svg"
  19891. }
  19892. },
  19893. dick: {
  19894. height: math.unit(6.19, "feet"),
  19895. name: "Dick",
  19896. image: {
  19897. source: "./media/characters/malfaren/dick.svg"
  19898. }
  19899. },
  19900. eye: {
  19901. height: math.unit(0.69, "feet"),
  19902. name: "Eye",
  19903. image: {
  19904. source: "./media/characters/malfaren/eye.svg"
  19905. }
  19906. },
  19907. },
  19908. [
  19909. {
  19910. name: "Big",
  19911. height: math.unit(283 / 162 * 6, "feet"),
  19912. },
  19913. {
  19914. name: "Bigger",
  19915. height: math.unit(283 / 124 * 6, "feet")
  19916. },
  19917. {
  19918. name: "Massive",
  19919. height: math.unit(283 / 92 * 6, "feet"),
  19920. default: true
  19921. },
  19922. {
  19923. name: "👀💦",
  19924. height: math.unit(283 / 73 * 6, "feet"),
  19925. },
  19926. ]
  19927. ))
  19928. characterMakers.push(() => makeCharacter(
  19929. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19930. {
  19931. front: {
  19932. height: math.unit(1.7, "m"),
  19933. weight: math.unit(70, "kg"),
  19934. name: "Front",
  19935. image: {
  19936. source: "./media/characters/kernel/front.svg",
  19937. extra: 1960/1821,
  19938. bottom: 17/1977
  19939. }
  19940. },
  19941. },
  19942. [
  19943. {
  19944. name: "Nano",
  19945. height: math.unit(17, "micrometers")
  19946. },
  19947. {
  19948. name: "Micro",
  19949. height: math.unit(1.7, "mm")
  19950. },
  19951. {
  19952. name: "Small",
  19953. height: math.unit(1.7, "cm")
  19954. },
  19955. {
  19956. name: "Normal",
  19957. height: math.unit(1.7, "m"),
  19958. default: true
  19959. },
  19960. ]
  19961. ))
  19962. characterMakers.push(() => makeCharacter(
  19963. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19964. {
  19965. front: {
  19966. height: math.unit(1.75, "meters"),
  19967. weight: math.unit(65, "kg"),
  19968. name: "Front",
  19969. image: {
  19970. source: "./media/characters/jayne-folest/front.svg",
  19971. extra: 2115 / 2007,
  19972. bottom: 0.02
  19973. }
  19974. },
  19975. back: {
  19976. height: math.unit(1.75, "meters"),
  19977. weight: math.unit(65, "kg"),
  19978. name: "Back",
  19979. image: {
  19980. source: "./media/characters/jayne-folest/back.svg",
  19981. extra: 2115 / 2007,
  19982. bottom: 0.005
  19983. }
  19984. },
  19985. frontClothed: {
  19986. height: math.unit(1.75, "meters"),
  19987. weight: math.unit(65, "kg"),
  19988. name: "Front (Clothed)",
  19989. image: {
  19990. source: "./media/characters/jayne-folest/front-clothed.svg",
  19991. extra: 2115 / 2007,
  19992. bottom: 0.035
  19993. }
  19994. },
  19995. hand: {
  19996. height: math.unit(1 / 1.260, "feet"),
  19997. name: "Hand",
  19998. image: {
  19999. source: "./media/characters/jayne-folest/hand.svg"
  20000. }
  20001. },
  20002. foot: {
  20003. height: math.unit(1 / 0.918, "feet"),
  20004. name: "Foot",
  20005. image: {
  20006. source: "./media/characters/jayne-folest/foot.svg"
  20007. }
  20008. },
  20009. },
  20010. [
  20011. {
  20012. name: "Micro",
  20013. height: math.unit(4, "cm")
  20014. },
  20015. {
  20016. name: "Normal",
  20017. height: math.unit(1.75, "meters")
  20018. },
  20019. {
  20020. name: "Macro",
  20021. height: math.unit(47.5, "meters"),
  20022. default: true
  20023. },
  20024. ]
  20025. ))
  20026. characterMakers.push(() => makeCharacter(
  20027. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  20028. {
  20029. front: {
  20030. height: math.unit(180, "cm"),
  20031. weight: math.unit(70, "kg"),
  20032. name: "Front",
  20033. image: {
  20034. source: "./media/characters/algier/front.svg",
  20035. extra: 596 / 572,
  20036. bottom: 0.04
  20037. }
  20038. },
  20039. back: {
  20040. height: math.unit(180, "cm"),
  20041. weight: math.unit(70, "kg"),
  20042. name: "Back",
  20043. image: {
  20044. source: "./media/characters/algier/back.svg",
  20045. extra: 596 / 572,
  20046. bottom: 0.025
  20047. }
  20048. },
  20049. frontdressed: {
  20050. height: math.unit(180, "cm"),
  20051. weight: math.unit(150, "kg"),
  20052. name: "Front-dressed",
  20053. image: {
  20054. source: "./media/characters/algier/front-dressed.svg",
  20055. extra: 596 / 572,
  20056. bottom: 0.038
  20057. }
  20058. },
  20059. },
  20060. [
  20061. {
  20062. name: "Micro",
  20063. height: math.unit(5, "cm")
  20064. },
  20065. {
  20066. name: "Normal",
  20067. height: math.unit(180, "cm"),
  20068. default: true
  20069. },
  20070. {
  20071. name: "Macro",
  20072. height: math.unit(64, "m")
  20073. },
  20074. ]
  20075. ))
  20076. characterMakers.push(() => makeCharacter(
  20077. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20078. {
  20079. upright: {
  20080. height: math.unit(7, "feet"),
  20081. weight: math.unit(300, "lb"),
  20082. name: "Upright",
  20083. image: {
  20084. source: "./media/characters/pretzel/upright.svg",
  20085. extra: 534 / 522,
  20086. bottom: 0.065
  20087. }
  20088. },
  20089. sprawling: {
  20090. height: math.unit(3.75, "feet"),
  20091. weight: math.unit(300, "lb"),
  20092. name: "Sprawling",
  20093. image: {
  20094. source: "./media/characters/pretzel/sprawling.svg",
  20095. extra: 314 / 281,
  20096. bottom: 0.1
  20097. }
  20098. },
  20099. tongue: {
  20100. height: math.unit(2, "feet"),
  20101. name: "Tongue",
  20102. image: {
  20103. source: "./media/characters/pretzel/tongue.svg"
  20104. }
  20105. },
  20106. },
  20107. [
  20108. {
  20109. name: "Normal",
  20110. height: math.unit(7, "feet"),
  20111. default: true
  20112. },
  20113. {
  20114. name: "Oversized",
  20115. height: math.unit(15, "feet")
  20116. },
  20117. {
  20118. name: "Huge",
  20119. height: math.unit(30, "feet")
  20120. },
  20121. {
  20122. name: "Macro",
  20123. height: math.unit(250, "feet")
  20124. },
  20125. ]
  20126. ))
  20127. characterMakers.push(() => makeCharacter(
  20128. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20129. {
  20130. sideFront: {
  20131. height: math.unit(5 + 2 / 12, "feet"),
  20132. weight: math.unit(120, "lb"),
  20133. name: "Front Side",
  20134. image: {
  20135. source: "./media/characters/roxi/side-front.svg",
  20136. extra: 2924 / 2717,
  20137. bottom: 0.08
  20138. }
  20139. },
  20140. sideBack: {
  20141. height: math.unit(5 + 2 / 12, "feet"),
  20142. weight: math.unit(120, "lb"),
  20143. name: "Back Side",
  20144. image: {
  20145. source: "./media/characters/roxi/side-back.svg",
  20146. extra: 2904 / 2693,
  20147. bottom: 0.06
  20148. }
  20149. },
  20150. front: {
  20151. height: math.unit(5 + 2 / 12, "feet"),
  20152. weight: math.unit(120, "lb"),
  20153. name: "Front",
  20154. image: {
  20155. source: "./media/characters/roxi/front.svg",
  20156. extra: 2028 / 1907,
  20157. bottom: 0.01
  20158. }
  20159. },
  20160. frontAlt: {
  20161. height: math.unit(5 + 2 / 12, "feet"),
  20162. weight: math.unit(120, "lb"),
  20163. name: "Front (Alt)",
  20164. image: {
  20165. source: "./media/characters/roxi/front-alt.svg",
  20166. extra: 1828 / 1798,
  20167. bottom: 0.01
  20168. }
  20169. },
  20170. sitting: {
  20171. height: math.unit(2.8, "feet"),
  20172. weight: math.unit(120, "lb"),
  20173. name: "Sitting",
  20174. image: {
  20175. source: "./media/characters/roxi/sitting.svg",
  20176. extra: 2660 / 2462,
  20177. bottom: 0.1
  20178. }
  20179. },
  20180. },
  20181. [
  20182. {
  20183. name: "Normal",
  20184. height: math.unit(5 + 2 / 12, "feet"),
  20185. default: true
  20186. },
  20187. ]
  20188. ))
  20189. characterMakers.push(() => makeCharacter(
  20190. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20191. {
  20192. side: {
  20193. height: math.unit(55, "feet"),
  20194. weight: math.unit(153, "tons"),
  20195. name: "Side",
  20196. image: {
  20197. source: "./media/characters/shadow/side.svg",
  20198. extra: 701 / 628,
  20199. bottom: 0.02
  20200. }
  20201. },
  20202. flying: {
  20203. height: math.unit(145, "feet"),
  20204. weight: math.unit(153, "tons"),
  20205. name: "Flying",
  20206. image: {
  20207. source: "./media/characters/shadow/flying.svg"
  20208. }
  20209. },
  20210. },
  20211. [
  20212. {
  20213. name: "Normal",
  20214. height: math.unit(55, "feet"),
  20215. default: true
  20216. },
  20217. ]
  20218. ))
  20219. characterMakers.push(() => makeCharacter(
  20220. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20221. {
  20222. front: {
  20223. height: math.unit(6, "feet"),
  20224. weight: math.unit(200, "lb"),
  20225. name: "Front",
  20226. image: {
  20227. source: "./media/characters/marcie/front.svg",
  20228. extra: 960 / 876,
  20229. bottom: 58 / 1017.87
  20230. }
  20231. },
  20232. },
  20233. [
  20234. {
  20235. name: "Macro",
  20236. height: math.unit(1, "mile"),
  20237. default: true
  20238. },
  20239. ]
  20240. ))
  20241. characterMakers.push(() => makeCharacter(
  20242. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20243. {
  20244. front: {
  20245. height: math.unit(7, "feet"),
  20246. weight: math.unit(200, "lb"),
  20247. name: "Front",
  20248. image: {
  20249. source: "./media/characters/kachina/front.svg",
  20250. extra: 3206/2764,
  20251. bottom: 140/3346
  20252. }
  20253. },
  20254. },
  20255. [
  20256. {
  20257. name: "Normal",
  20258. height: math.unit(7, "feet"),
  20259. default: true
  20260. },
  20261. ]
  20262. ))
  20263. characterMakers.push(() => makeCharacter(
  20264. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20265. {
  20266. looking: {
  20267. height: math.unit(2, "meters"),
  20268. weight: math.unit(300, "kg"),
  20269. name: "Looking",
  20270. image: {
  20271. source: "./media/characters/kash/looking.svg",
  20272. extra: 474 / 344,
  20273. bottom: 0.03
  20274. }
  20275. },
  20276. side: {
  20277. height: math.unit(2, "meters"),
  20278. weight: math.unit(300, "kg"),
  20279. name: "Side",
  20280. image: {
  20281. source: "./media/characters/kash/side.svg",
  20282. extra: 302 / 251,
  20283. bottom: 0.03
  20284. }
  20285. },
  20286. front: {
  20287. height: math.unit(2, "meters"),
  20288. weight: math.unit(300, "kg"),
  20289. name: "Front",
  20290. image: {
  20291. source: "./media/characters/kash/front.svg",
  20292. extra: 495 / 360,
  20293. bottom: 0.015
  20294. }
  20295. },
  20296. },
  20297. [
  20298. {
  20299. name: "Normal",
  20300. height: math.unit(2, "meters"),
  20301. default: true
  20302. },
  20303. {
  20304. name: "Big",
  20305. height: math.unit(3, "meters")
  20306. },
  20307. {
  20308. name: "Large",
  20309. height: math.unit(5, "meters")
  20310. },
  20311. ]
  20312. ))
  20313. characterMakers.push(() => makeCharacter(
  20314. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20315. {
  20316. feeding: {
  20317. height: math.unit(6.7, "feet"),
  20318. weight: math.unit(350, "lb"),
  20319. name: "Feeding",
  20320. image: {
  20321. source: "./media/characters/lalim/feeding.svg",
  20322. }
  20323. },
  20324. },
  20325. [
  20326. {
  20327. name: "Normal",
  20328. height: math.unit(6.7, "feet"),
  20329. default: true
  20330. },
  20331. ]
  20332. ))
  20333. characterMakers.push(() => makeCharacter(
  20334. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20335. {
  20336. front: {
  20337. height: math.unit(9.5, "feet"),
  20338. weight: math.unit(600, "lb"),
  20339. name: "Front",
  20340. image: {
  20341. source: "./media/characters/de'vout/front.svg",
  20342. extra: 1443 / 1328,
  20343. bottom: 0.025
  20344. }
  20345. },
  20346. back: {
  20347. height: math.unit(9.5, "feet"),
  20348. weight: math.unit(600, "lb"),
  20349. name: "Back",
  20350. image: {
  20351. source: "./media/characters/de'vout/back.svg",
  20352. extra: 1443 / 1328
  20353. }
  20354. },
  20355. frontDressed: {
  20356. height: math.unit(9.5, "feet"),
  20357. weight: math.unit(600, "lb"),
  20358. name: "Front (Dressed",
  20359. image: {
  20360. source: "./media/characters/de'vout/front-dressed.svg",
  20361. extra: 1443 / 1328,
  20362. bottom: 0.025
  20363. }
  20364. },
  20365. backDressed: {
  20366. height: math.unit(9.5, "feet"),
  20367. weight: math.unit(600, "lb"),
  20368. name: "Back (Dressed",
  20369. image: {
  20370. source: "./media/characters/de'vout/back-dressed.svg",
  20371. extra: 1443 / 1328
  20372. }
  20373. },
  20374. },
  20375. [
  20376. {
  20377. name: "Normal",
  20378. height: math.unit(9.5, "feet"),
  20379. default: true
  20380. },
  20381. ]
  20382. ))
  20383. characterMakers.push(() => makeCharacter(
  20384. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20385. {
  20386. front: {
  20387. height: math.unit(8, "feet"),
  20388. weight: math.unit(225, "lb"),
  20389. name: "Front",
  20390. image: {
  20391. source: "./media/characters/talana/front.svg",
  20392. extra: 1410 / 1300,
  20393. bottom: 0.015
  20394. }
  20395. },
  20396. frontDressed: {
  20397. height: math.unit(8, "feet"),
  20398. weight: math.unit(225, "lb"),
  20399. name: "Front (Dressed",
  20400. image: {
  20401. source: "./media/characters/talana/front-dressed.svg",
  20402. extra: 1410 / 1300,
  20403. bottom: 0.015
  20404. }
  20405. },
  20406. },
  20407. [
  20408. {
  20409. name: "Normal",
  20410. height: math.unit(8, "feet"),
  20411. default: true
  20412. },
  20413. ]
  20414. ))
  20415. characterMakers.push(() => makeCharacter(
  20416. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20417. {
  20418. side: {
  20419. height: math.unit(7.2, "feet"),
  20420. weight: math.unit(150, "lb"),
  20421. name: "Side",
  20422. image: {
  20423. source: "./media/characters/xeauvok/side.svg",
  20424. extra: 1975 / 1523,
  20425. bottom: 0.07
  20426. }
  20427. },
  20428. },
  20429. [
  20430. {
  20431. name: "Normal",
  20432. height: math.unit(7.2, "feet"),
  20433. default: true
  20434. },
  20435. ]
  20436. ))
  20437. characterMakers.push(() => makeCharacter(
  20438. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20439. {
  20440. side: {
  20441. height: math.unit(4, "meters"),
  20442. weight: math.unit(2200, "kg"),
  20443. name: "Side",
  20444. image: {
  20445. source: "./media/characters/zara/side.svg",
  20446. extra: 765/744,
  20447. bottom: 156/921
  20448. }
  20449. },
  20450. },
  20451. [
  20452. {
  20453. name: "Normal",
  20454. height: math.unit(4, "meters"),
  20455. default: true
  20456. },
  20457. ]
  20458. ))
  20459. characterMakers.push(() => makeCharacter(
  20460. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20461. {
  20462. side: {
  20463. height: math.unit(6, "feet"),
  20464. weight: math.unit(150, "lb"),
  20465. name: "Side",
  20466. image: {
  20467. source: "./media/characters/richard-dragon/side.svg",
  20468. extra: 845 / 340,
  20469. bottom: 0.017
  20470. }
  20471. },
  20472. maw: {
  20473. height: math.unit(2.97, "feet"),
  20474. name: "Maw",
  20475. image: {
  20476. source: "./media/characters/richard-dragon/maw.svg"
  20477. }
  20478. },
  20479. },
  20480. [
  20481. ]
  20482. ))
  20483. characterMakers.push(() => makeCharacter(
  20484. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20485. {
  20486. front: {
  20487. height: math.unit(4, "feet"),
  20488. weight: math.unit(100, "lb"),
  20489. name: "Front",
  20490. image: {
  20491. source: "./media/characters/richard-smeargle/front.svg",
  20492. extra: 2952 / 2820,
  20493. bottom: 0.028
  20494. }
  20495. },
  20496. },
  20497. [
  20498. {
  20499. name: "Normal",
  20500. height: math.unit(4, "feet"),
  20501. default: true
  20502. },
  20503. {
  20504. name: "Dynamax",
  20505. height: math.unit(20, "meters")
  20506. },
  20507. ]
  20508. ))
  20509. characterMakers.push(() => makeCharacter(
  20510. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20511. {
  20512. front: {
  20513. height: math.unit(6, "feet"),
  20514. weight: math.unit(110, "lb"),
  20515. name: "Front",
  20516. image: {
  20517. source: "./media/characters/klay/front.svg",
  20518. extra: 962 / 883,
  20519. bottom: 0.04
  20520. }
  20521. },
  20522. back: {
  20523. height: math.unit(6, "feet"),
  20524. weight: math.unit(110, "lb"),
  20525. name: "Back",
  20526. image: {
  20527. source: "./media/characters/klay/back.svg",
  20528. extra: 962 / 883
  20529. }
  20530. },
  20531. beans: {
  20532. height: math.unit(1.15, "feet"),
  20533. name: "Beans",
  20534. image: {
  20535. source: "./media/characters/klay/beans.svg"
  20536. }
  20537. },
  20538. },
  20539. [
  20540. {
  20541. name: "Micro",
  20542. height: math.unit(6, "inches")
  20543. },
  20544. {
  20545. name: "Mini",
  20546. height: math.unit(3, "feet")
  20547. },
  20548. {
  20549. name: "Normal",
  20550. height: math.unit(6, "feet"),
  20551. default: true
  20552. },
  20553. {
  20554. name: "Big",
  20555. height: math.unit(25, "feet")
  20556. },
  20557. {
  20558. name: "Macro",
  20559. height: math.unit(100, "feet")
  20560. },
  20561. {
  20562. name: "Megamacro",
  20563. height: math.unit(400, "feet")
  20564. },
  20565. ]
  20566. ))
  20567. characterMakers.push(() => makeCharacter(
  20568. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20569. {
  20570. front: {
  20571. height: math.unit(6, "feet"),
  20572. weight: math.unit(160, "lb"),
  20573. name: "Front",
  20574. image: {
  20575. source: "./media/characters/marcus/front.svg",
  20576. extra: 734 / 676,
  20577. bottom: 0.03
  20578. }
  20579. },
  20580. },
  20581. [
  20582. {
  20583. name: "Little",
  20584. height: math.unit(6, "feet")
  20585. },
  20586. {
  20587. name: "Normal",
  20588. height: math.unit(110, "feet"),
  20589. default: true
  20590. },
  20591. {
  20592. name: "Macro",
  20593. height: math.unit(250, "feet")
  20594. },
  20595. {
  20596. name: "Megamacro",
  20597. height: math.unit(1000, "feet")
  20598. },
  20599. ]
  20600. ))
  20601. characterMakers.push(() => makeCharacter(
  20602. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20603. {
  20604. front: {
  20605. height: math.unit(7, "feet"),
  20606. weight: math.unit(275, "lb"),
  20607. name: "Front",
  20608. image: {
  20609. source: "./media/characters/claude-delroute/front.svg",
  20610. extra: 902/827,
  20611. bottom: 26/928
  20612. }
  20613. },
  20614. side: {
  20615. height: math.unit(7, "feet"),
  20616. weight: math.unit(275, "lb"),
  20617. name: "Side",
  20618. image: {
  20619. source: "./media/characters/claude-delroute/side.svg",
  20620. extra: 908/853,
  20621. bottom: 16/924
  20622. }
  20623. },
  20624. back: {
  20625. height: math.unit(7, "feet"),
  20626. weight: math.unit(275, "lb"),
  20627. name: "Back",
  20628. image: {
  20629. source: "./media/characters/claude-delroute/back.svg",
  20630. extra: 911/829,
  20631. bottom: 18/929
  20632. }
  20633. },
  20634. maw: {
  20635. height: math.unit(0.6407, "meters"),
  20636. name: "Maw",
  20637. image: {
  20638. source: "./media/characters/claude-delroute/maw.svg"
  20639. }
  20640. },
  20641. },
  20642. [
  20643. {
  20644. name: "Normal",
  20645. height: math.unit(7, "feet"),
  20646. default: true
  20647. },
  20648. {
  20649. name: "Lorge",
  20650. height: math.unit(20, "feet")
  20651. },
  20652. ]
  20653. ))
  20654. characterMakers.push(() => makeCharacter(
  20655. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20656. {
  20657. front: {
  20658. height: math.unit(8 + 4 / 12, "feet"),
  20659. weight: math.unit(600, "lb"),
  20660. name: "Front",
  20661. image: {
  20662. source: "./media/characters/dragonien/front.svg",
  20663. extra: 100 / 94,
  20664. bottom: 3.3 / 103.3445
  20665. }
  20666. },
  20667. back: {
  20668. height: math.unit(8 + 4 / 12, "feet"),
  20669. weight: math.unit(600, "lb"),
  20670. name: "Back",
  20671. image: {
  20672. source: "./media/characters/dragonien/back.svg",
  20673. extra: 776 / 746,
  20674. bottom: 6.4 / 782.0616
  20675. }
  20676. },
  20677. foot: {
  20678. height: math.unit(1.54, "feet"),
  20679. name: "Foot",
  20680. image: {
  20681. source: "./media/characters/dragonien/foot.svg",
  20682. }
  20683. },
  20684. },
  20685. [
  20686. {
  20687. name: "Normal",
  20688. height: math.unit(8 + 4 / 12, "feet"),
  20689. default: true
  20690. },
  20691. {
  20692. name: "Macro",
  20693. height: math.unit(200, "feet")
  20694. },
  20695. {
  20696. name: "Megamacro",
  20697. height: math.unit(1, "mile")
  20698. },
  20699. {
  20700. name: "Gigamacro",
  20701. height: math.unit(1000, "miles")
  20702. },
  20703. ]
  20704. ))
  20705. characterMakers.push(() => makeCharacter(
  20706. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20707. {
  20708. front: {
  20709. height: math.unit(5 + 2 / 12, "feet"),
  20710. weight: math.unit(110, "lb"),
  20711. name: "Front",
  20712. image: {
  20713. source: "./media/characters/desta/front.svg",
  20714. extra: 767 / 726,
  20715. bottom: 11.7 / 779
  20716. }
  20717. },
  20718. back: {
  20719. height: math.unit(5 + 2 / 12, "feet"),
  20720. weight: math.unit(110, "lb"),
  20721. name: "Back",
  20722. image: {
  20723. source: "./media/characters/desta/back.svg",
  20724. extra: 777 / 728,
  20725. bottom: 6 / 784
  20726. }
  20727. },
  20728. frontAlt: {
  20729. height: math.unit(5 + 2 / 12, "feet"),
  20730. weight: math.unit(110, "lb"),
  20731. name: "Front",
  20732. image: {
  20733. source: "./media/characters/desta/front-alt.svg",
  20734. extra: 1482 / 1417
  20735. }
  20736. },
  20737. side: {
  20738. height: math.unit(5 + 2 / 12, "feet"),
  20739. weight: math.unit(110, "lb"),
  20740. name: "Side",
  20741. image: {
  20742. source: "./media/characters/desta/side.svg",
  20743. extra: 2579 / 2491,
  20744. bottom: 0.053
  20745. }
  20746. },
  20747. },
  20748. [
  20749. {
  20750. name: "Micro",
  20751. height: math.unit(6, "inches")
  20752. },
  20753. {
  20754. name: "Normal",
  20755. height: math.unit(5 + 2 / 12, "feet"),
  20756. default: true
  20757. },
  20758. {
  20759. name: "Macro",
  20760. height: math.unit(62, "feet")
  20761. },
  20762. {
  20763. name: "Megamacro",
  20764. height: math.unit(1800, "feet")
  20765. },
  20766. ]
  20767. ))
  20768. characterMakers.push(() => makeCharacter(
  20769. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20770. {
  20771. front: {
  20772. height: math.unit(10, "feet"),
  20773. weight: math.unit(700, "lb"),
  20774. name: "Front",
  20775. image: {
  20776. source: "./media/characters/storm-alystar/front.svg",
  20777. extra: 2112 / 1898,
  20778. bottom: 0.034
  20779. }
  20780. },
  20781. },
  20782. [
  20783. {
  20784. name: "Micro",
  20785. height: math.unit(3.5, "inches")
  20786. },
  20787. {
  20788. name: "Normal",
  20789. height: math.unit(10, "feet"),
  20790. default: true
  20791. },
  20792. {
  20793. name: "Macro",
  20794. height: math.unit(400, "feet")
  20795. },
  20796. {
  20797. name: "Deific",
  20798. height: math.unit(60, "miles")
  20799. },
  20800. ]
  20801. ))
  20802. characterMakers.push(() => makeCharacter(
  20803. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20804. {
  20805. front: {
  20806. height: math.unit(2.35, "meters"),
  20807. weight: math.unit(119, "kg"),
  20808. name: "Front",
  20809. image: {
  20810. source: "./media/characters/ilia/front.svg",
  20811. extra: 1285 / 1255,
  20812. bottom: 0.06
  20813. }
  20814. },
  20815. },
  20816. [
  20817. {
  20818. name: "Normal",
  20819. height: math.unit(2.35, "meters")
  20820. },
  20821. {
  20822. name: "Macro",
  20823. height: math.unit(140, "meters"),
  20824. default: true
  20825. },
  20826. {
  20827. name: "Megamacro",
  20828. height: math.unit(100, "miles")
  20829. },
  20830. ]
  20831. ))
  20832. characterMakers.push(() => makeCharacter(
  20833. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20834. {
  20835. front: {
  20836. height: math.unit(6 + 5 / 12, "feet"),
  20837. weight: math.unit(190, "lb"),
  20838. name: "Front",
  20839. image: {
  20840. source: "./media/characters/kingdead/front.svg",
  20841. extra: 1228 / 1177
  20842. }
  20843. },
  20844. },
  20845. [
  20846. {
  20847. name: "Micro",
  20848. height: math.unit(7, "inches")
  20849. },
  20850. {
  20851. name: "Normal",
  20852. height: math.unit(6 + 5 / 12, "feet")
  20853. },
  20854. {
  20855. name: "Macro",
  20856. height: math.unit(150, "feet"),
  20857. default: true
  20858. },
  20859. {
  20860. name: "Megamacro",
  20861. height: math.unit(200, "miles")
  20862. },
  20863. ]
  20864. ))
  20865. characterMakers.push(() => makeCharacter(
  20866. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20867. {
  20868. front: {
  20869. height: math.unit(8, "feet"),
  20870. weight: math.unit(600, "lb"),
  20871. name: "Front",
  20872. image: {
  20873. source: "./media/characters/kyrehx/front.svg",
  20874. extra: 1195 / 1095,
  20875. bottom: 0.034
  20876. }
  20877. },
  20878. },
  20879. [
  20880. {
  20881. name: "Micro",
  20882. height: math.unit(2, "inches")
  20883. },
  20884. {
  20885. name: "Normal",
  20886. height: math.unit(8, "feet"),
  20887. default: true
  20888. },
  20889. {
  20890. name: "Macro",
  20891. height: math.unit(255, "feet")
  20892. },
  20893. ]
  20894. ))
  20895. characterMakers.push(() => makeCharacter(
  20896. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20897. {
  20898. front: {
  20899. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20900. weight: math.unit(184, "lb"),
  20901. name: "Front",
  20902. image: {
  20903. source: "./media/characters/xang/front.svg",
  20904. extra: 845 / 755
  20905. }
  20906. },
  20907. },
  20908. [
  20909. {
  20910. name: "Normal",
  20911. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20912. default: true
  20913. },
  20914. {
  20915. name: "Macro",
  20916. height: math.unit(0.935 * 146, "feet")
  20917. },
  20918. {
  20919. name: "Megamacro",
  20920. height: math.unit(0.935 * 3, "miles")
  20921. },
  20922. ]
  20923. ))
  20924. characterMakers.push(() => makeCharacter(
  20925. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20926. {
  20927. frontDressed: {
  20928. height: math.unit(5 + 7 / 12, "feet"),
  20929. weight: math.unit(140, "lb"),
  20930. name: "Front (Dressed)",
  20931. image: {
  20932. source: "./media/characters/doc-weardno/front-dressed.svg",
  20933. extra: 263 / 234
  20934. }
  20935. },
  20936. backDressed: {
  20937. height: math.unit(5 + 7 / 12, "feet"),
  20938. weight: math.unit(140, "lb"),
  20939. name: "Back (Dressed)",
  20940. image: {
  20941. source: "./media/characters/doc-weardno/back-dressed.svg",
  20942. extra: 266 / 238
  20943. }
  20944. },
  20945. front: {
  20946. height: math.unit(5 + 7 / 12, "feet"),
  20947. weight: math.unit(140, "lb"),
  20948. name: "Front",
  20949. image: {
  20950. source: "./media/characters/doc-weardno/front.svg",
  20951. extra: 254 / 233
  20952. }
  20953. },
  20954. },
  20955. [
  20956. {
  20957. name: "Micro",
  20958. height: math.unit(3, "inches")
  20959. },
  20960. {
  20961. name: "Normal",
  20962. height: math.unit(5 + 7 / 12, "feet"),
  20963. default: true
  20964. },
  20965. {
  20966. name: "Macro",
  20967. height: math.unit(25, "feet")
  20968. },
  20969. {
  20970. name: "Megamacro",
  20971. height: math.unit(2, "miles")
  20972. },
  20973. ]
  20974. ))
  20975. characterMakers.push(() => makeCharacter(
  20976. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20977. {
  20978. front: {
  20979. height: math.unit(6 + 2 / 12, "feet"),
  20980. weight: math.unit(153, "lb"),
  20981. name: "Front",
  20982. image: {
  20983. source: "./media/characters/seth-whilst/front.svg",
  20984. bottom: 0.07
  20985. }
  20986. },
  20987. },
  20988. [
  20989. {
  20990. name: "Micro",
  20991. height: math.unit(5, "inches")
  20992. },
  20993. {
  20994. name: "Normal",
  20995. height: math.unit(6 + 2 / 12, "feet"),
  20996. default: true
  20997. },
  20998. ]
  20999. ))
  21000. characterMakers.push(() => makeCharacter(
  21001. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  21002. {
  21003. front: {
  21004. height: math.unit(3, "inches"),
  21005. weight: math.unit(8, "grams"),
  21006. name: "Front",
  21007. image: {
  21008. source: "./media/characters/pocket-jabari/front.svg",
  21009. extra: 1024 / 974,
  21010. bottom: 0.039
  21011. }
  21012. },
  21013. },
  21014. [
  21015. {
  21016. name: "Minimicro",
  21017. height: math.unit(8, "mm")
  21018. },
  21019. {
  21020. name: "Micro",
  21021. height: math.unit(3, "inches"),
  21022. default: true
  21023. },
  21024. {
  21025. name: "Normal",
  21026. height: math.unit(3, "feet")
  21027. },
  21028. ]
  21029. ))
  21030. characterMakers.push(() => makeCharacter(
  21031. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21032. {
  21033. frontDressed: {
  21034. height: math.unit(15, "feet"),
  21035. weight: math.unit(3280, "lb"),
  21036. name: "Front (Dressed)",
  21037. image: {
  21038. source: "./media/characters/sapphy/front-dressed.svg",
  21039. extra: 1951/1654,
  21040. bottom: 194/2145
  21041. },
  21042. form: "anthro",
  21043. default: true
  21044. },
  21045. backDressed: {
  21046. height: math.unit(15, "feet"),
  21047. weight: math.unit(3280, "lb"),
  21048. name: "Back (Dressed)",
  21049. image: {
  21050. source: "./media/characters/sapphy/back-dressed.svg",
  21051. extra: 2058/1918,
  21052. bottom: 125/2183
  21053. },
  21054. form: "anthro"
  21055. },
  21056. frontNude: {
  21057. height: math.unit(15, "feet"),
  21058. weight: math.unit(3280, "lb"),
  21059. name: "Front (Nude)",
  21060. image: {
  21061. source: "./media/characters/sapphy/front-nude.svg",
  21062. extra: 1951/1654,
  21063. bottom: 194/2145
  21064. },
  21065. form: "anthro"
  21066. },
  21067. backNude: {
  21068. height: math.unit(15, "feet"),
  21069. weight: math.unit(3280, "lb"),
  21070. name: "Back (Nude)",
  21071. image: {
  21072. source: "./media/characters/sapphy/back-nude.svg",
  21073. extra: 2058/1918,
  21074. bottom: 125/2183
  21075. },
  21076. form: "anthro"
  21077. },
  21078. full: {
  21079. height: math.unit(15, "feet"),
  21080. weight: math.unit(3280, "lb"),
  21081. name: "Full",
  21082. image: {
  21083. source: "./media/characters/sapphy/full.svg",
  21084. extra: 1396/1317,
  21085. bottom: 44/1440
  21086. },
  21087. form: "anthro"
  21088. },
  21089. dick: {
  21090. height: math.unit(3.8, "feet"),
  21091. name: "Dick",
  21092. image: {
  21093. source: "./media/characters/sapphy/dick.svg"
  21094. },
  21095. form: "anthro"
  21096. },
  21097. feral: {
  21098. height: math.unit(35, "feet"),
  21099. weight: math.unit(160, "tons"),
  21100. name: "Feral",
  21101. image: {
  21102. source: "./media/characters/sapphy/feral.svg",
  21103. extra: 1050/573,
  21104. bottom: 60/1110
  21105. },
  21106. form: "feral",
  21107. default: true
  21108. },
  21109. },
  21110. [
  21111. {
  21112. name: "Normal",
  21113. height: math.unit(15, "feet"),
  21114. form: "anthro"
  21115. },
  21116. {
  21117. name: "Casual Macro",
  21118. height: math.unit(120, "feet"),
  21119. form: "anthro"
  21120. },
  21121. {
  21122. name: "Macro",
  21123. height: math.unit(2150, "feet"),
  21124. default: true,
  21125. form: "anthro"
  21126. },
  21127. {
  21128. name: "Megamacro",
  21129. height: math.unit(8, "miles"),
  21130. form: "anthro"
  21131. },
  21132. {
  21133. name: "Galaxy Mom",
  21134. height: math.unit(6, "megalightyears"),
  21135. form: "anthro"
  21136. },
  21137. {
  21138. name: "Normal",
  21139. height: math.unit(35, "feet"),
  21140. form: "feral",
  21141. default: true
  21142. },
  21143. {
  21144. name: "Macro",
  21145. height: math.unit(300, "feet"),
  21146. form: "feral"
  21147. },
  21148. {
  21149. name: "Galaxy Mom",
  21150. height: math.unit(10, "megalightyears"),
  21151. form: "feral"
  21152. },
  21153. ],
  21154. {
  21155. "anthro": {
  21156. name: "Anthro",
  21157. default: true
  21158. },
  21159. "feral": {
  21160. name: "Feral"
  21161. }
  21162. }
  21163. ))
  21164. characterMakers.push(() => makeCharacter(
  21165. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21166. {
  21167. hyenaFront: {
  21168. height: math.unit(6, "feet"),
  21169. weight: math.unit(190, "lb"),
  21170. name: "Front",
  21171. image: {
  21172. source: "./media/characters/kiro/hyena-front.svg",
  21173. extra: 927/839,
  21174. bottom: 91/1018
  21175. },
  21176. form: "hyena",
  21177. default: true
  21178. },
  21179. front: {
  21180. height: math.unit(6, "feet"),
  21181. weight: math.unit(170, "lb"),
  21182. name: "Front",
  21183. image: {
  21184. source: "./media/characters/kiro/front.svg",
  21185. extra: 1064 / 1012,
  21186. bottom: 0.052
  21187. },
  21188. form: "folf",
  21189. default: true
  21190. },
  21191. },
  21192. [
  21193. {
  21194. name: "Micro",
  21195. height: math.unit(6, "inches"),
  21196. form: "folf"
  21197. },
  21198. {
  21199. name: "Normal",
  21200. height: math.unit(6, "feet"),
  21201. form: "folf",
  21202. default: true
  21203. },
  21204. {
  21205. name: "Macro",
  21206. height: math.unit(72, "feet"),
  21207. form: "folf"
  21208. },
  21209. {
  21210. name: "Micro",
  21211. height: math.unit(6, "inches"),
  21212. form: "hyena"
  21213. },
  21214. {
  21215. name: "Normal",
  21216. height: math.unit(6, "feet"),
  21217. form: "hyena",
  21218. default: true
  21219. },
  21220. {
  21221. name: "Macro",
  21222. height: math.unit(72, "feet"),
  21223. form: "hyena"
  21224. },
  21225. ],
  21226. {
  21227. "hyena": {
  21228. name: "Hyena",
  21229. default: true
  21230. },
  21231. "folf": {
  21232. name: "Folf",
  21233. },
  21234. }
  21235. ))
  21236. characterMakers.push(() => makeCharacter(
  21237. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21238. {
  21239. front: {
  21240. height: math.unit(5 + 9 / 12, "feet"),
  21241. weight: math.unit(175, "lb"),
  21242. name: "Front",
  21243. image: {
  21244. source: "./media/characters/irishfox/front.svg",
  21245. extra: 1912 / 1680,
  21246. bottom: 0.02
  21247. }
  21248. },
  21249. },
  21250. [
  21251. {
  21252. name: "Nano",
  21253. height: math.unit(1, "mm")
  21254. },
  21255. {
  21256. name: "Micro",
  21257. height: math.unit(2, "inches")
  21258. },
  21259. {
  21260. name: "Normal",
  21261. height: math.unit(5 + 9 / 12, "feet"),
  21262. default: true
  21263. },
  21264. {
  21265. name: "Macro",
  21266. height: math.unit(45, "feet")
  21267. },
  21268. ]
  21269. ))
  21270. characterMakers.push(() => makeCharacter(
  21271. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21272. {
  21273. front: {
  21274. height: math.unit(6 + 1 / 12, "feet"),
  21275. weight: math.unit(75, "lb"),
  21276. name: "Front",
  21277. image: {
  21278. source: "./media/characters/aronai-sieyes/front.svg",
  21279. extra: 1532/1450,
  21280. bottom: 42/1574
  21281. }
  21282. },
  21283. side: {
  21284. height: math.unit(6 + 1 / 12, "feet"),
  21285. weight: math.unit(75, "lb"),
  21286. name: "Side",
  21287. image: {
  21288. source: "./media/characters/aronai-sieyes/side.svg",
  21289. extra: 1422/1365,
  21290. bottom: 148/1570
  21291. }
  21292. },
  21293. back: {
  21294. height: math.unit(6 + 1 / 12, "feet"),
  21295. weight: math.unit(75, "lb"),
  21296. name: "Back",
  21297. image: {
  21298. source: "./media/characters/aronai-sieyes/back.svg",
  21299. extra: 1526/1464,
  21300. bottom: 51/1577
  21301. }
  21302. },
  21303. dressed: {
  21304. height: math.unit(6 + 1 / 12, "feet"),
  21305. weight: math.unit(75, "lb"),
  21306. name: "Dressed",
  21307. image: {
  21308. source: "./media/characters/aronai-sieyes/dressed.svg",
  21309. extra: 1559/1483,
  21310. bottom: 39/1598
  21311. }
  21312. },
  21313. slit: {
  21314. height: math.unit(1.3, "feet"),
  21315. name: "Slit",
  21316. image: {
  21317. source: "./media/characters/aronai-sieyes/slit.svg"
  21318. }
  21319. },
  21320. slitSpread: {
  21321. height: math.unit(0.9, "feet"),
  21322. name: "Slit (Spread)",
  21323. image: {
  21324. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21325. }
  21326. },
  21327. rump: {
  21328. height: math.unit(1.3, "feet"),
  21329. name: "Rump",
  21330. image: {
  21331. source: "./media/characters/aronai-sieyes/rump.svg"
  21332. }
  21333. },
  21334. maw: {
  21335. height: math.unit(1.25, "feet"),
  21336. name: "Maw",
  21337. image: {
  21338. source: "./media/characters/aronai-sieyes/maw.svg"
  21339. }
  21340. },
  21341. feral: {
  21342. height: math.unit(18, "feet"),
  21343. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21344. name: "Feral",
  21345. image: {
  21346. source: "./media/characters/aronai-sieyes/feral.svg",
  21347. extra: 1530 / 1240,
  21348. bottom: 0.035
  21349. }
  21350. },
  21351. },
  21352. [
  21353. {
  21354. name: "Micro",
  21355. height: math.unit(2, "inches")
  21356. },
  21357. {
  21358. name: "Normal",
  21359. height: math.unit(6 + 1 / 12, "feet"),
  21360. default: true
  21361. }
  21362. ]
  21363. ))
  21364. characterMakers.push(() => makeCharacter(
  21365. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21366. {
  21367. front: {
  21368. height: math.unit(12, "feet"),
  21369. weight: math.unit(410, "kg"),
  21370. name: "Front",
  21371. image: {
  21372. source: "./media/characters/xuna/front.svg",
  21373. extra: 2184 / 1980
  21374. }
  21375. },
  21376. side: {
  21377. height: math.unit(12, "feet"),
  21378. weight: math.unit(410, "kg"),
  21379. name: "Side",
  21380. image: {
  21381. source: "./media/characters/xuna/side.svg",
  21382. extra: 2184 / 1980
  21383. }
  21384. },
  21385. back: {
  21386. height: math.unit(12, "feet"),
  21387. weight: math.unit(410, "kg"),
  21388. name: "Back",
  21389. image: {
  21390. source: "./media/characters/xuna/back.svg",
  21391. extra: 2184 / 1980
  21392. }
  21393. },
  21394. },
  21395. [
  21396. {
  21397. name: "Nano glow",
  21398. height: math.unit(10, "nm")
  21399. },
  21400. {
  21401. name: "Micro floof",
  21402. height: math.unit(0.3, "m")
  21403. },
  21404. {
  21405. name: "Huggable softy boi",
  21406. height: math.unit(3.6576, "m"),
  21407. default: true
  21408. },
  21409. {
  21410. name: "Admirable floof",
  21411. height: math.unit(80, "meters")
  21412. },
  21413. {
  21414. name: "Gentle macro",
  21415. height: math.unit(300, "meters")
  21416. },
  21417. {
  21418. name: "Very careful floof",
  21419. height: math.unit(3200, "meters")
  21420. },
  21421. {
  21422. name: "The mega floof",
  21423. height: math.unit(36000, "meters")
  21424. },
  21425. {
  21426. name: "Giga-fur-Wicker",
  21427. height: math.unit(4800000, "meters")
  21428. },
  21429. {
  21430. name: "Licky world",
  21431. height: math.unit(20000000, "meters")
  21432. },
  21433. {
  21434. name: "Floofy cyan sun",
  21435. height: math.unit(1500000000, "meters")
  21436. },
  21437. {
  21438. name: "Milky Wicker",
  21439. height: math.unit(1000000000000000000000, "meters")
  21440. },
  21441. {
  21442. name: "The observing Wicker",
  21443. height: math.unit(999999999999999999999999999, "meters")
  21444. },
  21445. ]
  21446. ))
  21447. characterMakers.push(() => makeCharacter(
  21448. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21449. {
  21450. front: {
  21451. height: math.unit(5 + 9 / 12, "feet"),
  21452. weight: math.unit(150, "lb"),
  21453. name: "Front",
  21454. image: {
  21455. source: "./media/characters/arokha-sieyes/front.svg",
  21456. extra: 1425 / 1284,
  21457. bottom: 0.05
  21458. }
  21459. },
  21460. },
  21461. [
  21462. {
  21463. name: "Normal",
  21464. height: math.unit(5 + 9 / 12, "feet")
  21465. },
  21466. {
  21467. name: "Macro",
  21468. height: math.unit(30, "meters"),
  21469. default: true
  21470. },
  21471. ]
  21472. ))
  21473. characterMakers.push(() => makeCharacter(
  21474. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21475. {
  21476. front: {
  21477. height: math.unit(6, "feet"),
  21478. weight: math.unit(180, "lb"),
  21479. name: "Front",
  21480. image: {
  21481. source: "./media/characters/arokh-sieyes/front.svg",
  21482. extra: 1830 / 1769,
  21483. bottom: 0.01
  21484. }
  21485. },
  21486. },
  21487. [
  21488. {
  21489. name: "Normal",
  21490. height: math.unit(6, "feet")
  21491. },
  21492. {
  21493. name: "Macro",
  21494. height: math.unit(30, "meters"),
  21495. default: true
  21496. },
  21497. ]
  21498. ))
  21499. characterMakers.push(() => makeCharacter(
  21500. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21501. {
  21502. side: {
  21503. height: math.unit(13 + 1 / 12, "feet"),
  21504. weight: math.unit(8.5, "tonnes"),
  21505. preyCapacity: math.unit(36, "people"),
  21506. name: "Side",
  21507. image: {
  21508. source: "./media/characters/goldeneye/side.svg",
  21509. extra: 1139/741,
  21510. bottom: 98/1237
  21511. }
  21512. },
  21513. front: {
  21514. height: math.unit(5.1, "feet"),
  21515. weight: math.unit(8.5, "tonnes"),
  21516. preyCapacity: math.unit(36, "people"),
  21517. name: "Front",
  21518. image: {
  21519. source: "./media/characters/goldeneye/front.svg",
  21520. extra: 635/365,
  21521. bottom: 598/1233
  21522. }
  21523. },
  21524. maw: {
  21525. height: math.unit(6.6, "feet"),
  21526. name: "Maw",
  21527. image: {
  21528. source: "./media/characters/goldeneye/maw.svg"
  21529. }
  21530. },
  21531. headFront: {
  21532. height: math.unit(8, "feet"),
  21533. name: "Head (Front)",
  21534. image: {
  21535. source: "./media/characters/goldeneye/head-front.svg"
  21536. }
  21537. },
  21538. headSide: {
  21539. height: math.unit(6, "feet"),
  21540. name: "Head (Side)",
  21541. image: {
  21542. source: "./media/characters/goldeneye/head-side.svg"
  21543. }
  21544. },
  21545. headBack: {
  21546. height: math.unit(8, "feet"),
  21547. name: "Head (Back)",
  21548. image: {
  21549. source: "./media/characters/goldeneye/head-back.svg"
  21550. }
  21551. },
  21552. paw: {
  21553. height: math.unit(3.4, "feet"),
  21554. name: "Paw",
  21555. image: {
  21556. source: "./media/characters/goldeneye/paw.svg"
  21557. }
  21558. },
  21559. toering: {
  21560. height: math.unit(0.45, "feet"),
  21561. name: "Toering",
  21562. image: {
  21563. source: "./media/characters/goldeneye/toering.svg"
  21564. }
  21565. },
  21566. eyes: {
  21567. height: math.unit(0.5, "feet"),
  21568. name: "Eyes",
  21569. image: {
  21570. source: "./media/characters/goldeneye/eyes.svg"
  21571. }
  21572. },
  21573. },
  21574. [
  21575. {
  21576. name: "Normal",
  21577. height: math.unit(13 + 1 / 12, "feet"),
  21578. default: true
  21579. },
  21580. ]
  21581. ))
  21582. characterMakers.push(() => makeCharacter(
  21583. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21584. {
  21585. front: {
  21586. height: math.unit(6 + 1 / 12, "feet"),
  21587. weight: math.unit(210, "lb"),
  21588. name: "Front",
  21589. image: {
  21590. source: "./media/characters/leonardo-lycheborne/front.svg",
  21591. extra: 776/723,
  21592. bottom: 34/810
  21593. }
  21594. },
  21595. side: {
  21596. height: math.unit(6 + 1 / 12, "feet"),
  21597. weight: math.unit(210, "lb"),
  21598. name: "Side",
  21599. image: {
  21600. source: "./media/characters/leonardo-lycheborne/side.svg",
  21601. extra: 780/728,
  21602. bottom: 12/792
  21603. }
  21604. },
  21605. back: {
  21606. height: math.unit(6 + 1 / 12, "feet"),
  21607. weight: math.unit(210, "lb"),
  21608. name: "Back",
  21609. image: {
  21610. source: "./media/characters/leonardo-lycheborne/back.svg",
  21611. extra: 775/721,
  21612. bottom: 17/792
  21613. }
  21614. },
  21615. hand: {
  21616. height: math.unit(1.08, "feet"),
  21617. name: "Hand",
  21618. image: {
  21619. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21620. }
  21621. },
  21622. foot: {
  21623. height: math.unit(1.32, "feet"),
  21624. name: "Foot",
  21625. image: {
  21626. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21627. }
  21628. },
  21629. maw: {
  21630. height: math.unit(1, "feet"),
  21631. name: "Maw",
  21632. image: {
  21633. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21634. }
  21635. },
  21636. were: {
  21637. height: math.unit(20, "feet"),
  21638. weight: math.unit(7800, "lb"),
  21639. name: "Were",
  21640. image: {
  21641. source: "./media/characters/leonardo-lycheborne/were.svg",
  21642. extra: 1224/1165,
  21643. bottom: 72/1296
  21644. }
  21645. },
  21646. feral: {
  21647. height: math.unit(7.5, "feet"),
  21648. weight: math.unit(600, "lb"),
  21649. name: "Feral",
  21650. image: {
  21651. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21652. extra: 797/702,
  21653. bottom: 139/936
  21654. }
  21655. },
  21656. taur: {
  21657. height: math.unit(11, "feet"),
  21658. weight: math.unit(3300, "lb"),
  21659. name: "Taur",
  21660. image: {
  21661. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21662. extra: 1271/1197,
  21663. bottom: 47/1318
  21664. }
  21665. },
  21666. barghest: {
  21667. height: math.unit(11, "feet"),
  21668. weight: math.unit(1300, "lb"),
  21669. name: "Barghest",
  21670. image: {
  21671. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21672. extra: 1291/1204,
  21673. bottom: 37/1328
  21674. }
  21675. },
  21676. dick: {
  21677. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21678. name: "Dick",
  21679. image: {
  21680. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21681. }
  21682. },
  21683. dickWere: {
  21684. height: math.unit((20) / 3.8, "feet"),
  21685. name: "Dick (Were)",
  21686. image: {
  21687. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21688. }
  21689. },
  21690. },
  21691. [
  21692. {
  21693. name: "Normal",
  21694. height: math.unit(6 + 1 / 12, "feet"),
  21695. default: true
  21696. },
  21697. ]
  21698. ))
  21699. characterMakers.push(() => makeCharacter(
  21700. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21701. {
  21702. front: {
  21703. height: math.unit(10, "feet"),
  21704. weight: math.unit(350, "lb"),
  21705. name: "Front",
  21706. image: {
  21707. source: "./media/characters/jet/front.svg",
  21708. extra: 2050 / 1980,
  21709. bottom: 0.013
  21710. }
  21711. },
  21712. back: {
  21713. height: math.unit(10, "feet"),
  21714. weight: math.unit(350, "lb"),
  21715. name: "Back",
  21716. image: {
  21717. source: "./media/characters/jet/back.svg",
  21718. extra: 2050 / 1980,
  21719. bottom: 0.013
  21720. }
  21721. },
  21722. },
  21723. [
  21724. {
  21725. name: "Micro",
  21726. height: math.unit(6, "inches")
  21727. },
  21728. {
  21729. name: "Normal",
  21730. height: math.unit(10, "feet"),
  21731. default: true
  21732. },
  21733. {
  21734. name: "Macro",
  21735. height: math.unit(100, "feet")
  21736. },
  21737. ]
  21738. ))
  21739. characterMakers.push(() => makeCharacter(
  21740. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21741. {
  21742. front: {
  21743. height: math.unit(15, "feet"),
  21744. weight: math.unit(2800, "lb"),
  21745. name: "Front",
  21746. image: {
  21747. source: "./media/characters/tanarath/front.svg",
  21748. extra: 2392 / 2220,
  21749. bottom: 0.03
  21750. }
  21751. },
  21752. back: {
  21753. height: math.unit(15, "feet"),
  21754. weight: math.unit(2800, "lb"),
  21755. name: "Back",
  21756. image: {
  21757. source: "./media/characters/tanarath/back.svg",
  21758. extra: 2392 / 2220,
  21759. bottom: 0.03
  21760. }
  21761. },
  21762. },
  21763. [
  21764. {
  21765. name: "Normal",
  21766. height: math.unit(15, "feet"),
  21767. default: true
  21768. },
  21769. ]
  21770. ))
  21771. characterMakers.push(() => makeCharacter(
  21772. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21773. {
  21774. front: {
  21775. height: math.unit(7 + 1 / 12, "feet"),
  21776. weight: math.unit(175, "lb"),
  21777. name: "Front",
  21778. image: {
  21779. source: "./media/characters/patty-cattybatty/front.svg",
  21780. extra: 908 / 874,
  21781. bottom: 0.025
  21782. }
  21783. },
  21784. },
  21785. [
  21786. {
  21787. name: "Micro",
  21788. height: math.unit(1, "inch")
  21789. },
  21790. {
  21791. name: "Normal",
  21792. height: math.unit(7 + 1 / 12, "feet")
  21793. },
  21794. {
  21795. name: "Mini Macro",
  21796. height: math.unit(155, "feet")
  21797. },
  21798. {
  21799. name: "Macro",
  21800. height: math.unit(1077, "feet")
  21801. },
  21802. {
  21803. name: "Mega Macro",
  21804. height: math.unit(47650, "feet"),
  21805. default: true
  21806. },
  21807. {
  21808. name: "Giga Macro",
  21809. height: math.unit(440, "miles")
  21810. },
  21811. {
  21812. name: "Tera Macro",
  21813. height: math.unit(8700, "miles")
  21814. },
  21815. {
  21816. name: "Planetary Macro",
  21817. height: math.unit(32700, "miles")
  21818. },
  21819. {
  21820. name: "Solar Macro",
  21821. height: math.unit(550000, "miles")
  21822. },
  21823. {
  21824. name: "Celestial Macro",
  21825. height: math.unit(2.5, "AU")
  21826. },
  21827. ]
  21828. ))
  21829. characterMakers.push(() => makeCharacter(
  21830. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21831. {
  21832. front: {
  21833. height: math.unit(4 + 5 / 12, "feet"),
  21834. weight: math.unit(90, "lb"),
  21835. name: "Front",
  21836. image: {
  21837. source: "./media/characters/cappu/front.svg",
  21838. extra: 1247 / 1152,
  21839. bottom: 0.012
  21840. }
  21841. },
  21842. },
  21843. [
  21844. {
  21845. name: "Normal",
  21846. height: math.unit(4 + 5 / 12, "feet"),
  21847. default: true
  21848. },
  21849. ]
  21850. ))
  21851. characterMakers.push(() => makeCharacter(
  21852. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21853. {
  21854. frontDressed: {
  21855. height: math.unit(70, "cm"),
  21856. weight: math.unit(6, "kg"),
  21857. name: "Front (Dressed)",
  21858. image: {
  21859. source: "./media/characters/sebi/front-dressed.svg",
  21860. extra: 713.5 / 686.5,
  21861. bottom: 0.003
  21862. }
  21863. },
  21864. front: {
  21865. height: math.unit(70, "cm"),
  21866. weight: math.unit(5, "kg"),
  21867. name: "Front",
  21868. image: {
  21869. source: "./media/characters/sebi/front.svg",
  21870. extra: 713.5 / 686.5,
  21871. bottom: 0.003
  21872. }
  21873. }
  21874. },
  21875. [
  21876. {
  21877. name: "Normal",
  21878. height: math.unit(70, "cm"),
  21879. default: true
  21880. },
  21881. {
  21882. name: "Macro",
  21883. height: math.unit(8, "meters")
  21884. },
  21885. ]
  21886. ))
  21887. characterMakers.push(() => makeCharacter(
  21888. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21889. {
  21890. front: {
  21891. height: math.unit(6, "feet"),
  21892. weight: math.unit(150, "lb"),
  21893. name: "Front",
  21894. image: {
  21895. source: "./media/characters/typhek/front.svg",
  21896. extra: 1948 / 1929,
  21897. bottom: 0.025
  21898. }
  21899. },
  21900. side: {
  21901. height: math.unit(6, "feet"),
  21902. weight: math.unit(150, "lb"),
  21903. name: "Side",
  21904. image: {
  21905. source: "./media/characters/typhek/side.svg",
  21906. extra: 2034 / 2010,
  21907. bottom: 0.003
  21908. }
  21909. },
  21910. back: {
  21911. height: math.unit(6, "feet"),
  21912. weight: math.unit(150, "lb"),
  21913. name: "Back",
  21914. image: {
  21915. source: "./media/characters/typhek/back.svg",
  21916. extra: 2005 / 1978,
  21917. bottom: 0.004
  21918. }
  21919. },
  21920. palm: {
  21921. height: math.unit(1.2, "feet"),
  21922. name: "Palm",
  21923. image: {
  21924. source: "./media/characters/typhek/palm.svg"
  21925. }
  21926. },
  21927. fist: {
  21928. height: math.unit(1.1, "feet"),
  21929. name: "Fist",
  21930. image: {
  21931. source: "./media/characters/typhek/fist.svg"
  21932. }
  21933. },
  21934. foot: {
  21935. height: math.unit(1.57, "feet"),
  21936. name: "Foot",
  21937. image: {
  21938. source: "./media/characters/typhek/foot.svg"
  21939. }
  21940. },
  21941. sole: {
  21942. height: math.unit(2.05, "feet"),
  21943. name: "Sole",
  21944. image: {
  21945. source: "./media/characters/typhek/sole.svg"
  21946. }
  21947. },
  21948. },
  21949. [
  21950. {
  21951. name: "Macro",
  21952. height: math.unit(40, "stories"),
  21953. default: true
  21954. },
  21955. {
  21956. name: "Megamacro",
  21957. height: math.unit(1, "mile")
  21958. },
  21959. {
  21960. name: "Gigamacro",
  21961. height: math.unit(4000, "solarradii")
  21962. },
  21963. {
  21964. name: "Universal",
  21965. height: math.unit(1.1, "universes")
  21966. }
  21967. ]
  21968. ))
  21969. characterMakers.push(() => makeCharacter(
  21970. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21971. {
  21972. side: {
  21973. height: math.unit(5 + 7 / 12, "feet"),
  21974. weight: math.unit(150, "lb"),
  21975. name: "Side",
  21976. image: {
  21977. source: "./media/characters/kassy/side.svg",
  21978. extra: 1280 / 1225,
  21979. bottom: 0.002
  21980. }
  21981. },
  21982. front: {
  21983. height: math.unit(5 + 7 / 12, "feet"),
  21984. weight: math.unit(150, "lb"),
  21985. name: "Front",
  21986. image: {
  21987. source: "./media/characters/kassy/front.svg",
  21988. extra: 1280 / 1225,
  21989. bottom: 0.025
  21990. }
  21991. },
  21992. back: {
  21993. height: math.unit(5 + 7 / 12, "feet"),
  21994. weight: math.unit(150, "lb"),
  21995. name: "Back",
  21996. image: {
  21997. source: "./media/characters/kassy/back.svg",
  21998. extra: 1280 / 1225,
  21999. bottom: 0.002
  22000. }
  22001. },
  22002. foot: {
  22003. height: math.unit(1.266, "feet"),
  22004. name: "Foot",
  22005. image: {
  22006. source: "./media/characters/kassy/foot.svg"
  22007. }
  22008. },
  22009. },
  22010. [
  22011. {
  22012. name: "Normal",
  22013. height: math.unit(5 + 7 / 12, "feet")
  22014. },
  22015. {
  22016. name: "Macro",
  22017. height: math.unit(137, "feet"),
  22018. default: true
  22019. },
  22020. {
  22021. name: "Megamacro",
  22022. height: math.unit(1, "mile")
  22023. },
  22024. ]
  22025. ))
  22026. characterMakers.push(() => makeCharacter(
  22027. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  22028. {
  22029. front: {
  22030. height: math.unit(6 + 1 / 12, "feet"),
  22031. weight: math.unit(200, "lb"),
  22032. name: "Front",
  22033. image: {
  22034. source: "./media/characters/neil/front.svg",
  22035. extra: 1326 / 1250,
  22036. bottom: 0.023
  22037. }
  22038. },
  22039. },
  22040. [
  22041. {
  22042. name: "Normal",
  22043. height: math.unit(6 + 1 / 12, "feet"),
  22044. default: true
  22045. },
  22046. {
  22047. name: "Macro",
  22048. height: math.unit(200, "feet")
  22049. },
  22050. ]
  22051. ))
  22052. characterMakers.push(() => makeCharacter(
  22053. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22054. {
  22055. front: {
  22056. height: math.unit(5 + 9 / 12, "feet"),
  22057. weight: math.unit(190, "lb"),
  22058. name: "Front",
  22059. image: {
  22060. source: "./media/characters/atticus/front.svg",
  22061. extra: 2934 / 2785,
  22062. bottom: 0.025
  22063. }
  22064. },
  22065. },
  22066. [
  22067. {
  22068. name: "Normal",
  22069. height: math.unit(5 + 9 / 12, "feet"),
  22070. default: true
  22071. },
  22072. {
  22073. name: "Macro",
  22074. height: math.unit(180, "feet")
  22075. },
  22076. ]
  22077. ))
  22078. characterMakers.push(() => makeCharacter(
  22079. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22080. {
  22081. side: {
  22082. height: math.unit(9, "feet"),
  22083. weight: math.unit(650, "lb"),
  22084. name: "Side",
  22085. image: {
  22086. source: "./media/characters/milo/side.svg",
  22087. extra: 2644 / 2310,
  22088. bottom: 0.032
  22089. }
  22090. },
  22091. },
  22092. [
  22093. {
  22094. name: "Normal",
  22095. height: math.unit(9, "feet"),
  22096. default: true
  22097. },
  22098. {
  22099. name: "Macro",
  22100. height: math.unit(300, "feet")
  22101. },
  22102. ]
  22103. ))
  22104. characterMakers.push(() => makeCharacter(
  22105. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22106. {
  22107. side: {
  22108. height: math.unit(8, "meters"),
  22109. weight: math.unit(90000, "kg"),
  22110. name: "Side",
  22111. image: {
  22112. source: "./media/characters/ijzer/side.svg",
  22113. extra: 2756 / 1600,
  22114. bottom: 0.01
  22115. }
  22116. },
  22117. },
  22118. [
  22119. {
  22120. name: "Small",
  22121. height: math.unit(3, "meters")
  22122. },
  22123. {
  22124. name: "Normal",
  22125. height: math.unit(8, "meters"),
  22126. default: true
  22127. },
  22128. {
  22129. name: "Normal+",
  22130. height: math.unit(10, "meters")
  22131. },
  22132. {
  22133. name: "Bigger",
  22134. height: math.unit(24, "meters")
  22135. },
  22136. {
  22137. name: "Huge",
  22138. height: math.unit(80, "meters")
  22139. },
  22140. ]
  22141. ))
  22142. characterMakers.push(() => makeCharacter(
  22143. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22144. {
  22145. front: {
  22146. height: math.unit(6 + 2 / 12, "feet"),
  22147. weight: math.unit(153, "lb"),
  22148. name: "Front",
  22149. image: {
  22150. source: "./media/characters/luca-cervicum/front.svg",
  22151. extra: 370 / 327,
  22152. bottom: 0.015
  22153. }
  22154. },
  22155. back: {
  22156. height: math.unit(6 + 2 / 12, "feet"),
  22157. weight: math.unit(153, "lb"),
  22158. name: "Back",
  22159. image: {
  22160. source: "./media/characters/luca-cervicum/back.svg",
  22161. extra: 367 / 333,
  22162. bottom: 0.005
  22163. }
  22164. },
  22165. frontGear: {
  22166. height: math.unit(6 + 2 / 12, "feet"),
  22167. weight: math.unit(173, "lb"),
  22168. name: "Front (Gear)",
  22169. image: {
  22170. source: "./media/characters/luca-cervicum/front-gear.svg",
  22171. extra: 377 / 333,
  22172. bottom: 0.006
  22173. }
  22174. },
  22175. },
  22176. [
  22177. {
  22178. name: "Normal",
  22179. height: math.unit(6 + 2 / 12, "feet"),
  22180. default: true
  22181. },
  22182. ]
  22183. ))
  22184. characterMakers.push(() => makeCharacter(
  22185. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22186. {
  22187. front: {
  22188. height: math.unit(6 + 1 / 12, "feet"),
  22189. weight: math.unit(304, "lb"),
  22190. name: "Front",
  22191. image: {
  22192. source: "./media/characters/oliver/front.svg",
  22193. extra: 157 / 143,
  22194. bottom: 0.08
  22195. }
  22196. },
  22197. },
  22198. [
  22199. {
  22200. name: "Normal",
  22201. height: math.unit(6 + 1 / 12, "feet"),
  22202. default: true
  22203. },
  22204. ]
  22205. ))
  22206. characterMakers.push(() => makeCharacter(
  22207. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22208. {
  22209. front: {
  22210. height: math.unit(5 + 7 / 12, "feet"),
  22211. weight: math.unit(140, "lb"),
  22212. name: "Front",
  22213. image: {
  22214. source: "./media/characters/shane/front.svg",
  22215. extra: 304 / 289,
  22216. bottom: 0.005
  22217. }
  22218. },
  22219. },
  22220. [
  22221. {
  22222. name: "Normal",
  22223. height: math.unit(5 + 7 / 12, "feet"),
  22224. default: true
  22225. },
  22226. ]
  22227. ))
  22228. characterMakers.push(() => makeCharacter(
  22229. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22230. {
  22231. front: {
  22232. height: math.unit(5 + 9 / 12, "feet"),
  22233. weight: math.unit(178, "lb"),
  22234. name: "Front",
  22235. image: {
  22236. source: "./media/characters/shin/front.svg",
  22237. extra: 159 / 151,
  22238. bottom: 0.015
  22239. }
  22240. },
  22241. },
  22242. [
  22243. {
  22244. name: "Normal",
  22245. height: math.unit(5 + 9 / 12, "feet"),
  22246. default: true
  22247. },
  22248. ]
  22249. ))
  22250. characterMakers.push(() => makeCharacter(
  22251. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22252. {
  22253. front: {
  22254. height: math.unit(5 + 10 / 12, "feet"),
  22255. weight: math.unit(168, "lb"),
  22256. name: "Front",
  22257. image: {
  22258. source: "./media/characters/xerxes/front.svg",
  22259. extra: 282 / 260,
  22260. bottom: 0.045
  22261. }
  22262. },
  22263. },
  22264. [
  22265. {
  22266. name: "Normal",
  22267. height: math.unit(5 + 10 / 12, "feet"),
  22268. default: true
  22269. },
  22270. ]
  22271. ))
  22272. characterMakers.push(() => makeCharacter(
  22273. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22274. {
  22275. front: {
  22276. height: math.unit(6 + 7 / 12, "feet"),
  22277. weight: math.unit(208, "lb"),
  22278. name: "Front",
  22279. image: {
  22280. source: "./media/characters/chaska/front.svg",
  22281. extra: 332 / 319,
  22282. bottom: 0.015
  22283. }
  22284. },
  22285. },
  22286. [
  22287. {
  22288. name: "Normal",
  22289. height: math.unit(6 + 7 / 12, "feet"),
  22290. default: true
  22291. },
  22292. ]
  22293. ))
  22294. characterMakers.push(() => makeCharacter(
  22295. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22296. {
  22297. front: {
  22298. height: math.unit(5 + 8 / 12, "feet"),
  22299. weight: math.unit(208, "lb"),
  22300. name: "Front",
  22301. image: {
  22302. source: "./media/characters/enuk/front.svg",
  22303. extra: 437 / 406,
  22304. bottom: 0.02
  22305. }
  22306. },
  22307. },
  22308. [
  22309. {
  22310. name: "Normal",
  22311. height: math.unit(5 + 8 / 12, "feet"),
  22312. default: true
  22313. },
  22314. ]
  22315. ))
  22316. characterMakers.push(() => makeCharacter(
  22317. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22318. {
  22319. front: {
  22320. height: math.unit(5 + 10 / 12, "feet"),
  22321. weight: math.unit(252, "lb"),
  22322. name: "Front",
  22323. image: {
  22324. source: "./media/characters/bruun/front.svg",
  22325. extra: 197 / 187,
  22326. bottom: 0.012
  22327. }
  22328. },
  22329. },
  22330. [
  22331. {
  22332. name: "Normal",
  22333. height: math.unit(5 + 10 / 12, "feet"),
  22334. default: true
  22335. },
  22336. ]
  22337. ))
  22338. characterMakers.push(() => makeCharacter(
  22339. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22340. {
  22341. front: {
  22342. height: math.unit(6 + 10 / 12, "feet"),
  22343. weight: math.unit(255, "lb"),
  22344. name: "Front",
  22345. image: {
  22346. source: "./media/characters/alexeev/front.svg",
  22347. extra: 213 / 200,
  22348. bottom: 0.05
  22349. }
  22350. },
  22351. },
  22352. [
  22353. {
  22354. name: "Normal",
  22355. height: math.unit(6 + 10 / 12, "feet"),
  22356. default: true
  22357. },
  22358. ]
  22359. ))
  22360. characterMakers.push(() => makeCharacter(
  22361. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22362. {
  22363. front: {
  22364. height: math.unit(2 + 8 / 12, "feet"),
  22365. weight: math.unit(22, "lb"),
  22366. name: "Front",
  22367. image: {
  22368. source: "./media/characters/evelyn/front.svg",
  22369. extra: 208 / 180
  22370. }
  22371. },
  22372. },
  22373. [
  22374. {
  22375. name: "Normal",
  22376. height: math.unit(2 + 8 / 12, "feet"),
  22377. default: true
  22378. },
  22379. ]
  22380. ))
  22381. characterMakers.push(() => makeCharacter(
  22382. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22383. {
  22384. front: {
  22385. height: math.unit(5 + 9 / 12, "feet"),
  22386. weight: math.unit(139, "lb"),
  22387. name: "Front",
  22388. image: {
  22389. source: "./media/characters/inca/front.svg",
  22390. extra: 294 / 291,
  22391. bottom: 0.03
  22392. }
  22393. },
  22394. },
  22395. [
  22396. {
  22397. name: "Normal",
  22398. height: math.unit(5 + 9 / 12, "feet"),
  22399. default: true
  22400. },
  22401. ]
  22402. ))
  22403. characterMakers.push(() => makeCharacter(
  22404. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22405. {
  22406. front: {
  22407. height: math.unit(6 + 3 / 12, "feet"),
  22408. weight: math.unit(185, "lb"),
  22409. name: "Front",
  22410. image: {
  22411. source: "./media/characters/mera/front.svg",
  22412. extra: 291 / 277,
  22413. bottom: 0.03
  22414. }
  22415. },
  22416. },
  22417. [
  22418. {
  22419. name: "Normal",
  22420. height: math.unit(6 + 3 / 12, "feet"),
  22421. default: true
  22422. },
  22423. ]
  22424. ))
  22425. characterMakers.push(() => makeCharacter(
  22426. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22427. {
  22428. front: {
  22429. height: math.unit(6 + 7 / 12, "feet"),
  22430. weight: math.unit(160, "lb"),
  22431. name: "Front",
  22432. image: {
  22433. source: "./media/characters/ceres/front.svg",
  22434. extra: 1023 / 950,
  22435. bottom: 0.027
  22436. }
  22437. },
  22438. back: {
  22439. height: math.unit(6 + 7 / 12, "feet"),
  22440. weight: math.unit(160, "lb"),
  22441. name: "Back",
  22442. image: {
  22443. source: "./media/characters/ceres/back.svg",
  22444. extra: 1023 / 950
  22445. }
  22446. },
  22447. },
  22448. [
  22449. {
  22450. name: "Normal",
  22451. height: math.unit(6 + 7 / 12, "feet"),
  22452. default: true
  22453. },
  22454. ]
  22455. ))
  22456. characterMakers.push(() => makeCharacter(
  22457. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22458. {
  22459. front: {
  22460. height: math.unit(5 + 10 / 12, "feet"),
  22461. weight: math.unit(150, "lb"),
  22462. name: "Front",
  22463. image: {
  22464. source: "./media/characters/kris/front.svg",
  22465. extra: 885 / 803,
  22466. bottom: 0.03
  22467. }
  22468. },
  22469. },
  22470. [
  22471. {
  22472. name: "Normal",
  22473. height: math.unit(5 + 10 / 12, "feet"),
  22474. default: true
  22475. },
  22476. ]
  22477. ))
  22478. characterMakers.push(() => makeCharacter(
  22479. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22480. {
  22481. dragon_front: {
  22482. height: math.unit(5, "feet"),
  22483. name: "Front",
  22484. image: {
  22485. source: "./media/characters/taluthus/dragon-front.svg",
  22486. extra: 1203/1098,
  22487. bottom: 46/1249
  22488. },
  22489. form: "dragon",
  22490. default: true
  22491. },
  22492. dragon_maw: {
  22493. height: math.unit(2.35, "feet"),
  22494. name: "Maw",
  22495. image: {
  22496. source: "./media/characters/taluthus/dragon-maw.svg"
  22497. },
  22498. form: "dragon",
  22499. },
  22500. kitsune_front: {
  22501. height: math.unit(7, "feet"),
  22502. name: "Front",
  22503. image: {
  22504. source: "./media/characters/taluthus/kitsune-front.svg",
  22505. extra: 900/841,
  22506. bottom: 65/965
  22507. },
  22508. form: "kitsune",
  22509. default: true
  22510. },
  22511. },
  22512. [
  22513. {
  22514. name: "Normal",
  22515. height: math.unit(5, "feet"),
  22516. form: "dragon",
  22517. default: true,
  22518. },
  22519. {
  22520. name: "Normal",
  22521. height: math.unit(7, "feet"),
  22522. form: "kitsune",
  22523. default: true
  22524. },
  22525. {
  22526. name: "Macro",
  22527. height: math.unit(300, "feet"),
  22528. allForms: true
  22529. },
  22530. ],
  22531. {
  22532. "dragon": {
  22533. name: "Dragon",
  22534. default: true
  22535. },
  22536. "kitsune": {
  22537. name: "Kitsune",
  22538. },
  22539. }
  22540. ))
  22541. characterMakers.push(() => makeCharacter(
  22542. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22543. {
  22544. front: {
  22545. height: math.unit(5 + 9 / 12, "feet"),
  22546. weight: math.unit(145, "lb"),
  22547. name: "Front",
  22548. image: {
  22549. source: "./media/characters/dawn/front.svg",
  22550. extra: 2094 / 2016,
  22551. bottom: 0.025
  22552. }
  22553. },
  22554. back: {
  22555. height: math.unit(5 + 9 / 12, "feet"),
  22556. weight: math.unit(160, "lb"),
  22557. name: "Back",
  22558. image: {
  22559. source: "./media/characters/dawn/back.svg",
  22560. extra: 2112 / 2080,
  22561. bottom: 0.005
  22562. }
  22563. },
  22564. },
  22565. [
  22566. {
  22567. name: "Normal",
  22568. height: math.unit(6 + 7 / 12, "feet"),
  22569. default: true
  22570. },
  22571. ]
  22572. ))
  22573. characterMakers.push(() => makeCharacter(
  22574. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22575. {
  22576. anthro: {
  22577. height: math.unit(8 + 3 / 12, "feet"),
  22578. weight: math.unit(450, "lb"),
  22579. name: "Anthro",
  22580. image: {
  22581. source: "./media/characters/arador/anthro.svg",
  22582. extra: 1835 / 1718,
  22583. bottom: 0.025
  22584. }
  22585. },
  22586. feral: {
  22587. height: math.unit(4, "feet"),
  22588. weight: math.unit(200, "lb"),
  22589. name: "Feral",
  22590. image: {
  22591. source: "./media/characters/arador/feral.svg",
  22592. extra: 1683 / 1514,
  22593. bottom: 0.07
  22594. }
  22595. },
  22596. },
  22597. [
  22598. {
  22599. name: "Normal",
  22600. height: math.unit(8 + 3 / 12, "feet")
  22601. },
  22602. {
  22603. name: "Macro",
  22604. height: math.unit(82.5, "feet"),
  22605. default: true
  22606. },
  22607. ]
  22608. ))
  22609. characterMakers.push(() => makeCharacter(
  22610. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22611. {
  22612. front: {
  22613. height: math.unit(5 + 10 / 12, "feet"),
  22614. weight: math.unit(125, "lb"),
  22615. name: "Front",
  22616. image: {
  22617. source: "./media/characters/dharsi/front.svg",
  22618. extra: 716 / 630,
  22619. bottom: 0.035
  22620. }
  22621. },
  22622. },
  22623. [
  22624. {
  22625. name: "Nano",
  22626. height: math.unit(100, "nm")
  22627. },
  22628. {
  22629. name: "Micro",
  22630. height: math.unit(2, "inches")
  22631. },
  22632. {
  22633. name: "Normal",
  22634. height: math.unit(5 + 10 / 12, "feet"),
  22635. default: true
  22636. },
  22637. {
  22638. name: "Macro",
  22639. height: math.unit(1000, "feet")
  22640. },
  22641. {
  22642. name: "Megamacro",
  22643. height: math.unit(10, "miles")
  22644. },
  22645. {
  22646. name: "Gigamacro",
  22647. height: math.unit(3000, "miles")
  22648. },
  22649. {
  22650. name: "Teramacro",
  22651. height: math.unit(500000, "miles")
  22652. },
  22653. {
  22654. name: "Teramacro+",
  22655. height: math.unit(30, "galaxies")
  22656. },
  22657. ]
  22658. ))
  22659. characterMakers.push(() => makeCharacter(
  22660. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22661. {
  22662. front: {
  22663. height: math.unit(6, "feet"),
  22664. weight: math.unit(150, "lb"),
  22665. name: "Front",
  22666. image: {
  22667. source: "./media/characters/deathy/front.svg",
  22668. extra: 1552 / 1463,
  22669. bottom: 0.025
  22670. }
  22671. },
  22672. side: {
  22673. height: math.unit(6, "feet"),
  22674. weight: math.unit(150, "lb"),
  22675. name: "Side",
  22676. image: {
  22677. source: "./media/characters/deathy/side.svg",
  22678. extra: 1604 / 1455,
  22679. bottom: 0.025
  22680. }
  22681. },
  22682. back: {
  22683. height: math.unit(6, "feet"),
  22684. weight: math.unit(150, "lb"),
  22685. name: "Back",
  22686. image: {
  22687. source: "./media/characters/deathy/back.svg",
  22688. extra: 1580 / 1463,
  22689. bottom: 0.005
  22690. }
  22691. },
  22692. },
  22693. [
  22694. {
  22695. name: "Micro",
  22696. height: math.unit(5, "millimeters")
  22697. },
  22698. {
  22699. name: "Normal",
  22700. height: math.unit(6 + 5 / 12, "feet"),
  22701. default: true
  22702. },
  22703. ]
  22704. ))
  22705. characterMakers.push(() => makeCharacter(
  22706. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22707. {
  22708. front: {
  22709. height: math.unit(16, "feet"),
  22710. weight: math.unit(4000, "lb"),
  22711. name: "Front",
  22712. image: {
  22713. source: "./media/characters/juniper/front.svg",
  22714. bottom: 0.04
  22715. }
  22716. },
  22717. },
  22718. [
  22719. {
  22720. name: "Normal",
  22721. height: math.unit(16, "feet"),
  22722. default: true
  22723. },
  22724. ]
  22725. ))
  22726. characterMakers.push(() => makeCharacter(
  22727. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22728. {
  22729. front: {
  22730. height: math.unit(6, "feet"),
  22731. weight: math.unit(150, "lb"),
  22732. name: "Front",
  22733. image: {
  22734. source: "./media/characters/hipster/front.svg",
  22735. extra: 1312 / 1209,
  22736. bottom: 0.025
  22737. }
  22738. },
  22739. back: {
  22740. height: math.unit(6, "feet"),
  22741. weight: math.unit(150, "lb"),
  22742. name: "Back",
  22743. image: {
  22744. source: "./media/characters/hipster/back.svg",
  22745. extra: 1281 / 1196,
  22746. bottom: 0.01
  22747. }
  22748. },
  22749. },
  22750. [
  22751. {
  22752. name: "Micro",
  22753. height: math.unit(1, "mm")
  22754. },
  22755. {
  22756. name: "Normal",
  22757. height: math.unit(4, "inches"),
  22758. default: true
  22759. },
  22760. {
  22761. name: "Macro",
  22762. height: math.unit(500, "feet")
  22763. },
  22764. {
  22765. name: "Megamacro",
  22766. height: math.unit(1000, "miles")
  22767. },
  22768. ]
  22769. ))
  22770. characterMakers.push(() => makeCharacter(
  22771. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22772. {
  22773. front: {
  22774. height: math.unit(6, "feet"),
  22775. weight: math.unit(150, "lb"),
  22776. name: "Front",
  22777. image: {
  22778. source: "./media/characters/tendirmuldr/front.svg",
  22779. extra: 1878 / 1772,
  22780. bottom: 0.015
  22781. }
  22782. },
  22783. },
  22784. [
  22785. {
  22786. name: "Megamacro",
  22787. height: math.unit(1500, "miles"),
  22788. default: true
  22789. },
  22790. ]
  22791. ))
  22792. characterMakers.push(() => makeCharacter(
  22793. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22794. {
  22795. front: {
  22796. height: math.unit(14, "feet"),
  22797. weight: math.unit(12000, "lb"),
  22798. name: "Front",
  22799. image: {
  22800. source: "./media/characters/mort/front.svg",
  22801. extra: 365 / 318,
  22802. bottom: 0.01
  22803. }
  22804. },
  22805. side: {
  22806. height: math.unit(14, "feet"),
  22807. weight: math.unit(12000, "lb"),
  22808. name: "Side",
  22809. image: {
  22810. source: "./media/characters/mort/side.svg",
  22811. extra: 365 / 318,
  22812. bottom: 0.052
  22813. },
  22814. default: true
  22815. },
  22816. back: {
  22817. height: math.unit(14, "feet"),
  22818. weight: math.unit(12000, "lb"),
  22819. name: "Back",
  22820. image: {
  22821. source: "./media/characters/mort/back.svg",
  22822. extra: 371 / 332,
  22823. bottom: 0.18
  22824. }
  22825. },
  22826. },
  22827. [
  22828. {
  22829. name: "Normal",
  22830. height: math.unit(14, "feet"),
  22831. default: true
  22832. },
  22833. ]
  22834. ))
  22835. characterMakers.push(() => makeCharacter(
  22836. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22837. {
  22838. front: {
  22839. height: math.unit(8, "feet"),
  22840. weight: math.unit(1, "ton"),
  22841. name: "Front",
  22842. image: {
  22843. source: "./media/characters/lycoa/front.svg",
  22844. extra: 1836/1728,
  22845. bottom: 81/1917
  22846. }
  22847. },
  22848. back: {
  22849. height: math.unit(8, "feet"),
  22850. weight: math.unit(1, "ton"),
  22851. name: "Back",
  22852. image: {
  22853. source: "./media/characters/lycoa/back.svg",
  22854. extra: 1785/1720,
  22855. bottom: 91/1876
  22856. }
  22857. },
  22858. head: {
  22859. height: math.unit(1.6243, "feet"),
  22860. name: "Head",
  22861. image: {
  22862. source: "./media/characters/lycoa/head.svg",
  22863. extra: 1011/782,
  22864. bottom: 0/1011
  22865. }
  22866. },
  22867. tailmaw: {
  22868. height: math.unit(1.9, "feet"),
  22869. name: "Tailmaw",
  22870. image: {
  22871. source: "./media/characters/lycoa/tailmaw.svg"
  22872. }
  22873. },
  22874. tentacles: {
  22875. height: math.unit(2.1, "feet"),
  22876. name: "Tentacles",
  22877. image: {
  22878. source: "./media/characters/lycoa/tentacles.svg"
  22879. }
  22880. },
  22881. dick: {
  22882. height: math.unit(1.73, "feet"),
  22883. name: "Dick",
  22884. image: {
  22885. source: "./media/characters/lycoa/dick.svg"
  22886. }
  22887. },
  22888. },
  22889. [
  22890. {
  22891. name: "Normal",
  22892. height: math.unit(8, "feet"),
  22893. default: true
  22894. },
  22895. {
  22896. name: "Macro",
  22897. height: math.unit(30, "feet")
  22898. },
  22899. ]
  22900. ))
  22901. characterMakers.push(() => makeCharacter(
  22902. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22903. {
  22904. front: {
  22905. height: math.unit(4 + 2 / 12, "feet"),
  22906. weight: math.unit(70, "lb"),
  22907. name: "Front",
  22908. image: {
  22909. source: "./media/characters/naldara/front.svg",
  22910. extra: 1664/1387,
  22911. bottom: 81/1745
  22912. },
  22913. form: "anthro",
  22914. default: true
  22915. },
  22916. naga: {
  22917. height: math.unit(20, "feet"),
  22918. weight: math.unit(15000, "kg"),
  22919. name: "Front",
  22920. image: {
  22921. source: "./media/characters/naldara/naga.svg",
  22922. extra: 1590/1396,
  22923. bottom: 285/1875
  22924. },
  22925. form: "naga",
  22926. default: true
  22927. },
  22928. },
  22929. [
  22930. {
  22931. name: "Normal",
  22932. height: math.unit(4 + 2 / 12, "feet"),
  22933. form: "anthro",
  22934. default: true
  22935. },
  22936. {
  22937. name: "Normal",
  22938. height: math.unit(20, "feet"),
  22939. form: "naga",
  22940. default: true
  22941. },
  22942. ],
  22943. {
  22944. "anthro": {
  22945. name: "Anthro",
  22946. default: true
  22947. },
  22948. "naga": {
  22949. name: "Naga"
  22950. }
  22951. }
  22952. ))
  22953. characterMakers.push(() => makeCharacter(
  22954. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22955. {
  22956. front: {
  22957. height: math.unit(13 + 7 / 12, "feet"),
  22958. weight: math.unit(1500, "lb"),
  22959. name: "Front",
  22960. image: {
  22961. source: "./media/characters/briar/front.svg",
  22962. extra: 1223/1157,
  22963. bottom: 123/1346
  22964. }
  22965. },
  22966. },
  22967. [
  22968. {
  22969. name: "Normal",
  22970. height: math.unit(13 + 7 / 12, "feet"),
  22971. default: true
  22972. },
  22973. ]
  22974. ))
  22975. characterMakers.push(() => makeCharacter(
  22976. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22977. {
  22978. side: {
  22979. height: math.unit(16, "feet"),
  22980. weight: math.unit(500, "lb"),
  22981. name: "Side",
  22982. image: {
  22983. source: "./media/characters/vanguard/side.svg",
  22984. extra: 1022/914,
  22985. bottom: 30/1052
  22986. }
  22987. },
  22988. sideAlt: {
  22989. height: math.unit(10, "feet"),
  22990. weight: math.unit(500, "lb"),
  22991. name: "Side (Alt)",
  22992. image: {
  22993. source: "./media/characters/vanguard/side-alt.svg",
  22994. extra: 502 / 425,
  22995. bottom: 0.087
  22996. }
  22997. },
  22998. },
  22999. [
  23000. {
  23001. name: "Normal",
  23002. height: math.unit(17.71, "feet"),
  23003. default: true
  23004. },
  23005. ]
  23006. ))
  23007. characterMakers.push(() => makeCharacter(
  23008. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  23009. {
  23010. front: {
  23011. height: math.unit(7.5, "feet"),
  23012. weight: math.unit(2, "lb"),
  23013. name: "Front",
  23014. image: {
  23015. source: "./media/characters/artemis/work-safe-front.svg",
  23016. extra: 1192 / 1075,
  23017. bottom: 0.07
  23018. },
  23019. form: "work-safe",
  23020. default: true
  23021. },
  23022. frontNsfw: {
  23023. height: math.unit(7.5, "feet"),
  23024. weight: math.unit(2, "lb"),
  23025. name: "Front",
  23026. image: {
  23027. source: "./media/characters/artemis/calibrating-front.svg",
  23028. extra: 1192 / 1075,
  23029. bottom: 0.07
  23030. },
  23031. form: "calibrating",
  23032. default: true
  23033. },
  23034. frontNsfwer: {
  23035. height: math.unit(7.5, "feet"),
  23036. weight: math.unit(2, "lb"),
  23037. name: "Front",
  23038. image: {
  23039. source: "./media/characters/artemis/oversize-load-front.svg",
  23040. extra: 1192 / 1075,
  23041. bottom: 0.07
  23042. },
  23043. form: "oversize-load",
  23044. default: true
  23045. },
  23046. side: {
  23047. height: math.unit(7.5, "feet"),
  23048. weight: math.unit(2, "lb"),
  23049. name: "Side",
  23050. image: {
  23051. source: "./media/characters/artemis/work-safe-side.svg",
  23052. extra: 1192 / 1075,
  23053. bottom: 0.07
  23054. },
  23055. form: "work-safe"
  23056. },
  23057. sideNsfw: {
  23058. height: math.unit(7.5, "feet"),
  23059. weight: math.unit(2, "lb"),
  23060. name: "Side",
  23061. image: {
  23062. source: "./media/characters/artemis/calibrating-side.svg",
  23063. extra: 1192 / 1075,
  23064. bottom: 0.07
  23065. },
  23066. form: "calibrating"
  23067. },
  23068. sideNsfwer: {
  23069. height: math.unit(7.5, "feet"),
  23070. weight: math.unit(2, "lb"),
  23071. name: "Side",
  23072. image: {
  23073. source: "./media/characters/artemis/oversize-load-side.svg",
  23074. extra: 1192 / 1075,
  23075. bottom: 0.07
  23076. },
  23077. form: "oversize-load"
  23078. },
  23079. maw: {
  23080. height: math.unit(1.1, "feet"),
  23081. name: "Maw",
  23082. image: {
  23083. source: "./media/characters/artemis/maw.svg"
  23084. },
  23085. form: "work-safe"
  23086. },
  23087. stomach: {
  23088. height: math.unit(0.95, "feet"),
  23089. name: "Stomach",
  23090. image: {
  23091. source: "./media/characters/artemis/stomach.svg"
  23092. },
  23093. form: "work-safe"
  23094. },
  23095. dickCanine: {
  23096. height: math.unit(1, "feet"),
  23097. name: "Dick (Canine)",
  23098. image: {
  23099. source: "./media/characters/artemis/dick-canine.svg"
  23100. },
  23101. form: "calibrating"
  23102. },
  23103. dickEquine: {
  23104. height: math.unit(0.85, "feet"),
  23105. name: "Dick (Equine)",
  23106. image: {
  23107. source: "./media/characters/artemis/dick-equine.svg"
  23108. },
  23109. form: "calibrating"
  23110. },
  23111. dickExotic: {
  23112. height: math.unit(0.85, "feet"),
  23113. name: "Dick (Exotic)",
  23114. image: {
  23115. source: "./media/characters/artemis/dick-exotic.svg"
  23116. },
  23117. form: "calibrating"
  23118. },
  23119. dickCanineBigger: {
  23120. height: math.unit(1 * 1.33, "feet"),
  23121. name: "Dick (Canine)",
  23122. image: {
  23123. source: "./media/characters/artemis/dick-canine.svg"
  23124. },
  23125. form: "oversize-load"
  23126. },
  23127. dickEquineBigger: {
  23128. height: math.unit(0.85 * 1.33, "feet"),
  23129. name: "Dick (Equine)",
  23130. image: {
  23131. source: "./media/characters/artemis/dick-equine.svg"
  23132. },
  23133. form: "oversize-load"
  23134. },
  23135. dickExoticBigger: {
  23136. height: math.unit(0.85 * 1.33, "feet"),
  23137. name: "Dick (Exotic)",
  23138. image: {
  23139. source: "./media/characters/artemis/dick-exotic.svg"
  23140. },
  23141. form: "oversize-load"
  23142. },
  23143. },
  23144. [
  23145. {
  23146. name: "Normal",
  23147. height: math.unit(7.5, "feet"),
  23148. form: "work-safe",
  23149. default: true
  23150. },
  23151. {
  23152. name: "Normal",
  23153. height: math.unit(7.5, "feet"),
  23154. form: "calibrating",
  23155. default: true
  23156. },
  23157. {
  23158. name: "Normal",
  23159. height: math.unit(7.5, "feet"),
  23160. form: "oversize-load",
  23161. default: true
  23162. },
  23163. {
  23164. name: "Enlarged",
  23165. height: math.unit(12, "feet"),
  23166. form: "work-safe",
  23167. },
  23168. {
  23169. name: "Enlarged",
  23170. height: math.unit(12, "feet"),
  23171. form: "calibrating",
  23172. },
  23173. {
  23174. name: "Enlarged",
  23175. height: math.unit(12, "feet"),
  23176. form: "oversize-load",
  23177. },
  23178. ],
  23179. {
  23180. "work-safe": {
  23181. name: "Work-Safe",
  23182. default: true
  23183. },
  23184. "calibrating": {
  23185. name: "Calibrating"
  23186. },
  23187. "oversize-load": {
  23188. name: "Oversize Load"
  23189. }
  23190. }
  23191. ))
  23192. characterMakers.push(() => makeCharacter(
  23193. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23194. {
  23195. front: {
  23196. height: math.unit(5 + 3 / 12, "feet"),
  23197. weight: math.unit(160, "lb"),
  23198. name: "Front",
  23199. image: {
  23200. source: "./media/characters/kira/front.svg",
  23201. extra: 906 / 786,
  23202. bottom: 0.01
  23203. }
  23204. },
  23205. back: {
  23206. height: math.unit(5 + 3 / 12, "feet"),
  23207. weight: math.unit(160, "lb"),
  23208. name: "Back",
  23209. image: {
  23210. source: "./media/characters/kira/back.svg",
  23211. extra: 882 / 757,
  23212. bottom: 0.005
  23213. }
  23214. },
  23215. frontDressed: {
  23216. height: math.unit(5 + 3 / 12, "feet"),
  23217. weight: math.unit(160, "lb"),
  23218. name: "Front (Dressed)",
  23219. image: {
  23220. source: "./media/characters/kira/front-dressed.svg",
  23221. extra: 906 / 786,
  23222. bottom: 0.01
  23223. }
  23224. },
  23225. beans: {
  23226. height: math.unit(0.92, "feet"),
  23227. name: "Beans",
  23228. image: {
  23229. source: "./media/characters/kira/beans.svg"
  23230. }
  23231. },
  23232. },
  23233. [
  23234. {
  23235. name: "Normal",
  23236. height: math.unit(5 + 3 / 12, "feet"),
  23237. default: true
  23238. },
  23239. ]
  23240. ))
  23241. characterMakers.push(() => makeCharacter(
  23242. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23243. {
  23244. front: {
  23245. height: math.unit(5 + 4 / 12, "feet"),
  23246. weight: math.unit(145, "lb"),
  23247. name: "Front",
  23248. image: {
  23249. source: "./media/characters/scramble/front.svg",
  23250. extra: 763 / 727,
  23251. bottom: 0.05
  23252. }
  23253. },
  23254. back: {
  23255. height: math.unit(5 + 4 / 12, "feet"),
  23256. weight: math.unit(145, "lb"),
  23257. name: "Back",
  23258. image: {
  23259. source: "./media/characters/scramble/back.svg",
  23260. extra: 826 / 737,
  23261. bottom: 0.002
  23262. }
  23263. },
  23264. },
  23265. [
  23266. {
  23267. name: "Normal",
  23268. height: math.unit(5 + 4 / 12, "feet"),
  23269. default: true
  23270. },
  23271. ]
  23272. ))
  23273. characterMakers.push(() => makeCharacter(
  23274. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23275. {
  23276. side: {
  23277. height: math.unit(6 + 2 / 12, "feet"),
  23278. weight: math.unit(190, "lb"),
  23279. name: "Side",
  23280. image: {
  23281. source: "./media/characters/biscuit/side.svg",
  23282. extra: 858 / 791,
  23283. bottom: 0.044
  23284. }
  23285. },
  23286. },
  23287. [
  23288. {
  23289. name: "Normal",
  23290. height: math.unit(6 + 2 / 12, "feet"),
  23291. default: true
  23292. },
  23293. ]
  23294. ))
  23295. characterMakers.push(() => makeCharacter(
  23296. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23297. {
  23298. front: {
  23299. height: math.unit(5 + 2 / 12, "feet"),
  23300. weight: math.unit(120, "lb"),
  23301. name: "Front",
  23302. image: {
  23303. source: "./media/characters/poffin/front.svg",
  23304. extra: 786 / 680,
  23305. bottom: 0.005
  23306. }
  23307. },
  23308. },
  23309. [
  23310. {
  23311. name: "Normal",
  23312. height: math.unit(5 + 2 / 12, "feet"),
  23313. default: true
  23314. },
  23315. ]
  23316. ))
  23317. characterMakers.push(() => makeCharacter(
  23318. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23319. {
  23320. front: {
  23321. height: math.unit(6 + 3 / 12, "feet"),
  23322. weight: math.unit(519, "lb"),
  23323. name: "Front",
  23324. image: {
  23325. source: "./media/characters/dhari/front.svg",
  23326. extra: 1048 / 946,
  23327. bottom: 0.015
  23328. }
  23329. },
  23330. back: {
  23331. height: math.unit(6 + 3 / 12, "feet"),
  23332. weight: math.unit(519, "lb"),
  23333. name: "Back",
  23334. image: {
  23335. source: "./media/characters/dhari/back.svg",
  23336. extra: 1048 / 931,
  23337. bottom: 0.005
  23338. }
  23339. },
  23340. frontDressed: {
  23341. height: math.unit(6 + 3 / 12, "feet"),
  23342. weight: math.unit(519, "lb"),
  23343. name: "Front (Dressed)",
  23344. image: {
  23345. source: "./media/characters/dhari/front-dressed.svg",
  23346. extra: 1713 / 1546,
  23347. bottom: 0.02
  23348. }
  23349. },
  23350. backDressed: {
  23351. height: math.unit(6 + 3 / 12, "feet"),
  23352. weight: math.unit(519, "lb"),
  23353. name: "Back (Dressed)",
  23354. image: {
  23355. source: "./media/characters/dhari/back-dressed.svg",
  23356. extra: 1699 / 1537,
  23357. bottom: 0.01
  23358. }
  23359. },
  23360. maw: {
  23361. height: math.unit(0.95, "feet"),
  23362. name: "Maw",
  23363. image: {
  23364. source: "./media/characters/dhari/maw.svg"
  23365. }
  23366. },
  23367. wereFront: {
  23368. height: math.unit(12 + 8 / 12, "feet"),
  23369. weight: math.unit(4000, "lb"),
  23370. name: "Front (Were)",
  23371. image: {
  23372. source: "./media/characters/dhari/were-front.svg",
  23373. extra: 1065 / 969,
  23374. bottom: 0.015
  23375. }
  23376. },
  23377. wereBack: {
  23378. height: math.unit(12 + 8 / 12, "feet"),
  23379. weight: math.unit(4000, "lb"),
  23380. name: "Back (Were)",
  23381. image: {
  23382. source: "./media/characters/dhari/were-back.svg",
  23383. extra: 1065 / 969,
  23384. bottom: 0.012
  23385. }
  23386. },
  23387. wereMaw: {
  23388. height: math.unit(0.625, "meters"),
  23389. name: "Maw (Were)",
  23390. image: {
  23391. source: "./media/characters/dhari/were-maw.svg"
  23392. }
  23393. },
  23394. },
  23395. [
  23396. {
  23397. name: "Normal",
  23398. height: math.unit(6 + 3 / 12, "feet"),
  23399. default: true
  23400. },
  23401. ]
  23402. ))
  23403. characterMakers.push(() => makeCharacter(
  23404. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23405. {
  23406. anthro: {
  23407. height: math.unit(5 + 7 / 12, "feet"),
  23408. weight: math.unit(175, "lb"),
  23409. name: "Anthro",
  23410. image: {
  23411. source: "./media/characters/rena-dyne/anthro.svg",
  23412. extra: 1849 / 1785,
  23413. bottom: 0.005
  23414. }
  23415. },
  23416. taur: {
  23417. height: math.unit(15 + 6 / 12, "feet"),
  23418. weight: math.unit(8000, "lb"),
  23419. name: "Taur",
  23420. image: {
  23421. source: "./media/characters/rena-dyne/taur.svg",
  23422. extra: 2315 / 2234,
  23423. bottom: 0.033
  23424. }
  23425. },
  23426. },
  23427. [
  23428. {
  23429. name: "Normal",
  23430. height: math.unit(5 + 7 / 12, "feet"),
  23431. default: true
  23432. },
  23433. ]
  23434. ))
  23435. characterMakers.push(() => makeCharacter(
  23436. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23437. {
  23438. front: {
  23439. height: math.unit(8, "feet"),
  23440. weight: math.unit(600, "lb"),
  23441. name: "Front",
  23442. image: {
  23443. source: "./media/characters/weremeep/front.svg",
  23444. extra: 970/849,
  23445. bottom: 7/977
  23446. }
  23447. },
  23448. },
  23449. [
  23450. {
  23451. name: "Normal",
  23452. height: math.unit(8, "feet"),
  23453. default: true
  23454. },
  23455. {
  23456. name: "Lorg",
  23457. height: math.unit(12, "feet")
  23458. },
  23459. {
  23460. name: "Oh Lawd She Comin'",
  23461. height: math.unit(20, "feet")
  23462. },
  23463. ]
  23464. ))
  23465. characterMakers.push(() => makeCharacter(
  23466. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23467. {
  23468. front: {
  23469. height: math.unit(4, "feet"),
  23470. weight: math.unit(90, "lb"),
  23471. name: "Front",
  23472. image: {
  23473. source: "./media/characters/reza/front.svg",
  23474. extra: 1183 / 1111,
  23475. bottom: 0.017
  23476. }
  23477. },
  23478. back: {
  23479. height: math.unit(4, "feet"),
  23480. weight: math.unit(90, "lb"),
  23481. name: "Back",
  23482. image: {
  23483. source: "./media/characters/reza/back.svg",
  23484. extra: 1183 / 1111,
  23485. bottom: 0.01
  23486. }
  23487. },
  23488. drake: {
  23489. height: math.unit(30, "feet"),
  23490. weight: math.unit(246960, "lb"),
  23491. name: "Drake",
  23492. image: {
  23493. source: "./media/characters/reza/drake.svg",
  23494. extra: 2350 / 2024,
  23495. bottom: 60.7 / 2403
  23496. }
  23497. },
  23498. },
  23499. [
  23500. {
  23501. name: "Normal",
  23502. height: math.unit(4, "feet"),
  23503. default: true
  23504. },
  23505. ]
  23506. ))
  23507. characterMakers.push(() => makeCharacter(
  23508. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23509. {
  23510. side: {
  23511. height: math.unit(15, "feet"),
  23512. weight: math.unit(14, "tons"),
  23513. name: "Side",
  23514. image: {
  23515. source: "./media/characters/athea/side.svg",
  23516. extra: 960 / 540,
  23517. bottom: 0.003
  23518. }
  23519. },
  23520. sitting: {
  23521. height: math.unit(6 * 2.85, "feet"),
  23522. weight: math.unit(14, "tons"),
  23523. name: "Sitting",
  23524. image: {
  23525. source: "./media/characters/athea/sitting.svg",
  23526. extra: 621 / 581,
  23527. bottom: 0.075
  23528. }
  23529. },
  23530. maw: {
  23531. height: math.unit(7.59498031496063, "feet"),
  23532. name: "Maw",
  23533. image: {
  23534. source: "./media/characters/athea/maw.svg"
  23535. }
  23536. },
  23537. },
  23538. [
  23539. {
  23540. name: "Lap Cat",
  23541. height: math.unit(2.5, "feet")
  23542. },
  23543. {
  23544. name: "Minimacro",
  23545. height: math.unit(15, "feet"),
  23546. default: true
  23547. },
  23548. {
  23549. name: "Macro",
  23550. height: math.unit(120, "feet")
  23551. },
  23552. {
  23553. name: "Macro+",
  23554. height: math.unit(640, "feet")
  23555. },
  23556. {
  23557. name: "Colossus",
  23558. height: math.unit(2.2, "miles")
  23559. },
  23560. ]
  23561. ))
  23562. characterMakers.push(() => makeCharacter(
  23563. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23564. {
  23565. front: {
  23566. height: math.unit(8 + 8 / 12, "feet"),
  23567. weight: math.unit(130, "kg"),
  23568. name: "Front",
  23569. image: {
  23570. source: "./media/characters/seroko/front.svg",
  23571. extra: 1385 / 1280,
  23572. bottom: 0.025
  23573. }
  23574. },
  23575. back: {
  23576. height: math.unit(8 + 8 / 12, "feet"),
  23577. weight: math.unit(130, "kg"),
  23578. name: "Back",
  23579. image: {
  23580. source: "./media/characters/seroko/back.svg",
  23581. extra: 1369 / 1238,
  23582. bottom: 0.018
  23583. }
  23584. },
  23585. frontDressed: {
  23586. height: math.unit(8 + 8 / 12, "feet"),
  23587. weight: math.unit(130, "kg"),
  23588. name: "Front (Dressed)",
  23589. image: {
  23590. source: "./media/characters/seroko/front-dressed.svg",
  23591. extra: 1366 / 1275,
  23592. bottom: 0.03
  23593. }
  23594. },
  23595. },
  23596. [
  23597. {
  23598. name: "Normal",
  23599. height: math.unit(8 + 8 / 12, "feet"),
  23600. default: true
  23601. },
  23602. ]
  23603. ))
  23604. characterMakers.push(() => makeCharacter(
  23605. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23606. {
  23607. front: {
  23608. height: math.unit(5.5, "feet"),
  23609. weight: math.unit(160, "lb"),
  23610. name: "Front",
  23611. image: {
  23612. source: "./media/characters/quatzi/front.svg",
  23613. extra: 2346 / 2242,
  23614. bottom: 0.015
  23615. }
  23616. },
  23617. },
  23618. [
  23619. {
  23620. name: "Normal",
  23621. height: math.unit(5.5, "feet"),
  23622. default: true
  23623. },
  23624. {
  23625. name: "Big",
  23626. height: math.unit(7.7, "feet")
  23627. },
  23628. ]
  23629. ))
  23630. characterMakers.push(() => makeCharacter(
  23631. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23632. {
  23633. front: {
  23634. height: math.unit(5 + 11 / 12, "feet"),
  23635. weight: math.unit(180, "lb"),
  23636. name: "Front",
  23637. image: {
  23638. source: "./media/characters/sen/front.svg",
  23639. extra: 1321 / 1254,
  23640. bottom: 0.015
  23641. }
  23642. },
  23643. side: {
  23644. height: math.unit(5 + 11 / 12, "feet"),
  23645. weight: math.unit(180, "lb"),
  23646. name: "Side",
  23647. image: {
  23648. source: "./media/characters/sen/side.svg",
  23649. extra: 1321 / 1254,
  23650. bottom: 0.007
  23651. }
  23652. },
  23653. back: {
  23654. height: math.unit(5 + 11 / 12, "feet"),
  23655. weight: math.unit(180, "lb"),
  23656. name: "Back",
  23657. image: {
  23658. source: "./media/characters/sen/back.svg",
  23659. extra: 1321 / 1254
  23660. }
  23661. },
  23662. },
  23663. [
  23664. {
  23665. name: "Normal",
  23666. height: math.unit(5 + 11 / 12, "feet"),
  23667. default: true
  23668. },
  23669. ]
  23670. ))
  23671. characterMakers.push(() => makeCharacter(
  23672. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23673. {
  23674. front: {
  23675. height: math.unit(166.6, "cm"),
  23676. weight: math.unit(66.6, "kg"),
  23677. name: "Front",
  23678. image: {
  23679. source: "./media/characters/fruity/front.svg",
  23680. extra: 1510 / 1386,
  23681. bottom: 0.04
  23682. }
  23683. },
  23684. back: {
  23685. height: math.unit(166.6, "cm"),
  23686. weight: math.unit(66.6, "lb"),
  23687. name: "Back",
  23688. image: {
  23689. source: "./media/characters/fruity/back.svg",
  23690. extra: 1563 / 1435,
  23691. bottom: 0.005
  23692. }
  23693. },
  23694. },
  23695. [
  23696. {
  23697. name: "Normal",
  23698. height: math.unit(166.6, "cm"),
  23699. default: true
  23700. },
  23701. {
  23702. name: "Demonic",
  23703. height: math.unit(166.6, "feet")
  23704. },
  23705. ]
  23706. ))
  23707. characterMakers.push(() => makeCharacter(
  23708. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23709. {
  23710. side: {
  23711. height: math.unit(10, "feet"),
  23712. weight: math.unit(500, "lb"),
  23713. name: "Side",
  23714. image: {
  23715. source: "./media/characters/zost/side.svg",
  23716. extra: 2870/2533,
  23717. bottom: 252/3122
  23718. }
  23719. },
  23720. mawFront: {
  23721. height: math.unit(1.08, "meters"),
  23722. name: "Maw (Front)",
  23723. image: {
  23724. source: "./media/characters/zost/maw-front.svg"
  23725. }
  23726. },
  23727. mawSide: {
  23728. height: math.unit(2.66, "feet"),
  23729. name: "Maw (Side)",
  23730. image: {
  23731. source: "./media/characters/zost/maw-side.svg"
  23732. }
  23733. },
  23734. wingspan: {
  23735. height: math.unit(7.4, "feet"),
  23736. name: "Wingspan",
  23737. image: {
  23738. source: "./media/characters/zost/wingspan.svg"
  23739. }
  23740. },
  23741. },
  23742. [
  23743. {
  23744. name: "Normal",
  23745. height: math.unit(10, "feet"),
  23746. default: true
  23747. },
  23748. ]
  23749. ))
  23750. characterMakers.push(() => makeCharacter(
  23751. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23752. {
  23753. front: {
  23754. height: math.unit(5 + 4 / 12, "feet"),
  23755. weight: math.unit(120, "lb"),
  23756. name: "Front",
  23757. image: {
  23758. source: "./media/characters/luci/front.svg",
  23759. extra: 1985 / 1884,
  23760. bottom: 0.04
  23761. }
  23762. },
  23763. back: {
  23764. height: math.unit(5 + 4 / 12, "feet"),
  23765. weight: math.unit(120, "lb"),
  23766. name: "Back",
  23767. image: {
  23768. source: "./media/characters/luci/back.svg",
  23769. extra: 1892 / 1791,
  23770. bottom: 0.002
  23771. }
  23772. },
  23773. },
  23774. [
  23775. {
  23776. name: "Normal",
  23777. height: math.unit(5 + 4 / 12, "feet"),
  23778. default: true
  23779. },
  23780. ]
  23781. ))
  23782. characterMakers.push(() => makeCharacter(
  23783. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23784. {
  23785. front: {
  23786. height: math.unit(1500, "feet"),
  23787. weight: math.unit(3.8e6, "tons"),
  23788. name: "Front",
  23789. image: {
  23790. source: "./media/characters/2th/front.svg",
  23791. extra: 3489 / 3350,
  23792. bottom: 0.1
  23793. }
  23794. },
  23795. foot: {
  23796. height: math.unit(461, "feet"),
  23797. name: "Foot",
  23798. image: {
  23799. source: "./media/characters/2th/foot.svg"
  23800. }
  23801. },
  23802. },
  23803. [
  23804. {
  23805. name: "\"Micro\"",
  23806. height: math.unit(15 + 7 / 12, "feet")
  23807. },
  23808. {
  23809. name: "Normal",
  23810. height: math.unit(1500, "feet"),
  23811. default: true
  23812. },
  23813. {
  23814. name: "Macro",
  23815. height: math.unit(5000, "feet")
  23816. },
  23817. {
  23818. name: "Megamacro",
  23819. height: math.unit(15, "miles")
  23820. },
  23821. {
  23822. name: "Gigamacro",
  23823. height: math.unit(4000, "miles")
  23824. },
  23825. {
  23826. name: "Galactic",
  23827. height: math.unit(50, "AU")
  23828. },
  23829. ]
  23830. ))
  23831. characterMakers.push(() => makeCharacter(
  23832. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23833. {
  23834. front: {
  23835. height: math.unit(5 + 6 / 12, "feet"),
  23836. weight: math.unit(220, "lb"),
  23837. name: "Front",
  23838. image: {
  23839. source: "./media/characters/amethyst/front.svg",
  23840. extra: 2078 / 2040,
  23841. bottom: 0.045
  23842. }
  23843. },
  23844. back: {
  23845. height: math.unit(5 + 6 / 12, "feet"),
  23846. weight: math.unit(220, "lb"),
  23847. name: "Back",
  23848. image: {
  23849. source: "./media/characters/amethyst/back.svg",
  23850. extra: 2021 / 1989,
  23851. bottom: 0.02
  23852. }
  23853. },
  23854. },
  23855. [
  23856. {
  23857. name: "Normal",
  23858. height: math.unit(5 + 6 / 12, "feet"),
  23859. default: true
  23860. },
  23861. ]
  23862. ))
  23863. characterMakers.push(() => makeCharacter(
  23864. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23865. {
  23866. front: {
  23867. height: math.unit(4 + 11 / 12, "feet"),
  23868. weight: math.unit(120, "lb"),
  23869. name: "Front",
  23870. image: {
  23871. source: "./media/characters/yumi-akiyama/front.svg",
  23872. extra: 2638/2432,
  23873. bottom: 70/2708
  23874. }
  23875. },
  23876. back: {
  23877. height: math.unit(4 + 11 / 12, "feet"),
  23878. weight: math.unit(120, "lb"),
  23879. name: "Back",
  23880. image: {
  23881. source: "./media/characters/yumi-akiyama/back.svg",
  23882. extra: 2502/2397,
  23883. bottom: 80/2582
  23884. }
  23885. },
  23886. casual: {
  23887. height: math.unit(4 + 11 / 12, "feet"),
  23888. weight: math.unit(120, "lb"),
  23889. name: "Casual",
  23890. image: {
  23891. source: "./media/characters/yumi-akiyama/casual.svg",
  23892. extra: 958/887,
  23893. bottom: 41/999
  23894. }
  23895. },
  23896. jammies: {
  23897. height: math.unit(4 + 11 / 12, "feet"),
  23898. weight: math.unit(120, "lb"),
  23899. name: "Jammies",
  23900. image: {
  23901. source: "./media/characters/yumi-akiyama/jammies.svg",
  23902. extra: 958/894,
  23903. bottom: 37/995
  23904. }
  23905. },
  23906. warmWeather: {
  23907. height: math.unit(4 + 11 / 12, "feet"),
  23908. weight: math.unit(120, "lb"),
  23909. name: "Warm Weather",
  23910. image: {
  23911. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23912. extra: 929/865,
  23913. bottom: 76/1005
  23914. }
  23915. },
  23916. mouth: {
  23917. height: math.unit(0.35, "feet"),
  23918. name: "Mouth",
  23919. image: {
  23920. source: "./media/characters/yumi-akiyama/mouth.svg"
  23921. }
  23922. },
  23923. paws: {
  23924. height: math.unit(1.05, "feet"),
  23925. name: "Paws",
  23926. image: {
  23927. source: "./media/characters/yumi-akiyama/paws.svg"
  23928. }
  23929. },
  23930. cockRing: {
  23931. height: math.unit(0.225, "feet"),
  23932. name: "Cock Ring",
  23933. image: {
  23934. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  23935. }
  23936. },
  23937. },
  23938. [
  23939. {
  23940. name: "Galactic",
  23941. height: math.unit(50, "galaxies"),
  23942. default: true
  23943. },
  23944. {
  23945. name: "Universal",
  23946. height: math.unit(100, "universes")
  23947. },
  23948. ]
  23949. ))
  23950. characterMakers.push(() => makeCharacter(
  23951. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23952. {
  23953. front: {
  23954. height: math.unit(8, "feet"),
  23955. weight: math.unit(500, "lb"),
  23956. name: "Front",
  23957. image: {
  23958. source: "./media/characters/rifter-yrmori/front.svg",
  23959. extra: 1180 / 1125,
  23960. bottom: 0.02
  23961. }
  23962. },
  23963. back: {
  23964. height: math.unit(8, "feet"),
  23965. weight: math.unit(500, "lb"),
  23966. name: "Back",
  23967. image: {
  23968. source: "./media/characters/rifter-yrmori/back.svg",
  23969. extra: 1190 / 1145,
  23970. bottom: 0.001
  23971. }
  23972. },
  23973. wings: {
  23974. height: math.unit(7.75, "feet"),
  23975. weight: math.unit(500, "lb"),
  23976. name: "Wings",
  23977. image: {
  23978. source: "./media/characters/rifter-yrmori/wings.svg",
  23979. extra: 1357 / 1285
  23980. }
  23981. },
  23982. maw: {
  23983. height: math.unit(0.8, "feet"),
  23984. name: "Maw",
  23985. image: {
  23986. source: "./media/characters/rifter-yrmori/maw.svg"
  23987. }
  23988. },
  23989. mawfront: {
  23990. height: math.unit(1.45, "feet"),
  23991. name: "Maw (Front)",
  23992. image: {
  23993. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23994. }
  23995. },
  23996. },
  23997. [
  23998. {
  23999. name: "Normal",
  24000. height: math.unit(8, "feet"),
  24001. default: true
  24002. },
  24003. {
  24004. name: "Macro",
  24005. height: math.unit(42, "meters")
  24006. },
  24007. ]
  24008. ))
  24009. characterMakers.push(() => makeCharacter(
  24010. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  24011. {
  24012. were: {
  24013. height: math.unit(25 + 6 / 12, "feet"),
  24014. weight: math.unit(10000, "lb"),
  24015. name: "Were",
  24016. image: {
  24017. source: "./media/characters/tahajin/were.svg",
  24018. extra: 801 / 770,
  24019. bottom: 0.042
  24020. }
  24021. },
  24022. aquatic: {
  24023. height: math.unit(6 + 4 / 12, "feet"),
  24024. weight: math.unit(160, "lb"),
  24025. name: "Aquatic",
  24026. image: {
  24027. source: "./media/characters/tahajin/aquatic.svg",
  24028. extra: 572 / 542,
  24029. bottom: 0.04
  24030. }
  24031. },
  24032. chow: {
  24033. height: math.unit(8 + 11 / 12, "feet"),
  24034. weight: math.unit(450, "lb"),
  24035. name: "Chow",
  24036. image: {
  24037. source: "./media/characters/tahajin/chow.svg",
  24038. extra: 660 / 640,
  24039. bottom: 0.015
  24040. }
  24041. },
  24042. demiNaga: {
  24043. height: math.unit(6 + 8 / 12, "feet"),
  24044. weight: math.unit(300, "lb"),
  24045. name: "Demi Naga",
  24046. image: {
  24047. source: "./media/characters/tahajin/demi-naga.svg",
  24048. extra: 643 / 615,
  24049. bottom: 0.1
  24050. }
  24051. },
  24052. data: {
  24053. height: math.unit(5, "inches"),
  24054. weight: math.unit(0.1, "lb"),
  24055. name: "Data",
  24056. image: {
  24057. source: "./media/characters/tahajin/data.svg"
  24058. }
  24059. },
  24060. fluu: {
  24061. height: math.unit(5 + 7 / 12, "feet"),
  24062. weight: math.unit(140, "lb"),
  24063. name: "Fluu",
  24064. image: {
  24065. source: "./media/characters/tahajin/fluu.svg",
  24066. extra: 628 / 592,
  24067. bottom: 0.02
  24068. }
  24069. },
  24070. starWarrior: {
  24071. height: math.unit(4 + 5 / 12, "feet"),
  24072. weight: math.unit(50, "lb"),
  24073. name: "Star Warrior",
  24074. image: {
  24075. source: "./media/characters/tahajin/star-warrior.svg"
  24076. }
  24077. },
  24078. },
  24079. [
  24080. {
  24081. name: "Normal",
  24082. height: math.unit(25 + 6 / 12, "feet"),
  24083. default: true
  24084. },
  24085. ]
  24086. ))
  24087. characterMakers.push(() => makeCharacter(
  24088. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24089. {
  24090. front: {
  24091. height: math.unit(8, "feet"),
  24092. weight: math.unit(350, "lb"),
  24093. name: "Front",
  24094. image: {
  24095. source: "./media/characters/gabira/front.svg",
  24096. extra: 1261/1154,
  24097. bottom: 51/1312
  24098. }
  24099. },
  24100. back: {
  24101. height: math.unit(8, "feet"),
  24102. weight: math.unit(350, "lb"),
  24103. name: "Back",
  24104. image: {
  24105. source: "./media/characters/gabira/back.svg",
  24106. extra: 1265/1163,
  24107. bottom: 46/1311
  24108. }
  24109. },
  24110. head: {
  24111. height: math.unit(2.85, "feet"),
  24112. name: "Head",
  24113. image: {
  24114. source: "./media/characters/gabira/head.svg"
  24115. }
  24116. },
  24117. },
  24118. [
  24119. {
  24120. name: "Normal",
  24121. height: math.unit(8, "feet"),
  24122. default: true
  24123. },
  24124. ]
  24125. ))
  24126. characterMakers.push(() => makeCharacter(
  24127. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24128. {
  24129. front: {
  24130. height: math.unit(5 + 3 / 12, "feet"),
  24131. weight: math.unit(137, "lb"),
  24132. name: "Front",
  24133. image: {
  24134. source: "./media/characters/sasha-katraine/front.svg",
  24135. extra: 1745/1694,
  24136. bottom: 37/1782
  24137. }
  24138. },
  24139. back: {
  24140. height: math.unit(5 + 3 / 12, "feet"),
  24141. weight: math.unit(137, "lb"),
  24142. name: "Back",
  24143. image: {
  24144. source: "./media/characters/sasha-katraine/back.svg",
  24145. extra: 1776/1699,
  24146. bottom: 26/1802
  24147. }
  24148. },
  24149. },
  24150. [
  24151. {
  24152. name: "Micro",
  24153. height: math.unit(5, "inches")
  24154. },
  24155. {
  24156. name: "Normal",
  24157. height: math.unit(5 + 3 / 12, "feet"),
  24158. default: true
  24159. },
  24160. ]
  24161. ))
  24162. characterMakers.push(() => makeCharacter(
  24163. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24164. {
  24165. side: {
  24166. height: math.unit(4, "inches"),
  24167. weight: math.unit(200, "grams"),
  24168. name: "Side",
  24169. image: {
  24170. source: "./media/characters/der/side.svg",
  24171. extra: 719 / 400,
  24172. bottom: 30.6 / 749.9187
  24173. }
  24174. },
  24175. },
  24176. [
  24177. {
  24178. name: "Micro",
  24179. height: math.unit(4, "inches"),
  24180. default: true
  24181. },
  24182. ]
  24183. ))
  24184. characterMakers.push(() => makeCharacter(
  24185. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24186. {
  24187. side: {
  24188. height: math.unit(30, "meters"),
  24189. weight: math.unit(700, "tonnes"),
  24190. name: "Side",
  24191. image: {
  24192. source: "./media/characters/fixerdragon/side.svg",
  24193. extra: (1293.0514 - 116.03) / 1106.86,
  24194. bottom: 116.03 / 1293.0514
  24195. }
  24196. },
  24197. },
  24198. [
  24199. {
  24200. name: "Planck",
  24201. height: math.unit(1.6e-35, "meters")
  24202. },
  24203. {
  24204. name: "Micro",
  24205. height: math.unit(0.4, "meters")
  24206. },
  24207. {
  24208. name: "Normal",
  24209. height: math.unit(30, "meters"),
  24210. default: true
  24211. },
  24212. {
  24213. name: "Megamacro",
  24214. height: math.unit(1.2, "megameters")
  24215. },
  24216. {
  24217. name: "Teramacro",
  24218. height: math.unit(130, "terameters")
  24219. },
  24220. {
  24221. name: "Yottamacro",
  24222. height: math.unit(6200, "yottameters")
  24223. },
  24224. ]
  24225. ));
  24226. characterMakers.push(() => makeCharacter(
  24227. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24228. {
  24229. front: {
  24230. height: math.unit(8, "feet"),
  24231. weight: math.unit(250, "lb"),
  24232. name: "Front",
  24233. image: {
  24234. source: "./media/characters/kite/front.svg",
  24235. extra: 2796 / 2659,
  24236. bottom: 0.002
  24237. }
  24238. },
  24239. },
  24240. [
  24241. {
  24242. name: "Normal",
  24243. height: math.unit(8, "feet"),
  24244. default: true
  24245. },
  24246. {
  24247. name: "Macro",
  24248. height: math.unit(360, "feet")
  24249. },
  24250. {
  24251. name: "Megamacro",
  24252. height: math.unit(1500, "feet")
  24253. },
  24254. ]
  24255. ))
  24256. characterMakers.push(() => makeCharacter(
  24257. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24258. {
  24259. anthro_front: {
  24260. height: math.unit(5 + 11/12, "feet"),
  24261. weight: math.unit(170, "lb"),
  24262. name: "Front",
  24263. image: {
  24264. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24265. extra: 1735/1585,
  24266. bottom: 96/1831
  24267. },
  24268. form: "anthro",
  24269. default: true
  24270. },
  24271. anthro_back: {
  24272. height: math.unit(5 + 11/12, "feet"),
  24273. weight: math.unit(170, "lb"),
  24274. name: "Back",
  24275. image: {
  24276. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24277. extra: 1749/1607,
  24278. bottom: 28/1777
  24279. },
  24280. form: "anthro"
  24281. },
  24282. anthro_male: {
  24283. height: math.unit(5 + 11/12, "feet"),
  24284. weight: math.unit(170, "lb"),
  24285. name: "Male",
  24286. image: {
  24287. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24288. extra: 1855/1713,
  24289. bottom: 63/1918
  24290. },
  24291. form: "anthro"
  24292. },
  24293. taur_front: {
  24294. height: math.unit(5 + 7/12, "feet"),
  24295. weight: math.unit(170, "lb"),
  24296. name: "Front",
  24297. image: {
  24298. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24299. extra: 1151/1059,
  24300. bottom: 356/1507
  24301. },
  24302. form: "taur",
  24303. default: true
  24304. },
  24305. anthro_frontDressed: {
  24306. height: math.unit(5 + 11/12, "feet"),
  24307. weight: math.unit(170, "lb"),
  24308. name: "Front (Dressed)",
  24309. image: {
  24310. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24311. extra: 1735/1585,
  24312. bottom: 96/1831
  24313. },
  24314. form: "anthro"
  24315. },
  24316. anthro_backDressed: {
  24317. height: math.unit(5 + 11/12, "feet"),
  24318. weight: math.unit(170, "lb"),
  24319. name: "Back (Dressed)",
  24320. image: {
  24321. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24322. extra: 1749/1607,
  24323. bottom: 28/1777
  24324. },
  24325. form: "anthro"
  24326. },
  24327. anthro_maleDressed: {
  24328. height: math.unit(5 + 11/12, "feet"),
  24329. weight: math.unit(170, "lb"),
  24330. name: "Male (Dressed)",
  24331. image: {
  24332. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24333. extra: 1855/1713,
  24334. bottom: 63/1918
  24335. },
  24336. form: "anthro"
  24337. },
  24338. taur_frontDressed: {
  24339. height: math.unit(5 + 7/12, "feet"),
  24340. weight: math.unit(170, "lb"),
  24341. name: "Front (Dressed)",
  24342. image: {
  24343. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24344. extra: 1151/1059,
  24345. bottom: 356/1507
  24346. },
  24347. form: "taur"
  24348. },
  24349. maw: {
  24350. height: math.unit(1.46, "feet"),
  24351. name: "Maw",
  24352. image: {
  24353. source: "./media/characters/poojawa-vynar/maw.svg"
  24354. },
  24355. allForms: true
  24356. },
  24357. head: {
  24358. height: math.unit(2.34, "feet"),
  24359. name: "Head",
  24360. image: {
  24361. source: "./media/characters/poojawa-vynar/head.svg"
  24362. },
  24363. allForms: true
  24364. },
  24365. leftPaw: {
  24366. height: math.unit(1.72, "feet"),
  24367. name: "Left Paw",
  24368. image: {
  24369. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24370. },
  24371. allForms: true
  24372. },
  24373. rightPaw: {
  24374. height: math.unit(1.61, "feet"),
  24375. name: "Right Paw",
  24376. image: {
  24377. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24378. },
  24379. allForms: true
  24380. },
  24381. toering: {
  24382. height: math.unit(2.9, "inches"),
  24383. name: "Toering",
  24384. image: {
  24385. source: "./media/characters/poojawa-vynar/toering.svg"
  24386. },
  24387. allForms: true
  24388. },
  24389. shaft: {
  24390. height: math.unit(0.625, "feet"),
  24391. name: "Shaft",
  24392. image: {
  24393. source: "./media/characters/poojawa-vynar/shaft.svg"
  24394. },
  24395. allForms: true
  24396. },
  24397. spade: {
  24398. height: math.unit(0.42, "feet"),
  24399. name: "Spade",
  24400. image: {
  24401. source: "./media/characters/poojawa-vynar/spade.svg"
  24402. },
  24403. allForms: true
  24404. },
  24405. },
  24406. [
  24407. {
  24408. name: "Shortstack",
  24409. height: math.unit(4, "feet"),
  24410. form: "anthro"
  24411. },
  24412. {
  24413. name: "Normal",
  24414. height: math.unit(5 + 11 / 12, "feet"),
  24415. form: "anthro",
  24416. default: true
  24417. },
  24418. {
  24419. name: "Tauric",
  24420. height: math.unit(4, "meters"),
  24421. form: "taur",
  24422. default: true
  24423. },
  24424. ],
  24425. {
  24426. "anthro": {
  24427. name: "Anthro",
  24428. default: true
  24429. },
  24430. "taur": {
  24431. name: "Taur",
  24432. },
  24433. }
  24434. ))
  24435. characterMakers.push(() => makeCharacter(
  24436. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24437. {
  24438. front: {
  24439. height: math.unit(293, "meters"),
  24440. weight: math.unit(70400, "tons"),
  24441. name: "Front",
  24442. image: {
  24443. source: "./media/characters/violette/front.svg",
  24444. extra: 1227 / 1180,
  24445. bottom: 0.005
  24446. }
  24447. },
  24448. back: {
  24449. height: math.unit(293, "meters"),
  24450. weight: math.unit(70400, "tons"),
  24451. name: "Back",
  24452. image: {
  24453. source: "./media/characters/violette/back.svg",
  24454. extra: 1227 / 1180,
  24455. bottom: 0.005
  24456. }
  24457. },
  24458. },
  24459. [
  24460. {
  24461. name: "Macro",
  24462. height: math.unit(293, "meters"),
  24463. default: true
  24464. },
  24465. ]
  24466. ))
  24467. characterMakers.push(() => makeCharacter(
  24468. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24469. {
  24470. front: {
  24471. height: math.unit(1050, "feet"),
  24472. weight: math.unit(200000, "tons"),
  24473. name: "Front",
  24474. image: {
  24475. source: "./media/characters/alessandra/front.svg",
  24476. extra: 960 / 912,
  24477. bottom: 0.06
  24478. }
  24479. },
  24480. },
  24481. [
  24482. {
  24483. name: "Macro",
  24484. height: math.unit(1050, "feet")
  24485. },
  24486. {
  24487. name: "Macro+",
  24488. height: math.unit(900, "meters"),
  24489. default: true
  24490. },
  24491. ]
  24492. ))
  24493. characterMakers.push(() => makeCharacter(
  24494. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24495. {
  24496. front: {
  24497. height: math.unit(5, "feet"),
  24498. weight: math.unit(187, "lb"),
  24499. name: "Front",
  24500. image: {
  24501. source: "./media/characters/person/front.svg",
  24502. extra: 3087 / 2945,
  24503. bottom: 91 / 3181
  24504. }
  24505. },
  24506. },
  24507. [
  24508. {
  24509. name: "Micro",
  24510. height: math.unit(3, "inches")
  24511. },
  24512. {
  24513. name: "Normal",
  24514. height: math.unit(5, "feet"),
  24515. default: true
  24516. },
  24517. {
  24518. name: "Macro",
  24519. height: math.unit(90, "feet")
  24520. },
  24521. {
  24522. name: "Max Size",
  24523. height: math.unit(280, "feet")
  24524. },
  24525. ]
  24526. ))
  24527. characterMakers.push(() => makeCharacter(
  24528. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24529. {
  24530. front: {
  24531. height: math.unit(4.5, "meters"),
  24532. weight: math.unit(3200, "lb"),
  24533. name: "Front",
  24534. image: {
  24535. source: "./media/characters/ty/front.svg",
  24536. extra: 1038 / 960,
  24537. bottom: 31.156 / 1068
  24538. }
  24539. },
  24540. back: {
  24541. height: math.unit(4.5, "meters"),
  24542. weight: math.unit(3200, "lb"),
  24543. name: "Back",
  24544. image: {
  24545. source: "./media/characters/ty/back.svg",
  24546. extra: 1044 / 966,
  24547. bottom: 7.48 / 1049
  24548. }
  24549. },
  24550. },
  24551. [
  24552. {
  24553. name: "Normal",
  24554. height: math.unit(4.5, "meters"),
  24555. default: true
  24556. },
  24557. ]
  24558. ))
  24559. characterMakers.push(() => makeCharacter(
  24560. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24561. {
  24562. front: {
  24563. height: math.unit(5 + 4 / 12, "feet"),
  24564. weight: math.unit(115, "lb"),
  24565. name: "Front",
  24566. image: {
  24567. source: "./media/characters/rocky/front.svg",
  24568. extra: 1012 / 975,
  24569. bottom: 54 / 1066
  24570. }
  24571. },
  24572. },
  24573. [
  24574. {
  24575. name: "Normal",
  24576. height: math.unit(5 + 4 / 12, "feet"),
  24577. default: true
  24578. },
  24579. ]
  24580. ))
  24581. characterMakers.push(() => makeCharacter(
  24582. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24583. {
  24584. upright: {
  24585. height: math.unit(6, "meters"),
  24586. weight: math.unit(4000, "kg"),
  24587. name: "Upright",
  24588. image: {
  24589. source: "./media/characters/ruin/upright.svg",
  24590. extra: 668 / 661,
  24591. bottom: 42 / 799.8396
  24592. }
  24593. },
  24594. },
  24595. [
  24596. {
  24597. name: "Normal",
  24598. height: math.unit(6, "meters"),
  24599. default: true
  24600. },
  24601. ]
  24602. ))
  24603. characterMakers.push(() => makeCharacter(
  24604. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24605. {
  24606. front: {
  24607. height: math.unit(5, "feet"),
  24608. weight: math.unit(106, "lb"),
  24609. name: "Front",
  24610. image: {
  24611. source: "./media/characters/robin/front.svg",
  24612. extra: 862 / 799,
  24613. bottom: 42.4 / 914.8856
  24614. }
  24615. },
  24616. },
  24617. [
  24618. {
  24619. name: "Normal",
  24620. height: math.unit(5, "feet"),
  24621. default: true
  24622. },
  24623. ]
  24624. ))
  24625. characterMakers.push(() => makeCharacter(
  24626. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24627. {
  24628. side: {
  24629. height: math.unit(3, "feet"),
  24630. weight: math.unit(225, "lb"),
  24631. name: "Side",
  24632. image: {
  24633. source: "./media/characters/saian/side.svg",
  24634. extra: 566 / 356,
  24635. bottom: 79.7 / 643
  24636. }
  24637. },
  24638. maw: {
  24639. height: math.unit(2.85, "feet"),
  24640. name: "Maw",
  24641. image: {
  24642. source: "./media/characters/saian/maw.svg"
  24643. }
  24644. },
  24645. },
  24646. [
  24647. {
  24648. name: "Normal",
  24649. height: math.unit(3, "feet"),
  24650. default: true
  24651. },
  24652. ]
  24653. ))
  24654. characterMakers.push(() => makeCharacter(
  24655. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24656. {
  24657. side: {
  24658. height: math.unit(8, "feet"),
  24659. weight: math.unit(300, "lb"),
  24660. name: "Side",
  24661. image: {
  24662. source: "./media/characters/equus-silvermane/side.svg",
  24663. extra: 2176 / 2050,
  24664. bottom: 65.7 / 2245
  24665. }
  24666. },
  24667. front: {
  24668. height: math.unit(8, "feet"),
  24669. weight: math.unit(300, "lb"),
  24670. name: "Front",
  24671. image: {
  24672. source: "./media/characters/equus-silvermane/front.svg",
  24673. extra: 4633 / 4400,
  24674. bottom: 71.3 / 4706.915
  24675. }
  24676. },
  24677. sideStepping: {
  24678. height: math.unit(8, "feet"),
  24679. weight: math.unit(300, "lb"),
  24680. name: "Side (Stepping)",
  24681. image: {
  24682. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24683. extra: 1968 / 1860,
  24684. bottom: 16.4 / 1989
  24685. }
  24686. },
  24687. },
  24688. [
  24689. {
  24690. name: "Normal",
  24691. height: math.unit(8, "feet")
  24692. },
  24693. {
  24694. name: "Minimacro",
  24695. height: math.unit(75, "feet"),
  24696. default: true
  24697. },
  24698. {
  24699. name: "Macro",
  24700. height: math.unit(150, "feet")
  24701. },
  24702. {
  24703. name: "Macro+",
  24704. height: math.unit(1000, "feet")
  24705. },
  24706. {
  24707. name: "Megamacro",
  24708. height: math.unit(1, "mile")
  24709. },
  24710. ]
  24711. ))
  24712. characterMakers.push(() => makeCharacter(
  24713. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24714. {
  24715. side: {
  24716. height: math.unit(20, "feet"),
  24717. weight: math.unit(30000, "kg"),
  24718. name: "Side",
  24719. image: {
  24720. source: "./media/characters/windar/side.svg",
  24721. extra: 1491 / 1248,
  24722. bottom: 82.56 / 1568
  24723. }
  24724. },
  24725. },
  24726. [
  24727. {
  24728. name: "Normal",
  24729. height: math.unit(20, "feet"),
  24730. default: true
  24731. },
  24732. ]
  24733. ))
  24734. characterMakers.push(() => makeCharacter(
  24735. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24736. {
  24737. side: {
  24738. height: math.unit(15.66, "feet"),
  24739. weight: math.unit(150, "lb"),
  24740. name: "Side",
  24741. image: {
  24742. source: "./media/characters/melody/side.svg",
  24743. extra: 1097 / 944,
  24744. bottom: 11.8 / 1109
  24745. }
  24746. },
  24747. sideOutfit: {
  24748. height: math.unit(15.66, "feet"),
  24749. weight: math.unit(150, "lb"),
  24750. name: "Side (Outfit)",
  24751. image: {
  24752. source: "./media/characters/melody/side-outfit.svg",
  24753. extra: 1097 / 944,
  24754. bottom: 11.8 / 1109
  24755. }
  24756. },
  24757. },
  24758. [
  24759. {
  24760. name: "Normal",
  24761. height: math.unit(15.66, "feet"),
  24762. default: true
  24763. },
  24764. ]
  24765. ))
  24766. characterMakers.push(() => makeCharacter(
  24767. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24768. {
  24769. armoredFront: {
  24770. height: math.unit(8, "feet"),
  24771. weight: math.unit(325, "lb"),
  24772. name: "Front",
  24773. image: {
  24774. source: "./media/characters/windera/armored-front.svg",
  24775. extra: 1830/1598,
  24776. bottom: 151/1981
  24777. },
  24778. form: "armored",
  24779. default: true
  24780. },
  24781. macroFront: {
  24782. height: math.unit(70, "feet"),
  24783. weight: math.unit(315453, "lb"),
  24784. name: "Front",
  24785. image: {
  24786. source: "./media/characters/windera/macro-front.svg",
  24787. extra: 963/883,
  24788. bottom: 23/986
  24789. },
  24790. form: "macro",
  24791. default: true
  24792. },
  24793. },
  24794. [
  24795. {
  24796. name: "Normal",
  24797. height: math.unit(8, "feet"),
  24798. default: true,
  24799. form: "armored"
  24800. },
  24801. {
  24802. name: "Normal",
  24803. height: math.unit(70, "feet"),
  24804. default: true,
  24805. form: "macro"
  24806. },
  24807. ],
  24808. {
  24809. "armored": {
  24810. name: "Armored",
  24811. default: true
  24812. },
  24813. "macro": {
  24814. name: "Macro",
  24815. },
  24816. }
  24817. ))
  24818. characterMakers.push(() => makeCharacter(
  24819. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24820. {
  24821. front: {
  24822. height: math.unit(28.75, "feet"),
  24823. weight: math.unit(2000, "kg"),
  24824. name: "Front",
  24825. image: {
  24826. source: "./media/characters/sonear/front.svg",
  24827. extra: 1041.1 / 964.9,
  24828. bottom: 53.7 / 1096.6
  24829. }
  24830. },
  24831. },
  24832. [
  24833. {
  24834. name: "Normal",
  24835. height: math.unit(28.75, "feet"),
  24836. default: true
  24837. },
  24838. ]
  24839. ))
  24840. characterMakers.push(() => makeCharacter(
  24841. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24842. {
  24843. side: {
  24844. height: math.unit(25.5, "feet"),
  24845. weight: math.unit(23000, "kg"),
  24846. name: "Side",
  24847. image: {
  24848. source: "./media/characters/kanara/side.svg"
  24849. }
  24850. },
  24851. },
  24852. [
  24853. {
  24854. name: "Normal",
  24855. height: math.unit(25.5, "feet"),
  24856. default: true
  24857. },
  24858. ]
  24859. ))
  24860. characterMakers.push(() => makeCharacter(
  24861. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24862. {
  24863. side: {
  24864. height: math.unit(10, "feet"),
  24865. weight: math.unit(1000, "kg"),
  24866. name: "Side",
  24867. image: {
  24868. source: "./media/characters/ereus/side.svg",
  24869. extra: 1157 / 959,
  24870. bottom: 153 / 1312.5
  24871. }
  24872. },
  24873. },
  24874. [
  24875. {
  24876. name: "Normal",
  24877. height: math.unit(10, "feet"),
  24878. default: true
  24879. },
  24880. ]
  24881. ))
  24882. characterMakers.push(() => makeCharacter(
  24883. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24884. {
  24885. side: {
  24886. height: math.unit(4.5, "feet"),
  24887. weight: math.unit(500, "lb"),
  24888. name: "Side",
  24889. image: {
  24890. source: "./media/characters/e-ter/side.svg",
  24891. extra: 1550 / 1248,
  24892. bottom: 146 / 1694
  24893. }
  24894. },
  24895. },
  24896. [
  24897. {
  24898. name: "Normal",
  24899. height: math.unit(4.5, "feet"),
  24900. default: true
  24901. },
  24902. ]
  24903. ))
  24904. characterMakers.push(() => makeCharacter(
  24905. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24906. {
  24907. side: {
  24908. height: math.unit(9.7, "feet"),
  24909. weight: math.unit(4000, "kg"),
  24910. name: "Side",
  24911. image: {
  24912. source: "./media/characters/yamie/side.svg"
  24913. }
  24914. },
  24915. },
  24916. [
  24917. {
  24918. name: "Normal",
  24919. height: math.unit(9.7, "feet"),
  24920. default: true
  24921. },
  24922. ]
  24923. ))
  24924. characterMakers.push(() => makeCharacter(
  24925. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24926. {
  24927. front: {
  24928. height: math.unit(50, "feet"),
  24929. weight: math.unit(50000, "kg"),
  24930. name: "Front",
  24931. image: {
  24932. source: "./media/characters/anders/front.svg",
  24933. extra: 570 / 539,
  24934. bottom: 14.7 / 586.7
  24935. }
  24936. },
  24937. },
  24938. [
  24939. {
  24940. name: "Large",
  24941. height: math.unit(50, "feet")
  24942. },
  24943. {
  24944. name: "Macro",
  24945. height: math.unit(2000, "feet"),
  24946. default: true
  24947. },
  24948. {
  24949. name: "Megamacro",
  24950. height: math.unit(12, "miles")
  24951. },
  24952. ]
  24953. ))
  24954. characterMakers.push(() => makeCharacter(
  24955. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24956. {
  24957. front: {
  24958. height: math.unit(7 + 2 / 12, "feet"),
  24959. weight: math.unit(300, "lb"),
  24960. name: "Front",
  24961. image: {
  24962. source: "./media/characters/reban/front.svg",
  24963. extra: 1287/1212,
  24964. bottom: 148/1435
  24965. }
  24966. },
  24967. head: {
  24968. height: math.unit(1.95, "feet"),
  24969. name: "Head",
  24970. image: {
  24971. source: "./media/characters/reban/head.svg"
  24972. }
  24973. },
  24974. maw: {
  24975. height: math.unit(0.95, "feet"),
  24976. name: "Maw",
  24977. image: {
  24978. source: "./media/characters/reban/maw.svg"
  24979. }
  24980. },
  24981. foot: {
  24982. height: math.unit(1.65, "feet"),
  24983. name: "Foot",
  24984. image: {
  24985. source: "./media/characters/reban/foot.svg"
  24986. }
  24987. },
  24988. dick: {
  24989. height: math.unit(7 / 5, "feet"),
  24990. name: "Dick",
  24991. image: {
  24992. source: "./media/characters/reban/dick.svg"
  24993. }
  24994. },
  24995. },
  24996. [
  24997. {
  24998. name: "Natural Height",
  24999. height: math.unit(7 + 2 / 12, "feet")
  25000. },
  25001. {
  25002. name: "Macro",
  25003. height: math.unit(500, "feet"),
  25004. default: true
  25005. },
  25006. {
  25007. name: "Canon Height",
  25008. height: math.unit(50, "AU")
  25009. },
  25010. ]
  25011. ))
  25012. characterMakers.push(() => makeCharacter(
  25013. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  25014. {
  25015. front: {
  25016. height: math.unit(6, "feet"),
  25017. weight: math.unit(150, "lb"),
  25018. name: "Front",
  25019. image: {
  25020. source: "./media/characters/terrance-keayes/front.svg",
  25021. extra: 1.005,
  25022. bottom: 151 / 1615
  25023. }
  25024. },
  25025. side: {
  25026. height: math.unit(6, "feet"),
  25027. weight: math.unit(150, "lb"),
  25028. name: "Side",
  25029. image: {
  25030. source: "./media/characters/terrance-keayes/side.svg",
  25031. extra: 1.005,
  25032. bottom: 129.4 / 1544
  25033. }
  25034. },
  25035. back: {
  25036. height: math.unit(6, "feet"),
  25037. weight: math.unit(150, "lb"),
  25038. name: "Back",
  25039. image: {
  25040. source: "./media/characters/terrance-keayes/back.svg",
  25041. extra: 1.005,
  25042. bottom: 58.4 / 1557.3
  25043. }
  25044. },
  25045. dick: {
  25046. height: math.unit(6 * 0.208, "feet"),
  25047. name: "Dick",
  25048. image: {
  25049. source: "./media/characters/terrance-keayes/dick.svg"
  25050. }
  25051. },
  25052. },
  25053. [
  25054. {
  25055. name: "Canon Height",
  25056. height: math.unit(35, "miles"),
  25057. default: true
  25058. },
  25059. ]
  25060. ))
  25061. characterMakers.push(() => makeCharacter(
  25062. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25063. {
  25064. front: {
  25065. height: math.unit(6, "feet"),
  25066. weight: math.unit(150, "lb"),
  25067. name: "Front",
  25068. image: {
  25069. source: "./media/characters/ofelia/front.svg",
  25070. extra: 1130/1117,
  25071. bottom: 91/1221
  25072. }
  25073. },
  25074. back: {
  25075. height: math.unit(6, "feet"),
  25076. weight: math.unit(150, "lb"),
  25077. name: "Back",
  25078. image: {
  25079. source: "./media/characters/ofelia/back.svg",
  25080. extra: 1172/1159,
  25081. bottom: 28/1200
  25082. }
  25083. },
  25084. maw: {
  25085. height: math.unit(1, "feet"),
  25086. name: "Maw",
  25087. image: {
  25088. source: "./media/characters/ofelia/maw.svg"
  25089. }
  25090. },
  25091. foot: {
  25092. height: math.unit(1.949, "feet"),
  25093. name: "Foot",
  25094. image: {
  25095. source: "./media/characters/ofelia/foot.svg"
  25096. }
  25097. },
  25098. },
  25099. [
  25100. {
  25101. name: "Canon Height",
  25102. height: math.unit(2000, "miles"),
  25103. default: true
  25104. },
  25105. ]
  25106. ))
  25107. characterMakers.push(() => makeCharacter(
  25108. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25109. {
  25110. front: {
  25111. height: math.unit(6, "feet"),
  25112. weight: math.unit(150, "lb"),
  25113. name: "Front",
  25114. image: {
  25115. source: "./media/characters/samuel/front.svg",
  25116. extra: 265 / 258,
  25117. bottom: 2 / 266.1566
  25118. }
  25119. },
  25120. },
  25121. [
  25122. {
  25123. name: "Macro",
  25124. height: math.unit(100, "feet"),
  25125. default: true
  25126. },
  25127. {
  25128. name: "Full Size",
  25129. height: math.unit(1000, "miles")
  25130. },
  25131. ]
  25132. ))
  25133. characterMakers.push(() => makeCharacter(
  25134. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25135. {
  25136. front: {
  25137. height: math.unit(6, "feet"),
  25138. weight: math.unit(300, "lb"),
  25139. name: "Front",
  25140. image: {
  25141. source: "./media/characters/beishir-kiel/front.svg",
  25142. extra: 569 / 547,
  25143. bottom: 41.9 / 609
  25144. }
  25145. },
  25146. maw: {
  25147. height: math.unit(6 * 0.202, "feet"),
  25148. name: "Maw",
  25149. image: {
  25150. source: "./media/characters/beishir-kiel/maw.svg"
  25151. }
  25152. },
  25153. },
  25154. [
  25155. {
  25156. name: "Macro",
  25157. height: math.unit(300, "feet"),
  25158. default: true
  25159. },
  25160. ]
  25161. ))
  25162. characterMakers.push(() => makeCharacter(
  25163. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25164. {
  25165. front: {
  25166. height: math.unit(5 + 7/12, "feet"),
  25167. weight: math.unit(120, "lb"),
  25168. name: "Front",
  25169. image: {
  25170. source: "./media/characters/logan-grey/front.svg",
  25171. extra: 1836/1738,
  25172. bottom: 108/1944
  25173. }
  25174. },
  25175. back: {
  25176. height: math.unit(5 + 7/12, "feet"),
  25177. weight: math.unit(120, "lb"),
  25178. name: "Back",
  25179. image: {
  25180. source: "./media/characters/logan-grey/back.svg",
  25181. extra: 1880/1794,
  25182. bottom: 24/1904
  25183. }
  25184. },
  25185. frontSfw: {
  25186. height: math.unit(5 + 7/12, "feet"),
  25187. weight: math.unit(120, "lb"),
  25188. name: "Front (SFW)",
  25189. image: {
  25190. source: "./media/characters/logan-grey/front-sfw.svg",
  25191. extra: 1836/1738,
  25192. bottom: 108/1944
  25193. }
  25194. },
  25195. backSfw: {
  25196. height: math.unit(5 + 7/12, "feet"),
  25197. weight: math.unit(120, "lb"),
  25198. name: "Back (SFW)",
  25199. image: {
  25200. source: "./media/characters/logan-grey/back-sfw.svg",
  25201. extra: 1880/1794,
  25202. bottom: 24/1904
  25203. }
  25204. },
  25205. hands: {
  25206. height: math.unit(0.84, "feet"),
  25207. name: "Hands",
  25208. image: {
  25209. source: "./media/characters/logan-grey/hands.svg"
  25210. }
  25211. },
  25212. paws: {
  25213. height: math.unit(0.72, "feet"),
  25214. name: "Paws",
  25215. image: {
  25216. source: "./media/characters/logan-grey/paws.svg"
  25217. }
  25218. },
  25219. cock: {
  25220. height: math.unit(1.45, "feet"),
  25221. name: "Cock",
  25222. image: {
  25223. source: "./media/characters/logan-grey/cock.svg"
  25224. }
  25225. },
  25226. cockAlt: {
  25227. height: math.unit(1.437, "feet"),
  25228. name: "Cock (alt)",
  25229. image: {
  25230. source: "./media/characters/logan-grey/cock-alt.svg"
  25231. }
  25232. },
  25233. },
  25234. [
  25235. {
  25236. name: "Normal",
  25237. height: math.unit(5 + 8 / 12, "feet")
  25238. },
  25239. {
  25240. name: "The 500 Foot Femboy",
  25241. height: math.unit(500, "feet"),
  25242. default: true
  25243. },
  25244. {
  25245. name: "Megmacro",
  25246. height: math.unit(20, "miles")
  25247. },
  25248. ]
  25249. ))
  25250. characterMakers.push(() => makeCharacter(
  25251. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25252. {
  25253. front: {
  25254. height: math.unit(8 + 2 / 12, "feet"),
  25255. weight: math.unit(275, "lb"),
  25256. name: "Front",
  25257. image: {
  25258. source: "./media/characters/draganta/front.svg",
  25259. extra: 1177 / 1135,
  25260. bottom: 33.46 / 1212.1
  25261. }
  25262. },
  25263. },
  25264. [
  25265. {
  25266. name: "Normal",
  25267. height: math.unit(8 + 6 / 12, "feet"),
  25268. default: true
  25269. },
  25270. {
  25271. name: "Macro",
  25272. height: math.unit(150, "feet")
  25273. },
  25274. {
  25275. name: "Megamacro",
  25276. height: math.unit(1000, "miles")
  25277. },
  25278. ]
  25279. ))
  25280. characterMakers.push(() => makeCharacter(
  25281. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25282. {
  25283. front: {
  25284. height: math.unit(1.72, "m"),
  25285. weight: math.unit(80, "lb"),
  25286. name: "Front",
  25287. image: {
  25288. source: "./media/characters/voski/front.svg",
  25289. extra: 2076.22 / 2022.4,
  25290. bottom: 102.7 / 2177.3866
  25291. }
  25292. },
  25293. frontFlaccid: {
  25294. height: math.unit(1.72, "m"),
  25295. weight: math.unit(80, "lb"),
  25296. name: "Front (Flaccid)",
  25297. image: {
  25298. source: "./media/characters/voski/front-flaccid.svg",
  25299. extra: 2076.22 / 2022.4,
  25300. bottom: 102.7 / 2177.3866
  25301. }
  25302. },
  25303. frontErect: {
  25304. height: math.unit(1.72, "m"),
  25305. weight: math.unit(80, "lb"),
  25306. name: "Front (Erect)",
  25307. image: {
  25308. source: "./media/characters/voski/front-erect.svg",
  25309. extra: 2076.22 / 2022.4,
  25310. bottom: 102.7 / 2177.3866
  25311. }
  25312. },
  25313. back: {
  25314. height: math.unit(1.72, "m"),
  25315. weight: math.unit(80, "lb"),
  25316. name: "Back",
  25317. image: {
  25318. source: "./media/characters/voski/back.svg",
  25319. extra: 2104 / 2051,
  25320. bottom: 10.45 / 2113.63
  25321. }
  25322. },
  25323. },
  25324. [
  25325. {
  25326. name: "Normal",
  25327. height: math.unit(1.72, "m")
  25328. },
  25329. {
  25330. name: "Macro",
  25331. height: math.unit(55, "m"),
  25332. default: true
  25333. },
  25334. {
  25335. name: "Macro+",
  25336. height: math.unit(300, "m")
  25337. },
  25338. {
  25339. name: "Macro++",
  25340. height: math.unit(700, "m")
  25341. },
  25342. {
  25343. name: "Macro+++",
  25344. height: math.unit(4500, "m")
  25345. },
  25346. {
  25347. name: "Macro++++",
  25348. height: math.unit(45, "km")
  25349. },
  25350. {
  25351. name: "Macro+++++",
  25352. height: math.unit(1220, "km")
  25353. },
  25354. ]
  25355. ))
  25356. characterMakers.push(() => makeCharacter(
  25357. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25358. {
  25359. front: {
  25360. height: math.unit(2.3, "m"),
  25361. weight: math.unit(304, "kg"),
  25362. name: "Front",
  25363. image: {
  25364. source: "./media/characters/icowom-lee/front.svg",
  25365. extra: 985 / 955,
  25366. bottom: 25.4 / 1012
  25367. }
  25368. },
  25369. fronttentacles: {
  25370. height: math.unit(2.3, "m"),
  25371. weight: math.unit(304, "kg"),
  25372. name: "Front-tentacles",
  25373. image: {
  25374. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25375. extra: 985 / 955,
  25376. bottom: 25.4 / 1012
  25377. }
  25378. },
  25379. back: {
  25380. height: math.unit(2.3, "m"),
  25381. weight: math.unit(304, "kg"),
  25382. name: "Back",
  25383. image: {
  25384. source: "./media/characters/icowom-lee/back.svg",
  25385. extra: 975 / 954,
  25386. bottom: 9.5 / 985
  25387. }
  25388. },
  25389. backtentacles: {
  25390. height: math.unit(2.3, "m"),
  25391. weight: math.unit(304, "kg"),
  25392. name: "Back-tentacles",
  25393. image: {
  25394. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25395. extra: 975 / 954,
  25396. bottom: 9.5 / 985
  25397. }
  25398. },
  25399. frontDressed: {
  25400. height: math.unit(2.3, "m"),
  25401. weight: math.unit(304, "kg"),
  25402. name: "Front (Dressed)",
  25403. image: {
  25404. source: "./media/characters/icowom-lee/front-dressed.svg",
  25405. extra: 3076 / 2933,
  25406. bottom: 51.4 / 3125.1889
  25407. }
  25408. },
  25409. rump: {
  25410. height: math.unit(0.776, "meters"),
  25411. name: "Rump",
  25412. image: {
  25413. source: "./media/characters/icowom-lee/rump.svg"
  25414. }
  25415. },
  25416. genitals: {
  25417. height: math.unit(0.78, "meters"),
  25418. name: "Genitals",
  25419. image: {
  25420. source: "./media/characters/icowom-lee/genitals.svg"
  25421. }
  25422. },
  25423. },
  25424. [
  25425. {
  25426. name: "Normal",
  25427. height: math.unit(2.3, "meters"),
  25428. default: true
  25429. },
  25430. {
  25431. name: "Macro",
  25432. height: math.unit(94, "meters"),
  25433. default: true
  25434. },
  25435. ]
  25436. ))
  25437. characterMakers.push(() => makeCharacter(
  25438. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25439. {
  25440. front: {
  25441. height: math.unit(22, "meters"),
  25442. weight: math.unit(21000, "kg"),
  25443. name: "Front",
  25444. image: {
  25445. source: "./media/characters/shock-diamond/front.svg",
  25446. extra: 2204 / 2053,
  25447. bottom: 65 / 2239.47
  25448. }
  25449. },
  25450. frontNude: {
  25451. height: math.unit(22, "meters"),
  25452. weight: math.unit(21000, "kg"),
  25453. name: "Front (Nude)",
  25454. image: {
  25455. source: "./media/characters/shock-diamond/front-nude.svg",
  25456. extra: 2514 / 2285,
  25457. bottom: 13 / 2527.56
  25458. }
  25459. },
  25460. },
  25461. [
  25462. {
  25463. name: "Normal",
  25464. height: math.unit(3, "meters")
  25465. },
  25466. {
  25467. name: "Macro",
  25468. height: math.unit(22, "meters"),
  25469. default: true
  25470. },
  25471. ]
  25472. ))
  25473. characterMakers.push(() => makeCharacter(
  25474. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25475. {
  25476. front: {
  25477. height: math.unit(5 + 4/12, "feet"),
  25478. weight: math.unit(125, "lb"),
  25479. name: "Front",
  25480. image: {
  25481. source: "./media/characters/rory/front.svg",
  25482. extra: 1790/1681,
  25483. bottom: 66/1856
  25484. },
  25485. form: "normal",
  25486. default: true
  25487. },
  25488. back: {
  25489. height: math.unit(5 + 4/12, "feet"),
  25490. weight: math.unit(125, "lb"),
  25491. name: "Back",
  25492. image: {
  25493. source: "./media/characters/rory/back.svg",
  25494. extra: 1805/1690,
  25495. bottom: 56/1861
  25496. },
  25497. form: "normal"
  25498. },
  25499. frontDressed: {
  25500. height: math.unit(5 + 4/12, "feet"),
  25501. weight: math.unit(125, "lb"),
  25502. name: "Front (Dressed)",
  25503. image: {
  25504. source: "./media/characters/rory/front-dressed.svg",
  25505. extra: 1790/1681,
  25506. bottom: 66/1856
  25507. },
  25508. form: "normal"
  25509. },
  25510. backDressed: {
  25511. height: math.unit(5 + 4/12, "feet"),
  25512. weight: math.unit(125, "lb"),
  25513. name: "Back (Dressed)",
  25514. image: {
  25515. source: "./media/characters/rory/back-dressed.svg",
  25516. extra: 1805/1690,
  25517. bottom: 56/1861
  25518. },
  25519. form: "normal"
  25520. },
  25521. frontNsfw: {
  25522. height: math.unit(5 + 4/12, "feet"),
  25523. weight: math.unit(125, "lb"),
  25524. name: "Front (NSFW)",
  25525. image: {
  25526. source: "./media/characters/rory/front-nsfw.svg",
  25527. extra: 1790/1681,
  25528. bottom: 66/1856
  25529. },
  25530. form: "normal"
  25531. },
  25532. backNsfw: {
  25533. height: math.unit(5 + 4/12, "feet"),
  25534. weight: math.unit(125, "lb"),
  25535. name: "Back (NSFW)",
  25536. image: {
  25537. source: "./media/characters/rory/back-nsfw.svg",
  25538. extra: 1805/1690,
  25539. bottom: 56/1861
  25540. },
  25541. form: "normal"
  25542. },
  25543. dick: {
  25544. height: math.unit(0.8, "feet"),
  25545. name: "Dick",
  25546. image: {
  25547. source: "./media/characters/rory/dick.svg"
  25548. },
  25549. form: "normal"
  25550. },
  25551. thicc_front: {
  25552. height: math.unit(5 + 4/12, "feet"),
  25553. weight: math.unit(195, "lb"),
  25554. name: "Front",
  25555. image: {
  25556. source: "./media/characters/rory/thicc-front.svg",
  25557. extra: 1220/1100,
  25558. bottom: 103/1323
  25559. },
  25560. form: "thicc",
  25561. default: true
  25562. },
  25563. thicc_back: {
  25564. height: math.unit(5 + 4/12, "feet"),
  25565. weight: math.unit(195, "lb"),
  25566. name: "Back",
  25567. image: {
  25568. source: "./media/characters/rory/thicc-back.svg",
  25569. extra: 1166/1086,
  25570. bottom: 35/1201
  25571. },
  25572. form: "thicc"
  25573. },
  25574. },
  25575. [
  25576. {
  25577. name: "Micro",
  25578. height: math.unit(3, "inches"),
  25579. allForms: true
  25580. },
  25581. {
  25582. name: "Normal",
  25583. height: math.unit(5 + 4/12, "feet"),
  25584. allForms: true,
  25585. default: true
  25586. },
  25587. {
  25588. name: "Macro",
  25589. height: math.unit(90, "feet"),
  25590. allForms: true
  25591. },
  25592. {
  25593. name: "Supercharged",
  25594. height: math.unit(270, "feet"),
  25595. allForms: true
  25596. },
  25597. ],
  25598. {
  25599. "normal": {
  25600. name: "Normal",
  25601. default: true
  25602. },
  25603. "thicc": {
  25604. name: "Thicc",
  25605. },
  25606. }
  25607. ))
  25608. characterMakers.push(() => makeCharacter(
  25609. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25610. {
  25611. front: {
  25612. height: math.unit(5 + 9 / 12, "feet"),
  25613. weight: math.unit(190, "lb"),
  25614. name: "Front",
  25615. image: {
  25616. source: "./media/characters/sprisk/front.svg",
  25617. extra: 1225 / 1180,
  25618. bottom: 42.7 / 1266.4
  25619. }
  25620. },
  25621. frontNsfw: {
  25622. height: math.unit(5 + 9 / 12, "feet"),
  25623. weight: math.unit(190, "lb"),
  25624. name: "Front (NSFW)",
  25625. image: {
  25626. source: "./media/characters/sprisk/front-nsfw.svg",
  25627. extra: 1225 / 1180,
  25628. bottom: 42.7 / 1266.4
  25629. }
  25630. },
  25631. back: {
  25632. height: math.unit(5 + 9 / 12, "feet"),
  25633. weight: math.unit(190, "lb"),
  25634. name: "Back",
  25635. image: {
  25636. source: "./media/characters/sprisk/back.svg",
  25637. extra: 1247 / 1200,
  25638. bottom: 5.6 / 1253.04
  25639. }
  25640. },
  25641. },
  25642. [
  25643. {
  25644. name: "Tiny",
  25645. height: math.unit(2, "inches")
  25646. },
  25647. {
  25648. name: "Normal",
  25649. height: math.unit(5 + 9 / 12, "feet"),
  25650. default: true
  25651. },
  25652. {
  25653. name: "Mini Macro",
  25654. height: math.unit(18, "feet")
  25655. },
  25656. {
  25657. name: "Macro",
  25658. height: math.unit(100, "feet")
  25659. },
  25660. {
  25661. name: "MACRO",
  25662. height: math.unit(50, "miles")
  25663. },
  25664. {
  25665. name: "M A C R O",
  25666. height: math.unit(300, "miles")
  25667. },
  25668. ]
  25669. ))
  25670. characterMakers.push(() => makeCharacter(
  25671. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25672. {
  25673. side: {
  25674. height: math.unit(15.6, "meters"),
  25675. weight: math.unit(700000, "kg"),
  25676. name: "Side",
  25677. image: {
  25678. source: "./media/characters/bunsen/side.svg",
  25679. extra: 1644 / 358
  25680. }
  25681. },
  25682. foot: {
  25683. height: math.unit(1.611 * 1644 / 358, "meter"),
  25684. name: "Foot",
  25685. image: {
  25686. source: "./media/characters/bunsen/foot.svg"
  25687. }
  25688. },
  25689. },
  25690. [
  25691. {
  25692. name: "Small",
  25693. height: math.unit(10, "feet")
  25694. },
  25695. {
  25696. name: "Normal",
  25697. height: math.unit(15.6, "meters"),
  25698. default: true
  25699. },
  25700. ]
  25701. ))
  25702. characterMakers.push(() => makeCharacter(
  25703. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25704. {
  25705. front: {
  25706. height: math.unit(4 + 11 / 12, "feet"),
  25707. weight: math.unit(140, "lb"),
  25708. name: "Front",
  25709. image: {
  25710. source: "./media/characters/sesh/front.svg",
  25711. extra: 3420 / 3231,
  25712. bottom: 72 / 3949.5
  25713. }
  25714. },
  25715. },
  25716. [
  25717. {
  25718. name: "Normal",
  25719. height: math.unit(4 + 11 / 12, "feet")
  25720. },
  25721. {
  25722. name: "Grown",
  25723. height: math.unit(15, "feet"),
  25724. default: true
  25725. },
  25726. {
  25727. name: "Macro",
  25728. height: math.unit(1500, "feet")
  25729. },
  25730. {
  25731. name: "Megamacro",
  25732. height: math.unit(30, "miles")
  25733. },
  25734. {
  25735. name: "Continental",
  25736. height: math.unit(3000, "miles")
  25737. },
  25738. {
  25739. name: "Gravity Mass",
  25740. height: math.unit(300000, "miles")
  25741. },
  25742. {
  25743. name: "Planet Buster",
  25744. height: math.unit(30000000, "miles")
  25745. },
  25746. {
  25747. name: "Big",
  25748. height: math.unit(3000000000, "miles")
  25749. },
  25750. ]
  25751. ))
  25752. characterMakers.push(() => makeCharacter(
  25753. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25754. {
  25755. front: {
  25756. height: math.unit(9, "feet"),
  25757. weight: math.unit(350, "lb"),
  25758. name: "Front",
  25759. image: {
  25760. source: "./media/characters/pepper/front.svg",
  25761. extra: 1448 / 1312,
  25762. bottom: 9.4 / 1457.88
  25763. }
  25764. },
  25765. back: {
  25766. height: math.unit(9, "feet"),
  25767. weight: math.unit(350, "lb"),
  25768. name: "Back",
  25769. image: {
  25770. source: "./media/characters/pepper/back.svg",
  25771. extra: 1423 / 1300,
  25772. bottom: 4.6 / 1429
  25773. }
  25774. },
  25775. maw: {
  25776. height: math.unit(0.932, "feet"),
  25777. name: "Maw",
  25778. image: {
  25779. source: "./media/characters/pepper/maw.svg"
  25780. }
  25781. },
  25782. },
  25783. [
  25784. {
  25785. name: "Normal",
  25786. height: math.unit(9, "feet"),
  25787. default: true
  25788. },
  25789. ]
  25790. ))
  25791. characterMakers.push(() => makeCharacter(
  25792. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25793. {
  25794. front: {
  25795. height: math.unit(6, "feet"),
  25796. weight: math.unit(150, "lb"),
  25797. name: "Front",
  25798. image: {
  25799. source: "./media/characters/maelstrom/front.svg",
  25800. extra: 2100 / 1883,
  25801. bottom: 94 / 2196.7
  25802. }
  25803. },
  25804. },
  25805. [
  25806. {
  25807. name: "Less Kaiju",
  25808. height: math.unit(200, "feet")
  25809. },
  25810. {
  25811. name: "Kaiju",
  25812. height: math.unit(400, "feet"),
  25813. default: true
  25814. },
  25815. {
  25816. name: "Kaiju-er",
  25817. height: math.unit(600, "feet")
  25818. },
  25819. ]
  25820. ))
  25821. characterMakers.push(() => makeCharacter(
  25822. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25823. {
  25824. front: {
  25825. height: math.unit(6 + 5 / 12, "feet"),
  25826. weight: math.unit(180, "lb"),
  25827. name: "Front",
  25828. image: {
  25829. source: "./media/characters/lexir/front.svg",
  25830. extra: 180 / 172,
  25831. bottom: 12 / 192
  25832. }
  25833. },
  25834. back: {
  25835. height: math.unit(6 + 5 / 12, "feet"),
  25836. weight: math.unit(180, "lb"),
  25837. name: "Back",
  25838. image: {
  25839. source: "./media/characters/lexir/back.svg",
  25840. extra: 1273/1201,
  25841. bottom: 39/1312
  25842. }
  25843. },
  25844. },
  25845. [
  25846. {
  25847. name: "Very Smal",
  25848. height: math.unit(1, "nm")
  25849. },
  25850. {
  25851. name: "Normal",
  25852. height: math.unit(6 + 5 / 12, "feet"),
  25853. default: true
  25854. },
  25855. {
  25856. name: "Macro",
  25857. height: math.unit(1, "mile")
  25858. },
  25859. {
  25860. name: "Megamacro",
  25861. height: math.unit(50, "miles")
  25862. },
  25863. ]
  25864. ))
  25865. characterMakers.push(() => makeCharacter(
  25866. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25867. {
  25868. front: {
  25869. height: math.unit(1.5, "meters"),
  25870. weight: math.unit(100, "lb"),
  25871. name: "Front",
  25872. image: {
  25873. source: "./media/characters/maksio/front.svg",
  25874. extra: 1549 / 1531,
  25875. bottom: 123.7 / 1674.5429
  25876. }
  25877. },
  25878. back: {
  25879. height: math.unit(1.5, "meters"),
  25880. weight: math.unit(100, "lb"),
  25881. name: "Back",
  25882. image: {
  25883. source: "./media/characters/maksio/back.svg",
  25884. extra: 1541 / 1509,
  25885. bottom: 97 / 1639
  25886. }
  25887. },
  25888. hand: {
  25889. height: math.unit(0.621, "feet"),
  25890. name: "Hand",
  25891. image: {
  25892. source: "./media/characters/maksio/hand.svg"
  25893. }
  25894. },
  25895. foot: {
  25896. height: math.unit(1.611, "feet"),
  25897. name: "Foot",
  25898. image: {
  25899. source: "./media/characters/maksio/foot.svg"
  25900. }
  25901. },
  25902. },
  25903. [
  25904. {
  25905. name: "Shrunken",
  25906. height: math.unit(10, "cm")
  25907. },
  25908. {
  25909. name: "Normal",
  25910. height: math.unit(150, "cm"),
  25911. default: true
  25912. },
  25913. ]
  25914. ))
  25915. characterMakers.push(() => makeCharacter(
  25916. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25917. {
  25918. front: {
  25919. height: math.unit(100, "feet"),
  25920. name: "Front",
  25921. image: {
  25922. source: "./media/characters/erza-bear/front.svg",
  25923. extra: 2449 / 2390,
  25924. bottom: 46 / 2494
  25925. }
  25926. },
  25927. back: {
  25928. height: math.unit(100, "feet"),
  25929. name: "Back",
  25930. image: {
  25931. source: "./media/characters/erza-bear/back.svg",
  25932. extra: 2489 / 2430,
  25933. bottom: 85.4 / 2480
  25934. }
  25935. },
  25936. tail: {
  25937. height: math.unit(42, "feet"),
  25938. name: "Tail",
  25939. image: {
  25940. source: "./media/characters/erza-bear/tail.svg"
  25941. }
  25942. },
  25943. tongue: {
  25944. height: math.unit(8, "feet"),
  25945. name: "Tongue",
  25946. image: {
  25947. source: "./media/characters/erza-bear/tongue.svg"
  25948. }
  25949. },
  25950. dick: {
  25951. height: math.unit(10.5, "feet"),
  25952. name: "Dick",
  25953. image: {
  25954. source: "./media/characters/erza-bear/dick.svg"
  25955. }
  25956. },
  25957. dickVertical: {
  25958. height: math.unit(16.9, "feet"),
  25959. name: "Dick (Vertical)",
  25960. image: {
  25961. source: "./media/characters/erza-bear/dick-vertical.svg"
  25962. }
  25963. },
  25964. },
  25965. [
  25966. {
  25967. name: "Macro",
  25968. height: math.unit(100, "feet"),
  25969. default: true
  25970. },
  25971. ]
  25972. ))
  25973. characterMakers.push(() => makeCharacter(
  25974. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25975. {
  25976. front: {
  25977. height: math.unit(172, "cm"),
  25978. weight: math.unit(73, "kg"),
  25979. name: "Front",
  25980. image: {
  25981. source: "./media/characters/violet-flor/front.svg",
  25982. extra: 1474/1379,
  25983. bottom: 113/1587
  25984. }
  25985. },
  25986. back: {
  25987. height: math.unit(180, "cm"),
  25988. weight: math.unit(73, "kg"),
  25989. name: "Back",
  25990. image: {
  25991. source: "./media/characters/violet-flor/back.svg",
  25992. extra: 1660/1567,
  25993. bottom: 49/1709
  25994. }
  25995. },
  25996. },
  25997. [
  25998. {
  25999. name: "Normal",
  26000. height: math.unit(172, "cm"),
  26001. default: true
  26002. },
  26003. ]
  26004. ))
  26005. characterMakers.push(() => makeCharacter(
  26006. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  26007. {
  26008. front: {
  26009. height: math.unit(6, "feet"),
  26010. weight: math.unit(220, "lb"),
  26011. name: "Front",
  26012. image: {
  26013. source: "./media/characters/lynn-rhea/front.svg",
  26014. extra: 310 / 273
  26015. }
  26016. },
  26017. back: {
  26018. height: math.unit(6, "feet"),
  26019. weight: math.unit(220, "lb"),
  26020. name: "Back",
  26021. image: {
  26022. source: "./media/characters/lynn-rhea/back.svg",
  26023. extra: 310 / 273
  26024. }
  26025. },
  26026. dicks: {
  26027. height: math.unit(0.9, "feet"),
  26028. name: "Dicks",
  26029. image: {
  26030. source: "./media/characters/lynn-rhea/dicks.svg"
  26031. }
  26032. },
  26033. slit: {
  26034. height: math.unit(0.4, "feet"),
  26035. name: "Slit",
  26036. image: {
  26037. source: "./media/characters/lynn-rhea/slit.svg"
  26038. }
  26039. },
  26040. },
  26041. [
  26042. {
  26043. name: "Micro",
  26044. height: math.unit(1, "inch")
  26045. },
  26046. {
  26047. name: "Macro",
  26048. height: math.unit(60, "feet"),
  26049. default: true
  26050. },
  26051. {
  26052. name: "Megamacro",
  26053. height: math.unit(2, "miles")
  26054. },
  26055. {
  26056. name: "Gigamacro",
  26057. height: math.unit(3, "earths")
  26058. },
  26059. {
  26060. name: "Galactic",
  26061. height: math.unit(0.8, "galaxies")
  26062. },
  26063. ]
  26064. ))
  26065. characterMakers.push(() => makeCharacter(
  26066. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26067. {
  26068. front: {
  26069. height: math.unit(1600, "feet"),
  26070. weight: math.unit(85758785169, "kg"),
  26071. name: "Front",
  26072. image: {
  26073. source: "./media/characters/valathos/front.svg",
  26074. extra: 1451 / 1339
  26075. }
  26076. },
  26077. },
  26078. [
  26079. {
  26080. name: "Macro",
  26081. height: math.unit(1600, "feet"),
  26082. default: true
  26083. },
  26084. ]
  26085. ))
  26086. characterMakers.push(() => makeCharacter(
  26087. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26088. {
  26089. front: {
  26090. height: math.unit(7 + 5 / 12, "feet"),
  26091. weight: math.unit(300, "lb"),
  26092. name: "Front",
  26093. image: {
  26094. source: "./media/characters/azula/front.svg",
  26095. extra: 3208 / 2880,
  26096. bottom: 80.2 / 3277
  26097. }
  26098. },
  26099. back: {
  26100. height: math.unit(7 + 5 / 12, "feet"),
  26101. weight: math.unit(300, "lb"),
  26102. name: "Back",
  26103. image: {
  26104. source: "./media/characters/azula/back.svg",
  26105. extra: 3169 / 2822,
  26106. bottom: 150.6 / 3321
  26107. }
  26108. },
  26109. },
  26110. [
  26111. {
  26112. name: "Normal",
  26113. height: math.unit(7 + 5 / 12, "feet"),
  26114. default: true
  26115. },
  26116. {
  26117. name: "Big",
  26118. height: math.unit(20, "feet")
  26119. },
  26120. ]
  26121. ))
  26122. characterMakers.push(() => makeCharacter(
  26123. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26124. {
  26125. front: {
  26126. height: math.unit(5 + 1 / 12, "feet"),
  26127. weight: math.unit(110, "lb"),
  26128. name: "Front",
  26129. image: {
  26130. source: "./media/characters/rupert/front.svg",
  26131. extra: 1549 / 1495,
  26132. bottom: 54.2 / 1604.4
  26133. }
  26134. },
  26135. },
  26136. [
  26137. {
  26138. name: "Normal",
  26139. height: math.unit(5 + 1 / 12, "feet"),
  26140. default: true
  26141. },
  26142. ]
  26143. ))
  26144. characterMakers.push(() => makeCharacter(
  26145. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26146. {
  26147. front: {
  26148. height: math.unit(8 + 4 / 12, "feet"),
  26149. weight: math.unit(350, "lb"),
  26150. name: "Front",
  26151. image: {
  26152. source: "./media/characters/sheera-castellar/front.svg",
  26153. extra: 1957 / 1894,
  26154. bottom: 26.97 / 1975.017
  26155. }
  26156. },
  26157. side: {
  26158. height: math.unit(8 + 4 / 12, "feet"),
  26159. weight: math.unit(350, "lb"),
  26160. name: "Side",
  26161. image: {
  26162. source: "./media/characters/sheera-castellar/side.svg",
  26163. extra: 1957 / 1894
  26164. }
  26165. },
  26166. back: {
  26167. height: math.unit(8 + 4 / 12, "feet"),
  26168. weight: math.unit(350, "lb"),
  26169. name: "Back",
  26170. image: {
  26171. source: "./media/characters/sheera-castellar/back.svg",
  26172. extra: 1957 / 1894
  26173. }
  26174. },
  26175. angled: {
  26176. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26177. weight: math.unit(350, "lb"),
  26178. name: "Angled",
  26179. image: {
  26180. source: "./media/characters/sheera-castellar/angled.svg",
  26181. extra: 1807 / 1707,
  26182. bottom: 68 / 1875
  26183. }
  26184. },
  26185. genitals: {
  26186. height: math.unit(2.2, "feet"),
  26187. name: "Genitals",
  26188. image: {
  26189. source: "./media/characters/sheera-castellar/genitals.svg"
  26190. }
  26191. },
  26192. taur: {
  26193. height: math.unit(10 + 6/12, "feet"),
  26194. name: "Taur",
  26195. image: {
  26196. source: "./media/characters/sheera-castellar/taur.svg",
  26197. extra: 2017/1909,
  26198. bottom: 185/2202
  26199. }
  26200. },
  26201. },
  26202. [
  26203. {
  26204. name: "Normal",
  26205. height: math.unit(8 + 4 / 12, "feet")
  26206. },
  26207. {
  26208. name: "Macro",
  26209. height: math.unit(150, "feet"),
  26210. default: true
  26211. },
  26212. {
  26213. name: "Macro+",
  26214. height: math.unit(800, "feet")
  26215. },
  26216. ]
  26217. ))
  26218. characterMakers.push(() => makeCharacter(
  26219. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26220. {
  26221. front: {
  26222. height: math.unit(6, "feet"),
  26223. weight: math.unit(150, "lb"),
  26224. name: "Front",
  26225. image: {
  26226. source: "./media/characters/jaipur/front.svg",
  26227. extra: 3860 / 3731,
  26228. bottom: 287 / 4140
  26229. }
  26230. },
  26231. back: {
  26232. height: math.unit(6, "feet"),
  26233. weight: math.unit(150, "lb"),
  26234. name: "Back",
  26235. image: {
  26236. source: "./media/characters/jaipur/back.svg",
  26237. extra: 1637/1561,
  26238. bottom: 154/1791
  26239. }
  26240. },
  26241. },
  26242. [
  26243. {
  26244. name: "Normal",
  26245. height: math.unit(1.85, "meters"),
  26246. default: true
  26247. },
  26248. {
  26249. name: "Macro",
  26250. height: math.unit(150, "meters")
  26251. },
  26252. {
  26253. name: "Macro+",
  26254. height: math.unit(0.5, "miles")
  26255. },
  26256. {
  26257. name: "Macro++",
  26258. height: math.unit(2.5, "miles")
  26259. },
  26260. {
  26261. name: "Macro+++",
  26262. height: math.unit(12, "miles")
  26263. },
  26264. {
  26265. name: "Macro++++",
  26266. height: math.unit(120, "miles")
  26267. },
  26268. {
  26269. name: "Macro+++++",
  26270. height: math.unit(1200, "miles")
  26271. },
  26272. ]
  26273. ))
  26274. characterMakers.push(() => makeCharacter(
  26275. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26276. {
  26277. front: {
  26278. height: math.unit(6, "feet"),
  26279. weight: math.unit(150, "lb"),
  26280. name: "Front",
  26281. image: {
  26282. source: "./media/characters/sheila-wolf/front.svg",
  26283. extra: 1931 / 1808,
  26284. bottom: 29.5 / 1960
  26285. }
  26286. },
  26287. dick: {
  26288. height: math.unit(1.464, "feet"),
  26289. name: "Dick",
  26290. image: {
  26291. source: "./media/characters/sheila-wolf/dick.svg"
  26292. }
  26293. },
  26294. muzzle: {
  26295. height: math.unit(0.513, "feet"),
  26296. name: "Muzzle",
  26297. image: {
  26298. source: "./media/characters/sheila-wolf/muzzle.svg"
  26299. }
  26300. },
  26301. },
  26302. [
  26303. {
  26304. name: "Macro",
  26305. height: math.unit(70, "feet"),
  26306. default: true
  26307. },
  26308. ]
  26309. ))
  26310. characterMakers.push(() => makeCharacter(
  26311. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26312. {
  26313. front: {
  26314. height: math.unit(32, "meters"),
  26315. weight: math.unit(300000, "kg"),
  26316. name: "Front",
  26317. image: {
  26318. source: "./media/characters/almor/front.svg",
  26319. extra: 1408 / 1322,
  26320. bottom: 94.6 / 1506.5
  26321. }
  26322. },
  26323. },
  26324. [
  26325. {
  26326. name: "Macro",
  26327. height: math.unit(32, "meters"),
  26328. default: true
  26329. },
  26330. ]
  26331. ))
  26332. characterMakers.push(() => makeCharacter(
  26333. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26334. {
  26335. front: {
  26336. height: math.unit(7, "feet"),
  26337. weight: math.unit(200, "lb"),
  26338. name: "Front",
  26339. image: {
  26340. source: "./media/characters/silver/front.svg",
  26341. extra: 472.1 / 450.5,
  26342. bottom: 26.5 / 499.424
  26343. }
  26344. },
  26345. },
  26346. [
  26347. {
  26348. name: "Normal",
  26349. height: math.unit(7, "feet"),
  26350. default: true
  26351. },
  26352. {
  26353. name: "Macro",
  26354. height: math.unit(800, "feet")
  26355. },
  26356. {
  26357. name: "Megamacro",
  26358. height: math.unit(250, "miles")
  26359. },
  26360. ]
  26361. ))
  26362. characterMakers.push(() => makeCharacter(
  26363. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26364. {
  26365. front: {
  26366. height: math.unit(6, "feet"),
  26367. weight: math.unit(150, "lb"),
  26368. name: "Front",
  26369. image: {
  26370. source: "./media/characters/pliskin/front.svg",
  26371. extra: 1469 / 1359,
  26372. bottom: 70 / 1540
  26373. }
  26374. },
  26375. },
  26376. [
  26377. {
  26378. name: "Micro",
  26379. height: math.unit(3, "inches")
  26380. },
  26381. {
  26382. name: "Normal",
  26383. height: math.unit(5 + 11 / 12, "feet"),
  26384. default: true
  26385. },
  26386. {
  26387. name: "Macro",
  26388. height: math.unit(120, "feet")
  26389. },
  26390. ]
  26391. ))
  26392. characterMakers.push(() => makeCharacter(
  26393. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26394. {
  26395. front: {
  26396. height: math.unit(6, "feet"),
  26397. weight: math.unit(150, "lb"),
  26398. name: "Front",
  26399. image: {
  26400. source: "./media/characters/sammy/front.svg",
  26401. extra: 1193 / 1089,
  26402. bottom: 30.5 / 1226
  26403. }
  26404. },
  26405. },
  26406. [
  26407. {
  26408. name: "Macro",
  26409. height: math.unit(1700, "feet"),
  26410. default: true
  26411. },
  26412. {
  26413. name: "Examacro",
  26414. height: math.unit(2.5e9, "lightyears")
  26415. },
  26416. ]
  26417. ))
  26418. characterMakers.push(() => makeCharacter(
  26419. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26420. {
  26421. front: {
  26422. height: math.unit(21, "meters"),
  26423. weight: math.unit(12, "tonnes"),
  26424. name: "Front",
  26425. image: {
  26426. source: "./media/characters/kuru/front.svg",
  26427. extra: 4301 / 3785,
  26428. bottom: 371.3 / 4691
  26429. }
  26430. },
  26431. },
  26432. [
  26433. {
  26434. name: "Macro",
  26435. height: math.unit(21, "meters"),
  26436. default: true
  26437. },
  26438. ]
  26439. ))
  26440. characterMakers.push(() => makeCharacter(
  26441. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26442. {
  26443. front: {
  26444. height: math.unit(23, "meters"),
  26445. weight: math.unit(12.2, "tonnes"),
  26446. name: "Front",
  26447. image: {
  26448. source: "./media/characters/rakka/front.svg",
  26449. extra: 4670 / 4169,
  26450. bottom: 301 / 4968.7
  26451. }
  26452. },
  26453. },
  26454. [
  26455. {
  26456. name: "Macro",
  26457. height: math.unit(23, "meters"),
  26458. default: true
  26459. },
  26460. ]
  26461. ))
  26462. characterMakers.push(() => makeCharacter(
  26463. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26464. {
  26465. front: {
  26466. height: math.unit(6, "feet"),
  26467. weight: math.unit(150, "lb"),
  26468. name: "Front",
  26469. image: {
  26470. source: "./media/characters/rhys-feline/front.svg",
  26471. extra: 2488 / 2308,
  26472. bottom: 35.67 / 2519.19
  26473. }
  26474. },
  26475. },
  26476. [
  26477. {
  26478. name: "Really Small",
  26479. height: math.unit(1, "nm")
  26480. },
  26481. {
  26482. name: "Micro",
  26483. height: math.unit(4, "inches")
  26484. },
  26485. {
  26486. name: "Normal",
  26487. height: math.unit(4 + 10 / 12, "feet"),
  26488. default: true
  26489. },
  26490. {
  26491. name: "Macro",
  26492. height: math.unit(100, "feet")
  26493. },
  26494. {
  26495. name: "Megamacto",
  26496. height: math.unit(50, "miles")
  26497. },
  26498. ]
  26499. ))
  26500. characterMakers.push(() => makeCharacter(
  26501. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26502. {
  26503. side: {
  26504. height: math.unit(30, "feet"),
  26505. weight: math.unit(35000, "kg"),
  26506. name: "Side",
  26507. image: {
  26508. source: "./media/characters/alydar/side.svg",
  26509. extra: 234 / 222,
  26510. bottom: 6.5 / 241
  26511. }
  26512. },
  26513. front: {
  26514. height: math.unit(30, "feet"),
  26515. weight: math.unit(35000, "kg"),
  26516. name: "Front",
  26517. image: {
  26518. source: "./media/characters/alydar/front.svg",
  26519. extra: 223.37 / 210.2,
  26520. bottom: 22.3 / 246.76
  26521. }
  26522. },
  26523. top: {
  26524. height: math.unit(64.54, "feet"),
  26525. weight: math.unit(35000, "kg"),
  26526. name: "Top",
  26527. image: {
  26528. source: "./media/characters/alydar/top.svg"
  26529. }
  26530. },
  26531. anthro: {
  26532. height: math.unit(30, "feet"),
  26533. weight: math.unit(9000, "kg"),
  26534. name: "Anthro",
  26535. image: {
  26536. source: "./media/characters/alydar/anthro.svg",
  26537. extra: 432 / 421,
  26538. bottom: 7.18 / 440
  26539. }
  26540. },
  26541. maw: {
  26542. height: math.unit(11.693, "feet"),
  26543. name: "Maw",
  26544. image: {
  26545. source: "./media/characters/alydar/maw.svg"
  26546. }
  26547. },
  26548. head: {
  26549. height: math.unit(11.693, "feet"),
  26550. name: "Head",
  26551. image: {
  26552. source: "./media/characters/alydar/head.svg"
  26553. }
  26554. },
  26555. headAlt: {
  26556. height: math.unit(12.861, "feet"),
  26557. name: "Head (Alt)",
  26558. image: {
  26559. source: "./media/characters/alydar/head-alt.svg"
  26560. }
  26561. },
  26562. wing: {
  26563. height: math.unit(20.712, "feet"),
  26564. name: "Wing",
  26565. image: {
  26566. source: "./media/characters/alydar/wing.svg"
  26567. }
  26568. },
  26569. wingFeather: {
  26570. height: math.unit(9.662, "feet"),
  26571. name: "Wing Feather",
  26572. image: {
  26573. source: "./media/characters/alydar/wing-feather.svg"
  26574. }
  26575. },
  26576. countourFeather: {
  26577. height: math.unit(4.154, "feet"),
  26578. name: "Contour Feather",
  26579. image: {
  26580. source: "./media/characters/alydar/contour-feather.svg"
  26581. }
  26582. },
  26583. },
  26584. [
  26585. {
  26586. name: "Diplomatic",
  26587. height: math.unit(13, "feet"),
  26588. default: true
  26589. },
  26590. {
  26591. name: "Small",
  26592. height: math.unit(30, "feet")
  26593. },
  26594. {
  26595. name: "Normal",
  26596. height: math.unit(95, "feet"),
  26597. default: true
  26598. },
  26599. {
  26600. name: "Large",
  26601. height: math.unit(285, "feet")
  26602. },
  26603. {
  26604. name: "Incomprehensible",
  26605. height: math.unit(450, "megameters")
  26606. },
  26607. ]
  26608. ))
  26609. characterMakers.push(() => makeCharacter(
  26610. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26611. {
  26612. side: {
  26613. height: math.unit(11, "feet"),
  26614. weight: math.unit(1750, "kg"),
  26615. name: "Side",
  26616. image: {
  26617. source: "./media/characters/selicia/side.svg",
  26618. extra: 440 / 396,
  26619. bottom: 24.8 / 465.979
  26620. }
  26621. },
  26622. maw: {
  26623. height: math.unit(4.665, "feet"),
  26624. name: "Maw",
  26625. image: {
  26626. source: "./media/characters/selicia/maw.svg"
  26627. }
  26628. },
  26629. },
  26630. [
  26631. {
  26632. name: "Normal",
  26633. height: math.unit(11, "feet"),
  26634. default: true
  26635. },
  26636. ]
  26637. ))
  26638. characterMakers.push(() => makeCharacter(
  26639. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26640. {
  26641. side: {
  26642. height: math.unit(2 + 6 / 12, "feet"),
  26643. weight: math.unit(30, "lb"),
  26644. name: "Side",
  26645. image: {
  26646. source: "./media/characters/layla/side.svg",
  26647. extra: 244 / 188,
  26648. bottom: 18.2 / 262.1
  26649. }
  26650. },
  26651. back: {
  26652. height: math.unit(2 + 6 / 12, "feet"),
  26653. weight: math.unit(30, "lb"),
  26654. name: "Back",
  26655. image: {
  26656. source: "./media/characters/layla/back.svg",
  26657. extra: 308 / 241.5,
  26658. bottom: 8.9 / 316.8
  26659. }
  26660. },
  26661. cumming: {
  26662. height: math.unit(2 + 6 / 12, "feet"),
  26663. weight: math.unit(30, "lb"),
  26664. name: "Cumming",
  26665. image: {
  26666. source: "./media/characters/layla/cumming.svg",
  26667. extra: 342 / 279,
  26668. bottom: 595 / 938
  26669. }
  26670. },
  26671. dickFlaccid: {
  26672. height: math.unit(2.595, "feet"),
  26673. name: "Flaccid Genitals",
  26674. image: {
  26675. source: "./media/characters/layla/dick-flaccid.svg"
  26676. }
  26677. },
  26678. dickErect: {
  26679. height: math.unit(2.359, "feet"),
  26680. name: "Erect Genitals",
  26681. image: {
  26682. source: "./media/characters/layla/dick-erect.svg"
  26683. }
  26684. },
  26685. dragon: {
  26686. height: math.unit(40, "feet"),
  26687. name: "Dragon",
  26688. image: {
  26689. source: "./media/characters/layla/dragon.svg",
  26690. extra: 610/535,
  26691. bottom: 367/977
  26692. }
  26693. },
  26694. taur: {
  26695. height: math.unit(30, "feet"),
  26696. name: "Taur",
  26697. image: {
  26698. source: "./media/characters/layla/taur.svg",
  26699. extra: 1268/1199,
  26700. bottom: 112/1380
  26701. }
  26702. },
  26703. },
  26704. [
  26705. {
  26706. name: "Micro",
  26707. height: math.unit(1, "inch")
  26708. },
  26709. {
  26710. name: "Small",
  26711. height: math.unit(1, "foot")
  26712. },
  26713. {
  26714. name: "Normal",
  26715. height: math.unit(2 + 6 / 12, "feet"),
  26716. default: true
  26717. },
  26718. {
  26719. name: "Macro",
  26720. height: math.unit(200, "feet")
  26721. },
  26722. {
  26723. name: "Megamacro",
  26724. height: math.unit(1000, "miles")
  26725. },
  26726. {
  26727. name: "Planetary",
  26728. height: math.unit(8000, "miles")
  26729. },
  26730. {
  26731. name: "True Layla",
  26732. height: math.unit(200000 * 7, "multiverses")
  26733. },
  26734. ]
  26735. ))
  26736. characterMakers.push(() => makeCharacter(
  26737. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26738. {
  26739. back: {
  26740. height: math.unit(10.5, "feet"),
  26741. weight: math.unit(800, "lb"),
  26742. name: "Back",
  26743. image: {
  26744. source: "./media/characters/knox/back.svg",
  26745. extra: 1486 / 1089,
  26746. bottom: 107 / 1601.4
  26747. }
  26748. },
  26749. side: {
  26750. height: math.unit(10.5, "feet"),
  26751. weight: math.unit(800, "lb"),
  26752. name: "Side",
  26753. image: {
  26754. source: "./media/characters/knox/side.svg",
  26755. extra: 244 / 218,
  26756. bottom: 14 / 260
  26757. }
  26758. },
  26759. },
  26760. [
  26761. {
  26762. name: "Compact",
  26763. height: math.unit(10.5, "feet"),
  26764. default: true
  26765. },
  26766. {
  26767. name: "Dynamax",
  26768. height: math.unit(210, "feet")
  26769. },
  26770. {
  26771. name: "Full Macro",
  26772. height: math.unit(850, "feet")
  26773. },
  26774. ]
  26775. ))
  26776. characterMakers.push(() => makeCharacter(
  26777. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26778. {
  26779. front: {
  26780. height: math.unit(28, "feet"),
  26781. weight: math.unit(10500, "lb"),
  26782. name: "Front",
  26783. image: {
  26784. source: "./media/characters/kayda/front.svg",
  26785. extra: 1536 / 1428,
  26786. bottom: 68.7 / 1603
  26787. }
  26788. },
  26789. back: {
  26790. height: math.unit(28, "feet"),
  26791. weight: math.unit(10500, "lb"),
  26792. name: "Back",
  26793. image: {
  26794. source: "./media/characters/kayda/back.svg",
  26795. extra: 1557 / 1464,
  26796. bottom: 39.5 / 1597.49
  26797. }
  26798. },
  26799. dick: {
  26800. height: math.unit(3.858, "feet"),
  26801. name: "Dick",
  26802. image: {
  26803. source: "./media/characters/kayda/dick.svg"
  26804. }
  26805. },
  26806. },
  26807. [
  26808. {
  26809. name: "Macro",
  26810. height: math.unit(28, "feet"),
  26811. default: true
  26812. },
  26813. ]
  26814. ))
  26815. characterMakers.push(() => makeCharacter(
  26816. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26817. {
  26818. front: {
  26819. height: math.unit(10 + 11 / 12, "feet"),
  26820. weight: math.unit(1400, "lb"),
  26821. name: "Front",
  26822. image: {
  26823. source: "./media/characters/brian/front.svg",
  26824. extra: 737 / 692,
  26825. bottom: 55.4 / 785
  26826. }
  26827. },
  26828. },
  26829. [
  26830. {
  26831. name: "Normal",
  26832. height: math.unit(10 + 11 / 12, "feet"),
  26833. default: true
  26834. },
  26835. ]
  26836. ))
  26837. characterMakers.push(() => makeCharacter(
  26838. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26839. {
  26840. front: {
  26841. height: math.unit(5 + 8 / 12, "feet"),
  26842. weight: math.unit(140, "lb"),
  26843. name: "Front",
  26844. image: {
  26845. source: "./media/characters/khemri/front.svg",
  26846. extra: 4780 / 4059,
  26847. bottom: 80.1 / 4859.25
  26848. }
  26849. },
  26850. },
  26851. [
  26852. {
  26853. name: "Micro",
  26854. height: math.unit(6, "inches")
  26855. },
  26856. {
  26857. name: "Normal",
  26858. height: math.unit(5 + 8 / 12, "feet"),
  26859. default: true
  26860. },
  26861. ]
  26862. ))
  26863. characterMakers.push(() => makeCharacter(
  26864. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26865. {
  26866. front: {
  26867. height: math.unit(13, "feet"),
  26868. weight: math.unit(1700, "lb"),
  26869. name: "Front",
  26870. image: {
  26871. source: "./media/characters/felix-braveheart/front.svg",
  26872. extra: 1222 / 1157,
  26873. bottom: 53.2 / 1280
  26874. }
  26875. },
  26876. back: {
  26877. height: math.unit(13, "feet"),
  26878. weight: math.unit(1700, "lb"),
  26879. name: "Back",
  26880. image: {
  26881. source: "./media/characters/felix-braveheart/back.svg",
  26882. extra: 1277 / 1203,
  26883. bottom: 50.2 / 1327
  26884. }
  26885. },
  26886. feral: {
  26887. height: math.unit(6, "feet"),
  26888. weight: math.unit(400, "lb"),
  26889. name: "Feral",
  26890. image: {
  26891. source: "./media/characters/felix-braveheart/feral.svg",
  26892. extra: 682 / 625,
  26893. bottom: 6.9 / 688
  26894. }
  26895. },
  26896. },
  26897. [
  26898. {
  26899. name: "Normal",
  26900. height: math.unit(13, "feet"),
  26901. default: true
  26902. },
  26903. ]
  26904. ))
  26905. characterMakers.push(() => makeCharacter(
  26906. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26907. {
  26908. side: {
  26909. height: math.unit(5 + 11 / 12, "feet"),
  26910. weight: math.unit(1400, "lb"),
  26911. name: "Side",
  26912. image: {
  26913. source: "./media/characters/shadow-blade/side.svg",
  26914. extra: 1726 / 1267,
  26915. bottom: 58.4 / 1785
  26916. }
  26917. },
  26918. },
  26919. [
  26920. {
  26921. name: "Normal",
  26922. height: math.unit(5 + 11 / 12, "feet"),
  26923. default: true
  26924. },
  26925. ]
  26926. ))
  26927. characterMakers.push(() => makeCharacter(
  26928. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26929. {
  26930. front: {
  26931. height: math.unit(1 + 6 / 12, "feet"),
  26932. weight: math.unit(25, "lb"),
  26933. name: "Front",
  26934. image: {
  26935. source: "./media/characters/karla-halldor/front.svg",
  26936. extra: 1459 / 1383,
  26937. bottom: 12 / 1472
  26938. }
  26939. },
  26940. },
  26941. [
  26942. {
  26943. name: "Normal",
  26944. height: math.unit(1 + 6 / 12, "feet"),
  26945. default: true
  26946. },
  26947. ]
  26948. ))
  26949. characterMakers.push(() => makeCharacter(
  26950. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26951. {
  26952. front: {
  26953. height: math.unit(6 + 2 / 12, "feet"),
  26954. weight: math.unit(160, "lb"),
  26955. name: "Front",
  26956. image: {
  26957. source: "./media/characters/ariam/front.svg",
  26958. extra: 1073/976,
  26959. bottom: 52/1125
  26960. }
  26961. },
  26962. back: {
  26963. height: math.unit(6 + 2/12, "feet"),
  26964. weight: math.unit(160, "lb"),
  26965. name: "Back",
  26966. image: {
  26967. source: "./media/characters/ariam/back.svg",
  26968. extra: 1103/1023,
  26969. bottom: 9/1112
  26970. }
  26971. },
  26972. dressed: {
  26973. height: math.unit(6 + 2/12, "feet"),
  26974. weight: math.unit(160, "lb"),
  26975. name: "Dressed",
  26976. image: {
  26977. source: "./media/characters/ariam/dressed.svg",
  26978. extra: 1099/1009,
  26979. bottom: 25/1124
  26980. }
  26981. },
  26982. squatting: {
  26983. height: math.unit(4.1, "feet"),
  26984. weight: math.unit(160, "lb"),
  26985. name: "Squatting",
  26986. image: {
  26987. source: "./media/characters/ariam/squatting.svg",
  26988. extra: 2617 / 2112,
  26989. bottom: 61.2 / 2681,
  26990. }
  26991. },
  26992. },
  26993. [
  26994. {
  26995. name: "Normal",
  26996. height: math.unit(6 + 2 / 12, "feet"),
  26997. default: true
  26998. },
  26999. {
  27000. name: "Normal+",
  27001. height: math.unit(4, "meters")
  27002. },
  27003. {
  27004. name: "Macro",
  27005. height: math.unit(50, "meters")
  27006. },
  27007. {
  27008. name: "Macro+",
  27009. height: math.unit(100, "meters")
  27010. },
  27011. {
  27012. name: "Megamacro",
  27013. height: math.unit(20, "km")
  27014. },
  27015. {
  27016. name: "Caretaker",
  27017. height: math.unit(444, "megameters")
  27018. },
  27019. ]
  27020. ))
  27021. characterMakers.push(() => makeCharacter(
  27022. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  27023. {
  27024. front: {
  27025. height: math.unit(1.67, "meters"),
  27026. weight: math.unit(140, "lb"),
  27027. name: "Front",
  27028. image: {
  27029. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  27030. extra: 438 / 410,
  27031. bottom: 0.75 / 439
  27032. }
  27033. },
  27034. },
  27035. [
  27036. {
  27037. name: "Shrunken",
  27038. height: math.unit(7.6, "cm")
  27039. },
  27040. {
  27041. name: "Human Scale",
  27042. height: math.unit(1.67, "meters")
  27043. },
  27044. {
  27045. name: "Wolxi Scale",
  27046. height: math.unit(36.7, "meters"),
  27047. default: true
  27048. },
  27049. ]
  27050. ))
  27051. characterMakers.push(() => makeCharacter(
  27052. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27053. {
  27054. front: {
  27055. height: math.unit(1.73, "meters"),
  27056. weight: math.unit(240, "lb"),
  27057. name: "Front",
  27058. image: {
  27059. source: "./media/characters/izue-two-mothers/front.svg",
  27060. extra: 469 / 437,
  27061. bottom: 1.24 / 470.6
  27062. }
  27063. },
  27064. },
  27065. [
  27066. {
  27067. name: "Shrunken",
  27068. height: math.unit(7.86, "cm")
  27069. },
  27070. {
  27071. name: "Human Scale",
  27072. height: math.unit(1.73, "meters")
  27073. },
  27074. {
  27075. name: "Wolxi Scale",
  27076. height: math.unit(38, "meters"),
  27077. default: true
  27078. },
  27079. ]
  27080. ))
  27081. characterMakers.push(() => makeCharacter(
  27082. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27083. {
  27084. front: {
  27085. height: math.unit(1.55, "meters"),
  27086. weight: math.unit(120, "lb"),
  27087. name: "Front",
  27088. image: {
  27089. source: "./media/characters/teeku-love-shack/front.svg",
  27090. extra: 387 / 362,
  27091. bottom: 1.51 / 388
  27092. }
  27093. },
  27094. },
  27095. [
  27096. {
  27097. name: "Shrunken",
  27098. height: math.unit(7, "cm")
  27099. },
  27100. {
  27101. name: "Human Scale",
  27102. height: math.unit(1.55, "meters")
  27103. },
  27104. {
  27105. name: "Wolxi Scale",
  27106. height: math.unit(34.1, "meters"),
  27107. default: true
  27108. },
  27109. ]
  27110. ))
  27111. characterMakers.push(() => makeCharacter(
  27112. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27113. {
  27114. front: {
  27115. height: math.unit(1.83, "meters"),
  27116. weight: math.unit(135, "lb"),
  27117. name: "Front",
  27118. image: {
  27119. source: "./media/characters/dejma-the-red/front.svg",
  27120. extra: 480 / 458,
  27121. bottom: 1.8 / 482
  27122. }
  27123. },
  27124. },
  27125. [
  27126. {
  27127. name: "Shrunken",
  27128. height: math.unit(8.3, "cm")
  27129. },
  27130. {
  27131. name: "Human Scale",
  27132. height: math.unit(1.83, "meters")
  27133. },
  27134. {
  27135. name: "Wolxi Scale",
  27136. height: math.unit(40, "meters"),
  27137. default: true
  27138. },
  27139. ]
  27140. ))
  27141. characterMakers.push(() => makeCharacter(
  27142. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27143. {
  27144. front: {
  27145. height: math.unit(1.78, "meters"),
  27146. weight: math.unit(65, "kg"),
  27147. name: "Front",
  27148. image: {
  27149. source: "./media/characters/aki/front.svg",
  27150. extra: 452 / 415
  27151. }
  27152. },
  27153. frontNsfw: {
  27154. height: math.unit(1.78, "meters"),
  27155. weight: math.unit(65, "kg"),
  27156. name: "Front (NSFW)",
  27157. image: {
  27158. source: "./media/characters/aki/front-nsfw.svg",
  27159. extra: 452 / 415
  27160. }
  27161. },
  27162. back: {
  27163. height: math.unit(1.78, "meters"),
  27164. weight: math.unit(65, "kg"),
  27165. name: "Back",
  27166. image: {
  27167. source: "./media/characters/aki/back.svg",
  27168. extra: 452 / 415
  27169. }
  27170. },
  27171. rump: {
  27172. height: math.unit(2.05, "feet"),
  27173. name: "Rump",
  27174. image: {
  27175. source: "./media/characters/aki/rump.svg"
  27176. }
  27177. },
  27178. dick: {
  27179. height: math.unit(0.95, "feet"),
  27180. name: "Dick",
  27181. image: {
  27182. source: "./media/characters/aki/dick.svg"
  27183. }
  27184. },
  27185. },
  27186. [
  27187. {
  27188. name: "Micro",
  27189. height: math.unit(15, "cm")
  27190. },
  27191. {
  27192. name: "Normal",
  27193. height: math.unit(178, "cm"),
  27194. default: true
  27195. },
  27196. {
  27197. name: "Macro",
  27198. height: math.unit(214, "m")
  27199. },
  27200. {
  27201. name: "Macro+",
  27202. height: math.unit(534, "m")
  27203. },
  27204. ]
  27205. ))
  27206. characterMakers.push(() => makeCharacter(
  27207. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27208. {
  27209. front: {
  27210. height: math.unit(5 + 5 / 12, "feet"),
  27211. weight: math.unit(120, "lb"),
  27212. name: "Front",
  27213. image: {
  27214. source: "./media/characters/ari/front.svg",
  27215. extra: 1550/1471,
  27216. bottom: 39/1589
  27217. }
  27218. },
  27219. },
  27220. [
  27221. {
  27222. name: "Normal",
  27223. height: math.unit(5 + 5 / 12, "feet")
  27224. },
  27225. {
  27226. name: "Macro",
  27227. height: math.unit(100, "feet"),
  27228. default: true
  27229. },
  27230. {
  27231. name: "Megamacro",
  27232. height: math.unit(100, "miles")
  27233. },
  27234. {
  27235. name: "Gigamacro",
  27236. height: math.unit(80000, "miles")
  27237. },
  27238. ]
  27239. ))
  27240. characterMakers.push(() => makeCharacter(
  27241. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27242. {
  27243. side: {
  27244. height: math.unit(9, "feet"),
  27245. weight: math.unit(400, "kg"),
  27246. name: "Side",
  27247. image: {
  27248. source: "./media/characters/bolt/side.svg",
  27249. extra: 1126 / 896,
  27250. bottom: 60 / 1187.3,
  27251. }
  27252. },
  27253. },
  27254. [
  27255. {
  27256. name: "Micro",
  27257. height: math.unit(5, "inches")
  27258. },
  27259. {
  27260. name: "Normal",
  27261. height: math.unit(9, "feet"),
  27262. default: true
  27263. },
  27264. {
  27265. name: "Macro",
  27266. height: math.unit(700, "feet")
  27267. },
  27268. {
  27269. name: "Max Size",
  27270. height: math.unit(1.52e22, "yottameters")
  27271. },
  27272. ]
  27273. ))
  27274. characterMakers.push(() => makeCharacter(
  27275. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27276. {
  27277. front: {
  27278. height: math.unit(4.3, "meters"),
  27279. weight: math.unit(3, "tons"),
  27280. name: "Front",
  27281. image: {
  27282. source: "./media/characters/draekon-sylviar/front.svg",
  27283. extra: 2072/1512,
  27284. bottom: 74/2146
  27285. }
  27286. },
  27287. back: {
  27288. height: math.unit(4.3, "meters"),
  27289. weight: math.unit(3, "tons"),
  27290. name: "Back",
  27291. image: {
  27292. source: "./media/characters/draekon-sylviar/back.svg",
  27293. extra: 1639/1483,
  27294. bottom: 41/1680
  27295. }
  27296. },
  27297. feral: {
  27298. height: math.unit(1.15, "meters"),
  27299. weight: math.unit(3, "tons"),
  27300. name: "Feral",
  27301. image: {
  27302. source: "./media/characters/draekon-sylviar/feral.svg",
  27303. extra: 1033/395,
  27304. bottom: 130/1163
  27305. }
  27306. },
  27307. maw: {
  27308. height: math.unit(1.3, "meters"),
  27309. name: "Maw",
  27310. image: {
  27311. source: "./media/characters/draekon-sylviar/maw.svg"
  27312. }
  27313. },
  27314. mawSeparated: {
  27315. height: math.unit(1.53, "meters"),
  27316. name: "Separated Maw",
  27317. image: {
  27318. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27319. }
  27320. },
  27321. tail: {
  27322. height: math.unit(1.15, "meters"),
  27323. name: "Tail",
  27324. image: {
  27325. source: "./media/characters/draekon-sylviar/tail.svg"
  27326. }
  27327. },
  27328. tailDick: {
  27329. height: math.unit(1.15, "meters"),
  27330. name: "Tail (Dick)",
  27331. image: {
  27332. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27333. }
  27334. },
  27335. tailDickSeparated: {
  27336. height: math.unit(1.19, "meters"),
  27337. name: "Tail (Separated Dick)",
  27338. image: {
  27339. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27340. }
  27341. },
  27342. slit: {
  27343. height: math.unit(1, "meters"),
  27344. name: "Slit",
  27345. image: {
  27346. source: "./media/characters/draekon-sylviar/slit.svg"
  27347. }
  27348. },
  27349. dick: {
  27350. height: math.unit(1.15, "meters"),
  27351. name: "Dick",
  27352. image: {
  27353. source: "./media/characters/draekon-sylviar/dick.svg"
  27354. }
  27355. },
  27356. dickSeparated: {
  27357. height: math.unit(1.1, "meters"),
  27358. name: "Separated Dick",
  27359. image: {
  27360. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27361. }
  27362. },
  27363. sheath: {
  27364. height: math.unit(1.15, "meters"),
  27365. name: "Sheath",
  27366. image: {
  27367. source: "./media/characters/draekon-sylviar/sheath.svg"
  27368. }
  27369. },
  27370. },
  27371. [
  27372. {
  27373. name: "Small",
  27374. height: math.unit(4.53 / 2, "meters"),
  27375. default: true
  27376. },
  27377. {
  27378. name: "Normal",
  27379. height: math.unit(4.53, "meters"),
  27380. default: true
  27381. },
  27382. {
  27383. name: "Large",
  27384. height: math.unit(4.53 * 2, "meters"),
  27385. },
  27386. ]
  27387. ))
  27388. characterMakers.push(() => makeCharacter(
  27389. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27390. {
  27391. front: {
  27392. height: math.unit(6 + 2 / 12, "feet"),
  27393. weight: math.unit(180, "lb"),
  27394. name: "Front",
  27395. image: {
  27396. source: "./media/characters/brawler/front.svg",
  27397. extra: 3301 / 3027,
  27398. bottom: 138 / 3439
  27399. }
  27400. },
  27401. },
  27402. [
  27403. {
  27404. name: "Normal",
  27405. height: math.unit(6 + 2 / 12, "feet"),
  27406. default: true
  27407. },
  27408. ]
  27409. ))
  27410. characterMakers.push(() => makeCharacter(
  27411. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27412. {
  27413. front: {
  27414. height: math.unit(11, "feet"),
  27415. weight: math.unit(1000, "lb"),
  27416. name: "Front",
  27417. image: {
  27418. source: "./media/characters/alex/front.svg",
  27419. bottom: 44.5 / 620
  27420. }
  27421. },
  27422. },
  27423. [
  27424. {
  27425. name: "Micro",
  27426. height: math.unit(5, "inches")
  27427. },
  27428. {
  27429. name: "Normal",
  27430. height: math.unit(11, "feet"),
  27431. default: true
  27432. },
  27433. {
  27434. name: "Macro",
  27435. height: math.unit(9.5e9, "feet")
  27436. },
  27437. {
  27438. name: "Max Size",
  27439. height: math.unit(1.4e283, "yottameters")
  27440. },
  27441. ]
  27442. ))
  27443. characterMakers.push(() => makeCharacter(
  27444. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27445. {
  27446. female: {
  27447. height: math.unit(29.9, "m"),
  27448. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27449. name: "Female",
  27450. image: {
  27451. source: "./media/characters/zenari/female.svg",
  27452. extra: 3281.6 / 3217,
  27453. bottom: 72.2 / 3353
  27454. }
  27455. },
  27456. male: {
  27457. height: math.unit(27.7, "m"),
  27458. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27459. name: "Male",
  27460. image: {
  27461. source: "./media/characters/zenari/male.svg",
  27462. extra: 3008 / 2991,
  27463. bottom: 54.6 / 3069
  27464. }
  27465. },
  27466. },
  27467. [
  27468. {
  27469. name: "Macro",
  27470. height: math.unit(29.7, "meters"),
  27471. default: true
  27472. },
  27473. ]
  27474. ))
  27475. characterMakers.push(() => makeCharacter(
  27476. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27477. {
  27478. female: {
  27479. height: math.unit(23.8, "m"),
  27480. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27481. name: "Female",
  27482. image: {
  27483. source: "./media/characters/mactarian/female.svg",
  27484. extra: 2662 / 2569,
  27485. bottom: 73 / 2736
  27486. }
  27487. },
  27488. male: {
  27489. height: math.unit(23.8, "m"),
  27490. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27491. name: "Male",
  27492. image: {
  27493. source: "./media/characters/mactarian/male.svg",
  27494. extra: 2673 / 2600,
  27495. bottom: 76 / 2750
  27496. }
  27497. },
  27498. },
  27499. [
  27500. {
  27501. name: "Macro",
  27502. height: math.unit(23.8, "meters"),
  27503. default: true
  27504. },
  27505. ]
  27506. ))
  27507. characterMakers.push(() => makeCharacter(
  27508. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27509. {
  27510. female: {
  27511. height: math.unit(19.3, "m"),
  27512. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27513. name: "Female",
  27514. image: {
  27515. source: "./media/characters/umok/female.svg",
  27516. extra: 2186 / 2078,
  27517. bottom: 87 / 2277
  27518. }
  27519. },
  27520. male: {
  27521. height: math.unit(19.5, "m"),
  27522. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27523. name: "Male",
  27524. image: {
  27525. source: "./media/characters/umok/male.svg",
  27526. extra: 2233 / 2140,
  27527. bottom: 24.4 / 2258
  27528. }
  27529. },
  27530. },
  27531. [
  27532. {
  27533. name: "Macro",
  27534. height: math.unit(19.3, "meters"),
  27535. default: true
  27536. },
  27537. ]
  27538. ))
  27539. characterMakers.push(() => makeCharacter(
  27540. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27541. {
  27542. female: {
  27543. height: math.unit(26.15, "m"),
  27544. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27545. name: "Female",
  27546. image: {
  27547. source: "./media/characters/joraxian/female.svg",
  27548. extra: 2912 / 2824,
  27549. bottom: 36 / 2956
  27550. }
  27551. },
  27552. male: {
  27553. height: math.unit(25.4, "m"),
  27554. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27555. name: "Male",
  27556. image: {
  27557. source: "./media/characters/joraxian/male.svg",
  27558. extra: 2877 / 2721,
  27559. bottom: 82 / 2967
  27560. }
  27561. },
  27562. },
  27563. [
  27564. {
  27565. name: "Macro",
  27566. height: math.unit(26.15, "meters"),
  27567. default: true
  27568. },
  27569. ]
  27570. ))
  27571. characterMakers.push(() => makeCharacter(
  27572. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27573. {
  27574. female: {
  27575. height: math.unit(21.6, "m"),
  27576. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27577. name: "Female",
  27578. image: {
  27579. source: "./media/characters/sthara/female.svg",
  27580. extra: 2516 / 2347,
  27581. bottom: 21.5 / 2537
  27582. }
  27583. },
  27584. male: {
  27585. height: math.unit(24, "m"),
  27586. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27587. name: "Male",
  27588. image: {
  27589. source: "./media/characters/sthara/male.svg",
  27590. extra: 2732 / 2607,
  27591. bottom: 23 / 2732
  27592. }
  27593. },
  27594. },
  27595. [
  27596. {
  27597. name: "Macro",
  27598. height: math.unit(21.6, "meters"),
  27599. default: true
  27600. },
  27601. ]
  27602. ))
  27603. characterMakers.push(() => makeCharacter(
  27604. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27605. {
  27606. front: {
  27607. height: math.unit(6 + 4 / 12, "feet"),
  27608. weight: math.unit(175, "lb"),
  27609. name: "Front",
  27610. image: {
  27611. source: "./media/characters/luka-bryzant/front.svg",
  27612. extra: 311 / 289,
  27613. bottom: 4 / 315
  27614. }
  27615. },
  27616. back: {
  27617. height: math.unit(6 + 4 / 12, "feet"),
  27618. weight: math.unit(175, "lb"),
  27619. name: "Back",
  27620. image: {
  27621. source: "./media/characters/luka-bryzant/back.svg",
  27622. extra: 311 / 289,
  27623. bottom: 3.8 / 313.7
  27624. }
  27625. },
  27626. },
  27627. [
  27628. {
  27629. name: "Micro",
  27630. height: math.unit(10, "inches")
  27631. },
  27632. {
  27633. name: "Normal",
  27634. height: math.unit(6 + 4 / 12, "feet"),
  27635. default: true
  27636. },
  27637. {
  27638. name: "Large",
  27639. height: math.unit(12, "feet")
  27640. },
  27641. ]
  27642. ))
  27643. characterMakers.push(() => makeCharacter(
  27644. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27645. {
  27646. front: {
  27647. height: math.unit(5 + 7 / 12, "feet"),
  27648. weight: math.unit(185, "lb"),
  27649. name: "Front",
  27650. image: {
  27651. source: "./media/characters/aman-aquila/front.svg",
  27652. extra: 1013 / 976,
  27653. bottom: 45.6 / 1057
  27654. }
  27655. },
  27656. side: {
  27657. height: math.unit(5 + 7 / 12, "feet"),
  27658. weight: math.unit(185, "lb"),
  27659. name: "Side",
  27660. image: {
  27661. source: "./media/characters/aman-aquila/side.svg",
  27662. extra: 1054 / 1011,
  27663. bottom: 15 / 1070
  27664. }
  27665. },
  27666. back: {
  27667. height: math.unit(5 + 7 / 12, "feet"),
  27668. weight: math.unit(185, "lb"),
  27669. name: "Back",
  27670. image: {
  27671. source: "./media/characters/aman-aquila/back.svg",
  27672. extra: 1026 / 970,
  27673. bottom: 12 / 1039
  27674. }
  27675. },
  27676. head: {
  27677. height: math.unit(1.211, "feet"),
  27678. name: "Head",
  27679. image: {
  27680. source: "./media/characters/aman-aquila/head.svg",
  27681. }
  27682. },
  27683. },
  27684. [
  27685. {
  27686. name: "Minimicro",
  27687. height: math.unit(0.057, "inches")
  27688. },
  27689. {
  27690. name: "Micro",
  27691. height: math.unit(7, "inches")
  27692. },
  27693. {
  27694. name: "Mini",
  27695. height: math.unit(3 + 7 / 12, "feet")
  27696. },
  27697. {
  27698. name: "Normal",
  27699. height: math.unit(5 + 7 / 12, "feet"),
  27700. default: true
  27701. },
  27702. {
  27703. name: "Macro",
  27704. height: math.unit(157 + 7 / 12, "feet")
  27705. },
  27706. {
  27707. name: "Megamacro",
  27708. height: math.unit(1557 + 7 / 12, "feet")
  27709. },
  27710. {
  27711. name: "Gigamacro",
  27712. height: math.unit(15557 + 7 / 12, "feet")
  27713. },
  27714. ]
  27715. ))
  27716. characterMakers.push(() => makeCharacter(
  27717. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27718. {
  27719. front: {
  27720. height: math.unit(3 + 2 / 12, "inches"),
  27721. weight: math.unit(0.3, "ounces"),
  27722. name: "Front",
  27723. image: {
  27724. source: "./media/characters/hiphae/front.svg",
  27725. extra: 1931 / 1683,
  27726. bottom: 24 / 1955
  27727. }
  27728. },
  27729. },
  27730. [
  27731. {
  27732. name: "Normal",
  27733. height: math.unit(3 + 1 / 2, "inches"),
  27734. default: true
  27735. },
  27736. ]
  27737. ))
  27738. characterMakers.push(() => makeCharacter(
  27739. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27740. {
  27741. front: {
  27742. height: math.unit(5 + 10 / 12, "feet"),
  27743. weight: math.unit(165, "lb"),
  27744. name: "Front",
  27745. image: {
  27746. source: "./media/characters/nicky/front.svg",
  27747. extra: 3144 / 2886,
  27748. bottom: 45.6 / 3192
  27749. }
  27750. },
  27751. back: {
  27752. height: math.unit(5 + 10 / 12, "feet"),
  27753. weight: math.unit(165, "lb"),
  27754. name: "Back",
  27755. image: {
  27756. source: "./media/characters/nicky/back.svg",
  27757. extra: 3055 / 2804,
  27758. bottom: 28.4 / 3087
  27759. }
  27760. },
  27761. frontclothed: {
  27762. height: math.unit(5 + 10 / 12, "feet"),
  27763. weight: math.unit(165, "lb"),
  27764. name: "Front-clothed",
  27765. image: {
  27766. source: "./media/characters/nicky/front-clothed.svg",
  27767. extra: 3184.9 / 2926.9,
  27768. bottom: 86.5 / 3239.9
  27769. }
  27770. },
  27771. foot: {
  27772. height: math.unit(1.16, "feet"),
  27773. name: "Foot",
  27774. image: {
  27775. source: "./media/characters/nicky/foot.svg"
  27776. }
  27777. },
  27778. feet: {
  27779. height: math.unit(1.34, "feet"),
  27780. name: "Feet",
  27781. image: {
  27782. source: "./media/characters/nicky/feet.svg"
  27783. }
  27784. },
  27785. maw: {
  27786. height: math.unit(0.9, "feet"),
  27787. name: "Maw",
  27788. image: {
  27789. source: "./media/characters/nicky/maw.svg"
  27790. }
  27791. },
  27792. },
  27793. [
  27794. {
  27795. name: "Normal",
  27796. height: math.unit(5 + 10 / 12, "feet"),
  27797. default: true
  27798. },
  27799. {
  27800. name: "Macro",
  27801. height: math.unit(60, "feet")
  27802. },
  27803. {
  27804. name: "Megamacro",
  27805. height: math.unit(1, "mile")
  27806. },
  27807. ]
  27808. ))
  27809. characterMakers.push(() => makeCharacter(
  27810. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27811. {
  27812. side: {
  27813. height: math.unit(10, "feet"),
  27814. weight: math.unit(600, "lb"),
  27815. name: "Side",
  27816. image: {
  27817. source: "./media/characters/blair/side.svg",
  27818. bottom: 16.6 / 475,
  27819. extra: 458 / 431
  27820. }
  27821. },
  27822. },
  27823. [
  27824. {
  27825. name: "Micro",
  27826. height: math.unit(8, "inches")
  27827. },
  27828. {
  27829. name: "Normal",
  27830. height: math.unit(10, "feet"),
  27831. default: true
  27832. },
  27833. {
  27834. name: "Macro",
  27835. height: math.unit(180, "feet")
  27836. },
  27837. ]
  27838. ))
  27839. characterMakers.push(() => makeCharacter(
  27840. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27841. {
  27842. front: {
  27843. height: math.unit(5 + 4 / 12, "feet"),
  27844. weight: math.unit(125, "lb"),
  27845. name: "Front",
  27846. image: {
  27847. source: "./media/characters/fisher/front.svg",
  27848. extra: 444 / 390,
  27849. bottom: 2 / 444.8
  27850. }
  27851. },
  27852. },
  27853. [
  27854. {
  27855. name: "Micro",
  27856. height: math.unit(4, "inches")
  27857. },
  27858. {
  27859. name: "Normal",
  27860. height: math.unit(5 + 4 / 12, "feet"),
  27861. default: true
  27862. },
  27863. {
  27864. name: "Macro",
  27865. height: math.unit(100, "feet")
  27866. },
  27867. ]
  27868. ))
  27869. characterMakers.push(() => makeCharacter(
  27870. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27871. {
  27872. front: {
  27873. height: math.unit(6.71, "feet"),
  27874. weight: math.unit(200, "lb"),
  27875. preyCapacity: math.unit(1000000, "people"),
  27876. name: "Front",
  27877. image: {
  27878. source: "./media/characters/gliss/front.svg",
  27879. extra: 2347 / 2231,
  27880. bottom: 113 / 2462
  27881. }
  27882. },
  27883. hammerspaceSize: {
  27884. height: math.unit(6.71 * 717, "feet"),
  27885. weight: math.unit(200, "lb"),
  27886. preyCapacity: math.unit(1000000, "people"),
  27887. name: "Hammerspace Size",
  27888. image: {
  27889. source: "./media/characters/gliss/front.svg",
  27890. extra: 2347 / 2231,
  27891. bottom: 113 / 2462
  27892. }
  27893. },
  27894. },
  27895. [
  27896. {
  27897. name: "Normal",
  27898. height: math.unit(6.71, "feet"),
  27899. default: true
  27900. },
  27901. ]
  27902. ))
  27903. characterMakers.push(() => makeCharacter(
  27904. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27905. {
  27906. side: {
  27907. height: math.unit(1.44, "m"),
  27908. weight: math.unit(80, "kg"),
  27909. name: "Side",
  27910. image: {
  27911. source: "./media/characters/dune-anderson/side.svg",
  27912. bottom: 49 / 1426
  27913. }
  27914. },
  27915. },
  27916. [
  27917. {
  27918. name: "Wolf-sized",
  27919. height: math.unit(1.44, "meters")
  27920. },
  27921. {
  27922. name: "Normal",
  27923. height: math.unit(5.05, "meters"),
  27924. default: true
  27925. },
  27926. {
  27927. name: "Big",
  27928. height: math.unit(14.4, "meters")
  27929. },
  27930. {
  27931. name: "Huge",
  27932. height: math.unit(144, "meters")
  27933. },
  27934. ]
  27935. ))
  27936. characterMakers.push(() => makeCharacter(
  27937. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27938. {
  27939. front: {
  27940. height: math.unit(6, "feet"),
  27941. weight: math.unit(220, "lb"),
  27942. name: "Front",
  27943. image: {
  27944. source: "./media/characters/hind/front.svg",
  27945. extra: 1912/1787,
  27946. bottom: 52/1964
  27947. }
  27948. },
  27949. back: {
  27950. height: math.unit(6, "feet"),
  27951. weight: math.unit(220, "lb"),
  27952. name: "Back",
  27953. image: {
  27954. source: "./media/characters/hind/back.svg",
  27955. extra: 1901/1794,
  27956. bottom: 26/1927
  27957. }
  27958. },
  27959. },
  27960. [
  27961. {
  27962. name: "Normal",
  27963. height: math.unit(6, "feet"),
  27964. default: true
  27965. },
  27966. ]
  27967. ))
  27968. characterMakers.push(() => makeCharacter(
  27969. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27970. {
  27971. front: {
  27972. height: math.unit(2.1, "meters"),
  27973. weight: math.unit(150, "lb"),
  27974. name: "Front",
  27975. image: {
  27976. source: "./media/characters/tharquench-sizestealer/front.svg",
  27977. extra: 1605/1470,
  27978. bottom: 36/1641
  27979. }
  27980. },
  27981. frontAlt: {
  27982. height: math.unit(2.1, "meters"),
  27983. weight: math.unit(150, "lb"),
  27984. name: "Front (Alt)",
  27985. image: {
  27986. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27987. extra: 2318 / 2063,
  27988. bottom: 93.4 / 2410
  27989. }
  27990. },
  27991. },
  27992. [
  27993. {
  27994. name: "Nano",
  27995. height: math.unit(1, "mm")
  27996. },
  27997. {
  27998. name: "Micro",
  27999. height: math.unit(1, "cm")
  28000. },
  28001. {
  28002. name: "Normal",
  28003. height: math.unit(2.1, "meters"),
  28004. default: true
  28005. },
  28006. ]
  28007. ))
  28008. characterMakers.push(() => makeCharacter(
  28009. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  28010. {
  28011. front: {
  28012. height: math.unit(7 + 5 / 12, "feet"),
  28013. weight: math.unit(357, "lb"),
  28014. name: "Front",
  28015. image: {
  28016. source: "./media/characters/solex-draconov/front.svg",
  28017. extra: 1993 / 1865,
  28018. bottom: 117 / 2111
  28019. }
  28020. },
  28021. },
  28022. [
  28023. {
  28024. name: "Natural Height",
  28025. height: math.unit(7 + 5 / 12, "feet"),
  28026. default: true
  28027. },
  28028. {
  28029. name: "Macro",
  28030. height: math.unit(350, "feet")
  28031. },
  28032. {
  28033. name: "Macro+",
  28034. height: math.unit(1000, "feet")
  28035. },
  28036. {
  28037. name: "Megamacro",
  28038. height: math.unit(20, "km")
  28039. },
  28040. {
  28041. name: "Megamacro+",
  28042. height: math.unit(1000, "km")
  28043. },
  28044. {
  28045. name: "Gigamacro",
  28046. height: math.unit(2.5, "Gm")
  28047. },
  28048. {
  28049. name: "Teramacro",
  28050. height: math.unit(15, "Tm")
  28051. },
  28052. {
  28053. name: "Galactic",
  28054. height: math.unit(30, "Zm")
  28055. },
  28056. {
  28057. name: "Universal",
  28058. height: math.unit(21000, "Ym")
  28059. },
  28060. {
  28061. name: "Omniversal",
  28062. height: math.unit(9.861e50, "Ym")
  28063. },
  28064. {
  28065. name: "Existential",
  28066. height: math.unit(1e300, "meters")
  28067. },
  28068. ]
  28069. ))
  28070. characterMakers.push(() => makeCharacter(
  28071. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28072. {
  28073. side: {
  28074. height: math.unit(25, "feet"),
  28075. weight: math.unit(90000, "lb"),
  28076. name: "Side",
  28077. image: {
  28078. source: "./media/characters/mandarax/side.svg",
  28079. extra: 614 / 332,
  28080. bottom: 55 / 630
  28081. }
  28082. },
  28083. lounging: {
  28084. height: math.unit(15.4, "feet"),
  28085. weight: math.unit(90000, "lb"),
  28086. name: "Lounging",
  28087. image: {
  28088. source: "./media/characters/mandarax/lounging.svg",
  28089. extra: 817/609,
  28090. bottom: 685/1502
  28091. }
  28092. },
  28093. head: {
  28094. height: math.unit(11.4, "feet"),
  28095. name: "Head",
  28096. image: {
  28097. source: "./media/characters/mandarax/head.svg"
  28098. }
  28099. },
  28100. belly: {
  28101. height: math.unit(33, "feet"),
  28102. name: "Belly",
  28103. preyCapacity: math.unit(500, "people"),
  28104. image: {
  28105. source: "./media/characters/mandarax/belly.svg"
  28106. }
  28107. },
  28108. dick: {
  28109. height: math.unit(8.46, "feet"),
  28110. name: "Dick",
  28111. image: {
  28112. source: "./media/characters/mandarax/dick.svg"
  28113. }
  28114. },
  28115. top: {
  28116. height: math.unit(28, "meters"),
  28117. name: "Top",
  28118. image: {
  28119. source: "./media/characters/mandarax/top.svg"
  28120. }
  28121. },
  28122. },
  28123. [
  28124. {
  28125. name: "Normal",
  28126. height: math.unit(25, "feet"),
  28127. default: true
  28128. },
  28129. ]
  28130. ))
  28131. characterMakers.push(() => makeCharacter(
  28132. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28133. {
  28134. front: {
  28135. height: math.unit(5, "feet"),
  28136. weight: math.unit(90, "lb"),
  28137. name: "Front",
  28138. image: {
  28139. source: "./media/characters/pixil/front.svg",
  28140. extra: 2000 / 1618,
  28141. bottom: 12.3 / 2011
  28142. }
  28143. },
  28144. },
  28145. [
  28146. {
  28147. name: "Normal",
  28148. height: math.unit(5, "feet"),
  28149. default: true
  28150. },
  28151. {
  28152. name: "Megamacro",
  28153. height: math.unit(10, "miles"),
  28154. },
  28155. ]
  28156. ))
  28157. characterMakers.push(() => makeCharacter(
  28158. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28159. {
  28160. front: {
  28161. height: math.unit(7 + 2 / 12, "feet"),
  28162. weight: math.unit(200, "lb"),
  28163. name: "Front",
  28164. image: {
  28165. source: "./media/characters/angel/front.svg",
  28166. extra: 1946/1840,
  28167. bottom: 30/1976
  28168. }
  28169. },
  28170. },
  28171. [
  28172. {
  28173. name: "Normal",
  28174. height: math.unit(7 + 2 / 12, "feet"),
  28175. default: true
  28176. },
  28177. {
  28178. name: "Macro",
  28179. height: math.unit(1000, "feet")
  28180. },
  28181. {
  28182. name: "Megamacro",
  28183. height: math.unit(2, "miles")
  28184. },
  28185. {
  28186. name: "Gigamacro",
  28187. height: math.unit(20, "earths")
  28188. },
  28189. ]
  28190. ))
  28191. characterMakers.push(() => makeCharacter(
  28192. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28193. {
  28194. front: {
  28195. height: math.unit(5, "feet"),
  28196. weight: math.unit(180, "lb"),
  28197. name: "Front",
  28198. image: {
  28199. source: "./media/characters/mekana/front.svg",
  28200. extra: 1671 / 1605,
  28201. bottom: 3.5 / 1691
  28202. }
  28203. },
  28204. side: {
  28205. height: math.unit(5, "feet"),
  28206. weight: math.unit(180, "lb"),
  28207. name: "Side",
  28208. image: {
  28209. source: "./media/characters/mekana/side.svg",
  28210. extra: 1671 / 1605,
  28211. bottom: 3.5 / 1691
  28212. }
  28213. },
  28214. back: {
  28215. height: math.unit(5, "feet"),
  28216. weight: math.unit(180, "lb"),
  28217. name: "Back",
  28218. image: {
  28219. source: "./media/characters/mekana/back.svg",
  28220. extra: 1671 / 1605,
  28221. bottom: 3.5 / 1691
  28222. }
  28223. },
  28224. },
  28225. [
  28226. {
  28227. name: "Normal",
  28228. height: math.unit(5, "feet"),
  28229. default: true
  28230. },
  28231. ]
  28232. ))
  28233. characterMakers.push(() => makeCharacter(
  28234. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28235. {
  28236. front: {
  28237. height: math.unit(4 + 6 / 12, "feet"),
  28238. weight: math.unit(80, "lb"),
  28239. name: "Front",
  28240. image: {
  28241. source: "./media/characters/pixie/front.svg",
  28242. extra: 1924 / 1825,
  28243. bottom: 22.4 / 1946
  28244. }
  28245. },
  28246. },
  28247. [
  28248. {
  28249. name: "Normal",
  28250. height: math.unit(4 + 6 / 12, "feet"),
  28251. default: true
  28252. },
  28253. {
  28254. name: "Macro",
  28255. height: math.unit(40, "feet")
  28256. },
  28257. ]
  28258. ))
  28259. characterMakers.push(() => makeCharacter(
  28260. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28261. {
  28262. front: {
  28263. height: math.unit(2.1, "meters"),
  28264. weight: math.unit(200, "lb"),
  28265. name: "Front",
  28266. image: {
  28267. source: "./media/characters/the-lascivious/front.svg",
  28268. extra: 1 / 0.893,
  28269. bottom: 3.5 / 573.7
  28270. }
  28271. },
  28272. },
  28273. [
  28274. {
  28275. name: "Human Scale",
  28276. height: math.unit(2.1, "meters")
  28277. },
  28278. {
  28279. name: "Wolxi Scale",
  28280. height: math.unit(46.2, "m"),
  28281. default: true
  28282. },
  28283. {
  28284. name: "Boinker of Buildings",
  28285. height: math.unit(10, "km")
  28286. },
  28287. {
  28288. name: "Shagger of Skyscrapers",
  28289. height: math.unit(40, "km")
  28290. },
  28291. {
  28292. name: "Banger of Boroughs",
  28293. height: math.unit(4000, "km")
  28294. },
  28295. {
  28296. name: "Screwer of States",
  28297. height: math.unit(100000, "km")
  28298. },
  28299. {
  28300. name: "Pounder of Planets",
  28301. height: math.unit(2000000, "km")
  28302. },
  28303. ]
  28304. ))
  28305. characterMakers.push(() => makeCharacter(
  28306. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28307. {
  28308. front: {
  28309. height: math.unit(6, "feet"),
  28310. weight: math.unit(150, "lb"),
  28311. name: "Front",
  28312. image: {
  28313. source: "./media/characters/aj/front.svg",
  28314. extra: 2039 / 1562,
  28315. bottom: 40 / 2079
  28316. }
  28317. },
  28318. },
  28319. [
  28320. {
  28321. name: "Normal",
  28322. height: math.unit(11 + 6 / 12, "feet"),
  28323. default: true
  28324. },
  28325. {
  28326. name: "Megamacro",
  28327. height: math.unit(60, "megameters")
  28328. },
  28329. ]
  28330. ))
  28331. characterMakers.push(() => makeCharacter(
  28332. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28333. {
  28334. side: {
  28335. height: math.unit(31 + 8 / 12, "feet"),
  28336. weight: math.unit(75000, "kg"),
  28337. name: "Side",
  28338. image: {
  28339. source: "./media/characters/koros/side.svg",
  28340. extra: 1442 / 1297,
  28341. bottom: 122.7 / 1562
  28342. }
  28343. },
  28344. dicksKingsCrown: {
  28345. height: math.unit(6, "feet"),
  28346. name: "Dicks (King's Crown)",
  28347. image: {
  28348. source: "./media/characters/koros/dicks-kings-crown.svg"
  28349. }
  28350. },
  28351. dicksTailSet: {
  28352. height: math.unit(3, "feet"),
  28353. name: "Dicks (Tail Set)",
  28354. image: {
  28355. source: "./media/characters/koros/dicks-tail-set.svg"
  28356. }
  28357. },
  28358. dickCumming: {
  28359. height: math.unit(7.98, "feet"),
  28360. name: "Dick (Cumming)",
  28361. image: {
  28362. source: "./media/characters/koros/dick-cumming.svg"
  28363. }
  28364. },
  28365. dicksBack: {
  28366. height: math.unit(5.9, "feet"),
  28367. name: "Dicks (Back)",
  28368. image: {
  28369. source: "./media/characters/koros/dicks-back.svg"
  28370. }
  28371. },
  28372. dicksFront: {
  28373. height: math.unit(3.72, "feet"),
  28374. name: "Dicks (Front)",
  28375. image: {
  28376. source: "./media/characters/koros/dicks-front.svg"
  28377. }
  28378. },
  28379. dicksPeeking: {
  28380. height: math.unit(3.0, "feet"),
  28381. name: "Dicks (Peeking)",
  28382. image: {
  28383. source: "./media/characters/koros/dicks-peeking.svg"
  28384. }
  28385. },
  28386. eye: {
  28387. height: math.unit(1.7, "feet"),
  28388. name: "Eye",
  28389. image: {
  28390. source: "./media/characters/koros/eye.svg"
  28391. }
  28392. },
  28393. headFront: {
  28394. height: math.unit(11.69, "feet"),
  28395. name: "Head (Front)",
  28396. image: {
  28397. source: "./media/characters/koros/head-front.svg"
  28398. }
  28399. },
  28400. headSide: {
  28401. height: math.unit(14, "feet"),
  28402. name: "Head (Side)",
  28403. image: {
  28404. source: "./media/characters/koros/head-side.svg"
  28405. }
  28406. },
  28407. leg: {
  28408. height: math.unit(17, "feet"),
  28409. name: "Leg",
  28410. image: {
  28411. source: "./media/characters/koros/leg.svg"
  28412. }
  28413. },
  28414. mawSide: {
  28415. height: math.unit(12.8, "feet"),
  28416. name: "Maw (Side)",
  28417. image: {
  28418. source: "./media/characters/koros/maw-side.svg"
  28419. }
  28420. },
  28421. mawSpitting: {
  28422. height: math.unit(17, "feet"),
  28423. name: "Maw (Spitting)",
  28424. image: {
  28425. source: "./media/characters/koros/maw-spitting.svg"
  28426. }
  28427. },
  28428. slit: {
  28429. height: math.unit(2.8, "feet"),
  28430. name: "Slit",
  28431. image: {
  28432. source: "./media/characters/koros/slit.svg"
  28433. }
  28434. },
  28435. stomach: {
  28436. height: math.unit(6.8, "feet"),
  28437. preyCapacity: math.unit(20, "people"),
  28438. name: "Stomach",
  28439. image: {
  28440. source: "./media/characters/koros/stomach.svg"
  28441. }
  28442. },
  28443. wingspanBottom: {
  28444. height: math.unit(114, "feet"),
  28445. name: "Wingspan (Bottom)",
  28446. image: {
  28447. source: "./media/characters/koros/wingspan-bottom.svg"
  28448. }
  28449. },
  28450. wingspanTop: {
  28451. height: math.unit(104, "feet"),
  28452. name: "Wingspan (Top)",
  28453. image: {
  28454. source: "./media/characters/koros/wingspan-top.svg"
  28455. }
  28456. },
  28457. },
  28458. [
  28459. {
  28460. name: "Normal",
  28461. height: math.unit(31 + 8 / 12, "feet"),
  28462. default: true
  28463. },
  28464. ]
  28465. ))
  28466. characterMakers.push(() => makeCharacter(
  28467. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28468. {
  28469. front: {
  28470. height: math.unit(18 + 5 / 12, "feet"),
  28471. weight: math.unit(3750, "kg"),
  28472. name: "Front",
  28473. image: {
  28474. source: "./media/characters/vexx/front.svg",
  28475. extra: 426 / 396,
  28476. bottom: 31.5 / 458
  28477. }
  28478. },
  28479. maw: {
  28480. height: math.unit(6, "feet"),
  28481. name: "Maw",
  28482. image: {
  28483. source: "./media/characters/vexx/maw.svg"
  28484. }
  28485. },
  28486. },
  28487. [
  28488. {
  28489. name: "Normal",
  28490. height: math.unit(18 + 5 / 12, "feet"),
  28491. default: true
  28492. },
  28493. ]
  28494. ))
  28495. characterMakers.push(() => makeCharacter(
  28496. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28497. {
  28498. front: {
  28499. height: math.unit(17 + 6 / 12, "feet"),
  28500. weight: math.unit(150, "lb"),
  28501. name: "Front",
  28502. image: {
  28503. source: "./media/characters/baadra/front.svg",
  28504. extra: 1694/1553,
  28505. bottom: 179/1873
  28506. }
  28507. },
  28508. frontAlt: {
  28509. height: math.unit(17 + 6 / 12, "feet"),
  28510. weight: math.unit(150, "lb"),
  28511. name: "Front (Alt)",
  28512. image: {
  28513. source: "./media/characters/baadra/front-alt.svg",
  28514. extra: 3137 / 2890,
  28515. bottom: 168.4 / 3305
  28516. }
  28517. },
  28518. back: {
  28519. height: math.unit(17 + 6 / 12, "feet"),
  28520. weight: math.unit(150, "lb"),
  28521. name: "Back",
  28522. image: {
  28523. source: "./media/characters/baadra/back.svg",
  28524. extra: 3142 / 2890,
  28525. bottom: 220 / 3371
  28526. }
  28527. },
  28528. head: {
  28529. height: math.unit(5.45, "feet"),
  28530. name: "Head",
  28531. image: {
  28532. source: "./media/characters/baadra/head.svg"
  28533. }
  28534. },
  28535. headAngry: {
  28536. height: math.unit(4.95, "feet"),
  28537. name: "Head (Angry)",
  28538. image: {
  28539. source: "./media/characters/baadra/head-angry.svg"
  28540. }
  28541. },
  28542. headOpen: {
  28543. height: math.unit(6, "feet"),
  28544. name: "Head (Open)",
  28545. image: {
  28546. source: "./media/characters/baadra/head-open.svg"
  28547. }
  28548. },
  28549. },
  28550. [
  28551. {
  28552. name: "Normal",
  28553. height: math.unit(17 + 6 / 12, "feet"),
  28554. default: true
  28555. },
  28556. ]
  28557. ))
  28558. characterMakers.push(() => makeCharacter(
  28559. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28560. {
  28561. front: {
  28562. height: math.unit(7 + 3 / 12, "feet"),
  28563. weight: math.unit(180, "lb"),
  28564. name: "Front",
  28565. image: {
  28566. source: "./media/characters/juri/front.svg",
  28567. extra: 1401 / 1237,
  28568. bottom: 18.5 / 1418
  28569. }
  28570. },
  28571. side: {
  28572. height: math.unit(7 + 3 / 12, "feet"),
  28573. weight: math.unit(180, "lb"),
  28574. name: "Side",
  28575. image: {
  28576. source: "./media/characters/juri/side.svg",
  28577. extra: 1424 / 1242,
  28578. bottom: 18.5 / 1447
  28579. }
  28580. },
  28581. sitting: {
  28582. height: math.unit(6, "feet"),
  28583. weight: math.unit(180, "lb"),
  28584. name: "Sitting",
  28585. image: {
  28586. source: "./media/characters/juri/sitting.svg",
  28587. extra: 1270 / 1143,
  28588. bottom: 100 / 1343
  28589. }
  28590. },
  28591. back: {
  28592. height: math.unit(7 + 3 / 12, "feet"),
  28593. weight: math.unit(180, "lb"),
  28594. name: "Back",
  28595. image: {
  28596. source: "./media/characters/juri/back.svg",
  28597. extra: 1377 / 1240,
  28598. bottom: 23.7 / 1405
  28599. }
  28600. },
  28601. maw: {
  28602. height: math.unit(2.8, "feet"),
  28603. name: "Maw",
  28604. image: {
  28605. source: "./media/characters/juri/maw.svg"
  28606. }
  28607. },
  28608. stomach: {
  28609. height: math.unit(0.89, "feet"),
  28610. preyCapacity: math.unit(4, "liters"),
  28611. name: "Stomach",
  28612. image: {
  28613. source: "./media/characters/juri/stomach.svg"
  28614. }
  28615. },
  28616. },
  28617. [
  28618. {
  28619. name: "Normal",
  28620. height: math.unit(7 + 3 / 12, "feet"),
  28621. default: true
  28622. },
  28623. ]
  28624. ))
  28625. characterMakers.push(() => makeCharacter(
  28626. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28627. {
  28628. fox: {
  28629. height: math.unit(5 + 6 / 12, "feet"),
  28630. weight: math.unit(140, "lb"),
  28631. name: "Fox",
  28632. image: {
  28633. source: "./media/characters/maxene-sita/fox.svg",
  28634. extra: 146 / 138,
  28635. bottom: 2.1 / 148.19
  28636. }
  28637. },
  28638. foxLaying: {
  28639. height: math.unit(1.70, "feet"),
  28640. weight: math.unit(140, "lb"),
  28641. name: "Fox (Laying)",
  28642. image: {
  28643. source: "./media/characters/maxene-sita/fox-laying.svg",
  28644. extra: 910 / 572,
  28645. bottom: 71 / 981
  28646. }
  28647. },
  28648. kitsune: {
  28649. height: math.unit(10, "feet"),
  28650. weight: math.unit(800, "lb"),
  28651. name: "Kitsune",
  28652. image: {
  28653. source: "./media/characters/maxene-sita/kitsune.svg",
  28654. extra: 185 / 176,
  28655. bottom: 4.7 / 189.9
  28656. }
  28657. },
  28658. hellhound: {
  28659. height: math.unit(10, "feet"),
  28660. weight: math.unit(700, "lb"),
  28661. name: "Hellhound",
  28662. image: {
  28663. source: "./media/characters/maxene-sita/hellhound.svg",
  28664. extra: 1600 / 1545,
  28665. bottom: 81 / 1681
  28666. }
  28667. },
  28668. },
  28669. [
  28670. {
  28671. name: "Normal",
  28672. height: math.unit(5 + 6 / 12, "feet"),
  28673. default: true
  28674. },
  28675. ]
  28676. ))
  28677. characterMakers.push(() => makeCharacter(
  28678. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28679. {
  28680. front: {
  28681. height: math.unit(3 + 4 / 12, "feet"),
  28682. weight: math.unit(70, "lb"),
  28683. name: "Front",
  28684. image: {
  28685. source: "./media/characters/maia/front.svg",
  28686. extra: 227 / 219.5,
  28687. bottom: 40 / 267
  28688. }
  28689. },
  28690. back: {
  28691. height: math.unit(3 + 4 / 12, "feet"),
  28692. weight: math.unit(70, "lb"),
  28693. name: "Back",
  28694. image: {
  28695. source: "./media/characters/maia/back.svg",
  28696. extra: 237 / 225
  28697. }
  28698. },
  28699. },
  28700. [
  28701. {
  28702. name: "Normal",
  28703. height: math.unit(3 + 4 / 12, "feet"),
  28704. default: true
  28705. },
  28706. ]
  28707. ))
  28708. characterMakers.push(() => makeCharacter(
  28709. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28710. {
  28711. front: {
  28712. height: math.unit(5 + 10 / 12, "feet"),
  28713. weight: math.unit(197, "lb"),
  28714. name: "Front",
  28715. image: {
  28716. source: "./media/characters/jabaro/front.svg",
  28717. extra: 225 / 216,
  28718. bottom: 5.06 / 230
  28719. }
  28720. },
  28721. back: {
  28722. height: math.unit(5 + 10 / 12, "feet"),
  28723. weight: math.unit(197, "lb"),
  28724. name: "Back",
  28725. image: {
  28726. source: "./media/characters/jabaro/back.svg",
  28727. extra: 225 / 219,
  28728. bottom: 1.9 / 227
  28729. }
  28730. },
  28731. },
  28732. [
  28733. {
  28734. name: "Normal",
  28735. height: math.unit(5 + 10 / 12, "feet"),
  28736. default: true
  28737. },
  28738. ]
  28739. ))
  28740. characterMakers.push(() => makeCharacter(
  28741. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28742. {
  28743. front: {
  28744. height: math.unit(5 + 8 / 12, "feet"),
  28745. weight: math.unit(139, "lb"),
  28746. name: "Front",
  28747. image: {
  28748. source: "./media/characters/risa/front.svg",
  28749. extra: 270 / 260,
  28750. bottom: 11.2 / 282
  28751. }
  28752. },
  28753. back: {
  28754. height: math.unit(5 + 8 / 12, "feet"),
  28755. weight: math.unit(139, "lb"),
  28756. name: "Back",
  28757. image: {
  28758. source: "./media/characters/risa/back.svg",
  28759. extra: 264 / 255,
  28760. bottom: 4 / 268
  28761. }
  28762. },
  28763. },
  28764. [
  28765. {
  28766. name: "Normal",
  28767. height: math.unit(5 + 8 / 12, "feet"),
  28768. default: true
  28769. },
  28770. ]
  28771. ))
  28772. characterMakers.push(() => makeCharacter(
  28773. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28774. {
  28775. front: {
  28776. height: math.unit(2 + 11 / 12, "feet"),
  28777. weight: math.unit(30, "lb"),
  28778. name: "Front",
  28779. image: {
  28780. source: "./media/characters/weatley/front.svg",
  28781. bottom: 10.7 / 414,
  28782. extra: 403.5 / 362
  28783. }
  28784. },
  28785. back: {
  28786. height: math.unit(2 + 11 / 12, "feet"),
  28787. weight: math.unit(30, "lb"),
  28788. name: "Back",
  28789. image: {
  28790. source: "./media/characters/weatley/back.svg",
  28791. bottom: 10.7 / 414,
  28792. extra: 403.5 / 362
  28793. }
  28794. },
  28795. },
  28796. [
  28797. {
  28798. name: "Normal",
  28799. height: math.unit(2 + 11 / 12, "feet"),
  28800. default: true
  28801. },
  28802. ]
  28803. ))
  28804. characterMakers.push(() => makeCharacter(
  28805. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28806. {
  28807. front: {
  28808. height: math.unit(5 + 2 / 12, "feet"),
  28809. weight: math.unit(50, "kg"),
  28810. name: "Front",
  28811. image: {
  28812. source: "./media/characters/mercury-crescent/front.svg",
  28813. extra: 1088 / 1033,
  28814. bottom: 18.9 / 1109
  28815. }
  28816. },
  28817. },
  28818. [
  28819. {
  28820. name: "Normal",
  28821. height: math.unit(5 + 2 / 12, "feet"),
  28822. default: true
  28823. },
  28824. ]
  28825. ))
  28826. characterMakers.push(() => makeCharacter(
  28827. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28828. {
  28829. front: {
  28830. height: math.unit(2, "feet"),
  28831. weight: math.unit(15, "kg"),
  28832. name: "Front",
  28833. image: {
  28834. source: "./media/characters/diamond-jones/front.svg",
  28835. extra: 727/723,
  28836. bottom: 46/773
  28837. }
  28838. },
  28839. },
  28840. [
  28841. {
  28842. name: "Normal",
  28843. height: math.unit(2, "feet"),
  28844. default: true
  28845. },
  28846. ]
  28847. ))
  28848. characterMakers.push(() => makeCharacter(
  28849. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28850. {
  28851. front: {
  28852. height: math.unit(3, "feet"),
  28853. weight: math.unit(30, "kg"),
  28854. name: "Front",
  28855. image: {
  28856. source: "./media/characters/sweet-bit/front.svg",
  28857. extra: 675 / 567,
  28858. bottom: 27.7 / 703
  28859. }
  28860. },
  28861. },
  28862. [
  28863. {
  28864. name: "Normal",
  28865. height: math.unit(3, "feet"),
  28866. default: true
  28867. },
  28868. ]
  28869. ))
  28870. characterMakers.push(() => makeCharacter(
  28871. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28872. {
  28873. side: {
  28874. height: math.unit(9.178, "feet"),
  28875. weight: math.unit(500, "lb"),
  28876. name: "Side",
  28877. image: {
  28878. source: "./media/characters/umbrazen/side.svg",
  28879. extra: 1730 / 1473,
  28880. bottom: 34.6 / 1765
  28881. }
  28882. },
  28883. },
  28884. [
  28885. {
  28886. name: "Normal",
  28887. height: math.unit(9.178, "feet"),
  28888. default: true
  28889. },
  28890. ]
  28891. ))
  28892. characterMakers.push(() => makeCharacter(
  28893. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28894. {
  28895. front: {
  28896. height: math.unit(10, "feet"),
  28897. weight: math.unit(750, "lb"),
  28898. name: "Front",
  28899. image: {
  28900. source: "./media/characters/arlist/front.svg",
  28901. extra: 961 / 778,
  28902. bottom: 6.2 / 986
  28903. }
  28904. },
  28905. },
  28906. [
  28907. {
  28908. name: "Normal",
  28909. height: math.unit(10, "feet"),
  28910. default: true
  28911. },
  28912. ]
  28913. ))
  28914. characterMakers.push(() => makeCharacter(
  28915. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28916. {
  28917. front: {
  28918. height: math.unit(5 + 1 / 12, "feet"),
  28919. weight: math.unit(110, "lb"),
  28920. name: "Front",
  28921. image: {
  28922. source: "./media/characters/aradel/front.svg",
  28923. extra: 324 / 303,
  28924. bottom: 3.6 / 329.4
  28925. }
  28926. },
  28927. },
  28928. [
  28929. {
  28930. name: "Normal",
  28931. height: math.unit(5 + 1 / 12, "feet"),
  28932. default: true
  28933. },
  28934. ]
  28935. ))
  28936. characterMakers.push(() => makeCharacter(
  28937. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28938. {
  28939. dressed: {
  28940. height: math.unit(3 + 8 / 12, "feet"),
  28941. weight: math.unit(50, "lb"),
  28942. name: "Dressed",
  28943. image: {
  28944. source: "./media/characters/serryn/dressed.svg",
  28945. extra: 1792 / 1656,
  28946. bottom: 43.5 / 1840
  28947. }
  28948. },
  28949. nude: {
  28950. height: math.unit(3 + 8 / 12, "feet"),
  28951. weight: math.unit(50, "lb"),
  28952. name: "Nude",
  28953. image: {
  28954. source: "./media/characters/serryn/nude.svg",
  28955. extra: 1792 / 1656,
  28956. bottom: 43.5 / 1840
  28957. }
  28958. },
  28959. },
  28960. [
  28961. {
  28962. name: "Normal",
  28963. height: math.unit(3 + 8 / 12, "feet"),
  28964. default: true
  28965. },
  28966. ]
  28967. ))
  28968. characterMakers.push(() => makeCharacter(
  28969. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28970. {
  28971. front: {
  28972. height: math.unit(7 + 10 / 12, "feet"),
  28973. weight: math.unit(255, "lb"),
  28974. name: "Front",
  28975. image: {
  28976. source: "./media/characters/xavier-thyme/front.svg",
  28977. extra: 3733 / 3642,
  28978. bottom: 131 / 3869
  28979. }
  28980. },
  28981. frontRaven: {
  28982. height: math.unit(7 + 10 / 12, "feet"),
  28983. weight: math.unit(255, "lb"),
  28984. name: "Front (Raven)",
  28985. image: {
  28986. source: "./media/characters/xavier-thyme/front-raven.svg",
  28987. extra: 4385 / 3642,
  28988. bottom: 131 / 4517
  28989. }
  28990. },
  28991. },
  28992. [
  28993. {
  28994. name: "Normal",
  28995. height: math.unit(7 + 10 / 12, "feet"),
  28996. default: true
  28997. },
  28998. ]
  28999. ))
  29000. characterMakers.push(() => makeCharacter(
  29001. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  29002. {
  29003. front: {
  29004. height: math.unit(1.6, "m"),
  29005. weight: math.unit(50, "kg"),
  29006. name: "Front",
  29007. image: {
  29008. source: "./media/characters/kiki/front.svg",
  29009. extra: 4682 / 3610,
  29010. bottom: 115 / 4777
  29011. }
  29012. },
  29013. },
  29014. [
  29015. {
  29016. name: "Normal",
  29017. height: math.unit(1.6, "meters"),
  29018. default: true
  29019. },
  29020. ]
  29021. ))
  29022. characterMakers.push(() => makeCharacter(
  29023. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  29024. {
  29025. front: {
  29026. height: math.unit(50, "m"),
  29027. weight: math.unit(500, "tonnes"),
  29028. name: "Front",
  29029. image: {
  29030. source: "./media/characters/ryoko/front.svg",
  29031. extra: 4632 / 3926,
  29032. bottom: 193 / 4823
  29033. }
  29034. },
  29035. },
  29036. [
  29037. {
  29038. name: "Normal",
  29039. height: math.unit(50, "meters"),
  29040. default: true
  29041. },
  29042. ]
  29043. ))
  29044. characterMakers.push(() => makeCharacter(
  29045. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29046. {
  29047. front: {
  29048. height: math.unit(30, "m"),
  29049. weight: math.unit(22, "tonnes"),
  29050. name: "Front",
  29051. image: {
  29052. source: "./media/characters/elio/front.svg",
  29053. extra: 4582 / 3720,
  29054. bottom: 236 / 4828
  29055. }
  29056. },
  29057. },
  29058. [
  29059. {
  29060. name: "Normal",
  29061. height: math.unit(30, "meters"),
  29062. default: true
  29063. },
  29064. ]
  29065. ))
  29066. characterMakers.push(() => makeCharacter(
  29067. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29068. {
  29069. front: {
  29070. height: math.unit(6 + 3 / 12, "feet"),
  29071. weight: math.unit(120, "lb"),
  29072. name: "Front",
  29073. image: {
  29074. source: "./media/characters/azura/front.svg",
  29075. extra: 1149 / 1135,
  29076. bottom: 45 / 1194
  29077. }
  29078. },
  29079. frontClothed: {
  29080. height: math.unit(6 + 3 / 12, "feet"),
  29081. weight: math.unit(120, "lb"),
  29082. name: "Front (Clothed)",
  29083. image: {
  29084. source: "./media/characters/azura/front-clothed.svg",
  29085. extra: 1149 / 1135,
  29086. bottom: 45 / 1194
  29087. }
  29088. },
  29089. },
  29090. [
  29091. {
  29092. name: "Normal",
  29093. height: math.unit(6 + 3 / 12, "feet"),
  29094. default: true
  29095. },
  29096. {
  29097. name: "Macro",
  29098. height: math.unit(20 + 6 / 12, "feet")
  29099. },
  29100. {
  29101. name: "Megamacro",
  29102. height: math.unit(12, "miles")
  29103. },
  29104. {
  29105. name: "Gigamacro",
  29106. height: math.unit(10000, "miles")
  29107. },
  29108. {
  29109. name: "Teramacro",
  29110. height: math.unit(900000, "miles")
  29111. },
  29112. ]
  29113. ))
  29114. characterMakers.push(() => makeCharacter(
  29115. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29116. {
  29117. front: {
  29118. height: math.unit(12, "feet"),
  29119. weight: math.unit(1, "ton"),
  29120. capacity: math.unit(660000, "gallons"),
  29121. name: "Front",
  29122. image: {
  29123. source: "./media/characters/zeus/front.svg",
  29124. extra: 5005 / 4717,
  29125. bottom: 363 / 5388
  29126. }
  29127. },
  29128. },
  29129. [
  29130. {
  29131. name: "Normal",
  29132. height: math.unit(12, "feet")
  29133. },
  29134. {
  29135. name: "Preferred Size",
  29136. height: math.unit(0.5, "miles"),
  29137. default: true
  29138. },
  29139. {
  29140. name: "Giga Horse",
  29141. height: math.unit(300, "miles")
  29142. },
  29143. {
  29144. name: "Riding Planets",
  29145. height: math.unit(30, "megameters")
  29146. },
  29147. {
  29148. name: "Cosmic Giant",
  29149. height: math.unit(3, "zettameters")
  29150. },
  29151. {
  29152. name: "Breeding God",
  29153. height: math.unit(9.92e22, "yottameters")
  29154. },
  29155. ]
  29156. ))
  29157. characterMakers.push(() => makeCharacter(
  29158. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29159. {
  29160. side: {
  29161. height: math.unit(9, "feet"),
  29162. weight: math.unit(1500, "kg"),
  29163. name: "Side",
  29164. image: {
  29165. source: "./media/characters/fang/side.svg",
  29166. extra: 924 / 866,
  29167. bottom: 47.5 / 972.3
  29168. }
  29169. },
  29170. },
  29171. [
  29172. {
  29173. name: "Normal",
  29174. height: math.unit(9, "feet"),
  29175. default: true
  29176. },
  29177. {
  29178. name: "Macro",
  29179. height: math.unit(75 + 6 / 12, "feet")
  29180. },
  29181. {
  29182. name: "Teramacro",
  29183. height: math.unit(50000, "miles")
  29184. },
  29185. ]
  29186. ))
  29187. characterMakers.push(() => makeCharacter(
  29188. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29189. {
  29190. front: {
  29191. height: math.unit(10, "feet"),
  29192. weight: math.unit(2, "tons"),
  29193. name: "Front",
  29194. image: {
  29195. source: "./media/characters/rekhit/front.svg",
  29196. extra: 2796 / 2590,
  29197. bottom: 225 / 3022
  29198. }
  29199. },
  29200. },
  29201. [
  29202. {
  29203. name: "Normal",
  29204. height: math.unit(10, "feet"),
  29205. default: true
  29206. },
  29207. {
  29208. name: "Macro",
  29209. height: math.unit(500, "feet")
  29210. },
  29211. ]
  29212. ))
  29213. characterMakers.push(() => makeCharacter(
  29214. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29215. {
  29216. front: {
  29217. height: math.unit(7 + 6.451 / 12, "feet"),
  29218. weight: math.unit(310, "lb"),
  29219. name: "Front",
  29220. image: {
  29221. source: "./media/characters/dahlia-verrick/front.svg",
  29222. extra: 1488 / 1365,
  29223. bottom: 6.2 / 1495
  29224. }
  29225. },
  29226. back: {
  29227. height: math.unit(7 + 6.451 / 12, "feet"),
  29228. weight: math.unit(310, "lb"),
  29229. name: "Back",
  29230. image: {
  29231. source: "./media/characters/dahlia-verrick/back.svg",
  29232. extra: 1472 / 1351,
  29233. bottom: 5.28 / 1477
  29234. }
  29235. },
  29236. frontBusiness: {
  29237. height: math.unit(7 + 6.451 / 12, "feet"),
  29238. weight: math.unit(200, "lb"),
  29239. name: "Front (Business)",
  29240. image: {
  29241. source: "./media/characters/dahlia-verrick/front-business.svg",
  29242. extra: 1478 / 1381,
  29243. bottom: 5.5 / 1484
  29244. }
  29245. },
  29246. frontCasual: {
  29247. height: math.unit(7 + 6.451 / 12, "feet"),
  29248. weight: math.unit(200, "lb"),
  29249. name: "Front (Casual)",
  29250. image: {
  29251. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29252. extra: 1478 / 1381,
  29253. bottom: 5.5 / 1484
  29254. }
  29255. },
  29256. },
  29257. [
  29258. {
  29259. name: "Travel-Sized",
  29260. height: math.unit(7.45, "inches")
  29261. },
  29262. {
  29263. name: "Normal",
  29264. height: math.unit(7 + 6.451 / 12, "feet"),
  29265. default: true
  29266. },
  29267. {
  29268. name: "Hitting the Town",
  29269. height: math.unit(37 + 8 / 12, "feet")
  29270. },
  29271. {
  29272. name: "Stomp in the Suburbs",
  29273. height: math.unit(964 + 9.728 / 12, "feet")
  29274. },
  29275. {
  29276. name: "Sit on the City",
  29277. height: math.unit(61747 + 10.592 / 12, "feet")
  29278. },
  29279. {
  29280. name: "Glomp the Globe",
  29281. height: math.unit(252919327 + 4.832 / 12, "feet")
  29282. },
  29283. ]
  29284. ))
  29285. characterMakers.push(() => makeCharacter(
  29286. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29287. {
  29288. front: {
  29289. height: math.unit(6 + 4 / 12, "feet"),
  29290. weight: math.unit(320, "lb"),
  29291. name: "Front",
  29292. image: {
  29293. source: "./media/characters/balina-mahigan/front.svg",
  29294. extra: 447 / 428,
  29295. bottom: 18 / 466
  29296. }
  29297. },
  29298. back: {
  29299. height: math.unit(6 + 4 / 12, "feet"),
  29300. weight: math.unit(320, "lb"),
  29301. name: "Back",
  29302. image: {
  29303. source: "./media/characters/balina-mahigan/back.svg",
  29304. extra: 445 / 428,
  29305. bottom: 4.07 / 448
  29306. }
  29307. },
  29308. arm: {
  29309. height: math.unit(1.88, "feet"),
  29310. name: "Arm",
  29311. image: {
  29312. source: "./media/characters/balina-mahigan/arm.svg"
  29313. }
  29314. },
  29315. backPort: {
  29316. height: math.unit(0.685, "feet"),
  29317. name: "Back Port",
  29318. image: {
  29319. source: "./media/characters/balina-mahigan/back-port.svg"
  29320. }
  29321. },
  29322. hoofpaw: {
  29323. height: math.unit(1.41, "feet"),
  29324. name: "Hoofpaw",
  29325. image: {
  29326. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29327. }
  29328. },
  29329. leftHandBack: {
  29330. height: math.unit(0.938, "feet"),
  29331. name: "Left Hand (Back)",
  29332. image: {
  29333. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29334. }
  29335. },
  29336. leftHandFront: {
  29337. height: math.unit(0.938, "feet"),
  29338. name: "Left Hand (Front)",
  29339. image: {
  29340. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29341. }
  29342. },
  29343. rightHandBack: {
  29344. height: math.unit(0.95, "feet"),
  29345. name: "Right Hand (Back)",
  29346. image: {
  29347. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29348. }
  29349. },
  29350. rightHandFront: {
  29351. height: math.unit(0.95, "feet"),
  29352. name: "Right Hand (Front)",
  29353. image: {
  29354. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29355. }
  29356. },
  29357. },
  29358. [
  29359. {
  29360. name: "Normal",
  29361. height: math.unit(6 + 4 / 12, "feet"),
  29362. default: true
  29363. },
  29364. ]
  29365. ))
  29366. characterMakers.push(() => makeCharacter(
  29367. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29368. {
  29369. front: {
  29370. height: math.unit(6, "feet"),
  29371. weight: math.unit(320, "lb"),
  29372. name: "Front",
  29373. image: {
  29374. source: "./media/characters/balina-mejeri/front.svg",
  29375. extra: 517 / 488,
  29376. bottom: 44.2 / 561
  29377. }
  29378. },
  29379. },
  29380. [
  29381. {
  29382. name: "Normal",
  29383. height: math.unit(6 + 4 / 12, "feet")
  29384. },
  29385. {
  29386. name: "Business",
  29387. height: math.unit(155, "feet"),
  29388. default: true
  29389. },
  29390. ]
  29391. ))
  29392. characterMakers.push(() => makeCharacter(
  29393. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29394. {
  29395. kneeling: {
  29396. height: math.unit(6 + 4 / 12, "feet"),
  29397. weight: math.unit(300 * 20, "lb"),
  29398. name: "Kneeling",
  29399. image: {
  29400. source: "./media/characters/balbarian/kneeling.svg",
  29401. extra: 922 / 862,
  29402. bottom: 42.4 / 965
  29403. }
  29404. },
  29405. },
  29406. [
  29407. {
  29408. name: "Normal",
  29409. height: math.unit(6 + 4 / 12, "feet")
  29410. },
  29411. {
  29412. name: "Treasured",
  29413. height: math.unit(18 + 9 / 12, "feet"),
  29414. default: true
  29415. },
  29416. {
  29417. name: "Macro",
  29418. height: math.unit(900, "feet")
  29419. },
  29420. ]
  29421. ))
  29422. characterMakers.push(() => makeCharacter(
  29423. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29424. {
  29425. front: {
  29426. height: math.unit(6 + 4 / 12, "feet"),
  29427. weight: math.unit(325, "lb"),
  29428. name: "Front",
  29429. image: {
  29430. source: "./media/characters/balina-amarini/front.svg",
  29431. extra: 415 / 403,
  29432. bottom: 19 / 433.4
  29433. }
  29434. },
  29435. back: {
  29436. height: math.unit(6 + 4 / 12, "feet"),
  29437. weight: math.unit(325, "lb"),
  29438. name: "Back",
  29439. image: {
  29440. source: "./media/characters/balina-amarini/back.svg",
  29441. extra: 415 / 403,
  29442. bottom: 13.5 / 432
  29443. }
  29444. },
  29445. overdrive: {
  29446. height: math.unit(6 + 4 / 12, "feet"),
  29447. weight: math.unit(400, "lb"),
  29448. name: "Overdrive",
  29449. image: {
  29450. source: "./media/characters/balina-amarini/overdrive.svg",
  29451. extra: 269 / 259,
  29452. bottom: 12 / 282
  29453. }
  29454. },
  29455. },
  29456. [
  29457. {
  29458. name: "Boom",
  29459. height: math.unit(9 + 10 / 12, "feet"),
  29460. default: true
  29461. },
  29462. {
  29463. name: "Macro",
  29464. height: math.unit(280, "feet")
  29465. },
  29466. ]
  29467. ))
  29468. characterMakers.push(() => makeCharacter(
  29469. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29470. {
  29471. goddess: {
  29472. height: math.unit(600, "feet"),
  29473. weight: math.unit(2000000, "tons"),
  29474. name: "Goddess",
  29475. image: {
  29476. source: "./media/characters/lady-kubwa/goddess.svg",
  29477. extra: 1240.5 / 1223,
  29478. bottom: 22 / 1263
  29479. }
  29480. },
  29481. goddesser: {
  29482. height: math.unit(900, "feet"),
  29483. weight: math.unit(20000000, "lb"),
  29484. name: "Goddess-er",
  29485. image: {
  29486. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29487. extra: 899 / 888,
  29488. bottom: 12.6 / 912
  29489. }
  29490. },
  29491. },
  29492. [
  29493. {
  29494. name: "Macro",
  29495. height: math.unit(600, "feet"),
  29496. default: true
  29497. },
  29498. {
  29499. name: "Megamacro",
  29500. height: math.unit(250, "miles")
  29501. },
  29502. ]
  29503. ))
  29504. characterMakers.push(() => makeCharacter(
  29505. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29506. {
  29507. front: {
  29508. height: math.unit(7 + 7 / 12, "feet"),
  29509. weight: math.unit(250, "lb"),
  29510. name: "Front",
  29511. image: {
  29512. source: "./media/characters/tala-grovehorn/front.svg",
  29513. extra: 2636 / 2525,
  29514. bottom: 147 / 2781
  29515. }
  29516. },
  29517. back: {
  29518. height: math.unit(7 + 7 / 12, "feet"),
  29519. weight: math.unit(250, "lb"),
  29520. name: "Back",
  29521. image: {
  29522. source: "./media/characters/tala-grovehorn/back.svg",
  29523. extra: 2635 / 2539,
  29524. bottom: 100 / 2732.8
  29525. }
  29526. },
  29527. mouth: {
  29528. height: math.unit(1.15, "feet"),
  29529. name: "Mouth",
  29530. image: {
  29531. source: "./media/characters/tala-grovehorn/mouth.svg"
  29532. }
  29533. },
  29534. dick: {
  29535. height: math.unit(2.36, "feet"),
  29536. name: "Dick",
  29537. image: {
  29538. source: "./media/characters/tala-grovehorn/dick.svg"
  29539. }
  29540. },
  29541. slit: {
  29542. height: math.unit(0.61, "feet"),
  29543. name: "Slit",
  29544. image: {
  29545. source: "./media/characters/tala-grovehorn/slit.svg"
  29546. }
  29547. },
  29548. },
  29549. [
  29550. ]
  29551. ))
  29552. characterMakers.push(() => makeCharacter(
  29553. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29554. {
  29555. front: {
  29556. height: math.unit(7 + 7 / 12, "feet"),
  29557. weight: math.unit(225, "lb"),
  29558. name: "Front",
  29559. image: {
  29560. source: "./media/characters/epona/front.svg",
  29561. extra: 2445 / 2290,
  29562. bottom: 251 / 2696
  29563. }
  29564. },
  29565. back: {
  29566. height: math.unit(7 + 7 / 12, "feet"),
  29567. weight: math.unit(225, "lb"),
  29568. name: "Back",
  29569. image: {
  29570. source: "./media/characters/epona/back.svg",
  29571. extra: 2546 / 2408,
  29572. bottom: 44 / 2589
  29573. }
  29574. },
  29575. genitals: {
  29576. height: math.unit(1.5, "feet"),
  29577. name: "Genitals",
  29578. image: {
  29579. source: "./media/characters/epona/genitals.svg"
  29580. }
  29581. },
  29582. },
  29583. [
  29584. {
  29585. name: "Normal",
  29586. height: math.unit(7 + 7 / 12, "feet"),
  29587. default: true
  29588. },
  29589. ]
  29590. ))
  29591. characterMakers.push(() => makeCharacter(
  29592. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29593. {
  29594. front: {
  29595. height: math.unit(7, "feet"),
  29596. weight: math.unit(518, "lb"),
  29597. name: "Front",
  29598. image: {
  29599. source: "./media/characters/avia-bloodbourn/front.svg",
  29600. extra: 1466 / 1350,
  29601. bottom: 65 / 1527
  29602. }
  29603. },
  29604. },
  29605. [
  29606. ]
  29607. ))
  29608. characterMakers.push(() => makeCharacter(
  29609. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29610. {
  29611. front: {
  29612. height: math.unit(9.35, "feet"),
  29613. weight: math.unit(600, "lb"),
  29614. name: "Front",
  29615. image: {
  29616. source: "./media/characters/amera/front.svg",
  29617. extra: 891 / 818,
  29618. bottom: 30 / 922.7
  29619. }
  29620. },
  29621. back: {
  29622. height: math.unit(9.35, "feet"),
  29623. weight: math.unit(600, "lb"),
  29624. name: "Back",
  29625. image: {
  29626. source: "./media/characters/amera/back.svg",
  29627. extra: 876 / 824,
  29628. bottom: 6.8 / 884
  29629. }
  29630. },
  29631. dick: {
  29632. height: math.unit(2.14, "feet"),
  29633. name: "Dick",
  29634. image: {
  29635. source: "./media/characters/amera/dick.svg"
  29636. }
  29637. },
  29638. },
  29639. [
  29640. {
  29641. name: "Normal",
  29642. height: math.unit(9.35, "feet"),
  29643. default: true
  29644. },
  29645. ]
  29646. ))
  29647. characterMakers.push(() => makeCharacter(
  29648. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29649. {
  29650. kneeling: {
  29651. height: math.unit(3 + 4 / 12, "feet"),
  29652. weight: math.unit(90, "lb"),
  29653. name: "Kneeling",
  29654. image: {
  29655. source: "./media/characters/rosewen/kneeling.svg",
  29656. extra: 1835 / 1571,
  29657. bottom: 27.7 / 1862
  29658. }
  29659. },
  29660. },
  29661. [
  29662. {
  29663. name: "Normal",
  29664. height: math.unit(3 + 4 / 12, "feet"),
  29665. default: true
  29666. },
  29667. ]
  29668. ))
  29669. characterMakers.push(() => makeCharacter(
  29670. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29671. {
  29672. front: {
  29673. height: math.unit(5 + 10 / 12, "feet"),
  29674. weight: math.unit(200, "lb"),
  29675. name: "Front",
  29676. image: {
  29677. source: "./media/characters/sabah/front.svg",
  29678. extra: 849 / 763,
  29679. bottom: 33.9 / 881
  29680. }
  29681. },
  29682. },
  29683. [
  29684. {
  29685. name: "Normal",
  29686. height: math.unit(5 + 10 / 12, "feet"),
  29687. default: true
  29688. },
  29689. ]
  29690. ))
  29691. characterMakers.push(() => makeCharacter(
  29692. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29693. {
  29694. front: {
  29695. height: math.unit(3 + 5 / 12, "feet"),
  29696. weight: math.unit(40, "kg"),
  29697. name: "Front",
  29698. image: {
  29699. source: "./media/characters/purple-flame/front.svg",
  29700. extra: 1577 / 1412,
  29701. bottom: 97 / 1694
  29702. }
  29703. },
  29704. frontDressed: {
  29705. height: math.unit(3 + 5 / 12, "feet"),
  29706. weight: math.unit(40, "kg"),
  29707. name: "Front (Dressed)",
  29708. image: {
  29709. source: "./media/characters/purple-flame/front-dressed.svg",
  29710. extra: 1577 / 1412,
  29711. bottom: 97 / 1694
  29712. }
  29713. },
  29714. headphones: {
  29715. height: math.unit(0.85, "feet"),
  29716. name: "Headphones",
  29717. image: {
  29718. source: "./media/characters/purple-flame/headphones.svg"
  29719. }
  29720. },
  29721. },
  29722. [
  29723. {
  29724. name: "Really Small",
  29725. height: math.unit(5, "cm")
  29726. },
  29727. {
  29728. name: "Micro",
  29729. height: math.unit(1 + 5 / 12, "feet")
  29730. },
  29731. {
  29732. name: "Normal",
  29733. height: math.unit(3 + 5 / 12, "feet"),
  29734. default: true
  29735. },
  29736. {
  29737. name: "Minimacro",
  29738. height: math.unit(125, "feet")
  29739. },
  29740. {
  29741. name: "Macro",
  29742. height: math.unit(0.5, "miles")
  29743. },
  29744. {
  29745. name: "Megamacro",
  29746. height: math.unit(50, "miles")
  29747. },
  29748. {
  29749. name: "Gigantic",
  29750. height: math.unit(750, "miles")
  29751. },
  29752. {
  29753. name: "Planetary",
  29754. height: math.unit(15000, "miles")
  29755. },
  29756. ]
  29757. ))
  29758. characterMakers.push(() => makeCharacter(
  29759. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29760. {
  29761. front: {
  29762. height: math.unit(14, "feet"),
  29763. weight: math.unit(959, "lb"),
  29764. name: "Front",
  29765. image: {
  29766. source: "./media/characters/arsenal/front.svg",
  29767. extra: 2357 / 2157,
  29768. bottom: 93 / 2458
  29769. }
  29770. },
  29771. },
  29772. [
  29773. {
  29774. name: "Normal",
  29775. height: math.unit(14, "feet"),
  29776. default: true
  29777. },
  29778. ]
  29779. ))
  29780. characterMakers.push(() => makeCharacter(
  29781. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29782. {
  29783. front: {
  29784. height: math.unit(6, "feet"),
  29785. weight: math.unit(150, "lb"),
  29786. name: "Front",
  29787. image: {
  29788. source: "./media/characters/adira/front.svg",
  29789. extra: 2121/2013,
  29790. bottom: 206/2327
  29791. }
  29792. },
  29793. },
  29794. [
  29795. {
  29796. name: "Micro",
  29797. height: math.unit(4, "inches"),
  29798. default: true
  29799. },
  29800. {
  29801. name: "Macro",
  29802. height: math.unit(50, "feet")
  29803. },
  29804. ]
  29805. ))
  29806. characterMakers.push(() => makeCharacter(
  29807. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29808. {
  29809. front: {
  29810. height: math.unit(16, "feet"),
  29811. weight: math.unit(1000, "lb"),
  29812. name: "Front",
  29813. image: {
  29814. source: "./media/characters/grim/front.svg",
  29815. extra: 622 / 614,
  29816. bottom: 18.1 / 642
  29817. }
  29818. },
  29819. back: {
  29820. height: math.unit(16, "feet"),
  29821. weight: math.unit(1000, "lb"),
  29822. name: "Back",
  29823. image: {
  29824. source: "./media/characters/grim/back.svg",
  29825. extra: 610.6 / 602,
  29826. bottom: 40.8 / 652
  29827. }
  29828. },
  29829. hunched: {
  29830. height: math.unit(9.75, "feet"),
  29831. weight: math.unit(1000, "lb"),
  29832. name: "Hunched",
  29833. image: {
  29834. source: "./media/characters/grim/hunched.svg",
  29835. extra: 304 / 297,
  29836. bottom: 35.4 / 394
  29837. }
  29838. },
  29839. },
  29840. [
  29841. {
  29842. name: "Normal",
  29843. height: math.unit(16, "feet"),
  29844. default: true
  29845. },
  29846. ]
  29847. ))
  29848. characterMakers.push(() => makeCharacter(
  29849. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29850. {
  29851. front: {
  29852. height: math.unit(2.3, "meters"),
  29853. weight: math.unit(300, "lb"),
  29854. name: "Front",
  29855. image: {
  29856. source: "./media/characters/sinja/front-sfw.svg",
  29857. extra: 1393 / 1294,
  29858. bottom: 70 / 1463
  29859. }
  29860. },
  29861. frontNsfw: {
  29862. height: math.unit(2.3, "meters"),
  29863. weight: math.unit(300, "lb"),
  29864. name: "Front (NSFW)",
  29865. image: {
  29866. source: "./media/characters/sinja/front-nsfw.svg",
  29867. extra: 1393 / 1294,
  29868. bottom: 70 / 1463
  29869. }
  29870. },
  29871. back: {
  29872. height: math.unit(2.3, "meters"),
  29873. weight: math.unit(300, "lb"),
  29874. name: "Back",
  29875. image: {
  29876. source: "./media/characters/sinja/back.svg",
  29877. extra: 1393 / 1294,
  29878. bottom: 70 / 1463
  29879. }
  29880. },
  29881. head: {
  29882. height: math.unit(1.771, "feet"),
  29883. name: "Head",
  29884. image: {
  29885. source: "./media/characters/sinja/head.svg"
  29886. }
  29887. },
  29888. slit: {
  29889. height: math.unit(0.8, "feet"),
  29890. name: "Slit",
  29891. image: {
  29892. source: "./media/characters/sinja/slit.svg"
  29893. }
  29894. },
  29895. },
  29896. [
  29897. {
  29898. name: "Normal",
  29899. height: math.unit(2.3, "meters")
  29900. },
  29901. {
  29902. name: "Macro",
  29903. height: math.unit(91, "meters"),
  29904. default: true
  29905. },
  29906. {
  29907. name: "Megamacro",
  29908. height: math.unit(91440, "meters")
  29909. },
  29910. {
  29911. name: "Gigamacro",
  29912. height: math.unit(60960000, "meters")
  29913. },
  29914. {
  29915. name: "Teramacro",
  29916. height: math.unit(9144000000, "meters")
  29917. },
  29918. ]
  29919. ))
  29920. characterMakers.push(() => makeCharacter(
  29921. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29922. {
  29923. front: {
  29924. height: math.unit(1.7, "meters"),
  29925. weight: math.unit(130, "lb"),
  29926. name: "Front",
  29927. image: {
  29928. source: "./media/characters/kyu/front.svg",
  29929. extra: 415 / 395,
  29930. bottom: 5 / 420
  29931. }
  29932. },
  29933. head: {
  29934. height: math.unit(1.75, "feet"),
  29935. name: "Head",
  29936. image: {
  29937. source: "./media/characters/kyu/head.svg"
  29938. }
  29939. },
  29940. foot: {
  29941. height: math.unit(0.81, "feet"),
  29942. name: "Foot",
  29943. image: {
  29944. source: "./media/characters/kyu/foot.svg"
  29945. }
  29946. },
  29947. },
  29948. [
  29949. {
  29950. name: "Normal",
  29951. height: math.unit(1.7, "meters")
  29952. },
  29953. {
  29954. name: "Macro",
  29955. height: math.unit(131, "feet"),
  29956. default: true
  29957. },
  29958. {
  29959. name: "Megamacro",
  29960. height: math.unit(91440, "meters")
  29961. },
  29962. {
  29963. name: "Gigamacro",
  29964. height: math.unit(60960000, "meters")
  29965. },
  29966. {
  29967. name: "Teramacro",
  29968. height: math.unit(9144000000, "meters")
  29969. },
  29970. ]
  29971. ))
  29972. characterMakers.push(() => makeCharacter(
  29973. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29974. {
  29975. front: {
  29976. height: math.unit(7 + 1 / 12, "feet"),
  29977. weight: math.unit(250, "lb"),
  29978. name: "Front",
  29979. image: {
  29980. source: "./media/characters/joey/front.svg",
  29981. extra: 1791 / 1537,
  29982. bottom: 28 / 1816
  29983. }
  29984. },
  29985. },
  29986. [
  29987. {
  29988. name: "Micro",
  29989. height: math.unit(3, "inches")
  29990. },
  29991. {
  29992. name: "Normal",
  29993. height: math.unit(7 + 1 / 12, "feet"),
  29994. default: true
  29995. },
  29996. ]
  29997. ))
  29998. characterMakers.push(() => makeCharacter(
  29999. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  30000. {
  30001. front: {
  30002. height: math.unit(165, "cm"),
  30003. weight: math.unit(140, "lb"),
  30004. name: "Front",
  30005. image: {
  30006. source: "./media/characters/sam-evans/front.svg",
  30007. extra: 3417 / 3230,
  30008. bottom: 41.3 / 3417
  30009. }
  30010. },
  30011. frontSixTails: {
  30012. height: math.unit(165, "cm"),
  30013. weight: math.unit(140, "lb"),
  30014. name: "Front-six-tails",
  30015. image: {
  30016. source: "./media/characters/sam-evans/front-six-tails.svg",
  30017. extra: 3417 / 3230,
  30018. bottom: 41.3 / 3417
  30019. }
  30020. },
  30021. back: {
  30022. height: math.unit(165, "cm"),
  30023. weight: math.unit(140, "lb"),
  30024. name: "Back",
  30025. image: {
  30026. source: "./media/characters/sam-evans/back.svg",
  30027. extra: 3227 / 3032,
  30028. bottom: 6.8 / 3234
  30029. }
  30030. },
  30031. face: {
  30032. height: math.unit(0.68, "feet"),
  30033. name: "Face",
  30034. image: {
  30035. source: "./media/characters/sam-evans/face.svg"
  30036. }
  30037. },
  30038. },
  30039. [
  30040. {
  30041. name: "Normal",
  30042. height: math.unit(165, "cm"),
  30043. default: true
  30044. },
  30045. {
  30046. name: "Macro",
  30047. height: math.unit(100, "meters")
  30048. },
  30049. {
  30050. name: "Macro+",
  30051. height: math.unit(800, "meters")
  30052. },
  30053. {
  30054. name: "Macro++",
  30055. height: math.unit(3, "km")
  30056. },
  30057. {
  30058. name: "Macro+++",
  30059. height: math.unit(30, "km")
  30060. },
  30061. ]
  30062. ))
  30063. characterMakers.push(() => makeCharacter(
  30064. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30065. {
  30066. front: {
  30067. height: math.unit(10, "feet"),
  30068. weight: math.unit(750, "lb"),
  30069. name: "Front",
  30070. image: {
  30071. source: "./media/characters/juliet-a/front.svg",
  30072. extra: 1766 / 1720,
  30073. bottom: 43 / 1809
  30074. }
  30075. },
  30076. back: {
  30077. height: math.unit(10, "feet"),
  30078. weight: math.unit(750, "lb"),
  30079. name: "Back",
  30080. image: {
  30081. source: "./media/characters/juliet-a/back.svg",
  30082. extra: 1781 / 1734,
  30083. bottom: 35 / 1810,
  30084. }
  30085. },
  30086. },
  30087. [
  30088. {
  30089. name: "Normal",
  30090. height: math.unit(10, "feet"),
  30091. default: true
  30092. },
  30093. {
  30094. name: "Dragon Form",
  30095. height: math.unit(250, "feet")
  30096. },
  30097. {
  30098. name: "Macro",
  30099. height: math.unit(1000, "feet")
  30100. },
  30101. {
  30102. name: "Megamacro",
  30103. height: math.unit(10000, "feet")
  30104. }
  30105. ]
  30106. ))
  30107. characterMakers.push(() => makeCharacter(
  30108. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30109. {
  30110. regular: {
  30111. height: math.unit(7 + 3 / 12, "feet"),
  30112. weight: math.unit(260, "lb"),
  30113. name: "Regular",
  30114. image: {
  30115. source: "./media/characters/wild/regular.svg",
  30116. extra: 97.45 / 92,
  30117. bottom: 6.8 / 104.3
  30118. }
  30119. },
  30120. biggums: {
  30121. height: math.unit(8 + 6 / 12, "feet"),
  30122. weight: math.unit(425, "lb"),
  30123. name: "Biggums",
  30124. image: {
  30125. source: "./media/characters/wild/biggums.svg",
  30126. extra: 97.45 / 92,
  30127. bottom: 7.5 / 132.34
  30128. }
  30129. },
  30130. mawRegular: {
  30131. height: math.unit(1.24, "feet"),
  30132. name: "Maw (Regular)",
  30133. image: {
  30134. source: "./media/characters/wild/maw.svg"
  30135. }
  30136. },
  30137. mawBiggums: {
  30138. height: math.unit(1.47, "feet"),
  30139. name: "Maw (Biggums)",
  30140. image: {
  30141. source: "./media/characters/wild/maw.svg"
  30142. }
  30143. },
  30144. },
  30145. [
  30146. {
  30147. name: "Normal",
  30148. height: math.unit(7 + 3 / 12, "feet"),
  30149. default: true
  30150. },
  30151. ]
  30152. ))
  30153. characterMakers.push(() => makeCharacter(
  30154. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30155. {
  30156. front: {
  30157. height: math.unit(2.5, "meters"),
  30158. weight: math.unit(200, "kg"),
  30159. name: "Front",
  30160. image: {
  30161. source: "./media/characters/vidar/front.svg",
  30162. extra: 2994 / 2795,
  30163. bottom: 56 / 3061
  30164. }
  30165. },
  30166. back: {
  30167. height: math.unit(2.5, "meters"),
  30168. weight: math.unit(200, "kg"),
  30169. name: "Back",
  30170. image: {
  30171. source: "./media/characters/vidar/back.svg",
  30172. extra: 3131 / 2928,
  30173. bottom: 13.5 / 3141.5
  30174. }
  30175. },
  30176. feral: {
  30177. height: math.unit(2.5, "meters"),
  30178. weight: math.unit(2000, "kg"),
  30179. name: "Feral",
  30180. image: {
  30181. source: "./media/characters/vidar/feral.svg",
  30182. extra: 2790 / 1765,
  30183. bottom: 6 / 2796
  30184. }
  30185. },
  30186. },
  30187. [
  30188. {
  30189. name: "Normal",
  30190. height: math.unit(2.5, "meters"),
  30191. default: true
  30192. },
  30193. {
  30194. name: "Macro",
  30195. height: math.unit(100, "meters")
  30196. },
  30197. ]
  30198. ))
  30199. characterMakers.push(() => makeCharacter(
  30200. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30201. {
  30202. front: {
  30203. height: math.unit(5 + 9 / 12, "feet"),
  30204. weight: math.unit(120, "lb"),
  30205. name: "Front",
  30206. image: {
  30207. source: "./media/characters/ash/front.svg",
  30208. extra: 2189 / 1961,
  30209. bottom: 5.2 / 2194
  30210. }
  30211. },
  30212. },
  30213. [
  30214. {
  30215. name: "Normal",
  30216. height: math.unit(5 + 9 / 12, "feet"),
  30217. default: true
  30218. },
  30219. ]
  30220. ))
  30221. characterMakers.push(() => makeCharacter(
  30222. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30223. {
  30224. front: {
  30225. height: math.unit(9, "feet"),
  30226. weight: math.unit(10000, "lb"),
  30227. name: "Front",
  30228. image: {
  30229. source: "./media/characters/gygabite/front.svg",
  30230. bottom: 31.7 / 537.8,
  30231. extra: 505 / 370
  30232. }
  30233. },
  30234. },
  30235. [
  30236. {
  30237. name: "Normal",
  30238. height: math.unit(9, "feet"),
  30239. default: true
  30240. },
  30241. ]
  30242. ))
  30243. characterMakers.push(() => makeCharacter(
  30244. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30245. {
  30246. front: {
  30247. height: math.unit(12, "feet"),
  30248. weight: math.unit(4000, "lb"),
  30249. name: "Front",
  30250. image: {
  30251. source: "./media/characters/p0tat0/front.svg",
  30252. extra: 1065 / 921,
  30253. bottom: 55.7 / 1121.25
  30254. }
  30255. },
  30256. },
  30257. [
  30258. {
  30259. name: "Normal",
  30260. height: math.unit(12, "feet"),
  30261. default: true
  30262. },
  30263. ]
  30264. ))
  30265. characterMakers.push(() => makeCharacter(
  30266. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30267. {
  30268. side: {
  30269. height: math.unit(6.5, "feet"),
  30270. weight: math.unit(800, "lb"),
  30271. name: "Side",
  30272. image: {
  30273. source: "./media/characters/dusk/side.svg",
  30274. extra: 615 / 373,
  30275. bottom: 53 / 664
  30276. }
  30277. },
  30278. sitting: {
  30279. height: math.unit(7, "feet"),
  30280. weight: math.unit(800, "lb"),
  30281. name: "Sitting",
  30282. image: {
  30283. source: "./media/characters/dusk/sitting.svg",
  30284. extra: 753 / 425,
  30285. bottom: 33 / 774
  30286. }
  30287. },
  30288. head: {
  30289. height: math.unit(6.1, "feet"),
  30290. name: "Head",
  30291. image: {
  30292. source: "./media/characters/dusk/head.svg"
  30293. }
  30294. },
  30295. },
  30296. [
  30297. {
  30298. name: "Normal",
  30299. height: math.unit(7, "feet"),
  30300. default: true
  30301. },
  30302. ]
  30303. ))
  30304. characterMakers.push(() => makeCharacter(
  30305. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30306. {
  30307. front: {
  30308. height: math.unit(15, "feet"),
  30309. weight: math.unit(7000, "lb"),
  30310. name: "Front",
  30311. image: {
  30312. source: "./media/characters/jay-direwolf/front.svg",
  30313. extra: 1810 / 1732,
  30314. bottom: 66 / 1892
  30315. }
  30316. },
  30317. },
  30318. [
  30319. {
  30320. name: "Normal",
  30321. height: math.unit(15, "feet"),
  30322. default: true
  30323. },
  30324. ]
  30325. ))
  30326. characterMakers.push(() => makeCharacter(
  30327. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30328. {
  30329. front: {
  30330. height: math.unit(4 + 9 / 12, "feet"),
  30331. weight: math.unit(130, "lb"),
  30332. name: "Front",
  30333. image: {
  30334. source: "./media/characters/anchovie/front.svg",
  30335. extra: 382 / 350,
  30336. bottom: 25 / 409
  30337. }
  30338. },
  30339. back: {
  30340. height: math.unit(4 + 9 / 12, "feet"),
  30341. weight: math.unit(130, "lb"),
  30342. name: "Back",
  30343. image: {
  30344. source: "./media/characters/anchovie/back.svg",
  30345. extra: 385 / 352,
  30346. bottom: 16.6 / 402
  30347. }
  30348. },
  30349. frontDressed: {
  30350. height: math.unit(4 + 9 / 12, "feet"),
  30351. weight: math.unit(130, "lb"),
  30352. name: "Front (Dressed)",
  30353. image: {
  30354. source: "./media/characters/anchovie/front-dressed.svg",
  30355. extra: 382 / 350,
  30356. bottom: 25 / 409
  30357. }
  30358. },
  30359. backDressed: {
  30360. height: math.unit(4 + 9 / 12, "feet"),
  30361. weight: math.unit(130, "lb"),
  30362. name: "Back (Dressed)",
  30363. image: {
  30364. source: "./media/characters/anchovie/back-dressed.svg",
  30365. extra: 385 / 352,
  30366. bottom: 16.6 / 402
  30367. }
  30368. },
  30369. },
  30370. [
  30371. {
  30372. name: "Micro",
  30373. height: math.unit(6.4, "inches")
  30374. },
  30375. {
  30376. name: "Normal",
  30377. height: math.unit(4 + 9 / 12, "feet"),
  30378. default: true
  30379. },
  30380. ]
  30381. ))
  30382. characterMakers.push(() => makeCharacter(
  30383. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30384. {
  30385. front: {
  30386. height: math.unit(2, "meters"),
  30387. weight: math.unit(180, "lb"),
  30388. name: "Front",
  30389. image: {
  30390. source: "./media/characters/acidrenamon/front.svg",
  30391. extra: 987 / 890,
  30392. bottom: 22.8 / 1009
  30393. }
  30394. },
  30395. back: {
  30396. height: math.unit(2, "meters"),
  30397. weight: math.unit(180, "lb"),
  30398. name: "Back",
  30399. image: {
  30400. source: "./media/characters/acidrenamon/back.svg",
  30401. extra: 983 / 891,
  30402. bottom: 8.4 / 992
  30403. }
  30404. },
  30405. head: {
  30406. height: math.unit(1.92, "feet"),
  30407. name: "Head",
  30408. image: {
  30409. source: "./media/characters/acidrenamon/head.svg"
  30410. }
  30411. },
  30412. rump: {
  30413. height: math.unit(1.72, "feet"),
  30414. name: "Rump",
  30415. image: {
  30416. source: "./media/characters/acidrenamon/rump.svg"
  30417. }
  30418. },
  30419. tail: {
  30420. height: math.unit(4.2, "feet"),
  30421. name: "Tail",
  30422. image: {
  30423. source: "./media/characters/acidrenamon/tail.svg"
  30424. }
  30425. },
  30426. },
  30427. [
  30428. {
  30429. name: "Normal",
  30430. height: math.unit(2, "meters"),
  30431. default: true
  30432. },
  30433. {
  30434. name: "Minimacro",
  30435. height: math.unit(7, "meters")
  30436. },
  30437. {
  30438. name: "Macro",
  30439. height: math.unit(200, "meters")
  30440. },
  30441. {
  30442. name: "Gigamacro",
  30443. height: math.unit(0.2, "earths")
  30444. },
  30445. ]
  30446. ))
  30447. characterMakers.push(() => makeCharacter(
  30448. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30449. {
  30450. front: {
  30451. height: math.unit(152, "feet"),
  30452. name: "Front",
  30453. image: {
  30454. source: "./media/characters/kenzie-lee/front.svg",
  30455. extra: 1869/1774,
  30456. bottom: 128/1997
  30457. }
  30458. },
  30459. side: {
  30460. height: math.unit(86, "feet"),
  30461. name: "Side",
  30462. image: {
  30463. source: "./media/characters/kenzie-lee/side.svg",
  30464. extra: 930/815,
  30465. bottom: 177/1107
  30466. }
  30467. },
  30468. paw: {
  30469. height: math.unit(15, "feet"),
  30470. name: "Paw",
  30471. image: {
  30472. source: "./media/characters/kenzie-lee/paw.svg"
  30473. }
  30474. },
  30475. },
  30476. [
  30477. {
  30478. name: "Kenzie Flea",
  30479. height: math.unit(2, "mm"),
  30480. default: true
  30481. },
  30482. {
  30483. name: "Micro",
  30484. height: math.unit(2, "inches")
  30485. },
  30486. {
  30487. name: "Normal",
  30488. height: math.unit(152, "feet")
  30489. },
  30490. {
  30491. name: "Megamacro",
  30492. height: math.unit(7, "miles")
  30493. },
  30494. {
  30495. name: "Gigamacro",
  30496. height: math.unit(8000, "miles")
  30497. },
  30498. ]
  30499. ))
  30500. characterMakers.push(() => makeCharacter(
  30501. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30502. {
  30503. front: {
  30504. height: math.unit(6, "feet"),
  30505. name: "Front",
  30506. image: {
  30507. source: "./media/characters/withers/front.svg",
  30508. extra: 1935/1760,
  30509. bottom: 72/2007
  30510. }
  30511. },
  30512. back: {
  30513. height: math.unit(6, "feet"),
  30514. name: "Back",
  30515. image: {
  30516. source: "./media/characters/withers/back.svg",
  30517. extra: 1944/1792,
  30518. bottom: 12/1956
  30519. }
  30520. },
  30521. dressed: {
  30522. height: math.unit(6, "feet"),
  30523. name: "Dressed",
  30524. image: {
  30525. source: "./media/characters/withers/dressed.svg",
  30526. extra: 1937/1765,
  30527. bottom: 73/2010
  30528. }
  30529. },
  30530. phase1: {
  30531. height: math.unit(1.1, "feet"),
  30532. name: "Phase 1",
  30533. image: {
  30534. source: "./media/characters/withers/phase-1.svg",
  30535. extra: 1885/1232,
  30536. bottom: 0/1885
  30537. }
  30538. },
  30539. phase2: {
  30540. height: math.unit(1.05, "feet"),
  30541. name: "Phase 2",
  30542. image: {
  30543. source: "./media/characters/withers/phase-2.svg",
  30544. extra: 1792/1090,
  30545. bottom: 0/1792
  30546. }
  30547. },
  30548. partyWipe: {
  30549. height: math.unit(1.1, "feet"),
  30550. name: "Party Wipe",
  30551. image: {
  30552. source: "./media/characters/withers/party-wipe.svg",
  30553. extra: 1864/1207,
  30554. bottom: 0/1864
  30555. }
  30556. },
  30557. },
  30558. [
  30559. {
  30560. name: "Macro",
  30561. height: math.unit(167, "feet"),
  30562. default: true
  30563. },
  30564. {
  30565. name: "Megamacro",
  30566. height: math.unit(15, "miles")
  30567. }
  30568. ]
  30569. ))
  30570. characterMakers.push(() => makeCharacter(
  30571. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30572. {
  30573. front: {
  30574. height: math.unit(6 + 7 / 12, "feet"),
  30575. weight: math.unit(250, "lb"),
  30576. name: "Front",
  30577. image: {
  30578. source: "./media/characters/nemoskii/front.svg",
  30579. extra: 2270 / 1734,
  30580. bottom: 86 / 2354
  30581. }
  30582. },
  30583. back: {
  30584. height: math.unit(6 + 7 / 12, "feet"),
  30585. weight: math.unit(250, "lb"),
  30586. name: "Back",
  30587. image: {
  30588. source: "./media/characters/nemoskii/back.svg",
  30589. extra: 1845 / 1788,
  30590. bottom: 10.5 / 1852
  30591. }
  30592. },
  30593. head: {
  30594. height: math.unit(1.31, "feet"),
  30595. name: "Head",
  30596. image: {
  30597. source: "./media/characters/nemoskii/head.svg"
  30598. }
  30599. },
  30600. },
  30601. [
  30602. {
  30603. name: "Micro",
  30604. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30605. },
  30606. {
  30607. name: "Normal",
  30608. height: math.unit(6 + 7 / 12, "feet"),
  30609. default: true
  30610. },
  30611. {
  30612. name: "Macro",
  30613. height: math.unit((6 + 7 / 12) * 150, "feet")
  30614. },
  30615. {
  30616. name: "Macro+",
  30617. height: math.unit((6 + 7 / 12) * 500, "feet")
  30618. },
  30619. {
  30620. name: "Megamacro",
  30621. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30622. },
  30623. ]
  30624. ))
  30625. characterMakers.push(() => makeCharacter(
  30626. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30627. {
  30628. front: {
  30629. height: math.unit(1, "mile"),
  30630. weight: math.unit(265261.9, "lb"),
  30631. name: "Front",
  30632. image: {
  30633. source: "./media/characters/shui/front.svg",
  30634. extra: 1633 / 1564,
  30635. bottom: 91.5 / 1726
  30636. }
  30637. },
  30638. },
  30639. [
  30640. {
  30641. name: "Macro",
  30642. height: math.unit(1, "mile"),
  30643. default: true
  30644. },
  30645. ]
  30646. ))
  30647. characterMakers.push(() => makeCharacter(
  30648. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30649. {
  30650. front: {
  30651. height: math.unit(12 + 6 / 12, "feet"),
  30652. weight: math.unit(1342, "lb"),
  30653. name: "Front",
  30654. image: {
  30655. source: "./media/characters/arokh-takakura/front.svg",
  30656. extra: 1089 / 1043,
  30657. bottom: 77.4 / 1176.7
  30658. }
  30659. },
  30660. back: {
  30661. height: math.unit(12 + 6 / 12, "feet"),
  30662. weight: math.unit(1342, "lb"),
  30663. name: "Back",
  30664. image: {
  30665. source: "./media/characters/arokh-takakura/back.svg",
  30666. extra: 1046 / 1019,
  30667. bottom: 102 / 1150
  30668. }
  30669. },
  30670. },
  30671. [
  30672. {
  30673. name: "Big",
  30674. height: math.unit(12 + 6 / 12, "feet"),
  30675. default: true
  30676. },
  30677. ]
  30678. ))
  30679. characterMakers.push(() => makeCharacter(
  30680. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30681. {
  30682. front: {
  30683. height: math.unit(5 + 6 / 12, "feet"),
  30684. weight: math.unit(150, "lb"),
  30685. name: "Front",
  30686. image: {
  30687. source: "./media/characters/theo/front.svg",
  30688. extra: 1184 / 1131,
  30689. bottom: 7.4 / 1191
  30690. }
  30691. },
  30692. },
  30693. [
  30694. {
  30695. name: "Micro",
  30696. height: math.unit(5, "inches")
  30697. },
  30698. {
  30699. name: "Normal",
  30700. height: math.unit(5 + 6 / 12, "feet"),
  30701. default: true
  30702. },
  30703. ]
  30704. ))
  30705. characterMakers.push(() => makeCharacter(
  30706. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30707. {
  30708. front: {
  30709. height: math.unit(5 + 9 / 12, "feet"),
  30710. weight: math.unit(130, "lb"),
  30711. name: "Front",
  30712. image: {
  30713. source: "./media/characters/cecelia-swift/front.svg",
  30714. extra: 502 / 484,
  30715. bottom: 23 / 523
  30716. }
  30717. },
  30718. back: {
  30719. height: math.unit(5 + 9 / 12, "feet"),
  30720. weight: math.unit(130, "lb"),
  30721. name: "Back",
  30722. image: {
  30723. source: "./media/characters/cecelia-swift/back.svg",
  30724. extra: 499 / 485,
  30725. bottom: 12 / 511
  30726. }
  30727. },
  30728. head: {
  30729. height: math.unit(0.90, "feet"),
  30730. name: "Head",
  30731. image: {
  30732. source: "./media/characters/cecelia-swift/head.svg"
  30733. }
  30734. },
  30735. rump: {
  30736. height: math.unit(1.75, "feet"),
  30737. name: "Rump",
  30738. image: {
  30739. source: "./media/characters/cecelia-swift/rump.svg"
  30740. }
  30741. },
  30742. },
  30743. [
  30744. {
  30745. name: "Normal",
  30746. height: math.unit(5 + 9 / 12, "feet"),
  30747. default: true
  30748. },
  30749. {
  30750. name: "Big",
  30751. height: math.unit(50, "feet")
  30752. },
  30753. {
  30754. name: "Macro",
  30755. height: math.unit(100, "feet")
  30756. },
  30757. {
  30758. name: "Macro+",
  30759. height: math.unit(500, "feet")
  30760. },
  30761. {
  30762. name: "Macro++",
  30763. height: math.unit(1000, "feet")
  30764. },
  30765. ]
  30766. ))
  30767. characterMakers.push(() => makeCharacter(
  30768. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30769. {
  30770. front: {
  30771. height: math.unit(6, "feet"),
  30772. weight: math.unit(150, "lb"),
  30773. name: "Front",
  30774. image: {
  30775. source: "./media/characters/kaunan/front.svg",
  30776. extra: 2890 / 2523,
  30777. bottom: 49 / 2939
  30778. }
  30779. },
  30780. },
  30781. [
  30782. {
  30783. name: "Macro",
  30784. height: math.unit(150, "feet"),
  30785. default: true
  30786. },
  30787. ]
  30788. ))
  30789. characterMakers.push(() => makeCharacter(
  30790. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30791. {
  30792. dressed: {
  30793. height: math.unit(175, "cm"),
  30794. weight: math.unit(60, "kg"),
  30795. name: "Dressed",
  30796. image: {
  30797. source: "./media/characters/fei/dressed.svg",
  30798. extra: 1402/1278,
  30799. bottom: 27/1429
  30800. }
  30801. },
  30802. nude: {
  30803. height: math.unit(175, "cm"),
  30804. weight: math.unit(60, "kg"),
  30805. name: "Nude",
  30806. image: {
  30807. source: "./media/characters/fei/nude.svg",
  30808. extra: 1402/1278,
  30809. bottom: 27/1429
  30810. }
  30811. },
  30812. heels: {
  30813. height: math.unit(0.466, "feet"),
  30814. name: "Heels",
  30815. image: {
  30816. source: "./media/characters/fei/heels.svg",
  30817. extra: 156/152,
  30818. bottom: 28/184
  30819. }
  30820. },
  30821. },
  30822. [
  30823. {
  30824. name: "Mortal",
  30825. height: math.unit(175, "cm")
  30826. },
  30827. {
  30828. name: "Normal",
  30829. height: math.unit(3500, "m")
  30830. },
  30831. {
  30832. name: "Stroll",
  30833. height: math.unit(18.4, "km"),
  30834. default: true
  30835. },
  30836. {
  30837. name: "Showoff",
  30838. height: math.unit(175, "km")
  30839. },
  30840. ]
  30841. ))
  30842. characterMakers.push(() => makeCharacter(
  30843. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30844. {
  30845. front: {
  30846. height: math.unit(7, "feet"),
  30847. weight: math.unit(1000, "kg"),
  30848. name: "Front",
  30849. image: {
  30850. source: "./media/characters/edrax/front.svg",
  30851. extra: 2838 / 2550,
  30852. bottom: 130 / 2968
  30853. }
  30854. },
  30855. },
  30856. [
  30857. {
  30858. name: "Small",
  30859. height: math.unit(7, "feet")
  30860. },
  30861. {
  30862. name: "Normal",
  30863. height: math.unit(1500, "meters")
  30864. },
  30865. {
  30866. name: "Mega",
  30867. height: math.unit(12000000, "km"),
  30868. default: true
  30869. },
  30870. {
  30871. name: "Megamacro",
  30872. height: math.unit(10600000, "lightyears")
  30873. },
  30874. {
  30875. name: "Hypermacro",
  30876. height: math.unit(256, "yottameters")
  30877. },
  30878. ]
  30879. ))
  30880. characterMakers.push(() => makeCharacter(
  30881. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30882. {
  30883. front: {
  30884. height: math.unit(10, "feet"),
  30885. weight: math.unit(750, "lb"),
  30886. name: "Front",
  30887. image: {
  30888. source: "./media/characters/clove/front.svg",
  30889. extra: 1918/1751,
  30890. bottom: 52/1970
  30891. }
  30892. },
  30893. back: {
  30894. height: math.unit(10, "feet"),
  30895. weight: math.unit(750, "lb"),
  30896. name: "Back",
  30897. image: {
  30898. source: "./media/characters/clove/back.svg",
  30899. extra: 1912/1747,
  30900. bottom: 50/1962
  30901. }
  30902. },
  30903. },
  30904. [
  30905. {
  30906. name: "Normal",
  30907. height: math.unit(10, "feet"),
  30908. default: true
  30909. },
  30910. ]
  30911. ))
  30912. characterMakers.push(() => makeCharacter(
  30913. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30914. {
  30915. front: {
  30916. height: math.unit(4, "feet"),
  30917. weight: math.unit(50, "lb"),
  30918. name: "Front",
  30919. image: {
  30920. source: "./media/characters/alex-rabbit/front.svg",
  30921. extra: 507 / 458,
  30922. bottom: 18.5 / 527
  30923. }
  30924. },
  30925. back: {
  30926. height: math.unit(4, "feet"),
  30927. weight: math.unit(50, "lb"),
  30928. name: "Back",
  30929. image: {
  30930. source: "./media/characters/alex-rabbit/back.svg",
  30931. extra: 502 / 460,
  30932. bottom: 18.9 / 521
  30933. }
  30934. },
  30935. },
  30936. [
  30937. {
  30938. name: "Normal",
  30939. height: math.unit(4, "feet"),
  30940. default: true
  30941. },
  30942. ]
  30943. ))
  30944. characterMakers.push(() => makeCharacter(
  30945. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30946. {
  30947. front: {
  30948. height: math.unit(1 + 3 / 12, "feet"),
  30949. weight: math.unit(80, "lb"),
  30950. name: "Front",
  30951. image: {
  30952. source: "./media/characters/zander-rose/front.svg",
  30953. extra: 916 / 797,
  30954. bottom: 17 / 933
  30955. }
  30956. },
  30957. back: {
  30958. height: math.unit(1 + 3 / 12, "feet"),
  30959. weight: math.unit(80, "lb"),
  30960. name: "Back",
  30961. image: {
  30962. source: "./media/characters/zander-rose/back.svg",
  30963. extra: 903 / 779,
  30964. bottom: 31 / 934
  30965. }
  30966. },
  30967. },
  30968. [
  30969. {
  30970. name: "Normal",
  30971. height: math.unit(1 + 3 / 12, "feet"),
  30972. default: true
  30973. },
  30974. ]
  30975. ))
  30976. characterMakers.push(() => makeCharacter(
  30977. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30978. {
  30979. anthro: {
  30980. height: math.unit(6, "feet"),
  30981. weight: math.unit(150, "lb"),
  30982. name: "Anthro",
  30983. image: {
  30984. source: "./media/characters/razz/anthro.svg",
  30985. extra: 1437 / 1343,
  30986. bottom: 48 / 1485
  30987. }
  30988. },
  30989. feral: {
  30990. height: math.unit(6, "feet"),
  30991. weight: math.unit(150, "lb"),
  30992. name: "Feral",
  30993. image: {
  30994. source: "./media/characters/razz/feral.svg",
  30995. extra: 2569 / 1385,
  30996. bottom: 95 / 2664
  30997. }
  30998. },
  30999. },
  31000. [
  31001. {
  31002. name: "Normal",
  31003. height: math.unit(6, "feet"),
  31004. default: true
  31005. },
  31006. ]
  31007. ))
  31008. characterMakers.push(() => makeCharacter(
  31009. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  31010. {
  31011. front: {
  31012. height: math.unit(9 + 4 / 12, "feet"),
  31013. weight: math.unit(500, "lb"),
  31014. name: "Front",
  31015. image: {
  31016. source: "./media/characters/morrigan/front.svg",
  31017. extra: 2707 / 2579,
  31018. bottom: 156 / 2863
  31019. }
  31020. },
  31021. },
  31022. [
  31023. {
  31024. name: "Normal",
  31025. height: math.unit(9 + 4 / 12, "feet"),
  31026. default: true
  31027. },
  31028. ]
  31029. ))
  31030. characterMakers.push(() => makeCharacter(
  31031. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31032. {
  31033. front: {
  31034. height: math.unit(5, "stories"),
  31035. weight: math.unit(4000, "lb"),
  31036. name: "Front",
  31037. image: {
  31038. source: "./media/characters/jenene/front.svg",
  31039. extra: 1780 / 1710,
  31040. bottom: 57 / 1837
  31041. }
  31042. },
  31043. },
  31044. [
  31045. {
  31046. name: "Normal",
  31047. height: math.unit(5, "stories"),
  31048. default: true
  31049. },
  31050. ]
  31051. ))
  31052. characterMakers.push(() => makeCharacter(
  31053. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31054. {
  31055. taurSfw: {
  31056. height: math.unit(10, "meters"),
  31057. weight: math.unit(17500, "kg"),
  31058. name: "Taur",
  31059. image: {
  31060. source: "./media/characters/faey/taur-sfw.svg",
  31061. extra: 1200 / 968,
  31062. bottom: 41 / 1241
  31063. }
  31064. },
  31065. chestmaw: {
  31066. height: math.unit(2.01, "meters"),
  31067. name: "Chestmaw",
  31068. image: {
  31069. source: "./media/characters/faey/chestmaw.svg"
  31070. }
  31071. },
  31072. foot: {
  31073. height: math.unit(2.43, "meters"),
  31074. name: "Foot",
  31075. image: {
  31076. source: "./media/characters/faey/foot.svg"
  31077. }
  31078. },
  31079. jaws: {
  31080. height: math.unit(1.66, "meters"),
  31081. name: "Jaws",
  31082. image: {
  31083. source: "./media/characters/faey/jaws.svg"
  31084. }
  31085. },
  31086. tongues: {
  31087. height: math.unit(2.01, "meters"),
  31088. name: "Tongues",
  31089. image: {
  31090. source: "./media/characters/faey/tongues.svg"
  31091. }
  31092. },
  31093. },
  31094. [
  31095. {
  31096. name: "Small",
  31097. height: math.unit(10, "meters"),
  31098. default: true
  31099. },
  31100. {
  31101. name: "Big",
  31102. height: math.unit(500000, "km")
  31103. },
  31104. ]
  31105. ))
  31106. characterMakers.push(() => makeCharacter(
  31107. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31108. {
  31109. front: {
  31110. height: math.unit(7, "feet"),
  31111. weight: math.unit(275, "lb"),
  31112. name: "Front",
  31113. image: {
  31114. source: "./media/characters/roku/front.svg",
  31115. extra: 903 / 878,
  31116. bottom: 37 / 940
  31117. }
  31118. },
  31119. },
  31120. [
  31121. {
  31122. name: "Normal",
  31123. height: math.unit(7, "feet"),
  31124. default: true
  31125. },
  31126. {
  31127. name: "Macro",
  31128. height: math.unit(500, "feet")
  31129. },
  31130. {
  31131. name: "Megamacro",
  31132. height: math.unit(200, "miles")
  31133. },
  31134. ]
  31135. ))
  31136. characterMakers.push(() => makeCharacter(
  31137. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31138. {
  31139. front: {
  31140. height: math.unit(6 + 2 / 12, "feet"),
  31141. weight: math.unit(150, "lb"),
  31142. name: "Front",
  31143. image: {
  31144. source: "./media/characters/lira/front.svg",
  31145. extra: 1727 / 1605,
  31146. bottom: 26 / 1753
  31147. }
  31148. },
  31149. back: {
  31150. height: math.unit(6 + 2 / 12, "feet"),
  31151. weight: math.unit(150, "lb"),
  31152. name: "Back",
  31153. image: {
  31154. source: "./media/characters/lira/back.svg",
  31155. extra: 1713/1621,
  31156. bottom: 20/1733
  31157. }
  31158. },
  31159. hand: {
  31160. height: math.unit(0.75, "feet"),
  31161. name: "Hand",
  31162. image: {
  31163. source: "./media/characters/lira/hand.svg"
  31164. }
  31165. },
  31166. maw: {
  31167. height: math.unit(0.65, "feet"),
  31168. name: "Maw",
  31169. image: {
  31170. source: "./media/characters/lira/maw.svg"
  31171. }
  31172. },
  31173. pawDigi: {
  31174. height: math.unit(1.6, "feet"),
  31175. name: "Paw Digi",
  31176. image: {
  31177. source: "./media/characters/lira/paw-digi.svg"
  31178. }
  31179. },
  31180. pawPlanti: {
  31181. height: math.unit(1.4, "feet"),
  31182. name: "Paw Planti",
  31183. image: {
  31184. source: "./media/characters/lira/paw-planti.svg"
  31185. }
  31186. },
  31187. },
  31188. [
  31189. {
  31190. name: "Normal",
  31191. height: math.unit(6 + 2 / 12, "feet"),
  31192. default: true
  31193. },
  31194. {
  31195. name: "Macro",
  31196. height: math.unit(100, "feet")
  31197. },
  31198. {
  31199. name: "Macro²",
  31200. height: math.unit(1600, "feet")
  31201. },
  31202. {
  31203. name: "Planetary",
  31204. height: math.unit(20, "earths")
  31205. },
  31206. ]
  31207. ))
  31208. characterMakers.push(() => makeCharacter(
  31209. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31210. {
  31211. front: {
  31212. height: math.unit(6, "feet"),
  31213. weight: math.unit(150, "lb"),
  31214. name: "Front",
  31215. image: {
  31216. source: "./media/characters/hadjet/front.svg",
  31217. extra: 1480 / 1346,
  31218. bottom: 26 / 1506
  31219. }
  31220. },
  31221. frontNsfw: {
  31222. height: math.unit(6, "feet"),
  31223. weight: math.unit(150, "lb"),
  31224. name: "Front (NSFW)",
  31225. image: {
  31226. source: "./media/characters/hadjet/front-nsfw.svg",
  31227. extra: 1440 / 1358,
  31228. bottom: 52 / 1492
  31229. }
  31230. },
  31231. },
  31232. [
  31233. {
  31234. name: "Macro",
  31235. height: math.unit(10, "stories"),
  31236. default: true
  31237. },
  31238. {
  31239. name: "Megamacro",
  31240. height: math.unit(1.5, "miles")
  31241. },
  31242. {
  31243. name: "Megamacro+",
  31244. height: math.unit(5, "miles")
  31245. },
  31246. ]
  31247. ))
  31248. characterMakers.push(() => makeCharacter(
  31249. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31250. {
  31251. side: {
  31252. height: math.unit(106, "feet"),
  31253. weight: math.unit(500, "tonnes"),
  31254. name: "Side",
  31255. image: {
  31256. source: "./media/characters/kodran/side.svg",
  31257. extra: 553 / 480,
  31258. bottom: 33 / 586
  31259. }
  31260. },
  31261. front: {
  31262. height: math.unit(132, "feet"),
  31263. weight: math.unit(500, "tonnes"),
  31264. name: "Front",
  31265. image: {
  31266. source: "./media/characters/kodran/front.svg",
  31267. extra: 667 / 643,
  31268. bottom: 42 / 709
  31269. }
  31270. },
  31271. flying: {
  31272. height: math.unit(350, "feet"),
  31273. weight: math.unit(500, "tonnes"),
  31274. name: "Flying",
  31275. image: {
  31276. source: "./media/characters/kodran/flying.svg"
  31277. }
  31278. },
  31279. foot: {
  31280. height: math.unit(33, "feet"),
  31281. name: "Foot",
  31282. image: {
  31283. source: "./media/characters/kodran/foot.svg"
  31284. }
  31285. },
  31286. footFront: {
  31287. height: math.unit(19, "feet"),
  31288. name: "Foot (Front)",
  31289. image: {
  31290. source: "./media/characters/kodran/foot-front.svg",
  31291. extra: 261 / 261,
  31292. bottom: 91 / 352
  31293. }
  31294. },
  31295. headFront: {
  31296. height: math.unit(53, "feet"),
  31297. name: "Head (Front)",
  31298. image: {
  31299. source: "./media/characters/kodran/head-front.svg"
  31300. }
  31301. },
  31302. headSide: {
  31303. height: math.unit(65, "feet"),
  31304. name: "Head (Side)",
  31305. image: {
  31306. source: "./media/characters/kodran/head-side.svg"
  31307. }
  31308. },
  31309. throat: {
  31310. height: math.unit(79, "feet"),
  31311. name: "Throat",
  31312. image: {
  31313. source: "./media/characters/kodran/throat.svg"
  31314. }
  31315. },
  31316. },
  31317. [
  31318. {
  31319. name: "Large",
  31320. height: math.unit(106, "feet"),
  31321. default: true
  31322. },
  31323. ]
  31324. ))
  31325. characterMakers.push(() => makeCharacter(
  31326. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31327. {
  31328. side: {
  31329. height: math.unit(11, "feet"),
  31330. weight: math.unit(150, "lb"),
  31331. name: "Side",
  31332. image: {
  31333. source: "./media/characters/pyxaron/side.svg",
  31334. extra: 305 / 195,
  31335. bottom: 17 / 322
  31336. }
  31337. },
  31338. },
  31339. [
  31340. {
  31341. name: "Normal",
  31342. height: math.unit(11, "feet"),
  31343. default: true
  31344. },
  31345. ]
  31346. ))
  31347. characterMakers.push(() => makeCharacter(
  31348. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31349. {
  31350. front: {
  31351. height: math.unit(6, "feet"),
  31352. weight: math.unit(150, "lb"),
  31353. name: "Front",
  31354. image: {
  31355. source: "./media/characters/meep/front.svg",
  31356. extra: 88 / 80,
  31357. bottom: 6 / 94
  31358. }
  31359. },
  31360. },
  31361. [
  31362. {
  31363. name: "Fun Sized",
  31364. height: math.unit(2, "inches"),
  31365. default: true
  31366. },
  31367. {
  31368. name: "Friend Sized",
  31369. height: math.unit(8, "inches")
  31370. },
  31371. ]
  31372. ))
  31373. characterMakers.push(() => makeCharacter(
  31374. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31375. {
  31376. front: {
  31377. height: math.unit(15, "feet"),
  31378. weight: math.unit(2500, "lb"),
  31379. name: "Front",
  31380. image: {
  31381. source: "./media/characters/holly-rabbit/front.svg",
  31382. extra: 1433 / 1233,
  31383. bottom: 125 / 1558
  31384. }
  31385. },
  31386. dick: {
  31387. height: math.unit(4.6, "feet"),
  31388. name: "Dick",
  31389. image: {
  31390. source: "./media/characters/holly-rabbit/dick.svg"
  31391. }
  31392. },
  31393. },
  31394. [
  31395. {
  31396. name: "Normal",
  31397. height: math.unit(15, "feet"),
  31398. default: true
  31399. },
  31400. {
  31401. name: "Macro",
  31402. height: math.unit(250, "feet")
  31403. },
  31404. {
  31405. name: "Macro+",
  31406. height: math.unit(2500, "feet")
  31407. },
  31408. ]
  31409. ))
  31410. characterMakers.push(() => makeCharacter(
  31411. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31412. {
  31413. front: {
  31414. height: math.unit(3.02, "meters"),
  31415. weight: math.unit(500, "kg"),
  31416. name: "Front",
  31417. image: {
  31418. source: "./media/characters/drena/front.svg",
  31419. extra: 282 / 243,
  31420. bottom: 8 / 290
  31421. }
  31422. },
  31423. side: {
  31424. height: math.unit(3.02, "meters"),
  31425. weight: math.unit(500, "kg"),
  31426. name: "Side",
  31427. image: {
  31428. source: "./media/characters/drena/side.svg",
  31429. extra: 280 / 245,
  31430. bottom: 10 / 290
  31431. }
  31432. },
  31433. back: {
  31434. height: math.unit(3.02, "meters"),
  31435. weight: math.unit(500, "kg"),
  31436. name: "Back",
  31437. image: {
  31438. source: "./media/characters/drena/back.svg",
  31439. extra: 278 / 243,
  31440. bottom: 2 / 280
  31441. }
  31442. },
  31443. foot: {
  31444. height: math.unit(0.75, "meters"),
  31445. name: "Foot",
  31446. image: {
  31447. source: "./media/characters/drena/foot.svg"
  31448. }
  31449. },
  31450. maw: {
  31451. height: math.unit(0.82, "meters"),
  31452. name: "Maw",
  31453. image: {
  31454. source: "./media/characters/drena/maw.svg"
  31455. }
  31456. },
  31457. eating: {
  31458. height: math.unit(0.75, "meters"),
  31459. name: "Eating",
  31460. image: {
  31461. source: "./media/characters/drena/eating.svg"
  31462. }
  31463. },
  31464. rump: {
  31465. height: math.unit(0.93, "meters"),
  31466. name: "Rump",
  31467. image: {
  31468. source: "./media/characters/drena/rump.svg"
  31469. }
  31470. },
  31471. },
  31472. [
  31473. {
  31474. name: "Normal",
  31475. height: math.unit(3.02, "meters"),
  31476. default: true
  31477. },
  31478. ]
  31479. ))
  31480. characterMakers.push(() => makeCharacter(
  31481. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31482. {
  31483. front: {
  31484. height: math.unit(6 + 4 / 12, "feet"),
  31485. weight: math.unit(250, "lb"),
  31486. name: "Front",
  31487. image: {
  31488. source: "./media/characters/remmyzilla/front.svg",
  31489. extra: 4033 / 3588,
  31490. bottom: 123 / 4156
  31491. }
  31492. },
  31493. back: {
  31494. height: math.unit(6 + 4 / 12, "feet"),
  31495. weight: math.unit(250, "lb"),
  31496. name: "Back",
  31497. image: {
  31498. source: "./media/characters/remmyzilla/back.svg",
  31499. extra: 1696/1602,
  31500. bottom: 63/1759
  31501. }
  31502. },
  31503. paw: {
  31504. height: math.unit(1.73, "feet"),
  31505. name: "Paw",
  31506. image: {
  31507. source: "./media/characters/remmyzilla/paw.svg"
  31508. },
  31509. extraAttributes: {
  31510. "toeSize": {
  31511. name: "Toe Size",
  31512. power: 2,
  31513. type: "area",
  31514. base: math.unit(0.0035, "m^2")
  31515. },
  31516. "padSize": {
  31517. name: "Pad Size",
  31518. power: 2,
  31519. type: "area",
  31520. base: math.unit(0.015, "m^2")
  31521. },
  31522. "pawsize": {
  31523. name: "Paw Size",
  31524. power: 2,
  31525. type: "area",
  31526. base: math.unit(0.072, "m^2")
  31527. },
  31528. }
  31529. },
  31530. maw: {
  31531. height: math.unit(1.73, "feet"),
  31532. name: "Maw",
  31533. image: {
  31534. source: "./media/characters/remmyzilla/maw.svg"
  31535. }
  31536. },
  31537. },
  31538. [
  31539. {
  31540. name: "Normal",
  31541. height: math.unit(6 + 4 / 12, "feet")
  31542. },
  31543. {
  31544. name: "Minimacro",
  31545. height: math.unit(12 + 8 / 12, "feet")
  31546. },
  31547. {
  31548. name: "Normal",
  31549. height: math.unit(640, "feet"),
  31550. default: true
  31551. },
  31552. {
  31553. name: "Megamacro",
  31554. height: math.unit(6400, "feet")
  31555. },
  31556. {
  31557. name: "Gigamacro",
  31558. height: math.unit(64000, "miles")
  31559. },
  31560. ]
  31561. ))
  31562. characterMakers.push(() => makeCharacter(
  31563. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31564. {
  31565. front: {
  31566. height: math.unit(2.5, "meters"),
  31567. weight: math.unit(300, "lb"),
  31568. name: "Front",
  31569. image: {
  31570. source: "./media/characters/lawrence/front.svg",
  31571. extra: 357 / 335,
  31572. bottom: 30 / 387
  31573. }
  31574. },
  31575. back: {
  31576. height: math.unit(2.5, "meters"),
  31577. weight: math.unit(300, "lb"),
  31578. name: "Back",
  31579. image: {
  31580. source: "./media/characters/lawrence/back.svg",
  31581. extra: 357 / 338,
  31582. bottom: 16 / 373
  31583. }
  31584. },
  31585. head: {
  31586. height: math.unit(0.9, "meter"),
  31587. name: "Head",
  31588. image: {
  31589. source: "./media/characters/lawrence/head.svg"
  31590. }
  31591. },
  31592. maw: {
  31593. height: math.unit(0.7, "meter"),
  31594. name: "Maw",
  31595. image: {
  31596. source: "./media/characters/lawrence/maw.svg"
  31597. }
  31598. },
  31599. footBottom: {
  31600. height: math.unit(0.5, "meter"),
  31601. name: "Foot (Bottom)",
  31602. image: {
  31603. source: "./media/characters/lawrence/foot-bottom.svg"
  31604. }
  31605. },
  31606. footTop: {
  31607. height: math.unit(0.5, "meter"),
  31608. name: "Foot (Top)",
  31609. image: {
  31610. source: "./media/characters/lawrence/foot-top.svg"
  31611. }
  31612. },
  31613. },
  31614. [
  31615. {
  31616. name: "Normal",
  31617. height: math.unit(2.5, "meters"),
  31618. default: true
  31619. },
  31620. {
  31621. name: "Macro",
  31622. height: math.unit(95, "meters")
  31623. },
  31624. {
  31625. name: "Megamacro",
  31626. height: math.unit(150, "km")
  31627. },
  31628. ]
  31629. ))
  31630. characterMakers.push(() => makeCharacter(
  31631. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31632. {
  31633. front: {
  31634. height: math.unit(4.2, "meters"),
  31635. preyCapacity: math.unit(50, "m^3"),
  31636. weight: math.unit(30, "tonnes"),
  31637. name: "Front",
  31638. image: {
  31639. source: "./media/characters/sydney/front.svg",
  31640. extra: 1177/1129,
  31641. bottom: 197/1374
  31642. },
  31643. extraAttributes: {
  31644. "length": {
  31645. name: "Length",
  31646. power: 1,
  31647. type: "length",
  31648. base: math.unit(21, "meters")
  31649. },
  31650. }
  31651. },
  31652. },
  31653. [
  31654. {
  31655. name: "Normal",
  31656. height: math.unit(4.2, "meters"),
  31657. default: true
  31658. },
  31659. ]
  31660. ))
  31661. characterMakers.push(() => makeCharacter(
  31662. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31663. {
  31664. back: {
  31665. height: math.unit(201, "feet"),
  31666. name: "Back",
  31667. image: {
  31668. source: "./media/characters/jessica/back.svg",
  31669. extra: 273 / 259,
  31670. bottom: 7 / 280
  31671. }
  31672. },
  31673. },
  31674. [
  31675. {
  31676. name: "Normal",
  31677. height: math.unit(201, "feet"),
  31678. default: true
  31679. },
  31680. {
  31681. name: "Megamacro",
  31682. height: math.unit(8, "miles")
  31683. },
  31684. ]
  31685. ))
  31686. characterMakers.push(() => makeCharacter(
  31687. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31688. {
  31689. side: {
  31690. height: math.unit(5.6, "m"),
  31691. weight: math.unit(8000, "kg"),
  31692. name: "Side",
  31693. image: {
  31694. source: "./media/characters/victoria/side.svg",
  31695. extra: 1542/1229,
  31696. bottom: 124/1666
  31697. }
  31698. },
  31699. maw: {
  31700. height: math.unit(7.14, "feet"),
  31701. name: "Maw",
  31702. image: {
  31703. source: "./media/characters/victoria/maw.svg"
  31704. }
  31705. },
  31706. },
  31707. [
  31708. {
  31709. name: "Normal",
  31710. height: math.unit(5.6, "m"),
  31711. default: true
  31712. },
  31713. ]
  31714. ))
  31715. characterMakers.push(() => makeCharacter(
  31716. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31717. {
  31718. front: {
  31719. height: math.unit(5 + 6 / 12, "feet"),
  31720. name: "Front",
  31721. image: {
  31722. source: "./media/characters/cat/cat-front.svg",
  31723. extra: 1422/1262,
  31724. bottom: 61/1483
  31725. },
  31726. form: "cat",
  31727. default: true
  31728. },
  31729. back: {
  31730. height: math.unit(5 + 6 / 12, "feet"),
  31731. name: "Back",
  31732. image: {
  31733. source: "./media/characters/cat/cat-back.svg",
  31734. extra: 1466/1301,
  31735. bottom: 19/1485
  31736. },
  31737. form: "cat"
  31738. },
  31739. taur: {
  31740. height: math.unit(7, "feet"),
  31741. name: "Side",
  31742. image: {
  31743. source: "./media/characters/cat/taur-side.svg",
  31744. extra: 1389/1233,
  31745. bottom: 83/1472
  31746. },
  31747. form: "taur",
  31748. default: true
  31749. },
  31750. lucarioFront: {
  31751. height: math.unit(4, "feet"),
  31752. name: "Front",
  31753. image: {
  31754. source: "./media/characters/cat/lucario-front.svg",
  31755. extra: 1149/1019,
  31756. bottom: 84/1233
  31757. },
  31758. form: "lucario",
  31759. default: true
  31760. },
  31761. lucarioBack: {
  31762. height: math.unit(4, "feet"),
  31763. name: "Back",
  31764. image: {
  31765. source: "./media/characters/cat/lucario-back.svg",
  31766. extra: 1190/1059,
  31767. bottom: 33/1223
  31768. },
  31769. form: "lucario"
  31770. },
  31771. riolu_front: {
  31772. height: math.unit(2 + 4/12, "feet"),
  31773. name: "Front",
  31774. image: {
  31775. source: "./media/characters/cat/riolu-front.svg",
  31776. extra: 1104/956,
  31777. bottom: 70/1174
  31778. },
  31779. form: "riolu",
  31780. default: true
  31781. },
  31782. nickit: {
  31783. height: math.unit(2, "feet"),
  31784. name: "Side",
  31785. image: {
  31786. source: "./media/characters/cat/nickit-side.svg",
  31787. extra: 1087/852,
  31788. bottom: 67/1154
  31789. },
  31790. form: "nickit",
  31791. default: true
  31792. },
  31793. lopunnyFront: {
  31794. height: math.unit(5, "feet"),
  31795. name: "Front",
  31796. image: {
  31797. source: "./media/characters/cat/lopunny-front.svg",
  31798. extra: 1217/1078,
  31799. bottom: 23/1240
  31800. },
  31801. form: "lopunny",
  31802. default: true
  31803. },
  31804. lopunnyBack: {
  31805. height: math.unit(5, "feet"),
  31806. name: "Back",
  31807. image: {
  31808. source: "./media/characters/cat/lopunny-back.svg",
  31809. extra: 1205/1057,
  31810. bottom: 33/1238
  31811. },
  31812. form: "lopunny"
  31813. },
  31814. dog_front: {
  31815. height: math.unit(5 + 9/12, "feet"),
  31816. name: "Front",
  31817. image: {
  31818. source: "./media/characters/cat/dog-front.svg",
  31819. extra: 1403/1309,
  31820. bottom: 31/1434
  31821. },
  31822. form: "dog",
  31823. default: true
  31824. },
  31825. dog_back: {
  31826. height: math.unit(5 + 9/12, "feet"),
  31827. name: "Back",
  31828. image: {
  31829. source: "./media/characters/cat/dog-back.svg",
  31830. extra: 1393/1297,
  31831. bottom: 38/1431
  31832. },
  31833. form: "dog",
  31834. },
  31835. pikachu_front: {
  31836. height: math.unit(2.64, "feet"),
  31837. name: "Front",
  31838. image: {
  31839. source: "./media/characters/cat/pikachu-front.svg",
  31840. extra: 1224/958,
  31841. bottom: 34/1258
  31842. },
  31843. form: "pikachu",
  31844. default: true
  31845. },
  31846. pikachu_back: {
  31847. height: math.unit(2.64, "feet"),
  31848. name: "Back",
  31849. image: {
  31850. source: "./media/characters/cat/pikachu-back.svg",
  31851. extra: 1228/958,
  31852. bottom: 16/1244
  31853. },
  31854. form: "pikachu",
  31855. },
  31856. gigachuFront: {
  31857. height: math.unit(75, "feet"),
  31858. name: "Front",
  31859. image: {
  31860. source: "./media/characters/cat/gigachu-front.svg",
  31861. extra: 1239/1027,
  31862. bottom: 32/1271
  31863. },
  31864. form: "gigachu",
  31865. default: true
  31866. },
  31867. gigachuBack: {
  31868. height: math.unit(75, "feet"),
  31869. name: "Back",
  31870. image: {
  31871. source: "./media/characters/cat/gigachu-back.svg",
  31872. extra: 1229/1030,
  31873. bottom: 9/1238
  31874. },
  31875. form: "gigachu"
  31876. },
  31877. },
  31878. [
  31879. {
  31880. name: "Really small",
  31881. height: math.unit(1, "nm"),
  31882. allForms: true
  31883. },
  31884. {
  31885. name: "Micro",
  31886. height: math.unit(5, "inches"),
  31887. allForms: true
  31888. },
  31889. {
  31890. name: "Normal",
  31891. height: math.unit(5 + 6 / 12, "feet"),
  31892. default: true,
  31893. form: "cat"
  31894. },
  31895. {
  31896. name: "Normal",
  31897. height: math.unit(7, "feet"),
  31898. default: true,
  31899. form: "taur"
  31900. },
  31901. {
  31902. name: "Normal",
  31903. height: math.unit(4, "feet"),
  31904. default: true,
  31905. form: "lucario"
  31906. },
  31907. {
  31908. name: "Normal",
  31909. height: math.unit(2, "feet"),
  31910. default: true,
  31911. form: "nickit"
  31912. },
  31913. {
  31914. name: "Normal",
  31915. height: math.unit(5, "feet"),
  31916. default: true,
  31917. form: "lopunny"
  31918. },
  31919. {
  31920. name: "Normal",
  31921. height: math.unit(2 + 4/12, "feet"),
  31922. default: true,
  31923. form: "riolu"
  31924. },
  31925. {
  31926. name: "Normal",
  31927. height: math.unit(5 + 6 / 12, "feet"),
  31928. default: true,
  31929. form: "dog"
  31930. },
  31931. {
  31932. name: "Macro",
  31933. height: math.unit(50, "feet"),
  31934. allForms: true
  31935. },
  31936. {
  31937. name: "Normal",
  31938. height: math.unit(2.64, "feet"),
  31939. default: true,
  31940. form: "pikachu"
  31941. },
  31942. {
  31943. name: "Dynamax",
  31944. height: math.unit(75, "feet"),
  31945. form: "gigachu",
  31946. default: true
  31947. },
  31948. {
  31949. name: "Macro+",
  31950. height: math.unit(150, "feet"),
  31951. allForms: true
  31952. },
  31953. {
  31954. name: "Megamacro",
  31955. height: math.unit(100, "miles"),
  31956. allForms: true
  31957. },
  31958. ],
  31959. {
  31960. "cat": {
  31961. name: "Cat",
  31962. default: true
  31963. },
  31964. "taur": {
  31965. name: "Taur",
  31966. },
  31967. "lucario": {
  31968. name: "Lucario",
  31969. },
  31970. "riolu": {
  31971. name: "Riolu",
  31972. },
  31973. "nickit": {
  31974. name: "Nickit",
  31975. },
  31976. "lopunny": {
  31977. name: "Lopunny",
  31978. },
  31979. "dog": {
  31980. name: "Dog",
  31981. },
  31982. "pikachu": {
  31983. name: "Pikachu",
  31984. },
  31985. "gigachu": {
  31986. name: "Gigachu",
  31987. ignoreAllFormSizes: true
  31988. }
  31989. }
  31990. ))
  31991. characterMakers.push(() => makeCharacter(
  31992. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31993. {
  31994. front: {
  31995. height: math.unit(63.4, "meters"),
  31996. weight: math.unit(3.28349e+6, "kilograms"),
  31997. name: "Front",
  31998. image: {
  31999. source: "./media/characters/kirina-violet/front.svg",
  32000. extra: 2812 / 2725,
  32001. bottom: 0 / 2812
  32002. }
  32003. },
  32004. back: {
  32005. height: math.unit(63.4, "meters"),
  32006. weight: math.unit(3.28349e+6, "kilograms"),
  32007. name: "Back",
  32008. image: {
  32009. source: "./media/characters/kirina-violet/back.svg",
  32010. extra: 2812 / 2725,
  32011. bottom: 0 / 2812
  32012. }
  32013. },
  32014. mouth: {
  32015. height: math.unit(4.35, "meters"),
  32016. name: "Mouth",
  32017. image: {
  32018. source: "./media/characters/kirina-violet/mouth.svg"
  32019. }
  32020. },
  32021. paw: {
  32022. height: math.unit(5.6, "meters"),
  32023. name: "Paw",
  32024. image: {
  32025. source: "./media/characters/kirina-violet/paw.svg"
  32026. }
  32027. },
  32028. tail: {
  32029. height: math.unit(18, "meters"),
  32030. name: "Tail",
  32031. image: {
  32032. source: "./media/characters/kirina-violet/tail.svg"
  32033. }
  32034. },
  32035. },
  32036. [
  32037. {
  32038. name: "Macro",
  32039. height: math.unit(63.4, "meters"),
  32040. default: true
  32041. },
  32042. ]
  32043. ))
  32044. characterMakers.push(() => makeCharacter(
  32045. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32046. {
  32047. front: {
  32048. height: math.unit(6, "feet"),
  32049. weight: math.unit(150, "lb"),
  32050. name: "Front",
  32051. image: {
  32052. source: "./media/characters/sfaiyan/front.svg",
  32053. extra: 999 / 978,
  32054. bottom: 5 / 1004
  32055. }
  32056. },
  32057. },
  32058. [
  32059. {
  32060. name: "Normal",
  32061. height: math.unit(1.82, "meters")
  32062. },
  32063. {
  32064. name: "Giant",
  32065. height: math.unit(2.27, "km"),
  32066. default: true
  32067. },
  32068. ]
  32069. ))
  32070. characterMakers.push(() => makeCharacter(
  32071. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32072. {
  32073. front: {
  32074. height: math.unit(179, "cm"),
  32075. weight: math.unit(100, "kg"),
  32076. name: "Front",
  32077. image: {
  32078. source: "./media/characters/raunehkeli/front.svg",
  32079. extra: 1934 / 1926,
  32080. bottom: 0 / 1934
  32081. }
  32082. },
  32083. },
  32084. [
  32085. {
  32086. name: "Normal",
  32087. height: math.unit(179, "cm")
  32088. },
  32089. {
  32090. name: "Maximum",
  32091. height: math.unit(575, "meters"),
  32092. default: true
  32093. },
  32094. ]
  32095. ))
  32096. characterMakers.push(() => makeCharacter(
  32097. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32098. {
  32099. dressed: {
  32100. height: math.unit(6 + 2/12, "feet"),
  32101. weight: math.unit(150, "lb"),
  32102. name: "Dressed",
  32103. image: {
  32104. source: "./media/characters/beatrice-the-behemoth-heathers/dressed.svg",
  32105. extra: 2620/2496,
  32106. bottom: 66/2686
  32107. }
  32108. },
  32109. nude: {
  32110. height: math.unit(6 + 2/12, "feet"),
  32111. weight: math.unit(150, "lb"),
  32112. name: "Nude",
  32113. image: {
  32114. source: "./media/characters/beatrice-the-behemoth-heathers/nude.svg",
  32115. extra: 2620/2496,
  32116. bottom: 66/2686
  32117. }
  32118. },
  32119. },
  32120. [
  32121. {
  32122. name: "Normal",
  32123. height: math.unit(6 + 2 / 12, "feet")
  32124. },
  32125. {
  32126. name: "Max Height",
  32127. height: math.unit(1181, "feet"),
  32128. default: true
  32129. },
  32130. ]
  32131. ))
  32132. characterMakers.push(() => makeCharacter(
  32133. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32134. {
  32135. front: {
  32136. height: math.unit(5 + 6 / 12, "feet"),
  32137. weight: math.unit(108, "lb"),
  32138. name: "Front",
  32139. image: {
  32140. source: "./media/characters/lilith-zott/front.svg",
  32141. extra: 2415/2133,
  32142. bottom: 193/2608
  32143. }
  32144. },
  32145. },
  32146. [
  32147. {
  32148. name: "Base Height",
  32149. height: math.unit(5 + 6 / 12, "feet")
  32150. },
  32151. {
  32152. name: "Preferred Height",
  32153. height: math.unit(200, "feet")
  32154. },
  32155. {
  32156. name: "Max Height",
  32157. height: math.unit(1030, "feet"),
  32158. default: true
  32159. },
  32160. ]
  32161. ))
  32162. characterMakers.push(() => makeCharacter(
  32163. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32164. {
  32165. super: {
  32166. height: math.unit(6 + 2/12, "feet"),
  32167. weight: math.unit(150, "lb"),
  32168. name: "Super",
  32169. image: {
  32170. source: "./media/characters/holly-the-mega-mousky-heathers/super.svg",
  32171. extra: 2555/2387,
  32172. bottom: 50/2605
  32173. }
  32174. },
  32175. casual: {
  32176. height: math.unit(6 + 2/12, "feet"),
  32177. weight: math.unit(150, "lb"),
  32178. name: "Casual",
  32179. image: {
  32180. source: "./media/characters/holly-the-mega-mousky-heathers/casual.svg",
  32181. extra: 2555/2387,
  32182. bottom: 50/2605
  32183. }
  32184. },
  32185. hand: {
  32186. height: math.unit(1.08, "feet"),
  32187. name: "Hand",
  32188. image: {
  32189. source: "./media/characters/holly-the-mega-mousky-heathers/hand.svg"
  32190. }
  32191. },
  32192. paw: {
  32193. height: math.unit(1.33, "feet"),
  32194. name: "Paw",
  32195. image: {
  32196. source: "./media/characters/holly-the-mega-mousky-heathers/paw.svg"
  32197. }
  32198. },
  32199. },
  32200. [
  32201. {
  32202. name: "Normal",
  32203. height: math.unit(6 + 2/12, "feet")
  32204. },
  32205. {
  32206. name: "Preferred Height",
  32207. height: math.unit(220, "feet")
  32208. },
  32209. {
  32210. name: "Max Height",
  32211. height: math.unit(1100, "feet"),
  32212. default: true
  32213. },
  32214. ]
  32215. ))
  32216. characterMakers.push(() => makeCharacter(
  32217. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32218. {
  32219. front: {
  32220. height: math.unit(100, "miles"),
  32221. name: "Front",
  32222. image: {
  32223. source: "./media/characters/sona/front.svg",
  32224. extra: 2433 / 2201,
  32225. bottom: 53 / 2486
  32226. }
  32227. },
  32228. foot: {
  32229. height: math.unit(16.1, "miles"),
  32230. name: "Foot",
  32231. image: {
  32232. source: "./media/characters/sona/foot.svg"
  32233. }
  32234. },
  32235. },
  32236. [
  32237. {
  32238. name: "Macro",
  32239. height: math.unit(100, "miles"),
  32240. default: true
  32241. },
  32242. ]
  32243. ))
  32244. characterMakers.push(() => makeCharacter(
  32245. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32246. {
  32247. front: {
  32248. height: math.unit(6, "feet"),
  32249. weight: math.unit(150, "lb"),
  32250. name: "Front",
  32251. image: {
  32252. source: "./media/characters/bailey/front.svg",
  32253. extra: 1778 / 1724,
  32254. bottom: 30 / 1808
  32255. }
  32256. },
  32257. },
  32258. [
  32259. {
  32260. name: "Micro",
  32261. height: math.unit(4, "inches")
  32262. },
  32263. {
  32264. name: "Normal",
  32265. height: math.unit(5 + 5 / 12, "feet"),
  32266. default: true
  32267. },
  32268. {
  32269. name: "Macro",
  32270. height: math.unit(250, "feet")
  32271. },
  32272. {
  32273. name: "Megamacro",
  32274. height: math.unit(100, "miles")
  32275. },
  32276. ]
  32277. ))
  32278. characterMakers.push(() => makeCharacter(
  32279. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32280. {
  32281. front: {
  32282. height: math.unit(5 + 2 / 12, "feet"),
  32283. weight: math.unit(120, "lb"),
  32284. name: "Front",
  32285. image: {
  32286. source: "./media/characters/snaps/front.svg",
  32287. extra: 2370 / 2177,
  32288. bottom: 48 / 2418
  32289. }
  32290. },
  32291. back: {
  32292. height: math.unit(5 + 2 / 12, "feet"),
  32293. weight: math.unit(120, "lb"),
  32294. name: "Back",
  32295. image: {
  32296. source: "./media/characters/snaps/back.svg",
  32297. extra: 2408 / 2258,
  32298. bottom: 15 / 2423
  32299. }
  32300. },
  32301. },
  32302. [
  32303. {
  32304. name: "Micro",
  32305. height: math.unit(9, "inches")
  32306. },
  32307. {
  32308. name: "Normal",
  32309. height: math.unit(5 + 2 / 12, "feet"),
  32310. default: true
  32311. },
  32312. {
  32313. name: "Mini Macro",
  32314. height: math.unit(10, "feet")
  32315. },
  32316. ]
  32317. ))
  32318. characterMakers.push(() => makeCharacter(
  32319. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32320. {
  32321. front: {
  32322. height: math.unit(1.8, "meters"),
  32323. weight: math.unit(85, "kg"),
  32324. name: "Front",
  32325. image: {
  32326. source: "./media/characters/azteck/front.svg",
  32327. extra: 2815 / 2625,
  32328. bottom: 89 / 2904
  32329. }
  32330. },
  32331. back: {
  32332. height: math.unit(1.8, "meters"),
  32333. weight: math.unit(85, "kg"),
  32334. name: "Back",
  32335. image: {
  32336. source: "./media/characters/azteck/back.svg",
  32337. extra: 2856 / 2648,
  32338. bottom: 85 / 2941
  32339. }
  32340. },
  32341. frontDressed: {
  32342. height: math.unit(1.8, "meters"),
  32343. weight: math.unit(85, "kg"),
  32344. name: "Front (Dressed)",
  32345. image: {
  32346. source: "./media/characters/azteck/front-dressed.svg",
  32347. extra: 2147 / 2003,
  32348. bottom: 68 / 2215
  32349. }
  32350. },
  32351. head: {
  32352. height: math.unit(0.47, "meters"),
  32353. weight: math.unit(85, "kg"),
  32354. name: "Head",
  32355. image: {
  32356. source: "./media/characters/azteck/head.svg"
  32357. }
  32358. },
  32359. },
  32360. [
  32361. {
  32362. name: "Bite sized",
  32363. height: math.unit(16, "cm")
  32364. },
  32365. {
  32366. name: "Normal",
  32367. height: math.unit(1.8, "meters"),
  32368. default: true
  32369. },
  32370. ]
  32371. ))
  32372. characterMakers.push(() => makeCharacter(
  32373. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32374. {
  32375. front: {
  32376. height: math.unit(6, "feet"),
  32377. weight: math.unit(150, "lb"),
  32378. name: "Front",
  32379. image: {
  32380. source: "./media/characters/pidge/front.svg",
  32381. extra: 1936/1820,
  32382. bottom: 0/1936
  32383. }
  32384. },
  32385. back: {
  32386. height: math.unit(6, "feet"),
  32387. weight: math.unit(150, "lb"),
  32388. name: "Back",
  32389. image: {
  32390. source: "./media/characters/pidge/back.svg",
  32391. extra: 1938/1843,
  32392. bottom: 0/1938
  32393. }
  32394. },
  32395. casual: {
  32396. height: math.unit(6, "feet"),
  32397. weight: math.unit(150, "lb"),
  32398. name: "Casual",
  32399. image: {
  32400. source: "./media/characters/pidge/casual.svg",
  32401. extra: 1936/1820,
  32402. bottom: 0/1936
  32403. }
  32404. },
  32405. tech: {
  32406. height: math.unit(6, "feet"),
  32407. weight: math.unit(150, "lb"),
  32408. name: "Tech",
  32409. image: {
  32410. source: "./media/characters/pidge/tech.svg",
  32411. extra: 1802/1682,
  32412. bottom: 0/1802
  32413. }
  32414. },
  32415. head: {
  32416. height: math.unit(1.61, "feet"),
  32417. name: "Head",
  32418. image: {
  32419. source: "./media/characters/pidge/head.svg"
  32420. }
  32421. },
  32422. collar: {
  32423. height: math.unit(0.82, "feet"),
  32424. name: "Collar",
  32425. image: {
  32426. source: "./media/characters/pidge/collar.svg"
  32427. }
  32428. },
  32429. },
  32430. [
  32431. {
  32432. name: "Macro",
  32433. height: math.unit(2, "mile"),
  32434. default: true
  32435. },
  32436. {
  32437. name: "PUPPY",
  32438. height: math.unit(20, "miles")
  32439. },
  32440. ]
  32441. ))
  32442. characterMakers.push(() => makeCharacter(
  32443. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32444. {
  32445. front: {
  32446. height: math.unit(6, "feet"),
  32447. weight: math.unit(150, "lb"),
  32448. name: "Front",
  32449. image: {
  32450. source: "./media/characters/en/front.svg",
  32451. extra: 1697 / 1563,
  32452. bottom: 103 / 1800
  32453. }
  32454. },
  32455. back: {
  32456. height: math.unit(6, "feet"),
  32457. weight: math.unit(150, "lb"),
  32458. name: "Back",
  32459. image: {
  32460. source: "./media/characters/en/back.svg",
  32461. extra: 1700 / 1570,
  32462. bottom: 51 / 1751
  32463. }
  32464. },
  32465. frontDressed: {
  32466. height: math.unit(6, "feet"),
  32467. weight: math.unit(150, "lb"),
  32468. name: "Front (Dressed)",
  32469. image: {
  32470. source: "./media/characters/en/front-dressed.svg",
  32471. extra: 1697 / 1563,
  32472. bottom: 103 / 1800
  32473. }
  32474. },
  32475. backDressed: {
  32476. height: math.unit(6, "feet"),
  32477. weight: math.unit(150, "lb"),
  32478. name: "Back (Dressed)",
  32479. image: {
  32480. source: "./media/characters/en/back-dressed.svg",
  32481. extra: 1700 / 1570,
  32482. bottom: 51 / 1751
  32483. }
  32484. },
  32485. },
  32486. [
  32487. {
  32488. name: "Macro",
  32489. height: math.unit(210, "feet"),
  32490. default: true
  32491. },
  32492. ]
  32493. ))
  32494. characterMakers.push(() => makeCharacter(
  32495. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32496. {
  32497. front: {
  32498. height: math.unit(6, "feet"),
  32499. weight: math.unit(150, "lb"),
  32500. name: "Front",
  32501. image: {
  32502. source: "./media/characters/haze-orris/front.svg",
  32503. extra: 3975 / 3525,
  32504. bottom: 137 / 4112
  32505. }
  32506. },
  32507. },
  32508. [
  32509. {
  32510. name: "Micro",
  32511. height: math.unit(150, "mm"),
  32512. default: true
  32513. },
  32514. ]
  32515. ))
  32516. characterMakers.push(() => makeCharacter(
  32517. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32518. {
  32519. front: {
  32520. height: math.unit(6, "feet"),
  32521. weight: math.unit(150, "lb"),
  32522. name: "Front",
  32523. image: {
  32524. source: "./media/characters/casselene-yaro/front.svg",
  32525. extra: 4721 / 4541,
  32526. bottom: 82 / 4803
  32527. }
  32528. },
  32529. back: {
  32530. height: math.unit(6, "feet"),
  32531. weight: math.unit(150, "lb"),
  32532. name: "Back",
  32533. image: {
  32534. source: "./media/characters/casselene-yaro/back.svg",
  32535. extra: 4569 / 4377,
  32536. bottom: 69 / 4638
  32537. }
  32538. },
  32539. dressed: {
  32540. height: math.unit(6, "feet"),
  32541. weight: math.unit(150, "lb"),
  32542. name: "Dressed",
  32543. image: {
  32544. source: "./media/characters/casselene-yaro/dressed.svg",
  32545. extra: 4721 / 4541,
  32546. bottom: 82 / 4803
  32547. }
  32548. },
  32549. maw: {
  32550. height: math.unit(1, "feet"),
  32551. name: "Maw",
  32552. image: {
  32553. source: "./media/characters/casselene-yaro/maw.svg"
  32554. }
  32555. },
  32556. },
  32557. [
  32558. {
  32559. name: "Macro",
  32560. height: math.unit(190, "feet"),
  32561. default: true
  32562. },
  32563. ]
  32564. ))
  32565. characterMakers.push(() => makeCharacter(
  32566. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32567. {
  32568. front: {
  32569. height: math.unit(10, "feet"),
  32570. weight: math.unit(15015, "lb"),
  32571. name: "Front",
  32572. image: {
  32573. source: "./media/characters/platine/front.svg",
  32574. extra: 1741/1650,
  32575. bottom: 84/1825
  32576. }
  32577. },
  32578. side: {
  32579. height: math.unit(10, "feet"),
  32580. weight: math.unit(15015, "lb"),
  32581. name: "Side",
  32582. image: {
  32583. source: "./media/characters/platine/side.svg",
  32584. extra: 1790/1705,
  32585. bottom: 29/1819
  32586. }
  32587. },
  32588. },
  32589. [
  32590. {
  32591. name: "Normal",
  32592. height: math.unit(10, "feet"),
  32593. default: true
  32594. },
  32595. {
  32596. name: "Macro",
  32597. height: math.unit(100, "feet")
  32598. },
  32599. {
  32600. name: "Megamacro",
  32601. height: math.unit(1000, "feet")
  32602. },
  32603. ]
  32604. ))
  32605. characterMakers.push(() => makeCharacter(
  32606. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32607. {
  32608. front: {
  32609. height: math.unit(15 + 5 / 12, "feet"),
  32610. weight: math.unit(4600, "lb"),
  32611. name: "Front",
  32612. image: {
  32613. source: "./media/characters/neapolitan-ananassa/front.svg",
  32614. extra: 2903 / 2736,
  32615. bottom: 0 / 2903
  32616. }
  32617. },
  32618. side: {
  32619. height: math.unit(15 + 5 / 12, "feet"),
  32620. weight: math.unit(4600, "lb"),
  32621. name: "Side",
  32622. image: {
  32623. source: "./media/characters/neapolitan-ananassa/side.svg",
  32624. extra: 2925 / 2719,
  32625. bottom: 0 / 2925
  32626. }
  32627. },
  32628. back: {
  32629. height: math.unit(15 + 5 / 12, "feet"),
  32630. weight: math.unit(4600, "lb"),
  32631. name: "Back",
  32632. image: {
  32633. source: "./media/characters/neapolitan-ananassa/back.svg",
  32634. extra: 2903 / 2736,
  32635. bottom: 0 / 2903
  32636. }
  32637. },
  32638. },
  32639. [
  32640. {
  32641. name: "Normal",
  32642. height: math.unit(15 + 5 / 12, "feet"),
  32643. default: true
  32644. },
  32645. {
  32646. name: "Post-Millenium",
  32647. height: math.unit(35 + 5 / 12, "feet")
  32648. },
  32649. {
  32650. name: "Post-Era",
  32651. height: math.unit(450 + 5 / 12, "feet")
  32652. },
  32653. ]
  32654. ))
  32655. characterMakers.push(() => makeCharacter(
  32656. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32657. {
  32658. front: {
  32659. height: math.unit(300, "meters"),
  32660. weight: math.unit(125000, "tonnes"),
  32661. name: "Front",
  32662. image: {
  32663. source: "./media/characters/pazuzu/front.svg",
  32664. extra: 877 / 794,
  32665. bottom: 47 / 924
  32666. }
  32667. },
  32668. },
  32669. [
  32670. {
  32671. name: "Macro",
  32672. height: math.unit(300, "meters"),
  32673. default: true
  32674. },
  32675. ]
  32676. ))
  32677. characterMakers.push(() => makeCharacter(
  32678. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32679. {
  32680. side: {
  32681. height: math.unit(10 + 7 / 12, "feet"),
  32682. weight: math.unit(2.5, "tons"),
  32683. name: "Side",
  32684. image: {
  32685. source: "./media/characters/aasha/side.svg",
  32686. extra: 1345 / 1245,
  32687. bottom: 111 / 1456
  32688. }
  32689. },
  32690. back: {
  32691. height: math.unit(10 + 7 / 12, "feet"),
  32692. weight: math.unit(2.5, "tons"),
  32693. name: "Back",
  32694. image: {
  32695. source: "./media/characters/aasha/back.svg",
  32696. extra: 1133 / 1057,
  32697. bottom: 257 / 1390
  32698. }
  32699. },
  32700. },
  32701. [
  32702. {
  32703. name: "Normal",
  32704. height: math.unit(10 + 7 / 12, "feet"),
  32705. default: true
  32706. },
  32707. ]
  32708. ))
  32709. characterMakers.push(() => makeCharacter(
  32710. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32711. {
  32712. front: {
  32713. height: math.unit(6 + 3 / 12, "feet"),
  32714. name: "Front",
  32715. image: {
  32716. source: "./media/characters/nevan/front.svg",
  32717. extra: 704 / 704,
  32718. bottom: 28 / 732
  32719. }
  32720. },
  32721. back: {
  32722. height: math.unit(6 + 3 / 12, "feet"),
  32723. name: "Back",
  32724. image: {
  32725. source: "./media/characters/nevan/back.svg",
  32726. extra: 714 / 714,
  32727. bottom: 21 / 735
  32728. }
  32729. },
  32730. frontFlaccid: {
  32731. height: math.unit(6 + 3 / 12, "feet"),
  32732. name: "Front (Flaccid)",
  32733. image: {
  32734. source: "./media/characters/nevan/front-flaccid.svg",
  32735. extra: 704 / 704,
  32736. bottom: 28 / 732
  32737. }
  32738. },
  32739. frontErect: {
  32740. height: math.unit(6 + 3 / 12, "feet"),
  32741. name: "Front (Erect)",
  32742. image: {
  32743. source: "./media/characters/nevan/front-erect.svg",
  32744. extra: 704 / 704,
  32745. bottom: 28 / 732
  32746. }
  32747. },
  32748. backFlaccid: {
  32749. height: math.unit(6 + 3 / 12, "feet"),
  32750. name: "Back (Flaccid)",
  32751. image: {
  32752. source: "./media/characters/nevan/back-flaccid.svg",
  32753. extra: 714 / 714,
  32754. bottom: 21 / 735
  32755. }
  32756. },
  32757. },
  32758. [
  32759. {
  32760. name: "Normal",
  32761. height: math.unit(6 + 3 / 12, "feet"),
  32762. default: true
  32763. },
  32764. ]
  32765. ))
  32766. characterMakers.push(() => makeCharacter(
  32767. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32768. {
  32769. front: {
  32770. height: math.unit(4, "feet"),
  32771. name: "Front",
  32772. image: {
  32773. source: "./media/characters/arhan/front.svg",
  32774. extra: 3368 / 3133,
  32775. bottom: 0 / 3368
  32776. }
  32777. },
  32778. side: {
  32779. height: math.unit(4, "feet"),
  32780. name: "Side",
  32781. image: {
  32782. source: "./media/characters/arhan/side.svg",
  32783. extra: 3347 / 3105,
  32784. bottom: 0 / 3347
  32785. }
  32786. },
  32787. tongue: {
  32788. height: math.unit(1.42, "feet"),
  32789. name: "Tongue",
  32790. image: {
  32791. source: "./media/characters/arhan/tongue.svg"
  32792. }
  32793. },
  32794. head: {
  32795. height: math.unit(0.85, "feet"),
  32796. name: "Head",
  32797. image: {
  32798. source: "./media/characters/arhan/head.svg"
  32799. }
  32800. },
  32801. },
  32802. [
  32803. {
  32804. name: "Normal",
  32805. height: math.unit(4, "feet"),
  32806. default: true
  32807. },
  32808. ]
  32809. ))
  32810. characterMakers.push(() => makeCharacter(
  32811. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32812. {
  32813. front: {
  32814. height: math.unit(5 + 7.5 / 12, "feet"),
  32815. weight: math.unit(120, "lb"),
  32816. name: "Front",
  32817. image: {
  32818. source: "./media/characters/digi-duncan/front.svg",
  32819. extra: 330 / 326,
  32820. bottom: 16 / 346
  32821. }
  32822. },
  32823. side: {
  32824. height: math.unit(5 + 7.5 / 12, "feet"),
  32825. weight: math.unit(120, "lb"),
  32826. name: "Side",
  32827. image: {
  32828. source: "./media/characters/digi-duncan/side.svg",
  32829. extra: 341 / 337,
  32830. bottom: 1 / 342
  32831. }
  32832. },
  32833. back: {
  32834. height: math.unit(5 + 7.5 / 12, "feet"),
  32835. weight: math.unit(120, "lb"),
  32836. name: "Back",
  32837. image: {
  32838. source: "./media/characters/digi-duncan/back.svg",
  32839. extra: 330 / 326,
  32840. bottom: 12 / 342
  32841. }
  32842. },
  32843. },
  32844. [
  32845. {
  32846. name: "Speck",
  32847. height: math.unit(0.25, "mm")
  32848. },
  32849. {
  32850. name: "Micro",
  32851. height: math.unit(5, "mm")
  32852. },
  32853. {
  32854. name: "Tiny",
  32855. height: math.unit(0.5, "inches"),
  32856. default: true
  32857. },
  32858. {
  32859. name: "Human",
  32860. height: math.unit(5 + 7.5 / 12, "feet")
  32861. },
  32862. {
  32863. name: "Minigiant",
  32864. height: math.unit(8 + 5.25, "feet")
  32865. },
  32866. {
  32867. name: "Giant",
  32868. height: math.unit(2000, "feet")
  32869. },
  32870. {
  32871. name: "Mega",
  32872. height: math.unit(371.1, "miles")
  32873. },
  32874. ]
  32875. ))
  32876. characterMakers.push(() => makeCharacter(
  32877. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32878. {
  32879. front: {
  32880. height: math.unit(2, "meters"),
  32881. weight: math.unit(350, "kg"),
  32882. name: "Front",
  32883. image: {
  32884. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32885. extra: 898 / 838,
  32886. bottom: 9 / 907
  32887. }
  32888. },
  32889. },
  32890. [
  32891. {
  32892. name: "Micro",
  32893. height: math.unit(8, "meters")
  32894. },
  32895. {
  32896. name: "Normal",
  32897. height: math.unit(50, "meters"),
  32898. default: true
  32899. },
  32900. {
  32901. name: "Macro",
  32902. height: math.unit(500, "meters")
  32903. },
  32904. ]
  32905. ))
  32906. characterMakers.push(() => makeCharacter(
  32907. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32908. {
  32909. front: {
  32910. height: math.unit(6 + 6 / 12, "feet"),
  32911. name: "Front",
  32912. image: {
  32913. source: "./media/characters/khardesh/front.svg",
  32914. extra: 1788/1596,
  32915. bottom: 66/1854
  32916. }
  32917. },
  32918. back: {
  32919. height: math.unit(6 + 6 / 12, "feet"),
  32920. name: "Back",
  32921. image: {
  32922. source: "./media/characters/khardesh/back.svg",
  32923. extra: 1781/1584,
  32924. bottom: 68/1849
  32925. }
  32926. },
  32927. },
  32928. [
  32929. {
  32930. name: "Normal",
  32931. height: math.unit(6 + 6 / 12, "feet"),
  32932. default: true
  32933. },
  32934. {
  32935. name: "Normal+",
  32936. height: math.unit(4, "meters")
  32937. },
  32938. {
  32939. name: "Macro",
  32940. height: math.unit(50, "meters")
  32941. },
  32942. {
  32943. name: "Macro+",
  32944. height: math.unit(100, "meters")
  32945. },
  32946. {
  32947. name: "Megamacro",
  32948. height: math.unit(20, "km")
  32949. },
  32950. ]
  32951. ))
  32952. characterMakers.push(() => makeCharacter(
  32953. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32954. {
  32955. front: {
  32956. height: math.unit(6, "feet"),
  32957. weight: math.unit(150, "lb"),
  32958. name: "Front",
  32959. image: {
  32960. source: "./media/characters/kosho/front.svg",
  32961. extra: 1847 / 1847,
  32962. bottom: 86 / 1933
  32963. }
  32964. },
  32965. },
  32966. [
  32967. {
  32968. name: "Second-stage micro",
  32969. height: math.unit(0.5, "inches")
  32970. },
  32971. {
  32972. name: "First-stage micro",
  32973. height: math.unit(6, "inches")
  32974. },
  32975. {
  32976. name: "Normal",
  32977. height: math.unit(6, "feet"),
  32978. default: true
  32979. },
  32980. {
  32981. name: "First-stage macro",
  32982. height: math.unit(72, "feet")
  32983. },
  32984. {
  32985. name: "Second-stage macro",
  32986. height: math.unit(864, "feet")
  32987. },
  32988. ]
  32989. ))
  32990. characterMakers.push(() => makeCharacter(
  32991. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32992. {
  32993. normal: {
  32994. height: math.unit(4 + 6 / 12, "feet"),
  32995. name: "Normal",
  32996. image: {
  32997. source: "./media/characters/hydra/normal.svg",
  32998. extra: 2833 / 2634,
  32999. bottom: 68 / 2901
  33000. }
  33001. },
  33002. smol: {
  33003. height: math.unit(0.705, "inches"),
  33004. name: "Smol",
  33005. image: {
  33006. source: "./media/characters/hydra/smol.svg",
  33007. extra: 2715 / 2540,
  33008. bottom: 0 / 2715
  33009. }
  33010. },
  33011. },
  33012. [
  33013. {
  33014. name: "Normal",
  33015. height: math.unit(4 + 6 / 12, "feet"),
  33016. default: true
  33017. }
  33018. ]
  33019. ))
  33020. characterMakers.push(() => makeCharacter(
  33021. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  33022. {
  33023. front: {
  33024. height: math.unit(0.6, "cm"),
  33025. name: "Front",
  33026. image: {
  33027. source: "./media/characters/daz/front.svg",
  33028. extra: 1682 / 1164,
  33029. bottom: 42 / 1724
  33030. }
  33031. },
  33032. },
  33033. [
  33034. {
  33035. name: "Normal",
  33036. height: math.unit(0.6, "cm"),
  33037. default: true
  33038. },
  33039. ]
  33040. ))
  33041. characterMakers.push(() => makeCharacter(
  33042. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  33043. {
  33044. front: {
  33045. height: math.unit(6, "feet"),
  33046. weight: math.unit(235, "lb"),
  33047. name: "Front",
  33048. image: {
  33049. source: "./media/characters/theo-pangolin/front.svg",
  33050. extra: 1996 / 1969,
  33051. bottom: 115 / 2111
  33052. }
  33053. },
  33054. back: {
  33055. height: math.unit(6, "feet"),
  33056. weight: math.unit(235, "lb"),
  33057. name: "Back",
  33058. image: {
  33059. source: "./media/characters/theo-pangolin/back.svg",
  33060. extra: 1979 / 1979,
  33061. bottom: 40 / 2019
  33062. }
  33063. },
  33064. feral: {
  33065. height: math.unit(2, "feet"),
  33066. weight: math.unit(30, "lb"),
  33067. name: "Feral",
  33068. image: {
  33069. source: "./media/characters/theo-pangolin/feral.svg",
  33070. extra: 803 / 791,
  33071. bottom: 181 / 984
  33072. }
  33073. },
  33074. footFive: {
  33075. height: math.unit(1.43, "feet"),
  33076. name: "Foot (Five Toes)",
  33077. image: {
  33078. source: "./media/characters/theo-pangolin/foot-five.svg"
  33079. }
  33080. },
  33081. footFour: {
  33082. height: math.unit(1.43, "feet"),
  33083. name: "Foot (Four Toes)",
  33084. image: {
  33085. source: "./media/characters/theo-pangolin/foot-four.svg"
  33086. }
  33087. },
  33088. handFour: {
  33089. height: math.unit(0.81, "feet"),
  33090. name: "Hand (Four Fingers)",
  33091. image: {
  33092. source: "./media/characters/theo-pangolin/hand-four.svg"
  33093. }
  33094. },
  33095. handThree: {
  33096. height: math.unit(0.81, "feet"),
  33097. name: "Hand (Three Fingers)",
  33098. image: {
  33099. source: "./media/characters/theo-pangolin/hand-three.svg"
  33100. }
  33101. },
  33102. headFront: {
  33103. height: math.unit(1.37, "feet"),
  33104. name: "Head (Front)",
  33105. image: {
  33106. source: "./media/characters/theo-pangolin/head-front.svg"
  33107. }
  33108. },
  33109. headSide: {
  33110. height: math.unit(1.43, "feet"),
  33111. name: "Head (Side)",
  33112. image: {
  33113. source: "./media/characters/theo-pangolin/head-side.svg"
  33114. }
  33115. },
  33116. tongue: {
  33117. height: math.unit(2.29, "feet"),
  33118. name: "Tongue",
  33119. image: {
  33120. source: "./media/characters/theo-pangolin/tongue.svg"
  33121. }
  33122. },
  33123. },
  33124. [
  33125. {
  33126. name: "Normal",
  33127. height: math.unit(6, "feet")
  33128. },
  33129. {
  33130. name: "Macro",
  33131. height: math.unit(400, "feet"),
  33132. default: true
  33133. },
  33134. ]
  33135. ))
  33136. characterMakers.push(() => makeCharacter(
  33137. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33138. {
  33139. front: {
  33140. height: math.unit(6, "inches"),
  33141. weight: math.unit(0.036, "kg"),
  33142. name: "Front",
  33143. image: {
  33144. source: "./media/characters/renée/front.svg",
  33145. extra: 900 / 886,
  33146. bottom: 8 / 908
  33147. }
  33148. },
  33149. },
  33150. [
  33151. {
  33152. name: "Nano",
  33153. height: math.unit(1, "nm")
  33154. },
  33155. {
  33156. name: "Micro",
  33157. height: math.unit(1, "mm")
  33158. },
  33159. {
  33160. name: "Normal",
  33161. height: math.unit(6, "inches")
  33162. },
  33163. {
  33164. name: "Macro",
  33165. height: math.unit(2000, "feet"),
  33166. default: true
  33167. },
  33168. {
  33169. name: "Megamacro",
  33170. height: math.unit(2, "km")
  33171. },
  33172. {
  33173. name: "Gigamacro",
  33174. height: math.unit(2000, "km")
  33175. },
  33176. {
  33177. name: "Teramacro",
  33178. height: math.unit(250000, "km")
  33179. },
  33180. ]
  33181. ))
  33182. characterMakers.push(() => makeCharacter(
  33183. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33184. {
  33185. front: {
  33186. height: math.unit(4, "meters"),
  33187. weight: math.unit(150, "kg"),
  33188. name: "Front",
  33189. image: {
  33190. source: "./media/characters/caledvwlch/front.svg",
  33191. extra: 1757/1537,
  33192. bottom: 31/1788
  33193. }
  33194. },
  33195. side: {
  33196. height: math.unit(4, "meters"),
  33197. weight: math.unit(150, "kg"),
  33198. name: "Side",
  33199. image: {
  33200. source: "./media/characters/caledvwlch/side.svg",
  33201. extra: 1605 / 1536,
  33202. bottom: 31 / 1636
  33203. }
  33204. },
  33205. back: {
  33206. height: math.unit(4, "meters"),
  33207. weight: math.unit(150, "kg"),
  33208. name: "Back",
  33209. image: {
  33210. source: "./media/characters/caledvwlch/back.svg",
  33211. extra: 1635 / 1565,
  33212. bottom: 27 / 1662
  33213. }
  33214. },
  33215. },
  33216. [
  33217. {
  33218. name: "\"Incognito\"",
  33219. height: math.unit(4, "meters")
  33220. },
  33221. {
  33222. name: "Small rampage",
  33223. height: math.unit(600, "meters")
  33224. },
  33225. {
  33226. name: "Mega",
  33227. height: math.unit(30, "km")
  33228. },
  33229. {
  33230. name: "Home-size",
  33231. height: math.unit(50, "km"),
  33232. default: true
  33233. },
  33234. {
  33235. name: "Giga",
  33236. height: math.unit(300, "km")
  33237. },
  33238. {
  33239. name: "Lounging",
  33240. height: math.unit(11000, "km")
  33241. },
  33242. {
  33243. name: "Planet snacking",
  33244. height: math.unit(2000000, "km")
  33245. },
  33246. ]
  33247. ))
  33248. characterMakers.push(() => makeCharacter(
  33249. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33250. {
  33251. front: {
  33252. height: math.unit(6, "feet"),
  33253. weight: math.unit(215, "lb"),
  33254. name: "Front",
  33255. image: {
  33256. source: "./media/characters/sapphire-svell/front.svg",
  33257. extra: 495 / 455,
  33258. bottom: 20 / 515
  33259. }
  33260. },
  33261. back: {
  33262. height: math.unit(6, "feet"),
  33263. weight: math.unit(216, "lb"),
  33264. name: "Back",
  33265. image: {
  33266. source: "./media/characters/sapphire-svell/back.svg",
  33267. extra: 497 / 477,
  33268. bottom: 7 / 504
  33269. }
  33270. },
  33271. maw: {
  33272. height: math.unit(1.57, "feet"),
  33273. name: "Maw",
  33274. image: {
  33275. source: "./media/characters/sapphire-svell/maw.svg"
  33276. }
  33277. },
  33278. foot: {
  33279. height: math.unit(1.07, "feet"),
  33280. name: "Foot",
  33281. image: {
  33282. source: "./media/characters/sapphire-svell/foot.svg"
  33283. }
  33284. },
  33285. toering: {
  33286. height: math.unit(1.7, "inch"),
  33287. name: "Toering",
  33288. image: {
  33289. source: "./media/characters/sapphire-svell/toering.svg"
  33290. }
  33291. },
  33292. },
  33293. [
  33294. {
  33295. name: "Normal",
  33296. height: math.unit(300, "feet"),
  33297. default: true
  33298. },
  33299. {
  33300. name: "Augmented",
  33301. height: math.unit(1250, "feet")
  33302. },
  33303. {
  33304. name: "Unleashed",
  33305. height: math.unit(3000, "feet")
  33306. },
  33307. ]
  33308. ))
  33309. characterMakers.push(() => makeCharacter(
  33310. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33311. {
  33312. side: {
  33313. height: math.unit(2 + 3 / 12, "feet"),
  33314. weight: math.unit(110, "lb"),
  33315. name: "Side",
  33316. image: {
  33317. source: "./media/characters/glitch-flux/side.svg",
  33318. extra: 997 / 805,
  33319. bottom: 20 / 1017
  33320. }
  33321. },
  33322. },
  33323. [
  33324. {
  33325. name: "Normal",
  33326. height: math.unit(2 + 3 / 12, "feet"),
  33327. default: true
  33328. },
  33329. ]
  33330. ))
  33331. characterMakers.push(() => makeCharacter(
  33332. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33333. {
  33334. front: {
  33335. height: math.unit(4, "meters"),
  33336. name: "Front",
  33337. image: {
  33338. source: "./media/characters/mid/front.svg",
  33339. extra: 507 / 476,
  33340. bottom: 17 / 524
  33341. }
  33342. },
  33343. back: {
  33344. height: math.unit(4, "meters"),
  33345. name: "Back",
  33346. image: {
  33347. source: "./media/characters/mid/back.svg",
  33348. extra: 519 / 487,
  33349. bottom: 7 / 526
  33350. }
  33351. },
  33352. stuck: {
  33353. height: math.unit(2.2, "meters"),
  33354. name: "Stuck",
  33355. image: {
  33356. source: "./media/characters/mid/stuck.svg",
  33357. extra: 1951 / 1869,
  33358. bottom: 88 / 2039
  33359. }
  33360. }
  33361. },
  33362. [
  33363. {
  33364. name: "Normal",
  33365. height: math.unit(4, "meters"),
  33366. default: true
  33367. },
  33368. {
  33369. name: "Big",
  33370. height: math.unit(10, "meters")
  33371. },
  33372. {
  33373. name: "Macro",
  33374. height: math.unit(800, "meters")
  33375. },
  33376. {
  33377. name: "Megamacro",
  33378. height: math.unit(100, "km")
  33379. },
  33380. {
  33381. name: "Overgrown",
  33382. height: math.unit(1, "parsec")
  33383. },
  33384. ]
  33385. ))
  33386. characterMakers.push(() => makeCharacter(
  33387. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33388. {
  33389. front: {
  33390. height: math.unit(2.5, "meters"),
  33391. weight: math.unit(225, "kg"),
  33392. name: "Front",
  33393. image: {
  33394. source: "./media/characters/iris/front.svg",
  33395. extra: 3348 / 3251,
  33396. bottom: 205 / 3553
  33397. }
  33398. },
  33399. maw: {
  33400. height: math.unit(0.56, "meter"),
  33401. name: "Maw",
  33402. image: {
  33403. source: "./media/characters/iris/maw.svg"
  33404. }
  33405. },
  33406. },
  33407. [
  33408. {
  33409. name: "Mewter cat",
  33410. height: math.unit(1.2, "meters")
  33411. },
  33412. {
  33413. name: "Normal",
  33414. height: math.unit(2.5, "meters"),
  33415. default: true
  33416. },
  33417. {
  33418. name: "Minimacro",
  33419. height: math.unit(18, "feet")
  33420. },
  33421. {
  33422. name: "Macro",
  33423. height: math.unit(140, "feet")
  33424. },
  33425. {
  33426. name: "Macro+",
  33427. height: math.unit(180, "meters")
  33428. },
  33429. {
  33430. name: "Megamacro",
  33431. height: math.unit(2746, "meters")
  33432. },
  33433. ]
  33434. ))
  33435. characterMakers.push(() => makeCharacter(
  33436. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33437. {
  33438. front: {
  33439. height: math.unit(6, "feet"),
  33440. weight: math.unit(135, "lb"),
  33441. name: "Front",
  33442. image: {
  33443. source: "./media/characters/axel/front.svg",
  33444. extra: 908 / 908,
  33445. bottom: 58 / 966
  33446. }
  33447. },
  33448. side: {
  33449. height: math.unit(6, "feet"),
  33450. weight: math.unit(135, "lb"),
  33451. name: "Side",
  33452. image: {
  33453. source: "./media/characters/axel/side.svg",
  33454. extra: 958 / 958,
  33455. bottom: 11 / 969
  33456. }
  33457. },
  33458. back: {
  33459. height: math.unit(6, "feet"),
  33460. weight: math.unit(135, "lb"),
  33461. name: "Back",
  33462. image: {
  33463. source: "./media/characters/axel/back.svg",
  33464. extra: 887 / 887,
  33465. bottom: 34 / 921
  33466. }
  33467. },
  33468. head: {
  33469. height: math.unit(1.07, "feet"),
  33470. name: "Head",
  33471. image: {
  33472. source: "./media/characters/axel/head.svg"
  33473. }
  33474. },
  33475. beak: {
  33476. height: math.unit(1.4, "feet"),
  33477. name: "Beak",
  33478. image: {
  33479. source: "./media/characters/axel/beak.svg"
  33480. }
  33481. },
  33482. beakSide: {
  33483. height: math.unit(1.4, "feet"),
  33484. name: "Beak Side",
  33485. image: {
  33486. source: "./media/characters/axel/beak-side.svg"
  33487. }
  33488. },
  33489. sheath: {
  33490. height: math.unit(0.5, "feet"),
  33491. name: "Sheath",
  33492. image: {
  33493. source: "./media/characters/axel/sheath.svg"
  33494. }
  33495. },
  33496. dick: {
  33497. height: math.unit(0.98, "feet"),
  33498. name: "Dick",
  33499. image: {
  33500. source: "./media/characters/axel/dick.svg"
  33501. }
  33502. },
  33503. },
  33504. [
  33505. {
  33506. name: "Macro",
  33507. height: math.unit(68, "meters"),
  33508. default: true
  33509. },
  33510. ]
  33511. ))
  33512. characterMakers.push(() => makeCharacter(
  33513. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33514. {
  33515. front: {
  33516. height: math.unit(3.5, "meters"),
  33517. weight: math.unit(1200, "kg"),
  33518. name: "Front",
  33519. image: {
  33520. source: "./media/characters/joanna/front.svg",
  33521. extra: 1596 / 1488,
  33522. bottom: 29 / 1625
  33523. }
  33524. },
  33525. back: {
  33526. height: math.unit(3.5, "meters"),
  33527. weight: math.unit(1200, "kg"),
  33528. name: "Back",
  33529. image: {
  33530. source: "./media/characters/joanna/back.svg",
  33531. extra: 1594 / 1495,
  33532. bottom: 26 / 1620
  33533. }
  33534. },
  33535. frontShorts: {
  33536. height: math.unit(3.5, "meters"),
  33537. weight: math.unit(1200, "kg"),
  33538. name: "Front (Shorts)",
  33539. image: {
  33540. source: "./media/characters/joanna/front-shorts.svg",
  33541. extra: 1596 / 1488,
  33542. bottom: 29 / 1625
  33543. }
  33544. },
  33545. frontBiker: {
  33546. height: math.unit(3.5, "meters"),
  33547. weight: math.unit(1200, "kg"),
  33548. name: "Front (Biker)",
  33549. image: {
  33550. source: "./media/characters/joanna/front-biker.svg",
  33551. extra: 1596 / 1488,
  33552. bottom: 29 / 1625
  33553. }
  33554. },
  33555. backBiker: {
  33556. height: math.unit(3.5, "meters"),
  33557. weight: math.unit(1200, "kg"),
  33558. name: "Back (Biker)",
  33559. image: {
  33560. source: "./media/characters/joanna/back-biker.svg",
  33561. extra: 1594 / 1495,
  33562. bottom: 88 / 1682
  33563. }
  33564. },
  33565. bikeLeft: {
  33566. height: math.unit(2.4, "meters"),
  33567. weight: math.unit(1600, "kg"),
  33568. name: "Bike (Left)",
  33569. image: {
  33570. source: "./media/characters/joanna/bike-left.svg",
  33571. extra: 720 / 720,
  33572. bottom: 8 / 728
  33573. }
  33574. },
  33575. bikeRight: {
  33576. height: math.unit(2.4, "meters"),
  33577. weight: math.unit(1600, "kg"),
  33578. name: "Bike (Right)",
  33579. image: {
  33580. source: "./media/characters/joanna/bike-right.svg",
  33581. extra: 720 / 720,
  33582. bottom: 8 / 728
  33583. }
  33584. },
  33585. },
  33586. [
  33587. {
  33588. name: "Incognito",
  33589. height: math.unit(3.5, "meters")
  33590. },
  33591. {
  33592. name: "Casual Big",
  33593. height: math.unit(200, "meters")
  33594. },
  33595. {
  33596. name: "Macro",
  33597. height: math.unit(600, "meters")
  33598. },
  33599. {
  33600. name: "Original",
  33601. height: math.unit(20, "km"),
  33602. default: true
  33603. },
  33604. {
  33605. name: "Giga",
  33606. height: math.unit(400, "km")
  33607. },
  33608. {
  33609. name: "Lounging",
  33610. height: math.unit(1500, "km")
  33611. },
  33612. {
  33613. name: "Planetary",
  33614. height: math.unit(200000, "km")
  33615. },
  33616. ]
  33617. ))
  33618. characterMakers.push(() => makeCharacter(
  33619. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33620. {
  33621. front: {
  33622. height: math.unit(6, "feet"),
  33623. weight: math.unit(150, "lb"),
  33624. name: "Front",
  33625. image: {
  33626. source: "./media/characters/hugo-sigil/front.svg",
  33627. extra: 522 / 500,
  33628. bottom: 2 / 524
  33629. }
  33630. },
  33631. back: {
  33632. height: math.unit(6, "feet"),
  33633. weight: math.unit(150, "lb"),
  33634. name: "Back",
  33635. image: {
  33636. source: "./media/characters/hugo-sigil/back.svg",
  33637. extra: 519 / 495,
  33638. bottom: 5 / 524
  33639. }
  33640. },
  33641. maw: {
  33642. height: math.unit(1.4, "feet"),
  33643. weight: math.unit(150, "lb"),
  33644. name: "Maw",
  33645. image: {
  33646. source: "./media/characters/hugo-sigil/maw.svg"
  33647. }
  33648. },
  33649. feet: {
  33650. height: math.unit(1.56, "feet"),
  33651. weight: math.unit(150, "lb"),
  33652. name: "Feet",
  33653. image: {
  33654. source: "./media/characters/hugo-sigil/feet.svg",
  33655. extra: 177 / 177,
  33656. bottom: 12 / 189
  33657. }
  33658. },
  33659. },
  33660. [
  33661. {
  33662. name: "Normal",
  33663. height: math.unit(6, "feet")
  33664. },
  33665. {
  33666. name: "Macro",
  33667. height: math.unit(200, "feet"),
  33668. default: true
  33669. },
  33670. ]
  33671. ))
  33672. characterMakers.push(() => makeCharacter(
  33673. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33674. {
  33675. front: {
  33676. height: math.unit(6, "feet"),
  33677. weight: math.unit(150, "lb"),
  33678. name: "Front",
  33679. image: {
  33680. source: "./media/characters/peri/front.svg",
  33681. extra: 2354 / 2233,
  33682. bottom: 49 / 2403
  33683. }
  33684. },
  33685. },
  33686. [
  33687. {
  33688. name: "Really Small",
  33689. height: math.unit(1, "nm")
  33690. },
  33691. {
  33692. name: "Micro",
  33693. height: math.unit(4, "inches")
  33694. },
  33695. {
  33696. name: "Normal",
  33697. height: math.unit(7, "inches"),
  33698. default: true
  33699. },
  33700. {
  33701. name: "Macro",
  33702. height: math.unit(400, "feet")
  33703. },
  33704. {
  33705. name: "Megamacro",
  33706. height: math.unit(100, "miles")
  33707. },
  33708. ]
  33709. ))
  33710. characterMakers.push(() => makeCharacter(
  33711. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33712. {
  33713. frontSlim: {
  33714. height: math.unit(7, "feet"),
  33715. name: "Front (Slim)",
  33716. image: {
  33717. source: "./media/characters/issilora/front-slim.svg",
  33718. extra: 529 / 449,
  33719. bottom: 53 / 582
  33720. }
  33721. },
  33722. sideSlim: {
  33723. height: math.unit(7, "feet"),
  33724. name: "Side (Slim)",
  33725. image: {
  33726. source: "./media/characters/issilora/side-slim.svg",
  33727. extra: 570 / 480,
  33728. bottom: 30 / 600
  33729. }
  33730. },
  33731. backSlim: {
  33732. height: math.unit(7, "feet"),
  33733. name: "Back (Slim)",
  33734. image: {
  33735. source: "./media/characters/issilora/back-slim.svg",
  33736. extra: 537 / 455,
  33737. bottom: 46 / 583
  33738. }
  33739. },
  33740. frontBuff: {
  33741. height: math.unit(7, "feet"),
  33742. name: "Front (Buff)",
  33743. image: {
  33744. source: "./media/characters/issilora/front-buff.svg",
  33745. extra: 2310 / 2035,
  33746. bottom: 335 / 2645
  33747. }
  33748. },
  33749. head: {
  33750. height: math.unit(1.94, "feet"),
  33751. name: "Head",
  33752. image: {
  33753. source: "./media/characters/issilora/head.svg"
  33754. }
  33755. },
  33756. },
  33757. [
  33758. {
  33759. name: "Minimum",
  33760. height: math.unit(7, "feet")
  33761. },
  33762. {
  33763. name: "Comfortable",
  33764. height: math.unit(17, "feet")
  33765. },
  33766. {
  33767. name: "Fun Size",
  33768. height: math.unit(47, "feet")
  33769. },
  33770. {
  33771. name: "Natural Macro",
  33772. height: math.unit(137, "feet"),
  33773. default: true
  33774. },
  33775. {
  33776. name: "Maximum Kaiju",
  33777. height: math.unit(397, "feet")
  33778. },
  33779. ]
  33780. ))
  33781. characterMakers.push(() => makeCharacter(
  33782. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33783. {
  33784. front: {
  33785. height: math.unit(50 + 9/12, "feet"),
  33786. weight: math.unit(32.8, "tons"),
  33787. name: "Front",
  33788. image: {
  33789. source: "./media/characters/irb'iiritaahn/front.svg",
  33790. extra: 1878/1826,
  33791. bottom: 326/2204
  33792. }
  33793. },
  33794. back: {
  33795. height: math.unit(50 + 9/12, "feet"),
  33796. weight: math.unit(32.8, "tons"),
  33797. name: "Back",
  33798. image: {
  33799. source: "./media/characters/irb'iiritaahn/back.svg",
  33800. extra: 2052/2018,
  33801. bottom: 152/2204
  33802. }
  33803. },
  33804. head: {
  33805. height: math.unit(12.86, "feet"),
  33806. name: "Head",
  33807. image: {
  33808. source: "./media/characters/irb'iiritaahn/head.svg"
  33809. }
  33810. },
  33811. maw: {
  33812. height: math.unit(9.66, "feet"),
  33813. name: "Maw",
  33814. image: {
  33815. source: "./media/characters/irb'iiritaahn/maw.svg"
  33816. }
  33817. },
  33818. frontDick: {
  33819. height: math.unit(8.78461, "feet"),
  33820. name: "Front Dick",
  33821. image: {
  33822. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33823. }
  33824. },
  33825. rearDick: {
  33826. height: math.unit(8.78461, "feet"),
  33827. name: "Rear Dick",
  33828. image: {
  33829. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33830. }
  33831. },
  33832. rearDickUnfolded: {
  33833. height: math.unit(8.78, "feet"),
  33834. name: "Rear Dick (Unfolded)",
  33835. image: {
  33836. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33837. }
  33838. },
  33839. wings: {
  33840. height: math.unit(43, "feet"),
  33841. name: "Wings",
  33842. image: {
  33843. source: "./media/characters/irb'iiritaahn/wings.svg"
  33844. }
  33845. },
  33846. },
  33847. [
  33848. {
  33849. name: "Macro",
  33850. height: math.unit(50 + 9/12, "feet"),
  33851. default: true
  33852. },
  33853. ]
  33854. ))
  33855. characterMakers.push(() => makeCharacter(
  33856. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33857. {
  33858. front: {
  33859. height: math.unit(205, "cm"),
  33860. weight: math.unit(102, "kg"),
  33861. name: "Front",
  33862. image: {
  33863. source: "./media/characters/irbisgreif/front.svg",
  33864. extra: 785/706,
  33865. bottom: 13/798
  33866. }
  33867. },
  33868. back: {
  33869. height: math.unit(205, "cm"),
  33870. weight: math.unit(102, "kg"),
  33871. name: "Back",
  33872. image: {
  33873. source: "./media/characters/irbisgreif/back.svg",
  33874. extra: 713/701,
  33875. bottom: 26/739
  33876. }
  33877. },
  33878. frontDressed: {
  33879. height: math.unit(216, "cm"),
  33880. weight: math.unit(102, "kg"),
  33881. name: "Front-dressed",
  33882. image: {
  33883. source: "./media/characters/irbisgreif/front-dressed.svg",
  33884. extra: 902/776,
  33885. bottom: 14/916
  33886. }
  33887. },
  33888. sideDressed: {
  33889. height: math.unit(195, "cm"),
  33890. weight: math.unit(102, "kg"),
  33891. name: "Side-dressed",
  33892. image: {
  33893. source: "./media/characters/irbisgreif/side-dressed.svg",
  33894. extra: 788/688,
  33895. bottom: 21/809
  33896. }
  33897. },
  33898. backDressed: {
  33899. height: math.unit(216, "cm"),
  33900. weight: math.unit(102, "kg"),
  33901. name: "Back-dressed",
  33902. image: {
  33903. source: "./media/characters/irbisgreif/back-dressed.svg",
  33904. extra: 901/783,
  33905. bottom: 10/911
  33906. }
  33907. },
  33908. dick: {
  33909. height: math.unit(0.49, "feet"),
  33910. name: "Dick",
  33911. image: {
  33912. source: "./media/characters/irbisgreif/dick.svg"
  33913. }
  33914. },
  33915. wingTop: {
  33916. height: math.unit(1.93 , "feet"),
  33917. name: "Wing-top",
  33918. image: {
  33919. source: "./media/characters/irbisgreif/wing-top.svg"
  33920. }
  33921. },
  33922. wingBottom: {
  33923. height: math.unit(1.93 , "feet"),
  33924. name: "Wing-bottom",
  33925. image: {
  33926. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33927. }
  33928. },
  33929. },
  33930. [
  33931. {
  33932. name: "Normal",
  33933. height: math.unit(216, "cm"),
  33934. default: true
  33935. },
  33936. ]
  33937. ))
  33938. characterMakers.push(() => makeCharacter(
  33939. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33940. {
  33941. front: {
  33942. height: math.unit(6, "feet"),
  33943. weight: math.unit(150, "lb"),
  33944. name: "Front",
  33945. image: {
  33946. source: "./media/characters/pride/front.svg",
  33947. extra: 1299/1230,
  33948. bottom: 18/1317
  33949. }
  33950. },
  33951. },
  33952. [
  33953. {
  33954. name: "Normal",
  33955. height: math.unit(7, "feet")
  33956. },
  33957. {
  33958. name: "Mini-macro",
  33959. height: math.unit(11, "feet")
  33960. },
  33961. {
  33962. name: "Macro",
  33963. height: math.unit(15, "meters"),
  33964. default: true
  33965. },
  33966. {
  33967. name: "Macro+",
  33968. height: math.unit(40, "meters")
  33969. },
  33970. ]
  33971. ))
  33972. characterMakers.push(() => makeCharacter(
  33973. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33974. {
  33975. front: {
  33976. height: math.unit(4 + 2 / 12, "feet"),
  33977. weight: math.unit(95, "lb"),
  33978. name: "Front",
  33979. image: {
  33980. source: "./media/characters/vaelophis-nyx/front.svg",
  33981. extra: 2532/2330,
  33982. bottom: 0/2532
  33983. }
  33984. },
  33985. back: {
  33986. height: math.unit(4 + 2 / 12, "feet"),
  33987. weight: math.unit(95, "lb"),
  33988. name: "Back",
  33989. image: {
  33990. source: "./media/characters/vaelophis-nyx/back.svg",
  33991. extra: 2484/2361,
  33992. bottom: 0/2484
  33993. }
  33994. },
  33995. feralSide: {
  33996. height: math.unit(2 + 1/12, "feet"),
  33997. weight: math.unit(20, "lb"),
  33998. name: "Feral (Side)",
  33999. image: {
  34000. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  34001. extra: 1721/1581,
  34002. bottom: 70/1791
  34003. }
  34004. },
  34005. feralLazing: {
  34006. height: math.unit(1.08, "feet"),
  34007. weight: math.unit(20, "lb"),
  34008. name: "Feral (Lazing)",
  34009. image: {
  34010. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  34011. extra: 822/822,
  34012. bottom: 248/1070
  34013. }
  34014. },
  34015. ear: {
  34016. height: math.unit(0.416, "feet"),
  34017. name: "Ear",
  34018. image: {
  34019. source: "./media/characters/vaelophis-nyx/ear.svg"
  34020. }
  34021. },
  34022. eye: {
  34023. height: math.unit(0.0748, "feet"),
  34024. name: "Eye",
  34025. image: {
  34026. source: "./media/characters/vaelophis-nyx/eye.svg"
  34027. }
  34028. },
  34029. mouth: {
  34030. height: math.unit(0.378, "feet"),
  34031. name: "Mouth",
  34032. image: {
  34033. source: "./media/characters/vaelophis-nyx/mouth.svg"
  34034. }
  34035. },
  34036. spade: {
  34037. height: math.unit(0.55, "feet"),
  34038. name: "Spade",
  34039. image: {
  34040. source: "./media/characters/vaelophis-nyx/spade.svg"
  34041. }
  34042. },
  34043. },
  34044. [
  34045. {
  34046. name: "Normal",
  34047. height: math.unit(4 + 2/12, "feet"),
  34048. default: true
  34049. },
  34050. ]
  34051. ))
  34052. characterMakers.push(() => makeCharacter(
  34053. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34054. {
  34055. front: {
  34056. height: math.unit(7, "feet"),
  34057. weight: math.unit(231, "lb"),
  34058. name: "Front",
  34059. image: {
  34060. source: "./media/characters/flux/front.svg",
  34061. extra: 919/871,
  34062. bottom: 0/919
  34063. }
  34064. },
  34065. back: {
  34066. height: math.unit(7, "feet"),
  34067. weight: math.unit(231, "lb"),
  34068. name: "Back",
  34069. image: {
  34070. source: "./media/characters/flux/back.svg",
  34071. extra: 1040/992,
  34072. bottom: 0/1040
  34073. }
  34074. },
  34075. frontDressed: {
  34076. height: math.unit(7, "feet"),
  34077. weight: math.unit(231, "lb"),
  34078. name: "Front (Dressed)",
  34079. image: {
  34080. source: "./media/characters/flux/front-dressed.svg",
  34081. extra: 919/871,
  34082. bottom: 0/919
  34083. }
  34084. },
  34085. feralSide: {
  34086. height: math.unit(5, "feet"),
  34087. weight: math.unit(150, "lb"),
  34088. name: "Feral (Side)",
  34089. image: {
  34090. source: "./media/characters/flux/feral-side.svg",
  34091. extra: 598/528,
  34092. bottom: 28/626
  34093. }
  34094. },
  34095. head: {
  34096. height: math.unit(1.585, "feet"),
  34097. name: "Head",
  34098. image: {
  34099. source: "./media/characters/flux/head.svg"
  34100. }
  34101. },
  34102. headSide: {
  34103. height: math.unit(1.74, "feet"),
  34104. name: "Head (Side)",
  34105. image: {
  34106. source: "./media/characters/flux/head-side.svg"
  34107. }
  34108. },
  34109. headSideFire: {
  34110. height: math.unit(1.76, "feet"),
  34111. name: "Head (Side, Fire)",
  34112. image: {
  34113. source: "./media/characters/flux/head-side-fire.svg"
  34114. }
  34115. },
  34116. },
  34117. [
  34118. {
  34119. name: "Normal",
  34120. height: math.unit(7, "feet"),
  34121. default: true
  34122. },
  34123. ]
  34124. ))
  34125. characterMakers.push(() => makeCharacter(
  34126. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34127. {
  34128. front: {
  34129. height: math.unit(9, "feet"),
  34130. weight: math.unit(1012, "lb"),
  34131. name: "Front",
  34132. image: {
  34133. source: "./media/characters/ulfra-lupae/front.svg",
  34134. extra: 1083/1011,
  34135. bottom: 67/1150
  34136. }
  34137. },
  34138. },
  34139. [
  34140. {
  34141. name: "Micro",
  34142. height: math.unit(6, "inches")
  34143. },
  34144. {
  34145. name: "Socializing",
  34146. height: math.unit(6 + 5/12, "feet")
  34147. },
  34148. {
  34149. name: "Normal",
  34150. height: math.unit(9, "feet"),
  34151. default: true
  34152. },
  34153. {
  34154. name: "Macro",
  34155. height: math.unit(150, "feet")
  34156. },
  34157. ]
  34158. ))
  34159. characterMakers.push(() => makeCharacter(
  34160. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34161. {
  34162. front: {
  34163. height: math.unit(5 + 2/12, "feet"),
  34164. weight: math.unit(120, "lb"),
  34165. name: "Front",
  34166. image: {
  34167. source: "./media/characters/timber/front.svg",
  34168. extra: 2814/2705,
  34169. bottom: 181/2995
  34170. }
  34171. },
  34172. },
  34173. [
  34174. {
  34175. name: "Normal",
  34176. height: math.unit(5 + 2/12, "feet"),
  34177. default: true
  34178. },
  34179. ]
  34180. ))
  34181. characterMakers.push(() => makeCharacter(
  34182. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34183. {
  34184. front: {
  34185. height: math.unit(9, "feet"),
  34186. name: "Front",
  34187. image: {
  34188. source: "./media/characters/nicki/front.svg",
  34189. extra: 1240/990,
  34190. bottom: 45/1285
  34191. },
  34192. form: "anthro",
  34193. default: true
  34194. },
  34195. side: {
  34196. height: math.unit(9, "feet"),
  34197. name: "Side",
  34198. image: {
  34199. source: "./media/characters/nicki/side.svg",
  34200. extra: 1047/973,
  34201. bottom: 61/1108
  34202. },
  34203. form: "anthro"
  34204. },
  34205. back: {
  34206. height: math.unit(9, "feet"),
  34207. name: "Back",
  34208. image: {
  34209. source: "./media/characters/nicki/back.svg",
  34210. extra: 1006/965,
  34211. bottom: 39/1045
  34212. },
  34213. form: "anthro"
  34214. },
  34215. taur: {
  34216. height: math.unit(15, "feet"),
  34217. name: "Taur",
  34218. image: {
  34219. source: "./media/characters/nicki/taur.svg",
  34220. extra: 1592/1347,
  34221. bottom: 0/1592
  34222. },
  34223. form: "taur",
  34224. default: true
  34225. },
  34226. },
  34227. [
  34228. {
  34229. name: "Normal",
  34230. height: math.unit(9, "feet"),
  34231. form: "anthro",
  34232. default: true
  34233. },
  34234. {
  34235. name: "Normal",
  34236. height: math.unit(15, "feet"),
  34237. form: "taur",
  34238. default: true
  34239. }
  34240. ],
  34241. {
  34242. "anthro": {
  34243. name: "Anthro",
  34244. default: true
  34245. },
  34246. "taur": {
  34247. name: "Taur"
  34248. }
  34249. }
  34250. ))
  34251. characterMakers.push(() => makeCharacter(
  34252. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34253. {
  34254. front: {
  34255. height: math.unit(7 + 10/12, "feet"),
  34256. weight: math.unit(3.5, "tons"),
  34257. name: "Front",
  34258. image: {
  34259. source: "./media/characters/lee/front.svg",
  34260. extra: 1773/1615,
  34261. bottom: 86/1859
  34262. }
  34263. },
  34264. hand: {
  34265. height: math.unit(1.78, "feet"),
  34266. name: "Hand",
  34267. image: {
  34268. source: "./media/characters/lee/hand.svg"
  34269. }
  34270. },
  34271. maw: {
  34272. height: math.unit(1.18, "feet"),
  34273. name: "Maw",
  34274. image: {
  34275. source: "./media/characters/lee/maw.svg"
  34276. }
  34277. },
  34278. },
  34279. [
  34280. {
  34281. name: "Normal",
  34282. height: math.unit(7 + 10/12, "feet"),
  34283. default: true
  34284. },
  34285. ]
  34286. ))
  34287. characterMakers.push(() => makeCharacter(
  34288. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34289. {
  34290. front: {
  34291. height: math.unit(9, "feet"),
  34292. name: "Front",
  34293. image: {
  34294. source: "./media/characters/guti/front.svg",
  34295. extra: 4551/4355,
  34296. bottom: 123/4674
  34297. }
  34298. },
  34299. tongue: {
  34300. height: math.unit(1, "feet"),
  34301. name: "Tongue",
  34302. image: {
  34303. source: "./media/characters/guti/tongue.svg"
  34304. }
  34305. },
  34306. paw: {
  34307. height: math.unit(1.18, "feet"),
  34308. name: "Paw",
  34309. image: {
  34310. source: "./media/characters/guti/paw.svg"
  34311. }
  34312. },
  34313. },
  34314. [
  34315. {
  34316. name: "Normal",
  34317. height: math.unit(9, "feet"),
  34318. default: true
  34319. },
  34320. ]
  34321. ))
  34322. characterMakers.push(() => makeCharacter(
  34323. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34324. {
  34325. side: {
  34326. height: math.unit(5, "meters"),
  34327. name: "Side",
  34328. image: {
  34329. source: "./media/characters/vesper/side.svg",
  34330. extra: 1605/1518,
  34331. bottom: 0/1605
  34332. }
  34333. },
  34334. },
  34335. [
  34336. {
  34337. name: "Small",
  34338. height: math.unit(5, "meters")
  34339. },
  34340. {
  34341. name: "Sage",
  34342. height: math.unit(100, "meters"),
  34343. default: true
  34344. },
  34345. {
  34346. name: "Fun Size",
  34347. height: math.unit(600, "meters")
  34348. },
  34349. {
  34350. name: "Goddess",
  34351. height: math.unit(20000, "km")
  34352. },
  34353. {
  34354. name: "Maximum",
  34355. height: math.unit(5, "galaxies")
  34356. },
  34357. ]
  34358. ))
  34359. characterMakers.push(() => makeCharacter(
  34360. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34361. {
  34362. front: {
  34363. height: math.unit(6 + 3/12, "feet"),
  34364. weight: math.unit(190, "lb"),
  34365. name: "Front",
  34366. image: {
  34367. source: "./media/characters/gawain/front.svg",
  34368. extra: 2222/2139,
  34369. bottom: 90/2312
  34370. }
  34371. },
  34372. back: {
  34373. height: math.unit(6 + 3/12, "feet"),
  34374. weight: math.unit(190, "lb"),
  34375. name: "Back",
  34376. image: {
  34377. source: "./media/characters/gawain/back.svg",
  34378. extra: 2199/2111,
  34379. bottom: 73/2272
  34380. }
  34381. },
  34382. },
  34383. [
  34384. {
  34385. name: "Normal",
  34386. height: math.unit(6 + 3/12, "feet"),
  34387. default: true
  34388. },
  34389. ]
  34390. ))
  34391. characterMakers.push(() => makeCharacter(
  34392. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34393. {
  34394. side: {
  34395. height: math.unit(3.5, "meters"),
  34396. weight: math.unit(16000, "lb"),
  34397. name: "Side",
  34398. image: {
  34399. source: "./media/characters/dascalti/side.svg",
  34400. extra: 392/273,
  34401. bottom: 47/439
  34402. }
  34403. },
  34404. breath: {
  34405. height: math.unit(7.4, "feet"),
  34406. name: "Breath",
  34407. image: {
  34408. source: "./media/characters/dascalti/breath.svg"
  34409. }
  34410. },
  34411. fed: {
  34412. height: math.unit(3.6, "meters"),
  34413. weight: math.unit(16000, "lb"),
  34414. name: "Fed",
  34415. image: {
  34416. source: "./media/characters/dascalti/fed.svg",
  34417. extra: 1419/820,
  34418. bottom: 95/1514
  34419. }
  34420. },
  34421. },
  34422. [
  34423. {
  34424. name: "Normal",
  34425. height: math.unit(3.5, "meters"),
  34426. default: true
  34427. },
  34428. ]
  34429. ))
  34430. characterMakers.push(() => makeCharacter(
  34431. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34432. {
  34433. front: {
  34434. height: math.unit(3 + 5/12, "feet"),
  34435. name: "Front",
  34436. image: {
  34437. source: "./media/characters/mauve/front.svg",
  34438. extra: 1126/1033,
  34439. bottom: 65/1191
  34440. }
  34441. },
  34442. side: {
  34443. height: math.unit(3 + 5/12, "feet"),
  34444. name: "Side",
  34445. image: {
  34446. source: "./media/characters/mauve/side.svg",
  34447. extra: 1089/1001,
  34448. bottom: 29/1118
  34449. }
  34450. },
  34451. back: {
  34452. height: math.unit(3 + 5/12, "feet"),
  34453. name: "Back",
  34454. image: {
  34455. source: "./media/characters/mauve/back.svg",
  34456. extra: 1173/1053,
  34457. bottom: 109/1282
  34458. }
  34459. },
  34460. },
  34461. [
  34462. {
  34463. name: "Normal",
  34464. height: math.unit(3 + 5/12, "feet"),
  34465. default: true
  34466. },
  34467. ]
  34468. ))
  34469. characterMakers.push(() => makeCharacter(
  34470. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34471. {
  34472. front: {
  34473. height: math.unit(6 + 3/12, "feet"),
  34474. weight: math.unit(430, "lb"),
  34475. name: "Front",
  34476. image: {
  34477. source: "./media/characters/carlos/front.svg",
  34478. extra: 1964/1913,
  34479. bottom: 70/2034
  34480. }
  34481. },
  34482. },
  34483. [
  34484. {
  34485. name: "Normal",
  34486. height: math.unit(6 + 3/12, "feet"),
  34487. default: true
  34488. },
  34489. ]
  34490. ))
  34491. characterMakers.push(() => makeCharacter(
  34492. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34493. {
  34494. back: {
  34495. height: math.unit(5 + 10/12, "feet"),
  34496. weight: math.unit(200, "lb"),
  34497. name: "Back",
  34498. image: {
  34499. source: "./media/characters/jax/back.svg",
  34500. extra: 764/739,
  34501. bottom: 25/789
  34502. }
  34503. },
  34504. },
  34505. [
  34506. {
  34507. name: "Normal",
  34508. height: math.unit(5 + 10/12, "feet"),
  34509. default: true
  34510. },
  34511. ]
  34512. ))
  34513. characterMakers.push(() => makeCharacter(
  34514. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34515. {
  34516. front: {
  34517. height: math.unit(8, "feet"),
  34518. weight: math.unit(250, "lb"),
  34519. name: "Front",
  34520. image: {
  34521. source: "./media/characters/eikthynir/front.svg",
  34522. extra: 1332/1166,
  34523. bottom: 82/1414
  34524. }
  34525. },
  34526. back: {
  34527. height: math.unit(8, "feet"),
  34528. weight: math.unit(250, "lb"),
  34529. name: "Back",
  34530. image: {
  34531. source: "./media/characters/eikthynir/back.svg",
  34532. extra: 1342/1190,
  34533. bottom: 19/1361
  34534. }
  34535. },
  34536. dick: {
  34537. height: math.unit(2.35, "feet"),
  34538. name: "Dick",
  34539. image: {
  34540. source: "./media/characters/eikthynir/dick.svg"
  34541. }
  34542. },
  34543. },
  34544. [
  34545. {
  34546. name: "Normal",
  34547. height: math.unit(8, "feet"),
  34548. default: true
  34549. },
  34550. ]
  34551. ))
  34552. characterMakers.push(() => makeCharacter(
  34553. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34554. {
  34555. front: {
  34556. height: math.unit(99, "meters"),
  34557. weight: math.unit(13000, "tons"),
  34558. name: "Front",
  34559. image: {
  34560. source: "./media/characters/zlmos/front.svg",
  34561. extra: 2202/1992,
  34562. bottom: 315/2517
  34563. }
  34564. },
  34565. },
  34566. [
  34567. {
  34568. name: "Macro",
  34569. height: math.unit(99, "meters"),
  34570. default: true
  34571. },
  34572. ]
  34573. ))
  34574. characterMakers.push(() => makeCharacter(
  34575. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34576. {
  34577. front: {
  34578. height: math.unit(6 + 5/12, "feet"),
  34579. name: "Front",
  34580. image: {
  34581. source: "./media/characters/purri/front.svg",
  34582. extra: 1698/1610,
  34583. bottom: 32/1730
  34584. }
  34585. },
  34586. frontAlt: {
  34587. height: math.unit(6 + 5/12, "feet"),
  34588. name: "Front (Alt)",
  34589. image: {
  34590. source: "./media/characters/purri/front-alt.svg",
  34591. extra: 450/420,
  34592. bottom: 26/476
  34593. }
  34594. },
  34595. boots: {
  34596. height: math.unit(5.5, "feet"),
  34597. name: "Boots",
  34598. image: {
  34599. source: "./media/characters/purri/boots.svg",
  34600. extra: 905/853,
  34601. bottom: 18/923
  34602. },
  34603. extraAttributes: {
  34604. "shoeSize": {
  34605. name: "Shoe Size",
  34606. power: 1,
  34607. type: "length",
  34608. base: math.unit(12, "ShoeSizeMensUS")
  34609. },
  34610. "platformHeight": {
  34611. name: "Platform Height",
  34612. power: 1,
  34613. type: "length",
  34614. base: math.unit(2, "inches")
  34615. },
  34616. }
  34617. },
  34618. lying: {
  34619. height: math.unit(2, "feet"),
  34620. name: "Lying",
  34621. image: {
  34622. source: "./media/characters/purri/lying.svg",
  34623. extra: 940/843,
  34624. bottom: 146/1086
  34625. }
  34626. },
  34627. devious: {
  34628. height: math.unit(1.77, "feet"),
  34629. name: "Devious",
  34630. image: {
  34631. source: "./media/characters/purri/devious.svg",
  34632. extra: 1440/1155,
  34633. bottom: 147/1587
  34634. }
  34635. },
  34636. bean: {
  34637. height: math.unit(1.94, "feet"),
  34638. name: "Bean",
  34639. image: {
  34640. source: "./media/characters/purri/bean.svg"
  34641. }
  34642. },
  34643. },
  34644. [
  34645. {
  34646. name: "Micro",
  34647. height: math.unit(1, "mm")
  34648. },
  34649. {
  34650. name: "Normal",
  34651. height: math.unit(6 + 5/12, "feet"),
  34652. default: true
  34653. },
  34654. {
  34655. name: "Macro :3c",
  34656. height: math.unit(2, "miles")
  34657. },
  34658. ]
  34659. ))
  34660. characterMakers.push(() => makeCharacter(
  34661. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34662. {
  34663. front: {
  34664. height: math.unit(6 + 2/12, "feet"),
  34665. weight: math.unit(250, "lb"),
  34666. name: "Front",
  34667. image: {
  34668. source: "./media/characters/moonlight/front.svg",
  34669. extra: 1044/908,
  34670. bottom: 56/1100
  34671. }
  34672. },
  34673. feral: {
  34674. height: math.unit(3 + 1/12, "feet"),
  34675. weight: math.unit(50, "kg"),
  34676. name: "Feral",
  34677. image: {
  34678. source: "./media/characters/moonlight/feral.svg",
  34679. extra: 3705/2791,
  34680. bottom: 145/3850
  34681. }
  34682. },
  34683. paw: {
  34684. height: math.unit(1, "feet"),
  34685. name: "Paw",
  34686. image: {
  34687. source: "./media/characters/moonlight/paw.svg"
  34688. }
  34689. },
  34690. paws: {
  34691. height: math.unit(0.98, "feet"),
  34692. name: "Paws",
  34693. image: {
  34694. source: "./media/characters/moonlight/paws.svg",
  34695. extra: 939/939,
  34696. bottom: 50/989
  34697. }
  34698. },
  34699. mouth: {
  34700. height: math.unit(0.48, "feet"),
  34701. name: "Mouth",
  34702. image: {
  34703. source: "./media/characters/moonlight/mouth.svg"
  34704. }
  34705. },
  34706. dick: {
  34707. height: math.unit(1.46, "feet"),
  34708. name: "Dick",
  34709. image: {
  34710. source: "./media/characters/moonlight/dick.svg"
  34711. }
  34712. },
  34713. },
  34714. [
  34715. {
  34716. name: "Normal",
  34717. height: math.unit(6 + 2/12, "feet"),
  34718. default: true
  34719. },
  34720. {
  34721. name: "Macro",
  34722. height: math.unit(300, "feet")
  34723. },
  34724. {
  34725. name: "Macro+",
  34726. height: math.unit(1, "mile")
  34727. },
  34728. {
  34729. name: "Mt. Moon",
  34730. height: math.unit(5, "miles")
  34731. },
  34732. {
  34733. name: "Megamacro",
  34734. height: math.unit(15, "miles")
  34735. },
  34736. ]
  34737. ))
  34738. characterMakers.push(() => makeCharacter(
  34739. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34740. {
  34741. back: {
  34742. height: math.unit(6, "feet"),
  34743. weight: math.unit(150, "lb"),
  34744. name: "Back",
  34745. image: {
  34746. source: "./media/characters/sylen/back.svg",
  34747. extra: 1335/1273,
  34748. bottom: 107/1442
  34749. }
  34750. },
  34751. },
  34752. [
  34753. {
  34754. name: "Normal",
  34755. height: math.unit(5 + 5/12, "feet")
  34756. },
  34757. {
  34758. name: "Megamacro",
  34759. height: math.unit(3, "miles"),
  34760. default: true
  34761. },
  34762. ]
  34763. ))
  34764. characterMakers.push(() => makeCharacter(
  34765. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34766. {
  34767. front: {
  34768. height: math.unit(6, "feet"),
  34769. weight: math.unit(190, "lb"),
  34770. name: "Front",
  34771. image: {
  34772. source: "./media/characters/huttser/front.svg",
  34773. extra: 1152/1058,
  34774. bottom: 23/1175
  34775. }
  34776. },
  34777. side: {
  34778. height: math.unit(6, "feet"),
  34779. weight: math.unit(190, "lb"),
  34780. name: "Side",
  34781. image: {
  34782. source: "./media/characters/huttser/side.svg",
  34783. extra: 1174/1065,
  34784. bottom: 18/1192
  34785. }
  34786. },
  34787. back: {
  34788. height: math.unit(6, "feet"),
  34789. weight: math.unit(190, "lb"),
  34790. name: "Back",
  34791. image: {
  34792. source: "./media/characters/huttser/back.svg",
  34793. extra: 1158/1056,
  34794. bottom: 12/1170
  34795. }
  34796. },
  34797. },
  34798. [
  34799. ]
  34800. ))
  34801. characterMakers.push(() => makeCharacter(
  34802. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34803. {
  34804. side: {
  34805. height: math.unit(12 + 9/12, "feet"),
  34806. weight: math.unit(15000, "lb"),
  34807. name: "Side",
  34808. image: {
  34809. source: "./media/characters/faan/side.svg",
  34810. extra: 2747/2697,
  34811. bottom: 0/2747
  34812. }
  34813. },
  34814. front: {
  34815. height: math.unit(12 + 9/12, "feet"),
  34816. weight: math.unit(15000, "lb"),
  34817. name: "Front",
  34818. image: {
  34819. source: "./media/characters/faan/front.svg",
  34820. extra: 607/571,
  34821. bottom: 24/631
  34822. }
  34823. },
  34824. head: {
  34825. height: math.unit(2.85, "feet"),
  34826. name: "Head",
  34827. image: {
  34828. source: "./media/characters/faan/head.svg"
  34829. }
  34830. },
  34831. headAlt: {
  34832. height: math.unit(3.13, "feet"),
  34833. name: "Head-alt",
  34834. image: {
  34835. source: "./media/characters/faan/head-alt.svg"
  34836. }
  34837. },
  34838. },
  34839. [
  34840. {
  34841. name: "Normal",
  34842. height: math.unit(12 + 9/12, "feet"),
  34843. default: true
  34844. },
  34845. ]
  34846. ))
  34847. characterMakers.push(() => makeCharacter(
  34848. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34849. {
  34850. front: {
  34851. height: math.unit(6, "feet"),
  34852. weight: math.unit(300, "lb"),
  34853. name: "Front",
  34854. image: {
  34855. source: "./media/characters/tanio/front.svg",
  34856. extra: 711/673,
  34857. bottom: 25/736
  34858. }
  34859. },
  34860. },
  34861. [
  34862. {
  34863. name: "Normal",
  34864. height: math.unit(6, "feet"),
  34865. default: true
  34866. },
  34867. ]
  34868. ))
  34869. characterMakers.push(() => makeCharacter(
  34870. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34871. {
  34872. front: {
  34873. height: math.unit(3, "inches"),
  34874. name: "Front",
  34875. image: {
  34876. source: "./media/characters/noboru/front.svg",
  34877. extra: 1039/932,
  34878. bottom: 18/1057
  34879. }
  34880. },
  34881. },
  34882. [
  34883. {
  34884. name: "Micro",
  34885. height: math.unit(3, "inches"),
  34886. default: true
  34887. },
  34888. ]
  34889. ))
  34890. characterMakers.push(() => makeCharacter(
  34891. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34892. {
  34893. front: {
  34894. height: math.unit(1.85, "meters"),
  34895. weight: math.unit(80, "kg"),
  34896. name: "Front",
  34897. image: {
  34898. source: "./media/characters/daniel-barrett/front.svg",
  34899. extra: 355/337,
  34900. bottom: 9/364
  34901. }
  34902. },
  34903. },
  34904. [
  34905. {
  34906. name: "Pico",
  34907. height: math.unit(0.0433, "mm")
  34908. },
  34909. {
  34910. name: "Nano",
  34911. height: math.unit(1.5, "mm")
  34912. },
  34913. {
  34914. name: "Micro",
  34915. height: math.unit(5.3, "cm"),
  34916. default: true
  34917. },
  34918. {
  34919. name: "Normal",
  34920. height: math.unit(1.85, "meters")
  34921. },
  34922. {
  34923. name: "Macro",
  34924. height: math.unit(64.7, "meters")
  34925. },
  34926. {
  34927. name: "Megamacro",
  34928. height: math.unit(2.26, "km")
  34929. },
  34930. {
  34931. name: "Gigamacro",
  34932. height: math.unit(79, "km")
  34933. },
  34934. {
  34935. name: "Teramacro",
  34936. height: math.unit(2765, "km")
  34937. },
  34938. {
  34939. name: "Petamacro",
  34940. height: math.unit(96678, "km")
  34941. },
  34942. ]
  34943. ))
  34944. characterMakers.push(() => makeCharacter(
  34945. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34946. {
  34947. front: {
  34948. height: math.unit(30, "meters"),
  34949. weight: math.unit(400, "tons"),
  34950. name: "Front",
  34951. image: {
  34952. source: "./media/characters/zeel/front.svg",
  34953. extra: 2599/2599,
  34954. bottom: 226/2825
  34955. }
  34956. },
  34957. },
  34958. [
  34959. {
  34960. name: "Macro",
  34961. height: math.unit(30, "meters"),
  34962. default: true
  34963. },
  34964. ]
  34965. ))
  34966. characterMakers.push(() => makeCharacter(
  34967. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34968. {
  34969. front: {
  34970. height: math.unit(6 + 7/12, "feet"),
  34971. weight: math.unit(210, "lb"),
  34972. name: "Front",
  34973. image: {
  34974. source: "./media/characters/tarn/front.svg",
  34975. extra: 3517/3220,
  34976. bottom: 91/3608
  34977. }
  34978. },
  34979. back: {
  34980. height: math.unit(6 + 7/12, "feet"),
  34981. weight: math.unit(210, "lb"),
  34982. name: "Back",
  34983. image: {
  34984. source: "./media/characters/tarn/back.svg",
  34985. extra: 3566/3241,
  34986. bottom: 34/3600
  34987. }
  34988. },
  34989. dick: {
  34990. height: math.unit(1.65, "feet"),
  34991. name: "Dick",
  34992. image: {
  34993. source: "./media/characters/tarn/dick.svg"
  34994. }
  34995. },
  34996. paw: {
  34997. height: math.unit(1.80, "feet"),
  34998. name: "Paw",
  34999. image: {
  35000. source: "./media/characters/tarn/paw.svg"
  35001. }
  35002. },
  35003. tongue: {
  35004. height: math.unit(0.97, "feet"),
  35005. name: "Tongue",
  35006. image: {
  35007. source: "./media/characters/tarn/tongue.svg"
  35008. }
  35009. },
  35010. },
  35011. [
  35012. {
  35013. name: "Micro",
  35014. height: math.unit(4, "inches")
  35015. },
  35016. {
  35017. name: "Normal",
  35018. height: math.unit(6 + 7/12, "feet"),
  35019. default: true
  35020. },
  35021. {
  35022. name: "Macro",
  35023. height: math.unit(300, "feet")
  35024. },
  35025. ]
  35026. ))
  35027. characterMakers.push(() => makeCharacter(
  35028. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  35029. {
  35030. front: {
  35031. height: math.unit(5 + 7/12, "feet"),
  35032. weight: math.unit(80, "kg"),
  35033. name: "Front",
  35034. image: {
  35035. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  35036. extra: 3023/2865,
  35037. bottom: 33/3056
  35038. }
  35039. },
  35040. back: {
  35041. height: math.unit(5 + 7/12, "feet"),
  35042. weight: math.unit(80, "kg"),
  35043. name: "Back",
  35044. image: {
  35045. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  35046. extra: 3020/2886,
  35047. bottom: 30/3050
  35048. }
  35049. },
  35050. dick: {
  35051. height: math.unit(0.98, "feet"),
  35052. name: "Dick",
  35053. image: {
  35054. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35055. }
  35056. },
  35057. anatomy: {
  35058. height: math.unit(2.86, "feet"),
  35059. name: "Anatomy",
  35060. image: {
  35061. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35062. }
  35063. },
  35064. },
  35065. [
  35066. {
  35067. name: "Really Small",
  35068. height: math.unit(2, "inches")
  35069. },
  35070. {
  35071. name: "Micro",
  35072. height: math.unit(5.583, "inches")
  35073. },
  35074. {
  35075. name: "Normal",
  35076. height: math.unit(5 + 7/12, "feet"),
  35077. default: true
  35078. },
  35079. {
  35080. name: "Macro",
  35081. height: math.unit(67, "feet")
  35082. },
  35083. {
  35084. name: "Megamacro",
  35085. height: math.unit(134, "feet")
  35086. },
  35087. ]
  35088. ))
  35089. characterMakers.push(() => makeCharacter(
  35090. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35091. {
  35092. front: {
  35093. height: math.unit(9, "feet"),
  35094. weight: math.unit(120, "lb"),
  35095. name: "Front",
  35096. image: {
  35097. source: "./media/characters/sally/front.svg",
  35098. extra: 1506/1349,
  35099. bottom: 66/1572
  35100. }
  35101. },
  35102. },
  35103. [
  35104. {
  35105. name: "Normal",
  35106. height: math.unit(9, "feet"),
  35107. default: true
  35108. },
  35109. ]
  35110. ))
  35111. characterMakers.push(() => makeCharacter(
  35112. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35113. {
  35114. front: {
  35115. height: math.unit(8, "feet"),
  35116. weight: math.unit(900, "lb"),
  35117. name: "Front",
  35118. image: {
  35119. source: "./media/characters/owen/front.svg",
  35120. extra: 1761/1657,
  35121. bottom: 74/1835
  35122. }
  35123. },
  35124. side: {
  35125. height: math.unit(8, "feet"),
  35126. weight: math.unit(900, "lb"),
  35127. name: "Side",
  35128. image: {
  35129. source: "./media/characters/owen/side.svg",
  35130. extra: 1797/1734,
  35131. bottom: 30/1827
  35132. }
  35133. },
  35134. back: {
  35135. height: math.unit(8, "feet"),
  35136. weight: math.unit(900, "lb"),
  35137. name: "Back",
  35138. image: {
  35139. source: "./media/characters/owen/back.svg",
  35140. extra: 1796/1706,
  35141. bottom: 59/1855
  35142. }
  35143. },
  35144. maw: {
  35145. height: math.unit(1.76, "feet"),
  35146. name: "Maw",
  35147. image: {
  35148. source: "./media/characters/owen/maw.svg"
  35149. }
  35150. },
  35151. },
  35152. [
  35153. {
  35154. name: "Normal",
  35155. height: math.unit(8, "feet"),
  35156. default: true
  35157. },
  35158. ]
  35159. ))
  35160. characterMakers.push(() => makeCharacter(
  35161. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35162. {
  35163. front: {
  35164. height: math.unit(4, "feet"),
  35165. weight: math.unit(400, "lb"),
  35166. name: "Front",
  35167. image: {
  35168. source: "./media/characters/ryth/front.svg",
  35169. extra: 1920/1748,
  35170. bottom: 42/1962
  35171. }
  35172. },
  35173. back: {
  35174. height: math.unit(4, "feet"),
  35175. weight: math.unit(400, "lb"),
  35176. name: "Back",
  35177. image: {
  35178. source: "./media/characters/ryth/back.svg",
  35179. extra: 1897/1690,
  35180. bottom: 89/1986
  35181. }
  35182. },
  35183. mouth: {
  35184. height: math.unit(1.39, "feet"),
  35185. name: "Mouth",
  35186. image: {
  35187. source: "./media/characters/ryth/mouth.svg"
  35188. }
  35189. },
  35190. tailmaw: {
  35191. height: math.unit(1.23, "feet"),
  35192. name: "Tailmaw",
  35193. image: {
  35194. source: "./media/characters/ryth/tailmaw.svg"
  35195. }
  35196. },
  35197. goia: {
  35198. height: math.unit(4, "meters"),
  35199. weight: math.unit(10800, "lb"),
  35200. name: "Goia",
  35201. image: {
  35202. source: "./media/characters/ryth/goia.svg",
  35203. extra: 745/640,
  35204. bottom: 107/852
  35205. }
  35206. },
  35207. goiaFront: {
  35208. height: math.unit(4, "meters"),
  35209. weight: math.unit(10800, "lb"),
  35210. name: "Goia (Front)",
  35211. image: {
  35212. source: "./media/characters/ryth/goia-front.svg",
  35213. extra: 750/586,
  35214. bottom: 114/864
  35215. }
  35216. },
  35217. goiaMaw: {
  35218. height: math.unit(5.55, "feet"),
  35219. name: "Goia Maw",
  35220. image: {
  35221. source: "./media/characters/ryth/goia-maw.svg"
  35222. }
  35223. },
  35224. goiaForepaw: {
  35225. height: math.unit(3.5, "feet"),
  35226. name: "Goia Forepaw",
  35227. image: {
  35228. source: "./media/characters/ryth/goia-forepaw.svg"
  35229. }
  35230. },
  35231. goiaHindpaw: {
  35232. height: math.unit(5.55, "feet"),
  35233. name: "Goia Hindpaw",
  35234. image: {
  35235. source: "./media/characters/ryth/goia-hindpaw.svg"
  35236. }
  35237. },
  35238. },
  35239. [
  35240. {
  35241. name: "Normal",
  35242. height: math.unit(4, "feet"),
  35243. default: true
  35244. },
  35245. ]
  35246. ))
  35247. characterMakers.push(() => makeCharacter(
  35248. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35249. {
  35250. front: {
  35251. height: math.unit(7, "feet"),
  35252. weight: math.unit(180, "lb"),
  35253. name: "Front",
  35254. image: {
  35255. source: "./media/characters/necrolance/front.svg",
  35256. extra: 1062/947,
  35257. bottom: 41/1103
  35258. }
  35259. },
  35260. back: {
  35261. height: math.unit(7, "feet"),
  35262. weight: math.unit(180, "lb"),
  35263. name: "Back",
  35264. image: {
  35265. source: "./media/characters/necrolance/back.svg",
  35266. extra: 1045/984,
  35267. bottom: 14/1059
  35268. }
  35269. },
  35270. wing: {
  35271. height: math.unit(2.67, "feet"),
  35272. name: "Wing",
  35273. image: {
  35274. source: "./media/characters/necrolance/wing.svg"
  35275. }
  35276. },
  35277. },
  35278. [
  35279. {
  35280. name: "Normal",
  35281. height: math.unit(7, "feet"),
  35282. default: true
  35283. },
  35284. ]
  35285. ))
  35286. characterMakers.push(() => makeCharacter(
  35287. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35288. {
  35289. front: {
  35290. height: math.unit(76, "meters"),
  35291. weight: math.unit(30000, "tons"),
  35292. name: "Front",
  35293. image: {
  35294. source: "./media/characters/tyler/front.svg",
  35295. extra: 1640/1640,
  35296. bottom: 114/1754
  35297. }
  35298. },
  35299. },
  35300. [
  35301. {
  35302. name: "Macro",
  35303. height: math.unit(76, "meters"),
  35304. default: true
  35305. },
  35306. ]
  35307. ))
  35308. characterMakers.push(() => makeCharacter(
  35309. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35310. {
  35311. front: {
  35312. height: math.unit(4 + 11/12, "feet"),
  35313. weight: math.unit(132, "lb"),
  35314. name: "Front",
  35315. image: {
  35316. source: "./media/characters/icey/front.svg",
  35317. extra: 2750/2550,
  35318. bottom: 33/2783
  35319. }
  35320. },
  35321. back: {
  35322. height: math.unit(4 + 11/12, "feet"),
  35323. weight: math.unit(132, "lb"),
  35324. name: "Back",
  35325. image: {
  35326. source: "./media/characters/icey/back.svg",
  35327. extra: 2624/2481,
  35328. bottom: 35/2659
  35329. }
  35330. },
  35331. },
  35332. [
  35333. {
  35334. name: "Normal",
  35335. height: math.unit(4 + 11/12, "feet"),
  35336. default: true
  35337. },
  35338. ]
  35339. ))
  35340. characterMakers.push(() => makeCharacter(
  35341. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35342. {
  35343. front: {
  35344. height: math.unit(100, "feet"),
  35345. weight: math.unit(0, "lb"),
  35346. name: "Front",
  35347. image: {
  35348. source: "./media/characters/smile/front.svg",
  35349. extra: 2983/2912,
  35350. bottom: 162/3145
  35351. }
  35352. },
  35353. back: {
  35354. height: math.unit(100, "feet"),
  35355. weight: math.unit(0, "lb"),
  35356. name: "Back",
  35357. image: {
  35358. source: "./media/characters/smile/back.svg",
  35359. extra: 3143/3031,
  35360. bottom: 91/3234
  35361. }
  35362. },
  35363. head: {
  35364. height: math.unit(26.3, "feet"),
  35365. weight: math.unit(0, "lb"),
  35366. name: "Head",
  35367. image: {
  35368. source: "./media/characters/smile/head.svg"
  35369. }
  35370. },
  35371. collar: {
  35372. height: math.unit(5.3, "feet"),
  35373. weight: math.unit(0, "lb"),
  35374. name: "Collar",
  35375. image: {
  35376. source: "./media/characters/smile/collar.svg"
  35377. }
  35378. },
  35379. },
  35380. [
  35381. {
  35382. name: "Macro",
  35383. height: math.unit(100, "feet"),
  35384. default: true
  35385. },
  35386. ]
  35387. ))
  35388. characterMakers.push(() => makeCharacter(
  35389. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35390. {
  35391. dragon: {
  35392. height: math.unit(26, "feet"),
  35393. weight: math.unit(36, "tons"),
  35394. name: "Dragon",
  35395. image: {
  35396. source: "./media/characters/arimphae/dragon.svg",
  35397. extra: 1574/983,
  35398. bottom: 357/1931
  35399. }
  35400. },
  35401. drake: {
  35402. height: math.unit(9, "feet"),
  35403. weight: math.unit(1.5, "tons"),
  35404. name: "Drake",
  35405. image: {
  35406. source: "./media/characters/arimphae/drake.svg",
  35407. extra: 1120/925,
  35408. bottom: 435/1555
  35409. }
  35410. },
  35411. },
  35412. [
  35413. {
  35414. name: "Small",
  35415. height: math.unit(26*5/9, "feet")
  35416. },
  35417. {
  35418. name: "Normal",
  35419. height: math.unit(26, "feet"),
  35420. default: true
  35421. },
  35422. ]
  35423. ))
  35424. characterMakers.push(() => makeCharacter(
  35425. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35426. {
  35427. front: {
  35428. height: math.unit(8 + 9/12, "feet"),
  35429. name: "Front",
  35430. image: {
  35431. source: "./media/characters/xander/front.svg",
  35432. extra: 1237/974,
  35433. bottom: 94/1331
  35434. }
  35435. },
  35436. },
  35437. [
  35438. {
  35439. name: "Normal",
  35440. height: math.unit(8 + 9/12, "feet"),
  35441. default: true
  35442. },
  35443. {
  35444. name: "Gaze Grabber",
  35445. height: math.unit(13 + 8/12, "feet")
  35446. },
  35447. {
  35448. name: "Jaw Dropper",
  35449. height: math.unit(27, "feet")
  35450. },
  35451. {
  35452. name: "Show Stopper",
  35453. height: math.unit(136, "feet")
  35454. },
  35455. {
  35456. name: "Superstar",
  35457. height: math.unit(1.9e6, "miles")
  35458. },
  35459. ]
  35460. ))
  35461. characterMakers.push(() => makeCharacter(
  35462. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35463. {
  35464. side: {
  35465. height: math.unit(2100, "feet"),
  35466. name: "Side",
  35467. image: {
  35468. source: "./media/characters/osiris/side.svg",
  35469. extra: 1105/939,
  35470. bottom: 167/1272
  35471. }
  35472. },
  35473. },
  35474. [
  35475. {
  35476. name: "Macro",
  35477. height: math.unit(2100, "feet"),
  35478. default: true
  35479. },
  35480. ]
  35481. ))
  35482. characterMakers.push(() => makeCharacter(
  35483. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35484. {
  35485. front: {
  35486. height: math.unit(6 + 8/12, "feet"),
  35487. weight: math.unit(225, "lb"),
  35488. name: "Front",
  35489. image: {
  35490. source: "./media/characters/rhys-londe/front.svg",
  35491. extra: 2258/2141,
  35492. bottom: 188/2446
  35493. }
  35494. },
  35495. back: {
  35496. height: math.unit(6 + 8/12, "feet"),
  35497. weight: math.unit(225, "lb"),
  35498. name: "Back",
  35499. image: {
  35500. source: "./media/characters/rhys-londe/back.svg",
  35501. extra: 2237/2137,
  35502. bottom: 63/2300
  35503. }
  35504. },
  35505. frontNsfw: {
  35506. height: math.unit(6 + 8/12, "feet"),
  35507. weight: math.unit(225, "lb"),
  35508. name: "Front (NSFW)",
  35509. image: {
  35510. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35511. extra: 2258/2141,
  35512. bottom: 188/2446
  35513. }
  35514. },
  35515. backNsfw: {
  35516. height: math.unit(6 + 8/12, "feet"),
  35517. weight: math.unit(225, "lb"),
  35518. name: "Back (NSFW)",
  35519. image: {
  35520. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35521. extra: 2237/2137,
  35522. bottom: 63/2300
  35523. }
  35524. },
  35525. dick: {
  35526. height: math.unit(30, "inches"),
  35527. name: "Dick",
  35528. image: {
  35529. source: "./media/characters/rhys-londe/dick.svg"
  35530. }
  35531. },
  35532. maw: {
  35533. height: math.unit(1.6, "feet"),
  35534. name: "Maw",
  35535. image: {
  35536. source: "./media/characters/rhys-londe/maw.svg"
  35537. }
  35538. },
  35539. },
  35540. [
  35541. {
  35542. name: "Normal",
  35543. height: math.unit(6 + 8/12, "feet"),
  35544. default: true
  35545. },
  35546. ]
  35547. ))
  35548. characterMakers.push(() => makeCharacter(
  35549. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35550. {
  35551. front: {
  35552. height: math.unit(3 + 10/12, "feet"),
  35553. weight: math.unit(90, "lb"),
  35554. name: "Front",
  35555. image: {
  35556. source: "./media/characters/taivas-ensim/front.svg",
  35557. extra: 1327/1216,
  35558. bottom: 96/1423
  35559. }
  35560. },
  35561. back: {
  35562. height: math.unit(3 + 10/12, "feet"),
  35563. weight: math.unit(90, "lb"),
  35564. name: "Back",
  35565. image: {
  35566. source: "./media/characters/taivas-ensim/back.svg",
  35567. extra: 1355/1247,
  35568. bottom: 11/1366
  35569. }
  35570. },
  35571. frontNsfw: {
  35572. height: math.unit(3 + 10/12, "feet"),
  35573. weight: math.unit(90, "lb"),
  35574. name: "Front (NSFW)",
  35575. image: {
  35576. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35577. extra: 1327/1216,
  35578. bottom: 96/1423
  35579. }
  35580. },
  35581. backNsfw: {
  35582. height: math.unit(3 + 10/12, "feet"),
  35583. weight: math.unit(90, "lb"),
  35584. name: "Back (NSFW)",
  35585. image: {
  35586. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35587. extra: 1355/1247,
  35588. bottom: 11/1366
  35589. }
  35590. },
  35591. },
  35592. [
  35593. {
  35594. name: "Normal",
  35595. height: math.unit(3 + 10/12, "feet"),
  35596. default: true
  35597. },
  35598. ]
  35599. ))
  35600. characterMakers.push(() => makeCharacter(
  35601. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35602. {
  35603. front: {
  35604. height: math.unit(9 + 6/12, "feet"),
  35605. weight: math.unit(940, "lb"),
  35606. name: "Front",
  35607. image: {
  35608. source: "./media/characters/byliss/front.svg",
  35609. extra: 1327/1290,
  35610. bottom: 82/1409
  35611. }
  35612. },
  35613. back: {
  35614. height: math.unit(9 + 6/12, "feet"),
  35615. weight: math.unit(940, "lb"),
  35616. name: "Back",
  35617. image: {
  35618. source: "./media/characters/byliss/back.svg",
  35619. extra: 1376/1349,
  35620. bottom: 9/1385
  35621. }
  35622. },
  35623. frontNsfw: {
  35624. height: math.unit(9 + 6/12, "feet"),
  35625. weight: math.unit(940, "lb"),
  35626. name: "Front (NSFW)",
  35627. image: {
  35628. source: "./media/characters/byliss/front-nsfw.svg",
  35629. extra: 1327/1290,
  35630. bottom: 82/1409
  35631. }
  35632. },
  35633. backNsfw: {
  35634. height: math.unit(9 + 6/12, "feet"),
  35635. weight: math.unit(940, "lb"),
  35636. name: "Back (NSFW)",
  35637. image: {
  35638. source: "./media/characters/byliss/back-nsfw.svg",
  35639. extra: 1376/1349,
  35640. bottom: 9/1385
  35641. }
  35642. },
  35643. },
  35644. [
  35645. {
  35646. name: "Normal",
  35647. height: math.unit(9 + 6/12, "feet"),
  35648. default: true
  35649. },
  35650. ]
  35651. ))
  35652. characterMakers.push(() => makeCharacter(
  35653. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35654. {
  35655. front: {
  35656. height: math.unit(5 + 2/12, "feet"),
  35657. weight: math.unit(200, "lb"),
  35658. name: "Front",
  35659. image: {
  35660. source: "./media/characters/noraly/front.svg",
  35661. extra: 4985/4773,
  35662. bottom: 150/5135
  35663. }
  35664. },
  35665. full: {
  35666. height: math.unit(5 + 2/12, "feet"),
  35667. weight: math.unit(164, "lb"),
  35668. name: "Full",
  35669. image: {
  35670. source: "./media/characters/noraly/full.svg",
  35671. extra: 1114/1059,
  35672. bottom: 35/1149
  35673. }
  35674. },
  35675. fuller: {
  35676. height: math.unit(5 + 2/12, "feet"),
  35677. weight: math.unit(230, "lb"),
  35678. name: "Fuller",
  35679. image: {
  35680. source: "./media/characters/noraly/fuller.svg",
  35681. extra: 1114/1059,
  35682. bottom: 35/1149
  35683. }
  35684. },
  35685. fullest: {
  35686. height: math.unit(5 + 2/12, "feet"),
  35687. weight: math.unit(300, "lb"),
  35688. name: "Fullest",
  35689. image: {
  35690. source: "./media/characters/noraly/fullest.svg",
  35691. extra: 1114/1059,
  35692. bottom: 35/1149
  35693. }
  35694. },
  35695. },
  35696. [
  35697. {
  35698. name: "Normal",
  35699. height: math.unit(5 + 2/12, "feet"),
  35700. default: true
  35701. },
  35702. ]
  35703. ))
  35704. characterMakers.push(() => makeCharacter(
  35705. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35706. {
  35707. front: {
  35708. height: math.unit(5 + 2/12, "feet"),
  35709. weight: math.unit(210, "lb"),
  35710. name: "Front",
  35711. image: {
  35712. source: "./media/characters/pera/front.svg",
  35713. extra: 1560/1531,
  35714. bottom: 165/1725
  35715. }
  35716. },
  35717. back: {
  35718. height: math.unit(5 + 2/12, "feet"),
  35719. weight: math.unit(210, "lb"),
  35720. name: "Back",
  35721. image: {
  35722. source: "./media/characters/pera/back.svg",
  35723. extra: 1523/1493,
  35724. bottom: 152/1675
  35725. }
  35726. },
  35727. dick: {
  35728. height: math.unit(2.4, "feet"),
  35729. name: "Dick",
  35730. image: {
  35731. source: "./media/characters/pera/dick.svg"
  35732. }
  35733. },
  35734. },
  35735. [
  35736. {
  35737. name: "Normal",
  35738. height: math.unit(5 + 2/12, "feet"),
  35739. default: true
  35740. },
  35741. ]
  35742. ))
  35743. characterMakers.push(() => makeCharacter(
  35744. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35745. {
  35746. front: {
  35747. height: math.unit(12, "feet"),
  35748. weight: math.unit(3200, "lb"),
  35749. name: "Front",
  35750. image: {
  35751. source: "./media/characters/julian/front.svg",
  35752. extra: 2962/2701,
  35753. bottom: 184/3146
  35754. }
  35755. },
  35756. maw: {
  35757. height: math.unit(5.35, "feet"),
  35758. name: "Maw",
  35759. image: {
  35760. source: "./media/characters/julian/maw.svg"
  35761. }
  35762. },
  35763. paw: {
  35764. height: math.unit(3.07, "feet"),
  35765. name: "Paw",
  35766. image: {
  35767. source: "./media/characters/julian/paw.svg"
  35768. }
  35769. },
  35770. },
  35771. [
  35772. {
  35773. name: "Default",
  35774. height: math.unit(12, "feet"),
  35775. default: true
  35776. },
  35777. {
  35778. name: "Big",
  35779. height: math.unit(50, "feet")
  35780. },
  35781. {
  35782. name: "Really Big",
  35783. height: math.unit(1, "mile")
  35784. },
  35785. {
  35786. name: "Extremely Big",
  35787. height: math.unit(100, "miles")
  35788. },
  35789. {
  35790. name: "Planet Hugger",
  35791. height: math.unit(200, "megameters")
  35792. },
  35793. {
  35794. name: "Unreasonably Big",
  35795. height: math.unit(1e300, "meters")
  35796. },
  35797. ]
  35798. ))
  35799. characterMakers.push(() => makeCharacter(
  35800. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35801. {
  35802. solgooleo: {
  35803. height: math.unit(4, "meters"),
  35804. weight: math.unit(6000*1.5, "kg"),
  35805. volume: math.unit(6000, "liters"),
  35806. name: "Solgooleo",
  35807. image: {
  35808. source: "./media/characters/pi/solgooleo.svg",
  35809. extra: 388/331,
  35810. bottom: 29/417
  35811. }
  35812. },
  35813. },
  35814. [
  35815. {
  35816. name: "Normal",
  35817. height: math.unit(4, "meters"),
  35818. default: true
  35819. },
  35820. ]
  35821. ))
  35822. characterMakers.push(() => makeCharacter(
  35823. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35824. {
  35825. front: {
  35826. height: math.unit(8, "feet"),
  35827. weight: math.unit(4, "tons"),
  35828. name: "Front",
  35829. image: {
  35830. source: "./media/characters/shaun/front.svg",
  35831. extra: 503/495,
  35832. bottom: 20/523
  35833. }
  35834. },
  35835. back: {
  35836. height: math.unit(8, "feet"),
  35837. weight: math.unit(4, "tons"),
  35838. name: "Back",
  35839. image: {
  35840. source: "./media/characters/shaun/back.svg",
  35841. extra: 487/480,
  35842. bottom: 20/507
  35843. }
  35844. },
  35845. },
  35846. [
  35847. {
  35848. name: "Lorg",
  35849. height: math.unit(8, "feet"),
  35850. default: true
  35851. },
  35852. ]
  35853. ))
  35854. characterMakers.push(() => makeCharacter(
  35855. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35856. {
  35857. frontAnthro: {
  35858. height: math.unit(7, "feet"),
  35859. name: "Front",
  35860. image: {
  35861. source: "./media/characters/sini/front-anthro.svg",
  35862. extra: 726/678,
  35863. bottom: 35/761
  35864. },
  35865. form: "anthro",
  35866. default: true
  35867. },
  35868. backAnthro: {
  35869. height: math.unit(7, "feet"),
  35870. name: "Back",
  35871. image: {
  35872. source: "./media/characters/sini/back-anthro.svg",
  35873. extra: 743/701,
  35874. bottom: 12/755
  35875. },
  35876. form: "anthro",
  35877. },
  35878. frontAnthroNsfw: {
  35879. height: math.unit(7, "feet"),
  35880. name: "Front (NSFW)",
  35881. image: {
  35882. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35883. extra: 726/678,
  35884. bottom: 35/761
  35885. },
  35886. form: "anthro"
  35887. },
  35888. backAnthroNsfw: {
  35889. height: math.unit(7, "feet"),
  35890. name: "Back (NSFW)",
  35891. image: {
  35892. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35893. extra: 743/701,
  35894. bottom: 12/755
  35895. },
  35896. form: "anthro",
  35897. },
  35898. mawAnthro: {
  35899. height: math.unit(2.14, "feet"),
  35900. name: "Maw",
  35901. image: {
  35902. source: "./media/characters/sini/maw-anthro.svg"
  35903. },
  35904. form: "anthro"
  35905. },
  35906. dick: {
  35907. height: math.unit(1.45, "feet"),
  35908. name: "Dick",
  35909. image: {
  35910. source: "./media/characters/sini/dick-anthro.svg"
  35911. },
  35912. form: "anthro"
  35913. },
  35914. feral: {
  35915. height: math.unit(16, "feet"),
  35916. name: "Feral",
  35917. image: {
  35918. source: "./media/characters/sini/feral.svg",
  35919. extra: 814/605,
  35920. bottom: 11/825
  35921. },
  35922. form: "feral",
  35923. default: true
  35924. },
  35925. feralNsfw: {
  35926. height: math.unit(16, "feet"),
  35927. name: "Feral (NSFW)",
  35928. image: {
  35929. source: "./media/characters/sini/feral-nsfw.svg",
  35930. extra: 814/605,
  35931. bottom: 11/825
  35932. },
  35933. form: "feral"
  35934. },
  35935. mawFeral: {
  35936. height: math.unit(5.66, "feet"),
  35937. name: "Maw",
  35938. image: {
  35939. source: "./media/characters/sini/maw-feral.svg"
  35940. },
  35941. form: "feral",
  35942. },
  35943. pawFeral: {
  35944. height: math.unit(5.17, "feet"),
  35945. name: "Paw",
  35946. image: {
  35947. source: "./media/characters/sini/paw-feral.svg"
  35948. },
  35949. form: "feral",
  35950. },
  35951. rumpFeral: {
  35952. height: math.unit(13.11, "feet"),
  35953. name: "Rump",
  35954. image: {
  35955. source: "./media/characters/sini/rump-feral.svg"
  35956. },
  35957. form: "feral",
  35958. },
  35959. dickFeral: {
  35960. height: math.unit(1, "feet"),
  35961. name: "Dick",
  35962. image: {
  35963. source: "./media/characters/sini/dick-feral.svg"
  35964. },
  35965. form: "feral",
  35966. },
  35967. eyeFeral: {
  35968. height: math.unit(1.23, "feet"),
  35969. name: "Eye",
  35970. image: {
  35971. source: "./media/characters/sini/eye-feral.svg"
  35972. },
  35973. form: "feral",
  35974. },
  35975. },
  35976. [
  35977. {
  35978. name: "Normal",
  35979. height: math.unit(7, "feet"),
  35980. default: true,
  35981. form: "anthro"
  35982. },
  35983. {
  35984. name: "Normal",
  35985. height: math.unit(16, "feet"),
  35986. default: true,
  35987. form: "feral"
  35988. },
  35989. ],
  35990. {
  35991. "anthro": {
  35992. name: "Anthro",
  35993. default: true
  35994. },
  35995. "feral": {
  35996. name: "Feral",
  35997. }
  35998. }
  35999. ))
  36000. characterMakers.push(() => makeCharacter(
  36001. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  36002. {
  36003. side: {
  36004. height: math.unit(47.2, "meters"),
  36005. weight: math.unit(10000, "tons"),
  36006. name: "Side",
  36007. image: {
  36008. source: "./media/characters/raylldo/side.svg",
  36009. extra: 2363/642,
  36010. bottom: 221/2584
  36011. }
  36012. },
  36013. top: {
  36014. height: math.unit(240, "meters"),
  36015. weight: math.unit(10000, "tons"),
  36016. name: "Top",
  36017. image: {
  36018. source: "./media/characters/raylldo/top.svg"
  36019. }
  36020. },
  36021. bottom: {
  36022. height: math.unit(240, "meters"),
  36023. weight: math.unit(10000, "tons"),
  36024. name: "Bottom",
  36025. image: {
  36026. source: "./media/characters/raylldo/bottom.svg"
  36027. }
  36028. },
  36029. head: {
  36030. height: math.unit(38.6, "meters"),
  36031. name: "Head",
  36032. image: {
  36033. source: "./media/characters/raylldo/head.svg",
  36034. extra: 1335/1112,
  36035. bottom: 0/1335
  36036. }
  36037. },
  36038. maw: {
  36039. height: math.unit(16.37, "meters"),
  36040. name: "Maw",
  36041. image: {
  36042. source: "./media/characters/raylldo/maw.svg",
  36043. extra: 883/660,
  36044. bottom: 0/883
  36045. },
  36046. extraAttributes: {
  36047. preyCapacity: {
  36048. name: "Capacity",
  36049. power: 3,
  36050. type: "volume",
  36051. base: math.unit(1000, "people")
  36052. },
  36053. tongueSize: {
  36054. name: "Tongue Size",
  36055. power: 2,
  36056. type: "area",
  36057. base: math.unit(21, "m^2")
  36058. }
  36059. }
  36060. },
  36061. forepaw: {
  36062. height: math.unit(18, "meters"),
  36063. name: "Forepaw",
  36064. image: {
  36065. source: "./media/characters/raylldo/forepaw.svg"
  36066. }
  36067. },
  36068. hindpaw: {
  36069. height: math.unit(23, "meters"),
  36070. name: "Hindpaw",
  36071. image: {
  36072. source: "./media/characters/raylldo/hindpaw.svg"
  36073. }
  36074. },
  36075. genitals: {
  36076. height: math.unit(42, "meters"),
  36077. name: "Genitals",
  36078. image: {
  36079. source: "./media/characters/raylldo/genitals.svg"
  36080. }
  36081. },
  36082. },
  36083. [
  36084. {
  36085. name: "Normal",
  36086. height: math.unit(47.2, "meters"),
  36087. default: true
  36088. },
  36089. ]
  36090. ))
  36091. characterMakers.push(() => makeCharacter(
  36092. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36093. {
  36094. anthroFront: {
  36095. height: math.unit(9, "feet"),
  36096. weight: math.unit(600, "lb"),
  36097. name: "Anthro (Front)",
  36098. image: {
  36099. source: "./media/characters/glint/anthro-front.svg",
  36100. extra: 1097/1018,
  36101. bottom: 28/1125
  36102. }
  36103. },
  36104. anthroBack: {
  36105. height: math.unit(9, "feet"),
  36106. weight: math.unit(600, "lb"),
  36107. name: "Anthro (Back)",
  36108. image: {
  36109. source: "./media/characters/glint/anthro-back.svg",
  36110. extra: 1154/997,
  36111. bottom: 36/1190
  36112. }
  36113. },
  36114. feral: {
  36115. height: math.unit(11, "feet"),
  36116. weight: math.unit(50000, "lb"),
  36117. name: "Feral",
  36118. image: {
  36119. source: "./media/characters/glint/feral.svg",
  36120. extra: 3035/1585,
  36121. bottom: 1169/4204
  36122. }
  36123. },
  36124. dickAnthro: {
  36125. height: math.unit(0.7, "meters"),
  36126. name: "Dick (Anthro)",
  36127. image: {
  36128. source: "./media/characters/glint/dick-anthro.svg"
  36129. }
  36130. },
  36131. dickFeral: {
  36132. height: math.unit(2.65, "meters"),
  36133. name: "Dick (Feral)",
  36134. image: {
  36135. source: "./media/characters/glint/dick-feral.svg"
  36136. }
  36137. },
  36138. slitHidden: {
  36139. height: math.unit(5.85, "meters"),
  36140. name: "Slit (Hidden)",
  36141. image: {
  36142. source: "./media/characters/glint/slit-hidden.svg"
  36143. }
  36144. },
  36145. slitErect: {
  36146. height: math.unit(5.85, "meters"),
  36147. name: "Slit (Erect)",
  36148. image: {
  36149. source: "./media/characters/glint/slit-erect.svg"
  36150. }
  36151. },
  36152. mawAnthro: {
  36153. height: math.unit(0.63, "meters"),
  36154. name: "Maw (Anthro)",
  36155. image: {
  36156. source: "./media/characters/glint/maw.svg"
  36157. }
  36158. },
  36159. mawFeral: {
  36160. height: math.unit(2.89, "meters"),
  36161. name: "Maw (Feral)",
  36162. image: {
  36163. source: "./media/characters/glint/maw.svg"
  36164. }
  36165. },
  36166. },
  36167. [
  36168. {
  36169. name: "Normal",
  36170. height: math.unit(9, "feet"),
  36171. default: true
  36172. },
  36173. ]
  36174. ))
  36175. characterMakers.push(() => makeCharacter(
  36176. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36177. {
  36178. side: {
  36179. height: math.unit(15, "feet"),
  36180. weight: math.unit(5000, "kg"),
  36181. name: "Side",
  36182. image: {
  36183. source: "./media/characters/kairne/side.svg",
  36184. extra: 979/811,
  36185. bottom: 13/992
  36186. }
  36187. },
  36188. front: {
  36189. height: math.unit(15, "feet"),
  36190. weight: math.unit(5000, "kg"),
  36191. name: "Front",
  36192. image: {
  36193. source: "./media/characters/kairne/front.svg",
  36194. extra: 908/814,
  36195. bottom: 26/934
  36196. }
  36197. },
  36198. sideNsfw: {
  36199. height: math.unit(15, "feet"),
  36200. weight: math.unit(5000, "kg"),
  36201. name: "Side (NSFW)",
  36202. image: {
  36203. source: "./media/characters/kairne/side-nsfw.svg",
  36204. extra: 979/811,
  36205. bottom: 13/992
  36206. }
  36207. },
  36208. frontNsfw: {
  36209. height: math.unit(15, "feet"),
  36210. weight: math.unit(5000, "kg"),
  36211. name: "Front (NSFW)",
  36212. image: {
  36213. source: "./media/characters/kairne/front-nsfw.svg",
  36214. extra: 908/814,
  36215. bottom: 26/934
  36216. }
  36217. },
  36218. dickCaged: {
  36219. height: math.unit(0.65, "meters"),
  36220. name: "Dick-caged",
  36221. image: {
  36222. source: "./media/characters/kairne/dick-caged.svg"
  36223. }
  36224. },
  36225. dick: {
  36226. height: math.unit(0.79, "meters"),
  36227. name: "Dick",
  36228. image: {
  36229. source: "./media/characters/kairne/dick.svg"
  36230. }
  36231. },
  36232. genitals: {
  36233. height: math.unit(1.29, "meters"),
  36234. name: "Genitals",
  36235. image: {
  36236. source: "./media/characters/kairne/genitals.svg"
  36237. }
  36238. },
  36239. maw: {
  36240. height: math.unit(1.73, "meters"),
  36241. name: "Maw",
  36242. image: {
  36243. source: "./media/characters/kairne/maw.svg"
  36244. }
  36245. },
  36246. },
  36247. [
  36248. {
  36249. name: "Normal",
  36250. height: math.unit(15, "feet"),
  36251. default: true
  36252. },
  36253. ]
  36254. ))
  36255. characterMakers.push(() => makeCharacter(
  36256. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36257. {
  36258. front: {
  36259. height: math.unit(5 + 8/12, "feet"),
  36260. weight: math.unit(139, "lb"),
  36261. name: "Front",
  36262. image: {
  36263. source: "./media/characters/biscuit-jackal/front.svg",
  36264. extra: 2106/1961,
  36265. bottom: 58/2164
  36266. }
  36267. },
  36268. back: {
  36269. height: math.unit(5 + 8/12, "feet"),
  36270. weight: math.unit(139, "lb"),
  36271. name: "Back",
  36272. image: {
  36273. source: "./media/characters/biscuit-jackal/back.svg",
  36274. extra: 2132/1976,
  36275. bottom: 57/2189
  36276. }
  36277. },
  36278. werejackal: {
  36279. height: math.unit(6 + 3/12, "feet"),
  36280. weight: math.unit(188, "lb"),
  36281. name: "Werejackal",
  36282. image: {
  36283. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36284. extra: 2373/2178,
  36285. bottom: 53/2426
  36286. }
  36287. },
  36288. },
  36289. [
  36290. {
  36291. name: "Normal",
  36292. height: math.unit(5 + 8/12, "feet"),
  36293. default: true
  36294. },
  36295. ]
  36296. ))
  36297. characterMakers.push(() => makeCharacter(
  36298. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36299. {
  36300. front: {
  36301. height: math.unit(140, "cm"),
  36302. weight: math.unit(45, "kg"),
  36303. name: "Front",
  36304. image: {
  36305. source: "./media/characters/tayra-white/front.svg",
  36306. extra: 2229/2192,
  36307. bottom: 75/2304
  36308. }
  36309. },
  36310. },
  36311. [
  36312. {
  36313. name: "Normal",
  36314. height: math.unit(140, "cm"),
  36315. default: true
  36316. },
  36317. ]
  36318. ))
  36319. characterMakers.push(() => makeCharacter(
  36320. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36321. {
  36322. front: {
  36323. height: math.unit(4 + 5/12, "feet"),
  36324. name: "Front",
  36325. image: {
  36326. source: "./media/characters/scoop/front.svg",
  36327. extra: 1257/1136,
  36328. bottom: 69/1326
  36329. }
  36330. },
  36331. back: {
  36332. height: math.unit(4 + 5/12, "feet"),
  36333. name: "Back",
  36334. image: {
  36335. source: "./media/characters/scoop/back.svg",
  36336. extra: 1321/1152,
  36337. bottom: 32/1353
  36338. }
  36339. },
  36340. maw: {
  36341. height: math.unit(0.68, "feet"),
  36342. name: "Maw",
  36343. image: {
  36344. source: "./media/characters/scoop/maw.svg"
  36345. }
  36346. },
  36347. },
  36348. [
  36349. {
  36350. name: "Really Small",
  36351. height: math.unit(1, "mm")
  36352. },
  36353. {
  36354. name: "Micro",
  36355. height: math.unit(1, "inch")
  36356. },
  36357. {
  36358. name: "Normal",
  36359. height: math.unit(4 + 5/12, "feet"),
  36360. default: true
  36361. },
  36362. {
  36363. name: "Macro",
  36364. height: math.unit(200, "feet")
  36365. },
  36366. {
  36367. name: "Megamacro",
  36368. height: math.unit(3240, "feet")
  36369. },
  36370. {
  36371. name: "Teramacro",
  36372. height: math.unit(2500, "miles")
  36373. },
  36374. ]
  36375. ))
  36376. characterMakers.push(() => makeCharacter(
  36377. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36378. {
  36379. front: {
  36380. height: math.unit(15 + 7/12, "feet"),
  36381. weight: math.unit(1150, "tons"),
  36382. name: "Front",
  36383. image: {
  36384. source: "./media/characters/saphinara/front.svg",
  36385. extra: 1837/1643,
  36386. bottom: 84/1921
  36387. },
  36388. form: "normal",
  36389. default: true
  36390. },
  36391. side: {
  36392. height: math.unit(15 + 7/12, "feet"),
  36393. weight: math.unit(1150, "tons"),
  36394. name: "Side",
  36395. image: {
  36396. source: "./media/characters/saphinara/side.svg",
  36397. extra: 605/547,
  36398. bottom: 6/611
  36399. },
  36400. form: "normal"
  36401. },
  36402. back: {
  36403. height: math.unit(15 + 7/12, "feet"),
  36404. weight: math.unit(1150, "tons"),
  36405. name: "Back",
  36406. image: {
  36407. source: "./media/characters/saphinara/back.svg",
  36408. extra: 591/531,
  36409. bottom: 13/604
  36410. },
  36411. form: "normal"
  36412. },
  36413. frontTail: {
  36414. height: math.unit(15 + 7/12, "feet"),
  36415. weight: math.unit(1150, "tons"),
  36416. name: "Front (Full Tail)",
  36417. image: {
  36418. source: "./media/characters/saphinara/front-tail.svg",
  36419. extra: 2256/1630,
  36420. bottom: 261/2517
  36421. },
  36422. form: "normal"
  36423. },
  36424. insides: {
  36425. height: math.unit(11.92, "feet"),
  36426. name: "Insides",
  36427. image: {
  36428. source: "./media/characters/saphinara/insides.svg"
  36429. },
  36430. form: "normal"
  36431. },
  36432. head: {
  36433. height: math.unit(4.17, "feet"),
  36434. name: "Head",
  36435. image: {
  36436. source: "./media/characters/saphinara/head.svg"
  36437. },
  36438. form: "normal"
  36439. },
  36440. tongue: {
  36441. height: math.unit(4.60, "feet"),
  36442. name: "Tongue",
  36443. image: {
  36444. source: "./media/characters/saphinara/tongue.svg"
  36445. },
  36446. form: "normal"
  36447. },
  36448. headEnraged: {
  36449. height: math.unit(5.55, "feet"),
  36450. name: "Head (Enraged)",
  36451. image: {
  36452. source: "./media/characters/saphinara/head-enraged.svg"
  36453. },
  36454. form: "normal"
  36455. },
  36456. wings: {
  36457. height: math.unit(11.95, "feet"),
  36458. name: "Wings",
  36459. image: {
  36460. source: "./media/characters/saphinara/wings.svg"
  36461. },
  36462. form: "normal"
  36463. },
  36464. feathers: {
  36465. height: math.unit(8.92, "feet"),
  36466. name: "Feathers",
  36467. image: {
  36468. source: "./media/characters/saphinara/feathers.svg"
  36469. },
  36470. form: "normal"
  36471. },
  36472. shackles: {
  36473. height: math.unit(2, "feet"),
  36474. name: "Shackles",
  36475. image: {
  36476. source: "./media/characters/saphinara/shackles.svg"
  36477. },
  36478. form: "normal"
  36479. },
  36480. eyes: {
  36481. height: math.unit(1.331, "feet"),
  36482. name: "Eyes",
  36483. image: {
  36484. source: "./media/characters/saphinara/eyes.svg"
  36485. },
  36486. form: "normal"
  36487. },
  36488. eyesEnraged: {
  36489. height: math.unit(1.331, "feet"),
  36490. name: "Eyes (Enraged)",
  36491. image: {
  36492. source: "./media/characters/saphinara/eyes-enraged.svg"
  36493. },
  36494. form: "normal"
  36495. },
  36496. trueFormSide: {
  36497. height: math.unit(200, "feet"),
  36498. weight: math.unit(1e7, "tons"),
  36499. name: "Side",
  36500. image: {
  36501. source: "./media/characters/saphinara/true-form-side.svg",
  36502. extra: 1399/770,
  36503. bottom: 97/1496
  36504. },
  36505. form: "true-form",
  36506. default: true
  36507. },
  36508. trueFormMaw: {
  36509. height: math.unit(71.5, "feet"),
  36510. name: "Maw",
  36511. image: {
  36512. source: "./media/characters/saphinara/true-form-maw.svg",
  36513. extra: 2302/1453,
  36514. bottom: 0/2302
  36515. },
  36516. form: "true-form"
  36517. },
  36518. meowberusSide: {
  36519. height: math.unit(75, "feet"),
  36520. weight: math.unit(180000, "kg"),
  36521. preyCapacity: math.unit(50000, "people"),
  36522. name: "Side",
  36523. image: {
  36524. source: "./media/characters/saphinara/meowberus-side.svg",
  36525. extra: 1400/711,
  36526. bottom: 126/1526
  36527. },
  36528. form: "meowberus",
  36529. extraAttributes: {
  36530. "pawArea": {
  36531. name: "Paw Size",
  36532. power: 2,
  36533. type: "area",
  36534. base: math.unit(35, "m^2")
  36535. }
  36536. }
  36537. },
  36538. },
  36539. [
  36540. {
  36541. name: "Normal",
  36542. height: math.unit(15 + 7/12, "feet"),
  36543. default: true,
  36544. form: "normal"
  36545. },
  36546. {
  36547. name: "Angry",
  36548. height: math.unit(30 + 6/12, "feet"),
  36549. form: "normal"
  36550. },
  36551. {
  36552. name: "Enraged",
  36553. height: math.unit(102 + 1/12, "feet"),
  36554. form: "normal"
  36555. },
  36556. {
  36557. name: "True",
  36558. height: math.unit(200, "feet"),
  36559. default: true,
  36560. form: "true-form"
  36561. },
  36562. {
  36563. name: "Normal",
  36564. height: math.unit(75, "feet"),
  36565. default: true,
  36566. form: "meowberus"
  36567. },
  36568. ],
  36569. {
  36570. "normal": {
  36571. name: "Normal",
  36572. default: true
  36573. },
  36574. "true-form": {
  36575. name: "True Form"
  36576. },
  36577. "meowberus": {
  36578. name: "Meowberus",
  36579. },
  36580. }
  36581. ))
  36582. characterMakers.push(() => makeCharacter(
  36583. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36584. {
  36585. front: {
  36586. height: math.unit(6 + 8/12, "feet"),
  36587. weight: math.unit(300, "lb"),
  36588. name: "Front",
  36589. image: {
  36590. source: "./media/characters/jrain/front.svg",
  36591. extra: 3039/2865,
  36592. bottom: 399/3438
  36593. }
  36594. },
  36595. back: {
  36596. height: math.unit(6 + 8/12, "feet"),
  36597. weight: math.unit(300, "lb"),
  36598. name: "Back",
  36599. image: {
  36600. source: "./media/characters/jrain/back.svg",
  36601. extra: 3089/2938,
  36602. bottom: 172/3261
  36603. }
  36604. },
  36605. head: {
  36606. height: math.unit(2.14, "feet"),
  36607. name: "Head",
  36608. image: {
  36609. source: "./media/characters/jrain/head.svg"
  36610. }
  36611. },
  36612. maw: {
  36613. height: math.unit(1.77, "feet"),
  36614. name: "Maw",
  36615. image: {
  36616. source: "./media/characters/jrain/maw.svg"
  36617. }
  36618. },
  36619. leftHand: {
  36620. height: math.unit(1.1, "feet"),
  36621. name: "Left Hand",
  36622. image: {
  36623. source: "./media/characters/jrain/left-hand.svg"
  36624. }
  36625. },
  36626. rightHand: {
  36627. height: math.unit(1.1, "feet"),
  36628. name: "Right Hand",
  36629. image: {
  36630. source: "./media/characters/jrain/right-hand.svg"
  36631. }
  36632. },
  36633. eye: {
  36634. height: math.unit(0.35, "feet"),
  36635. name: "Eye",
  36636. image: {
  36637. source: "./media/characters/jrain/eye.svg"
  36638. }
  36639. },
  36640. },
  36641. [
  36642. {
  36643. name: "Normal",
  36644. height: math.unit(6 + 8/12, "feet"),
  36645. default: true
  36646. },
  36647. {
  36648. name: "Casually Large",
  36649. height: math.unit(25, "feet")
  36650. },
  36651. {
  36652. name: "Giant",
  36653. height: math.unit(100, "feet")
  36654. },
  36655. {
  36656. name: "Kaiju",
  36657. height: math.unit(300, "feet")
  36658. },
  36659. ]
  36660. ))
  36661. characterMakers.push(() => makeCharacter(
  36662. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36663. {
  36664. dragon: {
  36665. height: math.unit(5, "meters"),
  36666. name: "Dragon",
  36667. image: {
  36668. source: "./media/characters/sabrina/dragon.svg",
  36669. extra: 3670 / 2365,
  36670. bottom: 333 / 4003
  36671. }
  36672. },
  36673. gryphon: {
  36674. height: math.unit(3, "meters"),
  36675. name: "Gryphon",
  36676. image: {
  36677. source: "./media/characters/sabrina/gryphon.svg",
  36678. extra: 1576 / 945,
  36679. bottom: 71 / 1647
  36680. }
  36681. },
  36682. snake: {
  36683. height: math.unit(12, "meters"),
  36684. name: "Snake",
  36685. image: {
  36686. source: "./media/characters/sabrina/snake.svg",
  36687. extra: 1758 / 1320,
  36688. bottom: 186 / 1944
  36689. }
  36690. },
  36691. collar: {
  36692. height: math.unit(1.86, "meters"),
  36693. name: "Collar",
  36694. image: {
  36695. source: "./media/characters/sabrina/collar.svg"
  36696. }
  36697. },
  36698. eye: {
  36699. height: math.unit(0.53, "meters"),
  36700. name: "Eye",
  36701. image: {
  36702. source: "./media/characters/sabrina/eye.svg"
  36703. }
  36704. },
  36705. foot: {
  36706. height: math.unit(1.86, "meters"),
  36707. name: "Foot",
  36708. image: {
  36709. source: "./media/characters/sabrina/foot.svg"
  36710. }
  36711. },
  36712. hand: {
  36713. height: math.unit(1.32, "meters"),
  36714. name: "Hand",
  36715. image: {
  36716. source: "./media/characters/sabrina/hand.svg"
  36717. }
  36718. },
  36719. head: {
  36720. height: math.unit(2.44, "meters"),
  36721. name: "Head",
  36722. image: {
  36723. source: "./media/characters/sabrina/head.svg"
  36724. }
  36725. },
  36726. headAngry: {
  36727. height: math.unit(2.44, "meters"),
  36728. name: "Head (Angry))",
  36729. image: {
  36730. source: "./media/characters/sabrina/head-angry.svg"
  36731. }
  36732. },
  36733. maw: {
  36734. height: math.unit(1.65, "meters"),
  36735. name: "Maw",
  36736. image: {
  36737. source: "./media/characters/sabrina/maw.svg"
  36738. }
  36739. },
  36740. spikes: {
  36741. height: math.unit(1.69, "meters"),
  36742. name: "Spikes",
  36743. image: {
  36744. source: "./media/characters/sabrina/spikes.svg"
  36745. }
  36746. },
  36747. stomach: {
  36748. height: math.unit(1.15, "meters"),
  36749. name: "Stomach",
  36750. image: {
  36751. source: "./media/characters/sabrina/stomach.svg"
  36752. }
  36753. },
  36754. tongue: {
  36755. height: math.unit(1.27, "meters"),
  36756. name: "Tongue",
  36757. image: {
  36758. source: "./media/characters/sabrina/tongue.svg"
  36759. }
  36760. },
  36761. wingDorsal: {
  36762. height: math.unit(4.85, "meters"),
  36763. name: "Wing (Dorsal)",
  36764. image: {
  36765. source: "./media/characters/sabrina/wing-dorsal.svg"
  36766. }
  36767. },
  36768. wingVentral: {
  36769. height: math.unit(4.85, "meters"),
  36770. name: "Wing (Ventral)",
  36771. image: {
  36772. source: "./media/characters/sabrina/wing-ventral.svg"
  36773. }
  36774. },
  36775. },
  36776. [
  36777. {
  36778. name: "Normal",
  36779. height: math.unit(5, "meters"),
  36780. default: true
  36781. },
  36782. ]
  36783. ))
  36784. characterMakers.push(() => makeCharacter(
  36785. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36786. {
  36787. frontMaid: {
  36788. height: math.unit(5 + 5/12, "feet"),
  36789. weight: math.unit(130, "lb"),
  36790. name: "Front (Maid)",
  36791. image: {
  36792. source: "./media/characters/midnight-tales/front-maid.svg",
  36793. extra: 489/454,
  36794. bottom: 61/550
  36795. }
  36796. },
  36797. frontFormal: {
  36798. height: math.unit(5 + 5/12, "feet"),
  36799. weight: math.unit(130, "lb"),
  36800. name: "Front (Formal)",
  36801. image: {
  36802. source: "./media/characters/midnight-tales/front-formal.svg",
  36803. extra: 489/454,
  36804. bottom: 61/550
  36805. }
  36806. },
  36807. back: {
  36808. height: math.unit(5 + 5/12, "feet"),
  36809. weight: math.unit(130, "lb"),
  36810. name: "Back",
  36811. image: {
  36812. source: "./media/characters/midnight-tales/back.svg",
  36813. extra: 498/456,
  36814. bottom: 33/531
  36815. }
  36816. },
  36817. frontBeast: {
  36818. height: math.unit(40, "feet"),
  36819. weight: math.unit(64000, "lb"),
  36820. name: "Front (Beast)",
  36821. image: {
  36822. source: "./media/characters/midnight-tales/front-beast.svg",
  36823. extra: 927/860,
  36824. bottom: 53/980
  36825. }
  36826. },
  36827. backBeast: {
  36828. height: math.unit(40, "feet"),
  36829. weight: math.unit(64000, "lb"),
  36830. name: "Back (Beast)",
  36831. image: {
  36832. source: "./media/characters/midnight-tales/back-beast.svg",
  36833. extra: 929/855,
  36834. bottom: 16/945
  36835. }
  36836. },
  36837. footBeast: {
  36838. height: math.unit(6.7, "feet"),
  36839. name: "Foot (Beast)",
  36840. image: {
  36841. source: "./media/characters/midnight-tales/foot-beast.svg"
  36842. }
  36843. },
  36844. headBeast: {
  36845. height: math.unit(8, "feet"),
  36846. name: "Head (Beast)",
  36847. image: {
  36848. source: "./media/characters/midnight-tales/head-beast.svg"
  36849. }
  36850. },
  36851. },
  36852. [
  36853. {
  36854. name: "Normal",
  36855. height: math.unit(5 + 5 / 12, "feet"),
  36856. default: true
  36857. },
  36858. {
  36859. name: "Macro",
  36860. height: math.unit(25, "feet")
  36861. },
  36862. ]
  36863. ))
  36864. characterMakers.push(() => makeCharacter(
  36865. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36866. {
  36867. front: {
  36868. height: math.unit(6 + 2/12, "feet"),
  36869. weight: math.unit(115, "kg"),
  36870. preyCapacity: math.unit(3, "people"),
  36871. name: "Front",
  36872. image: {
  36873. source: "./media/characters/argon/front.svg",
  36874. extra: 2009/1935,
  36875. bottom: 118/2127
  36876. },
  36877. extraAttributes: {
  36878. "tailLength": {
  36879. name: "Tail Length",
  36880. power: 1,
  36881. type: "length",
  36882. base: math.unit(6, "feet")
  36883. },
  36884. "tailWeight": {
  36885. name: "Tail Weight",
  36886. power: 3,
  36887. type: "mass",
  36888. base: math.unit(40, "kg")
  36889. },
  36890. }
  36891. },
  36892. back: {
  36893. height: math.unit(6 + 2/12, "feet"),
  36894. weight: math.unit(115, "kg"),
  36895. preyCapacity: math.unit(3, "people"),
  36896. name: "Back",
  36897. image: {
  36898. source: "./media/characters/argon/back.svg",
  36899. extra: 2047/1992,
  36900. bottom: 20/2067
  36901. },
  36902. extraAttributes: {
  36903. "tailLength": {
  36904. name: "Tail Length",
  36905. power: 1,
  36906. type: "length",
  36907. base: math.unit(6, "feet")
  36908. },
  36909. "tailWeight": {
  36910. name: "Tail Weight",
  36911. power: 3,
  36912. type: "mass",
  36913. base: math.unit(40, "kg")
  36914. },
  36915. }
  36916. },
  36917. frontDressed: {
  36918. height: math.unit(6 + 2/12, "feet"),
  36919. weight: math.unit(115, "kg"),
  36920. preyCapacity: math.unit(3, "people"),
  36921. name: "Front (Dressed)",
  36922. image: {
  36923. source: "./media/characters/argon/front-dressed.svg",
  36924. extra: 2009/1935,
  36925. bottom: 118/2127
  36926. },
  36927. extraAttributes: {
  36928. "tailLength": {
  36929. name: "Tail Length",
  36930. power: 1,
  36931. type: "length",
  36932. base: math.unit(6, "feet")
  36933. },
  36934. "tailWeight": {
  36935. name: "Tail Weight",
  36936. power: 3,
  36937. type: "mass",
  36938. base: math.unit(40, "kg")
  36939. },
  36940. }
  36941. },
  36942. },
  36943. [
  36944. {
  36945. name: "Minimum",
  36946. height: math.unit(2 + 8/12, "feet")
  36947. },
  36948. {
  36949. name: "Normal",
  36950. height: math.unit(6 + 2/12, "feet"),
  36951. default: true
  36952. },
  36953. {
  36954. name: "Maximum",
  36955. height: math.unit(20, "feet")
  36956. },
  36957. ]
  36958. ))
  36959. characterMakers.push(() => makeCharacter(
  36960. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36961. {
  36962. front: {
  36963. height: math.unit(8 + 6/12, "feet"),
  36964. weight: math.unit(1150, "lb"),
  36965. name: "Front",
  36966. image: {
  36967. source: "./media/characters/kichi/front.svg",
  36968. extra: 1267/1164,
  36969. bottom: 61/1328
  36970. }
  36971. },
  36972. back: {
  36973. height: math.unit(8 + 6/12, "feet"),
  36974. weight: math.unit(1150, "lb"),
  36975. name: "Back",
  36976. image: {
  36977. source: "./media/characters/kichi/back.svg",
  36978. extra: 1273/1166,
  36979. bottom: 33/1306
  36980. }
  36981. },
  36982. },
  36983. [
  36984. {
  36985. name: "Normal",
  36986. height: math.unit(8 + 6/12, "feet"),
  36987. default: true
  36988. },
  36989. ]
  36990. ))
  36991. characterMakers.push(() => makeCharacter(
  36992. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36993. {
  36994. front: {
  36995. height: math.unit(6, "feet"),
  36996. weight: math.unit(210, "lb"),
  36997. name: "Front",
  36998. image: {
  36999. source: "./media/characters/manetel-greyscale/front.svg",
  37000. extra: 350/312,
  37001. bottom: 8/358
  37002. }
  37003. },
  37004. },
  37005. [
  37006. {
  37007. name: "Micro",
  37008. height: math.unit(2, "inches")
  37009. },
  37010. {
  37011. name: "Normal",
  37012. height: math.unit(6, "feet"),
  37013. default: true
  37014. },
  37015. {
  37016. name: "Minimacro",
  37017. height: math.unit(17, "feet")
  37018. },
  37019. {
  37020. name: "Macro",
  37021. height: math.unit(117, "feet")
  37022. },
  37023. ]
  37024. ))
  37025. characterMakers.push(() => makeCharacter(
  37026. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  37027. {
  37028. side: {
  37029. height: math.unit(5 + 1/12, "feet"),
  37030. weight: math.unit(418, "lb"),
  37031. name: "Side",
  37032. image: {
  37033. source: "./media/characters/softpurr/side.svg",
  37034. extra: 1993/1945,
  37035. bottom: 134/2127
  37036. }
  37037. },
  37038. front: {
  37039. height: math.unit(5 + 1/12, "feet"),
  37040. weight: math.unit(418, "lb"),
  37041. name: "Front",
  37042. image: {
  37043. source: "./media/characters/softpurr/front.svg",
  37044. extra: 1950/1856,
  37045. bottom: 174/2124
  37046. }
  37047. },
  37048. paw: {
  37049. height: math.unit(1, "feet"),
  37050. name: "Paw",
  37051. image: {
  37052. source: "./media/characters/softpurr/paw.svg"
  37053. }
  37054. },
  37055. },
  37056. [
  37057. {
  37058. name: "Normal",
  37059. height: math.unit(5 + 1/12, "feet"),
  37060. default: true
  37061. },
  37062. ]
  37063. ))
  37064. characterMakers.push(() => makeCharacter(
  37065. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  37066. {
  37067. front: {
  37068. height: math.unit(260, "meters"),
  37069. name: "Front",
  37070. image: {
  37071. source: "./media/characters/anahita/front.svg",
  37072. extra: 665/635,
  37073. bottom: 89/754
  37074. }
  37075. },
  37076. },
  37077. [
  37078. {
  37079. name: "Macro",
  37080. height: math.unit(260, "meters"),
  37081. default: true
  37082. },
  37083. ]
  37084. ))
  37085. characterMakers.push(() => makeCharacter(
  37086. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  37087. {
  37088. front: {
  37089. height: math.unit(4 + 10/12, "feet"),
  37090. weight: math.unit(160, "lb"),
  37091. name: "Front",
  37092. image: {
  37093. source: "./media/characters/chip-mouse/front.svg",
  37094. extra: 3528/3408,
  37095. bottom: 0/3528
  37096. }
  37097. },
  37098. frontNsfw: {
  37099. height: math.unit(4 + 10/12, "feet"),
  37100. weight: math.unit(160, "lb"),
  37101. name: "Front (NSFW)",
  37102. image: {
  37103. source: "./media/characters/chip-mouse/front-nsfw.svg",
  37104. extra: 3528/3408,
  37105. bottom: 0/3528
  37106. }
  37107. },
  37108. },
  37109. [
  37110. {
  37111. name: "Normal",
  37112. height: math.unit(4 + 10/12, "feet"),
  37113. default: true
  37114. },
  37115. ]
  37116. ))
  37117. characterMakers.push(() => makeCharacter(
  37118. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37119. {
  37120. side: {
  37121. height: math.unit(10, "feet"),
  37122. weight: math.unit(14000, "lb"),
  37123. name: "Side",
  37124. image: {
  37125. source: "./media/characters/kremm/side.svg",
  37126. extra: 1390/1053,
  37127. bottom: 90/1480
  37128. }
  37129. },
  37130. gut: {
  37131. height: math.unit(5.8, "feet"),
  37132. name: "Gut",
  37133. image: {
  37134. source: "./media/characters/kremm/gut.svg"
  37135. }
  37136. },
  37137. ass: {
  37138. height: math.unit(6.1, "feet"),
  37139. name: "Ass",
  37140. image: {
  37141. source: "./media/characters/kremm/ass.svg"
  37142. }
  37143. },
  37144. jaws: {
  37145. height: math.unit(2.2, "feet"),
  37146. name: "Jaws",
  37147. image: {
  37148. source: "./media/characters/kremm/jaws.svg"
  37149. }
  37150. },
  37151. dick: {
  37152. height: math.unit(4.26, "feet"),
  37153. name: "Dick",
  37154. image: {
  37155. source: "./media/characters/kremm/dick.svg"
  37156. }
  37157. },
  37158. },
  37159. [
  37160. {
  37161. name: "Normal",
  37162. height: math.unit(10, "feet"),
  37163. default: true
  37164. },
  37165. ]
  37166. ))
  37167. characterMakers.push(() => makeCharacter(
  37168. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37169. {
  37170. front: {
  37171. height: math.unit(30, "stories"),
  37172. name: "Front",
  37173. image: {
  37174. source: "./media/characters/kai/front.svg",
  37175. extra: 1892/1718,
  37176. bottom: 162/2054
  37177. }
  37178. },
  37179. },
  37180. [
  37181. {
  37182. name: "Macro",
  37183. height: math.unit(30, "stories"),
  37184. default: true
  37185. },
  37186. ]
  37187. ))
  37188. characterMakers.push(() => makeCharacter(
  37189. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37190. {
  37191. front: {
  37192. height: math.unit(6 + 4/12, "feet"),
  37193. weight: math.unit(145, "lb"),
  37194. name: "Front",
  37195. image: {
  37196. source: "./media/characters/sykes/front.svg",
  37197. extra: 1321 / 1187,
  37198. bottom: 66 / 1387
  37199. }
  37200. },
  37201. back: {
  37202. height: math.unit(6 + 4/12, "feet"),
  37203. weight: math.unit(145, "lb"),
  37204. name: "Back",
  37205. image: {
  37206. source: "./media/characters/sykes/back.svg",
  37207. extra: 1326/1181,
  37208. bottom: 31/1357
  37209. }
  37210. },
  37211. traditionalOutfit: {
  37212. height: math.unit(6 + 4/12, "feet"),
  37213. weight: math.unit(145, "lb"),
  37214. name: "Traditional Outfit",
  37215. image: {
  37216. source: "./media/characters/sykes/traditional-outfit.svg",
  37217. extra: 1321 / 1187,
  37218. bottom: 66 / 1387
  37219. }
  37220. },
  37221. adventureOutfit: {
  37222. height: math.unit(6 + 4/12, "feet"),
  37223. weight: math.unit(145, "lb"),
  37224. name: "Adventure Outfit",
  37225. image: {
  37226. source: "./media/characters/sykes/adventure-outfit.svg",
  37227. extra: 1321 / 1187,
  37228. bottom: 66 / 1387
  37229. }
  37230. },
  37231. handLeft: {
  37232. height: math.unit(0.9, "feet"),
  37233. name: "Hand (Left)",
  37234. image: {
  37235. source: "./media/characters/sykes/hand-left.svg"
  37236. }
  37237. },
  37238. handRight: {
  37239. height: math.unit(0.839, "feet"),
  37240. name: "Hand (Right)",
  37241. image: {
  37242. source: "./media/characters/sykes/hand-right.svg"
  37243. }
  37244. },
  37245. leftFoot: {
  37246. height: math.unit(1.2, "feet"),
  37247. name: "Foot (Left)",
  37248. image: {
  37249. source: "./media/characters/sykes/foot-left.svg"
  37250. }
  37251. },
  37252. rightFoot: {
  37253. height: math.unit(1.2, "feet"),
  37254. name: "Foot (Right)",
  37255. image: {
  37256. source: "./media/characters/sykes/foot-right.svg"
  37257. }
  37258. },
  37259. maw: {
  37260. height: math.unit(1.93, "feet"),
  37261. name: "Maw",
  37262. image: {
  37263. source: "./media/characters/sykes/maw.svg"
  37264. }
  37265. },
  37266. teeth: {
  37267. height: math.unit(0.51, "feet"),
  37268. name: "Teeth",
  37269. image: {
  37270. source: "./media/characters/sykes/teeth.svg"
  37271. }
  37272. },
  37273. tongue: {
  37274. height: math.unit(2.13, "feet"),
  37275. name: "Tongue",
  37276. image: {
  37277. source: "./media/characters/sykes/tongue.svg"
  37278. }
  37279. },
  37280. uvula: {
  37281. height: math.unit(0.16, "feet"),
  37282. name: "Uvula",
  37283. image: {
  37284. source: "./media/characters/sykes/uvula.svg"
  37285. }
  37286. },
  37287. collar: {
  37288. height: math.unit(0.287, "feet"),
  37289. name: "Collar",
  37290. image: {
  37291. source: "./media/characters/sykes/collar.svg"
  37292. }
  37293. },
  37294. tail: {
  37295. height: math.unit(3.8, "feet"),
  37296. name: "Tail",
  37297. image: {
  37298. source: "./media/characters/sykes/tail.svg"
  37299. }
  37300. },
  37301. },
  37302. [
  37303. {
  37304. name: "Shrunken",
  37305. height: math.unit(5, "inches")
  37306. },
  37307. {
  37308. name: "Normal",
  37309. height: math.unit(6 + 4 / 12, "feet"),
  37310. default: true
  37311. },
  37312. {
  37313. name: "Big",
  37314. height: math.unit(15, "feet")
  37315. },
  37316. ]
  37317. ))
  37318. characterMakers.push(() => makeCharacter(
  37319. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37320. {
  37321. front: {
  37322. height: math.unit(5 + 8/12, "feet"),
  37323. weight: math.unit(190, "lb"),
  37324. name: "Front",
  37325. image: {
  37326. source: "./media/characters/oven-otter/front.svg",
  37327. extra: 1809/1740,
  37328. bottom: 181/1990
  37329. }
  37330. },
  37331. back: {
  37332. height: math.unit(5 + 8/12, "feet"),
  37333. weight: math.unit(190, "lb"),
  37334. name: "Back",
  37335. image: {
  37336. source: "./media/characters/oven-otter/back.svg",
  37337. extra: 1709/1635,
  37338. bottom: 118/1827
  37339. }
  37340. },
  37341. hand: {
  37342. height: math.unit(1.07, "feet"),
  37343. name: "Hand",
  37344. image: {
  37345. source: "./media/characters/oven-otter/hand.svg"
  37346. }
  37347. },
  37348. beans: {
  37349. height: math.unit(1.74, "feet"),
  37350. name: "Beans",
  37351. image: {
  37352. source: "./media/characters/oven-otter/beans.svg"
  37353. }
  37354. },
  37355. },
  37356. [
  37357. {
  37358. name: "Micro",
  37359. height: math.unit(0.5, "inches")
  37360. },
  37361. {
  37362. name: "Normal",
  37363. height: math.unit(5 + 8/12, "feet"),
  37364. default: true
  37365. },
  37366. {
  37367. name: "Macro",
  37368. height: math.unit(250, "feet")
  37369. },
  37370. {
  37371. name: "Really High",
  37372. height: math.unit(420, "feet")
  37373. },
  37374. ]
  37375. ))
  37376. characterMakers.push(() => makeCharacter(
  37377. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37378. {
  37379. front: {
  37380. height: math.unit(5, "meters"),
  37381. weight: math.unit(292000000000000, "kg"),
  37382. name: "Front",
  37383. image: {
  37384. source: "./media/characters/devourer/front.svg",
  37385. extra: 1800/1733,
  37386. bottom: 211/2011
  37387. }
  37388. },
  37389. maw: {
  37390. height: math.unit(1.1, "meter"),
  37391. name: "Maw",
  37392. image: {
  37393. source: "./media/characters/devourer/maw.svg"
  37394. }
  37395. },
  37396. },
  37397. [
  37398. {
  37399. name: "Small",
  37400. height: math.unit(3, "meters")
  37401. },
  37402. {
  37403. name: "Large",
  37404. height: math.unit(5, "meters"),
  37405. default: true
  37406. },
  37407. ]
  37408. ))
  37409. characterMakers.push(() => makeCharacter(
  37410. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37411. {
  37412. front: {
  37413. height: math.unit(6, "feet"),
  37414. weight: math.unit(400, "lb"),
  37415. name: "Front",
  37416. image: {
  37417. source: "./media/characters/ellarby/front.svg",
  37418. extra: 1909/1763,
  37419. bottom: 80/1989
  37420. }
  37421. },
  37422. back: {
  37423. height: math.unit(6, "feet"),
  37424. weight: math.unit(400, "lb"),
  37425. name: "Back",
  37426. image: {
  37427. source: "./media/characters/ellarby/back.svg",
  37428. extra: 1914/1784,
  37429. bottom: 172/2086
  37430. }
  37431. },
  37432. },
  37433. [
  37434. {
  37435. name: "Mischief",
  37436. height: math.unit(18, "inches")
  37437. },
  37438. {
  37439. name: "Trouble",
  37440. height: math.unit(12, "feet")
  37441. },
  37442. {
  37443. name: "Havoc",
  37444. height: math.unit(200, "feet"),
  37445. default: true
  37446. },
  37447. {
  37448. name: "Pandemonium",
  37449. height: math.unit(1, "mile")
  37450. },
  37451. {
  37452. name: "Catastrophe",
  37453. height: math.unit(100, "miles")
  37454. },
  37455. ]
  37456. ))
  37457. characterMakers.push(() => makeCharacter(
  37458. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37459. {
  37460. front: {
  37461. height: math.unit(4.7, "meters"),
  37462. weight: math.unit(6500, "kg"),
  37463. name: "Front",
  37464. image: {
  37465. source: "./media/characters/vex/front.svg",
  37466. extra: 1288/1140,
  37467. bottom: 100/1388
  37468. }
  37469. },
  37470. },
  37471. [
  37472. {
  37473. name: "Normal",
  37474. height: math.unit(4.7, "meters"),
  37475. default: true
  37476. },
  37477. ]
  37478. ))
  37479. characterMakers.push(() => makeCharacter(
  37480. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37481. {
  37482. normal: {
  37483. height: math.unit(6, "feet"),
  37484. weight: math.unit(350, "lb"),
  37485. name: "Normal",
  37486. image: {
  37487. source: "./media/characters/teshy/normal.svg",
  37488. extra: 1795/1735,
  37489. bottom: 16/1811
  37490. }
  37491. },
  37492. monsterFront: {
  37493. height: math.unit(12, "feet"),
  37494. weight: math.unit(4700, "lb"),
  37495. name: "Monster (Front)",
  37496. image: {
  37497. source: "./media/characters/teshy/monster-front.svg",
  37498. extra: 2042/2034,
  37499. bottom: 128/2170
  37500. }
  37501. },
  37502. monsterSide: {
  37503. height: math.unit(12, "feet"),
  37504. weight: math.unit(4700, "lb"),
  37505. name: "Monster (Side)",
  37506. image: {
  37507. source: "./media/characters/teshy/monster-side.svg",
  37508. extra: 2067/2056,
  37509. bottom: 70/2137
  37510. }
  37511. },
  37512. monsterBack: {
  37513. height: math.unit(12, "feet"),
  37514. weight: math.unit(4700, "lb"),
  37515. name: "Monster (Back)",
  37516. image: {
  37517. source: "./media/characters/teshy/monster-back.svg",
  37518. extra: 1921/1914,
  37519. bottom: 171/2092
  37520. }
  37521. },
  37522. },
  37523. [
  37524. {
  37525. name: "Normal",
  37526. height: math.unit(6, "feet"),
  37527. default: true
  37528. },
  37529. ]
  37530. ))
  37531. characterMakers.push(() => makeCharacter(
  37532. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37533. {
  37534. front: {
  37535. height: math.unit(6, "feet"),
  37536. name: "Front",
  37537. image: {
  37538. source: "./media/characters/ramey/front.svg",
  37539. extra: 790/787,
  37540. bottom: 27/817
  37541. }
  37542. },
  37543. },
  37544. [
  37545. {
  37546. name: "Normal",
  37547. height: math.unit(6, "feet"),
  37548. default: true
  37549. },
  37550. ]
  37551. ))
  37552. characterMakers.push(() => makeCharacter(
  37553. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37554. {
  37555. front: {
  37556. height: math.unit(5 + 5/12, "feet"),
  37557. weight: math.unit(120, "lb"),
  37558. name: "Front",
  37559. image: {
  37560. source: "./media/characters/phirae/front.svg",
  37561. extra: 2491/2436,
  37562. bottom: 38/2529
  37563. }
  37564. },
  37565. },
  37566. [
  37567. {
  37568. name: "Normal",
  37569. height: math.unit(5 + 5/12, "feet"),
  37570. default: true
  37571. },
  37572. ]
  37573. ))
  37574. characterMakers.push(() => makeCharacter(
  37575. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37576. {
  37577. front: {
  37578. height: math.unit(5 + 3/12, "feet"),
  37579. name: "Front",
  37580. image: {
  37581. source: "./media/characters/stagglas/front.svg",
  37582. extra: 962/882,
  37583. bottom: 53/1015
  37584. }
  37585. },
  37586. feral: {
  37587. height: math.unit(335, "cm"),
  37588. name: "Feral",
  37589. image: {
  37590. source: "./media/characters/stagglas/feral.svg",
  37591. extra: 1732/1090,
  37592. bottom: 48/1780
  37593. }
  37594. },
  37595. },
  37596. [
  37597. {
  37598. name: "Normal",
  37599. height: math.unit(5 + 3/12, "feet"),
  37600. default: true
  37601. },
  37602. ]
  37603. ))
  37604. characterMakers.push(() => makeCharacter(
  37605. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37606. {
  37607. front: {
  37608. height: math.unit(5 + 4/12, "feet"),
  37609. weight: math.unit(145, "lb"),
  37610. name: "Front",
  37611. image: {
  37612. source: "./media/characters/starra/front.svg",
  37613. extra: 1790/1691,
  37614. bottom: 91/1881
  37615. }
  37616. },
  37617. },
  37618. [
  37619. {
  37620. name: "Normal",
  37621. height: math.unit(5 + 4/12, "feet"),
  37622. default: true
  37623. },
  37624. ]
  37625. ))
  37626. characterMakers.push(() => makeCharacter(
  37627. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37628. {
  37629. front: {
  37630. height: math.unit(3.5, "meters"),
  37631. name: "Front",
  37632. image: {
  37633. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37634. extra: 1248/972,
  37635. bottom: 38/1286
  37636. }
  37637. },
  37638. },
  37639. [
  37640. {
  37641. name: "Normal",
  37642. height: math.unit(3.5, "meters"),
  37643. default: true
  37644. },
  37645. ]
  37646. ))
  37647. characterMakers.push(() => makeCharacter(
  37648. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37649. {
  37650. side: {
  37651. height: math.unit(8 + 2/12, "feet"),
  37652. weight: math.unit(1240, "lb"),
  37653. name: "Side",
  37654. image: {
  37655. source: "./media/characters/mika-valentine/side.svg",
  37656. extra: 2670/2501,
  37657. bottom: 250/2920
  37658. }
  37659. },
  37660. },
  37661. [
  37662. {
  37663. name: "Normal",
  37664. height: math.unit(8 + 2/12, "feet"),
  37665. default: true
  37666. },
  37667. ]
  37668. ))
  37669. characterMakers.push(() => makeCharacter(
  37670. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37671. {
  37672. front: {
  37673. height: math.unit(7 + 2/12, "feet"),
  37674. name: "Front",
  37675. image: {
  37676. source: "./media/characters/xoltol/front.svg",
  37677. extra: 2212/2124,
  37678. bottom: 84/2296
  37679. }
  37680. },
  37681. side: {
  37682. height: math.unit(7 + 2/12, "feet"),
  37683. name: "Side",
  37684. image: {
  37685. source: "./media/characters/xoltol/side.svg",
  37686. extra: 2273/2197,
  37687. bottom: 26/2299
  37688. }
  37689. },
  37690. hand: {
  37691. height: math.unit(2.5, "feet"),
  37692. name: "Hand",
  37693. image: {
  37694. source: "./media/characters/xoltol/hand.svg"
  37695. }
  37696. },
  37697. },
  37698. [
  37699. {
  37700. name: "Small-ish",
  37701. height: math.unit(5 + 11/12, "feet")
  37702. },
  37703. {
  37704. name: "Normal",
  37705. height: math.unit(7 + 2/12, "feet")
  37706. },
  37707. {
  37708. name: "\"Macro\"",
  37709. height: math.unit(14 + 9/12, "feet"),
  37710. default: true
  37711. },
  37712. {
  37713. name: "Alternate Height",
  37714. height: math.unit(20, "feet")
  37715. },
  37716. {
  37717. name: "Actually Macro",
  37718. height: math.unit(100, "feet")
  37719. },
  37720. ]
  37721. ))
  37722. characterMakers.push(() => makeCharacter(
  37723. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37724. {
  37725. front: {
  37726. height: math.unit(5 + 2/12, "feet"),
  37727. weight: math.unit(75, "kg"),
  37728. name: "Front",
  37729. image: {
  37730. source: "./media/characters/kotetsu-redwood/front.svg",
  37731. extra: 1053/942,
  37732. bottom: 60/1113
  37733. }
  37734. },
  37735. },
  37736. [
  37737. {
  37738. name: "Normal",
  37739. height: math.unit(5 + 2/12, "feet"),
  37740. default: true
  37741. },
  37742. ]
  37743. ))
  37744. characterMakers.push(() => makeCharacter(
  37745. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37746. {
  37747. front: {
  37748. height: math.unit(2.4, "meters"),
  37749. weight: math.unit(125, "kg"),
  37750. name: "Front",
  37751. image: {
  37752. source: "./media/characters/lilith/front.svg",
  37753. extra: 1590/1513,
  37754. bottom: 203/1793
  37755. }
  37756. },
  37757. },
  37758. [
  37759. {
  37760. name: "Humanoid",
  37761. height: math.unit(2.4, "meters")
  37762. },
  37763. {
  37764. name: "Normal",
  37765. height: math.unit(6, "meters"),
  37766. default: true
  37767. },
  37768. {
  37769. name: "Largest",
  37770. height: math.unit(55, "meters")
  37771. },
  37772. ]
  37773. ))
  37774. characterMakers.push(() => makeCharacter(
  37775. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37776. {
  37777. front: {
  37778. height: math.unit(8 + 4/12, "feet"),
  37779. weight: math.unit(535, "lb"),
  37780. name: "Front",
  37781. image: {
  37782. source: "./media/characters/beh'kah-bolger/front.svg",
  37783. extra: 1660/1603,
  37784. bottom: 37/1697
  37785. }
  37786. },
  37787. },
  37788. [
  37789. {
  37790. name: "Normal",
  37791. height: math.unit(8 + 4/12, "feet"),
  37792. default: true
  37793. },
  37794. {
  37795. name: "Kaiju",
  37796. height: math.unit(250, "feet")
  37797. },
  37798. {
  37799. name: "Still Growing",
  37800. height: math.unit(10, "miles")
  37801. },
  37802. {
  37803. name: "Continental",
  37804. height: math.unit(5000, "miles")
  37805. },
  37806. {
  37807. name: "Final Form",
  37808. height: math.unit(2500000, "miles")
  37809. },
  37810. ]
  37811. ))
  37812. characterMakers.push(() => makeCharacter(
  37813. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37814. {
  37815. front: {
  37816. height: math.unit(7 + 2/12, "feet"),
  37817. weight: math.unit(230, "kg"),
  37818. name: "Front",
  37819. image: {
  37820. source: "./media/characters/tatyana-milewska/front.svg",
  37821. extra: 1199/1150,
  37822. bottom: 86/1285
  37823. }
  37824. },
  37825. },
  37826. [
  37827. {
  37828. name: "Normal",
  37829. height: math.unit(7 + 2/12, "feet"),
  37830. default: true
  37831. },
  37832. {
  37833. name: "Big",
  37834. height: math.unit(12, "feet")
  37835. },
  37836. {
  37837. name: "Minimacro",
  37838. height: math.unit(20, "feet")
  37839. },
  37840. {
  37841. name: "Macro",
  37842. height: math.unit(120, "feet")
  37843. },
  37844. ]
  37845. ))
  37846. characterMakers.push(() => makeCharacter(
  37847. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37848. {
  37849. front: {
  37850. height: math.unit(7 + 8/12, "feet"),
  37851. weight: math.unit(152, "kg"),
  37852. name: "Front",
  37853. image: {
  37854. source: "./media/characters/helen-arri/front.svg",
  37855. extra: 440/423,
  37856. bottom: 14/454
  37857. }
  37858. },
  37859. back: {
  37860. height: math.unit(7 + 8/12, "feet"),
  37861. weight: math.unit(152, "kg"),
  37862. name: "Back",
  37863. image: {
  37864. source: "./media/characters/helen-arri/back.svg",
  37865. extra: 443/426,
  37866. bottom: 8/451
  37867. }
  37868. },
  37869. },
  37870. [
  37871. {
  37872. name: "Normal",
  37873. height: math.unit(7 + 8/12, "feet"),
  37874. default: true
  37875. },
  37876. {
  37877. name: "Big",
  37878. height: math.unit(14, "feet")
  37879. },
  37880. {
  37881. name: "Minimacro",
  37882. height: math.unit(24, "feet")
  37883. },
  37884. {
  37885. name: "Macro",
  37886. height: math.unit(140, "feet")
  37887. },
  37888. ]
  37889. ))
  37890. characterMakers.push(() => makeCharacter(
  37891. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37892. {
  37893. front: {
  37894. height: math.unit(6, "meters"),
  37895. name: "Front",
  37896. image: {
  37897. source: "./media/characters/ehanu-rehu/front.svg",
  37898. extra: 1800/1800,
  37899. bottom: 59/1859
  37900. }
  37901. },
  37902. },
  37903. [
  37904. {
  37905. name: "Normal",
  37906. height: math.unit(6, "meters"),
  37907. default: true
  37908. },
  37909. ]
  37910. ))
  37911. characterMakers.push(() => makeCharacter(
  37912. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37913. {
  37914. front: {
  37915. height: math.unit(7 + 3/12, "feet"),
  37916. name: "Front",
  37917. image: {
  37918. source: "./media/characters/renholder/front.svg",
  37919. extra: 3096/2960,
  37920. bottom: 250/3346
  37921. }
  37922. },
  37923. },
  37924. [
  37925. {
  37926. name: "Normal Bat",
  37927. height: math.unit(7 + 3/12, "feet"),
  37928. default: true
  37929. },
  37930. {
  37931. name: "Slightly Tall Bat",
  37932. height: math.unit(100, "feet")
  37933. },
  37934. {
  37935. name: "Big Bat",
  37936. height: math.unit(1000, "feet")
  37937. },
  37938. {
  37939. name: "City-Sized Bat",
  37940. height: math.unit(200000, "feet")
  37941. },
  37942. {
  37943. name: "Bigger Bat",
  37944. height: math.unit(10000, "miles")
  37945. },
  37946. {
  37947. name: "Solar Sized Bat",
  37948. height: math.unit(100, "AU")
  37949. },
  37950. {
  37951. name: "Galactic Bat",
  37952. height: math.unit(200000, "lightyears")
  37953. },
  37954. {
  37955. name: "Universally Known Bat",
  37956. height: math.unit(1, "universe")
  37957. },
  37958. ]
  37959. ))
  37960. characterMakers.push(() => makeCharacter(
  37961. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37962. {
  37963. front: {
  37964. height: math.unit(6 + 11/12, "feet"),
  37965. weight: math.unit(250, "lb"),
  37966. name: "Front",
  37967. image: {
  37968. source: "./media/characters/cookiecat/front.svg",
  37969. extra: 893/827,
  37970. bottom: 14/907
  37971. }
  37972. },
  37973. },
  37974. [
  37975. {
  37976. name: "Micro",
  37977. height: math.unit(3, "inches")
  37978. },
  37979. {
  37980. name: "Normal",
  37981. height: math.unit(6 + 11/12, "feet"),
  37982. default: true
  37983. },
  37984. {
  37985. name: "Macro",
  37986. height: math.unit(100, "feet")
  37987. },
  37988. {
  37989. name: "Macro+",
  37990. height: math.unit(404, "feet")
  37991. },
  37992. {
  37993. name: "Megamacro",
  37994. height: math.unit(165, "miles")
  37995. },
  37996. {
  37997. name: "Planetary",
  37998. height: math.unit(4600, "miles")
  37999. },
  38000. ]
  38001. ))
  38002. characterMakers.push(() => makeCharacter(
  38003. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  38004. {
  38005. front: {
  38006. height: math.unit(10 + 3/12, "feet"),
  38007. weight: math.unit(1500, "lb"),
  38008. name: "Front",
  38009. image: {
  38010. source: "./media/characters/tux-kusanagi/front.svg",
  38011. extra: 944/840,
  38012. bottom: 39/983
  38013. }
  38014. },
  38015. back: {
  38016. height: math.unit(10 + 3/12, "feet"),
  38017. weight: math.unit(1500, "lb"),
  38018. name: "Back",
  38019. image: {
  38020. source: "./media/characters/tux-kusanagi/back.svg",
  38021. extra: 941/842,
  38022. bottom: 28/969
  38023. }
  38024. },
  38025. rump: {
  38026. height: math.unit(5.25, "feet"),
  38027. name: "Rump",
  38028. image: {
  38029. source: "./media/characters/tux-kusanagi/rump.svg"
  38030. }
  38031. },
  38032. beak: {
  38033. height: math.unit(1.54, "feet"),
  38034. name: "Beak",
  38035. image: {
  38036. source: "./media/characters/tux-kusanagi/beak.svg"
  38037. }
  38038. },
  38039. },
  38040. [
  38041. {
  38042. name: "Normal",
  38043. height: math.unit(10 + 3/12, "feet"),
  38044. default: true
  38045. },
  38046. ]
  38047. ))
  38048. characterMakers.push(() => makeCharacter(
  38049. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  38050. {
  38051. front: {
  38052. height: math.unit(58, "feet"),
  38053. weight: math.unit(200, "tons"),
  38054. name: "Front",
  38055. image: {
  38056. source: "./media/characters/uzarmazari/front.svg",
  38057. extra: 1575/1455,
  38058. bottom: 152/1727
  38059. }
  38060. },
  38061. back: {
  38062. height: math.unit(58, "feet"),
  38063. weight: math.unit(200, "tons"),
  38064. name: "Back",
  38065. image: {
  38066. source: "./media/characters/uzarmazari/back.svg",
  38067. extra: 1585/1510,
  38068. bottom: 157/1742
  38069. }
  38070. },
  38071. head: {
  38072. height: math.unit(26, "feet"),
  38073. name: "Head",
  38074. image: {
  38075. source: "./media/characters/uzarmazari/head.svg"
  38076. }
  38077. },
  38078. },
  38079. [
  38080. {
  38081. name: "Normal",
  38082. height: math.unit(58, "feet"),
  38083. default: true
  38084. },
  38085. ]
  38086. ))
  38087. characterMakers.push(() => makeCharacter(
  38088. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  38089. {
  38090. side: {
  38091. height: math.unit(15, "feet"),
  38092. name: "Side",
  38093. image: {
  38094. source: "./media/characters/akitu/side.svg",
  38095. extra: 1421/1321,
  38096. bottom: 157/1578
  38097. }
  38098. },
  38099. front: {
  38100. height: math.unit(15, "feet"),
  38101. name: "Front",
  38102. image: {
  38103. source: "./media/characters/akitu/front.svg",
  38104. extra: 1435/1326,
  38105. bottom: 232/1667
  38106. }
  38107. },
  38108. },
  38109. [
  38110. {
  38111. name: "Normal",
  38112. height: math.unit(15, "feet"),
  38113. default: true
  38114. },
  38115. ]
  38116. ))
  38117. characterMakers.push(() => makeCharacter(
  38118. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38119. {
  38120. front: {
  38121. height: math.unit(10 + 8/12, "feet"),
  38122. name: "Front",
  38123. image: {
  38124. source: "./media/characters/azalie-croixland/front.svg",
  38125. extra: 1972/1856,
  38126. bottom: 31/2003
  38127. }
  38128. },
  38129. },
  38130. [
  38131. {
  38132. name: "Original Height",
  38133. height: math.unit(5 + 4/12, "feet")
  38134. },
  38135. {
  38136. name: "Normal Height",
  38137. height: math.unit(10 + 8/12, "feet"),
  38138. default: true
  38139. },
  38140. ]
  38141. ))
  38142. characterMakers.push(() => makeCharacter(
  38143. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38144. {
  38145. side: {
  38146. height: math.unit(7 + 1/12, "feet"),
  38147. weight: math.unit(245, "lb"),
  38148. name: "Side",
  38149. image: {
  38150. source: "./media/characters/kavus-kazian/side.svg",
  38151. extra: 349/342,
  38152. bottom: 15/364
  38153. }
  38154. },
  38155. },
  38156. [
  38157. {
  38158. name: "Normal",
  38159. height: math.unit(7 + 1/12, "feet"),
  38160. default: true
  38161. },
  38162. ]
  38163. ))
  38164. characterMakers.push(() => makeCharacter(
  38165. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38166. {
  38167. normalFront: {
  38168. height: math.unit(5 + 11/12, "feet"),
  38169. name: "Front",
  38170. image: {
  38171. source: "./media/characters/moonlight-rose/normal-front.svg",
  38172. extra: 1980/1825,
  38173. bottom: 18/1998
  38174. },
  38175. form: "normal",
  38176. default: true
  38177. },
  38178. normalBack: {
  38179. height: math.unit(5 + 11/12, "feet"),
  38180. name: "Back",
  38181. image: {
  38182. source: "./media/characters/moonlight-rose/normal-back.svg",
  38183. extra: 2010/1839,
  38184. bottom: 10/2020
  38185. },
  38186. form: "normal"
  38187. },
  38188. demonFront: {
  38189. height: math.unit(1.5, "earths"),
  38190. name: "Front",
  38191. image: {
  38192. source: "./media/characters/moonlight-rose/demon.svg",
  38193. extra: 1400/1294,
  38194. bottom: 45/1445
  38195. },
  38196. form: "demon",
  38197. default: true
  38198. },
  38199. terraFront: {
  38200. height: math.unit(1.5, "earths"),
  38201. name: "Front",
  38202. image: {
  38203. source: "./media/characters/moonlight-rose/terra.svg"
  38204. },
  38205. form: "terra",
  38206. default: true
  38207. },
  38208. jupiterFront: {
  38209. height: math.unit(69911*2, "km"),
  38210. name: "Front",
  38211. image: {
  38212. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38213. extra: 1367/1286,
  38214. bottom: 55/1422
  38215. },
  38216. form: "jupiter",
  38217. default: true
  38218. },
  38219. neptuneFront: {
  38220. height: math.unit(24622*2, "feet"),
  38221. name: "Front",
  38222. image: {
  38223. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38224. extra: 1851/1712,
  38225. bottom: 0/1851
  38226. },
  38227. form: "neptune",
  38228. default: true
  38229. },
  38230. },
  38231. [
  38232. {
  38233. name: "\"Natural\" Height",
  38234. height: math.unit(5 + 11/12, "feet"),
  38235. form: "normal"
  38236. },
  38237. {
  38238. name: "Smallest comfortable size",
  38239. height: math.unit(40, "meters"),
  38240. form: "normal"
  38241. },
  38242. {
  38243. name: "Common size",
  38244. height: math.unit(50, "km"),
  38245. form: "normal",
  38246. default: true
  38247. },
  38248. {
  38249. name: "Normal",
  38250. height: math.unit(1.5, "earths"),
  38251. form: "demon",
  38252. default: true
  38253. },
  38254. {
  38255. name: "Universal",
  38256. height: math.unit(15, "universes"),
  38257. form: "demon"
  38258. },
  38259. {
  38260. name: "Earth",
  38261. height: math.unit(1.5, "earths"),
  38262. form: "terra",
  38263. default: true
  38264. },
  38265. {
  38266. name: "Super Earth",
  38267. height: math.unit(67.5, "earths"),
  38268. form: "terra"
  38269. },
  38270. {
  38271. name: "Doesn't fit in a solar system...",
  38272. height: math.unit(1, "galaxy"),
  38273. form: "terra"
  38274. },
  38275. {
  38276. name: "Saturn",
  38277. height: math.unit(58232*2, "km"),
  38278. form: "jupiter"
  38279. },
  38280. {
  38281. name: "Jupiter",
  38282. height: math.unit(69911*2, "km"),
  38283. form: "jupiter",
  38284. default: true
  38285. },
  38286. {
  38287. name: "HD 100546 b",
  38288. height: math.unit(482938, "km"),
  38289. form: "jupiter"
  38290. },
  38291. {
  38292. name: "Enceladus",
  38293. height: math.unit(513*2, "km"),
  38294. form: "neptune"
  38295. },
  38296. {
  38297. name: "Europe",
  38298. height: math.unit(1560*2, "km"),
  38299. form: "neptune"
  38300. },
  38301. {
  38302. name: "Neptune",
  38303. height: math.unit(24622*2, "km"),
  38304. form: "neptune",
  38305. default: true
  38306. },
  38307. {
  38308. name: "CoRoT-9b",
  38309. height: math.unit(75067*2, "km"),
  38310. form: "neptune"
  38311. },
  38312. ],
  38313. {
  38314. "normal": {
  38315. name: "Normal",
  38316. default: true
  38317. },
  38318. "demon": {
  38319. name: "Demon"
  38320. },
  38321. "terra": {
  38322. name: "Terra"
  38323. },
  38324. "jupiter": {
  38325. name: "Jupiter"
  38326. },
  38327. "neptune": {
  38328. name: "Neptune"
  38329. }
  38330. }
  38331. ))
  38332. characterMakers.push(() => makeCharacter(
  38333. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38334. {
  38335. front: {
  38336. height: math.unit(16, "feet"),
  38337. weight: math.unit(610, "kg"),
  38338. name: "Front",
  38339. image: {
  38340. source: "./media/characters/huckle/front.svg",
  38341. extra: 1731/1625,
  38342. bottom: 33/1764
  38343. }
  38344. },
  38345. back: {
  38346. height: math.unit(16, "feet"),
  38347. weight: math.unit(610, "kg"),
  38348. name: "Back",
  38349. image: {
  38350. source: "./media/characters/huckle/back.svg",
  38351. extra: 1738/1651,
  38352. bottom: 37/1775
  38353. }
  38354. },
  38355. laughing: {
  38356. height: math.unit(3.75, "feet"),
  38357. name: "Laughing",
  38358. image: {
  38359. source: "./media/characters/huckle/laughing.svg"
  38360. }
  38361. },
  38362. angry: {
  38363. height: math.unit(4.15, "feet"),
  38364. name: "Angry",
  38365. image: {
  38366. source: "./media/characters/huckle/angry.svg"
  38367. }
  38368. },
  38369. },
  38370. [
  38371. {
  38372. name: "Normal",
  38373. height: math.unit(16, "feet"),
  38374. default: true
  38375. },
  38376. {
  38377. name: "Mini Macro",
  38378. height: math.unit(463, "feet")
  38379. },
  38380. {
  38381. name: "Macro",
  38382. height: math.unit(1680, "meters")
  38383. },
  38384. {
  38385. name: "Mega Macro",
  38386. height: math.unit(175, "km")
  38387. },
  38388. {
  38389. name: "Terra Macro",
  38390. height: math.unit(32, "gigameters")
  38391. },
  38392. {
  38393. name: "Multiverse+",
  38394. height: math.unit(2.56e23, "yottameters")
  38395. },
  38396. ]
  38397. ))
  38398. characterMakers.push(() => makeCharacter(
  38399. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38400. {
  38401. front: {
  38402. height: math.unit(6 + 9/12, "feet"),
  38403. weight: math.unit(280, "lb"),
  38404. name: "Front",
  38405. image: {
  38406. source: "./media/characters/candy/front.svg",
  38407. extra: 234/217,
  38408. bottom: 11/245
  38409. }
  38410. },
  38411. },
  38412. [
  38413. {
  38414. name: "Really Small",
  38415. height: math.unit(0.1, "nm")
  38416. },
  38417. {
  38418. name: "Micro",
  38419. height: math.unit(2, "inches")
  38420. },
  38421. {
  38422. name: "Normal",
  38423. height: math.unit(6 + 9/12, "feet"),
  38424. default: true
  38425. },
  38426. {
  38427. name: "Small Macro",
  38428. height: math.unit(69, "feet")
  38429. },
  38430. {
  38431. name: "Macro",
  38432. height: math.unit(160, "feet")
  38433. },
  38434. {
  38435. name: "Megamacro",
  38436. height: math.unit(22000, "miles")
  38437. },
  38438. {
  38439. name: "Gigamacro",
  38440. height: math.unit(50000, "miles")
  38441. },
  38442. ]
  38443. ))
  38444. characterMakers.push(() => makeCharacter(
  38445. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38446. {
  38447. front: {
  38448. height: math.unit(4, "feet"),
  38449. weight: math.unit(90, "lb"),
  38450. name: "Front",
  38451. image: {
  38452. source: "./media/characters/joey-mcdonald/front.svg",
  38453. extra: 1059/852,
  38454. bottom: 33/1092
  38455. }
  38456. },
  38457. back: {
  38458. height: math.unit(4, "feet"),
  38459. weight: math.unit(90, "lb"),
  38460. name: "Back",
  38461. image: {
  38462. source: "./media/characters/joey-mcdonald/back.svg",
  38463. extra: 1077/879,
  38464. bottom: 5/1082
  38465. }
  38466. },
  38467. frontKobold: {
  38468. height: math.unit(4, "feet"),
  38469. weight: math.unit(100, "lb"),
  38470. name: "Front-kobold",
  38471. image: {
  38472. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38473. extra: 1480/1367,
  38474. bottom: 0/1480
  38475. }
  38476. },
  38477. backKobold: {
  38478. height: math.unit(4, "feet"),
  38479. weight: math.unit(100, "lb"),
  38480. name: "Back-kobold",
  38481. image: {
  38482. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38483. extra: 1449/1361,
  38484. bottom: 0/1449
  38485. }
  38486. },
  38487. },
  38488. [
  38489. {
  38490. name: "Normal",
  38491. height: math.unit(4, "feet"),
  38492. default: true
  38493. },
  38494. ]
  38495. ))
  38496. characterMakers.push(() => makeCharacter(
  38497. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38498. {
  38499. front: {
  38500. height: math.unit(12 + 6/12, "feet"),
  38501. name: "Front",
  38502. image: {
  38503. source: "./media/characters/kass-lockheed/front.svg",
  38504. extra: 354/343,
  38505. bottom: 9/363
  38506. }
  38507. },
  38508. back: {
  38509. height: math.unit(12 + 6/12, "feet"),
  38510. name: "Back",
  38511. image: {
  38512. source: "./media/characters/kass-lockheed/back.svg",
  38513. extra: 364/352,
  38514. bottom: 3/367
  38515. }
  38516. },
  38517. dick: {
  38518. height: math.unit(3.12, "feet"),
  38519. name: "Dick",
  38520. image: {
  38521. source: "./media/characters/kass-lockheed/dick.svg"
  38522. }
  38523. },
  38524. head: {
  38525. height: math.unit(2.6, "feet"),
  38526. name: "Head",
  38527. image: {
  38528. source: "./media/characters/kass-lockheed/head.svg"
  38529. }
  38530. },
  38531. bleh: {
  38532. height: math.unit(2.85, "feet"),
  38533. name: "Bleh",
  38534. image: {
  38535. source: "./media/characters/kass-lockheed/bleh.svg"
  38536. }
  38537. },
  38538. smug: {
  38539. height: math.unit(2.85, "feet"),
  38540. name: "Smug",
  38541. image: {
  38542. source: "./media/characters/kass-lockheed/smug.svg"
  38543. }
  38544. },
  38545. },
  38546. [
  38547. {
  38548. name: "Normal",
  38549. height: math.unit(12 + 6/12, "feet"),
  38550. default: true
  38551. },
  38552. ]
  38553. ))
  38554. characterMakers.push(() => makeCharacter(
  38555. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38556. {
  38557. front: {
  38558. height: math.unit(6 + 2/12, "feet"),
  38559. name: "Front",
  38560. image: {
  38561. source: "./media/characters/taylor/front.svg",
  38562. extra: 639/495,
  38563. bottom: 12/651
  38564. }
  38565. },
  38566. },
  38567. [
  38568. {
  38569. name: "Normal",
  38570. height: math.unit(6 + 2/12, "feet"),
  38571. default: true
  38572. },
  38573. {
  38574. name: "Big",
  38575. height: math.unit(15, "feet")
  38576. },
  38577. {
  38578. name: "Lorg",
  38579. height: math.unit(80, "feet")
  38580. },
  38581. {
  38582. name: "Too Lorg",
  38583. height: math.unit(120, "feet")
  38584. },
  38585. ]
  38586. ))
  38587. characterMakers.push(() => makeCharacter(
  38588. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38589. {
  38590. front: {
  38591. height: math.unit(15, "feet"),
  38592. name: "Front",
  38593. image: {
  38594. source: "./media/characters/kaizer/front.svg",
  38595. extra: 1612/1436,
  38596. bottom: 43/1655
  38597. }
  38598. },
  38599. },
  38600. [
  38601. {
  38602. name: "Normal",
  38603. height: math.unit(15, "feet"),
  38604. default: true
  38605. },
  38606. ]
  38607. ))
  38608. characterMakers.push(() => makeCharacter(
  38609. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38610. {
  38611. front: {
  38612. height: math.unit(2, "feet"),
  38613. weight: math.unit(30, "lb"),
  38614. name: "Front",
  38615. image: {
  38616. source: "./media/characters/sandy/front.svg",
  38617. extra: 1439/1307,
  38618. bottom: 194/1633
  38619. }
  38620. },
  38621. },
  38622. [
  38623. {
  38624. name: "Normal",
  38625. height: math.unit(2, "feet"),
  38626. default: true
  38627. },
  38628. ]
  38629. ))
  38630. characterMakers.push(() => makeCharacter(
  38631. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38632. {
  38633. front: {
  38634. height: math.unit(3, "feet"),
  38635. name: "Front",
  38636. image: {
  38637. source: "./media/characters/mellvi/front.svg",
  38638. extra: 1831/1630,
  38639. bottom: 58/1889
  38640. }
  38641. },
  38642. },
  38643. [
  38644. {
  38645. name: "Normal",
  38646. height: math.unit(3, "feet"),
  38647. default: true
  38648. },
  38649. ]
  38650. ))
  38651. characterMakers.push(() => makeCharacter(
  38652. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38653. {
  38654. front: {
  38655. height: math.unit(5 + 11/12, "feet"),
  38656. weight: math.unit(200, "lb"),
  38657. name: "Front",
  38658. image: {
  38659. source: "./media/characters/shirou/front.svg",
  38660. extra: 2491/2383,
  38661. bottom: 189/2680
  38662. }
  38663. },
  38664. back: {
  38665. height: math.unit(5 + 11/12, "feet"),
  38666. weight: math.unit(200, "lb"),
  38667. name: "Back",
  38668. image: {
  38669. source: "./media/characters/shirou/back.svg",
  38670. extra: 2554/2450,
  38671. bottom: 76/2630
  38672. }
  38673. },
  38674. },
  38675. [
  38676. {
  38677. name: "Normal",
  38678. height: math.unit(5 + 11/12, "feet"),
  38679. default: true
  38680. },
  38681. ]
  38682. ))
  38683. characterMakers.push(() => makeCharacter(
  38684. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38685. {
  38686. front: {
  38687. height: math.unit(6 + 3/12, "feet"),
  38688. weight: math.unit(177, "lb"),
  38689. name: "Front",
  38690. image: {
  38691. source: "./media/characters/noryu/front.svg",
  38692. extra: 973/885,
  38693. bottom: 10/983
  38694. }
  38695. },
  38696. },
  38697. [
  38698. {
  38699. name: "Normal",
  38700. height: math.unit(6 + 3/12, "feet"),
  38701. default: true
  38702. },
  38703. ]
  38704. ))
  38705. characterMakers.push(() => makeCharacter(
  38706. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38707. {
  38708. front: {
  38709. height: math.unit(5 + 6/12, "feet"),
  38710. weight: math.unit(170, "lb"),
  38711. name: "Front",
  38712. image: {
  38713. source: "./media/characters/mevolas-rubenido/front.svg",
  38714. extra: 2109/1901,
  38715. bottom: 96/2205
  38716. }
  38717. },
  38718. },
  38719. [
  38720. {
  38721. name: "Normal",
  38722. height: math.unit(5 + 6/12, "feet"),
  38723. default: true
  38724. },
  38725. ]
  38726. ))
  38727. characterMakers.push(() => makeCharacter(
  38728. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38729. {
  38730. front: {
  38731. height: math.unit(100, "feet"),
  38732. name: "Front",
  38733. image: {
  38734. source: "./media/characters/dee/front.svg",
  38735. extra: 2153/2036,
  38736. bottom: 59/2212
  38737. }
  38738. },
  38739. back: {
  38740. height: math.unit(100, "feet"),
  38741. name: "Back",
  38742. image: {
  38743. source: "./media/characters/dee/back.svg",
  38744. extra: 2183/2058,
  38745. bottom: 75/2258
  38746. }
  38747. },
  38748. foot: {
  38749. height: math.unit(19.43, "feet"),
  38750. name: "Foot",
  38751. image: {
  38752. source: "./media/characters/dee/foot.svg"
  38753. }
  38754. },
  38755. hoof: {
  38756. height: math.unit(20.6, "feet"),
  38757. name: "Hoof",
  38758. image: {
  38759. source: "./media/characters/dee/hoof.svg"
  38760. }
  38761. },
  38762. },
  38763. [
  38764. {
  38765. name: "Macro",
  38766. height: math.unit(100, "feet"),
  38767. default: true
  38768. },
  38769. ]
  38770. ))
  38771. characterMakers.push(() => makeCharacter(
  38772. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38773. {
  38774. front: {
  38775. height: math.unit(5 + 6/12, "feet"),
  38776. name: "Front",
  38777. image: {
  38778. source: "./media/characters/teh/front.svg",
  38779. extra: 1002/847,
  38780. bottom: 62/1064
  38781. }
  38782. },
  38783. },
  38784. [
  38785. {
  38786. name: "Normal",
  38787. height: math.unit(5 + 6/12, "feet"),
  38788. default: true
  38789. },
  38790. ]
  38791. ))
  38792. characterMakers.push(() => makeCharacter(
  38793. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38794. {
  38795. side: {
  38796. height: math.unit(6 + 1/12, "feet"),
  38797. weight: math.unit(204, "lb"),
  38798. name: "Side",
  38799. image: {
  38800. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38801. extra: 974/775,
  38802. bottom: 169/1143
  38803. }
  38804. },
  38805. sitting: {
  38806. height: math.unit(6 + 2/12, "feet"),
  38807. weight: math.unit(204, "lb"),
  38808. name: "Sitting",
  38809. image: {
  38810. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38811. extra: 1175/964,
  38812. bottom: 378/1553
  38813. }
  38814. },
  38815. },
  38816. [
  38817. {
  38818. name: "Normal",
  38819. height: math.unit(6 + 1/12, "feet"),
  38820. default: true
  38821. },
  38822. ]
  38823. ))
  38824. characterMakers.push(() => makeCharacter(
  38825. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38826. {
  38827. front: {
  38828. height: math.unit(6, "inches"),
  38829. name: "Front",
  38830. image: {
  38831. source: "./media/characters/tululi/front.svg",
  38832. extra: 1997/1876,
  38833. bottom: 20/2017
  38834. }
  38835. },
  38836. },
  38837. [
  38838. {
  38839. name: "Normal",
  38840. height: math.unit(6, "inches"),
  38841. default: true
  38842. },
  38843. ]
  38844. ))
  38845. characterMakers.push(() => makeCharacter(
  38846. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38847. {
  38848. front: {
  38849. height: math.unit(4 + 1/12, "feet"),
  38850. name: "Front",
  38851. image: {
  38852. source: "./media/characters/star/front.svg",
  38853. extra: 1493/1189,
  38854. bottom: 48/1541
  38855. }
  38856. },
  38857. },
  38858. [
  38859. {
  38860. name: "Normal",
  38861. height: math.unit(4 + 1/12, "feet"),
  38862. default: true
  38863. },
  38864. ]
  38865. ))
  38866. characterMakers.push(() => makeCharacter(
  38867. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38868. {
  38869. front: {
  38870. height: math.unit(6 + 3/12, "feet"),
  38871. name: "Front",
  38872. image: {
  38873. source: "./media/characters/comet/front.svg",
  38874. extra: 1681/1462,
  38875. bottom: 26/1707
  38876. }
  38877. },
  38878. },
  38879. [
  38880. {
  38881. name: "Normal",
  38882. height: math.unit(6 + 3/12, "feet"),
  38883. default: true
  38884. },
  38885. ]
  38886. ))
  38887. characterMakers.push(() => makeCharacter(
  38888. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38889. {
  38890. front: {
  38891. height: math.unit(950, "feet"),
  38892. name: "Front",
  38893. image: {
  38894. source: "./media/characters/vortex/front.svg",
  38895. extra: 1497/1434,
  38896. bottom: 56/1553
  38897. }
  38898. },
  38899. maw: {
  38900. height: math.unit(285, "feet"),
  38901. name: "Maw",
  38902. image: {
  38903. source: "./media/characters/vortex/maw.svg"
  38904. }
  38905. },
  38906. },
  38907. [
  38908. {
  38909. name: "Macro",
  38910. height: math.unit(950, "feet"),
  38911. default: true
  38912. },
  38913. ]
  38914. ))
  38915. characterMakers.push(() => makeCharacter(
  38916. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38917. {
  38918. front: {
  38919. height: math.unit(600, "feet"),
  38920. weight: math.unit(0.02, "grams"),
  38921. name: "Front",
  38922. image: {
  38923. source: "./media/characters/doodle/front.svg",
  38924. extra: 1578/1413,
  38925. bottom: 37/1615
  38926. }
  38927. },
  38928. },
  38929. [
  38930. {
  38931. name: "Macro",
  38932. height: math.unit(600, "feet"),
  38933. default: true
  38934. },
  38935. ]
  38936. ))
  38937. characterMakers.push(() => makeCharacter(
  38938. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38939. {
  38940. front: {
  38941. height: math.unit(6 + 6/12, "feet"),
  38942. name: "Front",
  38943. image: {
  38944. source: "./media/characters/jai/front.svg",
  38945. extra: 1645/1534,
  38946. bottom: 115/1760
  38947. }
  38948. },
  38949. },
  38950. [
  38951. {
  38952. name: "Normal",
  38953. height: math.unit(6 + 6/12, "feet"),
  38954. default: true
  38955. },
  38956. ]
  38957. ))
  38958. characterMakers.push(() => makeCharacter(
  38959. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38960. {
  38961. front: {
  38962. height: math.unit(6 + 8/12, "feet"),
  38963. name: "Front",
  38964. image: {
  38965. source: "./media/characters/pixel/front.svg",
  38966. extra: 1900/1735,
  38967. bottom: 63/1963
  38968. }
  38969. },
  38970. },
  38971. [
  38972. {
  38973. name: "Normal",
  38974. height: math.unit(6 + 8/12, "feet"),
  38975. default: true
  38976. },
  38977. ]
  38978. ))
  38979. characterMakers.push(() => makeCharacter(
  38980. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38981. {
  38982. back: {
  38983. height: math.unit(4 + 1/12, "feet"),
  38984. weight: math.unit(75, "lb"),
  38985. name: "Back",
  38986. image: {
  38987. source: "./media/characters/rhett/back.svg",
  38988. extra: 930/878,
  38989. bottom: 25/955
  38990. }
  38991. },
  38992. front: {
  38993. height: math.unit(4 + 1/12, "feet"),
  38994. weight: math.unit(75, "lb"),
  38995. name: "Front",
  38996. image: {
  38997. source: "./media/characters/rhett/front.svg",
  38998. extra: 1682/1586,
  38999. bottom: 92/1774
  39000. }
  39001. },
  39002. },
  39003. [
  39004. {
  39005. name: "Micro",
  39006. height: math.unit(8, "inches")
  39007. },
  39008. {
  39009. name: "Tiny",
  39010. height: math.unit(2, "feet")
  39011. },
  39012. {
  39013. name: "Normal",
  39014. height: math.unit(4 + 1/12, "feet"),
  39015. default: true
  39016. },
  39017. ]
  39018. ))
  39019. characterMakers.push(() => makeCharacter(
  39020. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  39021. {
  39022. front: {
  39023. height: math.unit(3 + 3/12, "feet"),
  39024. name: "Front",
  39025. image: {
  39026. source: "./media/characters/penny/front.svg",
  39027. extra: 1406/1311,
  39028. bottom: 26/1432
  39029. }
  39030. },
  39031. },
  39032. [
  39033. {
  39034. name: "Normal",
  39035. height: math.unit(3 + 3/12, "feet"),
  39036. default: true
  39037. },
  39038. ]
  39039. ))
  39040. characterMakers.push(() => makeCharacter(
  39041. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  39042. {
  39043. front: {
  39044. height: math.unit(4 + 11/12, "feet"),
  39045. name: "Front",
  39046. image: {
  39047. source: "./media/characters/monty/front.svg",
  39048. extra: 1479/1209,
  39049. bottom: 0/1479
  39050. }
  39051. },
  39052. },
  39053. [
  39054. {
  39055. name: "Normal",
  39056. height: math.unit(4 + 11/12, "feet"),
  39057. default: true
  39058. },
  39059. ]
  39060. ))
  39061. characterMakers.push(() => makeCharacter(
  39062. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  39063. {
  39064. front: {
  39065. height: math.unit(8 + 4/12, "feet"),
  39066. name: "Front",
  39067. image: {
  39068. source: "./media/characters/sterling/front.svg",
  39069. extra: 1420/1236,
  39070. bottom: 27/1447
  39071. }
  39072. },
  39073. },
  39074. [
  39075. {
  39076. name: "Normal",
  39077. height: math.unit(8 + 4/12, "feet"),
  39078. default: true
  39079. },
  39080. ]
  39081. ))
  39082. characterMakers.push(() => makeCharacter(
  39083. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  39084. {
  39085. front: {
  39086. height: math.unit(15, "feet"),
  39087. name: "Front",
  39088. image: {
  39089. source: "./media/characters/marble/front.svg",
  39090. extra: 973/937,
  39091. bottom: 32/1005
  39092. }
  39093. },
  39094. },
  39095. [
  39096. {
  39097. name: "Normal",
  39098. height: math.unit(15, "feet"),
  39099. default: true
  39100. },
  39101. ]
  39102. ))
  39103. characterMakers.push(() => makeCharacter(
  39104. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  39105. {
  39106. front: {
  39107. height: math.unit(3, "inches"),
  39108. name: "Front",
  39109. image: {
  39110. source: "./media/characters/powder/front.svg",
  39111. extra: 1504/1334,
  39112. bottom: 518/2022
  39113. }
  39114. },
  39115. },
  39116. [
  39117. {
  39118. name: "Normal",
  39119. height: math.unit(3, "inches"),
  39120. default: true
  39121. },
  39122. ]
  39123. ))
  39124. characterMakers.push(() => makeCharacter(
  39125. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39126. {
  39127. front: {
  39128. height: math.unit(4 + 5/12, "feet"),
  39129. name: "Front",
  39130. image: {
  39131. source: "./media/characters/joey-raccoon/front.svg",
  39132. extra: 1273/1197,
  39133. bottom: 0/1273
  39134. }
  39135. },
  39136. },
  39137. [
  39138. {
  39139. name: "Normal",
  39140. height: math.unit(4 + 5/12, "feet"),
  39141. default: true
  39142. },
  39143. ]
  39144. ))
  39145. characterMakers.push(() => makeCharacter(
  39146. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39147. {
  39148. front: {
  39149. height: math.unit(8 + 4/12, "feet"),
  39150. name: "Front",
  39151. image: {
  39152. source: "./media/characters/vick/front.svg",
  39153. extra: 2187/2118,
  39154. bottom: 47/2234
  39155. }
  39156. },
  39157. },
  39158. [
  39159. {
  39160. name: "Normal",
  39161. height: math.unit(8 + 4/12, "feet"),
  39162. default: true
  39163. },
  39164. ]
  39165. ))
  39166. characterMakers.push(() => makeCharacter(
  39167. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39168. {
  39169. front: {
  39170. height: math.unit(5 + 5/12, "feet"),
  39171. name: "Front",
  39172. image: {
  39173. source: "./media/characters/mitsy/front.svg",
  39174. extra: 1842/1695,
  39175. bottom: 0/1842
  39176. }
  39177. },
  39178. },
  39179. [
  39180. {
  39181. name: "Normal",
  39182. height: math.unit(5 + 5/12, "feet"),
  39183. default: true
  39184. },
  39185. ]
  39186. ))
  39187. characterMakers.push(() => makeCharacter(
  39188. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39189. {
  39190. front: {
  39191. height: math.unit(6 + 3/12, "feet"),
  39192. name: "Front",
  39193. image: {
  39194. source: "./media/characters/silvy/front.svg",
  39195. extra: 1995/1836,
  39196. bottom: 225/2220
  39197. }
  39198. },
  39199. },
  39200. [
  39201. {
  39202. name: "Normal",
  39203. height: math.unit(6 + 3/12, "feet"),
  39204. default: true
  39205. },
  39206. ]
  39207. ))
  39208. characterMakers.push(() => makeCharacter(
  39209. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39210. {
  39211. front: {
  39212. height: math.unit(3 + 8/12, "feet"),
  39213. name: "Front",
  39214. image: {
  39215. source: "./media/characters/rodney/front.svg",
  39216. extra: 1956/1747,
  39217. bottom: 31/1987
  39218. }
  39219. },
  39220. frontDressed: {
  39221. height: math.unit(2.9, "feet"),
  39222. name: "Front (Dressed)",
  39223. image: {
  39224. source: "./media/characters/rodney/front-dressed.svg",
  39225. extra: 1382/1241,
  39226. bottom: 385/1767
  39227. }
  39228. },
  39229. },
  39230. [
  39231. {
  39232. name: "Normal",
  39233. height: math.unit(3 + 8/12, "feet"),
  39234. default: true
  39235. },
  39236. ]
  39237. ))
  39238. characterMakers.push(() => makeCharacter(
  39239. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39240. {
  39241. front: {
  39242. height: math.unit(5 + 9/12, "feet"),
  39243. weight: math.unit(194, "lbs"),
  39244. name: "Front",
  39245. image: {
  39246. source: "./media/characters/zakail-sudekai/front.svg",
  39247. extra: 2696/2533,
  39248. bottom: 248/2944
  39249. }
  39250. },
  39251. maw: {
  39252. height: math.unit(1.35, "feet"),
  39253. name: "Maw",
  39254. image: {
  39255. source: "./media/characters/zakail-sudekai/maw.svg"
  39256. }
  39257. },
  39258. },
  39259. [
  39260. {
  39261. name: "Normal",
  39262. height: math.unit(5 + 9/12, "feet"),
  39263. default: true
  39264. },
  39265. ]
  39266. ))
  39267. characterMakers.push(() => makeCharacter(
  39268. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39269. {
  39270. front: {
  39271. height: math.unit(8 + 4/12, "feet"),
  39272. weight: math.unit(1200, "lb"),
  39273. name: "Front",
  39274. image: {
  39275. source: "./media/characters/eleanor/front.svg",
  39276. extra: 1226/1192,
  39277. bottom: 52/1278
  39278. }
  39279. },
  39280. back: {
  39281. height: math.unit(8 + 4/12, "feet"),
  39282. weight: math.unit(1200, "lb"),
  39283. name: "Back",
  39284. image: {
  39285. source: "./media/characters/eleanor/back.svg",
  39286. extra: 1242/1184,
  39287. bottom: 60/1302
  39288. }
  39289. },
  39290. head: {
  39291. height: math.unit(2.62, "feet"),
  39292. name: "Head",
  39293. image: {
  39294. source: "./media/characters/eleanor/head.svg"
  39295. }
  39296. },
  39297. },
  39298. [
  39299. {
  39300. name: "Normal",
  39301. height: math.unit(8 + 4/12, "feet"),
  39302. default: true
  39303. },
  39304. ]
  39305. ))
  39306. characterMakers.push(() => makeCharacter(
  39307. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39308. {
  39309. front: {
  39310. height: math.unit(8 + 4/12, "feet"),
  39311. weight: math.unit(750, "lb"),
  39312. name: "Front",
  39313. image: {
  39314. source: "./media/characters/tanya/front.svg",
  39315. extra: 1749/1615,
  39316. bottom: 33/1782
  39317. }
  39318. },
  39319. },
  39320. [
  39321. {
  39322. name: "Normal",
  39323. height: math.unit(8 + 4/12, "feet"),
  39324. default: true
  39325. },
  39326. ]
  39327. ))
  39328. characterMakers.push(() => makeCharacter(
  39329. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39330. {
  39331. front: {
  39332. height: math.unit(5, "feet"),
  39333. weight: math.unit(225, "lb"),
  39334. name: "Front",
  39335. image: {
  39336. source: "./media/characters/cindy/front.svg",
  39337. extra: 1320/1250,
  39338. bottom: 42/1362
  39339. }
  39340. },
  39341. frontDressed: {
  39342. height: math.unit(5, "feet"),
  39343. weight: math.unit(225, "lb"),
  39344. name: "Front (Dressed)",
  39345. image: {
  39346. source: "./media/characters/cindy/front-dressed.svg",
  39347. extra: 1320/1250,
  39348. bottom: 42/1362
  39349. }
  39350. },
  39351. back: {
  39352. height: math.unit(5, "feet"),
  39353. weight: math.unit(225, "lb"),
  39354. name: "Back",
  39355. image: {
  39356. source: "./media/characters/cindy/back.svg",
  39357. extra: 1384/1346,
  39358. bottom: 14/1398
  39359. }
  39360. },
  39361. },
  39362. [
  39363. {
  39364. name: "Normal",
  39365. height: math.unit(5, "feet"),
  39366. default: true
  39367. },
  39368. ]
  39369. ))
  39370. characterMakers.push(() => makeCharacter(
  39371. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39372. {
  39373. front: {
  39374. height: math.unit(6 + 9/12, "feet"),
  39375. weight: math.unit(440, "lb"),
  39376. name: "Front",
  39377. image: {
  39378. source: "./media/characters/wilbur-owen/front.svg",
  39379. extra: 1575/1448,
  39380. bottom: 72/1647
  39381. }
  39382. },
  39383. back: {
  39384. height: math.unit(6 + 9/12, "feet"),
  39385. weight: math.unit(440, "lb"),
  39386. name: "Back",
  39387. image: {
  39388. source: "./media/characters/wilbur-owen/back.svg",
  39389. extra: 1578/1445,
  39390. bottom: 36/1614
  39391. }
  39392. },
  39393. },
  39394. [
  39395. {
  39396. name: "Normal",
  39397. height: math.unit(6 + 9/12, "feet"),
  39398. default: true
  39399. },
  39400. ]
  39401. ))
  39402. characterMakers.push(() => makeCharacter(
  39403. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39404. {
  39405. front: {
  39406. height: math.unit(6 + 5/12, "feet"),
  39407. weight: math.unit(650, "lb"),
  39408. name: "Front",
  39409. image: {
  39410. source: "./media/characters/keegan/front.svg",
  39411. extra: 2387/2198,
  39412. bottom: 33/2420
  39413. }
  39414. },
  39415. side: {
  39416. height: math.unit(6 + 5/12, "feet"),
  39417. weight: math.unit(650, "lb"),
  39418. name: "Side",
  39419. image: {
  39420. source: "./media/characters/keegan/side.svg",
  39421. extra: 2390/2202,
  39422. bottom: 47/2437
  39423. }
  39424. },
  39425. back: {
  39426. height: math.unit(6 + 5/12, "feet"),
  39427. weight: math.unit(650, "lb"),
  39428. name: "Back",
  39429. image: {
  39430. source: "./media/characters/keegan/back.svg",
  39431. extra: 2418/2268,
  39432. bottom: 15/2433
  39433. }
  39434. },
  39435. frontSfw: {
  39436. height: math.unit(6 + 5/12, "feet"),
  39437. weight: math.unit(650, "lb"),
  39438. name: "Front (SFW)",
  39439. image: {
  39440. source: "./media/characters/keegan/front-sfw.svg",
  39441. extra: 2387/2198,
  39442. bottom: 33/2420
  39443. }
  39444. },
  39445. beans: {
  39446. height: math.unit(1.85, "feet"),
  39447. name: "Beans",
  39448. image: {
  39449. source: "./media/characters/keegan/beans.svg"
  39450. }
  39451. },
  39452. },
  39453. [
  39454. {
  39455. name: "Normal",
  39456. height: math.unit(6 + 5/12, "feet"),
  39457. default: true
  39458. },
  39459. ]
  39460. ))
  39461. characterMakers.push(() => makeCharacter(
  39462. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39463. {
  39464. front: {
  39465. height: math.unit(9, "feet"),
  39466. name: "Front",
  39467. image: {
  39468. source: "./media/characters/colton/front.svg",
  39469. extra: 1589/1326,
  39470. bottom: 139/1728
  39471. }
  39472. },
  39473. },
  39474. [
  39475. {
  39476. name: "Normal",
  39477. height: math.unit(9, "feet"),
  39478. default: true
  39479. },
  39480. ]
  39481. ))
  39482. characterMakers.push(() => makeCharacter(
  39483. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39484. {
  39485. front: {
  39486. height: math.unit(2 + 9/12, "feet"),
  39487. name: "Front",
  39488. image: {
  39489. source: "./media/characters/bora/front.svg",
  39490. extra: 1265/1250,
  39491. bottom: 24/1289
  39492. }
  39493. },
  39494. },
  39495. [
  39496. {
  39497. name: "Normal",
  39498. height: math.unit(2 + 9/12, "feet"),
  39499. default: true
  39500. },
  39501. ]
  39502. ))
  39503. characterMakers.push(() => makeCharacter(
  39504. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39505. {
  39506. front: {
  39507. height: math.unit(8, "feet"),
  39508. name: "Front",
  39509. image: {
  39510. source: "./media/characters/myu-myu/front.svg",
  39511. extra: 1949/1857,
  39512. bottom: 90/2039
  39513. }
  39514. },
  39515. },
  39516. [
  39517. {
  39518. name: "Normal",
  39519. height: math.unit(8, "feet"),
  39520. default: true
  39521. },
  39522. {
  39523. name: "Big",
  39524. height: math.unit(15, "feet")
  39525. },
  39526. {
  39527. name: "BIG",
  39528. height: math.unit(25, "feet")
  39529. },
  39530. ]
  39531. ))
  39532. characterMakers.push(() => makeCharacter(
  39533. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39534. {
  39535. side: {
  39536. height: math.unit(7 + 5/12, "feet"),
  39537. weight: math.unit(2800, "lb"),
  39538. name: "Side",
  39539. image: {
  39540. source: "./media/characters/haloren/side.svg",
  39541. extra: 1793/409,
  39542. bottom: 59/1852
  39543. }
  39544. },
  39545. frontPaw: {
  39546. height: math.unit(2.36, "feet"),
  39547. name: "Front paw",
  39548. image: {
  39549. source: "./media/characters/haloren/front-paw.svg"
  39550. }
  39551. },
  39552. hindPaw: {
  39553. height: math.unit(3.18, "feet"),
  39554. name: "Hind paw",
  39555. image: {
  39556. source: "./media/characters/haloren/hind-paw.svg"
  39557. }
  39558. },
  39559. maw: {
  39560. height: math.unit(5.05, "feet"),
  39561. name: "Maw",
  39562. image: {
  39563. source: "./media/characters/haloren/maw.svg"
  39564. }
  39565. },
  39566. dick: {
  39567. height: math.unit(2.90, "feet"),
  39568. name: "Dick",
  39569. image: {
  39570. source: "./media/characters/haloren/dick.svg"
  39571. }
  39572. },
  39573. },
  39574. [
  39575. {
  39576. name: "Normal",
  39577. height: math.unit(7 + 5/12, "feet"),
  39578. default: true
  39579. },
  39580. {
  39581. name: "Enhanced",
  39582. height: math.unit(14 + 3/12, "feet")
  39583. },
  39584. ]
  39585. ))
  39586. characterMakers.push(() => makeCharacter(
  39587. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39588. {
  39589. front: {
  39590. height: math.unit(171, "cm"),
  39591. name: "Front",
  39592. image: {
  39593. source: "./media/characters/kimmy/front.svg",
  39594. extra: 1491/1435,
  39595. bottom: 53/1544
  39596. }
  39597. },
  39598. },
  39599. [
  39600. {
  39601. name: "Small",
  39602. height: math.unit(9, "cm")
  39603. },
  39604. {
  39605. name: "Normal",
  39606. height: math.unit(171, "cm"),
  39607. default: true
  39608. },
  39609. ]
  39610. ))
  39611. characterMakers.push(() => makeCharacter(
  39612. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39613. {
  39614. front: {
  39615. height: math.unit(8, "feet"),
  39616. weight: math.unit(300, "lb"),
  39617. name: "Front",
  39618. image: {
  39619. source: "./media/characters/galeboomer/front.svg",
  39620. extra: 4651/4415,
  39621. bottom: 162/4813
  39622. }
  39623. },
  39624. back: {
  39625. height: math.unit(8, "feet"),
  39626. weight: math.unit(300, "lb"),
  39627. name: "Back",
  39628. image: {
  39629. source: "./media/characters/galeboomer/back.svg",
  39630. extra: 4544/4314,
  39631. bottom: 16/4560
  39632. }
  39633. },
  39634. frontAlt: {
  39635. height: math.unit(8, "feet"),
  39636. weight: math.unit(300, "lb"),
  39637. name: "Front (Alt)",
  39638. image: {
  39639. source: "./media/characters/galeboomer/front-alt.svg",
  39640. extra: 4458/4228,
  39641. bottom: 68/4526
  39642. }
  39643. },
  39644. maw: {
  39645. height: math.unit(1.2, "feet"),
  39646. name: "Maw",
  39647. image: {
  39648. source: "./media/characters/galeboomer/maw.svg"
  39649. }
  39650. },
  39651. },
  39652. [
  39653. {
  39654. name: "Normal",
  39655. height: math.unit(8, "feet"),
  39656. default: true
  39657. },
  39658. ]
  39659. ))
  39660. characterMakers.push(() => makeCharacter(
  39661. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39662. {
  39663. front: {
  39664. height: math.unit(5 + 9/12, "feet"),
  39665. weight: math.unit(120, "lb"),
  39666. name: "Front",
  39667. image: {
  39668. source: "./media/characters/chyr/front.svg",
  39669. extra: 1323/1254,
  39670. bottom: 63/1386
  39671. }
  39672. },
  39673. back: {
  39674. height: math.unit(5 + 9/12, "feet"),
  39675. weight: math.unit(120, "lb"),
  39676. name: "Back",
  39677. image: {
  39678. source: "./media/characters/chyr/back.svg",
  39679. extra: 1323/1252,
  39680. bottom: 48/1371
  39681. }
  39682. },
  39683. },
  39684. [
  39685. {
  39686. name: "Normal",
  39687. height: math.unit(5 + 9/12, "feet"),
  39688. default: true
  39689. },
  39690. ]
  39691. ))
  39692. characterMakers.push(() => makeCharacter(
  39693. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39694. {
  39695. front: {
  39696. height: math.unit(7, "feet"),
  39697. weight: math.unit(310, "lb"),
  39698. name: "Front",
  39699. image: {
  39700. source: "./media/characters/solarus/front.svg",
  39701. extra: 2415/2021,
  39702. bottom: 103/2518
  39703. }
  39704. },
  39705. back: {
  39706. height: math.unit(7, "feet"),
  39707. weight: math.unit(310, "lb"),
  39708. name: "Back",
  39709. image: {
  39710. source: "./media/characters/solarus/back.svg",
  39711. extra: 2463/2089,
  39712. bottom: 79/2542
  39713. }
  39714. },
  39715. },
  39716. [
  39717. {
  39718. name: "Normal",
  39719. height: math.unit(7, "feet"),
  39720. default: true
  39721. },
  39722. ]
  39723. ))
  39724. characterMakers.push(() => makeCharacter(
  39725. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39726. {
  39727. front: {
  39728. height: math.unit(16, "feet"),
  39729. name: "Front",
  39730. image: {
  39731. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39732. extra: 1844/1780,
  39733. bottom: 58/1902
  39734. }
  39735. },
  39736. winterCoat: {
  39737. height: math.unit(16, "feet"),
  39738. name: "Winter Coat",
  39739. image: {
  39740. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39741. extra: 1807/1775,
  39742. bottom: 69/1876
  39743. }
  39744. },
  39745. },
  39746. [
  39747. {
  39748. name: "Normal",
  39749. height: math.unit(16, "feet"),
  39750. default: true
  39751. },
  39752. {
  39753. name: "Chicago Size",
  39754. height: math.unit(560, "feet")
  39755. },
  39756. ]
  39757. ))
  39758. characterMakers.push(() => makeCharacter(
  39759. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39760. {
  39761. front: {
  39762. height: math.unit(11 + 6/12, "feet"),
  39763. weight: math.unit(1366, "lb"),
  39764. name: "Front",
  39765. image: {
  39766. source: "./media/characters/lexor/front.svg",
  39767. extra: 1560/1481,
  39768. bottom: 211/1771
  39769. }
  39770. },
  39771. back: {
  39772. height: math.unit(11 + 6/12, "feet"),
  39773. weight: math.unit(1366, "lb"),
  39774. name: "Back",
  39775. image: {
  39776. source: "./media/characters/lexor/back.svg",
  39777. extra: 1614/1533,
  39778. bottom: 76/1690
  39779. }
  39780. },
  39781. maw: {
  39782. height: math.unit(3, "feet"),
  39783. name: "Maw",
  39784. image: {
  39785. source: "./media/characters/lexor/maw.svg"
  39786. }
  39787. },
  39788. dick: {
  39789. height: math.unit(2.59, "feet"),
  39790. name: "Dick",
  39791. image: {
  39792. source: "./media/characters/lexor/dick.svg"
  39793. }
  39794. },
  39795. },
  39796. [
  39797. {
  39798. name: "Normal",
  39799. height: math.unit(11 + 6/12, "feet"),
  39800. default: true
  39801. },
  39802. ]
  39803. ))
  39804. characterMakers.push(() => makeCharacter(
  39805. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39806. {
  39807. front: {
  39808. height: math.unit(5 + 8/12, "feet"),
  39809. name: "Front",
  39810. image: {
  39811. source: "./media/characters/magnum/front.svg",
  39812. extra: 942/855,
  39813. bottom: 26/968
  39814. }
  39815. },
  39816. },
  39817. [
  39818. {
  39819. name: "Normal",
  39820. height: math.unit(5 + 8/12, "feet"),
  39821. default: true
  39822. },
  39823. ]
  39824. ))
  39825. characterMakers.push(() => makeCharacter(
  39826. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39827. {
  39828. front: {
  39829. height: math.unit(18 + 4/12, "feet"),
  39830. weight: math.unit(1500, "kg"),
  39831. name: "Front",
  39832. image: {
  39833. source: "./media/characters/solas-sharpsman/front.svg",
  39834. extra: 1698/1589,
  39835. bottom: 0/1698
  39836. }
  39837. },
  39838. },
  39839. [
  39840. {
  39841. name: "Normal",
  39842. height: math.unit(18 + 4/12, "feet"),
  39843. default: true
  39844. },
  39845. ]
  39846. ))
  39847. characterMakers.push(() => makeCharacter(
  39848. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39849. {
  39850. front: {
  39851. height: math.unit(5 + 5/12, "feet"),
  39852. weight: math.unit(180, "lb"),
  39853. name: "Front",
  39854. image: {
  39855. source: "./media/characters/october/front.svg",
  39856. extra: 1800/1650,
  39857. bottom: 0/1800
  39858. }
  39859. },
  39860. frontNsfw: {
  39861. height: math.unit(5 + 5/12, "feet"),
  39862. weight: math.unit(180, "lb"),
  39863. name: "Front (NSFW)",
  39864. image: {
  39865. source: "./media/characters/october/front-nsfw.svg",
  39866. extra: 1392/1307,
  39867. bottom: 42/1434
  39868. }
  39869. },
  39870. },
  39871. [
  39872. {
  39873. name: "Normal",
  39874. height: math.unit(5 + 5/12, "feet"),
  39875. default: true
  39876. },
  39877. ]
  39878. ))
  39879. characterMakers.push(() => makeCharacter(
  39880. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39881. {
  39882. front: {
  39883. height: math.unit(8 + 6/12, "feet"),
  39884. name: "Front",
  39885. image: {
  39886. source: "./media/characters/essynkardi/front.svg",
  39887. extra: 1541/1457,
  39888. bottom: 47/1588
  39889. }
  39890. },
  39891. },
  39892. [
  39893. {
  39894. name: "Normal",
  39895. height: math.unit(8 + 6/12, "feet"),
  39896. default: true
  39897. },
  39898. ]
  39899. ))
  39900. characterMakers.push(() => makeCharacter(
  39901. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39902. {
  39903. front: {
  39904. height: math.unit(6 + 6/12, "feet"),
  39905. weight: math.unit(7, "lb"),
  39906. name: "Front",
  39907. image: {
  39908. source: "./media/characters/icky/front.svg",
  39909. extra: 813/782,
  39910. bottom: 66/879
  39911. }
  39912. },
  39913. back: {
  39914. height: math.unit(6 + 6/12, "feet"),
  39915. weight: math.unit(7, "lb"),
  39916. name: "Back",
  39917. image: {
  39918. source: "./media/characters/icky/back.svg",
  39919. extra: 754/735,
  39920. bottom: 56/810
  39921. }
  39922. },
  39923. },
  39924. [
  39925. {
  39926. name: "Normal",
  39927. height: math.unit(6 + 6/12, "feet"),
  39928. default: true
  39929. },
  39930. ]
  39931. ))
  39932. characterMakers.push(() => makeCharacter(
  39933. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39934. {
  39935. front: {
  39936. height: math.unit(15, "feet"),
  39937. name: "Front",
  39938. image: {
  39939. source: "./media/characters/rojas/front.svg",
  39940. extra: 1462/1408,
  39941. bottom: 95/1557
  39942. }
  39943. },
  39944. back: {
  39945. height: math.unit(15, "feet"),
  39946. name: "Back",
  39947. image: {
  39948. source: "./media/characters/rojas/back.svg",
  39949. extra: 1023/954,
  39950. bottom: 28/1051
  39951. }
  39952. },
  39953. },
  39954. [
  39955. {
  39956. name: "Normal",
  39957. height: math.unit(15, "feet"),
  39958. default: true
  39959. },
  39960. ]
  39961. ))
  39962. characterMakers.push(() => makeCharacter(
  39963. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39964. {
  39965. frontHuman: {
  39966. height: math.unit(5 + 7/12, "feet"),
  39967. name: "Front (Human)",
  39968. image: {
  39969. source: "./media/characters/alek-dryagan/front-human.svg",
  39970. extra: 1687/1667,
  39971. bottom: 69/1756
  39972. }
  39973. },
  39974. backHuman: {
  39975. height: math.unit(5 + 7/12, "feet"),
  39976. name: "Back (Human)",
  39977. image: {
  39978. source: "./media/characters/alek-dryagan/back-human.svg",
  39979. extra: 1670/1649,
  39980. bottom: 65/1735
  39981. }
  39982. },
  39983. frontDemi: {
  39984. height: math.unit(65, "feet"),
  39985. name: "Front (Demi)",
  39986. image: {
  39987. source: "./media/characters/alek-dryagan/front-demi.svg",
  39988. extra: 1669/1642,
  39989. bottom: 49/1718
  39990. }
  39991. },
  39992. backDemi: {
  39993. height: math.unit(65, "feet"),
  39994. name: "Back (Demi)",
  39995. image: {
  39996. source: "./media/characters/alek-dryagan/back-demi.svg",
  39997. extra: 1658/1637,
  39998. bottom: 40/1698
  39999. }
  40000. },
  40001. mawHuman: {
  40002. height: math.unit(0.3, "feet"),
  40003. name: "Maw (Human)",
  40004. image: {
  40005. source: "./media/characters/alek-dryagan/maw-human.svg"
  40006. }
  40007. },
  40008. mawDemi: {
  40009. height: math.unit(3.8, "feet"),
  40010. name: "Maw (Demi)",
  40011. image: {
  40012. source: "./media/characters/alek-dryagan/maw-demi.svg"
  40013. }
  40014. },
  40015. },
  40016. [
  40017. {
  40018. name: "Normal",
  40019. height: math.unit(5 + 7/12, "feet"),
  40020. default: true
  40021. },
  40022. ]
  40023. ))
  40024. characterMakers.push(() => makeCharacter(
  40025. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  40026. {
  40027. frontHuman: {
  40028. height: math.unit(5 + 2/12, "feet"),
  40029. name: "Front (Human)",
  40030. image: {
  40031. source: "./media/characters/gen/front-human.svg",
  40032. extra: 1627/1538,
  40033. bottom: 71/1698
  40034. }
  40035. },
  40036. backHuman: {
  40037. height: math.unit(5 + 2/12, "feet"),
  40038. name: "Back (Human)",
  40039. image: {
  40040. source: "./media/characters/gen/back-human.svg",
  40041. extra: 1638/1548,
  40042. bottom: 69/1707
  40043. }
  40044. },
  40045. frontDemi: {
  40046. height: math.unit(5 + 2/12, "feet"),
  40047. name: "Front (Demi)",
  40048. image: {
  40049. source: "./media/characters/gen/front-demi.svg",
  40050. extra: 1627/1538,
  40051. bottom: 71/1698
  40052. }
  40053. },
  40054. backDemi: {
  40055. height: math.unit(5 + 2/12, "feet"),
  40056. name: "Back (Demi)",
  40057. image: {
  40058. source: "./media/characters/gen/back-demi.svg",
  40059. extra: 1638/1548,
  40060. bottom: 69/1707
  40061. }
  40062. },
  40063. },
  40064. [
  40065. {
  40066. name: "Normal",
  40067. height: math.unit(5 + 2/12, "feet"),
  40068. default: true
  40069. },
  40070. ]
  40071. ))
  40072. characterMakers.push(() => makeCharacter(
  40073. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  40074. {
  40075. frontImp: {
  40076. height: math.unit(1 + 11/12, "feet"),
  40077. name: "Front (Imp)",
  40078. image: {
  40079. source: "./media/characters/max-kobold/front-imp.svg",
  40080. extra: 1238/1134,
  40081. bottom: 81/1319
  40082. }
  40083. },
  40084. backImp: {
  40085. height: math.unit(1 + 11/12, "feet"),
  40086. name: "Back (Imp)",
  40087. image: {
  40088. source: "./media/characters/max-kobold/back-imp.svg",
  40089. extra: 1334/1175,
  40090. bottom: 34/1368
  40091. }
  40092. },
  40093. frontDemi: {
  40094. height: math.unit(5 + 9/12, "feet"),
  40095. name: "Front (Demi)",
  40096. image: {
  40097. source: "./media/characters/max-kobold/front-demi.svg",
  40098. extra: 1715/1685,
  40099. bottom: 54/1769
  40100. }
  40101. },
  40102. backDemi: {
  40103. height: math.unit(5 + 9/12, "feet"),
  40104. name: "Back (Demi)",
  40105. image: {
  40106. source: "./media/characters/max-kobold/back-demi.svg",
  40107. extra: 1752/1729,
  40108. bottom: 41/1793
  40109. }
  40110. },
  40111. handImp: {
  40112. height: math.unit(0.45, "feet"),
  40113. name: "Hand (Imp)",
  40114. image: {
  40115. source: "./media/characters/max-kobold/hand.svg"
  40116. }
  40117. },
  40118. pawImp: {
  40119. height: math.unit(0.46, "feet"),
  40120. name: "Paw (Imp)",
  40121. image: {
  40122. source: "./media/characters/max-kobold/paw.svg"
  40123. }
  40124. },
  40125. handDemi: {
  40126. height: math.unit(0.80, "feet"),
  40127. name: "Hand (Demi)",
  40128. image: {
  40129. source: "./media/characters/max-kobold/hand.svg"
  40130. }
  40131. },
  40132. pawDemi: {
  40133. height: math.unit(1.1, "feet"),
  40134. name: "Paw (Demi)",
  40135. image: {
  40136. source: "./media/characters/max-kobold/paw.svg"
  40137. }
  40138. },
  40139. headImp: {
  40140. height: math.unit(1.33, "feet"),
  40141. name: "Head (Imp)",
  40142. image: {
  40143. source: "./media/characters/max-kobold/head-imp.svg"
  40144. }
  40145. },
  40146. mawImp: {
  40147. height: math.unit(0.75, "feet"),
  40148. name: "Maw (Imp)",
  40149. image: {
  40150. source: "./media/characters/max-kobold/maw-imp.svg"
  40151. }
  40152. },
  40153. mawDemi: {
  40154. height: math.unit(0.42, "feet"),
  40155. name: "Maw (Demi)",
  40156. image: {
  40157. source: "./media/characters/max-kobold/maw-demi.svg"
  40158. }
  40159. },
  40160. },
  40161. [
  40162. {
  40163. name: "Normal",
  40164. height: math.unit(1 + 11/12, "feet"),
  40165. default: true
  40166. },
  40167. ]
  40168. ))
  40169. characterMakers.push(() => makeCharacter(
  40170. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40171. {
  40172. front: {
  40173. height: math.unit(7 + 5/12, "feet"),
  40174. name: "Front",
  40175. image: {
  40176. source: "./media/characters/carbon/front.svg",
  40177. extra: 1754/1689,
  40178. bottom: 65/1819
  40179. }
  40180. },
  40181. back: {
  40182. height: math.unit(7 + 5/12, "feet"),
  40183. name: "Back",
  40184. image: {
  40185. source: "./media/characters/carbon/back.svg",
  40186. extra: 1762/1695,
  40187. bottom: 24/1786
  40188. }
  40189. },
  40190. frontGigantamax: {
  40191. height: math.unit(150, "feet"),
  40192. name: "Front (Gigantamax)",
  40193. image: {
  40194. source: "./media/characters/carbon/front-gigantamax.svg",
  40195. extra: 1826/1669,
  40196. bottom: 59/1885
  40197. }
  40198. },
  40199. backGigantamax: {
  40200. height: math.unit(150, "feet"),
  40201. name: "Back (Gigantamax)",
  40202. image: {
  40203. source: "./media/characters/carbon/back-gigantamax.svg",
  40204. extra: 1796/1653,
  40205. bottom: 53/1849
  40206. }
  40207. },
  40208. maw: {
  40209. height: math.unit(0.48, "feet"),
  40210. name: "Maw",
  40211. image: {
  40212. source: "./media/characters/carbon/maw.svg"
  40213. }
  40214. },
  40215. mawGigantamax: {
  40216. height: math.unit(7.5, "feet"),
  40217. name: "Maw (Gigantamax)",
  40218. image: {
  40219. source: "./media/characters/carbon/maw-gigantamax.svg"
  40220. }
  40221. },
  40222. },
  40223. [
  40224. {
  40225. name: "Normal",
  40226. height: math.unit(7 + 5/12, "feet"),
  40227. default: true
  40228. },
  40229. ]
  40230. ))
  40231. characterMakers.push(() => makeCharacter(
  40232. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40233. {
  40234. front: {
  40235. height: math.unit(6, "feet"),
  40236. name: "Front",
  40237. image: {
  40238. source: "./media/characters/maverick/front.svg",
  40239. extra: 1672/1661,
  40240. bottom: 85/1757
  40241. }
  40242. },
  40243. back: {
  40244. height: math.unit(6, "feet"),
  40245. name: "Back",
  40246. image: {
  40247. source: "./media/characters/maverick/back.svg",
  40248. extra: 1642/1631,
  40249. bottom: 38/1680
  40250. }
  40251. },
  40252. },
  40253. [
  40254. {
  40255. name: "Normal",
  40256. height: math.unit(6, "feet"),
  40257. default: true
  40258. },
  40259. ]
  40260. ))
  40261. characterMakers.push(() => makeCharacter(
  40262. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40263. {
  40264. front: {
  40265. height: math.unit(15, "feet"),
  40266. weight: math.unit(615, "lb"),
  40267. name: "Front",
  40268. image: {
  40269. source: "./media/characters/grockle/front.svg",
  40270. extra: 1535/1427,
  40271. bottom: 56/1591
  40272. }
  40273. },
  40274. },
  40275. [
  40276. {
  40277. name: "Normal",
  40278. height: math.unit(15, "feet"),
  40279. default: true
  40280. },
  40281. {
  40282. name: "Large",
  40283. height: math.unit(150, "feet")
  40284. },
  40285. {
  40286. name: "Macro",
  40287. height: math.unit(1876, "feet")
  40288. },
  40289. {
  40290. name: "Mega Macro",
  40291. height: math.unit(121940, "feet")
  40292. },
  40293. {
  40294. name: "Giga Macro",
  40295. height: math.unit(750, "km")
  40296. },
  40297. {
  40298. name: "Tera Macro",
  40299. height: math.unit(750000, "km")
  40300. },
  40301. {
  40302. name: "Galactic",
  40303. height: math.unit(1.4e5, "km")
  40304. },
  40305. {
  40306. name: "Godlike",
  40307. height: math.unit(9.8e280, "galaxies")
  40308. },
  40309. ]
  40310. ))
  40311. characterMakers.push(() => makeCharacter(
  40312. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40313. {
  40314. front: {
  40315. height: math.unit(11, "meters"),
  40316. weight: math.unit(20, "tonnes"),
  40317. name: "Front",
  40318. image: {
  40319. source: "./media/characters/alistair/front.svg",
  40320. extra: 1265/1009,
  40321. bottom: 93/1358
  40322. }
  40323. },
  40324. },
  40325. [
  40326. {
  40327. name: "Normal",
  40328. height: math.unit(11, "meters"),
  40329. default: true
  40330. },
  40331. ]
  40332. ))
  40333. characterMakers.push(() => makeCharacter(
  40334. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40335. {
  40336. front: {
  40337. height: math.unit(5 + 8/12, "feet"),
  40338. name: "Front",
  40339. image: {
  40340. source: "./media/characters/haruka/front.svg",
  40341. extra: 2012/1952,
  40342. bottom: 0/2012
  40343. }
  40344. },
  40345. },
  40346. [
  40347. {
  40348. name: "Normal",
  40349. height: math.unit(5 + 8/12, "feet"),
  40350. default: true
  40351. },
  40352. ]
  40353. ))
  40354. characterMakers.push(() => makeCharacter(
  40355. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40356. {
  40357. back: {
  40358. height: math.unit(9, "feet"),
  40359. name: "Back",
  40360. image: {
  40361. source: "./media/characters/vivian-sylveon/back.svg",
  40362. extra: 1853/1714,
  40363. bottom: 0/1853
  40364. }
  40365. },
  40366. hyper: {
  40367. height: math.unit(5.58, "feet"),
  40368. name: "Hyper",
  40369. preyCapacity: math.unit(2.80616218797, "m^3"),
  40370. image: {
  40371. source: "./media/characters/vivian-sylveon/hyper.svg",
  40372. extra: 999/676,
  40373. bottom: 697/1696
  40374. },
  40375. },
  40376. paw: {
  40377. height: math.unit(1.8, "feet"),
  40378. name: "Paw",
  40379. image: {
  40380. source: "./media/characters/vivian-sylveon/paw.svg"
  40381. }
  40382. },
  40383. danger: {
  40384. height: math.unit(7.5, "feet"),
  40385. name: "DANGER",
  40386. image: {
  40387. source: "./media/characters/vivian-sylveon/danger.svg"
  40388. }
  40389. },
  40390. },
  40391. [
  40392. {
  40393. name: "Normal",
  40394. height: math.unit(9, "feet"),
  40395. default: true
  40396. },
  40397. {
  40398. name: "Macro",
  40399. height: math.unit(500, "feet")
  40400. },
  40401. {
  40402. name: "Megamacro",
  40403. height: math.unit(600, "miles")
  40404. },
  40405. {
  40406. name: "Gigamacro",
  40407. height: math.unit(30000, "miles")
  40408. },
  40409. ]
  40410. ))
  40411. characterMakers.push(() => makeCharacter(
  40412. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40413. {
  40414. anthro: {
  40415. height: math.unit(5 + 10/12, "feet"),
  40416. weight: math.unit(100, "lb"),
  40417. name: "Anthro",
  40418. image: {
  40419. source: "./media/characters/daiki/anthro.svg",
  40420. extra: 1115/1027,
  40421. bottom: 69/1184
  40422. }
  40423. },
  40424. feral: {
  40425. height: math.unit(200, "feet"),
  40426. name: "Feral",
  40427. image: {
  40428. source: "./media/characters/daiki/feral.svg",
  40429. extra: 1256/313,
  40430. bottom: 39/1295
  40431. }
  40432. },
  40433. feralHead: {
  40434. height: math.unit(171, "feet"),
  40435. name: "Feral Head",
  40436. image: {
  40437. source: "./media/characters/daiki/feral-head.svg"
  40438. }
  40439. },
  40440. manaDragon: {
  40441. height: math.unit(170, "meters"),
  40442. name: "Mana-dragon",
  40443. image: {
  40444. source: "./media/characters/daiki/mana-dragon.svg",
  40445. extra: 763/420,
  40446. bottom: 97/860
  40447. }
  40448. },
  40449. },
  40450. [
  40451. {
  40452. name: "Normal",
  40453. height: math.unit(5 + 10/12, "feet"),
  40454. default: true
  40455. },
  40456. ]
  40457. ))
  40458. characterMakers.push(() => makeCharacter(
  40459. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40460. {
  40461. fullyEquippedFront: {
  40462. height: math.unit(3 + 1/12, "feet"),
  40463. weight: math.unit(24, "lb"),
  40464. name: "Fully Equipped (Front)",
  40465. image: {
  40466. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40467. extra: 687/605,
  40468. bottom: 18/705
  40469. }
  40470. },
  40471. fullyEquippedBack: {
  40472. height: math.unit(3 + 1/12, "feet"),
  40473. weight: math.unit(24, "lb"),
  40474. name: "Fully Equipped (Back)",
  40475. image: {
  40476. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40477. extra: 689/590,
  40478. bottom: 18/707
  40479. }
  40480. },
  40481. dailyWear: {
  40482. height: math.unit(3 + 1/12, "feet"),
  40483. weight: math.unit(24, "lb"),
  40484. name: "Daily Wear",
  40485. image: {
  40486. source: "./media/characters/tea-spot/daily-wear.svg",
  40487. extra: 701/620,
  40488. bottom: 21/722
  40489. }
  40490. },
  40491. maidWork: {
  40492. height: math.unit(3 + 1/12, "feet"),
  40493. weight: math.unit(24, "lb"),
  40494. name: "Maid Work",
  40495. image: {
  40496. source: "./media/characters/tea-spot/maid-work.svg",
  40497. extra: 693/609,
  40498. bottom: 15/708
  40499. }
  40500. },
  40501. },
  40502. [
  40503. {
  40504. name: "Normal",
  40505. height: math.unit(3 + 1/12, "feet"),
  40506. default: true
  40507. },
  40508. ]
  40509. ))
  40510. characterMakers.push(() => makeCharacter(
  40511. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40512. {
  40513. front: {
  40514. height: math.unit(175, "cm"),
  40515. weight: math.unit(75, "kg"),
  40516. name: "Front",
  40517. image: {
  40518. source: "./media/characters/chee/front.svg",
  40519. extra: 1796/1740,
  40520. bottom: 40/1836
  40521. }
  40522. },
  40523. },
  40524. [
  40525. {
  40526. name: "Micro-Micro",
  40527. height: math.unit(1, "nm")
  40528. },
  40529. {
  40530. name: "Micro-erst",
  40531. height: math.unit(1, "micrometer")
  40532. },
  40533. {
  40534. name: "Micro-er",
  40535. height: math.unit(1, "cm")
  40536. },
  40537. {
  40538. name: "Normal",
  40539. height: math.unit(175, "cm"),
  40540. default: true
  40541. },
  40542. {
  40543. name: "Macro",
  40544. height: math.unit(100, "m")
  40545. },
  40546. {
  40547. name: "Macro-er",
  40548. height: math.unit(1, "km")
  40549. },
  40550. {
  40551. name: "Macro-erst",
  40552. height: math.unit(10, "km")
  40553. },
  40554. {
  40555. name: "Macro-Macro",
  40556. height: math.unit(100, "km")
  40557. },
  40558. ]
  40559. ))
  40560. characterMakers.push(() => makeCharacter(
  40561. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40562. {
  40563. front: {
  40564. height: math.unit(11 + 9/12, "feet"),
  40565. weight: math.unit(935, "lb"),
  40566. name: "Front",
  40567. image: {
  40568. source: "./media/characters/kingsley/front.svg",
  40569. extra: 1803/1674,
  40570. bottom: 127/1930
  40571. }
  40572. },
  40573. frontNude: {
  40574. height: math.unit(11 + 9/12, "feet"),
  40575. weight: math.unit(935, "lb"),
  40576. name: "Front (Nude)",
  40577. image: {
  40578. source: "./media/characters/kingsley/front-nude.svg",
  40579. extra: 1803/1674,
  40580. bottom: 127/1930
  40581. }
  40582. },
  40583. },
  40584. [
  40585. {
  40586. name: "Normal",
  40587. height: math.unit(11 + 9/12, "feet"),
  40588. default: true
  40589. },
  40590. ]
  40591. ))
  40592. characterMakers.push(() => makeCharacter(
  40593. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40594. {
  40595. side: {
  40596. height: math.unit(9, "feet"),
  40597. name: "Side",
  40598. image: {
  40599. source: "./media/characters/rymel/side.svg",
  40600. extra: 792/469,
  40601. bottom: 121/913
  40602. }
  40603. },
  40604. maw: {
  40605. height: math.unit(2.4, "meters"),
  40606. name: "Maw",
  40607. image: {
  40608. source: "./media/characters/rymel/maw.svg"
  40609. }
  40610. },
  40611. },
  40612. [
  40613. {
  40614. name: "House Drake",
  40615. height: math.unit(2, "feet")
  40616. },
  40617. {
  40618. name: "Reduced",
  40619. height: math.unit(4.5, "feet")
  40620. },
  40621. {
  40622. name: "Normal",
  40623. height: math.unit(9, "feet"),
  40624. default: true
  40625. },
  40626. ]
  40627. ))
  40628. characterMakers.push(() => makeCharacter(
  40629. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40630. {
  40631. front: {
  40632. height: math.unit(1.74, "meters"),
  40633. weight: math.unit(55, "kg"),
  40634. name: "Front",
  40635. image: {
  40636. source: "./media/characters/rubus/front.svg",
  40637. extra: 1894/1742,
  40638. bottom: 44/1938
  40639. }
  40640. },
  40641. },
  40642. [
  40643. {
  40644. name: "Normal",
  40645. height: math.unit(1.74, "meters"),
  40646. default: true
  40647. },
  40648. ]
  40649. ))
  40650. characterMakers.push(() => makeCharacter(
  40651. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40652. {
  40653. front: {
  40654. height: math.unit(5 + 2/12, "feet"),
  40655. weight: math.unit(112, "lb"),
  40656. name: "Front",
  40657. image: {
  40658. source: "./media/characters/cassie-kingston/front.svg",
  40659. extra: 1438/1390,
  40660. bottom: 47/1485
  40661. }
  40662. },
  40663. },
  40664. [
  40665. {
  40666. name: "Normal",
  40667. height: math.unit(5 + 2/12, "feet"),
  40668. default: true
  40669. },
  40670. {
  40671. name: "Macro",
  40672. height: math.unit(128, "feet")
  40673. },
  40674. {
  40675. name: "Megamacro",
  40676. height: math.unit(2.56, "miles")
  40677. },
  40678. ]
  40679. ))
  40680. characterMakers.push(() => makeCharacter(
  40681. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40682. {
  40683. front: {
  40684. height: math.unit(7, "feet"),
  40685. name: "Front",
  40686. image: {
  40687. source: "./media/characters/fox/front.svg",
  40688. extra: 1798/1703,
  40689. bottom: 55/1853
  40690. }
  40691. },
  40692. back: {
  40693. height: math.unit(7, "feet"),
  40694. name: "Back",
  40695. image: {
  40696. source: "./media/characters/fox/back.svg",
  40697. extra: 1748/1649,
  40698. bottom: 32/1780
  40699. }
  40700. },
  40701. head: {
  40702. height: math.unit(1.95, "feet"),
  40703. name: "Head",
  40704. image: {
  40705. source: "./media/characters/fox/head.svg"
  40706. }
  40707. },
  40708. dick: {
  40709. height: math.unit(1.33, "feet"),
  40710. name: "Dick",
  40711. image: {
  40712. source: "./media/characters/fox/dick.svg"
  40713. }
  40714. },
  40715. foot: {
  40716. height: math.unit(1, "feet"),
  40717. name: "Foot",
  40718. image: {
  40719. source: "./media/characters/fox/foot.svg"
  40720. }
  40721. },
  40722. paw: {
  40723. height: math.unit(0.92, "feet"),
  40724. name: "Paw",
  40725. image: {
  40726. source: "./media/characters/fox/paw.svg"
  40727. }
  40728. },
  40729. },
  40730. [
  40731. {
  40732. name: "Small",
  40733. height: math.unit(3, "inches")
  40734. },
  40735. {
  40736. name: "\"Realistic\"",
  40737. height: math.unit(7, "feet")
  40738. },
  40739. {
  40740. name: "Normal",
  40741. height: math.unit(150, "feet"),
  40742. default: true
  40743. },
  40744. {
  40745. name: "BIG",
  40746. height: math.unit(1200, "feet")
  40747. },
  40748. {
  40749. name: "👀",
  40750. height: math.unit(5, "miles")
  40751. },
  40752. {
  40753. name: "👀👀👀",
  40754. height: math.unit(64, "miles")
  40755. },
  40756. ]
  40757. ))
  40758. characterMakers.push(() => makeCharacter(
  40759. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40760. {
  40761. front: {
  40762. height: math.unit(625, "feet"),
  40763. name: "Front",
  40764. image: {
  40765. source: "./media/characters/asonja-rossa/front.svg",
  40766. extra: 1833/1686,
  40767. bottom: 24/1857
  40768. }
  40769. },
  40770. back: {
  40771. height: math.unit(625, "feet"),
  40772. name: "Back",
  40773. image: {
  40774. source: "./media/characters/asonja-rossa/back.svg",
  40775. extra: 1852/1753,
  40776. bottom: 26/1878
  40777. }
  40778. },
  40779. },
  40780. [
  40781. {
  40782. name: "Macro",
  40783. height: math.unit(625, "feet"),
  40784. default: true
  40785. },
  40786. ]
  40787. ))
  40788. characterMakers.push(() => makeCharacter(
  40789. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40790. {
  40791. side: {
  40792. height: math.unit(8, "feet"),
  40793. name: "Side",
  40794. image: {
  40795. source: "./media/characters/rezukii/side.svg",
  40796. extra: 979/542,
  40797. bottom: 87/1066
  40798. }
  40799. },
  40800. sitting: {
  40801. height: math.unit(14.6, "feet"),
  40802. name: "Sitting",
  40803. image: {
  40804. source: "./media/characters/rezukii/sitting.svg",
  40805. extra: 1023/813,
  40806. bottom: 45/1068
  40807. }
  40808. },
  40809. },
  40810. [
  40811. {
  40812. name: "Tiny",
  40813. height: math.unit(2, "feet")
  40814. },
  40815. {
  40816. name: "Smol",
  40817. height: math.unit(4, "feet")
  40818. },
  40819. {
  40820. name: "Normal",
  40821. height: math.unit(8, "feet"),
  40822. default: true
  40823. },
  40824. {
  40825. name: "Big",
  40826. height: math.unit(12, "feet")
  40827. },
  40828. {
  40829. name: "Macro",
  40830. height: math.unit(30, "feet")
  40831. },
  40832. ]
  40833. ))
  40834. characterMakers.push(() => makeCharacter(
  40835. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40836. {
  40837. front: {
  40838. height: math.unit(14, "feet"),
  40839. weight: math.unit(9.5, "tonnes"),
  40840. name: "Front",
  40841. image: {
  40842. source: "./media/characters/dawnheart/front.svg",
  40843. extra: 2792/2675,
  40844. bottom: 64/2856
  40845. }
  40846. },
  40847. },
  40848. [
  40849. {
  40850. name: "Normal",
  40851. height: math.unit(14, "feet"),
  40852. default: true
  40853. },
  40854. ]
  40855. ))
  40856. characterMakers.push(() => makeCharacter(
  40857. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40858. {
  40859. front: {
  40860. height: math.unit(1.7, "m"),
  40861. name: "Front",
  40862. image: {
  40863. source: "./media/characters/gladi/front.svg",
  40864. extra: 1460/1362,
  40865. bottom: 19/1479
  40866. }
  40867. },
  40868. back: {
  40869. height: math.unit(1.7, "m"),
  40870. name: "Back",
  40871. image: {
  40872. source: "./media/characters/gladi/back.svg",
  40873. extra: 1459/1357,
  40874. bottom: 12/1471
  40875. }
  40876. },
  40877. feral: {
  40878. height: math.unit(2.05, "m"),
  40879. name: "Feral",
  40880. image: {
  40881. source: "./media/characters/gladi/feral.svg",
  40882. extra: 821/557,
  40883. bottom: 91/912
  40884. }
  40885. },
  40886. },
  40887. [
  40888. {
  40889. name: "Shortest",
  40890. height: math.unit(70, "cm")
  40891. },
  40892. {
  40893. name: "Normal",
  40894. height: math.unit(1.7, "m")
  40895. },
  40896. {
  40897. name: "Macro",
  40898. height: math.unit(10, "m"),
  40899. default: true
  40900. },
  40901. {
  40902. name: "Tallest",
  40903. height: math.unit(200, "m")
  40904. },
  40905. ]
  40906. ))
  40907. characterMakers.push(() => makeCharacter(
  40908. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40909. {
  40910. front: {
  40911. height: math.unit(5 + 7/12, "feet"),
  40912. weight: math.unit(2, "tons"),
  40913. name: "Front",
  40914. image: {
  40915. source: "./media/characters/erdno/front.svg",
  40916. extra: 1234/1129,
  40917. bottom: 35/1269
  40918. }
  40919. },
  40920. angled: {
  40921. height: math.unit(5 + 7/12, "feet"),
  40922. weight: math.unit(2, "tons"),
  40923. name: "Angled",
  40924. image: {
  40925. source: "./media/characters/erdno/angled.svg",
  40926. extra: 1185/1139,
  40927. bottom: 36/1221
  40928. }
  40929. },
  40930. side: {
  40931. height: math.unit(5 + 7/12, "feet"),
  40932. weight: math.unit(2, "tons"),
  40933. name: "Side",
  40934. image: {
  40935. source: "./media/characters/erdno/side.svg",
  40936. extra: 1191/1144,
  40937. bottom: 40/1231
  40938. }
  40939. },
  40940. back: {
  40941. height: math.unit(5 + 7/12, "feet"),
  40942. weight: math.unit(2, "tons"),
  40943. name: "Back",
  40944. image: {
  40945. source: "./media/characters/erdno/back.svg",
  40946. extra: 1202/1146,
  40947. bottom: 17/1219
  40948. }
  40949. },
  40950. frontNsfw: {
  40951. height: math.unit(5 + 7/12, "feet"),
  40952. weight: math.unit(2, "tons"),
  40953. name: "Front (NSFW)",
  40954. image: {
  40955. source: "./media/characters/erdno/front-nsfw.svg",
  40956. extra: 1234/1129,
  40957. bottom: 35/1269
  40958. }
  40959. },
  40960. angledNsfw: {
  40961. height: math.unit(5 + 7/12, "feet"),
  40962. weight: math.unit(2, "tons"),
  40963. name: "Angled (NSFW)",
  40964. image: {
  40965. source: "./media/characters/erdno/angled-nsfw.svg",
  40966. extra: 1185/1139,
  40967. bottom: 36/1221
  40968. }
  40969. },
  40970. sideNsfw: {
  40971. height: math.unit(5 + 7/12, "feet"),
  40972. weight: math.unit(2, "tons"),
  40973. name: "Side (NSFW)",
  40974. image: {
  40975. source: "./media/characters/erdno/side-nsfw.svg",
  40976. extra: 1191/1144,
  40977. bottom: 40/1231
  40978. }
  40979. },
  40980. backNsfw: {
  40981. height: math.unit(5 + 7/12, "feet"),
  40982. weight: math.unit(2, "tons"),
  40983. name: "Back (NSFW)",
  40984. image: {
  40985. source: "./media/characters/erdno/back-nsfw.svg",
  40986. extra: 1202/1146,
  40987. bottom: 17/1219
  40988. }
  40989. },
  40990. frontHyper: {
  40991. height: math.unit(5 + 7/12, "feet"),
  40992. weight: math.unit(2, "tons"),
  40993. name: "Front (Hyper)",
  40994. image: {
  40995. source: "./media/characters/erdno/front-hyper.svg",
  40996. extra: 1298/1136,
  40997. bottom: 35/1333
  40998. }
  40999. },
  41000. },
  41001. [
  41002. {
  41003. name: "Normal",
  41004. height: math.unit(5 + 7/12, "feet"),
  41005. default: true
  41006. },
  41007. {
  41008. name: "Big",
  41009. height: math.unit(5.7, "meters")
  41010. },
  41011. {
  41012. name: "Macro",
  41013. height: math.unit(5.7, "kilometers")
  41014. },
  41015. {
  41016. name: "Megamacro",
  41017. height: math.unit(5.7, "earths")
  41018. },
  41019. ]
  41020. ))
  41021. characterMakers.push(() => makeCharacter(
  41022. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  41023. {
  41024. front: {
  41025. height: math.unit(5 + 10/12, "feet"),
  41026. weight: math.unit(150, "lb"),
  41027. name: "Front",
  41028. image: {
  41029. source: "./media/characters/jamie/front.svg",
  41030. extra: 1908/1768,
  41031. bottom: 19/1927
  41032. }
  41033. },
  41034. },
  41035. [
  41036. {
  41037. name: "Minimum",
  41038. height: math.unit(2, "cm")
  41039. },
  41040. {
  41041. name: "Micro",
  41042. height: math.unit(3, "inches")
  41043. },
  41044. {
  41045. name: "Normal",
  41046. height: math.unit(5 + 10/12, "feet"),
  41047. default: true
  41048. },
  41049. {
  41050. name: "Macro",
  41051. height: math.unit(150, "feet")
  41052. },
  41053. {
  41054. name: "Megamacro",
  41055. height: math.unit(10000, "m")
  41056. },
  41057. ]
  41058. ))
  41059. characterMakers.push(() => makeCharacter(
  41060. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  41061. {
  41062. front: {
  41063. height: math.unit(2, "meters"),
  41064. weight: math.unit(100, "kg"),
  41065. name: "Front",
  41066. image: {
  41067. source: "./media/characters/shiron/front.svg",
  41068. extra: 2103/1985,
  41069. bottom: 98/2201
  41070. }
  41071. },
  41072. back: {
  41073. height: math.unit(2, "meters"),
  41074. weight: math.unit(100, "kg"),
  41075. name: "Back",
  41076. image: {
  41077. source: "./media/characters/shiron/back.svg",
  41078. extra: 2110/2015,
  41079. bottom: 89/2199
  41080. }
  41081. },
  41082. hand: {
  41083. height: math.unit(0.96, "feet"),
  41084. name: "Hand",
  41085. image: {
  41086. source: "./media/characters/shiron/hand.svg"
  41087. }
  41088. },
  41089. foot: {
  41090. height: math.unit(1.464, "feet"),
  41091. name: "Foot",
  41092. image: {
  41093. source: "./media/characters/shiron/foot.svg"
  41094. }
  41095. },
  41096. },
  41097. [
  41098. {
  41099. name: "Normal",
  41100. height: math.unit(2, "meters")
  41101. },
  41102. {
  41103. name: "Macro",
  41104. height: math.unit(500, "meters"),
  41105. default: true
  41106. },
  41107. {
  41108. name: "Megamacro",
  41109. height: math.unit(20, "km")
  41110. },
  41111. ]
  41112. ))
  41113. characterMakers.push(() => makeCharacter(
  41114. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41115. {
  41116. front: {
  41117. height: math.unit(6, "feet"),
  41118. name: "Front",
  41119. image: {
  41120. source: "./media/characters/sam/front.svg",
  41121. extra: 849/826,
  41122. bottom: 19/868
  41123. }
  41124. },
  41125. },
  41126. [
  41127. {
  41128. name: "Normal",
  41129. height: math.unit(6, "feet"),
  41130. default: true
  41131. },
  41132. ]
  41133. ))
  41134. characterMakers.push(() => makeCharacter(
  41135. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41136. {
  41137. front: {
  41138. height: math.unit(8 + 4/12, "feet"),
  41139. weight: math.unit(122, "kg"),
  41140. name: "Front",
  41141. image: {
  41142. source: "./media/characters/namori-kurogawa/front.svg",
  41143. extra: 1894/1576,
  41144. bottom: 34/1928
  41145. }
  41146. },
  41147. },
  41148. [
  41149. {
  41150. name: "Normal",
  41151. height: math.unit(8 + 4/12, "feet"),
  41152. default: true
  41153. },
  41154. ]
  41155. ))
  41156. characterMakers.push(() => makeCharacter(
  41157. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41158. {
  41159. front: {
  41160. height: math.unit(9, "feet"),
  41161. weight: math.unit(621, "lb"),
  41162. name: "Front",
  41163. image: {
  41164. source: "./media/characters/unmru/front.svg",
  41165. extra: 1853/1747,
  41166. bottom: 73/1926
  41167. }
  41168. },
  41169. side: {
  41170. height: math.unit(9, "feet"),
  41171. weight: math.unit(621, "lb"),
  41172. name: "Side",
  41173. image: {
  41174. source: "./media/characters/unmru/side.svg",
  41175. extra: 1781/1671,
  41176. bottom: 127/1908
  41177. }
  41178. },
  41179. back: {
  41180. height: math.unit(9, "feet"),
  41181. weight: math.unit(621, "lb"),
  41182. name: "Back",
  41183. image: {
  41184. source: "./media/characters/unmru/back.svg",
  41185. extra: 1894/1765,
  41186. bottom: 75/1969
  41187. }
  41188. },
  41189. dick: {
  41190. height: math.unit(3, "feet"),
  41191. weight: math.unit(35, "lb"),
  41192. name: "Dick",
  41193. image: {
  41194. source: "./media/characters/unmru/dick.svg"
  41195. }
  41196. },
  41197. },
  41198. [
  41199. {
  41200. name: "Normal",
  41201. height: math.unit(9, "feet")
  41202. },
  41203. {
  41204. name: "Natural",
  41205. height: math.unit(27, "feet"),
  41206. default: true
  41207. },
  41208. {
  41209. name: "Giant",
  41210. height: math.unit(90, "feet")
  41211. },
  41212. {
  41213. name: "Kaiju",
  41214. height: math.unit(270, "feet")
  41215. },
  41216. {
  41217. name: "Macro",
  41218. height: math.unit(900, "feet")
  41219. },
  41220. {
  41221. name: "Macro+",
  41222. height: math.unit(2700, "feet")
  41223. },
  41224. {
  41225. name: "Megamacro",
  41226. height: math.unit(9000, "feet")
  41227. },
  41228. {
  41229. name: "City-Crushing",
  41230. height: math.unit(27000, "feet")
  41231. },
  41232. {
  41233. name: "Mountain-Mashing",
  41234. height: math.unit(90000, "feet")
  41235. },
  41236. {
  41237. name: "Earth-Eclipsing",
  41238. height: math.unit(2.7e8, "feet")
  41239. },
  41240. {
  41241. name: "Sol-Swallowing",
  41242. height: math.unit(9e10, "feet")
  41243. },
  41244. {
  41245. name: "Majoris-Munching",
  41246. height: math.unit(2.7e13, "feet")
  41247. },
  41248. ]
  41249. ))
  41250. characterMakers.push(() => makeCharacter(
  41251. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41252. {
  41253. front: {
  41254. height: math.unit(1, "inch"),
  41255. name: "Front",
  41256. image: {
  41257. source: "./media/characters/squeaks-mouse/front.svg",
  41258. extra: 352/308,
  41259. bottom: 25/377
  41260. }
  41261. },
  41262. },
  41263. [
  41264. {
  41265. name: "Micro",
  41266. height: math.unit(1, "inch"),
  41267. default: true
  41268. },
  41269. ]
  41270. ))
  41271. characterMakers.push(() => makeCharacter(
  41272. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41273. {
  41274. side: {
  41275. height: math.unit(35, "feet"),
  41276. name: "Side",
  41277. image: {
  41278. source: "./media/characters/sayko/side.svg",
  41279. extra: 1697/1021,
  41280. bottom: 82/1779
  41281. }
  41282. },
  41283. head: {
  41284. height: math.unit(16, "feet"),
  41285. name: "Head",
  41286. image: {
  41287. source: "./media/characters/sayko/head.svg"
  41288. }
  41289. },
  41290. forepaw: {
  41291. height: math.unit(7.85, "feet"),
  41292. name: "Forepaw",
  41293. image: {
  41294. source: "./media/characters/sayko/forepaw.svg"
  41295. }
  41296. },
  41297. hindpaw: {
  41298. height: math.unit(8.8, "feet"),
  41299. name: "Hindpaw",
  41300. image: {
  41301. source: "./media/characters/sayko/hindpaw.svg"
  41302. }
  41303. },
  41304. },
  41305. [
  41306. {
  41307. name: "Normal",
  41308. height: math.unit(35, "feet"),
  41309. default: true
  41310. },
  41311. {
  41312. name: "Colossus",
  41313. height: math.unit(100, "meters")
  41314. },
  41315. {
  41316. name: "\"Small\" Deity",
  41317. height: math.unit(1, "km")
  41318. },
  41319. {
  41320. name: "\"Large\" Deity",
  41321. height: math.unit(15, "km")
  41322. },
  41323. ]
  41324. ))
  41325. characterMakers.push(() => makeCharacter(
  41326. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41327. {
  41328. front: {
  41329. height: math.unit(6, "feet"),
  41330. weight: math.unit(250, "lb"),
  41331. name: "Front",
  41332. image: {
  41333. source: "./media/characters/mukiro/front.svg",
  41334. extra: 1368/1310,
  41335. bottom: 34/1402
  41336. }
  41337. },
  41338. },
  41339. [
  41340. {
  41341. name: "Normal",
  41342. height: math.unit(6, "feet"),
  41343. default: true
  41344. },
  41345. ]
  41346. ))
  41347. characterMakers.push(() => makeCharacter(
  41348. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41349. {
  41350. front: {
  41351. height: math.unit(12 + 4/12, "feet"),
  41352. name: "Front",
  41353. image: {
  41354. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41355. extra: 1346/1311,
  41356. bottom: 65/1411
  41357. }
  41358. },
  41359. },
  41360. [
  41361. {
  41362. name: "Base",
  41363. height: math.unit(12 + 4/12, "feet"),
  41364. default: true
  41365. },
  41366. {
  41367. name: "Macro",
  41368. height: math.unit(150, "feet")
  41369. },
  41370. {
  41371. name: "Mega",
  41372. height: math.unit(2, "miles")
  41373. },
  41374. {
  41375. name: "Demi God",
  41376. height: math.unit(4, "AU")
  41377. },
  41378. {
  41379. name: "God Size",
  41380. height: math.unit(1, "universe")
  41381. },
  41382. ]
  41383. ))
  41384. characterMakers.push(() => makeCharacter(
  41385. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41386. {
  41387. front: {
  41388. height: math.unit(3 + 3/12, "feet"),
  41389. weight: math.unit(88, "lb"),
  41390. name: "Front",
  41391. image: {
  41392. source: "./media/characters/trey/front.svg",
  41393. extra: 1815/1509,
  41394. bottom: 60/1875
  41395. }
  41396. },
  41397. },
  41398. [
  41399. {
  41400. name: "Normal",
  41401. height: math.unit(3 + 3/12, "feet"),
  41402. default: true
  41403. },
  41404. ]
  41405. ))
  41406. characterMakers.push(() => makeCharacter(
  41407. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41408. {
  41409. front: {
  41410. height: math.unit(4, "meters"),
  41411. name: "Front",
  41412. image: {
  41413. source: "./media/characters/adelonda/front.svg",
  41414. extra: 1077/982,
  41415. bottom: 39/1116
  41416. }
  41417. },
  41418. back: {
  41419. height: math.unit(4, "meters"),
  41420. name: "Back",
  41421. image: {
  41422. source: "./media/characters/adelonda/back.svg",
  41423. extra: 1105/1003,
  41424. bottom: 25/1130
  41425. }
  41426. },
  41427. feral: {
  41428. height: math.unit(40/1.5, "meters"),
  41429. name: "Feral",
  41430. image: {
  41431. source: "./media/characters/adelonda/feral.svg",
  41432. extra: 597/271,
  41433. bottom: 387/984
  41434. }
  41435. },
  41436. },
  41437. [
  41438. {
  41439. name: "Normal",
  41440. height: math.unit(4, "meters"),
  41441. default: true
  41442. },
  41443. ]
  41444. ))
  41445. characterMakers.push(() => makeCharacter(
  41446. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41447. {
  41448. front: {
  41449. height: math.unit(8 + 4/12, "feet"),
  41450. weight: math.unit(670, "lb"),
  41451. name: "Front",
  41452. image: {
  41453. source: "./media/characters/acadiel/front.svg",
  41454. extra: 1901/1595,
  41455. bottom: 142/2043
  41456. }
  41457. },
  41458. },
  41459. [
  41460. {
  41461. name: "Normal",
  41462. height: math.unit(8 + 4/12, "feet"),
  41463. default: true
  41464. },
  41465. {
  41466. name: "Macro",
  41467. height: math.unit(200, "feet")
  41468. },
  41469. ]
  41470. ))
  41471. characterMakers.push(() => makeCharacter(
  41472. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41473. {
  41474. front: {
  41475. height: math.unit(6 + 2/12, "feet"),
  41476. weight: math.unit(185, "lb"),
  41477. name: "Front",
  41478. image: {
  41479. source: "./media/characters/kayne-ein/front.svg",
  41480. extra: 1780/1560,
  41481. bottom: 81/1861
  41482. }
  41483. },
  41484. },
  41485. [
  41486. {
  41487. name: "Normal",
  41488. height: math.unit(6 + 2/12, "feet"),
  41489. default: true
  41490. },
  41491. {
  41492. name: "Transformation Stage",
  41493. height: math.unit(15, "feet")
  41494. },
  41495. {
  41496. name: "Macro",
  41497. height: math.unit(150, "feet")
  41498. },
  41499. {
  41500. name: "Earth's Shadow",
  41501. height: math.unit(6200, "miles")
  41502. },
  41503. {
  41504. name: "Universal Demon",
  41505. height: math.unit(28e9, "parsecs")
  41506. },
  41507. {
  41508. name: "Multiverse God",
  41509. height: math.unit(3, "multiverses")
  41510. },
  41511. ]
  41512. ))
  41513. characterMakers.push(() => makeCharacter(
  41514. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41515. {
  41516. front: {
  41517. height: math.unit(5 + 5/12, "feet"),
  41518. name: "Front",
  41519. image: {
  41520. source: "./media/characters/fawn/front.svg",
  41521. extra: 1873/1731,
  41522. bottom: 95/1968
  41523. }
  41524. },
  41525. back: {
  41526. height: math.unit(5 + 5/12, "feet"),
  41527. name: "Back",
  41528. image: {
  41529. source: "./media/characters/fawn/back.svg",
  41530. extra: 1813/1700,
  41531. bottom: 14/1827
  41532. }
  41533. },
  41534. hoof: {
  41535. height: math.unit(1.45, "feet"),
  41536. name: "Hoof",
  41537. image: {
  41538. source: "./media/characters/fawn/hoof.svg"
  41539. }
  41540. },
  41541. },
  41542. [
  41543. {
  41544. name: "Normal",
  41545. height: math.unit(5 + 5/12, "feet"),
  41546. default: true
  41547. },
  41548. ]
  41549. ))
  41550. characterMakers.push(() => makeCharacter(
  41551. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41552. {
  41553. front: {
  41554. height: math.unit(2 + 5/12, "feet"),
  41555. name: "Front",
  41556. image: {
  41557. source: "./media/characters/orion/front.svg",
  41558. extra: 1366/1304,
  41559. bottom: 43/1409
  41560. }
  41561. },
  41562. paw: {
  41563. height: math.unit(0.52, "feet"),
  41564. name: "Paw",
  41565. image: {
  41566. source: "./media/characters/orion/paw.svg"
  41567. }
  41568. },
  41569. },
  41570. [
  41571. {
  41572. name: "Normal",
  41573. height: math.unit(2 + 5/12, "feet"),
  41574. default: true
  41575. },
  41576. ]
  41577. ))
  41578. characterMakers.push(() => makeCharacter(
  41579. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41580. {
  41581. front: {
  41582. height: math.unit(5 + 10/12, "feet"),
  41583. name: "Front",
  41584. image: {
  41585. source: "./media/characters/vera/front.svg",
  41586. extra: 1680/1575,
  41587. bottom: 49/1729
  41588. }
  41589. },
  41590. back: {
  41591. height: math.unit(5 + 10/12, "feet"),
  41592. name: "Back",
  41593. image: {
  41594. source: "./media/characters/vera/back.svg",
  41595. extra: 1700/1588,
  41596. bottom: 18/1718
  41597. }
  41598. },
  41599. arcanine: {
  41600. height: math.unit(6 + 8/12, "feet"),
  41601. name: "Arcanine",
  41602. image: {
  41603. source: "./media/characters/vera/arcanine.svg",
  41604. extra: 1590/1511,
  41605. bottom: 71/1661
  41606. }
  41607. },
  41608. maw: {
  41609. height: math.unit(0.82, "feet"),
  41610. name: "Maw",
  41611. image: {
  41612. source: "./media/characters/vera/maw.svg"
  41613. }
  41614. },
  41615. mawArcanine: {
  41616. height: math.unit(0.97, "feet"),
  41617. name: "Maw (Arcanine)",
  41618. image: {
  41619. source: "./media/characters/vera/maw-arcanine.svg"
  41620. }
  41621. },
  41622. paw: {
  41623. height: math.unit(0.75, "feet"),
  41624. name: "Paw",
  41625. image: {
  41626. source: "./media/characters/vera/paw.svg"
  41627. }
  41628. },
  41629. pawprint: {
  41630. height: math.unit(0.52, "feet"),
  41631. name: "Pawprint",
  41632. image: {
  41633. source: "./media/characters/vera/pawprint.svg"
  41634. }
  41635. },
  41636. },
  41637. [
  41638. {
  41639. name: "Normal",
  41640. height: math.unit(5 + 10/12, "feet"),
  41641. default: true
  41642. },
  41643. {
  41644. name: "Macro",
  41645. height: math.unit(75, "feet")
  41646. },
  41647. ]
  41648. ))
  41649. characterMakers.push(() => makeCharacter(
  41650. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41651. {
  41652. front: {
  41653. height: math.unit(4, "feet"),
  41654. weight: math.unit(40, "lb"),
  41655. name: "Front",
  41656. image: {
  41657. source: "./media/characters/orvan-rabbit/front.svg",
  41658. extra: 1896/1642,
  41659. bottom: 29/1925
  41660. }
  41661. },
  41662. },
  41663. [
  41664. {
  41665. name: "Normal",
  41666. height: math.unit(4, "feet"),
  41667. default: true
  41668. },
  41669. ]
  41670. ))
  41671. characterMakers.push(() => makeCharacter(
  41672. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41673. {
  41674. front: {
  41675. height: math.unit(6, "feet"),
  41676. weight: math.unit(168, "lb"),
  41677. name: "Front",
  41678. image: {
  41679. source: "./media/characters/lisa/front.svg",
  41680. extra: 2065/1867,
  41681. bottom: 46/2111
  41682. }
  41683. },
  41684. back: {
  41685. height: math.unit(6, "feet"),
  41686. weight: math.unit(168, "lb"),
  41687. name: "Back",
  41688. image: {
  41689. source: "./media/characters/lisa/back.svg",
  41690. extra: 1982/1838,
  41691. bottom: 29/2011
  41692. }
  41693. },
  41694. maw: {
  41695. height: math.unit(0.81, "feet"),
  41696. name: "Maw",
  41697. image: {
  41698. source: "./media/characters/lisa/maw.svg"
  41699. }
  41700. },
  41701. paw: {
  41702. height: math.unit(0.9, "feet"),
  41703. name: "Paw",
  41704. image: {
  41705. source: "./media/characters/lisa/paw.svg"
  41706. }
  41707. },
  41708. caribousune: {
  41709. height: math.unit(7 + 2/12, "feet"),
  41710. weight: math.unit(268, "lb"),
  41711. name: "Caribousune",
  41712. image: {
  41713. source: "./media/characters/lisa/caribousune.svg",
  41714. extra: 1843/1633,
  41715. bottom: 29/1872
  41716. }
  41717. },
  41718. frontCaribousune: {
  41719. height: math.unit(7 + 2/12, "feet"),
  41720. weight: math.unit(268, "lb"),
  41721. name: "Front (Caribousune)",
  41722. image: {
  41723. source: "./media/characters/lisa/front-caribousune.svg",
  41724. extra: 1818/1638,
  41725. bottom: 52/1870
  41726. }
  41727. },
  41728. sideCaribousune: {
  41729. height: math.unit(7 + 2/12, "feet"),
  41730. weight: math.unit(268, "lb"),
  41731. name: "Side (Caribousune)",
  41732. image: {
  41733. source: "./media/characters/lisa/side-caribousune.svg",
  41734. extra: 1851/1635,
  41735. bottom: 16/1867
  41736. }
  41737. },
  41738. backCaribousune: {
  41739. height: math.unit(7 + 2/12, "feet"),
  41740. weight: math.unit(268, "lb"),
  41741. name: "Back (Caribousune)",
  41742. image: {
  41743. source: "./media/characters/lisa/back-caribousune.svg",
  41744. extra: 1801/1604,
  41745. bottom: 44/1845
  41746. }
  41747. },
  41748. caribou: {
  41749. height: math.unit(7 + 2/12, "feet"),
  41750. weight: math.unit(268, "lb"),
  41751. name: "Caribou",
  41752. image: {
  41753. source: "./media/characters/lisa/caribou.svg",
  41754. extra: 1843/1633,
  41755. bottom: 29/1872
  41756. }
  41757. },
  41758. frontCaribou: {
  41759. height: math.unit(7 + 2/12, "feet"),
  41760. weight: math.unit(268, "lb"),
  41761. name: "Front (Caribou)",
  41762. image: {
  41763. source: "./media/characters/lisa/front-caribou.svg",
  41764. extra: 1818/1638,
  41765. bottom: 52/1870
  41766. }
  41767. },
  41768. sideCaribou: {
  41769. height: math.unit(7 + 2/12, "feet"),
  41770. weight: math.unit(268, "lb"),
  41771. name: "Side (Caribou)",
  41772. image: {
  41773. source: "./media/characters/lisa/side-caribou.svg",
  41774. extra: 1851/1635,
  41775. bottom: 16/1867
  41776. }
  41777. },
  41778. backCaribou: {
  41779. height: math.unit(7 + 2/12, "feet"),
  41780. weight: math.unit(268, "lb"),
  41781. name: "Back (Caribou)",
  41782. image: {
  41783. source: "./media/characters/lisa/back-caribou.svg",
  41784. extra: 1801/1604,
  41785. bottom: 44/1845
  41786. }
  41787. },
  41788. mawCaribou: {
  41789. height: math.unit(1.45, "feet"),
  41790. name: "Maw (Caribou)",
  41791. image: {
  41792. source: "./media/characters/lisa/maw-caribou.svg"
  41793. }
  41794. },
  41795. mawCaribousune: {
  41796. height: math.unit(1.45, "feet"),
  41797. name: "Maw (Caribousune)",
  41798. image: {
  41799. source: "./media/characters/lisa/maw-caribousune.svg"
  41800. }
  41801. },
  41802. pawCaribousune: {
  41803. height: math.unit(1.61, "feet"),
  41804. name: "Paw (Caribou)",
  41805. image: {
  41806. source: "./media/characters/lisa/paw-caribousune.svg"
  41807. }
  41808. },
  41809. },
  41810. [
  41811. {
  41812. name: "Normal",
  41813. height: math.unit(6, "feet")
  41814. },
  41815. {
  41816. name: "God Size",
  41817. height: math.unit(72, "feet"),
  41818. default: true
  41819. },
  41820. {
  41821. name: "Towering",
  41822. height: math.unit(288, "feet")
  41823. },
  41824. {
  41825. name: "City Size",
  41826. height: math.unit(48384, "feet")
  41827. },
  41828. {
  41829. name: "Continental",
  41830. height: math.unit(4200, "miles")
  41831. },
  41832. {
  41833. name: "Planet Eater",
  41834. height: math.unit(42, "earths")
  41835. },
  41836. {
  41837. name: "Star Swallower",
  41838. height: math.unit(42, "solarradii")
  41839. },
  41840. {
  41841. name: "System Swallower",
  41842. height: math.unit(84000, "AU")
  41843. },
  41844. {
  41845. name: "Galaxy Gobbler",
  41846. height: math.unit(42, "galaxies")
  41847. },
  41848. {
  41849. name: "Universe Devourer",
  41850. height: math.unit(42, "universes")
  41851. },
  41852. {
  41853. name: "Multiverse Muncher",
  41854. height: math.unit(42, "multiverses")
  41855. },
  41856. ]
  41857. ))
  41858. characterMakers.push(() => makeCharacter(
  41859. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41860. {
  41861. front: {
  41862. height: math.unit(36, "feet"),
  41863. name: "Front",
  41864. image: {
  41865. source: "./media/characters/shadow-rat/front.svg",
  41866. extra: 1845/1758,
  41867. bottom: 83/1928
  41868. }
  41869. },
  41870. },
  41871. [
  41872. {
  41873. name: "Macro",
  41874. height: math.unit(36, "feet"),
  41875. default: true
  41876. },
  41877. ]
  41878. ))
  41879. characterMakers.push(() => makeCharacter(
  41880. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41881. {
  41882. side: {
  41883. height: math.unit(8, "feet"),
  41884. weight: math.unit(2630, "lb"),
  41885. name: "Side",
  41886. image: {
  41887. source: "./media/characters/torallia/side.svg",
  41888. extra: 2164/2021,
  41889. bottom: 371/2535
  41890. }
  41891. },
  41892. },
  41893. [
  41894. {
  41895. name: "Mortal Interaction",
  41896. height: math.unit(8, "feet")
  41897. },
  41898. {
  41899. name: "Natural",
  41900. height: math.unit(24, "feet"),
  41901. default: true
  41902. },
  41903. {
  41904. name: "Giant",
  41905. height: math.unit(80, "feet")
  41906. },
  41907. {
  41908. name: "Kaiju",
  41909. height: math.unit(240, "feet")
  41910. },
  41911. {
  41912. name: "Macro",
  41913. height: math.unit(800, "feet")
  41914. },
  41915. {
  41916. name: "Macro+",
  41917. height: math.unit(2400, "feet")
  41918. },
  41919. {
  41920. name: "Macro++",
  41921. height: math.unit(8000, "feet")
  41922. },
  41923. {
  41924. name: "City-Crushing",
  41925. height: math.unit(24000, "feet")
  41926. },
  41927. {
  41928. name: "Mountain-Mashing",
  41929. height: math.unit(80000, "feet")
  41930. },
  41931. {
  41932. name: "District Demolisher",
  41933. height: math.unit(240000, "feet")
  41934. },
  41935. {
  41936. name: "Tri-County Terror",
  41937. height: math.unit(800000, "feet")
  41938. },
  41939. {
  41940. name: "State Smasher",
  41941. height: math.unit(2.4e6, "feet")
  41942. },
  41943. {
  41944. name: "Nation Nemesis",
  41945. height: math.unit(8e6, "feet")
  41946. },
  41947. {
  41948. name: "Continent Cracker",
  41949. height: math.unit(2.4e7, "feet")
  41950. },
  41951. {
  41952. name: "Planet-Pillaging",
  41953. height: math.unit(8e7, "feet")
  41954. },
  41955. {
  41956. name: "Earth-Eclipsing",
  41957. height: math.unit(2.4e8, "feet")
  41958. },
  41959. {
  41960. name: "Jovian-Jostling",
  41961. height: math.unit(8e8, "feet")
  41962. },
  41963. {
  41964. name: "Gas Giant Gulper",
  41965. height: math.unit(2.4e9, "feet")
  41966. },
  41967. {
  41968. name: "Astral Annihilator",
  41969. height: math.unit(8e9, "feet")
  41970. },
  41971. {
  41972. name: "Celestial Conqueror",
  41973. height: math.unit(2.4e10, "feet")
  41974. },
  41975. {
  41976. name: "Sol-Swallowing",
  41977. height: math.unit(8e10, "feet")
  41978. },
  41979. {
  41980. name: "Hunter of the Heavens",
  41981. height: math.unit(2.4e13, "feet")
  41982. },
  41983. ]
  41984. ))
  41985. characterMakers.push(() => makeCharacter(
  41986. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41987. {
  41988. front: {
  41989. height: math.unit(10, "feet"),
  41990. weight: math.unit(844, "kilograms"),
  41991. name: "Front",
  41992. image: {
  41993. source: "./media/characters/rebecca-pawlson/front.svg",
  41994. extra: 1196/1099,
  41995. bottom: 81/1277
  41996. },
  41997. extraAttributes: {
  41998. "pawSize": {
  41999. name: "Paw Size",
  42000. power: 2,
  42001. type: "area",
  42002. base: math.unit(0.2 * 0.375, "meters^2")
  42003. },
  42004. "handSize": {
  42005. name: "Hand Size",
  42006. power: 2,
  42007. type: "area",
  42008. base: math.unit(0.2 * 0.35, "meters^2")
  42009. },
  42010. "breastDiameter": {
  42011. name: "Breast Diameter",
  42012. power: 1,
  42013. type: "length",
  42014. base: math.unit(0.5, "meters")
  42015. },
  42016. "breastVolume": {
  42017. name: "Breast Volume",
  42018. power: 3,
  42019. type: "volume",
  42020. base: math.unit(0.065, "m^3")
  42021. },
  42022. "breastMass": {
  42023. name: "Breast Mass",
  42024. power: 3,
  42025. type: "mass",
  42026. base: math.unit(65, "kg")
  42027. },
  42028. "nippleDiameter": {
  42029. name: "Nipple Diameter",
  42030. power: 1,
  42031. type: "length",
  42032. base: math.unit(0.1, "meters")
  42033. },
  42034. }
  42035. },
  42036. back: {
  42037. height: math.unit(10, "feet"),
  42038. weight: math.unit(844, "kilograms"),
  42039. name: "Back",
  42040. image: {
  42041. source: "./media/characters/rebecca-pawlson/back.svg",
  42042. extra: 879/776,
  42043. bottom: 43/922
  42044. },
  42045. extraAttributes: {
  42046. "pawSize": {
  42047. name: "Paw Size",
  42048. power: 2,
  42049. type: "area",
  42050. base: math.unit(0.2 * 0.375, "meters^2")
  42051. },
  42052. "handSize": {
  42053. name: "Hand Size",
  42054. power: 2,
  42055. type: "area",
  42056. base: math.unit(0.2 * 0.35, "meters^2")
  42057. },
  42058. "breastDiameter": {
  42059. name: "Breast Diameter",
  42060. power: 1,
  42061. type: "length",
  42062. base: math.unit(0.5, "meters")
  42063. },
  42064. "breastVolume": {
  42065. name: "Breast Volume",
  42066. power: 3,
  42067. type: "volume",
  42068. base: math.unit(0.065, "m^3")
  42069. },
  42070. "breastMass": {
  42071. name: "Breast Mass",
  42072. power: 3,
  42073. type: "mass",
  42074. base: math.unit(65, "kg")
  42075. },
  42076. "nippleDiameter": {
  42077. name: "Nipple Diameter",
  42078. power: 1,
  42079. type: "length",
  42080. base: math.unit(0.1, "meters")
  42081. },
  42082. }
  42083. },
  42084. },
  42085. [
  42086. {
  42087. name: "Normal",
  42088. height: math.unit(6 + 8/12, "feet")
  42089. },
  42090. {
  42091. name: "Mini Macro",
  42092. height: math.unit(10, "feet"),
  42093. default: true
  42094. },
  42095. {
  42096. name: "Macro",
  42097. height: math.unit(100, "feet")
  42098. },
  42099. {
  42100. name: "Mega Macro",
  42101. height: math.unit(2500, "feet")
  42102. },
  42103. {
  42104. name: "Giga Macro",
  42105. height: math.unit(50, "miles")
  42106. },
  42107. ]
  42108. ))
  42109. characterMakers.push(() => makeCharacter(
  42110. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42111. {
  42112. front: {
  42113. height: math.unit(7 + 6/12, "feet"),
  42114. weight: math.unit(600, "lb"),
  42115. name: "Front",
  42116. image: {
  42117. source: "./media/characters/moxie-nova/front.svg",
  42118. extra: 1734/1652,
  42119. bottom: 41/1775
  42120. }
  42121. },
  42122. },
  42123. [
  42124. {
  42125. name: "Normal",
  42126. height: math.unit(7 + 6/12, "feet"),
  42127. default: true
  42128. },
  42129. ]
  42130. ))
  42131. characterMakers.push(() => makeCharacter(
  42132. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42133. {
  42134. goat: {
  42135. height: math.unit(4, "feet"),
  42136. weight: math.unit(180, "lb"),
  42137. name: "Goat",
  42138. image: {
  42139. source: "./media/characters/tiffany/goat.svg",
  42140. extra: 1845/1595,
  42141. bottom: 106/1951
  42142. }
  42143. },
  42144. front: {
  42145. height: math.unit(5, "feet"),
  42146. weight: math.unit(150, "lb"),
  42147. name: "Foxcoon",
  42148. image: {
  42149. source: "./media/characters/tiffany/foxcoon.svg",
  42150. extra: 1941/1845,
  42151. bottom: 58/1999
  42152. }
  42153. },
  42154. },
  42155. [
  42156. {
  42157. name: "Normal",
  42158. height: math.unit(5, "feet"),
  42159. default: true
  42160. },
  42161. ]
  42162. ))
  42163. characterMakers.push(() => makeCharacter(
  42164. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42165. {
  42166. front: {
  42167. height: math.unit(8, "feet"),
  42168. weight: math.unit(300, "lb"),
  42169. name: "Front",
  42170. image: {
  42171. source: "./media/characters/raxinath/front.svg",
  42172. extra: 1407/1309,
  42173. bottom: 39/1446
  42174. }
  42175. },
  42176. back: {
  42177. height: math.unit(8, "feet"),
  42178. weight: math.unit(300, "lb"),
  42179. name: "Back",
  42180. image: {
  42181. source: "./media/characters/raxinath/back.svg",
  42182. extra: 1405/1315,
  42183. bottom: 9/1414
  42184. }
  42185. },
  42186. },
  42187. [
  42188. {
  42189. name: "Speck",
  42190. height: math.unit(0.5, "nm")
  42191. },
  42192. {
  42193. name: "Micro",
  42194. height: math.unit(3, "inches")
  42195. },
  42196. {
  42197. name: "Kobold",
  42198. height: math.unit(3, "feet")
  42199. },
  42200. {
  42201. name: "Normal",
  42202. height: math.unit(8, "feet"),
  42203. default: true
  42204. },
  42205. {
  42206. name: "Giant",
  42207. height: math.unit(50, "feet")
  42208. },
  42209. {
  42210. name: "Macro",
  42211. height: math.unit(1000, "feet")
  42212. },
  42213. {
  42214. name: "Megamacro",
  42215. height: math.unit(1, "mile")
  42216. },
  42217. ]
  42218. ))
  42219. characterMakers.push(() => makeCharacter(
  42220. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42221. {
  42222. front: {
  42223. height: math.unit(10, "feet"),
  42224. weight: math.unit(1442, "lb"),
  42225. name: "Front",
  42226. image: {
  42227. source: "./media/characters/mal-dragon/front.svg",
  42228. extra: 1515/1444,
  42229. bottom: 113/1628
  42230. }
  42231. },
  42232. back: {
  42233. height: math.unit(10, "feet"),
  42234. weight: math.unit(1442, "lb"),
  42235. name: "Back",
  42236. image: {
  42237. source: "./media/characters/mal-dragon/back.svg",
  42238. extra: 1527/1434,
  42239. bottom: 25/1552
  42240. }
  42241. },
  42242. },
  42243. [
  42244. {
  42245. name: "Mortal Interaction",
  42246. height: math.unit(10, "feet"),
  42247. default: true
  42248. },
  42249. {
  42250. name: "Large",
  42251. height: math.unit(30, "feet")
  42252. },
  42253. {
  42254. name: "Kaiju",
  42255. height: math.unit(300, "feet")
  42256. },
  42257. {
  42258. name: "Megamacro",
  42259. height: math.unit(10000, "feet")
  42260. },
  42261. {
  42262. name: "Continent Cracker",
  42263. height: math.unit(30000000, "feet")
  42264. },
  42265. {
  42266. name: "Sol-Swallowing",
  42267. height: math.unit(1e11, "feet")
  42268. },
  42269. {
  42270. name: "Light Universal",
  42271. height: math.unit(5, "universes")
  42272. },
  42273. {
  42274. name: "Universe Atoms",
  42275. height: math.unit(1.829e9, "universes")
  42276. },
  42277. {
  42278. name: "Light Multiversal",
  42279. height: math.unit(5, "multiverses")
  42280. },
  42281. {
  42282. name: "Multiverse Atoms",
  42283. height: math.unit(1.829e9, "multiverses")
  42284. },
  42285. {
  42286. name: "Fabric of Time",
  42287. height: math.unit(1e262, "multiverses")
  42288. },
  42289. ]
  42290. ))
  42291. characterMakers.push(() => makeCharacter(
  42292. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42293. {
  42294. front: {
  42295. height: math.unit(9, "feet"),
  42296. weight: math.unit(1050, "lb"),
  42297. name: "Front",
  42298. image: {
  42299. source: "./media/characters/tabitha/front.svg",
  42300. extra: 2083/1994,
  42301. bottom: 68/2151
  42302. }
  42303. },
  42304. },
  42305. [
  42306. {
  42307. name: "Baseline",
  42308. height: math.unit(9, "feet"),
  42309. default: true
  42310. },
  42311. {
  42312. name: "Giant",
  42313. height: math.unit(90, "feet")
  42314. },
  42315. {
  42316. name: "Macro",
  42317. height: math.unit(900, "feet")
  42318. },
  42319. {
  42320. name: "Megamacro",
  42321. height: math.unit(9000, "feet")
  42322. },
  42323. {
  42324. name: "City-Crushing",
  42325. height: math.unit(27000, "feet")
  42326. },
  42327. {
  42328. name: "Mountain-Mashing",
  42329. height: math.unit(90000, "feet")
  42330. },
  42331. {
  42332. name: "Nation Nemesis",
  42333. height: math.unit(9e6, "feet")
  42334. },
  42335. {
  42336. name: "Continent Cracker",
  42337. height: math.unit(27e6, "feet")
  42338. },
  42339. {
  42340. name: "Earth-Eclipsing",
  42341. height: math.unit(2.7e8, "feet")
  42342. },
  42343. {
  42344. name: "Gas Giant Gulper",
  42345. height: math.unit(2.7e9, "feet")
  42346. },
  42347. {
  42348. name: "Sol-Swallowing",
  42349. height: math.unit(9e10, "feet")
  42350. },
  42351. {
  42352. name: "Galaxy Gulper",
  42353. height: math.unit(9, "galaxies")
  42354. },
  42355. {
  42356. name: "Cosmos Churner",
  42357. height: math.unit(9, "universes")
  42358. },
  42359. ]
  42360. ))
  42361. characterMakers.push(() => makeCharacter(
  42362. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42363. {
  42364. front: {
  42365. height: math.unit(160, "cm"),
  42366. weight: math.unit(55, "kg"),
  42367. name: "Front",
  42368. image: {
  42369. source: "./media/characters/tow/front.svg",
  42370. extra: 1751/1722,
  42371. bottom: 74/1825
  42372. }
  42373. },
  42374. },
  42375. [
  42376. {
  42377. name: "Norm",
  42378. height: math.unit(160, "cm")
  42379. },
  42380. {
  42381. name: "Casual",
  42382. height: math.unit(3200, "m"),
  42383. default: true
  42384. },
  42385. {
  42386. name: "Show-Off",
  42387. height: math.unit(160, "km")
  42388. },
  42389. ]
  42390. ))
  42391. characterMakers.push(() => makeCharacter(
  42392. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42393. {
  42394. front: {
  42395. height: math.unit(7 + 11/12, "feet"),
  42396. weight: math.unit(342.8, "lb"),
  42397. name: "Front",
  42398. image: {
  42399. source: "./media/characters/vivian-orca-dragon/front.svg",
  42400. extra: 1890/1865,
  42401. bottom: 28/1918
  42402. }
  42403. },
  42404. },
  42405. [
  42406. {
  42407. name: "Micro",
  42408. height: math.unit(5, "inches")
  42409. },
  42410. {
  42411. name: "Normal",
  42412. height: math.unit(7 + 11/12, "feet"),
  42413. default: true
  42414. },
  42415. {
  42416. name: "Macro",
  42417. height: math.unit(395 + 7/12, "feet")
  42418. },
  42419. ]
  42420. ))
  42421. characterMakers.push(() => makeCharacter(
  42422. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42423. {
  42424. side: {
  42425. height: math.unit(10, "feet"),
  42426. weight: math.unit(1442, "lb"),
  42427. name: "Side",
  42428. image: {
  42429. source: "./media/characters/lotherakon/side.svg",
  42430. extra: 1604/1497,
  42431. bottom: 89/1693
  42432. }
  42433. },
  42434. },
  42435. [
  42436. {
  42437. name: "Mortal Interaction",
  42438. height: math.unit(10, "feet")
  42439. },
  42440. {
  42441. name: "Large",
  42442. height: math.unit(30, "feet"),
  42443. default: true
  42444. },
  42445. {
  42446. name: "Giant",
  42447. height: math.unit(100, "feet")
  42448. },
  42449. {
  42450. name: "Kaiju",
  42451. height: math.unit(300, "feet")
  42452. },
  42453. {
  42454. name: "Macro",
  42455. height: math.unit(1000, "feet")
  42456. },
  42457. {
  42458. name: "Macro+",
  42459. height: math.unit(3000, "feet")
  42460. },
  42461. {
  42462. name: "Megamacro",
  42463. height: math.unit(10000, "feet")
  42464. },
  42465. {
  42466. name: "City-Crushing",
  42467. height: math.unit(30000, "feet")
  42468. },
  42469. {
  42470. name: "Continent Cracker",
  42471. height: math.unit(30e6, "feet")
  42472. },
  42473. {
  42474. name: "Earth Eclipsing",
  42475. height: math.unit(3e8, "feet")
  42476. },
  42477. {
  42478. name: "Gas Giant Gulper",
  42479. height: math.unit(3e9, "feet")
  42480. },
  42481. {
  42482. name: "Sol-Swallowing",
  42483. height: math.unit(1e11, "feet")
  42484. },
  42485. {
  42486. name: "System Swallower",
  42487. height: math.unit(3e14, "feet")
  42488. },
  42489. {
  42490. name: "Galaxy Gulper",
  42491. height: math.unit(10, "galaxies")
  42492. },
  42493. {
  42494. name: "Light Universal",
  42495. height: math.unit(5, "universes")
  42496. },
  42497. {
  42498. name: "Universe Palm",
  42499. height: math.unit(20, "universes")
  42500. },
  42501. {
  42502. name: "Light Multiversal",
  42503. height: math.unit(5, "multiverses")
  42504. },
  42505. {
  42506. name: "Multiverse Palm",
  42507. height: math.unit(20, "multiverses")
  42508. },
  42509. {
  42510. name: "Inferno Incarnate",
  42511. height: math.unit(1e7, "multiverses")
  42512. },
  42513. ]
  42514. ))
  42515. characterMakers.push(() => makeCharacter(
  42516. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42517. {
  42518. front: {
  42519. height: math.unit(8, "feet"),
  42520. weight: math.unit(1200, "lb"),
  42521. name: "Front",
  42522. image: {
  42523. source: "./media/characters/malithee/front.svg",
  42524. extra: 1675/1640,
  42525. bottom: 162/1837
  42526. }
  42527. },
  42528. },
  42529. [
  42530. {
  42531. name: "Mortal Interaction",
  42532. height: math.unit(8, "feet"),
  42533. default: true
  42534. },
  42535. {
  42536. name: "Large",
  42537. height: math.unit(24, "feet")
  42538. },
  42539. {
  42540. name: "Kaiju",
  42541. height: math.unit(240, "feet")
  42542. },
  42543. {
  42544. name: "Megamacro",
  42545. height: math.unit(8000, "feet")
  42546. },
  42547. {
  42548. name: "Continent Cracker",
  42549. height: math.unit(24e6, "feet")
  42550. },
  42551. {
  42552. name: "Earth-Eclipsing",
  42553. height: math.unit(2.4e8, "feet")
  42554. },
  42555. {
  42556. name: "Sol-Swallowing",
  42557. height: math.unit(8e10, "feet")
  42558. },
  42559. {
  42560. name: "Galaxy Gulper",
  42561. height: math.unit(8, "galaxies")
  42562. },
  42563. {
  42564. name: "Light Universal",
  42565. height: math.unit(4, "universes")
  42566. },
  42567. {
  42568. name: "Universe Atoms",
  42569. height: math.unit(1.829e9, "universes")
  42570. },
  42571. {
  42572. name: "Light Multiversal",
  42573. height: math.unit(4, "multiverses")
  42574. },
  42575. {
  42576. name: "Multiverse Atoms",
  42577. height: math.unit(1.829e9, "multiverses")
  42578. },
  42579. {
  42580. name: "Nigh-Omnipresence",
  42581. height: math.unit(8e261, "multiverses")
  42582. },
  42583. ]
  42584. ))
  42585. characterMakers.push(() => makeCharacter(
  42586. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42587. {
  42588. front: {
  42589. height: math.unit(10, "feet"),
  42590. weight: math.unit(1500, "lb"),
  42591. name: "Front",
  42592. image: {
  42593. source: "./media/characters/miles-thestia/front.svg",
  42594. extra: 1812/1727,
  42595. bottom: 86/1898
  42596. }
  42597. },
  42598. back: {
  42599. height: math.unit(10, "feet"),
  42600. weight: math.unit(1500, "lb"),
  42601. name: "Back",
  42602. image: {
  42603. source: "./media/characters/miles-thestia/back.svg",
  42604. extra: 1799/1690,
  42605. bottom: 47/1846
  42606. }
  42607. },
  42608. frontNsfw: {
  42609. height: math.unit(10, "feet"),
  42610. weight: math.unit(1500, "lb"),
  42611. name: "Front (NSFW)",
  42612. image: {
  42613. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42614. extra: 1812/1727,
  42615. bottom: 86/1898
  42616. }
  42617. },
  42618. },
  42619. [
  42620. {
  42621. name: "Mini-Macro",
  42622. height: math.unit(10, "feet"),
  42623. default: true
  42624. },
  42625. ]
  42626. ))
  42627. characterMakers.push(() => makeCharacter(
  42628. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42629. {
  42630. front: {
  42631. height: math.unit(25, "feet"),
  42632. name: "Front",
  42633. image: {
  42634. source: "./media/characters/titan-s-wulf/front.svg",
  42635. extra: 1560/1484,
  42636. bottom: 76/1636
  42637. }
  42638. },
  42639. },
  42640. [
  42641. {
  42642. name: "Smallest",
  42643. height: math.unit(25, "feet"),
  42644. default: true
  42645. },
  42646. {
  42647. name: "Normal",
  42648. height: math.unit(200, "feet")
  42649. },
  42650. {
  42651. name: "Macro",
  42652. height: math.unit(200000, "feet")
  42653. },
  42654. {
  42655. name: "Multiversal Original",
  42656. height: math.unit(10000, "multiverses")
  42657. },
  42658. ]
  42659. ))
  42660. characterMakers.push(() => makeCharacter(
  42661. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42662. {
  42663. front: {
  42664. height: math.unit(8, "feet"),
  42665. weight: math.unit(553, "lb"),
  42666. name: "Front",
  42667. image: {
  42668. source: "./media/characters/tawendeh/front.svg",
  42669. extra: 2365/2268,
  42670. bottom: 83/2448
  42671. }
  42672. },
  42673. frontClothed: {
  42674. height: math.unit(8, "feet"),
  42675. weight: math.unit(553, "lb"),
  42676. name: "Front (Clothed)",
  42677. image: {
  42678. source: "./media/characters/tawendeh/front-clothed.svg",
  42679. extra: 2365/2268,
  42680. bottom: 83/2448
  42681. }
  42682. },
  42683. back: {
  42684. height: math.unit(8, "feet"),
  42685. weight: math.unit(553, "lb"),
  42686. name: "Back",
  42687. image: {
  42688. source: "./media/characters/tawendeh/back.svg",
  42689. extra: 2397/2294,
  42690. bottom: 42/2439
  42691. }
  42692. },
  42693. },
  42694. [
  42695. {
  42696. name: "Mortal Interaction",
  42697. height: math.unit(8, "feet"),
  42698. default: true
  42699. },
  42700. {
  42701. name: "Giant",
  42702. height: math.unit(80, "feet")
  42703. },
  42704. {
  42705. name: "Macro",
  42706. height: math.unit(800, "feet")
  42707. },
  42708. {
  42709. name: "Megamacro",
  42710. height: math.unit(8000, "feet")
  42711. },
  42712. {
  42713. name: "City-Crushing",
  42714. height: math.unit(24000, "feet")
  42715. },
  42716. {
  42717. name: "Mountain-Mashing",
  42718. height: math.unit(80000, "feet")
  42719. },
  42720. {
  42721. name: "Nation Nemesis",
  42722. height: math.unit(8e6, "feet")
  42723. },
  42724. {
  42725. name: "Continent Cracker",
  42726. height: math.unit(24e6, "feet")
  42727. },
  42728. {
  42729. name: "Earth-Eclipsing",
  42730. height: math.unit(2.4e8, "feet")
  42731. },
  42732. {
  42733. name: "Gas Giant Gulper",
  42734. height: math.unit(2.4e9, "feet")
  42735. },
  42736. {
  42737. name: "Sol-Swallowing",
  42738. height: math.unit(8e10, "feet")
  42739. },
  42740. {
  42741. name: "Galaxy Gulper",
  42742. height: math.unit(8, "galaxies")
  42743. },
  42744. {
  42745. name: "Cosmos Churner",
  42746. height: math.unit(8, "universes")
  42747. },
  42748. {
  42749. name: "Omnipotent Otter",
  42750. height: math.unit(80, "universes")
  42751. },
  42752. ]
  42753. ))
  42754. characterMakers.push(() => makeCharacter(
  42755. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42756. {
  42757. front: {
  42758. height: math.unit(2.6, "meters"),
  42759. weight: math.unit(900, "kg"),
  42760. name: "Front",
  42761. image: {
  42762. source: "./media/characters/neesha/front.svg",
  42763. extra: 1803/1653,
  42764. bottom: 128/1931
  42765. }
  42766. },
  42767. },
  42768. [
  42769. {
  42770. name: "Normal",
  42771. height: math.unit(2.6, "meters"),
  42772. default: true
  42773. },
  42774. {
  42775. name: "Macro",
  42776. height: math.unit(50, "meters")
  42777. },
  42778. ]
  42779. ))
  42780. characterMakers.push(() => makeCharacter(
  42781. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42782. {
  42783. front: {
  42784. height: math.unit(5, "feet"),
  42785. weight: math.unit(185, "lb"),
  42786. name: "Front",
  42787. image: {
  42788. source: "./media/characters/kyera/front.svg",
  42789. extra: 1875/1790,
  42790. bottom: 96/1971
  42791. }
  42792. },
  42793. },
  42794. [
  42795. {
  42796. name: "Normal",
  42797. height: math.unit(5, "feet"),
  42798. default: true
  42799. },
  42800. ]
  42801. ))
  42802. characterMakers.push(() => makeCharacter(
  42803. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42804. {
  42805. front: {
  42806. height: math.unit(7 + 6/12, "feet"),
  42807. weight: math.unit(540, "lb"),
  42808. name: "Front",
  42809. image: {
  42810. source: "./media/characters/yuko/front.svg",
  42811. extra: 1282/1222,
  42812. bottom: 101/1383
  42813. }
  42814. },
  42815. frontClothed: {
  42816. height: math.unit(7 + 6/12, "feet"),
  42817. weight: math.unit(540, "lb"),
  42818. name: "Front (Clothed)",
  42819. image: {
  42820. source: "./media/characters/yuko/front-clothed.svg",
  42821. extra: 1282/1222,
  42822. bottom: 101/1383
  42823. }
  42824. },
  42825. },
  42826. [
  42827. {
  42828. name: "Normal",
  42829. height: math.unit(7 + 6/12, "feet"),
  42830. default: true
  42831. },
  42832. {
  42833. name: "Macro",
  42834. height: math.unit(26 + 9/12, "feet")
  42835. },
  42836. {
  42837. name: "Megamacro",
  42838. height: math.unit(300, "feet")
  42839. },
  42840. {
  42841. name: "Gigamacro",
  42842. height: math.unit(5000, "feet")
  42843. },
  42844. {
  42845. name: "Planetary",
  42846. height: math.unit(10000, "miles")
  42847. },
  42848. ]
  42849. ))
  42850. characterMakers.push(() => makeCharacter(
  42851. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42852. {
  42853. front: {
  42854. height: math.unit(8 + 2/12, "feet"),
  42855. weight: math.unit(600, "lb"),
  42856. name: "Front",
  42857. image: {
  42858. source: "./media/characters/deam-nitrel/front.svg",
  42859. extra: 1308/1234,
  42860. bottom: 125/1433
  42861. }
  42862. },
  42863. },
  42864. [
  42865. {
  42866. name: "Normal",
  42867. height: math.unit(8 + 2/12, "feet"),
  42868. default: true
  42869. },
  42870. ]
  42871. ))
  42872. characterMakers.push(() => makeCharacter(
  42873. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42874. {
  42875. front: {
  42876. height: math.unit(6.1, "feet"),
  42877. weight: math.unit(180, "lb"),
  42878. name: "Front",
  42879. image: {
  42880. source: "./media/characters/skyress/front.svg",
  42881. extra: 1045/915,
  42882. bottom: 28/1073
  42883. }
  42884. },
  42885. maw: {
  42886. height: math.unit(1, "feet"),
  42887. name: "Maw",
  42888. image: {
  42889. source: "./media/characters/skyress/maw.svg"
  42890. }
  42891. },
  42892. },
  42893. [
  42894. {
  42895. name: "Normal",
  42896. height: math.unit(6.1, "feet"),
  42897. default: true
  42898. },
  42899. {
  42900. name: "Macro",
  42901. height: math.unit(200, "feet")
  42902. },
  42903. ]
  42904. ))
  42905. characterMakers.push(() => makeCharacter(
  42906. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42907. {
  42908. front: {
  42909. height: math.unit(4 + 2/12, "feet"),
  42910. weight: math.unit(40, "kg"),
  42911. name: "Front",
  42912. image: {
  42913. source: "./media/characters/amethyst-jones/front.svg",
  42914. extra: 1220/1150,
  42915. bottom: 101/1321
  42916. }
  42917. },
  42918. },
  42919. [
  42920. {
  42921. name: "Normal",
  42922. height: math.unit(4 + 2/12, "feet"),
  42923. default: true
  42924. },
  42925. ]
  42926. ))
  42927. characterMakers.push(() => makeCharacter(
  42928. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42929. {
  42930. front: {
  42931. height: math.unit(1.7, "m"),
  42932. weight: math.unit(135, "lb"),
  42933. name: "Front",
  42934. image: {
  42935. source: "./media/characters/jade/front.svg",
  42936. extra: 1818/1767,
  42937. bottom: 32/1850
  42938. }
  42939. },
  42940. back: {
  42941. height: math.unit(1.7, "m"),
  42942. weight: math.unit(135, "lb"),
  42943. name: "Back",
  42944. image: {
  42945. source: "./media/characters/jade/back.svg",
  42946. extra: 1869/1809,
  42947. bottom: 35/1904
  42948. }
  42949. },
  42950. hand: {
  42951. height: math.unit(0.24, "m"),
  42952. name: "Hand",
  42953. image: {
  42954. source: "./media/characters/jade/hand.svg"
  42955. }
  42956. },
  42957. foot: {
  42958. height: math.unit(0.263, "m"),
  42959. name: "Foot",
  42960. image: {
  42961. source: "./media/characters/jade/foot.svg"
  42962. }
  42963. },
  42964. dick: {
  42965. height: math.unit(0.47, "m"),
  42966. name: "Dick",
  42967. image: {
  42968. source: "./media/characters/jade/dick.svg"
  42969. }
  42970. },
  42971. },
  42972. [
  42973. {
  42974. name: "Micro",
  42975. height: math.unit(22, "cm")
  42976. },
  42977. {
  42978. name: "Normal",
  42979. height: math.unit(1.7, "m"),
  42980. default: true
  42981. },
  42982. {
  42983. name: "Macro",
  42984. height: math.unit(152, "m")
  42985. },
  42986. ]
  42987. ))
  42988. characterMakers.push(() => makeCharacter(
  42989. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42990. {
  42991. front: {
  42992. height: math.unit(100, "miles"),
  42993. weight: math.unit(20000, "tons"),
  42994. name: "Front",
  42995. image: {
  42996. source: "./media/characters/cookie/front.svg",
  42997. extra: 1125/1070,
  42998. bottom: 30/1155
  42999. }
  43000. },
  43001. },
  43002. [
  43003. {
  43004. name: "Big",
  43005. height: math.unit(50, "feet")
  43006. },
  43007. {
  43008. name: "Macro",
  43009. height: math.unit(100, "miles"),
  43010. default: true
  43011. },
  43012. {
  43013. name: "Megamacro",
  43014. height: math.unit(90000, "miles")
  43015. },
  43016. ]
  43017. ))
  43018. characterMakers.push(() => makeCharacter(
  43019. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  43020. {
  43021. front: {
  43022. height: math.unit(6, "feet"),
  43023. weight: math.unit(145, "lb"),
  43024. name: "Front",
  43025. image: {
  43026. source: "./media/characters/farzian/front.svg",
  43027. extra: 1902/1693,
  43028. bottom: 108/2010
  43029. }
  43030. },
  43031. },
  43032. [
  43033. {
  43034. name: "Macro",
  43035. height: math.unit(500, "feet"),
  43036. default: true
  43037. },
  43038. ]
  43039. ))
  43040. characterMakers.push(() => makeCharacter(
  43041. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  43042. {
  43043. front: {
  43044. height: math.unit(3 + 6/12, "feet"),
  43045. weight: math.unit(50, "lb"),
  43046. name: "Front",
  43047. image: {
  43048. source: "./media/characters/kimberly-tilson/front.svg",
  43049. extra: 1400/1322,
  43050. bottom: 36/1436
  43051. }
  43052. },
  43053. back: {
  43054. height: math.unit(3 + 6/12, "feet"),
  43055. weight: math.unit(50, "lb"),
  43056. name: "Back",
  43057. image: {
  43058. source: "./media/characters/kimberly-tilson/back.svg",
  43059. extra: 1370/1307,
  43060. bottom: 20/1390
  43061. }
  43062. },
  43063. },
  43064. [
  43065. {
  43066. name: "Normal",
  43067. height: math.unit(3 + 6/12, "feet"),
  43068. default: true
  43069. },
  43070. ]
  43071. ))
  43072. characterMakers.push(() => makeCharacter(
  43073. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  43074. {
  43075. front: {
  43076. height: math.unit(350, "meters"),
  43077. weight: math.unit(7.57059e+8, "lb"),
  43078. name: "Front",
  43079. image: {
  43080. source: "./media/characters/harthos/front.svg",
  43081. extra: 455/446,
  43082. bottom: 15/470
  43083. },
  43084. form: "peacekeeper",
  43085. default: true
  43086. },
  43087. allusus_front: {
  43088. height: math.unit(270, "meters"),
  43089. weight: math.unit(3.47550e+8, "lb"),
  43090. name: "Front",
  43091. image: {
  43092. source: "./media/characters/harthos/allusus-front.svg",
  43093. extra: 455/446,
  43094. bottom: 15/470
  43095. },
  43096. form: "allusus",
  43097. },
  43098. },
  43099. [
  43100. {
  43101. name: "Macro",
  43102. height: math.unit(350, "meters"),
  43103. default: true,
  43104. form: "peacekeeper"
  43105. },
  43106. {
  43107. name: "Macro",
  43108. height: math.unit(270, "meters"),
  43109. default: true,
  43110. form: "allusus"
  43111. },
  43112. ],
  43113. {
  43114. "peacekeeper": {
  43115. name: "Peacekeeper",
  43116. default: true
  43117. },
  43118. "allusus": {
  43119. name: "Allusus",
  43120. },
  43121. }
  43122. ))
  43123. characterMakers.push(() => makeCharacter(
  43124. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43125. {
  43126. front: {
  43127. height: math.unit(15, "feet"),
  43128. name: "Front",
  43129. image: {
  43130. source: "./media/characters/hypatia/front.svg",
  43131. extra: 1653/1591,
  43132. bottom: 79/1732
  43133. }
  43134. },
  43135. },
  43136. [
  43137. {
  43138. name: "Normal",
  43139. height: math.unit(15, "feet")
  43140. },
  43141. {
  43142. name: "Small",
  43143. height: math.unit(300, "feet")
  43144. },
  43145. {
  43146. name: "Macro",
  43147. height: math.unit(2500, "feet"),
  43148. default: true
  43149. },
  43150. {
  43151. name: "Mega Macro",
  43152. height: math.unit(1500, "miles")
  43153. },
  43154. {
  43155. name: "Giga Macro",
  43156. height: math.unit(1.5e6, "miles")
  43157. },
  43158. ]
  43159. ))
  43160. characterMakers.push(() => makeCharacter(
  43161. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43162. {
  43163. front: {
  43164. height: math.unit(6, "feet"),
  43165. weight: math.unit(200, "lb"),
  43166. name: "Front",
  43167. image: {
  43168. source: "./media/characters/wulver/front.svg",
  43169. extra: 1724/1632,
  43170. bottom: 130/1854
  43171. }
  43172. },
  43173. frontNsfw: {
  43174. height: math.unit(6, "feet"),
  43175. weight: math.unit(200, "lb"),
  43176. name: "Front (NSFW)",
  43177. image: {
  43178. source: "./media/characters/wulver/front-nsfw.svg",
  43179. extra: 1724/1632,
  43180. bottom: 130/1854
  43181. }
  43182. },
  43183. },
  43184. [
  43185. {
  43186. name: "Human-Sized",
  43187. height: math.unit(6, "feet")
  43188. },
  43189. {
  43190. name: "Normal",
  43191. height: math.unit(4, "meters"),
  43192. default: true
  43193. },
  43194. {
  43195. name: "Large",
  43196. height: math.unit(6, "m")
  43197. },
  43198. ]
  43199. ))
  43200. characterMakers.push(() => makeCharacter(
  43201. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43202. {
  43203. front: {
  43204. height: math.unit(7, "feet"),
  43205. name: "Front",
  43206. image: {
  43207. source: "./media/characters/maru/front.svg",
  43208. extra: 1595/1570,
  43209. bottom: 0/1595
  43210. }
  43211. },
  43212. },
  43213. [
  43214. {
  43215. name: "Normal",
  43216. height: math.unit(7, "feet"),
  43217. default: true
  43218. },
  43219. {
  43220. name: "Macro",
  43221. height: math.unit(700, "feet")
  43222. },
  43223. {
  43224. name: "Mega Macro",
  43225. height: math.unit(25, "miles")
  43226. },
  43227. ]
  43228. ))
  43229. characterMakers.push(() => makeCharacter(
  43230. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43231. {
  43232. front: {
  43233. height: math.unit(6, "feet"),
  43234. weight: math.unit(170, "lb"),
  43235. name: "Front",
  43236. image: {
  43237. source: "./media/characters/xenon/front.svg",
  43238. extra: 1376/1305,
  43239. bottom: 56/1432
  43240. }
  43241. },
  43242. back: {
  43243. height: math.unit(6, "feet"),
  43244. weight: math.unit(170, "lb"),
  43245. name: "Back",
  43246. image: {
  43247. source: "./media/characters/xenon/back.svg",
  43248. extra: 1328/1259,
  43249. bottom: 95/1423
  43250. }
  43251. },
  43252. maw: {
  43253. height: math.unit(0.52, "feet"),
  43254. name: "Maw",
  43255. image: {
  43256. source: "./media/characters/xenon/maw.svg"
  43257. }
  43258. },
  43259. handLeft: {
  43260. height: math.unit(0.82 * 169 / 153, "feet"),
  43261. name: "Hand (Left)",
  43262. image: {
  43263. source: "./media/characters/xenon/hand-left.svg"
  43264. }
  43265. },
  43266. handRight: {
  43267. height: math.unit(0.82, "feet"),
  43268. name: "Hand (Right)",
  43269. image: {
  43270. source: "./media/characters/xenon/hand-right.svg"
  43271. }
  43272. },
  43273. footLeft: {
  43274. height: math.unit(1.13, "feet"),
  43275. name: "Foot (Left)",
  43276. image: {
  43277. source: "./media/characters/xenon/foot-left.svg"
  43278. }
  43279. },
  43280. footRight: {
  43281. height: math.unit(1.13 * 194 / 196, "feet"),
  43282. name: "Foot (Right)",
  43283. image: {
  43284. source: "./media/characters/xenon/foot-right.svg"
  43285. }
  43286. },
  43287. },
  43288. [
  43289. {
  43290. name: "Micro",
  43291. height: math.unit(0.8, "inches")
  43292. },
  43293. {
  43294. name: "Normal",
  43295. height: math.unit(6, "feet")
  43296. },
  43297. {
  43298. name: "Macro",
  43299. height: math.unit(50, "feet"),
  43300. default: true
  43301. },
  43302. {
  43303. name: "Macro+",
  43304. height: math.unit(250, "feet")
  43305. },
  43306. {
  43307. name: "Megamacro",
  43308. height: math.unit(1500, "feet")
  43309. },
  43310. ]
  43311. ))
  43312. characterMakers.push(() => makeCharacter(
  43313. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43314. {
  43315. front: {
  43316. height: math.unit(7 + 5/12, "feet"),
  43317. name: "Front",
  43318. image: {
  43319. source: "./media/characters/zane/front.svg",
  43320. extra: 1260/1203,
  43321. bottom: 94/1354
  43322. }
  43323. },
  43324. back: {
  43325. height: math.unit(5.05, "feet"),
  43326. name: "Back",
  43327. image: {
  43328. source: "./media/characters/zane/back.svg",
  43329. extra: 893/829,
  43330. bottom: 30/923
  43331. }
  43332. },
  43333. werewolf: {
  43334. height: math.unit(11, "feet"),
  43335. name: "Werewolf",
  43336. image: {
  43337. source: "./media/characters/zane/werewolf.svg",
  43338. extra: 1383/1323,
  43339. bottom: 89/1472
  43340. }
  43341. },
  43342. foot: {
  43343. height: math.unit(1.46, "feet"),
  43344. name: "Foot",
  43345. image: {
  43346. source: "./media/characters/zane/foot.svg"
  43347. }
  43348. },
  43349. footFront: {
  43350. height: math.unit(0.784, "feet"),
  43351. name: "Foot (Front)",
  43352. image: {
  43353. source: "./media/characters/zane/foot-front.svg"
  43354. }
  43355. },
  43356. dick: {
  43357. height: math.unit(1.95, "feet"),
  43358. name: "Dick",
  43359. image: {
  43360. source: "./media/characters/zane/dick.svg"
  43361. }
  43362. },
  43363. dickWerewolf: {
  43364. height: math.unit(3.77, "feet"),
  43365. name: "Dick (Werewolf)",
  43366. image: {
  43367. source: "./media/characters/zane/dick.svg"
  43368. }
  43369. },
  43370. },
  43371. [
  43372. {
  43373. name: "Normal",
  43374. height: math.unit(7 + 5/12, "feet"),
  43375. default: true
  43376. },
  43377. ]
  43378. ))
  43379. characterMakers.push(() => makeCharacter(
  43380. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43381. {
  43382. front: {
  43383. height: math.unit(6 + 2/12, "feet"),
  43384. weight: math.unit(284, "lb"),
  43385. name: "Front",
  43386. image: {
  43387. source: "./media/characters/benni-desparque/front.svg",
  43388. extra: 878/729,
  43389. bottom: 58/936
  43390. }
  43391. },
  43392. back: {
  43393. height: math.unit(6 + 2/12, "feet"),
  43394. weight: math.unit(284, "lb"),
  43395. name: "Back",
  43396. image: {
  43397. source: "./media/characters/benni-desparque/back.svg",
  43398. extra: 901/756,
  43399. bottom: 51/952
  43400. }
  43401. },
  43402. dressed: {
  43403. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43404. weight: math.unit(284, "lb"),
  43405. name: "Dressed",
  43406. image: {
  43407. source: "./media/characters/benni-desparque/dressed.svg",
  43408. extra: 1514/1276,
  43409. bottom: 65/1579
  43410. }
  43411. },
  43412. hand: {
  43413. height: math.unit(1.28, "feet"),
  43414. name: "Hand",
  43415. image: {
  43416. source: "./media/characters/benni-desparque/hand.svg"
  43417. }
  43418. },
  43419. foot: {
  43420. height: math.unit(1.53, "feet"),
  43421. name: "Foot",
  43422. image: {
  43423. source: "./media/characters/benni-desparque/foot.svg"
  43424. }
  43425. },
  43426. aiControlUnit: {
  43427. height: math.unit(0.175, "feet"),
  43428. name: "AI Control Unit",
  43429. image: {
  43430. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43431. }
  43432. },
  43433. },
  43434. [
  43435. {
  43436. name: "Civilian",
  43437. height: math.unit(6 + 2/12, "feet")
  43438. },
  43439. {
  43440. name: "Normal",
  43441. height: math.unit(98, "feet"),
  43442. default: true
  43443. },
  43444. {
  43445. name: "Kaiju Fighter",
  43446. height: math.unit(268, "feet")
  43447. },
  43448. ]
  43449. ))
  43450. characterMakers.push(() => makeCharacter(
  43451. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43452. {
  43453. front: {
  43454. height: math.unit(5, "feet"),
  43455. weight: math.unit(105, "lb"),
  43456. name: "Front",
  43457. image: {
  43458. source: "./media/characters/maxine/front.svg",
  43459. extra: 1386/1250,
  43460. bottom: 71/1457
  43461. }
  43462. },
  43463. },
  43464. [
  43465. {
  43466. name: "Normal",
  43467. height: math.unit(5, "feet"),
  43468. default: true
  43469. },
  43470. ]
  43471. ))
  43472. characterMakers.push(() => makeCharacter(
  43473. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43474. {
  43475. front: {
  43476. height: math.unit(11 + 7/12, "feet"),
  43477. weight: math.unit(9576, "lb"),
  43478. name: "Front",
  43479. image: {
  43480. source: "./media/characters/scaly/front.svg",
  43481. extra: 888/867,
  43482. bottom: 36/924
  43483. }
  43484. },
  43485. },
  43486. [
  43487. {
  43488. name: "Normal",
  43489. height: math.unit(11 + 7/12, "feet"),
  43490. default: true
  43491. },
  43492. ]
  43493. ))
  43494. characterMakers.push(() => makeCharacter(
  43495. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43496. {
  43497. front: {
  43498. height: math.unit(6 + 3/12, "feet"),
  43499. name: "Front",
  43500. image: {
  43501. source: "./media/characters/saelria/front.svg",
  43502. extra: 1243/1138,
  43503. bottom: 46/1289
  43504. }
  43505. },
  43506. },
  43507. [
  43508. {
  43509. name: "Micro",
  43510. height: math.unit(6, "inches"),
  43511. },
  43512. {
  43513. name: "Normal",
  43514. height: math.unit(6 + 3/12, "feet"),
  43515. default: true
  43516. },
  43517. {
  43518. name: "Macro",
  43519. height: math.unit(25, "feet")
  43520. },
  43521. ]
  43522. ))
  43523. characterMakers.push(() => makeCharacter(
  43524. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43525. {
  43526. front: {
  43527. height: math.unit(80, "meters"),
  43528. weight: math.unit(7000, "tonnes"),
  43529. name: "Front",
  43530. image: {
  43531. source: "./media/characters/tef/front.svg",
  43532. extra: 2036/1991,
  43533. bottom: 54/2090
  43534. }
  43535. },
  43536. back: {
  43537. height: math.unit(80, "meters"),
  43538. weight: math.unit(7000, "tonnes"),
  43539. name: "Back",
  43540. image: {
  43541. source: "./media/characters/tef/back.svg",
  43542. extra: 2036/1991,
  43543. bottom: 54/2090
  43544. }
  43545. },
  43546. },
  43547. [
  43548. {
  43549. name: "Macro",
  43550. height: math.unit(80, "meters"),
  43551. default: true
  43552. },
  43553. ]
  43554. ))
  43555. characterMakers.push(() => makeCharacter(
  43556. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43557. {
  43558. front: {
  43559. height: math.unit(13, "feet"),
  43560. weight: math.unit(6, "tons"),
  43561. name: "Front",
  43562. image: {
  43563. source: "./media/characters/rover/front.svg",
  43564. extra: 1233/1156,
  43565. bottom: 50/1283
  43566. }
  43567. },
  43568. back: {
  43569. height: math.unit(13, "feet"),
  43570. weight: math.unit(6, "tons"),
  43571. name: "Back",
  43572. image: {
  43573. source: "./media/characters/rover/back.svg",
  43574. extra: 1327/1258,
  43575. bottom: 39/1366
  43576. }
  43577. },
  43578. },
  43579. [
  43580. {
  43581. name: "Normal",
  43582. height: math.unit(13, "feet"),
  43583. default: true
  43584. },
  43585. {
  43586. name: "Macro",
  43587. height: math.unit(1300, "feet")
  43588. },
  43589. {
  43590. name: "Megamacro",
  43591. height: math.unit(1300, "miles")
  43592. },
  43593. {
  43594. name: "Gigamacro",
  43595. height: math.unit(1300000, "miles")
  43596. },
  43597. ]
  43598. ))
  43599. characterMakers.push(() => makeCharacter(
  43600. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43601. {
  43602. front: {
  43603. height: math.unit(10, "feet"),
  43604. weight: math.unit(500, "lb"),
  43605. name: "Front",
  43606. image: {
  43607. source: "./media/characters/ariz/front.svg",
  43608. extra: 461/450,
  43609. bottom: 16/477
  43610. }
  43611. },
  43612. },
  43613. [
  43614. {
  43615. name: "MiniMacro",
  43616. height: math.unit(10, "feet"),
  43617. default: true
  43618. },
  43619. ]
  43620. ))
  43621. characterMakers.push(() => makeCharacter(
  43622. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43623. {
  43624. front: {
  43625. height: math.unit(6, "feet"),
  43626. weight: math.unit(140, "lb"),
  43627. name: "Front",
  43628. image: {
  43629. source: "./media/characters/sigrun/front.svg",
  43630. extra: 1418/1359,
  43631. bottom: 27/1445
  43632. }
  43633. },
  43634. },
  43635. [
  43636. {
  43637. name: "Macro",
  43638. height: math.unit(35, "feet"),
  43639. default: true
  43640. },
  43641. ]
  43642. ))
  43643. characterMakers.push(() => makeCharacter(
  43644. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43645. {
  43646. front: {
  43647. height: math.unit(6, "feet"),
  43648. weight: math.unit(150, "lb"),
  43649. name: "Front",
  43650. image: {
  43651. source: "./media/characters/numin/front.svg",
  43652. extra: 1433/1388,
  43653. bottom: 12/1445
  43654. }
  43655. },
  43656. },
  43657. [
  43658. {
  43659. name: "Macro",
  43660. height: math.unit(21.5, "km"),
  43661. default: true
  43662. },
  43663. ]
  43664. ))
  43665. characterMakers.push(() => makeCharacter(
  43666. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43667. {
  43668. front: {
  43669. height: math.unit(6, "feet"),
  43670. weight: math.unit(463, "lb"),
  43671. name: "Front",
  43672. image: {
  43673. source: "./media/characters/melwa/front.svg",
  43674. extra: 1307/1248,
  43675. bottom: 93/1400
  43676. }
  43677. },
  43678. },
  43679. [
  43680. {
  43681. name: "Macro",
  43682. height: math.unit(50, "meters"),
  43683. default: true
  43684. },
  43685. ]
  43686. ))
  43687. characterMakers.push(() => makeCharacter(
  43688. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43689. {
  43690. front: {
  43691. height: math.unit(325, "feet"),
  43692. name: "Front",
  43693. image: {
  43694. source: "./media/characters/zorkaiju/front.svg",
  43695. extra: 1955/1814,
  43696. bottom: 40/1995
  43697. }
  43698. },
  43699. frontExtended: {
  43700. height: math.unit(325, "feet"),
  43701. name: "Front (Extended)",
  43702. image: {
  43703. source: "./media/characters/zorkaiju/front-extended.svg",
  43704. extra: 1955/1814,
  43705. bottom: 40/1995
  43706. }
  43707. },
  43708. side: {
  43709. height: math.unit(325, "feet"),
  43710. name: "Side",
  43711. image: {
  43712. source: "./media/characters/zorkaiju/side.svg",
  43713. extra: 1495/1396,
  43714. bottom: 17/1512
  43715. }
  43716. },
  43717. sideExtended: {
  43718. height: math.unit(325, "feet"),
  43719. name: "Side (Extended)",
  43720. image: {
  43721. source: "./media/characters/zorkaiju/side-extended.svg",
  43722. extra: 1495/1396,
  43723. bottom: 17/1512
  43724. }
  43725. },
  43726. back: {
  43727. height: math.unit(325, "feet"),
  43728. name: "Back",
  43729. image: {
  43730. source: "./media/characters/zorkaiju/back.svg",
  43731. extra: 1959/1821,
  43732. bottom: 31/1990
  43733. }
  43734. },
  43735. backExtended: {
  43736. height: math.unit(325, "feet"),
  43737. name: "Back (Extended)",
  43738. image: {
  43739. source: "./media/characters/zorkaiju/back-extended.svg",
  43740. extra: 1959/1821,
  43741. bottom: 31/1990
  43742. }
  43743. },
  43744. hand: {
  43745. height: math.unit(58.4, "feet"),
  43746. name: "Hand",
  43747. image: {
  43748. source: "./media/characters/zorkaiju/hand.svg"
  43749. }
  43750. },
  43751. handExtended: {
  43752. height: math.unit(61.4, "feet"),
  43753. name: "Hand (Extended)",
  43754. image: {
  43755. source: "./media/characters/zorkaiju/hand-extended.svg"
  43756. }
  43757. },
  43758. foot: {
  43759. height: math.unit(95, "feet"),
  43760. name: "Foot",
  43761. image: {
  43762. source: "./media/characters/zorkaiju/foot.svg"
  43763. }
  43764. },
  43765. leftArm: {
  43766. height: math.unit(59, "feet"),
  43767. name: "Left Arm",
  43768. image: {
  43769. source: "./media/characters/zorkaiju/left-arm.svg"
  43770. }
  43771. },
  43772. rightArm: {
  43773. height: math.unit(59, "feet"),
  43774. name: "Right Arm",
  43775. image: {
  43776. source: "./media/characters/zorkaiju/right-arm.svg"
  43777. }
  43778. },
  43779. leftArmExtended: {
  43780. height: math.unit(59 * 1.033546, "feet"),
  43781. name: "Left Arm (Extended)",
  43782. image: {
  43783. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43784. }
  43785. },
  43786. rightArmExtended: {
  43787. height: math.unit(59 * 1.0496, "feet"),
  43788. name: "Right Arm (Extended)",
  43789. image: {
  43790. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43791. }
  43792. },
  43793. tail: {
  43794. height: math.unit(104, "feet"),
  43795. name: "Tail",
  43796. image: {
  43797. source: "./media/characters/zorkaiju/tail.svg"
  43798. }
  43799. },
  43800. tailExtended: {
  43801. height: math.unit(104, "feet"),
  43802. name: "Tail (Extended)",
  43803. image: {
  43804. source: "./media/characters/zorkaiju/tail-extended.svg"
  43805. }
  43806. },
  43807. tailBottom: {
  43808. height: math.unit(104, "feet"),
  43809. name: "Tail Bottom",
  43810. image: {
  43811. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43812. }
  43813. },
  43814. crystal: {
  43815. height: math.unit(27.54, "feet"),
  43816. name: "Crystal",
  43817. image: {
  43818. source: "./media/characters/zorkaiju/crystal.svg"
  43819. }
  43820. },
  43821. },
  43822. [
  43823. {
  43824. name: "Kaiju",
  43825. height: math.unit(325, "feet"),
  43826. default: true
  43827. },
  43828. ]
  43829. ))
  43830. characterMakers.push(() => makeCharacter(
  43831. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43832. {
  43833. front: {
  43834. height: math.unit(6 + 1/12, "feet"),
  43835. weight: math.unit(115, "lb"),
  43836. name: "Front",
  43837. image: {
  43838. source: "./media/characters/bailey-belfry/front.svg",
  43839. extra: 1240/1121,
  43840. bottom: 101/1341
  43841. }
  43842. },
  43843. },
  43844. [
  43845. {
  43846. name: "Normal",
  43847. height: math.unit(6 + 1/12, "feet"),
  43848. default: true
  43849. },
  43850. ]
  43851. ))
  43852. characterMakers.push(() => makeCharacter(
  43853. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43854. {
  43855. side: {
  43856. height: math.unit(4, "meters"),
  43857. weight: math.unit(250, "kg"),
  43858. name: "Side",
  43859. image: {
  43860. source: "./media/characters/blacky/side.svg",
  43861. extra: 1027/919,
  43862. bottom: 43/1070
  43863. }
  43864. },
  43865. maw: {
  43866. height: math.unit(1, "meters"),
  43867. name: "Maw",
  43868. image: {
  43869. source: "./media/characters/blacky/maw.svg"
  43870. }
  43871. },
  43872. paw: {
  43873. height: math.unit(1, "meters"),
  43874. name: "Paw",
  43875. image: {
  43876. source: "./media/characters/blacky/paw.svg"
  43877. }
  43878. },
  43879. },
  43880. [
  43881. {
  43882. name: "Normal",
  43883. height: math.unit(4, "meters"),
  43884. default: true
  43885. },
  43886. ]
  43887. ))
  43888. characterMakers.push(() => makeCharacter(
  43889. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43890. {
  43891. front: {
  43892. height: math.unit(170, "cm"),
  43893. weight: math.unit(66, "kg"),
  43894. name: "Front",
  43895. image: {
  43896. source: "./media/characters/thux-ei/front.svg",
  43897. extra: 1109/1011,
  43898. bottom: 8/1117
  43899. }
  43900. },
  43901. },
  43902. [
  43903. {
  43904. name: "Normal",
  43905. height: math.unit(170, "cm"),
  43906. default: true
  43907. },
  43908. ]
  43909. ))
  43910. characterMakers.push(() => makeCharacter(
  43911. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43912. {
  43913. front: {
  43914. height: math.unit(5, "feet"),
  43915. weight: math.unit(120, "lb"),
  43916. name: "Front",
  43917. image: {
  43918. source: "./media/characters/roxanne-voltaire/front.svg",
  43919. extra: 1901/1779,
  43920. bottom: 53/1954
  43921. }
  43922. },
  43923. },
  43924. [
  43925. {
  43926. name: "Normal",
  43927. height: math.unit(5, "feet"),
  43928. default: true
  43929. },
  43930. {
  43931. name: "Giant",
  43932. height: math.unit(50, "feet")
  43933. },
  43934. {
  43935. name: "Titan",
  43936. height: math.unit(500, "feet")
  43937. },
  43938. {
  43939. name: "Macro",
  43940. height: math.unit(5000, "feet")
  43941. },
  43942. {
  43943. name: "Megamacro",
  43944. height: math.unit(50000, "feet")
  43945. },
  43946. {
  43947. name: "Gigamacro",
  43948. height: math.unit(500000, "feet")
  43949. },
  43950. {
  43951. name: "Teramacro",
  43952. height: math.unit(5e6, "feet")
  43953. },
  43954. ]
  43955. ))
  43956. characterMakers.push(() => makeCharacter(
  43957. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43958. {
  43959. front: {
  43960. height: math.unit(6 + 2/12, "feet"),
  43961. name: "Front",
  43962. image: {
  43963. source: "./media/characters/squeaks/front.svg",
  43964. extra: 1823/1768,
  43965. bottom: 138/1961
  43966. }
  43967. },
  43968. },
  43969. [
  43970. {
  43971. name: "Micro",
  43972. height: math.unit(0.5, "inches")
  43973. },
  43974. {
  43975. name: "Normal",
  43976. height: math.unit(6 + 2/12, "feet"),
  43977. default: true
  43978. },
  43979. {
  43980. name: "Macro",
  43981. height: math.unit(600, "feet")
  43982. },
  43983. ]
  43984. ))
  43985. characterMakers.push(() => makeCharacter(
  43986. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43987. {
  43988. front: {
  43989. height: math.unit(1.72, "meters"),
  43990. name: "Front",
  43991. image: {
  43992. source: "./media/characters/archinger/front.svg",
  43993. extra: 1861/1675,
  43994. bottom: 125/1986
  43995. }
  43996. },
  43997. back: {
  43998. height: math.unit(1.72, "meters"),
  43999. name: "Back",
  44000. image: {
  44001. source: "./media/characters/archinger/back.svg",
  44002. extra: 1844/1701,
  44003. bottom: 104/1948
  44004. }
  44005. },
  44006. cock: {
  44007. height: math.unit(0.59, "feet"),
  44008. name: "Cock",
  44009. image: {
  44010. source: "./media/characters/archinger/cock.svg"
  44011. }
  44012. },
  44013. },
  44014. [
  44015. {
  44016. name: "Normal",
  44017. height: math.unit(1.72, "meters"),
  44018. default: true
  44019. },
  44020. {
  44021. name: "Macro",
  44022. height: math.unit(84, "meters")
  44023. },
  44024. {
  44025. name: "Macro+",
  44026. height: math.unit(112, "meters")
  44027. },
  44028. {
  44029. name: "Macro++",
  44030. height: math.unit(960, "meters")
  44031. },
  44032. {
  44033. name: "Macro+++",
  44034. height: math.unit(4, "km")
  44035. },
  44036. {
  44037. name: "Macro++++",
  44038. height: math.unit(48, "km")
  44039. },
  44040. {
  44041. name: "Macro+++++",
  44042. height: math.unit(4500, "km")
  44043. },
  44044. ]
  44045. ))
  44046. characterMakers.push(() => makeCharacter(
  44047. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  44048. {
  44049. front: {
  44050. height: math.unit(5 + 5/12, "feet"),
  44051. name: "Front",
  44052. image: {
  44053. source: "./media/characters/alsnapz/front.svg",
  44054. extra: 1157/1065,
  44055. bottom: 42/1199
  44056. }
  44057. },
  44058. },
  44059. [
  44060. {
  44061. name: "Normal",
  44062. height: math.unit(5 + 5/12, "feet"),
  44063. default: true
  44064. },
  44065. ]
  44066. ))
  44067. characterMakers.push(() => makeCharacter(
  44068. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  44069. {
  44070. side: {
  44071. height: math.unit(3.2, "earths"),
  44072. name: "Side",
  44073. image: {
  44074. source: "./media/characters/mag/side.svg",
  44075. extra: 1331/1008,
  44076. bottom: 52/1383
  44077. }
  44078. },
  44079. wing: {
  44080. height: math.unit(1.94, "earths"),
  44081. name: "Wing",
  44082. image: {
  44083. source: "./media/characters/mag/wing.svg"
  44084. }
  44085. },
  44086. dick: {
  44087. height: math.unit(1.8, "earths"),
  44088. name: "Dick",
  44089. image: {
  44090. source: "./media/characters/mag/dick.svg"
  44091. }
  44092. },
  44093. ass: {
  44094. height: math.unit(1.33, "earths"),
  44095. name: "Ass",
  44096. image: {
  44097. source: "./media/characters/mag/ass.svg"
  44098. }
  44099. },
  44100. head: {
  44101. height: math.unit(1.1, "earths"),
  44102. name: "Head",
  44103. image: {
  44104. source: "./media/characters/mag/head.svg"
  44105. }
  44106. },
  44107. maw: {
  44108. height: math.unit(1.62, "earths"),
  44109. name: "Maw",
  44110. image: {
  44111. source: "./media/characters/mag/maw.svg"
  44112. }
  44113. },
  44114. },
  44115. [
  44116. {
  44117. name: "Small",
  44118. height: math.unit(162, "feet")
  44119. },
  44120. {
  44121. name: "Normal",
  44122. height: math.unit(3.2, "earths"),
  44123. default: true
  44124. },
  44125. ]
  44126. ))
  44127. characterMakers.push(() => makeCharacter(
  44128. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44129. {
  44130. front: {
  44131. height: math.unit(512, "feet"),
  44132. weight: math.unit(63509, "tonnes"),
  44133. name: "Front",
  44134. image: {
  44135. source: "./media/characters/vorrel-harroc/front.svg",
  44136. extra: 1075/1063,
  44137. bottom: 62/1137
  44138. }
  44139. },
  44140. },
  44141. [
  44142. {
  44143. name: "Normal",
  44144. height: math.unit(10, "feet")
  44145. },
  44146. {
  44147. name: "Macro",
  44148. height: math.unit(512, "feet"),
  44149. default: true
  44150. },
  44151. {
  44152. name: "Megamacro",
  44153. height: math.unit(256, "miles")
  44154. },
  44155. {
  44156. name: "Gigamacro",
  44157. height: math.unit(4096, "miles")
  44158. },
  44159. ]
  44160. ))
  44161. characterMakers.push(() => makeCharacter(
  44162. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44163. {
  44164. side: {
  44165. height: math.unit(50, "feet"),
  44166. name: "Side",
  44167. image: {
  44168. source: "./media/characters/froimar/side.svg",
  44169. extra: 855/638,
  44170. bottom: 99/954
  44171. }
  44172. },
  44173. },
  44174. [
  44175. {
  44176. name: "Macro",
  44177. height: math.unit(50, "feet"),
  44178. default: true
  44179. },
  44180. ]
  44181. ))
  44182. characterMakers.push(() => makeCharacter(
  44183. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44184. {
  44185. front: {
  44186. height: math.unit(210, "miles"),
  44187. name: "Front",
  44188. image: {
  44189. source: "./media/characters/timothy/front.svg",
  44190. extra: 1007/943,
  44191. bottom: 62/1069
  44192. }
  44193. },
  44194. frontSkirt: {
  44195. height: math.unit(210, "miles"),
  44196. name: "Front (Skirt)",
  44197. image: {
  44198. source: "./media/characters/timothy/front-skirt.svg",
  44199. extra: 1007/943,
  44200. bottom: 62/1069
  44201. }
  44202. },
  44203. frontCoat: {
  44204. height: math.unit(210, "miles"),
  44205. name: "Front (Coat)",
  44206. image: {
  44207. source: "./media/characters/timothy/front-coat.svg",
  44208. extra: 1007/943,
  44209. bottom: 62/1069
  44210. }
  44211. },
  44212. },
  44213. [
  44214. {
  44215. name: "Macro",
  44216. height: math.unit(210, "miles"),
  44217. default: true
  44218. },
  44219. {
  44220. name: "Megamacro",
  44221. height: math.unit(210000, "miles")
  44222. },
  44223. ]
  44224. ))
  44225. characterMakers.push(() => makeCharacter(
  44226. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44227. {
  44228. front: {
  44229. height: math.unit(188, "feet"),
  44230. name: "Front",
  44231. image: {
  44232. source: "./media/characters/pyotr/front.svg",
  44233. extra: 1912/1826,
  44234. bottom: 18/1930
  44235. }
  44236. },
  44237. },
  44238. [
  44239. {
  44240. name: "Macro",
  44241. height: math.unit(188, "feet"),
  44242. default: true
  44243. },
  44244. {
  44245. name: "Megamacro",
  44246. height: math.unit(8, "miles")
  44247. },
  44248. ]
  44249. ))
  44250. characterMakers.push(() => makeCharacter(
  44251. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44252. {
  44253. side: {
  44254. height: math.unit(10, "feet"),
  44255. weight: math.unit(4500, "lb"),
  44256. name: "Side",
  44257. image: {
  44258. source: "./media/characters/ackart/side.svg",
  44259. extra: 1776/1668,
  44260. bottom: 116/1892
  44261. }
  44262. },
  44263. },
  44264. [
  44265. {
  44266. name: "Normal",
  44267. height: math.unit(10, "feet"),
  44268. default: true
  44269. },
  44270. ]
  44271. ))
  44272. characterMakers.push(() => makeCharacter(
  44273. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44274. {
  44275. side: {
  44276. height: math.unit(21, "feet"),
  44277. name: "Side",
  44278. image: {
  44279. source: "./media/characters/nolow/side.svg",
  44280. extra: 1484/1434,
  44281. bottom: 85/1569
  44282. }
  44283. },
  44284. sideErect: {
  44285. height: math.unit(21, "feet"),
  44286. name: "Side-erect",
  44287. image: {
  44288. source: "./media/characters/nolow/side-erect.svg",
  44289. extra: 1484/1434,
  44290. bottom: 85/1569
  44291. }
  44292. },
  44293. },
  44294. [
  44295. {
  44296. name: "Regular",
  44297. height: math.unit(12, "feet")
  44298. },
  44299. {
  44300. name: "Big Chee",
  44301. height: math.unit(21, "feet"),
  44302. default: true
  44303. },
  44304. ]
  44305. ))
  44306. characterMakers.push(() => makeCharacter(
  44307. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44308. {
  44309. front: {
  44310. height: math.unit(7, "feet"),
  44311. weight: math.unit(250, "lb"),
  44312. name: "Front",
  44313. image: {
  44314. source: "./media/characters/nines/front.svg",
  44315. extra: 1741/1607,
  44316. bottom: 41/1782
  44317. }
  44318. },
  44319. side: {
  44320. height: math.unit(7, "feet"),
  44321. weight: math.unit(250, "lb"),
  44322. name: "Side",
  44323. image: {
  44324. source: "./media/characters/nines/side.svg",
  44325. extra: 1854/1735,
  44326. bottom: 93/1947
  44327. }
  44328. },
  44329. back: {
  44330. height: math.unit(7, "feet"),
  44331. weight: math.unit(250, "lb"),
  44332. name: "Back",
  44333. image: {
  44334. source: "./media/characters/nines/back.svg",
  44335. extra: 1748/1615,
  44336. bottom: 20/1768
  44337. }
  44338. },
  44339. },
  44340. [
  44341. {
  44342. name: "Megamacro",
  44343. height: math.unit(99, "km"),
  44344. default: true
  44345. },
  44346. ]
  44347. ))
  44348. characterMakers.push(() => makeCharacter(
  44349. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44350. {
  44351. front: {
  44352. height: math.unit(5 + 10/12, "feet"),
  44353. weight: math.unit(210, "lb"),
  44354. name: "Front",
  44355. image: {
  44356. source: "./media/characters/zenith/front.svg",
  44357. extra: 1531/1452,
  44358. bottom: 198/1729
  44359. }
  44360. },
  44361. back: {
  44362. height: math.unit(5 + 10/12, "feet"),
  44363. weight: math.unit(210, "lb"),
  44364. name: "Back",
  44365. image: {
  44366. source: "./media/characters/zenith/back.svg",
  44367. extra: 1571/1487,
  44368. bottom: 75/1646
  44369. }
  44370. },
  44371. },
  44372. [
  44373. {
  44374. name: "Normal",
  44375. height: math.unit(5 + 10/12, "feet"),
  44376. default: true
  44377. }
  44378. ]
  44379. ))
  44380. characterMakers.push(() => makeCharacter(
  44381. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44382. {
  44383. front: {
  44384. height: math.unit(4, "feet"),
  44385. weight: math.unit(60, "lb"),
  44386. name: "Front",
  44387. image: {
  44388. source: "./media/characters/jasper/front.svg",
  44389. extra: 1450/1379,
  44390. bottom: 19/1469
  44391. }
  44392. },
  44393. },
  44394. [
  44395. {
  44396. name: "Normal",
  44397. height: math.unit(4, "feet"),
  44398. default: true
  44399. },
  44400. ]
  44401. ))
  44402. characterMakers.push(() => makeCharacter(
  44403. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44404. {
  44405. front: {
  44406. height: math.unit(6 + 5/12, "feet"),
  44407. weight: math.unit(290, "lb"),
  44408. name: "Front",
  44409. image: {
  44410. source: "./media/characters/tiberius-thyben/front.svg",
  44411. extra: 757/739,
  44412. bottom: 39/796
  44413. }
  44414. },
  44415. },
  44416. [
  44417. {
  44418. name: "Micro",
  44419. height: math.unit(1.5, "inches")
  44420. },
  44421. {
  44422. name: "Normal",
  44423. height: math.unit(6 + 5/12, "feet"),
  44424. default: true
  44425. },
  44426. {
  44427. name: "Macro",
  44428. height: math.unit(300, "feet")
  44429. },
  44430. ]
  44431. ))
  44432. characterMakers.push(() => makeCharacter(
  44433. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44434. {
  44435. front: {
  44436. height: math.unit(5 + 6/12, "feet"),
  44437. weight: math.unit(60, "kg"),
  44438. name: "Front",
  44439. image: {
  44440. source: "./media/characters/sabre/front.svg",
  44441. extra: 738/671,
  44442. bottom: 27/765
  44443. }
  44444. },
  44445. },
  44446. [
  44447. {
  44448. name: "Teeny",
  44449. height: math.unit(2, "inches")
  44450. },
  44451. {
  44452. name: "Smol",
  44453. height: math.unit(8, "inches")
  44454. },
  44455. {
  44456. name: "Normal",
  44457. height: math.unit(5 + 6/12, "feet"),
  44458. default: true
  44459. },
  44460. {
  44461. name: "Mini-Macro",
  44462. height: math.unit(15, "feet")
  44463. },
  44464. {
  44465. name: "Macro",
  44466. height: math.unit(50, "feet")
  44467. },
  44468. ]
  44469. ))
  44470. characterMakers.push(() => makeCharacter(
  44471. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44472. {
  44473. front: {
  44474. height: math.unit(6 + 4/12, "feet"),
  44475. weight: math.unit(170, "lb"),
  44476. name: "Front",
  44477. image: {
  44478. source: "./media/characters/charlie/front.svg",
  44479. extra: 1348/1228,
  44480. bottom: 15/1363
  44481. }
  44482. },
  44483. },
  44484. [
  44485. {
  44486. name: "Macro",
  44487. height: math.unit(1700, "meters"),
  44488. default: true
  44489. },
  44490. {
  44491. name: "MegaMacro",
  44492. height: math.unit(20400, "meters")
  44493. },
  44494. ]
  44495. ))
  44496. characterMakers.push(() => makeCharacter(
  44497. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44498. {
  44499. front: {
  44500. height: math.unit(1.96, "meters"),
  44501. weight: math.unit(220, "lb"),
  44502. name: "Front",
  44503. image: {
  44504. source: "./media/characters/susan-grant/front.svg",
  44505. extra: 482/478,
  44506. bottom: 7/489
  44507. }
  44508. },
  44509. },
  44510. [
  44511. {
  44512. name: "Normal",
  44513. height: math.unit(1.96, "meters"),
  44514. default: true
  44515. },
  44516. {
  44517. name: "Macro",
  44518. height: math.unit(76.2, "meters")
  44519. },
  44520. {
  44521. name: "MegaMacro",
  44522. height: math.unit(305, "meters")
  44523. },
  44524. {
  44525. name: "GigaMacro",
  44526. height: math.unit(1220, "meters")
  44527. },
  44528. {
  44529. name: "SuperMacro",
  44530. height: math.unit(4878, "meters")
  44531. },
  44532. ]
  44533. ))
  44534. characterMakers.push(() => makeCharacter(
  44535. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44536. {
  44537. front: {
  44538. height: math.unit(5 + 4/12, "feet"),
  44539. weight: math.unit(110, "lb"),
  44540. name: "Front",
  44541. image: {
  44542. source: "./media/characters/axel-isanov/front.svg",
  44543. extra: 1096/1065,
  44544. bottom: 13/1109
  44545. }
  44546. },
  44547. },
  44548. [
  44549. {
  44550. name: "Normal",
  44551. height: math.unit(5 + 4/12, "feet"),
  44552. default: true
  44553. },
  44554. ]
  44555. ))
  44556. characterMakers.push(() => makeCharacter(
  44557. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44558. {
  44559. front: {
  44560. height: math.unit(9, "feet"),
  44561. weight: math.unit(467, "lb"),
  44562. name: "Front",
  44563. image: {
  44564. source: "./media/characters/necahual/front.svg",
  44565. extra: 920/873,
  44566. bottom: 26/946
  44567. }
  44568. },
  44569. back: {
  44570. height: math.unit(9, "feet"),
  44571. weight: math.unit(467, "lb"),
  44572. name: "Back",
  44573. image: {
  44574. source: "./media/characters/necahual/back.svg",
  44575. extra: 930/884,
  44576. bottom: 16/946
  44577. }
  44578. },
  44579. frontUnderwear: {
  44580. height: math.unit(9, "feet"),
  44581. weight: math.unit(467, "lb"),
  44582. name: "Front (Underwear)",
  44583. image: {
  44584. source: "./media/characters/necahual/front-underwear.svg",
  44585. extra: 920/873,
  44586. bottom: 26/946
  44587. }
  44588. },
  44589. frontDressed: {
  44590. height: math.unit(9, "feet"),
  44591. weight: math.unit(467, "lb"),
  44592. name: "Front (Dressed)",
  44593. image: {
  44594. source: "./media/characters/necahual/front-dressed.svg",
  44595. extra: 920/873,
  44596. bottom: 26/946
  44597. }
  44598. },
  44599. },
  44600. [
  44601. {
  44602. name: "Comprsesed",
  44603. height: math.unit(9, "feet")
  44604. },
  44605. {
  44606. name: "Natural",
  44607. height: math.unit(15, "feet"),
  44608. default: true
  44609. },
  44610. {
  44611. name: "Boosted",
  44612. height: math.unit(50, "feet")
  44613. },
  44614. {
  44615. name: "Boosted+",
  44616. height: math.unit(150, "feet")
  44617. },
  44618. {
  44619. name: "Max",
  44620. height: math.unit(500, "feet")
  44621. },
  44622. ]
  44623. ))
  44624. characterMakers.push(() => makeCharacter(
  44625. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44626. {
  44627. front: {
  44628. height: math.unit(22 + 1/12, "feet"),
  44629. weight: math.unit(3200, "lb"),
  44630. name: "Front",
  44631. image: {
  44632. source: "./media/characters/theo-acacia/front.svg",
  44633. extra: 1796/1741,
  44634. bottom: 83/1879
  44635. }
  44636. },
  44637. frontUnderwear: {
  44638. height: math.unit(22 + 1/12, "feet"),
  44639. weight: math.unit(3200, "lb"),
  44640. name: "Front (Underwear)",
  44641. image: {
  44642. source: "./media/characters/theo-acacia/front-underwear.svg",
  44643. extra: 1796/1741,
  44644. bottom: 83/1879
  44645. }
  44646. },
  44647. frontNude: {
  44648. height: math.unit(22 + 1/12, "feet"),
  44649. weight: math.unit(3200, "lb"),
  44650. name: "Front (Nude)",
  44651. image: {
  44652. source: "./media/characters/theo-acacia/front-nude.svg",
  44653. extra: 1796/1741,
  44654. bottom: 83/1879
  44655. }
  44656. },
  44657. },
  44658. [
  44659. {
  44660. name: "Normal",
  44661. height: math.unit(22 + 1/12, "feet"),
  44662. default: true
  44663. },
  44664. ]
  44665. ))
  44666. characterMakers.push(() => makeCharacter(
  44667. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44668. {
  44669. front: {
  44670. height: math.unit(20, "feet"),
  44671. name: "Front",
  44672. image: {
  44673. source: "./media/characters/astra/front.svg",
  44674. extra: 1850/1714,
  44675. bottom: 106/1956
  44676. }
  44677. },
  44678. frontUndressed: {
  44679. height: math.unit(20, "feet"),
  44680. name: "Front (Undressed)",
  44681. image: {
  44682. source: "./media/characters/astra/front-undressed.svg",
  44683. extra: 1926/1749,
  44684. bottom: 0/1926
  44685. }
  44686. },
  44687. hand: {
  44688. height: math.unit(1.53, "feet"),
  44689. name: "Hand",
  44690. image: {
  44691. source: "./media/characters/astra/hand.svg"
  44692. }
  44693. },
  44694. paw: {
  44695. height: math.unit(1.53, "feet"),
  44696. name: "Paw",
  44697. image: {
  44698. source: "./media/characters/astra/paw.svg"
  44699. }
  44700. },
  44701. },
  44702. [
  44703. {
  44704. name: "Smallest",
  44705. height: math.unit(20, "feet")
  44706. },
  44707. {
  44708. name: "Normal",
  44709. height: math.unit(1e9, "miles"),
  44710. default: true
  44711. },
  44712. {
  44713. name: "Larger",
  44714. height: math.unit(5, "multiverses")
  44715. },
  44716. {
  44717. name: "Largest",
  44718. height: math.unit(1e9, "multiverses")
  44719. },
  44720. ]
  44721. ))
  44722. characterMakers.push(() => makeCharacter(
  44723. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44724. {
  44725. front: {
  44726. height: math.unit(8, "feet"),
  44727. name: "Front",
  44728. image: {
  44729. source: "./media/characters/breanna/front.svg",
  44730. extra: 1912/1632,
  44731. bottom: 33/1945
  44732. }
  44733. },
  44734. },
  44735. [
  44736. {
  44737. name: "Smallest",
  44738. height: math.unit(8, "feet")
  44739. },
  44740. {
  44741. name: "Normal",
  44742. height: math.unit(1, "mile"),
  44743. default: true
  44744. },
  44745. {
  44746. name: "Maximum",
  44747. height: math.unit(1500000000000, "lightyears")
  44748. },
  44749. ]
  44750. ))
  44751. characterMakers.push(() => makeCharacter(
  44752. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44753. {
  44754. front: {
  44755. height: math.unit(5 + 11/12, "feet"),
  44756. weight: math.unit(155, "lb"),
  44757. name: "Front",
  44758. image: {
  44759. source: "./media/characters/cai/front.svg",
  44760. extra: 1823/1702,
  44761. bottom: 32/1855
  44762. }
  44763. },
  44764. back: {
  44765. height: math.unit(5 + 11/12, "feet"),
  44766. weight: math.unit(155, "lb"),
  44767. name: "Back",
  44768. image: {
  44769. source: "./media/characters/cai/back.svg",
  44770. extra: 1809/1708,
  44771. bottom: 31/1840
  44772. }
  44773. },
  44774. },
  44775. [
  44776. {
  44777. name: "Normal",
  44778. height: math.unit(5 + 11/12, "feet"),
  44779. default: true
  44780. },
  44781. {
  44782. name: "Big",
  44783. height: math.unit(15, "feet")
  44784. },
  44785. {
  44786. name: "Macro",
  44787. height: math.unit(200, "feet")
  44788. },
  44789. ]
  44790. ))
  44791. characterMakers.push(() => makeCharacter(
  44792. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44793. {
  44794. front: {
  44795. height: math.unit(5 + 6/12, "feet"),
  44796. weight: math.unit(160, "lb"),
  44797. name: "Front",
  44798. image: {
  44799. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44800. extra: 1227/1174,
  44801. bottom: 37/1264
  44802. }
  44803. },
  44804. },
  44805. [
  44806. {
  44807. name: "Macro",
  44808. height: math.unit(444, "meters"),
  44809. default: true
  44810. },
  44811. ]
  44812. ))
  44813. characterMakers.push(() => makeCharacter(
  44814. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44815. {
  44816. front: {
  44817. height: math.unit(18 + 7/12, "feet"),
  44818. name: "Front",
  44819. image: {
  44820. source: "./media/characters/rex/front.svg",
  44821. extra: 1941/1807,
  44822. bottom: 66/2007
  44823. }
  44824. },
  44825. back: {
  44826. height: math.unit(18 + 7/12, "feet"),
  44827. name: "Back",
  44828. image: {
  44829. source: "./media/characters/rex/back.svg",
  44830. extra: 1937/1822,
  44831. bottom: 42/1979
  44832. }
  44833. },
  44834. boot: {
  44835. height: math.unit(3.45, "feet"),
  44836. name: "Boot",
  44837. image: {
  44838. source: "./media/characters/rex/boot.svg"
  44839. }
  44840. },
  44841. paw: {
  44842. height: math.unit(4.17, "feet"),
  44843. name: "Paw",
  44844. image: {
  44845. source: "./media/characters/rex/paw.svg"
  44846. }
  44847. },
  44848. head: {
  44849. height: math.unit(6.728, "feet"),
  44850. name: "Head",
  44851. image: {
  44852. source: "./media/characters/rex/head.svg"
  44853. }
  44854. },
  44855. },
  44856. [
  44857. {
  44858. name: "Nano",
  44859. height: math.unit(18 + 7/12, "feet")
  44860. },
  44861. {
  44862. name: "Micro",
  44863. height: math.unit(1.5, "megameters")
  44864. },
  44865. {
  44866. name: "Normal",
  44867. height: math.unit(440, "megameters"),
  44868. default: true
  44869. },
  44870. {
  44871. name: "Macro",
  44872. height: math.unit(2.5, "gigameters")
  44873. },
  44874. {
  44875. name: "Gigamacro",
  44876. height: math.unit(2, "galaxies")
  44877. },
  44878. ]
  44879. ))
  44880. characterMakers.push(() => makeCharacter(
  44881. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44882. {
  44883. side: {
  44884. height: math.unit(32, "feet"),
  44885. weight: math.unit(250000, "lb"),
  44886. name: "Side",
  44887. image: {
  44888. source: "./media/characters/silverwing/side.svg",
  44889. extra: 1100/1019,
  44890. bottom: 204/1304
  44891. }
  44892. },
  44893. },
  44894. [
  44895. {
  44896. name: "Normal",
  44897. height: math.unit(32, "feet"),
  44898. default: true
  44899. },
  44900. ]
  44901. ))
  44902. characterMakers.push(() => makeCharacter(
  44903. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44904. {
  44905. front: {
  44906. height: math.unit(6 + 6/12, "feet"),
  44907. weight: math.unit(350, "lb"),
  44908. name: "Front",
  44909. image: {
  44910. source: "./media/characters/tristan-hawthorne/front.svg",
  44911. extra: 1159/1124,
  44912. bottom: 37/1196
  44913. },
  44914. form: "labrador",
  44915. default: true
  44916. },
  44917. skunkFront: {
  44918. height: math.unit(4 + 6/12, "feet"),
  44919. weight: math.unit(120, "lb"),
  44920. name: "Front",
  44921. image: {
  44922. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44923. extra: 1609/1551,
  44924. bottom: 169/1778
  44925. },
  44926. form: "skunk",
  44927. default: true
  44928. },
  44929. },
  44930. [
  44931. {
  44932. name: "Normal",
  44933. height: math.unit(6 + 6/12, "feet"),
  44934. form: "labrador",
  44935. default: true
  44936. },
  44937. {
  44938. name: "Normal",
  44939. height: math.unit(4 + 6/12, "feet"),
  44940. form: "skunk",
  44941. default: true
  44942. },
  44943. ],
  44944. {
  44945. "labrador": {
  44946. name: "Labrador",
  44947. default: true
  44948. },
  44949. "skunk": {
  44950. name: "Skunk"
  44951. }
  44952. }
  44953. ))
  44954. characterMakers.push(() => makeCharacter(
  44955. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44956. {
  44957. front: {
  44958. height: math.unit(5 + 11/12, "feet"),
  44959. weight: math.unit(190, "lb"),
  44960. name: "Front",
  44961. image: {
  44962. source: "./media/characters/mizu/front.svg",
  44963. extra: 1988/1788,
  44964. bottom: 14/2002
  44965. }
  44966. },
  44967. },
  44968. [
  44969. {
  44970. name: "Normal",
  44971. height: math.unit(5 + 11/12, "feet"),
  44972. default: true
  44973. },
  44974. ]
  44975. ))
  44976. characterMakers.push(() => makeCharacter(
  44977. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44978. {
  44979. front: {
  44980. height: math.unit(1.7, "feet"),
  44981. weight: math.unit(50, "lb"),
  44982. name: "Front",
  44983. image: {
  44984. source: "./media/characters/dechroma/front.svg",
  44985. extra: 1095/859,
  44986. bottom: 64/1159
  44987. }
  44988. },
  44989. },
  44990. [
  44991. {
  44992. name: "Normal",
  44993. height: math.unit(1.7, "feet"),
  44994. default: true
  44995. },
  44996. ]
  44997. ))
  44998. characterMakers.push(() => makeCharacter(
  44999. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  45000. {
  45001. side: {
  45002. height: math.unit(30, "feet"),
  45003. name: "Side",
  45004. image: {
  45005. source: "./media/characters/veluren-thanazel/side.svg",
  45006. extra: 1611/633,
  45007. bottom: 118/1729
  45008. }
  45009. },
  45010. front: {
  45011. height: math.unit(30, "feet"),
  45012. name: "Front",
  45013. image: {
  45014. source: "./media/characters/veluren-thanazel/front.svg",
  45015. extra: 1486/636,
  45016. bottom: 238/1724
  45017. }
  45018. },
  45019. head: {
  45020. height: math.unit(21.4, "feet"),
  45021. name: "Head",
  45022. image: {
  45023. source: "./media/characters/veluren-thanazel/head.svg"
  45024. }
  45025. },
  45026. genitals: {
  45027. height: math.unit(19.4, "feet"),
  45028. name: "Genitals",
  45029. image: {
  45030. source: "./media/characters/veluren-thanazel/genitals.svg"
  45031. }
  45032. },
  45033. },
  45034. [
  45035. {
  45036. name: "Social",
  45037. height: math.unit(6, "feet")
  45038. },
  45039. {
  45040. name: "Play",
  45041. height: math.unit(12, "feet")
  45042. },
  45043. {
  45044. name: "True",
  45045. height: math.unit(30, "feet"),
  45046. default: true
  45047. },
  45048. ]
  45049. ))
  45050. characterMakers.push(() => makeCharacter(
  45051. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  45052. {
  45053. front: {
  45054. height: math.unit(7 + 6/12, "feet"),
  45055. weight: math.unit(500, "kg"),
  45056. name: "Front",
  45057. image: {
  45058. source: "./media/characters/arcturas/front.svg",
  45059. extra: 1700/1500,
  45060. bottom: 145/1845
  45061. }
  45062. },
  45063. },
  45064. [
  45065. {
  45066. name: "Normal",
  45067. height: math.unit(7 + 6/12, "feet"),
  45068. default: true
  45069. },
  45070. ]
  45071. ))
  45072. characterMakers.push(() => makeCharacter(
  45073. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  45074. {
  45075. side: {
  45076. height: math.unit(6, "feet"),
  45077. weight: math.unit(2, "tons"),
  45078. name: "Side",
  45079. image: {
  45080. source: "./media/characters/vitaen/side.svg",
  45081. extra: 1157/617,
  45082. bottom: 122/1279
  45083. }
  45084. },
  45085. },
  45086. [
  45087. {
  45088. name: "Normal",
  45089. height: math.unit(6, "feet"),
  45090. default: true
  45091. },
  45092. ]
  45093. ))
  45094. characterMakers.push(() => makeCharacter(
  45095. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  45096. {
  45097. front: {
  45098. height: math.unit(19, "feet"),
  45099. name: "Front",
  45100. image: {
  45101. source: "./media/characters/fia-dreamweaver/front.svg",
  45102. extra: 1630/1504,
  45103. bottom: 25/1655
  45104. }
  45105. },
  45106. },
  45107. [
  45108. {
  45109. name: "Normal",
  45110. height: math.unit(19, "feet"),
  45111. default: true
  45112. },
  45113. ]
  45114. ))
  45115. characterMakers.push(() => makeCharacter(
  45116. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45117. {
  45118. front: {
  45119. height: math.unit(5 + 4/12, "feet"),
  45120. name: "Front",
  45121. image: {
  45122. source: "./media/characters/artan/front.svg",
  45123. extra: 1618/1535,
  45124. bottom: 46/1664
  45125. }
  45126. },
  45127. back: {
  45128. height: math.unit(5 + 4/12, "feet"),
  45129. name: "Back",
  45130. image: {
  45131. source: "./media/characters/artan/back.svg",
  45132. extra: 1618/1543,
  45133. bottom: 31/1649
  45134. }
  45135. },
  45136. },
  45137. [
  45138. {
  45139. name: "Normal",
  45140. height: math.unit(5 + 4/12, "feet"),
  45141. default: true
  45142. },
  45143. ]
  45144. ))
  45145. characterMakers.push(() => makeCharacter(
  45146. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45147. {
  45148. side: {
  45149. height: math.unit(182, "cm"),
  45150. weight: math.unit(1000, "lb"),
  45151. name: "Side",
  45152. image: {
  45153. source: "./media/characters/silver-dragon/side.svg",
  45154. extra: 710/287,
  45155. bottom: 88/798
  45156. }
  45157. },
  45158. },
  45159. [
  45160. {
  45161. name: "Normal",
  45162. height: math.unit(182, "cm"),
  45163. default: true
  45164. },
  45165. ]
  45166. ))
  45167. characterMakers.push(() => makeCharacter(
  45168. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45169. {
  45170. side: {
  45171. height: math.unit(6 + 6/12, "feet"),
  45172. weight: math.unit(1.5, "tons"),
  45173. name: "Side",
  45174. image: {
  45175. source: "./media/characters/zephyr/side.svg",
  45176. extra: 1433/586,
  45177. bottom: 109/1542
  45178. }
  45179. },
  45180. },
  45181. [
  45182. {
  45183. name: "Normal",
  45184. height: math.unit(6 + 6/12, "feet"),
  45185. default: true
  45186. },
  45187. ]
  45188. ))
  45189. characterMakers.push(() => makeCharacter(
  45190. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45191. {
  45192. side: {
  45193. height: math.unit(1, "feet"),
  45194. name: "Side",
  45195. image: {
  45196. source: "./media/characters/vixye/side.svg",
  45197. extra: 632/541,
  45198. bottom: 0/632
  45199. }
  45200. },
  45201. },
  45202. [
  45203. {
  45204. name: "Normal",
  45205. height: math.unit(1, "feet"),
  45206. default: true
  45207. },
  45208. {
  45209. name: "True",
  45210. height: math.unit(1e15, "multiverses")
  45211. },
  45212. ]
  45213. ))
  45214. characterMakers.push(() => makeCharacter(
  45215. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45216. {
  45217. front: {
  45218. height: math.unit(8 + 2/12, "feet"),
  45219. weight: math.unit(650, "lb"),
  45220. name: "Front",
  45221. image: {
  45222. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45223. extra: 1174/1137,
  45224. bottom: 82/1256
  45225. }
  45226. },
  45227. back: {
  45228. height: math.unit(8 + 2/12, "feet"),
  45229. weight: math.unit(650, "lb"),
  45230. name: "Back",
  45231. image: {
  45232. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45233. extra: 1204/1157,
  45234. bottom: 46/1250
  45235. }
  45236. },
  45237. },
  45238. [
  45239. {
  45240. name: "Wildform",
  45241. height: math.unit(8 + 2/12, "feet"),
  45242. default: true
  45243. },
  45244. ]
  45245. ))
  45246. characterMakers.push(() => makeCharacter(
  45247. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45248. {
  45249. front: {
  45250. height: math.unit(18, "feet"),
  45251. name: "Front",
  45252. image: {
  45253. source: "./media/characters/cyphin/front.svg",
  45254. extra: 970/886,
  45255. bottom: 42/1012
  45256. }
  45257. },
  45258. back: {
  45259. height: math.unit(18, "feet"),
  45260. name: "Back",
  45261. image: {
  45262. source: "./media/characters/cyphin/back.svg",
  45263. extra: 1009/894,
  45264. bottom: 24/1033
  45265. }
  45266. },
  45267. head: {
  45268. height: math.unit(5.05, "feet"),
  45269. name: "Head",
  45270. image: {
  45271. source: "./media/characters/cyphin/head.svg"
  45272. }
  45273. },
  45274. tailbud: {
  45275. height: math.unit(5, "feet"),
  45276. name: "Tailbud",
  45277. image: {
  45278. source: "./media/characters/cyphin/tailbud.svg"
  45279. }
  45280. },
  45281. },
  45282. [
  45283. ]
  45284. ))
  45285. characterMakers.push(() => makeCharacter(
  45286. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45287. {
  45288. side: {
  45289. height: math.unit(10, "feet"),
  45290. weight: math.unit(6, "tons"),
  45291. name: "Side",
  45292. image: {
  45293. source: "./media/characters/raijin/side.svg",
  45294. extra: 1529/613,
  45295. bottom: 337/1866
  45296. }
  45297. },
  45298. },
  45299. [
  45300. {
  45301. name: "Normal",
  45302. height: math.unit(10, "feet"),
  45303. default: true
  45304. },
  45305. ]
  45306. ))
  45307. characterMakers.push(() => makeCharacter(
  45308. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45309. {
  45310. side: {
  45311. height: math.unit(9, "feet"),
  45312. name: "Side",
  45313. image: {
  45314. source: "./media/characters/nilghais/side.svg",
  45315. extra: 1047/744,
  45316. bottom: 91/1138
  45317. }
  45318. },
  45319. head: {
  45320. height: math.unit(3.14, "feet"),
  45321. name: "Head",
  45322. image: {
  45323. source: "./media/characters/nilghais/head.svg"
  45324. }
  45325. },
  45326. mouth: {
  45327. height: math.unit(4.6, "feet"),
  45328. name: "Mouth",
  45329. image: {
  45330. source: "./media/characters/nilghais/mouth.svg"
  45331. }
  45332. },
  45333. wings: {
  45334. height: math.unit(24, "feet"),
  45335. name: "Wings",
  45336. image: {
  45337. source: "./media/characters/nilghais/wings.svg"
  45338. }
  45339. },
  45340. ass: {
  45341. height: math.unit(6.12, "feet"),
  45342. name: "Ass",
  45343. image: {
  45344. source: "./media/characters/nilghais/ass.svg"
  45345. }
  45346. },
  45347. },
  45348. [
  45349. {
  45350. name: "Normal",
  45351. height: math.unit(9, "feet"),
  45352. default: true
  45353. },
  45354. ]
  45355. ))
  45356. characterMakers.push(() => makeCharacter(
  45357. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45358. {
  45359. regular: {
  45360. height: math.unit(16 + 2/12, "feet"),
  45361. weight: math.unit(2300, "lb"),
  45362. name: "Regular",
  45363. image: {
  45364. source: "./media/characters/zolgar/regular.svg",
  45365. extra: 1246/1004,
  45366. bottom: 124/1370
  45367. }
  45368. },
  45369. boxers: {
  45370. height: math.unit(16 + 2/12, "feet"),
  45371. weight: math.unit(2300, "lb"),
  45372. name: "Boxers",
  45373. image: {
  45374. source: "./media/characters/zolgar/boxers.svg",
  45375. extra: 1246/1004,
  45376. bottom: 124/1370
  45377. }
  45378. },
  45379. armored: {
  45380. height: math.unit(16 + 2/12, "feet"),
  45381. weight: math.unit(2300, "lb"),
  45382. name: "Armored",
  45383. image: {
  45384. source: "./media/characters/zolgar/armored.svg",
  45385. extra: 1246/1004,
  45386. bottom: 124/1370
  45387. }
  45388. },
  45389. goth: {
  45390. height: math.unit(16 + 2/12, "feet"),
  45391. weight: math.unit(2300, "lb"),
  45392. name: "Goth",
  45393. image: {
  45394. source: "./media/characters/zolgar/goth.svg",
  45395. extra: 1246/1004,
  45396. bottom: 124/1370
  45397. }
  45398. },
  45399. },
  45400. [
  45401. {
  45402. name: "Shrunken Down",
  45403. height: math.unit(9 + 2/12, "feet")
  45404. },
  45405. {
  45406. name: "Normal",
  45407. height: math.unit(16 + 2/12, "feet"),
  45408. default: true
  45409. },
  45410. ]
  45411. ))
  45412. characterMakers.push(() => makeCharacter(
  45413. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45414. {
  45415. front: {
  45416. height: math.unit(6, "feet"),
  45417. weight: math.unit(168, "lb"),
  45418. name: "Front",
  45419. image: {
  45420. source: "./media/characters/luca/front.svg",
  45421. extra: 841/667,
  45422. bottom: 102/943
  45423. }
  45424. },
  45425. },
  45426. [
  45427. {
  45428. name: "Normal",
  45429. height: math.unit(6, "feet"),
  45430. default: true
  45431. },
  45432. ]
  45433. ))
  45434. characterMakers.push(() => makeCharacter(
  45435. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45436. {
  45437. side: {
  45438. height: math.unit(7 + 3/12, "feet"),
  45439. weight: math.unit(312, "lb"),
  45440. name: "Side",
  45441. image: {
  45442. source: "./media/characters/zezo/side.svg",
  45443. extra: 1192/1067,
  45444. bottom: 63/1255
  45445. }
  45446. },
  45447. },
  45448. [
  45449. {
  45450. name: "Normal",
  45451. height: math.unit(7 + 3/12, "feet"),
  45452. default: true
  45453. },
  45454. ]
  45455. ))
  45456. characterMakers.push(() => makeCharacter(
  45457. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45458. {
  45459. front: {
  45460. height: math.unit(5 + 5/12, "feet"),
  45461. weight: math.unit(170, "lb"),
  45462. name: "Front",
  45463. image: {
  45464. source: "./media/characters/mayso/front.svg",
  45465. extra: 1215/1108,
  45466. bottom: 16/1231
  45467. }
  45468. },
  45469. },
  45470. [
  45471. {
  45472. name: "Normal",
  45473. height: math.unit(5 + 5/12, "feet"),
  45474. default: true
  45475. },
  45476. ]
  45477. ))
  45478. characterMakers.push(() => makeCharacter(
  45479. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45480. {
  45481. front: {
  45482. height: math.unit(4 + 3/12, "feet"),
  45483. weight: math.unit(80, "lb"),
  45484. name: "Front",
  45485. image: {
  45486. source: "./media/characters/hess/front.svg",
  45487. extra: 1200/1123,
  45488. bottom: 16/1216
  45489. }
  45490. },
  45491. },
  45492. [
  45493. {
  45494. name: "Normal",
  45495. height: math.unit(4 + 3/12, "feet"),
  45496. default: true
  45497. },
  45498. ]
  45499. ))
  45500. characterMakers.push(() => makeCharacter(
  45501. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45502. {
  45503. front: {
  45504. height: math.unit(1.9, "meters"),
  45505. name: "Front",
  45506. image: {
  45507. source: "./media/characters/ashgar/front.svg",
  45508. extra: 1177/1146,
  45509. bottom: 99/1276
  45510. }
  45511. },
  45512. back: {
  45513. height: math.unit(1.9, "meters"),
  45514. name: "Back",
  45515. image: {
  45516. source: "./media/characters/ashgar/back.svg",
  45517. extra: 1201/1183,
  45518. bottom: 53/1254
  45519. }
  45520. },
  45521. feral: {
  45522. height: math.unit(1.4, "meters"),
  45523. name: "Feral",
  45524. image: {
  45525. source: "./media/characters/ashgar/feral.svg",
  45526. extra: 370/345,
  45527. bottom: 45/415
  45528. }
  45529. },
  45530. },
  45531. [
  45532. {
  45533. name: "Normal",
  45534. height: math.unit(1.9, "meters"),
  45535. default: true
  45536. },
  45537. ]
  45538. ))
  45539. characterMakers.push(() => makeCharacter(
  45540. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45541. {
  45542. regular: {
  45543. height: math.unit(6, "feet"),
  45544. weight: math.unit(220, "lb"),
  45545. name: "Regular",
  45546. image: {
  45547. source: "./media/characters/phillip/regular.svg",
  45548. extra: 1373/1277,
  45549. bottom: 75/1448
  45550. }
  45551. },
  45552. dressed: {
  45553. height: math.unit(6, "feet"),
  45554. weight: math.unit(220, "lb"),
  45555. name: "Dressed",
  45556. image: {
  45557. source: "./media/characters/phillip/dressed.svg",
  45558. extra: 1373/1277,
  45559. bottom: 75/1448
  45560. }
  45561. },
  45562. paw: {
  45563. height: math.unit(1.44, "feet"),
  45564. name: "Paw",
  45565. image: {
  45566. source: "./media/characters/phillip/paw.svg"
  45567. }
  45568. },
  45569. },
  45570. [
  45571. {
  45572. name: "Normal",
  45573. height: math.unit(6, "feet"),
  45574. default: true
  45575. },
  45576. ]
  45577. ))
  45578. characterMakers.push(() => makeCharacter(
  45579. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45580. {
  45581. side: {
  45582. height: math.unit(42, "feet"),
  45583. name: "Side",
  45584. image: {
  45585. source: "./media/characters/uvula/side.svg",
  45586. extra: 683/586,
  45587. bottom: 60/743
  45588. }
  45589. },
  45590. front: {
  45591. height: math.unit(42, "feet"),
  45592. name: "Front",
  45593. image: {
  45594. source: "./media/characters/uvula/front.svg",
  45595. extra: 705/613,
  45596. bottom: 54/759
  45597. }
  45598. },
  45599. maw: {
  45600. height: math.unit(23.5, "feet"),
  45601. name: "Maw",
  45602. image: {
  45603. source: "./media/characters/uvula/maw.svg"
  45604. }
  45605. },
  45606. },
  45607. [
  45608. {
  45609. name: "Original Size",
  45610. height: math.unit(14, "inches")
  45611. },
  45612. {
  45613. name: "Human Size",
  45614. height: math.unit(6, "feet")
  45615. },
  45616. {
  45617. name: "Big",
  45618. height: math.unit(42, "feet"),
  45619. default: true
  45620. },
  45621. {
  45622. name: "Bigger",
  45623. height: math.unit(100, "feet")
  45624. },
  45625. ]
  45626. ))
  45627. characterMakers.push(() => makeCharacter(
  45628. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45629. {
  45630. front: {
  45631. height: math.unit(5 + 11/12, "feet"),
  45632. name: "Front",
  45633. image: {
  45634. source: "./media/characters/lannah/front.svg",
  45635. extra: 1208/1113,
  45636. bottom: 97/1305
  45637. }
  45638. },
  45639. },
  45640. [
  45641. {
  45642. name: "Normal",
  45643. height: math.unit(5 + 11/12, "feet"),
  45644. default: true
  45645. },
  45646. ]
  45647. ))
  45648. characterMakers.push(() => makeCharacter(
  45649. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45650. {
  45651. front: {
  45652. height: math.unit(6 + 3/12, "feet"),
  45653. weight: math.unit(3.5, "tons"),
  45654. name: "Front",
  45655. image: {
  45656. source: "./media/characters/emberflame/front.svg",
  45657. extra: 1198/672,
  45658. bottom: 82/1280
  45659. }
  45660. },
  45661. side: {
  45662. height: math.unit(6 + 3/12, "feet"),
  45663. weight: math.unit(3.5, "tons"),
  45664. name: "Side",
  45665. image: {
  45666. source: "./media/characters/emberflame/side.svg",
  45667. extra: 938/527,
  45668. bottom: 56/994
  45669. }
  45670. },
  45671. },
  45672. [
  45673. {
  45674. name: "Normal",
  45675. height: math.unit(6 + 3/12, "feet"),
  45676. default: true
  45677. },
  45678. ]
  45679. ))
  45680. characterMakers.push(() => makeCharacter(
  45681. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45682. {
  45683. side: {
  45684. height: math.unit(17.5, "feet"),
  45685. weight: math.unit(35, "tons"),
  45686. name: "Side",
  45687. image: {
  45688. source: "./media/characters/sophie-ambrose/side.svg",
  45689. extra: 1573/1242,
  45690. bottom: 71/1644
  45691. }
  45692. },
  45693. maw: {
  45694. height: math.unit(7.4, "feet"),
  45695. name: "Maw",
  45696. image: {
  45697. source: "./media/characters/sophie-ambrose/maw.svg"
  45698. }
  45699. },
  45700. },
  45701. [
  45702. {
  45703. name: "Normal",
  45704. height: math.unit(17.5, "feet"),
  45705. default: true
  45706. },
  45707. ]
  45708. ))
  45709. characterMakers.push(() => makeCharacter(
  45710. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45711. {
  45712. front: {
  45713. height: math.unit(280, "feet"),
  45714. weight: math.unit(550, "tons"),
  45715. name: "Front",
  45716. image: {
  45717. source: "./media/characters/king-mugi/front.svg",
  45718. extra: 1102/947,
  45719. bottom: 104/1206
  45720. }
  45721. },
  45722. },
  45723. [
  45724. {
  45725. name: "King Mugi",
  45726. height: math.unit(280, "feet"),
  45727. default: true
  45728. },
  45729. ]
  45730. ))
  45731. characterMakers.push(() => makeCharacter(
  45732. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45733. {
  45734. female: {
  45735. height: math.unit(300, "meters"),
  45736. name: "Front",
  45737. image: {
  45738. source: "./media/characters/nova-fox/female.svg",
  45739. extra: 664/632,
  45740. bottom: 51/715
  45741. },
  45742. form: "female",
  45743. default: true
  45744. },
  45745. male: {
  45746. height: math.unit(300, "meters"),
  45747. name: "Front",
  45748. image: {
  45749. source: "./media/characters/nova-fox/male.svg",
  45750. extra: 663/631,
  45751. bottom: 30/693
  45752. },
  45753. form: "male",
  45754. default: true
  45755. },
  45756. },
  45757. [
  45758. {
  45759. name: "Macro",
  45760. height: math.unit(300, "meters"),
  45761. default: true,
  45762. allForms: true
  45763. },
  45764. ],
  45765. {
  45766. "female": {
  45767. name: "Female",
  45768. default: true
  45769. },
  45770. "male": {
  45771. name: "Male",
  45772. },
  45773. }
  45774. ))
  45775. characterMakers.push(() => makeCharacter(
  45776. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45777. {
  45778. front: {
  45779. height: math.unit(6 + 3/12, "feet"),
  45780. weight: math.unit(170, "lb"),
  45781. name: "Front",
  45782. image: {
  45783. source: "./media/characters/sam-bat/front.svg",
  45784. extra: 1601/1411,
  45785. bottom: 125/1726
  45786. }
  45787. },
  45788. back: {
  45789. height: math.unit(6 + 3/12, "feet"),
  45790. weight: math.unit(170, "lb"),
  45791. name: "Back",
  45792. image: {
  45793. source: "./media/characters/sam-bat/back.svg",
  45794. extra: 1577/1405,
  45795. bottom: 58/1635
  45796. }
  45797. },
  45798. },
  45799. [
  45800. {
  45801. name: "Normal",
  45802. height: math.unit(6 + 3/12, "feet"),
  45803. default: true
  45804. },
  45805. ]
  45806. ))
  45807. characterMakers.push(() => makeCharacter(
  45808. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45809. {
  45810. front: {
  45811. height: math.unit(59, "feet"),
  45812. weight: math.unit(40000, "lb"),
  45813. name: "Front",
  45814. image: {
  45815. source: "./media/characters/inari/front.svg",
  45816. extra: 1884/1350,
  45817. bottom: 95/1979
  45818. }
  45819. },
  45820. },
  45821. [
  45822. {
  45823. name: "Gigantamax",
  45824. height: math.unit(59, "feet"),
  45825. default: true
  45826. },
  45827. ]
  45828. ))
  45829. characterMakers.push(() => makeCharacter(
  45830. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45831. {
  45832. front: {
  45833. height: math.unit(5 + 8/12, "feet"),
  45834. name: "Front",
  45835. image: {
  45836. source: "./media/characters/elizabeth/front.svg",
  45837. extra: 1395/1298,
  45838. bottom: 54/1449
  45839. }
  45840. },
  45841. mouth: {
  45842. height: math.unit(1.97, "feet"),
  45843. name: "Mouth",
  45844. image: {
  45845. source: "./media/characters/elizabeth/mouth.svg"
  45846. }
  45847. },
  45848. foot: {
  45849. height: math.unit(1.17, "feet"),
  45850. name: "Foot",
  45851. image: {
  45852. source: "./media/characters/elizabeth/foot.svg"
  45853. }
  45854. },
  45855. },
  45856. [
  45857. {
  45858. name: "Normal",
  45859. height: math.unit(5 + 8/12, "feet"),
  45860. default: true
  45861. },
  45862. {
  45863. name: "Minimacro",
  45864. height: math.unit(18, "feet")
  45865. },
  45866. {
  45867. name: "Macro",
  45868. height: math.unit(180, "feet")
  45869. },
  45870. ]
  45871. ))
  45872. characterMakers.push(() => makeCharacter(
  45873. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45874. {
  45875. front: {
  45876. height: math.unit(5 + 2/12, "feet"),
  45877. name: "Front",
  45878. image: {
  45879. source: "./media/characters/october-gossamer/front.svg",
  45880. extra: 505/454,
  45881. bottom: 7/512
  45882. }
  45883. },
  45884. back: {
  45885. height: math.unit(5 + 2/12, "feet"),
  45886. name: "Back",
  45887. image: {
  45888. source: "./media/characters/october-gossamer/back.svg",
  45889. extra: 501/454,
  45890. bottom: 11/512
  45891. }
  45892. },
  45893. },
  45894. [
  45895. {
  45896. name: "Normal",
  45897. height: math.unit(5 + 2/12, "feet"),
  45898. default: true
  45899. },
  45900. ]
  45901. ))
  45902. characterMakers.push(() => makeCharacter(
  45903. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45904. {
  45905. front: {
  45906. height: math.unit(5, "feet"),
  45907. name: "Front",
  45908. image: {
  45909. source: "./media/characters/epiglottis/front.svg",
  45910. extra: 923/849,
  45911. bottom: 17/940
  45912. }
  45913. },
  45914. },
  45915. [
  45916. {
  45917. name: "Original Size",
  45918. height: math.unit(10, "inches")
  45919. },
  45920. {
  45921. name: "Human Size",
  45922. height: math.unit(5, "feet"),
  45923. default: true
  45924. },
  45925. {
  45926. name: "Big",
  45927. height: math.unit(25, "feet")
  45928. },
  45929. {
  45930. name: "Bigger",
  45931. height: math.unit(50, "feet")
  45932. },
  45933. {
  45934. name: "oh lawd",
  45935. height: math.unit(75, "feet")
  45936. },
  45937. ]
  45938. ))
  45939. characterMakers.push(() => makeCharacter(
  45940. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45941. {
  45942. front: {
  45943. height: math.unit(2 + 4/12, "feet"),
  45944. weight: math.unit(60, "lb"),
  45945. name: "Front",
  45946. image: {
  45947. source: "./media/characters/lerm/front.svg",
  45948. extra: 796/790,
  45949. bottom: 79/875
  45950. }
  45951. },
  45952. },
  45953. [
  45954. {
  45955. name: "Normal",
  45956. height: math.unit(2 + 4/12, "feet"),
  45957. default: true
  45958. },
  45959. ]
  45960. ))
  45961. characterMakers.push(() => makeCharacter(
  45962. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45963. {
  45964. front: {
  45965. height: math.unit(5.5, "feet"),
  45966. weight: math.unit(130, "lb"),
  45967. name: "Front",
  45968. image: {
  45969. source: "./media/characters/xena-nebadon/front.svg",
  45970. extra: 1828/1730,
  45971. bottom: 79/1907
  45972. }
  45973. },
  45974. },
  45975. [
  45976. {
  45977. name: "Tiny Puppy",
  45978. height: math.unit(3, "inches")
  45979. },
  45980. {
  45981. name: "Normal",
  45982. height: math.unit(5.5, "feet"),
  45983. default: true
  45984. },
  45985. {
  45986. name: "Lotta Lady",
  45987. height: math.unit(12, "feet")
  45988. },
  45989. {
  45990. name: "Pretty Big",
  45991. height: math.unit(100, "feet")
  45992. },
  45993. {
  45994. name: "Big",
  45995. height: math.unit(500, "feet")
  45996. },
  45997. {
  45998. name: "Skyscraper Toys",
  45999. height: math.unit(2500, "feet")
  46000. },
  46001. {
  46002. name: "Plane Catcher",
  46003. height: math.unit(8, "miles")
  46004. },
  46005. {
  46006. name: "Planet Toys",
  46007. height: math.unit(15, "earths")
  46008. },
  46009. {
  46010. name: "Stardust",
  46011. height: math.unit(0.25, "galaxies")
  46012. },
  46013. {
  46014. name: "Snacks",
  46015. height: math.unit(70, "universes")
  46016. },
  46017. ]
  46018. ))
  46019. characterMakers.push(() => makeCharacter(
  46020. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  46021. {
  46022. front: {
  46023. height: math.unit(1.6, "meters"),
  46024. weight: math.unit(60, "kg"),
  46025. name: "Front",
  46026. image: {
  46027. source: "./media/characters/bounty/front.svg",
  46028. extra: 1426/1308,
  46029. bottom: 15/1441
  46030. }
  46031. },
  46032. back: {
  46033. height: math.unit(1.6, "meters"),
  46034. weight: math.unit(60, "kg"),
  46035. name: "Back",
  46036. image: {
  46037. source: "./media/characters/bounty/back.svg",
  46038. extra: 1417/1307,
  46039. bottom: 8/1425
  46040. }
  46041. },
  46042. },
  46043. [
  46044. {
  46045. name: "Normal",
  46046. height: math.unit(1.6, "meters"),
  46047. default: true
  46048. },
  46049. {
  46050. name: "Macro",
  46051. height: math.unit(300, "meters")
  46052. },
  46053. ]
  46054. ))
  46055. characterMakers.push(() => makeCharacter(
  46056. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  46057. {
  46058. front: {
  46059. height: math.unit(2 + 8/12, "feet"),
  46060. weight: math.unit(15, "lb"),
  46061. name: "Front",
  46062. image: {
  46063. source: "./media/characters/mochi/front.svg",
  46064. extra: 1022/852,
  46065. bottom: 435/1457
  46066. }
  46067. },
  46068. back: {
  46069. height: math.unit(2 + 8/12, "feet"),
  46070. weight: math.unit(15, "lb"),
  46071. name: "Back",
  46072. image: {
  46073. source: "./media/characters/mochi/back.svg",
  46074. extra: 1335/1119,
  46075. bottom: 39/1374
  46076. }
  46077. },
  46078. bird: {
  46079. height: math.unit(2 + 8/12, "feet"),
  46080. weight: math.unit(15, "lb"),
  46081. name: "Bird",
  46082. image: {
  46083. source: "./media/characters/mochi/bird.svg",
  46084. extra: 1251/1113,
  46085. bottom: 178/1429
  46086. }
  46087. },
  46088. kaiju: {
  46089. height: math.unit(154, "feet"),
  46090. weight: math.unit(1e7, "lb"),
  46091. name: "Kaiju",
  46092. image: {
  46093. source: "./media/characters/mochi/kaiju.svg",
  46094. extra: 460/324,
  46095. bottom: 40/500
  46096. }
  46097. },
  46098. head: {
  46099. height: math.unit(1.21, "feet"),
  46100. name: "Head",
  46101. image: {
  46102. source: "./media/characters/mochi/head.svg"
  46103. }
  46104. },
  46105. alternateTail: {
  46106. height: math.unit(2 + 8/12, "feet"),
  46107. weight: math.unit(45, "lb"),
  46108. name: "Alternate Tail",
  46109. image: {
  46110. source: "./media/characters/mochi/alternate-tail.svg",
  46111. extra: 139/76,
  46112. bottom: 45/184
  46113. }
  46114. },
  46115. },
  46116. [
  46117. {
  46118. name: "Micro",
  46119. height: math.unit(2, "inches")
  46120. },
  46121. {
  46122. name: "Normal",
  46123. height: math.unit(2 + 8/12, "feet"),
  46124. default: true
  46125. },
  46126. {
  46127. name: "Macro",
  46128. height: math.unit(106, "feet")
  46129. },
  46130. ]
  46131. ))
  46132. characterMakers.push(() => makeCharacter(
  46133. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46134. {
  46135. front: {
  46136. height: math.unit(5.67, "feet"),
  46137. weight: math.unit(135, "lb"),
  46138. name: "Front",
  46139. image: {
  46140. source: "./media/characters/sarel/front.svg",
  46141. extra: 865/788,
  46142. bottom: 97/962
  46143. }
  46144. },
  46145. back: {
  46146. height: math.unit(5.67, "feet"),
  46147. weight: math.unit(135, "lb"),
  46148. name: "Back",
  46149. image: {
  46150. source: "./media/characters/sarel/back.svg",
  46151. extra: 857/777,
  46152. bottom: 32/889
  46153. }
  46154. },
  46155. chozoan: {
  46156. height: math.unit(5.67, "feet"),
  46157. weight: math.unit(135, "lb"),
  46158. name: "Chozoan",
  46159. image: {
  46160. source: "./media/characters/sarel/chozoan.svg",
  46161. extra: 865/788,
  46162. bottom: 97/962
  46163. }
  46164. },
  46165. current: {
  46166. height: math.unit(5.67, "feet"),
  46167. weight: math.unit(135, "lb"),
  46168. name: "Current",
  46169. image: {
  46170. source: "./media/characters/sarel/current.svg",
  46171. extra: 865/788,
  46172. bottom: 97/962
  46173. }
  46174. },
  46175. head: {
  46176. height: math.unit(1.77, "feet"),
  46177. name: "Head",
  46178. image: {
  46179. source: "./media/characters/sarel/head.svg"
  46180. }
  46181. },
  46182. claws: {
  46183. height: math.unit(1.8, "feet"),
  46184. name: "Claws",
  46185. image: {
  46186. source: "./media/characters/sarel/claws.svg"
  46187. }
  46188. },
  46189. clawsAlt: {
  46190. height: math.unit(1.8, "feet"),
  46191. name: "Claws-alt",
  46192. image: {
  46193. source: "./media/characters/sarel/claws-alt.svg"
  46194. }
  46195. },
  46196. },
  46197. [
  46198. {
  46199. name: "Normal",
  46200. height: math.unit(5.67, "feet"),
  46201. default: true
  46202. },
  46203. ]
  46204. ))
  46205. characterMakers.push(() => makeCharacter(
  46206. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46207. {
  46208. front: {
  46209. height: math.unit(5500, "feet"),
  46210. name: "Front",
  46211. image: {
  46212. source: "./media/characters/alyonia/front.svg",
  46213. extra: 1200/1135,
  46214. bottom: 29/1229
  46215. }
  46216. },
  46217. back: {
  46218. height: math.unit(5500, "feet"),
  46219. name: "Back",
  46220. image: {
  46221. source: "./media/characters/alyonia/back.svg",
  46222. extra: 1205/1138,
  46223. bottom: 10/1215
  46224. }
  46225. },
  46226. },
  46227. [
  46228. {
  46229. name: "Small",
  46230. height: math.unit(10, "feet")
  46231. },
  46232. {
  46233. name: "Macro",
  46234. height: math.unit(500, "feet")
  46235. },
  46236. {
  46237. name: "Mega Macro",
  46238. height: math.unit(5500, "feet"),
  46239. default: true
  46240. },
  46241. {
  46242. name: "Mega Macro+",
  46243. height: math.unit(500000, "feet")
  46244. },
  46245. {
  46246. name: "Giga Macro",
  46247. height: math.unit(3000, "miles")
  46248. },
  46249. {
  46250. name: "Tera Macro",
  46251. height: math.unit(2.8e6, "miles")
  46252. },
  46253. {
  46254. name: "Galactic",
  46255. height: math.unit(120000, "lightyears")
  46256. },
  46257. ]
  46258. ))
  46259. characterMakers.push(() => makeCharacter(
  46260. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46261. {
  46262. werewolf: {
  46263. height: math.unit(8, "feet"),
  46264. weight: math.unit(425, "lb"),
  46265. name: "Werewolf",
  46266. image: {
  46267. source: "./media/characters/autumn/werewolf.svg",
  46268. extra: 2154/2031,
  46269. bottom: 160/2314
  46270. }
  46271. },
  46272. human: {
  46273. height: math.unit(5 + 8/12, "feet"),
  46274. weight: math.unit(150, "lb"),
  46275. name: "Human",
  46276. image: {
  46277. source: "./media/characters/autumn/human.svg",
  46278. extra: 1200/1149,
  46279. bottom: 30/1230
  46280. }
  46281. },
  46282. },
  46283. [
  46284. {
  46285. name: "Normal",
  46286. height: math.unit(8, "feet"),
  46287. default: true
  46288. },
  46289. ]
  46290. ))
  46291. characterMakers.push(() => makeCharacter(
  46292. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46293. {
  46294. front: {
  46295. height: math.unit(8 + 5/12, "feet"),
  46296. weight: math.unit(825, "lb"),
  46297. name: "Front",
  46298. image: {
  46299. source: "./media/characters/cobalt-charizard/front.svg",
  46300. extra: 1268/1155,
  46301. bottom: 122/1390
  46302. }
  46303. },
  46304. side: {
  46305. height: math.unit(8 + 5/12, "feet"),
  46306. weight: math.unit(825, "lb"),
  46307. name: "Side",
  46308. image: {
  46309. source: "./media/characters/cobalt-charizard/side.svg",
  46310. extra: 1348/1257,
  46311. bottom: 58/1406
  46312. }
  46313. },
  46314. gMax: {
  46315. height: math.unit(134 + 11/12, "feet"),
  46316. name: "G-Max",
  46317. image: {
  46318. source: "./media/characters/cobalt-charizard/g-max.svg",
  46319. extra: 1835/1541,
  46320. bottom: 151/1986
  46321. }
  46322. },
  46323. },
  46324. [
  46325. {
  46326. name: "Normal",
  46327. height: math.unit(8 + 5/12, "feet"),
  46328. default: true
  46329. },
  46330. ]
  46331. ))
  46332. characterMakers.push(() => makeCharacter(
  46333. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46334. {
  46335. front: {
  46336. height: math.unit(6 + 3/12, "feet"),
  46337. weight: math.unit(210, "lb"),
  46338. name: "Front",
  46339. image: {
  46340. source: "./media/characters/stella/front.svg",
  46341. extra: 3549/3335,
  46342. bottom: 51/3600
  46343. }
  46344. },
  46345. },
  46346. [
  46347. {
  46348. name: "Normal",
  46349. height: math.unit(6 + 3/12, "feet"),
  46350. default: true
  46351. },
  46352. ]
  46353. ))
  46354. characterMakers.push(() => makeCharacter(
  46355. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46356. {
  46357. front: {
  46358. height: math.unit(5, "feet"),
  46359. weight: math.unit(90, "lb"),
  46360. name: "Front",
  46361. image: {
  46362. source: "./media/characters/riley-bishop/front.svg",
  46363. extra: 1450/1428,
  46364. bottom: 152/1602
  46365. }
  46366. },
  46367. },
  46368. [
  46369. {
  46370. name: "Normal",
  46371. height: math.unit(5, "feet"),
  46372. default: true
  46373. },
  46374. ]
  46375. ))
  46376. characterMakers.push(() => makeCharacter(
  46377. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46378. {
  46379. side: {
  46380. height: math.unit(8 + 2/12, "feet"),
  46381. weight: math.unit(500, "kg"),
  46382. name: "Side",
  46383. image: {
  46384. source: "./media/characters/theo-arcanine/side.svg",
  46385. extra: 1342/1074,
  46386. bottom: 111/1453
  46387. }
  46388. },
  46389. },
  46390. [
  46391. {
  46392. name: "Normal",
  46393. height: math.unit(8 + 2/12, "feet"),
  46394. default: true
  46395. },
  46396. ]
  46397. ))
  46398. characterMakers.push(() => makeCharacter(
  46399. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46400. {
  46401. front: {
  46402. height: math.unit(4, "feet"),
  46403. name: "Front",
  46404. image: {
  46405. source: "./media/characters/kali/front.svg",
  46406. extra: 1074/867,
  46407. bottom: 34/1108
  46408. }
  46409. },
  46410. back: {
  46411. height: math.unit(4, "feet"),
  46412. name: "Back",
  46413. image: {
  46414. source: "./media/characters/kali/back.svg",
  46415. extra: 1068/863,
  46416. bottom: 26/1094
  46417. }
  46418. },
  46419. frontAlt: {
  46420. height: math.unit(4, "feet"),
  46421. name: "Front (Alt)",
  46422. image: {
  46423. source: "./media/characters/kali/front-alt.svg",
  46424. extra: 1921/1357,
  46425. bottom: 70/1991
  46426. }
  46427. },
  46428. },
  46429. [
  46430. {
  46431. name: "Normal",
  46432. height: math.unit(4, "feet"),
  46433. default: true
  46434. },
  46435. {
  46436. name: "Big'vali",
  46437. height: math.unit(11, "feet")
  46438. },
  46439. {
  46440. name: "Macro",
  46441. height: math.unit(32, "meters")
  46442. },
  46443. {
  46444. name: "Macro+",
  46445. height: math.unit(150, "meters")
  46446. },
  46447. {
  46448. name: "Megamacro",
  46449. height: math.unit(7500, "meters")
  46450. },
  46451. {
  46452. name: "Megamacro+",
  46453. height: math.unit(80, "kilometers")
  46454. },
  46455. ]
  46456. ))
  46457. characterMakers.push(() => makeCharacter(
  46458. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46459. {
  46460. side: {
  46461. height: math.unit(5 + 11/12, "feet"),
  46462. weight: math.unit(236, "lb"),
  46463. name: "Side",
  46464. image: {
  46465. source: "./media/characters/gapp/side.svg",
  46466. extra: 775/340,
  46467. bottom: 58/833
  46468. }
  46469. },
  46470. mouth: {
  46471. height: math.unit(2.98, "feet"),
  46472. name: "Mouth",
  46473. image: {
  46474. source: "./media/characters/gapp/mouth.svg"
  46475. }
  46476. },
  46477. },
  46478. [
  46479. {
  46480. name: "Normal",
  46481. height: math.unit(5 + 1/12, "feet"),
  46482. default: true
  46483. },
  46484. ]
  46485. ))
  46486. characterMakers.push(() => makeCharacter(
  46487. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46488. {
  46489. front: {
  46490. height: math.unit(6, "feet"),
  46491. name: "Front",
  46492. image: {
  46493. source: "./media/characters/persephone/front.svg",
  46494. extra: 1895/1717,
  46495. bottom: 96/1991
  46496. }
  46497. },
  46498. back: {
  46499. height: math.unit(6, "feet"),
  46500. name: "Back",
  46501. image: {
  46502. source: "./media/characters/persephone/back.svg",
  46503. extra: 1868/1679,
  46504. bottom: 26/1894
  46505. }
  46506. },
  46507. casual: {
  46508. height: math.unit(6, "feet"),
  46509. name: "Casual",
  46510. image: {
  46511. source: "./media/characters/persephone/casual.svg",
  46512. extra: 1713/1541,
  46513. bottom: 76/1789
  46514. }
  46515. },
  46516. gaming: {
  46517. height: math.unit(3.55, "feet"),
  46518. name: "Gaming",
  46519. image: {
  46520. source: "./media/characters/persephone/gaming.svg",
  46521. extra: 1242/1038,
  46522. bottom: 66/1308
  46523. }
  46524. },
  46525. head: {
  46526. height: math.unit(2.15, "feet"),
  46527. name: "😐",
  46528. image: {
  46529. source: "./media/characters/persephone/head.svg"
  46530. }
  46531. },
  46532. talking: {
  46533. height: math.unit(2.5, "feet"),
  46534. name: "💬",
  46535. image: {
  46536. source: "./media/characters/persephone/talking.svg"
  46537. }
  46538. },
  46539. hmm: {
  46540. height: math.unit(2.28, "feet"),
  46541. name: "🤨",
  46542. image: {
  46543. source: "./media/characters/persephone/hmm.svg"
  46544. }
  46545. },
  46546. },
  46547. [
  46548. {
  46549. name: "Human Size",
  46550. height: math.unit(6, "feet")
  46551. },
  46552. {
  46553. name: "Big Steppy",
  46554. height: math.unit(600, "meters"),
  46555. default: true
  46556. },
  46557. {
  46558. name: "Galaxy Brain",
  46559. height: math.unit(1, "zettameter")
  46560. },
  46561. ]
  46562. ))
  46563. characterMakers.push(() => makeCharacter(
  46564. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46565. {
  46566. front: {
  46567. height: math.unit(1.85, "meters"),
  46568. name: "Front",
  46569. image: {
  46570. source: "./media/characters/riley-foxthing/front.svg",
  46571. extra: 1495/1354,
  46572. bottom: 122/1617
  46573. }
  46574. },
  46575. frontAlt: {
  46576. height: math.unit(1.85, "meters"),
  46577. name: "Front (Alt)",
  46578. image: {
  46579. source: "./media/characters/riley-foxthing/front-alt.svg",
  46580. extra: 1572/1389,
  46581. bottom: 116/1688
  46582. }
  46583. },
  46584. },
  46585. [
  46586. {
  46587. name: "Normal Sized",
  46588. height: math.unit(1.85, "meters"),
  46589. default: true
  46590. },
  46591. {
  46592. name: "Quite Sizable",
  46593. height: math.unit(5, "meters")
  46594. },
  46595. {
  46596. name: "Rather Large",
  46597. height: math.unit(20, "meters")
  46598. },
  46599. {
  46600. name: "Macro",
  46601. height: math.unit(450, "meters")
  46602. },
  46603. {
  46604. name: "Giga",
  46605. height: math.unit(5, "km")
  46606. },
  46607. ]
  46608. ))
  46609. characterMakers.push(() => makeCharacter(
  46610. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46611. {
  46612. front: {
  46613. height: math.unit(6, "feet"),
  46614. weight: math.unit(200, "lb"),
  46615. name: "Front",
  46616. image: {
  46617. source: "./media/characters/blizzard/front.svg",
  46618. extra: 1136/990,
  46619. bottom: 136/1272
  46620. }
  46621. },
  46622. back: {
  46623. height: math.unit(6, "feet"),
  46624. weight: math.unit(200, "lb"),
  46625. name: "Back",
  46626. image: {
  46627. source: "./media/characters/blizzard/back.svg",
  46628. extra: 1175/1034,
  46629. bottom: 97/1272
  46630. }
  46631. },
  46632. sitting: {
  46633. height: math.unit(3.725, "feet"),
  46634. weight: math.unit(200, "lb"),
  46635. name: "Sitting",
  46636. image: {
  46637. source: "./media/characters/blizzard/sitting.svg",
  46638. extra: 581/485,
  46639. bottom: 90/671
  46640. }
  46641. },
  46642. frontWizard: {
  46643. height: math.unit(7.9, "feet"),
  46644. weight: math.unit(200, "lb"),
  46645. name: "Front (Wizard)",
  46646. image: {
  46647. source: "./media/characters/blizzard/front-wizard.svg"
  46648. }
  46649. },
  46650. backWizard: {
  46651. height: math.unit(7.9, "feet"),
  46652. weight: math.unit(200, "lb"),
  46653. name: "Back (Wizard)",
  46654. image: {
  46655. source: "./media/characters/blizzard/back-wizard.svg"
  46656. }
  46657. },
  46658. frontNsfw: {
  46659. height: math.unit(6, "feet"),
  46660. weight: math.unit(200, "lb"),
  46661. name: "Front (NSFW)",
  46662. image: {
  46663. source: "./media/characters/blizzard/front-nsfw.svg",
  46664. extra: 1136/990,
  46665. bottom: 136/1272
  46666. }
  46667. },
  46668. backNsfw: {
  46669. height: math.unit(6, "feet"),
  46670. weight: math.unit(200, "lb"),
  46671. name: "Back (NSFW)",
  46672. image: {
  46673. source: "./media/characters/blizzard/back-nsfw.svg",
  46674. extra: 1175/1034,
  46675. bottom: 97/1272
  46676. }
  46677. },
  46678. sittingNsfw: {
  46679. height: math.unit(3.725, "feet"),
  46680. weight: math.unit(200, "lb"),
  46681. name: "Sitting (NSFW)",
  46682. image: {
  46683. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46684. extra: 581/485,
  46685. bottom: 90/671
  46686. }
  46687. },
  46688. wizardFrontNsfw: {
  46689. height: math.unit(7.9, "feet"),
  46690. weight: math.unit(200, "lb"),
  46691. name: "Wizard (Front, NSFW)",
  46692. image: {
  46693. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46694. }
  46695. },
  46696. },
  46697. [
  46698. {
  46699. name: "Normal",
  46700. height: math.unit(6, "feet"),
  46701. default: true
  46702. },
  46703. ]
  46704. ))
  46705. characterMakers.push(() => makeCharacter(
  46706. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46707. {
  46708. front: {
  46709. height: math.unit(5 + 2/12, "feet"),
  46710. name: "Front",
  46711. image: {
  46712. source: "./media/characters/lumi/front.svg",
  46713. extra: 1328/1268,
  46714. bottom: 103/1431
  46715. }
  46716. },
  46717. back: {
  46718. height: math.unit(5 + 2/12, "feet"),
  46719. name: "Back",
  46720. image: {
  46721. source: "./media/characters/lumi/back.svg",
  46722. extra: 1381/1327,
  46723. bottom: 43/1424
  46724. }
  46725. },
  46726. },
  46727. [
  46728. {
  46729. name: "Normal",
  46730. height: math.unit(5 + 2/12, "feet"),
  46731. default: true
  46732. },
  46733. ]
  46734. ))
  46735. characterMakers.push(() => makeCharacter(
  46736. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46737. {
  46738. front: {
  46739. height: math.unit(5 + 9/12, "feet"),
  46740. name: "Front",
  46741. image: {
  46742. source: "./media/characters/aliya-cotton/front.svg",
  46743. extra: 577/564,
  46744. bottom: 29/606
  46745. }
  46746. },
  46747. },
  46748. [
  46749. {
  46750. name: "Normal",
  46751. height: math.unit(5 + 9/12, "feet"),
  46752. default: true
  46753. },
  46754. ]
  46755. ))
  46756. characterMakers.push(() => makeCharacter(
  46757. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46758. {
  46759. front: {
  46760. height: math.unit(2.7, "meters"),
  46761. weight: math.unit(25000, "lb"),
  46762. name: "Front",
  46763. image: {
  46764. source: "./media/characters/noah-luxray/front.svg",
  46765. extra: 1644/825,
  46766. bottom: 339/1983
  46767. }
  46768. },
  46769. side: {
  46770. height: math.unit(2.97, "meters"),
  46771. weight: math.unit(25000, "lb"),
  46772. name: "Side",
  46773. image: {
  46774. source: "./media/characters/noah-luxray/side.svg",
  46775. extra: 1319/650,
  46776. bottom: 163/1482
  46777. }
  46778. },
  46779. dick: {
  46780. height: math.unit(7.4, "feet"),
  46781. weight: math.unit(2500, "lb"),
  46782. name: "Dick",
  46783. image: {
  46784. source: "./media/characters/noah-luxray/dick.svg"
  46785. }
  46786. },
  46787. dickAlt: {
  46788. height: math.unit(10.83, "feet"),
  46789. weight: math.unit(2500, "lb"),
  46790. name: "Dick-alt",
  46791. image: {
  46792. source: "./media/characters/noah-luxray/dick-alt.svg"
  46793. }
  46794. },
  46795. },
  46796. [
  46797. {
  46798. name: "BIG",
  46799. height: math.unit(2.7, "meters"),
  46800. default: true
  46801. },
  46802. ]
  46803. ))
  46804. characterMakers.push(() => makeCharacter(
  46805. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46806. {
  46807. standing: {
  46808. height: math.unit(183, "cm"),
  46809. weight: math.unit(68, "kg"),
  46810. name: "Standing",
  46811. image: {
  46812. source: "./media/characters/arion/standing.svg",
  46813. extra: 1869/1807,
  46814. bottom: 93/1962
  46815. }
  46816. },
  46817. reclining: {
  46818. height: math.unit(70.5, "cm"),
  46819. weight: math.unit(68, "lb"),
  46820. name: "Reclining",
  46821. image: {
  46822. source: "./media/characters/arion/reclining.svg",
  46823. extra: 937/870,
  46824. bottom: 63/1000
  46825. }
  46826. },
  46827. },
  46828. [
  46829. {
  46830. name: "Colossus Size, Low",
  46831. height: math.unit(33, "meters"),
  46832. default: true
  46833. },
  46834. {
  46835. name: "Colossus Size, Mid",
  46836. height: math.unit(52, "meters")
  46837. },
  46838. {
  46839. name: "Colossus Size, High",
  46840. height: math.unit(60, "meters")
  46841. },
  46842. {
  46843. name: "Titan Size, Low",
  46844. height: math.unit(91, "meters"),
  46845. },
  46846. {
  46847. name: "Titan Size, Mid",
  46848. height: math.unit(122, "meters")
  46849. },
  46850. {
  46851. name: "Titan Size, High",
  46852. height: math.unit(162, "meters")
  46853. },
  46854. ]
  46855. ))
  46856. characterMakers.push(() => makeCharacter(
  46857. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46858. {
  46859. front: {
  46860. height: math.unit(53, "meters"),
  46861. name: "Front",
  46862. image: {
  46863. source: "./media/characters/stellar-marbey/front.svg",
  46864. extra: 1913/1805,
  46865. bottom: 92/2005
  46866. }
  46867. },
  46868. back: {
  46869. height: math.unit(53, "meters"),
  46870. name: "Back",
  46871. image: {
  46872. source: "./media/characters/stellar-marbey/back.svg",
  46873. extra: 1960/1851,
  46874. bottom: 28/1988
  46875. }
  46876. },
  46877. mouth: {
  46878. height: math.unit(3.5, "meters"),
  46879. name: "Mouth",
  46880. image: {
  46881. source: "./media/characters/stellar-marbey/mouth.svg"
  46882. }
  46883. },
  46884. },
  46885. [
  46886. {
  46887. name: "Macro",
  46888. height: math.unit(53, "meters"),
  46889. default: true
  46890. },
  46891. ]
  46892. ))
  46893. characterMakers.push(() => makeCharacter(
  46894. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46895. {
  46896. front: {
  46897. height: math.unit(8 + 1/12, "feet"),
  46898. weight: math.unit(233, "lb"),
  46899. name: "Front",
  46900. image: {
  46901. source: "./media/characters/matsu/front.svg",
  46902. extra: 832/772,
  46903. bottom: 40/872
  46904. }
  46905. },
  46906. back: {
  46907. height: math.unit(8 + 1/12, "feet"),
  46908. weight: math.unit(233, "lb"),
  46909. name: "Back",
  46910. image: {
  46911. source: "./media/characters/matsu/back.svg",
  46912. extra: 839/780,
  46913. bottom: 47/886
  46914. }
  46915. },
  46916. },
  46917. [
  46918. {
  46919. name: "Normal",
  46920. height: math.unit(8 + 1/12, "feet"),
  46921. default: true
  46922. },
  46923. ]
  46924. ))
  46925. characterMakers.push(() => makeCharacter(
  46926. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46927. {
  46928. front: {
  46929. height: math.unit(4, "feet"),
  46930. weight: math.unit(148, "lb"),
  46931. name: "Front",
  46932. image: {
  46933. source: "./media/characters/thiz/front.svg",
  46934. extra: 1913/1748,
  46935. bottom: 62/1975
  46936. }
  46937. },
  46938. },
  46939. [
  46940. {
  46941. name: "Normal",
  46942. height: math.unit(4, "feet"),
  46943. default: true
  46944. },
  46945. ]
  46946. ))
  46947. characterMakers.push(() => makeCharacter(
  46948. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46949. {
  46950. front: {
  46951. height: math.unit(7 + 6/12, "feet"),
  46952. weight: math.unit(267, "lb"),
  46953. name: "Front",
  46954. image: {
  46955. source: "./media/characters/marcel/front.svg",
  46956. extra: 1221/1096,
  46957. bottom: 76/1297
  46958. }
  46959. },
  46960. },
  46961. [
  46962. {
  46963. name: "Normal",
  46964. height: math.unit(7 + 6/12, "feet"),
  46965. default: true
  46966. },
  46967. ]
  46968. ))
  46969. characterMakers.push(() => makeCharacter(
  46970. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46971. {
  46972. side: {
  46973. height: math.unit(42, "meters"),
  46974. name: "Side",
  46975. image: {
  46976. source: "./media/characters/flake/side.svg",
  46977. extra: 1525/1306,
  46978. bottom: 209/1734
  46979. }
  46980. },
  46981. },
  46982. [
  46983. {
  46984. name: "Normal",
  46985. height: math.unit(42, "meters"),
  46986. default: true
  46987. },
  46988. ]
  46989. ))
  46990. characterMakers.push(() => makeCharacter(
  46991. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46992. {
  46993. dressed: {
  46994. height: math.unit(6 + 4/12, "feet"),
  46995. weight: math.unit(520, "lb"),
  46996. name: "Dressed",
  46997. image: {
  46998. source: "./media/characters/someonne/dressed.svg",
  46999. extra: 1020/1010,
  47000. bottom: 178/1198
  47001. }
  47002. },
  47003. undressed: {
  47004. height: math.unit(6 + 4/12, "feet"),
  47005. weight: math.unit(520, "lb"),
  47006. name: "Undressed",
  47007. image: {
  47008. source: "./media/characters/someonne/undressed.svg",
  47009. extra: 1019/1014,
  47010. bottom: 169/1188
  47011. }
  47012. },
  47013. },
  47014. [
  47015. {
  47016. name: "Normal",
  47017. height: math.unit(6 + 4/12, "feet"),
  47018. default: true
  47019. },
  47020. ]
  47021. ))
  47022. characterMakers.push(() => makeCharacter(
  47023. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  47024. {
  47025. front: {
  47026. height: math.unit(3, "feet"),
  47027. weight: math.unit(30, "lb"),
  47028. name: "Front",
  47029. image: {
  47030. source: "./media/characters/till/front.svg",
  47031. extra: 892/823,
  47032. bottom: 55/947
  47033. }
  47034. },
  47035. },
  47036. [
  47037. {
  47038. name: "Normal",
  47039. height: math.unit(3, "feet"),
  47040. default: true
  47041. },
  47042. ]
  47043. ))
  47044. characterMakers.push(() => makeCharacter(
  47045. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  47046. {
  47047. front: {
  47048. height: math.unit(9 + 8/12, "feet"),
  47049. weight: math.unit(800, "lb"),
  47050. name: "Front",
  47051. image: {
  47052. source: "./media/characters/sydney-heki/front.svg",
  47053. extra: 1360/1300,
  47054. bottom: 22/1382
  47055. }
  47056. },
  47057. back: {
  47058. height: math.unit(9 + 8/12, "feet"),
  47059. weight: math.unit(800, "lb"),
  47060. name: "Back",
  47061. image: {
  47062. source: "./media/characters/sydney-heki/back.svg",
  47063. extra: 1356/1293,
  47064. bottom: 12/1368
  47065. }
  47066. },
  47067. frontDressed: {
  47068. height: math.unit(9 + 8/12, "feet"),
  47069. weight: math.unit(800, "lb"),
  47070. name: "Front-dressed",
  47071. image: {
  47072. source: "./media/characters/sydney-heki/front-dressed.svg",
  47073. extra: 1360/1300,
  47074. bottom: 22/1382
  47075. }
  47076. },
  47077. },
  47078. [
  47079. {
  47080. name: "Normal",
  47081. height: math.unit(9 + 8/12, "feet"),
  47082. default: true
  47083. },
  47084. {
  47085. name: "Macro",
  47086. height: math.unit(500, "feet")
  47087. },
  47088. {
  47089. name: "Megamacro",
  47090. height: math.unit(3.6, "miles")
  47091. },
  47092. ]
  47093. ))
  47094. characterMakers.push(() => makeCharacter(
  47095. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  47096. {
  47097. front: {
  47098. height: math.unit(200, "cm"),
  47099. weight: math.unit(250, "lb"),
  47100. name: "Front",
  47101. image: {
  47102. source: "./media/characters/fowler-karlsson/front.svg",
  47103. extra: 897/845,
  47104. bottom: 123/1020
  47105. }
  47106. },
  47107. back: {
  47108. height: math.unit(200, "cm"),
  47109. weight: math.unit(250, "lb"),
  47110. name: "Back",
  47111. image: {
  47112. source: "./media/characters/fowler-karlsson/back.svg",
  47113. extra: 999/944,
  47114. bottom: 26/1025
  47115. }
  47116. },
  47117. dick: {
  47118. height: math.unit(1.92, "feet"),
  47119. weight: math.unit(150, "lb"),
  47120. name: "Dick",
  47121. image: {
  47122. source: "./media/characters/fowler-karlsson/dick.svg"
  47123. }
  47124. },
  47125. },
  47126. [
  47127. {
  47128. name: "Normal",
  47129. height: math.unit(200, "cm"),
  47130. default: true
  47131. },
  47132. {
  47133. name: "Smaller Macro",
  47134. height: math.unit(90, "m")
  47135. },
  47136. {
  47137. name: "Macro",
  47138. height: math.unit(150, "m")
  47139. },
  47140. {
  47141. name: "Bigger Macro",
  47142. height: math.unit(300, "m")
  47143. },
  47144. ]
  47145. ))
  47146. characterMakers.push(() => makeCharacter(
  47147. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47148. {
  47149. side: {
  47150. height: math.unit(8 + 2/12, "feet"),
  47151. weight: math.unit(1, "tonne"),
  47152. name: "Side",
  47153. image: {
  47154. source: "./media/characters/rylide/side.svg",
  47155. extra: 1318/1034,
  47156. bottom: 106/1424
  47157. }
  47158. },
  47159. sitting: {
  47160. height: math.unit(303, "cm"),
  47161. weight: math.unit(1, "tonne"),
  47162. name: "Sitting",
  47163. image: {
  47164. source: "./media/characters/rylide/sitting.svg",
  47165. extra: 1303/1103,
  47166. bottom: 36/1339
  47167. }
  47168. },
  47169. },
  47170. [
  47171. {
  47172. name: "Normal",
  47173. height: math.unit(8 + 2/12, "feet"),
  47174. default: true
  47175. },
  47176. ]
  47177. ))
  47178. characterMakers.push(() => makeCharacter(
  47179. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47180. {
  47181. front: {
  47182. height: math.unit(5 + 10/12, "feet"),
  47183. weight: math.unit(160, "lb"),
  47184. name: "Front",
  47185. image: {
  47186. source: "./media/characters/pudask/front.svg",
  47187. extra: 1616/1590,
  47188. bottom: 161/1777
  47189. }
  47190. },
  47191. },
  47192. [
  47193. {
  47194. name: "Ferret Height",
  47195. height: math.unit(2 + 5/12, "feet")
  47196. },
  47197. {
  47198. name: "Canon Height",
  47199. height: math.unit(5 + 10/12, "feet"),
  47200. default: true
  47201. },
  47202. ]
  47203. ))
  47204. characterMakers.push(() => makeCharacter(
  47205. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47206. {
  47207. front: {
  47208. height: math.unit(3 + 6/12, "feet"),
  47209. weight: math.unit(60, "lb"),
  47210. name: "Front",
  47211. image: {
  47212. source: "./media/characters/ramita/front.svg",
  47213. extra: 1402/1232,
  47214. bottom: 62/1464
  47215. }
  47216. },
  47217. dressed: {
  47218. height: math.unit(3 + 6/12, "feet"),
  47219. weight: math.unit(60, "lb"),
  47220. name: "Dressed",
  47221. image: {
  47222. source: "./media/characters/ramita/dressed.svg",
  47223. extra: 1534/1249,
  47224. bottom: 50/1584
  47225. }
  47226. },
  47227. },
  47228. [
  47229. {
  47230. name: "Normal",
  47231. height: math.unit(3 + 6/12, "feet"),
  47232. default: true
  47233. },
  47234. ]
  47235. ))
  47236. characterMakers.push(() => makeCharacter(
  47237. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47238. {
  47239. front: {
  47240. height: math.unit(8, "feet"),
  47241. name: "Front",
  47242. image: {
  47243. source: "./media/characters/ark/front.svg",
  47244. extra: 772/693,
  47245. bottom: 45/817
  47246. }
  47247. },
  47248. },
  47249. [
  47250. {
  47251. name: "Normal",
  47252. height: math.unit(8, "feet"),
  47253. default: true
  47254. },
  47255. ]
  47256. ))
  47257. characterMakers.push(() => makeCharacter(
  47258. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47259. {
  47260. front: {
  47261. height: math.unit(6, "feet"),
  47262. weight: math.unit(250, "lb"),
  47263. volume: math.unit(5/8, "gallons"),
  47264. name: "Front",
  47265. image: {
  47266. source: "./media/characters/ludwig-horn/front.svg",
  47267. extra: 1782/1635,
  47268. bottom: 96/1878
  47269. }
  47270. },
  47271. back: {
  47272. height: math.unit(6, "feet"),
  47273. weight: math.unit(250, "lb"),
  47274. volume: math.unit(5/8, "gallons"),
  47275. name: "Back",
  47276. image: {
  47277. source: "./media/characters/ludwig-horn/back.svg",
  47278. extra: 1874/1729,
  47279. bottom: 27/1901
  47280. }
  47281. },
  47282. dick: {
  47283. height: math.unit(1.05, "feet"),
  47284. weight: math.unit(15, "lb"),
  47285. volume: math.unit(5/8, "gallons"),
  47286. name: "Dick",
  47287. image: {
  47288. source: "./media/characters/ludwig-horn/dick.svg"
  47289. }
  47290. },
  47291. },
  47292. [
  47293. {
  47294. name: "Small",
  47295. height: math.unit(6, "feet")
  47296. },
  47297. {
  47298. name: "Typical",
  47299. height: math.unit(12, "feet"),
  47300. default: true
  47301. },
  47302. {
  47303. name: "Building",
  47304. height: math.unit(80, "feet")
  47305. },
  47306. {
  47307. name: "Town",
  47308. height: math.unit(800, "feet")
  47309. },
  47310. {
  47311. name: "Kingdom",
  47312. height: math.unit(80000, "feet")
  47313. },
  47314. {
  47315. name: "Planet",
  47316. height: math.unit(8000000, "feet")
  47317. },
  47318. {
  47319. name: "Universe",
  47320. height: math.unit(8000000000, "feet")
  47321. },
  47322. {
  47323. name: "Transcended",
  47324. height: math.unit(8e27, "feet")
  47325. },
  47326. ]
  47327. ))
  47328. characterMakers.push(() => makeCharacter(
  47329. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47330. {
  47331. front: {
  47332. height: math.unit(5, "feet"),
  47333. weight: math.unit(50, "kg"),
  47334. name: "Front",
  47335. image: {
  47336. source: "./media/characters/biot-avery/front.svg",
  47337. extra: 1295/1232,
  47338. bottom: 86/1381
  47339. }
  47340. },
  47341. },
  47342. [
  47343. {
  47344. name: "Normal",
  47345. height: math.unit(5, "feet"),
  47346. default: true
  47347. },
  47348. ]
  47349. ))
  47350. characterMakers.push(() => makeCharacter(
  47351. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47352. {
  47353. front: {
  47354. height: math.unit(6, "feet"),
  47355. name: "Front",
  47356. image: {
  47357. source: "./media/characters/kitsune-kiro/front.svg",
  47358. extra: 1270/1158,
  47359. bottom: 42/1312
  47360. }
  47361. },
  47362. frontAlt: {
  47363. height: math.unit(6, "feet"),
  47364. name: "Front-alt",
  47365. image: {
  47366. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47367. extra: 1130/1081,
  47368. bottom: 36/1166
  47369. }
  47370. },
  47371. },
  47372. [
  47373. {
  47374. name: "Smol",
  47375. height: math.unit(3, "feet")
  47376. },
  47377. {
  47378. name: "Normal",
  47379. height: math.unit(6, "feet"),
  47380. default: true
  47381. },
  47382. ]
  47383. ))
  47384. characterMakers.push(() => makeCharacter(
  47385. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47386. {
  47387. front: {
  47388. height: math.unit(6, "feet"),
  47389. weight: math.unit(125, "lb"),
  47390. name: "Front",
  47391. image: {
  47392. source: "./media/characters/jack-thatcher/front.svg",
  47393. extra: 1474/1370,
  47394. bottom: 26/1500
  47395. }
  47396. },
  47397. back: {
  47398. height: math.unit(6, "feet"),
  47399. weight: math.unit(125, "lb"),
  47400. name: "Back",
  47401. image: {
  47402. source: "./media/characters/jack-thatcher/back.svg",
  47403. extra: 1489/1384,
  47404. bottom: 18/1507
  47405. }
  47406. },
  47407. },
  47408. [
  47409. {
  47410. name: "Normal",
  47411. height: math.unit(6, "feet"),
  47412. default: true
  47413. },
  47414. {
  47415. name: "Macro",
  47416. height: math.unit(75, "feet")
  47417. },
  47418. {
  47419. name: "Macro-er",
  47420. height: math.unit(250, "feet")
  47421. },
  47422. ]
  47423. ))
  47424. characterMakers.push(() => makeCharacter(
  47425. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47426. {
  47427. front: {
  47428. height: math.unit(7, "feet"),
  47429. weight: math.unit(110, "kg"),
  47430. name: "Front",
  47431. image: {
  47432. source: "./media/characters/max-hyper/front.svg",
  47433. extra: 1969/1881,
  47434. bottom: 49/2018
  47435. }
  47436. },
  47437. },
  47438. [
  47439. {
  47440. name: "Normal",
  47441. height: math.unit(7, "feet"),
  47442. default: true
  47443. },
  47444. ]
  47445. ))
  47446. characterMakers.push(() => makeCharacter(
  47447. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47448. {
  47449. front: {
  47450. height: math.unit(5 + 5/12, "feet"),
  47451. weight: math.unit(160, "lb"),
  47452. name: "Front",
  47453. image: {
  47454. source: "./media/characters/spook/front.svg",
  47455. extra: 794/791,
  47456. bottom: 54/848
  47457. }
  47458. },
  47459. back: {
  47460. height: math.unit(5 + 5/12, "feet"),
  47461. weight: math.unit(160, "lb"),
  47462. name: "Back",
  47463. image: {
  47464. source: "./media/characters/spook/back.svg",
  47465. extra: 812/798,
  47466. bottom: 32/844
  47467. }
  47468. },
  47469. },
  47470. [
  47471. {
  47472. name: "Normal",
  47473. height: math.unit(5 + 5/12, "feet"),
  47474. default: true
  47475. },
  47476. ]
  47477. ))
  47478. characterMakers.push(() => makeCharacter(
  47479. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47480. {
  47481. front: {
  47482. height: math.unit(18, "feet"),
  47483. name: "Front",
  47484. image: {
  47485. source: "./media/characters/xeaduulix/front.svg",
  47486. extra: 1380/1166,
  47487. bottom: 110/1490
  47488. }
  47489. },
  47490. back: {
  47491. height: math.unit(18, "feet"),
  47492. name: "Back",
  47493. image: {
  47494. source: "./media/characters/xeaduulix/back.svg",
  47495. extra: 1592/1170,
  47496. bottom: 128/1720
  47497. }
  47498. },
  47499. frontNsfw: {
  47500. height: math.unit(18, "feet"),
  47501. name: "Front (NSFW)",
  47502. image: {
  47503. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47504. extra: 1380/1166,
  47505. bottom: 110/1490
  47506. }
  47507. },
  47508. backNsfw: {
  47509. height: math.unit(18, "feet"),
  47510. name: "Back (NSFW)",
  47511. image: {
  47512. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47513. extra: 1592/1170,
  47514. bottom: 128/1720
  47515. }
  47516. },
  47517. },
  47518. [
  47519. {
  47520. name: "Normal",
  47521. height: math.unit(18, "feet"),
  47522. default: true
  47523. },
  47524. ]
  47525. ))
  47526. characterMakers.push(() => makeCharacter(
  47527. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47528. {
  47529. spreadWings: {
  47530. height: math.unit(20, "feet"),
  47531. name: "Spread Wings",
  47532. image: {
  47533. source: "./media/characters/fledge/spread-wings.svg",
  47534. extra: 693/635,
  47535. bottom: 26/719
  47536. }
  47537. },
  47538. front: {
  47539. height: math.unit(20, "feet"),
  47540. name: "Front",
  47541. image: {
  47542. source: "./media/characters/fledge/front.svg",
  47543. extra: 684/637,
  47544. bottom: 18/702
  47545. }
  47546. },
  47547. frontAlt: {
  47548. height: math.unit(20, "feet"),
  47549. name: "Front (Alt)",
  47550. image: {
  47551. source: "./media/characters/fledge/front-alt.svg",
  47552. extra: 708/664,
  47553. bottom: 13/721
  47554. }
  47555. },
  47556. back: {
  47557. height: math.unit(20, "feet"),
  47558. name: "Back",
  47559. image: {
  47560. source: "./media/characters/fledge/back.svg",
  47561. extra: 718/634,
  47562. bottom: 22/740
  47563. }
  47564. },
  47565. head: {
  47566. height: math.unit(5.55, "feet"),
  47567. name: "Head",
  47568. image: {
  47569. source: "./media/characters/fledge/head.svg"
  47570. }
  47571. },
  47572. headAlt: {
  47573. height: math.unit(5.1, "feet"),
  47574. name: "Head (Alt)",
  47575. image: {
  47576. source: "./media/characters/fledge/head-alt.svg"
  47577. }
  47578. },
  47579. },
  47580. [
  47581. {
  47582. name: "Small",
  47583. height: math.unit(6 + 2/12, "feet")
  47584. },
  47585. {
  47586. name: "Big",
  47587. height: math.unit(20, "feet"),
  47588. default: true
  47589. },
  47590. {
  47591. name: "Giant",
  47592. height: math.unit(100, "feet")
  47593. },
  47594. {
  47595. name: "Macro",
  47596. height: math.unit(200, "feet")
  47597. },
  47598. ]
  47599. ))
  47600. characterMakers.push(() => makeCharacter(
  47601. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47602. {
  47603. front: {
  47604. height: math.unit(1, "meter"),
  47605. name: "Front",
  47606. image: {
  47607. source: "./media/characters/atlas-morenai/front.svg",
  47608. extra: 1275/1043,
  47609. bottom: 19/1294
  47610. }
  47611. },
  47612. back: {
  47613. height: math.unit(1, "meter"),
  47614. name: "Back",
  47615. image: {
  47616. source: "./media/characters/atlas-morenai/back.svg",
  47617. extra: 1141/1001,
  47618. bottom: 25/1166
  47619. }
  47620. },
  47621. },
  47622. [
  47623. {
  47624. name: "Normal",
  47625. height: math.unit(1, "meter"),
  47626. default: true
  47627. },
  47628. {
  47629. name: "Magic-Infused",
  47630. height: math.unit(5, "meters")
  47631. },
  47632. ]
  47633. ))
  47634. characterMakers.push(() => makeCharacter(
  47635. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47636. {
  47637. front: {
  47638. height: math.unit(5, "meters"),
  47639. name: "Front",
  47640. image: {
  47641. source: "./media/characters/cintia/front.svg",
  47642. extra: 1312/1228,
  47643. bottom: 38/1350
  47644. }
  47645. },
  47646. back: {
  47647. height: math.unit(5, "meters"),
  47648. name: "Back",
  47649. image: {
  47650. source: "./media/characters/cintia/back.svg",
  47651. extra: 1260/1166,
  47652. bottom: 98/1358
  47653. }
  47654. },
  47655. frontDick: {
  47656. height: math.unit(5, "meters"),
  47657. name: "Front (Dick)",
  47658. image: {
  47659. source: "./media/characters/cintia/front-dick.svg",
  47660. extra: 1312/1228,
  47661. bottom: 38/1350
  47662. }
  47663. },
  47664. backDick: {
  47665. height: math.unit(5, "meters"),
  47666. name: "Back (Dick)",
  47667. image: {
  47668. source: "./media/characters/cintia/back-dick.svg",
  47669. extra: 1260/1166,
  47670. bottom: 98/1358
  47671. }
  47672. },
  47673. bust: {
  47674. height: math.unit(1.97, "meters"),
  47675. name: "Bust",
  47676. image: {
  47677. source: "./media/characters/cintia/bust.svg",
  47678. extra: 617/565,
  47679. bottom: 0/617
  47680. }
  47681. },
  47682. },
  47683. [
  47684. {
  47685. name: "Normal",
  47686. height: math.unit(5, "meters"),
  47687. default: true
  47688. },
  47689. ]
  47690. ))
  47691. characterMakers.push(() => makeCharacter(
  47692. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47693. {
  47694. side: {
  47695. height: math.unit(100, "feet"),
  47696. name: "Side",
  47697. image: {
  47698. source: "./media/characters/denora/side.svg",
  47699. extra: 875/803,
  47700. bottom: 9/884
  47701. }
  47702. },
  47703. },
  47704. [
  47705. {
  47706. name: "Standard",
  47707. height: math.unit(100, "feet"),
  47708. default: true
  47709. },
  47710. {
  47711. name: "Grand",
  47712. height: math.unit(1000, "feet")
  47713. },
  47714. {
  47715. name: "Conquering",
  47716. height: math.unit(10000, "feet")
  47717. },
  47718. ]
  47719. ))
  47720. characterMakers.push(() => makeCharacter(
  47721. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47722. {
  47723. dressed: {
  47724. height: math.unit(8 + 5/12, "feet"),
  47725. weight: math.unit(700, "lb"),
  47726. name: "Dressed",
  47727. image: {
  47728. source: "./media/characters/kiva/dressed.svg",
  47729. extra: 1102/1055,
  47730. bottom: 60/1162
  47731. }
  47732. },
  47733. nude: {
  47734. height: math.unit(8 + 5/12, "feet"),
  47735. weight: math.unit(700, "lb"),
  47736. name: "Nude",
  47737. image: {
  47738. source: "./media/characters/kiva/nude.svg",
  47739. extra: 1102/1055,
  47740. bottom: 60/1162
  47741. }
  47742. },
  47743. },
  47744. [
  47745. {
  47746. name: "Base Height",
  47747. height: math.unit(8 + 5/12, "feet"),
  47748. default: true
  47749. },
  47750. {
  47751. name: "Macro",
  47752. height: math.unit(100, "feet")
  47753. },
  47754. {
  47755. name: "Max",
  47756. height: math.unit(3280, "feet")
  47757. },
  47758. ]
  47759. ))
  47760. characterMakers.push(() => makeCharacter(
  47761. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47762. {
  47763. front: {
  47764. height: math.unit(6 + 8/12, "feet"),
  47765. weight: math.unit(250, "lb"),
  47766. name: "Front",
  47767. image: {
  47768. source: "./media/characters/ztragon/front.svg",
  47769. extra: 1825/1684,
  47770. bottom: 98/1923
  47771. }
  47772. },
  47773. },
  47774. [
  47775. {
  47776. name: "Normal",
  47777. height: math.unit(6 + 8/12, "feet"),
  47778. default: true
  47779. },
  47780. {
  47781. name: "Macro",
  47782. height: math.unit(80, "feet")
  47783. },
  47784. ]
  47785. ))
  47786. characterMakers.push(() => makeCharacter(
  47787. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47788. {
  47789. front: {
  47790. height: math.unit(10.4, "feet"),
  47791. weight: math.unit(2, "tons"),
  47792. name: "Front",
  47793. image: {
  47794. source: "./media/characters/yesenia/front.svg",
  47795. extra: 1479/1474,
  47796. bottom: 233/1712
  47797. }
  47798. },
  47799. },
  47800. [
  47801. {
  47802. name: "Normal",
  47803. height: math.unit(10.4, "feet"),
  47804. default: true
  47805. },
  47806. ]
  47807. ))
  47808. characterMakers.push(() => makeCharacter(
  47809. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47810. {
  47811. normal: {
  47812. height: math.unit(6 + 1/12, "feet"),
  47813. weight: math.unit(180, "lb"),
  47814. name: "Normal",
  47815. image: {
  47816. source: "./media/characters/leanne-lycheborne/normal.svg",
  47817. extra: 1748/1660,
  47818. bottom: 98/1846
  47819. }
  47820. },
  47821. were: {
  47822. height: math.unit(12, "feet"),
  47823. weight: math.unit(1600, "lb"),
  47824. name: "Were",
  47825. image: {
  47826. source: "./media/characters/leanne-lycheborne/were.svg",
  47827. extra: 1485/1432,
  47828. bottom: 66/1551
  47829. }
  47830. },
  47831. },
  47832. [
  47833. {
  47834. name: "Normal",
  47835. height: math.unit(6 + 1/12, "feet"),
  47836. default: true
  47837. },
  47838. ]
  47839. ))
  47840. characterMakers.push(() => makeCharacter(
  47841. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47842. {
  47843. side: {
  47844. height: math.unit(13, "feet"),
  47845. name: "Side",
  47846. image: {
  47847. source: "./media/characters/kira-tyler/side.svg",
  47848. extra: 693/393,
  47849. bottom: 58/751
  47850. }
  47851. },
  47852. },
  47853. [
  47854. {
  47855. name: "Normal",
  47856. height: math.unit(13, "feet"),
  47857. default: true
  47858. },
  47859. ]
  47860. ))
  47861. characterMakers.push(() => makeCharacter(
  47862. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47863. {
  47864. front: {
  47865. height: math.unit(10.3, "feet"),
  47866. weight: math.unit(150, "lb"),
  47867. name: "Front",
  47868. image: {
  47869. source: "./media/characters/blaze/front.svg",
  47870. extra: 1378/1286,
  47871. bottom: 172/1550
  47872. }
  47873. },
  47874. },
  47875. [
  47876. {
  47877. name: "Normal",
  47878. height: math.unit(10.3, "feet"),
  47879. default: true
  47880. },
  47881. ]
  47882. ))
  47883. characterMakers.push(() => makeCharacter(
  47884. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47885. {
  47886. side: {
  47887. height: math.unit(2, "meters"),
  47888. weight: math.unit(400, "kg"),
  47889. name: "Side",
  47890. image: {
  47891. source: "./media/characters/anu/side.svg",
  47892. extra: 506/394,
  47893. bottom: 18/524
  47894. }
  47895. },
  47896. },
  47897. [
  47898. {
  47899. name: "Humanoid",
  47900. height: math.unit(2, "meters")
  47901. },
  47902. {
  47903. name: "Normal",
  47904. height: math.unit(5, "meters"),
  47905. default: true
  47906. },
  47907. ]
  47908. ))
  47909. characterMakers.push(() => makeCharacter(
  47910. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47911. {
  47912. front: {
  47913. height: math.unit(5 + 5/12, "feet"),
  47914. weight: math.unit(170, "lb"),
  47915. name: "Front",
  47916. image: {
  47917. source: "./media/characters/synx-the-lynx/front.svg",
  47918. extra: 1893/1745,
  47919. bottom: 17/1910
  47920. }
  47921. },
  47922. side: {
  47923. height: math.unit(5 + 5/12, "feet"),
  47924. weight: math.unit(170, "lb"),
  47925. name: "Side",
  47926. image: {
  47927. source: "./media/characters/synx-the-lynx/side.svg",
  47928. extra: 1884/1740,
  47929. bottom: 39/1923
  47930. }
  47931. },
  47932. back: {
  47933. height: math.unit(5 + 5/12, "feet"),
  47934. weight: math.unit(170, "lb"),
  47935. name: "Back",
  47936. image: {
  47937. source: "./media/characters/synx-the-lynx/back.svg",
  47938. extra: 1903/1755,
  47939. bottom: 14/1917
  47940. }
  47941. },
  47942. },
  47943. [
  47944. {
  47945. name: "Normal",
  47946. height: math.unit(5 + 5/12, "feet"),
  47947. default: true
  47948. },
  47949. ]
  47950. ))
  47951. characterMakers.push(() => makeCharacter(
  47952. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47953. {
  47954. back: {
  47955. height: math.unit(15, "feet"),
  47956. name: "Back",
  47957. image: {
  47958. source: "./media/characters/nadezda-fex/back.svg",
  47959. extra: 1695/1481,
  47960. bottom: 25/1720
  47961. }
  47962. },
  47963. },
  47964. [
  47965. {
  47966. name: "Normal",
  47967. height: math.unit(15, "feet"),
  47968. default: true
  47969. },
  47970. {
  47971. name: "Macro",
  47972. height: math.unit(2.5, "miles")
  47973. },
  47974. {
  47975. name: "Goddess",
  47976. height: math.unit(2, "multiverses")
  47977. },
  47978. ]
  47979. ))
  47980. characterMakers.push(() => makeCharacter(
  47981. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47982. {
  47983. front: {
  47984. height: math.unit(216, "cm"),
  47985. name: "Front",
  47986. image: {
  47987. source: "./media/characters/lev/front.svg",
  47988. extra: 1728/1670,
  47989. bottom: 82/1810
  47990. }
  47991. },
  47992. back: {
  47993. height: math.unit(216, "cm"),
  47994. name: "Back",
  47995. image: {
  47996. source: "./media/characters/lev/back.svg",
  47997. extra: 1738/1675,
  47998. bottom: 24/1762
  47999. }
  48000. },
  48001. dressed: {
  48002. height: math.unit(216, "cm"),
  48003. name: "Dressed",
  48004. image: {
  48005. source: "./media/characters/lev/dressed.svg",
  48006. extra: 1397/1351,
  48007. bottom: 73/1470
  48008. }
  48009. },
  48010. head: {
  48011. height: math.unit(0.51, "meter"),
  48012. name: "Head",
  48013. image: {
  48014. source: "./media/characters/lev/head.svg"
  48015. }
  48016. },
  48017. },
  48018. [
  48019. {
  48020. name: "Normal",
  48021. height: math.unit(216, "cm"),
  48022. default: true
  48023. },
  48024. {
  48025. name: "Relatively Macro",
  48026. height: math.unit(80, "meters")
  48027. },
  48028. {
  48029. name: "Megamacro",
  48030. height: math.unit(21600, "meters")
  48031. },
  48032. {
  48033. name: "Megamacro+",
  48034. height: math.unit(64800, "meters")
  48035. },
  48036. ]
  48037. ))
  48038. characterMakers.push(() => makeCharacter(
  48039. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  48040. {
  48041. front: {
  48042. height: math.unit(2, "meters"),
  48043. weight: math.unit(80, "kg"),
  48044. name: "Front",
  48045. image: {
  48046. source: "./media/characters/moka/front.svg",
  48047. extra: 1337/1255,
  48048. bottom: 58/1395
  48049. }
  48050. },
  48051. },
  48052. [
  48053. {
  48054. name: "Micro",
  48055. height: math.unit(15, "cm")
  48056. },
  48057. {
  48058. name: "Normal",
  48059. height: math.unit(2, "meters"),
  48060. default: true
  48061. },
  48062. {
  48063. name: "Macro",
  48064. height: math.unit(20, "meters"),
  48065. },
  48066. ]
  48067. ))
  48068. characterMakers.push(() => makeCharacter(
  48069. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  48070. {
  48071. front: {
  48072. height: math.unit(9, "feet"),
  48073. weight: math.unit(240, "lb"),
  48074. name: "Front",
  48075. image: {
  48076. source: "./media/characters/kuzco/front.svg",
  48077. extra: 1593/1487,
  48078. bottom: 32/1625
  48079. }
  48080. },
  48081. side: {
  48082. height: math.unit(9, "feet"),
  48083. weight: math.unit(240, "lb"),
  48084. name: "Side",
  48085. image: {
  48086. source: "./media/characters/kuzco/side.svg",
  48087. extra: 1575/1485,
  48088. bottom: 30/1605
  48089. }
  48090. },
  48091. back: {
  48092. height: math.unit(9, "feet"),
  48093. weight: math.unit(240, "lb"),
  48094. name: "Back",
  48095. image: {
  48096. source: "./media/characters/kuzco/back.svg",
  48097. extra: 1603/1514,
  48098. bottom: 14/1617
  48099. }
  48100. },
  48101. },
  48102. [
  48103. {
  48104. name: "Normal",
  48105. height: math.unit(9, "feet"),
  48106. default: true
  48107. },
  48108. ]
  48109. ))
  48110. characterMakers.push(() => makeCharacter(
  48111. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48112. {
  48113. side: {
  48114. height: math.unit(2, "meters"),
  48115. weight: math.unit(300, "kg"),
  48116. name: "Side",
  48117. image: {
  48118. source: "./media/characters/ceruleus/side.svg",
  48119. extra: 1068/974,
  48120. bottom: 126/1194
  48121. }
  48122. },
  48123. maw: {
  48124. height: math.unit(0.8125, "meter"),
  48125. name: "Maw",
  48126. image: {
  48127. source: "./media/characters/ceruleus/maw.svg"
  48128. }
  48129. },
  48130. },
  48131. [
  48132. {
  48133. name: "Normal",
  48134. height: math.unit(16, "meters"),
  48135. default: true
  48136. },
  48137. ]
  48138. ))
  48139. characterMakers.push(() => makeCharacter(
  48140. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48141. {
  48142. front: {
  48143. height: math.unit(9, "feet"),
  48144. weight: math.unit(500, "kg"),
  48145. name: "Front",
  48146. image: {
  48147. source: "./media/characters/acouya/front.svg",
  48148. extra: 1660/1473,
  48149. bottom: 28/1688
  48150. }
  48151. },
  48152. },
  48153. [
  48154. {
  48155. name: "Normal",
  48156. height: math.unit(9, "feet"),
  48157. default: true
  48158. },
  48159. ]
  48160. ))
  48161. characterMakers.push(() => makeCharacter(
  48162. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48163. {
  48164. front: {
  48165. height: math.unit(5 + 6/12, "feet"),
  48166. weight: math.unit(195, "lb"),
  48167. name: "Front",
  48168. image: {
  48169. source: "./media/characters/vant/front.svg",
  48170. extra: 1396/1320,
  48171. bottom: 20/1416
  48172. }
  48173. },
  48174. back: {
  48175. height: math.unit(5 + 6/12, "feet"),
  48176. weight: math.unit(195, "lb"),
  48177. name: "Back",
  48178. image: {
  48179. source: "./media/characters/vant/back.svg",
  48180. extra: 1396/1320,
  48181. bottom: 20/1416
  48182. }
  48183. },
  48184. maw: {
  48185. height: math.unit(0.75, "feet"),
  48186. name: "Maw",
  48187. image: {
  48188. source: "./media/characters/vant/maw.svg"
  48189. }
  48190. },
  48191. paw: {
  48192. height: math.unit(1.07, "feet"),
  48193. name: "Paw",
  48194. image: {
  48195. source: "./media/characters/vant/paw.svg"
  48196. }
  48197. },
  48198. },
  48199. [
  48200. {
  48201. name: "Micro",
  48202. height: math.unit(0.25, "inches")
  48203. },
  48204. {
  48205. name: "Normal",
  48206. height: math.unit(5 + 6/12, "feet"),
  48207. default: true
  48208. },
  48209. {
  48210. name: "Macro",
  48211. height: math.unit(75, "feet")
  48212. },
  48213. ]
  48214. ))
  48215. characterMakers.push(() => makeCharacter(
  48216. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48217. {
  48218. front: {
  48219. height: math.unit(30, "meters"),
  48220. weight: math.unit(363, "tons"),
  48221. name: "Front",
  48222. image: {
  48223. source: "./media/characters/ahra/front.svg",
  48224. extra: 1914/1814,
  48225. bottom: 46/1960
  48226. }
  48227. },
  48228. },
  48229. [
  48230. {
  48231. name: "Macro",
  48232. height: math.unit(30, "meters"),
  48233. default: true
  48234. },
  48235. ]
  48236. ))
  48237. characterMakers.push(() => makeCharacter(
  48238. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48239. {
  48240. undressed: {
  48241. height: math.unit(2, "m"),
  48242. weight: math.unit(250, "kg"),
  48243. name: "Undressed",
  48244. image: {
  48245. source: "./media/characters/coriander/undressed.svg",
  48246. extra: 1757/1606,
  48247. bottom: 107/1864
  48248. }
  48249. },
  48250. dressed: {
  48251. height: math.unit(2, "m"),
  48252. weight: math.unit(250, "kg"),
  48253. name: "Dressed",
  48254. image: {
  48255. source: "./media/characters/coriander/dressed.svg",
  48256. extra: 1757/1606,
  48257. bottom: 107/1864
  48258. }
  48259. },
  48260. },
  48261. [
  48262. {
  48263. name: "Normal",
  48264. height: math.unit(4, "meters"),
  48265. default: true
  48266. },
  48267. {
  48268. name: "XL",
  48269. height: math.unit(6, "meters")
  48270. },
  48271. {
  48272. name: "XXL",
  48273. height: math.unit(8, "meters")
  48274. },
  48275. ]
  48276. ))
  48277. characterMakers.push(() => makeCharacter(
  48278. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48279. {
  48280. front: {
  48281. height: math.unit(6, "feet"),
  48282. name: "Front",
  48283. image: {
  48284. source: "./media/characters/syrinx/front.svg",
  48285. extra: 1557/1259,
  48286. bottom: 171/1728
  48287. }
  48288. },
  48289. },
  48290. [
  48291. {
  48292. name: "Normal",
  48293. height: math.unit(6 + 3/12, "feet"),
  48294. default: true
  48295. },
  48296. ]
  48297. ))
  48298. characterMakers.push(() => makeCharacter(
  48299. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48300. {
  48301. front: {
  48302. height: math.unit(11 + 6/12, "feet"),
  48303. weight: math.unit(1.5, "tons"),
  48304. name: "Front",
  48305. image: {
  48306. source: "./media/characters/bor/front.svg",
  48307. extra: 1189/1109,
  48308. bottom: 170/1359
  48309. }
  48310. },
  48311. },
  48312. [
  48313. {
  48314. name: "Normal",
  48315. height: math.unit(11 + 6/12, "feet"),
  48316. default: true
  48317. },
  48318. {
  48319. name: "Macro",
  48320. height: math.unit(32 + 9/12, "feet")
  48321. },
  48322. ]
  48323. ))
  48324. characterMakers.push(() => makeCharacter(
  48325. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48326. {
  48327. anthro: {
  48328. height: math.unit(9, "feet"),
  48329. weight: math.unit(2076, "lb"),
  48330. name: "Anthro",
  48331. image: {
  48332. source: "./media/characters/abacus/anthro.svg",
  48333. extra: 1540/1494,
  48334. bottom: 233/1773
  48335. }
  48336. },
  48337. pigeon: {
  48338. height: math.unit(1, "feet"),
  48339. name: "Pigeon",
  48340. image: {
  48341. source: "./media/characters/abacus/pigeon.svg",
  48342. extra: 528/525,
  48343. bottom: 46/574
  48344. }
  48345. },
  48346. },
  48347. [
  48348. {
  48349. name: "Normal",
  48350. height: math.unit(9, "feet"),
  48351. default: true
  48352. },
  48353. ]
  48354. ))
  48355. characterMakers.push(() => makeCharacter(
  48356. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48357. {
  48358. side: {
  48359. height: math.unit(6, "feet"),
  48360. name: "Side",
  48361. image: {
  48362. source: "./media/characters/delkhan/side.svg",
  48363. extra: 1884/1786,
  48364. bottom: 308/2192
  48365. }
  48366. },
  48367. head: {
  48368. height: math.unit(3.38, "feet"),
  48369. name: "Head",
  48370. image: {
  48371. source: "./media/characters/delkhan/head.svg"
  48372. }
  48373. },
  48374. },
  48375. [
  48376. {
  48377. name: "Normal",
  48378. height: math.unit(72, "feet"),
  48379. default: true
  48380. },
  48381. {
  48382. name: "Giant",
  48383. height: math.unit(172, "feet")
  48384. },
  48385. ]
  48386. ))
  48387. characterMakers.push(() => makeCharacter(
  48388. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48389. {
  48390. standing: {
  48391. height: math.unit(6, "feet"),
  48392. name: "Standing",
  48393. image: {
  48394. source: "./media/characters/euchidat/standing.svg",
  48395. extra: 1612/1553,
  48396. bottom: 116/1728
  48397. }
  48398. },
  48399. leaning: {
  48400. height: math.unit(6, "feet"),
  48401. name: "Leaning",
  48402. image: {
  48403. source: "./media/characters/euchidat/leaning.svg",
  48404. extra: 1719/1674,
  48405. bottom: 27/1746
  48406. }
  48407. },
  48408. },
  48409. [
  48410. {
  48411. name: "Normal",
  48412. height: math.unit(175, "feet"),
  48413. default: true
  48414. },
  48415. {
  48416. name: "Megamacro",
  48417. height: math.unit(190, "miles")
  48418. },
  48419. {
  48420. name: "Gigamacro",
  48421. height: math.unit(190000, "miles")
  48422. },
  48423. ]
  48424. ))
  48425. characterMakers.push(() => makeCharacter(
  48426. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48427. {
  48428. front: {
  48429. height: math.unit(6, "feet"),
  48430. weight: math.unit(150, "lb"),
  48431. name: "Front",
  48432. image: {
  48433. source: "./media/characters/rebecca-stack/front.svg",
  48434. extra: 1256/1201,
  48435. bottom: 18/1274
  48436. }
  48437. },
  48438. },
  48439. [
  48440. {
  48441. name: "Normal",
  48442. height: math.unit(5 + 8/12, "feet"),
  48443. default: true
  48444. },
  48445. {
  48446. name: "Demolitionist",
  48447. height: math.unit(200, "feet")
  48448. },
  48449. {
  48450. name: "Out of Control",
  48451. height: math.unit(2, "miles")
  48452. },
  48453. {
  48454. name: "Giga",
  48455. height: math.unit(7200, "miles")
  48456. },
  48457. ]
  48458. ))
  48459. characterMakers.push(() => makeCharacter(
  48460. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48461. {
  48462. front: {
  48463. height: math.unit(6, "feet"),
  48464. weight: math.unit(150, "lb"),
  48465. name: "Front",
  48466. image: {
  48467. source: "./media/characters/jenny-cartwright/front.svg",
  48468. extra: 1384/1376,
  48469. bottom: 58/1442
  48470. }
  48471. },
  48472. },
  48473. [
  48474. {
  48475. name: "Normal",
  48476. height: math.unit(6 + 7/12, "feet"),
  48477. default: true
  48478. },
  48479. {
  48480. name: "Librarian",
  48481. height: math.unit(55, "feet")
  48482. },
  48483. {
  48484. name: "Sightseer",
  48485. height: math.unit(50, "miles")
  48486. },
  48487. {
  48488. name: "Giga",
  48489. height: math.unit(30000, "miles")
  48490. },
  48491. ]
  48492. ))
  48493. characterMakers.push(() => makeCharacter(
  48494. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48495. {
  48496. nude: {
  48497. height: math.unit(8, "feet"),
  48498. weight: math.unit(225, "lb"),
  48499. name: "Nude",
  48500. image: {
  48501. source: "./media/characters/marvy/nude.svg",
  48502. extra: 1900/1683,
  48503. bottom: 89/1989
  48504. }
  48505. },
  48506. dressed: {
  48507. height: math.unit(8, "feet"),
  48508. weight: math.unit(225, "lb"),
  48509. name: "Dressed",
  48510. image: {
  48511. source: "./media/characters/marvy/dressed.svg",
  48512. extra: 1900/1683,
  48513. bottom: 89/1989
  48514. }
  48515. },
  48516. head: {
  48517. height: math.unit(2.85, "feet"),
  48518. name: "Head",
  48519. image: {
  48520. source: "./media/characters/marvy/head.svg"
  48521. }
  48522. },
  48523. },
  48524. [
  48525. {
  48526. name: "Normal",
  48527. height: math.unit(8, "feet"),
  48528. default: true
  48529. },
  48530. ]
  48531. ))
  48532. characterMakers.push(() => makeCharacter(
  48533. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48534. {
  48535. front: {
  48536. height: math.unit(8, "feet"),
  48537. weight: math.unit(250, "lb"),
  48538. name: "Front",
  48539. image: {
  48540. source: "./media/characters/leah/front.svg",
  48541. extra: 1257/1149,
  48542. bottom: 109/1366
  48543. }
  48544. },
  48545. },
  48546. [
  48547. {
  48548. name: "Normal",
  48549. height: math.unit(8, "feet"),
  48550. default: true
  48551. },
  48552. {
  48553. name: "Minimacro",
  48554. height: math.unit(40, "feet")
  48555. },
  48556. {
  48557. name: "Macro",
  48558. height: math.unit(124, "feet")
  48559. },
  48560. {
  48561. name: "Megamacro",
  48562. height: math.unit(850, "feet")
  48563. },
  48564. ]
  48565. ))
  48566. characterMakers.push(() => makeCharacter(
  48567. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48568. {
  48569. side: {
  48570. height: math.unit(13 + 6/12, "feet"),
  48571. weight: math.unit(3200, "lb"),
  48572. name: "Side",
  48573. image: {
  48574. source: "./media/characters/alvir/side.svg",
  48575. extra: 896/589,
  48576. bottom: 26/922
  48577. }
  48578. },
  48579. },
  48580. [
  48581. {
  48582. name: "Normal",
  48583. height: math.unit(13 + 6/12, "feet"),
  48584. default: true
  48585. },
  48586. ]
  48587. ))
  48588. characterMakers.push(() => makeCharacter(
  48589. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48590. {
  48591. front: {
  48592. height: math.unit(5 + 4/12, "feet"),
  48593. weight: math.unit(236, "lb"),
  48594. name: "Front",
  48595. image: {
  48596. source: "./media/characters/zaina-khalil/front.svg",
  48597. extra: 1533/1485,
  48598. bottom: 94/1627
  48599. }
  48600. },
  48601. side: {
  48602. height: math.unit(5 + 4/12, "feet"),
  48603. weight: math.unit(236, "lb"),
  48604. name: "Side",
  48605. image: {
  48606. source: "./media/characters/zaina-khalil/side.svg",
  48607. extra: 1537/1498,
  48608. bottom: 66/1603
  48609. }
  48610. },
  48611. back: {
  48612. height: math.unit(5 + 4/12, "feet"),
  48613. weight: math.unit(236, "lb"),
  48614. name: "Back",
  48615. image: {
  48616. source: "./media/characters/zaina-khalil/back.svg",
  48617. extra: 1546/1494,
  48618. bottom: 89/1635
  48619. }
  48620. },
  48621. },
  48622. [
  48623. {
  48624. name: "Normal",
  48625. height: math.unit(5 + 4/12, "feet"),
  48626. default: true
  48627. },
  48628. ]
  48629. ))
  48630. characterMakers.push(() => makeCharacter(
  48631. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48632. {
  48633. side: {
  48634. height: math.unit(12, "feet"),
  48635. weight: math.unit(4000, "lb"),
  48636. name: "Side",
  48637. image: {
  48638. source: "./media/characters/terry/side.svg",
  48639. extra: 1518/1439,
  48640. bottom: 149/1667
  48641. }
  48642. },
  48643. },
  48644. [
  48645. {
  48646. name: "Normal",
  48647. height: math.unit(12, "feet"),
  48648. default: true
  48649. },
  48650. ]
  48651. ))
  48652. characterMakers.push(() => makeCharacter(
  48653. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48654. {
  48655. front: {
  48656. height: math.unit(12, "feet"),
  48657. weight: math.unit(1500, "lb"),
  48658. name: "Front",
  48659. image: {
  48660. source: "./media/characters/kahea/front.svg",
  48661. extra: 1722/1617,
  48662. bottom: 179/1901
  48663. }
  48664. },
  48665. },
  48666. [
  48667. {
  48668. name: "Normal",
  48669. height: math.unit(12, "feet"),
  48670. default: true
  48671. },
  48672. ]
  48673. ))
  48674. characterMakers.push(() => makeCharacter(
  48675. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48676. {
  48677. demonFront: {
  48678. height: math.unit(36, "feet"),
  48679. name: "Front",
  48680. image: {
  48681. source: "./media/characters/alex-xuria/demon-front.svg",
  48682. extra: 1705/1673,
  48683. bottom: 198/1903
  48684. },
  48685. form: "demon",
  48686. default: true
  48687. },
  48688. demonBack: {
  48689. height: math.unit(36, "feet"),
  48690. name: "Back",
  48691. image: {
  48692. source: "./media/characters/alex-xuria/demon-back.svg",
  48693. extra: 1725/1693,
  48694. bottom: 70/1795
  48695. },
  48696. form: "demon"
  48697. },
  48698. demonHead: {
  48699. height: math.unit(2.14, "meters"),
  48700. name: "Head",
  48701. image: {
  48702. source: "./media/characters/alex-xuria/demon-head.svg"
  48703. },
  48704. form: "demon"
  48705. },
  48706. demonHand: {
  48707. height: math.unit(1.61, "meters"),
  48708. name: "Hand",
  48709. image: {
  48710. source: "./media/characters/alex-xuria/demon-hand.svg"
  48711. },
  48712. form: "demon"
  48713. },
  48714. demonPaw: {
  48715. height: math.unit(1.35, "meters"),
  48716. name: "Paw",
  48717. image: {
  48718. source: "./media/characters/alex-xuria/demon-paw.svg"
  48719. },
  48720. form: "demon"
  48721. },
  48722. demonFoot: {
  48723. height: math.unit(2.2, "meters"),
  48724. name: "Foot",
  48725. image: {
  48726. source: "./media/characters/alex-xuria/demon-foot.svg"
  48727. },
  48728. form: "demon"
  48729. },
  48730. demonCock: {
  48731. height: math.unit(1.74, "meters"),
  48732. name: "Cock",
  48733. image: {
  48734. source: "./media/characters/alex-xuria/demon-cock.svg"
  48735. },
  48736. form: "demon"
  48737. },
  48738. demonTailClosed: {
  48739. height: math.unit(1.47, "meters"),
  48740. name: "Tail (Closed)",
  48741. image: {
  48742. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48743. },
  48744. form: "demon"
  48745. },
  48746. demonTailOpen: {
  48747. height: math.unit(2.85, "meters"),
  48748. name: "Tail (Open)",
  48749. image: {
  48750. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48751. },
  48752. form: "demon"
  48753. },
  48754. incubusFront: {
  48755. height: math.unit(12, "feet"),
  48756. name: "Front",
  48757. image: {
  48758. source: "./media/characters/alex-xuria/incubus-front.svg",
  48759. extra: 1754/1677,
  48760. bottom: 125/1879
  48761. },
  48762. form: "incubus",
  48763. default: true
  48764. },
  48765. incubusBack: {
  48766. height: math.unit(12, "feet"),
  48767. name: "Back",
  48768. image: {
  48769. source: "./media/characters/alex-xuria/incubus-back.svg",
  48770. extra: 1702/1647,
  48771. bottom: 30/1732
  48772. },
  48773. form: "incubus"
  48774. },
  48775. incubusHead: {
  48776. height: math.unit(3.45, "feet"),
  48777. name: "Head",
  48778. image: {
  48779. source: "./media/characters/alex-xuria/incubus-head.svg"
  48780. },
  48781. form: "incubus"
  48782. },
  48783. rabbitFront: {
  48784. height: math.unit(6, "feet"),
  48785. name: "Front",
  48786. image: {
  48787. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48788. extra: 1369/1349,
  48789. bottom: 45/1414
  48790. },
  48791. form: "rabbit",
  48792. default: true
  48793. },
  48794. rabbitSide: {
  48795. height: math.unit(6, "feet"),
  48796. name: "Side",
  48797. image: {
  48798. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48799. extra: 1370/1356,
  48800. bottom: 37/1407
  48801. },
  48802. form: "rabbit"
  48803. },
  48804. rabbitBack: {
  48805. height: math.unit(6, "feet"),
  48806. name: "Back",
  48807. image: {
  48808. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48809. extra: 1375/1358,
  48810. bottom: 43/1418
  48811. },
  48812. form: "rabbit"
  48813. },
  48814. },
  48815. [
  48816. {
  48817. name: "Normal",
  48818. height: math.unit(6, "feet"),
  48819. default: true,
  48820. form: "rabbit"
  48821. },
  48822. {
  48823. name: "Incubus",
  48824. height: math.unit(12, "feet"),
  48825. default: true,
  48826. form: "incubus"
  48827. },
  48828. {
  48829. name: "Demon",
  48830. height: math.unit(36, "feet"),
  48831. default: true,
  48832. form: "demon"
  48833. }
  48834. ],
  48835. {
  48836. "demon": {
  48837. name: "Demon",
  48838. default: true
  48839. },
  48840. "incubus": {
  48841. name: "Incubus",
  48842. },
  48843. "rabbit": {
  48844. name: "Rabbit"
  48845. }
  48846. }
  48847. ))
  48848. characterMakers.push(() => makeCharacter(
  48849. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48850. {
  48851. front: {
  48852. height: math.unit(7 + 5/12, "feet"),
  48853. weight: math.unit(510, "lb"),
  48854. name: "Front",
  48855. image: {
  48856. source: "./media/characters/syrup/front.svg",
  48857. extra: 932/916,
  48858. bottom: 26/958
  48859. }
  48860. },
  48861. },
  48862. [
  48863. {
  48864. name: "Normal",
  48865. height: math.unit(7 + 5/12, "feet"),
  48866. default: true
  48867. },
  48868. {
  48869. name: "Big",
  48870. height: math.unit(50, "feet")
  48871. },
  48872. {
  48873. name: "Macro",
  48874. height: math.unit(300, "feet")
  48875. },
  48876. {
  48877. name: "Megamacro",
  48878. height: math.unit(1, "mile")
  48879. },
  48880. ]
  48881. ))
  48882. characterMakers.push(() => makeCharacter(
  48883. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48884. {
  48885. front: {
  48886. height: math.unit(6 + 9/12, "feet"),
  48887. name: "Front",
  48888. image: {
  48889. source: "./media/characters/zeimne/front.svg",
  48890. extra: 1969/1806,
  48891. bottom: 53/2022
  48892. }
  48893. },
  48894. },
  48895. [
  48896. {
  48897. name: "Normal",
  48898. height: math.unit(6 + 9/12, "feet"),
  48899. default: true
  48900. },
  48901. {
  48902. name: "Giant",
  48903. height: math.unit(550, "feet")
  48904. },
  48905. {
  48906. name: "Mega",
  48907. height: math.unit(3, "miles")
  48908. },
  48909. {
  48910. name: "Giga",
  48911. height: math.unit(250, "miles")
  48912. },
  48913. {
  48914. name: "Tera",
  48915. height: math.unit(1, "AU")
  48916. },
  48917. ]
  48918. ))
  48919. characterMakers.push(() => makeCharacter(
  48920. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48921. {
  48922. front: {
  48923. height: math.unit(5 + 2/12, "feet"),
  48924. name: "Front",
  48925. image: {
  48926. source: "./media/characters/grar/front.svg",
  48927. extra: 1331/1119,
  48928. bottom: 60/1391
  48929. }
  48930. },
  48931. back: {
  48932. height: math.unit(5 + 2/12, "feet"),
  48933. name: "Back",
  48934. image: {
  48935. source: "./media/characters/grar/back.svg",
  48936. extra: 1385/1169,
  48937. bottom: 23/1408
  48938. }
  48939. },
  48940. },
  48941. [
  48942. {
  48943. name: "Normal",
  48944. height: math.unit(5 + 2/12, "feet"),
  48945. default: true
  48946. },
  48947. ]
  48948. ))
  48949. characterMakers.push(() => makeCharacter(
  48950. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48951. {
  48952. front: {
  48953. height: math.unit(13 + 7/12, "feet"),
  48954. weight: math.unit(2200, "lb"),
  48955. name: "Front",
  48956. image: {
  48957. source: "./media/characters/endraya/front.svg",
  48958. extra: 1289/1215,
  48959. bottom: 50/1339
  48960. }
  48961. },
  48962. nude: {
  48963. height: math.unit(13 + 7/12, "feet"),
  48964. weight: math.unit(2200, "lb"),
  48965. name: "Nude",
  48966. image: {
  48967. source: "./media/characters/endraya/nude.svg",
  48968. extra: 1247/1171,
  48969. bottom: 40/1287
  48970. }
  48971. },
  48972. head: {
  48973. height: math.unit(2.6, "feet"),
  48974. name: "Head",
  48975. image: {
  48976. source: "./media/characters/endraya/head.svg"
  48977. }
  48978. },
  48979. slit: {
  48980. height: math.unit(3.4, "feet"),
  48981. name: "Slit",
  48982. image: {
  48983. source: "./media/characters/endraya/slit.svg"
  48984. }
  48985. },
  48986. },
  48987. [
  48988. {
  48989. name: "Normal",
  48990. height: math.unit(13 + 7/12, "feet"),
  48991. default: true
  48992. },
  48993. {
  48994. name: "Macro",
  48995. height: math.unit(200, "feet")
  48996. },
  48997. ]
  48998. ))
  48999. characterMakers.push(() => makeCharacter(
  49000. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  49001. {
  49002. front: {
  49003. height: math.unit(1.81, "meters"),
  49004. weight: math.unit(69, "kg"),
  49005. name: "Front",
  49006. image: {
  49007. source: "./media/characters/rodryana/front.svg",
  49008. extra: 2002/1921,
  49009. bottom: 53/2055
  49010. }
  49011. },
  49012. back: {
  49013. height: math.unit(1.81, "meters"),
  49014. weight: math.unit(69, "kg"),
  49015. name: "Back",
  49016. image: {
  49017. source: "./media/characters/rodryana/back.svg",
  49018. extra: 1993/1926,
  49019. bottom: 48/2041
  49020. }
  49021. },
  49022. maw: {
  49023. height: math.unit(0.19769417475, "meters"),
  49024. name: "Maw",
  49025. image: {
  49026. source: "./media/characters/rodryana/maw.svg"
  49027. }
  49028. },
  49029. slit: {
  49030. height: math.unit(0.31631067961, "meters"),
  49031. name: "Slit",
  49032. image: {
  49033. source: "./media/characters/rodryana/slit.svg"
  49034. }
  49035. },
  49036. },
  49037. [
  49038. {
  49039. name: "Normal",
  49040. height: math.unit(1.81, "meters")
  49041. },
  49042. {
  49043. name: "Mini Macro",
  49044. height: math.unit(181, "meters")
  49045. },
  49046. {
  49047. name: "Macro",
  49048. height: math.unit(452, "meters"),
  49049. default: true
  49050. },
  49051. {
  49052. name: "Mega Macro",
  49053. height: math.unit(1.375, "km")
  49054. },
  49055. {
  49056. name: "Giga Macro",
  49057. height: math.unit(13.575, "km")
  49058. },
  49059. ]
  49060. ))
  49061. characterMakers.push(() => makeCharacter(
  49062. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  49063. {
  49064. front: {
  49065. height: math.unit(6, "feet"),
  49066. weight: math.unit(1000, "lb"),
  49067. name: "Front",
  49068. image: {
  49069. source: "./media/characters/asaya/front.svg",
  49070. extra: 1460/1200,
  49071. bottom: 71/1531
  49072. }
  49073. },
  49074. },
  49075. [
  49076. {
  49077. name: "Normal",
  49078. height: math.unit(8, "km"),
  49079. default: true
  49080. },
  49081. ]
  49082. ))
  49083. characterMakers.push(() => makeCharacter(
  49084. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  49085. {
  49086. front: {
  49087. height: math.unit(3.5, "meters"),
  49088. name: "Front",
  49089. image: {
  49090. source: "./media/characters/sarzu-and-israz/front.svg",
  49091. extra: 1570/1558,
  49092. bottom: 150/1720
  49093. },
  49094. },
  49095. back: {
  49096. height: math.unit(3.5, "meters"),
  49097. name: "Back",
  49098. image: {
  49099. source: "./media/characters/sarzu-and-israz/back.svg",
  49100. extra: 1523/1509,
  49101. bottom: 132/1655
  49102. },
  49103. },
  49104. frontFemale: {
  49105. height: math.unit(3.5, "meters"),
  49106. name: "Front (Female)",
  49107. image: {
  49108. source: "./media/characters/sarzu-and-israz/front-female.svg",
  49109. extra: 1570/1558,
  49110. bottom: 150/1720
  49111. },
  49112. },
  49113. frontHerm: {
  49114. height: math.unit(3.5, "meters"),
  49115. name: "Front (Herm)",
  49116. image: {
  49117. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49118. extra: 1570/1558,
  49119. bottom: 150/1720
  49120. },
  49121. },
  49122. },
  49123. [
  49124. {
  49125. name: "Normal",
  49126. height: math.unit(3.5, "meters"),
  49127. default: true,
  49128. },
  49129. {
  49130. name: "Macro",
  49131. height: math.unit(65.5, "meters"),
  49132. },
  49133. ],
  49134. ))
  49135. characterMakers.push(() => makeCharacter(
  49136. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49137. {
  49138. front: {
  49139. height: math.unit(6, "feet"),
  49140. weight: math.unit(250, "lb"),
  49141. name: "Front",
  49142. image: {
  49143. source: "./media/characters/zenimma/front.svg",
  49144. extra: 1346/1320,
  49145. bottom: 58/1404
  49146. }
  49147. },
  49148. back: {
  49149. height: math.unit(6, "feet"),
  49150. weight: math.unit(250, "lb"),
  49151. name: "Back",
  49152. image: {
  49153. source: "./media/characters/zenimma/back.svg",
  49154. extra: 1324/1308,
  49155. bottom: 44/1368
  49156. }
  49157. },
  49158. dick: {
  49159. height: math.unit(1.44, "feet"),
  49160. name: "Dick",
  49161. image: {
  49162. source: "./media/characters/zenimma/dick.svg"
  49163. }
  49164. },
  49165. },
  49166. [
  49167. {
  49168. name: "Canon Height",
  49169. height: math.unit(66, "miles"),
  49170. default: true
  49171. },
  49172. ]
  49173. ))
  49174. characterMakers.push(() => makeCharacter(
  49175. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49176. {
  49177. nude: {
  49178. height: math.unit(6, "feet"),
  49179. weight: math.unit(150, "lb"),
  49180. name: "Nude",
  49181. image: {
  49182. source: "./media/characters/shavon/nude.svg",
  49183. extra: 1242/1096,
  49184. bottom: 98/1340
  49185. }
  49186. },
  49187. dressed: {
  49188. height: math.unit(6, "feet"),
  49189. weight: math.unit(150, "lb"),
  49190. name: "Dressed",
  49191. image: {
  49192. source: "./media/characters/shavon/dressed.svg",
  49193. extra: 1242/1096,
  49194. bottom: 98/1340
  49195. }
  49196. },
  49197. },
  49198. [
  49199. {
  49200. name: "Macro",
  49201. height: math.unit(255, "feet"),
  49202. default: true
  49203. },
  49204. ]
  49205. ))
  49206. characterMakers.push(() => makeCharacter(
  49207. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49208. {
  49209. front: {
  49210. height: math.unit(6, "feet"),
  49211. name: "Front",
  49212. image: {
  49213. source: "./media/characters/steph/front.svg",
  49214. extra: 1430/1330,
  49215. bottom: 54/1484
  49216. }
  49217. },
  49218. },
  49219. [
  49220. {
  49221. name: "Normal",
  49222. height: math.unit(6, "feet"),
  49223. default: true
  49224. },
  49225. ]
  49226. ))
  49227. characterMakers.push(() => makeCharacter(
  49228. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49229. {
  49230. front: {
  49231. height: math.unit(9, "feet"),
  49232. weight: math.unit(400, "lb"),
  49233. name: "Front",
  49234. image: {
  49235. source: "./media/characters/kil'aman/front.svg",
  49236. extra: 1210/1159,
  49237. bottom: 109/1319
  49238. }
  49239. },
  49240. head: {
  49241. height: math.unit(2.14, "feet"),
  49242. name: "Head",
  49243. image: {
  49244. source: "./media/characters/kil'aman/head.svg"
  49245. }
  49246. },
  49247. maw: {
  49248. height: math.unit(1.21, "feet"),
  49249. name: "Maw",
  49250. image: {
  49251. source: "./media/characters/kil'aman/maw.svg"
  49252. }
  49253. },
  49254. foot: {
  49255. height: math.unit(1.7, "feet"),
  49256. name: "Foot",
  49257. image: {
  49258. source: "./media/characters/kil'aman/foot.svg"
  49259. }
  49260. },
  49261. dick: {
  49262. height: math.unit(2.1, "feet"),
  49263. name: "Dick",
  49264. image: {
  49265. source: "./media/characters/kil'aman/dick.svg"
  49266. }
  49267. },
  49268. },
  49269. [
  49270. {
  49271. name: "Normal",
  49272. height: math.unit(9, "feet")
  49273. },
  49274. {
  49275. name: "Canon Height",
  49276. height: math.unit(10, "miles"),
  49277. default: true
  49278. },
  49279. {
  49280. name: "Maximum",
  49281. height: math.unit(6e9, "miles")
  49282. },
  49283. ]
  49284. ))
  49285. characterMakers.push(() => makeCharacter(
  49286. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49287. {
  49288. front: {
  49289. height: math.unit(90, "feet"),
  49290. weight: math.unit(675000, "lb"),
  49291. name: "Front",
  49292. image: {
  49293. source: "./media/characters/qadan/front.svg",
  49294. extra: 1012/1004,
  49295. bottom: 78/1090
  49296. }
  49297. },
  49298. back: {
  49299. height: math.unit(90, "feet"),
  49300. weight: math.unit(675000, "lb"),
  49301. name: "Back",
  49302. image: {
  49303. source: "./media/characters/qadan/back.svg",
  49304. extra: 1042/1031,
  49305. bottom: 55/1097
  49306. }
  49307. },
  49308. armored: {
  49309. height: math.unit(90, "feet"),
  49310. weight: math.unit(675000, "lb"),
  49311. name: "Armored",
  49312. image: {
  49313. source: "./media/characters/qadan/armored.svg",
  49314. extra: 1047/1037,
  49315. bottom: 48/1095
  49316. }
  49317. },
  49318. },
  49319. [
  49320. {
  49321. name: "Normal",
  49322. height: math.unit(90, "feet"),
  49323. default: true
  49324. },
  49325. ]
  49326. ))
  49327. characterMakers.push(() => makeCharacter(
  49328. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49329. {
  49330. front: {
  49331. height: math.unit(6, "feet"),
  49332. weight: math.unit(225, "lb"),
  49333. name: "Front",
  49334. image: {
  49335. source: "./media/characters/brooke/front.svg",
  49336. extra: 1050/1010,
  49337. bottom: 66/1116
  49338. }
  49339. },
  49340. back: {
  49341. height: math.unit(6, "feet"),
  49342. weight: math.unit(225, "lb"),
  49343. name: "Back",
  49344. image: {
  49345. source: "./media/characters/brooke/back.svg",
  49346. extra: 1053/1013,
  49347. bottom: 41/1094
  49348. }
  49349. },
  49350. dressed: {
  49351. height: math.unit(6, "feet"),
  49352. weight: math.unit(225, "lb"),
  49353. name: "Dressed",
  49354. image: {
  49355. source: "./media/characters/brooke/dressed.svg",
  49356. extra: 1050/1010,
  49357. bottom: 66/1116
  49358. }
  49359. },
  49360. },
  49361. [
  49362. {
  49363. name: "Canon Height",
  49364. height: math.unit(500, "miles"),
  49365. default: true
  49366. },
  49367. ]
  49368. ))
  49369. characterMakers.push(() => makeCharacter(
  49370. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49371. {
  49372. front: {
  49373. height: math.unit(6 + 2/12, "feet"),
  49374. weight: math.unit(210, "lb"),
  49375. name: "Front",
  49376. image: {
  49377. source: "./media/characters/wubs/front.svg",
  49378. extra: 1345/1325,
  49379. bottom: 70/1415
  49380. }
  49381. },
  49382. back: {
  49383. height: math.unit(6 + 2/12, "feet"),
  49384. weight: math.unit(210, "lb"),
  49385. name: "Back",
  49386. image: {
  49387. source: "./media/characters/wubs/back.svg",
  49388. extra: 1296/1275,
  49389. bottom: 58/1354
  49390. }
  49391. },
  49392. },
  49393. [
  49394. {
  49395. name: "Normal",
  49396. height: math.unit(6 + 2/12, "feet"),
  49397. default: true
  49398. },
  49399. {
  49400. name: "Macro",
  49401. height: math.unit(1000, "feet")
  49402. },
  49403. {
  49404. name: "Megamacro",
  49405. height: math.unit(1, "mile")
  49406. },
  49407. ]
  49408. ))
  49409. characterMakers.push(() => makeCharacter(
  49410. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49411. {
  49412. front: {
  49413. height: math.unit(4, "feet"),
  49414. weight: math.unit(120, "lb"),
  49415. name: "Front",
  49416. image: {
  49417. source: "./media/characters/blue/front.svg",
  49418. extra: 1636/1525,
  49419. bottom: 43/1679
  49420. }
  49421. },
  49422. back: {
  49423. height: math.unit(4, "feet"),
  49424. weight: math.unit(120, "lb"),
  49425. name: "Back",
  49426. image: {
  49427. source: "./media/characters/blue/back.svg",
  49428. extra: 1660/1560,
  49429. bottom: 57/1717
  49430. }
  49431. },
  49432. paws: {
  49433. height: math.unit(0.826, "feet"),
  49434. name: "Paws",
  49435. image: {
  49436. source: "./media/characters/blue/paws.svg"
  49437. }
  49438. },
  49439. },
  49440. [
  49441. {
  49442. name: "Micro",
  49443. height: math.unit(3, "inches")
  49444. },
  49445. {
  49446. name: "Normal",
  49447. height: math.unit(4, "feet"),
  49448. default: true
  49449. },
  49450. {
  49451. name: "Femenine Form",
  49452. height: math.unit(14, "feet")
  49453. },
  49454. {
  49455. name: "Werebat Form",
  49456. height: math.unit(18, "feet")
  49457. },
  49458. ]
  49459. ))
  49460. characterMakers.push(() => makeCharacter(
  49461. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49462. {
  49463. female: {
  49464. height: math.unit(7 + 4/12, "feet"),
  49465. weight: math.unit(243, "lb"),
  49466. name: "Female",
  49467. image: {
  49468. source: "./media/characters/kaya/female.svg",
  49469. extra: 975/898,
  49470. bottom: 34/1009
  49471. }
  49472. },
  49473. herm: {
  49474. height: math.unit(7 + 4/12, "feet"),
  49475. weight: math.unit(243, "lb"),
  49476. name: "Herm",
  49477. image: {
  49478. source: "./media/characters/kaya/herm.svg",
  49479. extra: 975/898,
  49480. bottom: 34/1009
  49481. }
  49482. },
  49483. },
  49484. [
  49485. {
  49486. name: "Normal",
  49487. height: math.unit(7 + 4/12, "feet"),
  49488. default: true
  49489. },
  49490. ]
  49491. ))
  49492. characterMakers.push(() => makeCharacter(
  49493. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49494. {
  49495. female: {
  49496. height: math.unit(9 + 4/12, "feet"),
  49497. weight: math.unit(398, "lb"),
  49498. name: "Female",
  49499. image: {
  49500. source: "./media/characters/kassandra/female.svg",
  49501. extra: 908/839,
  49502. bottom: 61/969
  49503. }
  49504. },
  49505. intersex: {
  49506. height: math.unit(9 + 4/12, "feet"),
  49507. weight: math.unit(398, "lb"),
  49508. name: "Intersex",
  49509. image: {
  49510. source: "./media/characters/kassandra/intersex.svg",
  49511. extra: 908/839,
  49512. bottom: 61/969
  49513. }
  49514. },
  49515. },
  49516. [
  49517. {
  49518. name: "Normal",
  49519. height: math.unit(9 + 4/12, "feet"),
  49520. default: true
  49521. },
  49522. ]
  49523. ))
  49524. characterMakers.push(() => makeCharacter(
  49525. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49526. {
  49527. front: {
  49528. height: math.unit(3, "meters"),
  49529. name: "Front",
  49530. image: {
  49531. source: "./media/characters/amy/front.svg",
  49532. extra: 1380/1343,
  49533. bottom: 70/1450
  49534. }
  49535. },
  49536. back: {
  49537. height: math.unit(3, "meters"),
  49538. name: "Back",
  49539. image: {
  49540. source: "./media/characters/amy/back.svg",
  49541. extra: 1380/1347,
  49542. bottom: 66/1446
  49543. }
  49544. },
  49545. },
  49546. [
  49547. {
  49548. name: "Normal",
  49549. height: math.unit(3, "meters"),
  49550. default: true
  49551. },
  49552. ]
  49553. ))
  49554. characterMakers.push(() => makeCharacter(
  49555. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49556. {
  49557. side: {
  49558. height: math.unit(47, "cm"),
  49559. weight: math.unit(10.8, "kg"),
  49560. name: "Side",
  49561. image: {
  49562. source: "./media/characters/alphaschakal/side.svg",
  49563. extra: 1058/568,
  49564. bottom: 62/1120
  49565. }
  49566. },
  49567. back: {
  49568. height: math.unit(78, "cm"),
  49569. weight: math.unit(10.8, "kg"),
  49570. name: "Back",
  49571. image: {
  49572. source: "./media/characters/alphaschakal/back.svg",
  49573. extra: 1102/942,
  49574. bottom: 185/1287
  49575. }
  49576. },
  49577. head: {
  49578. height: math.unit(28, "cm"),
  49579. name: "Head",
  49580. image: {
  49581. source: "./media/characters/alphaschakal/head.svg",
  49582. extra: 696/508,
  49583. bottom: 0/696
  49584. }
  49585. },
  49586. paw: {
  49587. height: math.unit(16, "cm"),
  49588. name: "Paw",
  49589. image: {
  49590. source: "./media/characters/alphaschakal/paw.svg"
  49591. }
  49592. },
  49593. },
  49594. [
  49595. {
  49596. name: "Normal",
  49597. height: math.unit(47, "cm"),
  49598. default: true
  49599. },
  49600. {
  49601. name: "Macro",
  49602. height: math.unit(340, "cm")
  49603. },
  49604. ]
  49605. ))
  49606. characterMakers.push(() => makeCharacter(
  49607. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49608. {
  49609. front: {
  49610. height: math.unit(36, "earths"),
  49611. name: "Front",
  49612. image: {
  49613. source: "./media/characters/ecobyss/front.svg",
  49614. extra: 1282/1215,
  49615. bottom: 11/1293
  49616. }
  49617. },
  49618. back: {
  49619. height: math.unit(36, "earths"),
  49620. name: "Back",
  49621. image: {
  49622. source: "./media/characters/ecobyss/back.svg",
  49623. extra: 1291/1222,
  49624. bottom: 8/1299
  49625. }
  49626. },
  49627. },
  49628. [
  49629. {
  49630. name: "Normal",
  49631. height: math.unit(36, "earths"),
  49632. default: true
  49633. },
  49634. ]
  49635. ))
  49636. characterMakers.push(() => makeCharacter(
  49637. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49638. {
  49639. front: {
  49640. height: math.unit(12, "feet"),
  49641. name: "Front",
  49642. image: {
  49643. source: "./media/characters/vasuk/front.svg",
  49644. extra: 1326/1207,
  49645. bottom: 64/1390
  49646. }
  49647. },
  49648. },
  49649. [
  49650. {
  49651. name: "Normal",
  49652. height: math.unit(12, "feet"),
  49653. default: true
  49654. },
  49655. ]
  49656. ))
  49657. characterMakers.push(() => makeCharacter(
  49658. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49659. {
  49660. side: {
  49661. height: math.unit(100, "feet"),
  49662. name: "Side",
  49663. image: {
  49664. source: "./media/characters/linneaus/side.svg",
  49665. extra: 987/807,
  49666. bottom: 47/1034
  49667. }
  49668. },
  49669. },
  49670. [
  49671. {
  49672. name: "Macro",
  49673. height: math.unit(100, "feet"),
  49674. default: true
  49675. },
  49676. ]
  49677. ))
  49678. characterMakers.push(() => makeCharacter(
  49679. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49680. {
  49681. front: {
  49682. height: math.unit(8, "feet"),
  49683. weight: math.unit(1200, "lb"),
  49684. name: "Front",
  49685. image: {
  49686. source: "./media/characters/nyterious-daligdig/front.svg",
  49687. extra: 1284/1094,
  49688. bottom: 84/1368
  49689. }
  49690. },
  49691. back: {
  49692. height: math.unit(8, "feet"),
  49693. weight: math.unit(1200, "lb"),
  49694. name: "Back",
  49695. image: {
  49696. source: "./media/characters/nyterious-daligdig/back.svg",
  49697. extra: 1301/1121,
  49698. bottom: 129/1430
  49699. }
  49700. },
  49701. mouth: {
  49702. height: math.unit(1.464, "feet"),
  49703. name: "Mouth",
  49704. image: {
  49705. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49706. }
  49707. },
  49708. },
  49709. [
  49710. {
  49711. name: "Small",
  49712. height: math.unit(8, "feet"),
  49713. default: true
  49714. },
  49715. {
  49716. name: "Normal",
  49717. height: math.unit(15, "feet")
  49718. },
  49719. {
  49720. name: "Macro",
  49721. height: math.unit(90, "feet")
  49722. },
  49723. ]
  49724. ))
  49725. characterMakers.push(() => makeCharacter(
  49726. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49727. {
  49728. front: {
  49729. height: math.unit(7 + 4/12, "feet"),
  49730. weight: math.unit(252, "lb"),
  49731. name: "Front",
  49732. image: {
  49733. source: "./media/characters/bandel/front.svg",
  49734. extra: 1946/1775,
  49735. bottom: 26/1972
  49736. }
  49737. },
  49738. back: {
  49739. height: math.unit(7 + 4/12, "feet"),
  49740. weight: math.unit(252, "lb"),
  49741. name: "Back",
  49742. image: {
  49743. source: "./media/characters/bandel/back.svg",
  49744. extra: 1940/1770,
  49745. bottom: 25/1965
  49746. }
  49747. },
  49748. maw: {
  49749. height: math.unit(2.15, "feet"),
  49750. name: "Maw",
  49751. image: {
  49752. source: "./media/characters/bandel/maw.svg"
  49753. }
  49754. },
  49755. stomach: {
  49756. height: math.unit(1.95, "feet"),
  49757. name: "Stomach",
  49758. image: {
  49759. source: "./media/characters/bandel/stomach.svg"
  49760. }
  49761. },
  49762. },
  49763. [
  49764. {
  49765. name: "Normal",
  49766. height: math.unit(7 + 4/12, "feet"),
  49767. default: true
  49768. },
  49769. ]
  49770. ))
  49771. characterMakers.push(() => makeCharacter(
  49772. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49773. {
  49774. front: {
  49775. height: math.unit(10 + 5/12, "feet"),
  49776. weight: math.unit(773.5, "kg"),
  49777. name: "Front",
  49778. image: {
  49779. source: "./media/characters/zed/front.svg",
  49780. extra: 987/941,
  49781. bottom: 52/1039
  49782. }
  49783. },
  49784. },
  49785. [
  49786. {
  49787. name: "Short",
  49788. height: math.unit(5 + 4/12, "feet")
  49789. },
  49790. {
  49791. name: "Average",
  49792. height: math.unit(10 + 5/12, "feet"),
  49793. default: true
  49794. },
  49795. {
  49796. name: "Mini-Macro",
  49797. height: math.unit(24 + 9/12, "feet")
  49798. },
  49799. {
  49800. name: "Macro",
  49801. height: math.unit(249, "feet")
  49802. },
  49803. {
  49804. name: "Mega-Macro",
  49805. height: math.unit(12490, "feet")
  49806. },
  49807. {
  49808. name: "Giga-Macro",
  49809. height: math.unit(24.9, "miles")
  49810. },
  49811. {
  49812. name: "Tera-Macro",
  49813. height: math.unit(24900, "miles")
  49814. },
  49815. {
  49816. name: "Cosmic Scale",
  49817. height: math.unit(38.9, "lightyears")
  49818. },
  49819. {
  49820. name: "Universal Scale",
  49821. height: math.unit(138e12, "lightyears")
  49822. },
  49823. ]
  49824. ))
  49825. characterMakers.push(() => makeCharacter(
  49826. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49827. {
  49828. front: {
  49829. height: math.unit(1561, "inches"),
  49830. name: "Front",
  49831. image: {
  49832. source: "./media/characters/ivan/front.svg",
  49833. extra: 1126/1071,
  49834. bottom: 26/1152
  49835. }
  49836. },
  49837. back: {
  49838. height: math.unit(1561, "inches"),
  49839. name: "Back",
  49840. image: {
  49841. source: "./media/characters/ivan/back.svg",
  49842. extra: 1134/1079,
  49843. bottom: 30/1164
  49844. }
  49845. },
  49846. },
  49847. [
  49848. {
  49849. name: "Normal",
  49850. height: math.unit(1561, "inches"),
  49851. default: true
  49852. },
  49853. ]
  49854. ))
  49855. characterMakers.push(() => makeCharacter(
  49856. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49857. {
  49858. front: {
  49859. height: math.unit(5 + 7/12, "feet"),
  49860. weight: math.unit(150, "lb"),
  49861. name: "Front",
  49862. image: {
  49863. source: "./media/characters/robin-arctic-hare/front.svg",
  49864. extra: 1148/974,
  49865. bottom: 20/1168
  49866. }
  49867. },
  49868. },
  49869. [
  49870. {
  49871. name: "Normal",
  49872. height: math.unit(5 + 7/12, "feet"),
  49873. default: true
  49874. },
  49875. ]
  49876. ))
  49877. characterMakers.push(() => makeCharacter(
  49878. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49879. {
  49880. side: {
  49881. height: math.unit(5, "feet"),
  49882. name: "Side",
  49883. image: {
  49884. source: "./media/characters/birch/side.svg",
  49885. extra: 985/796,
  49886. bottom: 111/1096
  49887. }
  49888. },
  49889. },
  49890. [
  49891. {
  49892. name: "Normal",
  49893. height: math.unit(5, "feet"),
  49894. default: true
  49895. },
  49896. ]
  49897. ))
  49898. characterMakers.push(() => makeCharacter(
  49899. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49900. {
  49901. front: {
  49902. height: math.unit(4, "feet"),
  49903. name: "Front",
  49904. image: {
  49905. source: "./media/characters/rasp/front.svg",
  49906. extra: 561/478,
  49907. bottom: 74/635
  49908. }
  49909. },
  49910. },
  49911. [
  49912. {
  49913. name: "Normal",
  49914. height: math.unit(4, "feet"),
  49915. default: true
  49916. },
  49917. ]
  49918. ))
  49919. characterMakers.push(() => makeCharacter(
  49920. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49921. {
  49922. front: {
  49923. height: math.unit(4 + 6/12, "feet"),
  49924. name: "Front",
  49925. image: {
  49926. source: "./media/characters/agatha/front.svg",
  49927. extra: 947/933,
  49928. bottom: 42/989
  49929. }
  49930. },
  49931. back: {
  49932. height: math.unit(4 + 6/12, "feet"),
  49933. name: "Back",
  49934. image: {
  49935. source: "./media/characters/agatha/back.svg",
  49936. extra: 935/922,
  49937. bottom: 48/983
  49938. }
  49939. },
  49940. },
  49941. [
  49942. {
  49943. name: "Normal",
  49944. height: math.unit(4 + 6 /12, "feet"),
  49945. default: true
  49946. },
  49947. {
  49948. name: "Max Size",
  49949. height: math.unit(500, "feet")
  49950. },
  49951. ]
  49952. ))
  49953. characterMakers.push(() => makeCharacter(
  49954. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49955. {
  49956. side: {
  49957. height: math.unit(30, "feet"),
  49958. name: "Side",
  49959. image: {
  49960. source: "./media/characters/roggy/side.svg",
  49961. extra: 909/643,
  49962. bottom: 63/972
  49963. }
  49964. },
  49965. lounging: {
  49966. height: math.unit(20, "feet"),
  49967. name: "Lounging",
  49968. image: {
  49969. source: "./media/characters/roggy/lounging.svg",
  49970. extra: 643/479,
  49971. bottom: 145/788
  49972. }
  49973. },
  49974. handpaw: {
  49975. height: math.unit(13.1, "feet"),
  49976. name: "Handpaw",
  49977. image: {
  49978. source: "./media/characters/roggy/handpaw.svg"
  49979. }
  49980. },
  49981. footpaw: {
  49982. height: math.unit(15.8, "feet"),
  49983. name: "Footpaw",
  49984. image: {
  49985. source: "./media/characters/roggy/footpaw.svg"
  49986. }
  49987. },
  49988. },
  49989. [
  49990. {
  49991. name: "Menacing",
  49992. height: math.unit(30, "feet"),
  49993. default: true
  49994. },
  49995. ]
  49996. ))
  49997. characterMakers.push(() => makeCharacter(
  49998. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49999. {
  50000. front: {
  50001. height: math.unit(5 + 7/12, "feet"),
  50002. weight: math.unit(135, "lb"),
  50003. name: "Front",
  50004. image: {
  50005. source: "./media/characters/naomi/front.svg",
  50006. extra: 1209/1154,
  50007. bottom: 129/1338
  50008. }
  50009. },
  50010. back: {
  50011. height: math.unit(5 + 7/12, "feet"),
  50012. weight: math.unit(135, "lb"),
  50013. name: "Back",
  50014. image: {
  50015. source: "./media/characters/naomi/back.svg",
  50016. extra: 1252/1190,
  50017. bottom: 23/1275
  50018. }
  50019. },
  50020. },
  50021. [
  50022. {
  50023. name: "Normal",
  50024. height: math.unit(5 + 7 /12, "feet"),
  50025. default: true
  50026. },
  50027. ]
  50028. ))
  50029. characterMakers.push(() => makeCharacter(
  50030. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  50031. {
  50032. side: {
  50033. height: math.unit(35, "meters"),
  50034. name: "Side",
  50035. image: {
  50036. source: "./media/characters/kimpi/side.svg",
  50037. extra: 419/382,
  50038. bottom: 63/482
  50039. }
  50040. },
  50041. hand: {
  50042. height: math.unit(8.96, "meters"),
  50043. name: "Hand",
  50044. image: {
  50045. source: "./media/characters/kimpi/hand.svg"
  50046. }
  50047. },
  50048. },
  50049. [
  50050. {
  50051. name: "Normal",
  50052. height: math.unit(35, "meters"),
  50053. default: true
  50054. },
  50055. ]
  50056. ))
  50057. characterMakers.push(() => makeCharacter(
  50058. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  50059. {
  50060. front: {
  50061. height: math.unit(4 + 4/12, "feet"),
  50062. name: "Front",
  50063. image: {
  50064. source: "./media/characters/pepper-purrloin/front.svg",
  50065. extra: 1141/1024,
  50066. bottom: 21/1162
  50067. }
  50068. },
  50069. },
  50070. [
  50071. {
  50072. name: "Normal",
  50073. height: math.unit(4 + 4/12, "feet"),
  50074. default: true
  50075. },
  50076. ]
  50077. ))
  50078. characterMakers.push(() => makeCharacter(
  50079. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  50080. {
  50081. front: {
  50082. height: math.unit(6 + 2/12, "feet"),
  50083. name: "Front",
  50084. image: {
  50085. source: "./media/characters/raphael/front.svg",
  50086. extra: 1101/962,
  50087. bottom: 59/1160
  50088. }
  50089. },
  50090. },
  50091. [
  50092. {
  50093. name: "Normal",
  50094. height: math.unit(6 + 2/12, "feet"),
  50095. default: true
  50096. },
  50097. ]
  50098. ))
  50099. characterMakers.push(() => makeCharacter(
  50100. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  50101. {
  50102. front: {
  50103. height: math.unit(6, "feet"),
  50104. weight: math.unit(150, "lb"),
  50105. name: "Front",
  50106. image: {
  50107. source: "./media/characters/victor-williams/front.svg",
  50108. extra: 1894/1825,
  50109. bottom: 67/1961
  50110. }
  50111. },
  50112. },
  50113. [
  50114. {
  50115. name: "Normal",
  50116. height: math.unit(6, "feet"),
  50117. default: true
  50118. },
  50119. ]
  50120. ))
  50121. characterMakers.push(() => makeCharacter(
  50122. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50123. {
  50124. front: {
  50125. height: math.unit(5 + 8/12, "feet"),
  50126. weight: math.unit(150, "lb"),
  50127. name: "Front",
  50128. image: {
  50129. source: "./media/characters/rachel/front.svg",
  50130. extra: 1902/1787,
  50131. bottom: 46/1948
  50132. }
  50133. },
  50134. },
  50135. [
  50136. {
  50137. name: "Base Height",
  50138. height: math.unit(5 + 8/12, "feet"),
  50139. default: true
  50140. },
  50141. {
  50142. name: "Macro",
  50143. height: math.unit(200, "feet")
  50144. },
  50145. {
  50146. name: "Mega Macro",
  50147. height: math.unit(1, "mile")
  50148. },
  50149. {
  50150. name: "Giga Macro",
  50151. height: math.unit(1500, "miles")
  50152. },
  50153. {
  50154. name: "Tera Macro",
  50155. height: math.unit(8000, "miles")
  50156. },
  50157. {
  50158. name: "Tera Macro+",
  50159. height: math.unit(2e5, "miles")
  50160. },
  50161. ]
  50162. ))
  50163. characterMakers.push(() => makeCharacter(
  50164. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50165. {
  50166. front: {
  50167. height: math.unit(6.5, "feet"),
  50168. name: "Front",
  50169. image: {
  50170. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50171. extra: 860/819,
  50172. bottom: 307/1167
  50173. }
  50174. },
  50175. back: {
  50176. height: math.unit(6.5, "feet"),
  50177. name: "Back",
  50178. image: {
  50179. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50180. extra: 880/837,
  50181. bottom: 395/1275
  50182. }
  50183. },
  50184. sleeping: {
  50185. height: math.unit(2.79, "feet"),
  50186. name: "Sleeping",
  50187. image: {
  50188. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50189. extra: 465/383,
  50190. bottom: 263/728
  50191. }
  50192. },
  50193. maw: {
  50194. height: math.unit(2.52, "feet"),
  50195. name: "Maw",
  50196. image: {
  50197. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50198. }
  50199. },
  50200. },
  50201. [
  50202. {
  50203. name: "Normal",
  50204. height: math.unit(6.5, "feet"),
  50205. default: true
  50206. },
  50207. ]
  50208. ))
  50209. characterMakers.push(() => makeCharacter(
  50210. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50211. {
  50212. front: {
  50213. height: math.unit(5, "feet"),
  50214. name: "Front",
  50215. image: {
  50216. source: "./media/characters/nova-nerium/front.svg",
  50217. extra: 1548/1392,
  50218. bottom: 374/1922
  50219. }
  50220. },
  50221. back: {
  50222. height: math.unit(5, "feet"),
  50223. name: "Back",
  50224. image: {
  50225. source: "./media/characters/nova-nerium/back.svg",
  50226. extra: 1658/1468,
  50227. bottom: 257/1915
  50228. }
  50229. },
  50230. },
  50231. [
  50232. {
  50233. name: "Normal",
  50234. height: math.unit(5, "feet"),
  50235. default: true
  50236. },
  50237. ]
  50238. ))
  50239. characterMakers.push(() => makeCharacter(
  50240. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50241. {
  50242. front: {
  50243. height: math.unit(5 + 4/12, "feet"),
  50244. name: "Front",
  50245. image: {
  50246. source: "./media/characters/ashe-pyriph/front.svg",
  50247. extra: 1935/1747,
  50248. bottom: 60/1995
  50249. }
  50250. },
  50251. },
  50252. [
  50253. {
  50254. name: "Normal",
  50255. height: math.unit(5 + 4/12, "feet"),
  50256. default: true
  50257. },
  50258. ]
  50259. ))
  50260. characterMakers.push(() => makeCharacter(
  50261. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50262. {
  50263. front: {
  50264. height: math.unit(8.7, "feet"),
  50265. name: "Front",
  50266. image: {
  50267. source: "./media/characters/flicker-wisp/front.svg",
  50268. extra: 1835/1613,
  50269. bottom: 449/2284
  50270. }
  50271. },
  50272. side: {
  50273. height: math.unit(8.7, "feet"),
  50274. name: "Side",
  50275. image: {
  50276. source: "./media/characters/flicker-wisp/side.svg",
  50277. extra: 1841/1642,
  50278. bottom: 336/2177
  50279. },
  50280. default: true
  50281. },
  50282. maw: {
  50283. height: math.unit(3.35, "feet"),
  50284. name: "Maw",
  50285. image: {
  50286. source: "./media/characters/flicker-wisp/maw.svg",
  50287. extra: 2338/1506,
  50288. bottom: 0/2338
  50289. }
  50290. },
  50291. ovipositor: {
  50292. height: math.unit(4.95, "feet"),
  50293. name: "Ovipositor",
  50294. image: {
  50295. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50296. }
  50297. },
  50298. egg: {
  50299. height: math.unit(0.385, "feet"),
  50300. weight: math.unit(2, "lb"),
  50301. name: "Egg",
  50302. image: {
  50303. source: "./media/characters/flicker-wisp/egg.svg"
  50304. }
  50305. },
  50306. },
  50307. [
  50308. {
  50309. name: "Normal",
  50310. height: math.unit(8.7, "feet"),
  50311. default: true
  50312. },
  50313. ]
  50314. ))
  50315. characterMakers.push(() => makeCharacter(
  50316. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50317. {
  50318. side: {
  50319. height: math.unit(11, "feet"),
  50320. name: "Side",
  50321. image: {
  50322. source: "./media/characters/faefnul/side.svg",
  50323. extra: 1100/1007,
  50324. bottom: 0/1100
  50325. }
  50326. },
  50327. },
  50328. [
  50329. {
  50330. name: "Normal",
  50331. height: math.unit(11, "feet"),
  50332. default: true
  50333. },
  50334. ]
  50335. ))
  50336. characterMakers.push(() => makeCharacter(
  50337. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50338. {
  50339. front: {
  50340. height: math.unit(6 + 2/12, "feet"),
  50341. name: "Front",
  50342. image: {
  50343. source: "./media/characters/shady/front.svg",
  50344. extra: 502/461,
  50345. bottom: 9/511
  50346. }
  50347. },
  50348. kneeling: {
  50349. height: math.unit(4.6, "feet"),
  50350. name: "Kneeling",
  50351. image: {
  50352. source: "./media/characters/shady/kneeling.svg",
  50353. extra: 1328/1219,
  50354. bottom: 117/1445
  50355. }
  50356. },
  50357. maw: {
  50358. height: math.unit(2, "feet"),
  50359. name: "Maw",
  50360. image: {
  50361. source: "./media/characters/shady/maw.svg"
  50362. }
  50363. },
  50364. },
  50365. [
  50366. {
  50367. name: "Nano",
  50368. height: math.unit(1, "mm")
  50369. },
  50370. {
  50371. name: "Micro",
  50372. height: math.unit(12, "mm")
  50373. },
  50374. {
  50375. name: "Tiny",
  50376. height: math.unit(3, "inches")
  50377. },
  50378. {
  50379. name: "Normal",
  50380. height: math.unit(6 + 2/12, "feet"),
  50381. default: true
  50382. },
  50383. {
  50384. name: "Big",
  50385. height: math.unit(15, "feet")
  50386. },
  50387. {
  50388. name: "Macro",
  50389. height: math.unit(150, "feet")
  50390. },
  50391. {
  50392. name: "Titanic",
  50393. height: math.unit(500, "feet")
  50394. },
  50395. ]
  50396. ))
  50397. characterMakers.push(() => makeCharacter(
  50398. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50399. {
  50400. front: {
  50401. height: math.unit(12, "feet"),
  50402. name: "Front",
  50403. image: {
  50404. source: "./media/characters/fenrir/front.svg",
  50405. extra: 968/875,
  50406. bottom: 22/990
  50407. }
  50408. },
  50409. },
  50410. [
  50411. {
  50412. name: "Big",
  50413. height: math.unit(12, "feet"),
  50414. default: true
  50415. },
  50416. ]
  50417. ))
  50418. characterMakers.push(() => makeCharacter(
  50419. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50420. {
  50421. front: {
  50422. height: math.unit(5 + 4/12, "feet"),
  50423. name: "Front",
  50424. image: {
  50425. source: "./media/characters/makar/front.svg",
  50426. extra: 1181/1112,
  50427. bottom: 78/1259
  50428. }
  50429. },
  50430. },
  50431. [
  50432. {
  50433. name: "Normal",
  50434. height: math.unit(5 + 4/12, "feet"),
  50435. default: true
  50436. },
  50437. ]
  50438. ))
  50439. characterMakers.push(() => makeCharacter(
  50440. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50441. {
  50442. front: {
  50443. height: math.unit(5 + 7/12, "feet"),
  50444. name: "Front",
  50445. image: {
  50446. source: "./media/characters/callow/front.svg",
  50447. extra: 1482/1304,
  50448. bottom: 23/1505
  50449. }
  50450. },
  50451. back: {
  50452. height: math.unit(5 + 7/12, "feet"),
  50453. name: "Back",
  50454. image: {
  50455. source: "./media/characters/callow/back.svg",
  50456. extra: 1484/1296,
  50457. bottom: 25/1509
  50458. }
  50459. },
  50460. },
  50461. [
  50462. {
  50463. name: "Micro",
  50464. height: math.unit(3, "inches"),
  50465. default: true
  50466. },
  50467. {
  50468. name: "Normal",
  50469. height: math.unit(5 + 7/12, "feet")
  50470. },
  50471. ]
  50472. ))
  50473. characterMakers.push(() => makeCharacter(
  50474. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50475. {
  50476. front: {
  50477. height: math.unit(6 + 2/12, "feet"),
  50478. name: "Front",
  50479. image: {
  50480. source: "./media/characters/natel/front.svg",
  50481. extra: 1833/1692,
  50482. bottom: 166/1999
  50483. }
  50484. },
  50485. },
  50486. [
  50487. {
  50488. name: "Normal",
  50489. height: math.unit(6 + 2/12, "feet"),
  50490. default: true
  50491. },
  50492. ]
  50493. ))
  50494. characterMakers.push(() => makeCharacter(
  50495. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50496. {
  50497. front: {
  50498. height: math.unit(1.75, "meters"),
  50499. name: "Front",
  50500. image: {
  50501. source: "./media/characters/misu/front.svg",
  50502. extra: 1690/1558,
  50503. bottom: 234/1924
  50504. }
  50505. },
  50506. back: {
  50507. height: math.unit(1.75, "meters"),
  50508. name: "Back",
  50509. image: {
  50510. source: "./media/characters/misu/back.svg",
  50511. extra: 1762/1618,
  50512. bottom: 146/1908
  50513. }
  50514. },
  50515. frontNude: {
  50516. height: math.unit(1.75, "meters"),
  50517. name: "Front (Nude)",
  50518. image: {
  50519. source: "./media/characters/misu/front-nude.svg",
  50520. extra: 1690/1558,
  50521. bottom: 234/1924
  50522. }
  50523. },
  50524. backNude: {
  50525. height: math.unit(1.75, "meters"),
  50526. name: "Back (Nude)",
  50527. image: {
  50528. source: "./media/characters/misu/back-nude.svg",
  50529. extra: 1762/1618,
  50530. bottom: 146/1908
  50531. }
  50532. },
  50533. frontErect: {
  50534. height: math.unit(1.75, "meters"),
  50535. name: "Front (Erect)",
  50536. image: {
  50537. source: "./media/characters/misu/front-erect.svg",
  50538. extra: 1690/1558,
  50539. bottom: 234/1924
  50540. }
  50541. },
  50542. maw: {
  50543. height: math.unit(0.47, "meters"),
  50544. name: "Maw",
  50545. image: {
  50546. source: "./media/characters/misu/maw.svg"
  50547. }
  50548. },
  50549. head: {
  50550. height: math.unit(0.35, "meters"),
  50551. name: "Head",
  50552. image: {
  50553. source: "./media/characters/misu/head.svg"
  50554. }
  50555. },
  50556. rear: {
  50557. height: math.unit(0.47, "meters"),
  50558. name: "Rear",
  50559. image: {
  50560. source: "./media/characters/misu/rear.svg"
  50561. }
  50562. },
  50563. },
  50564. [
  50565. {
  50566. name: "Normal",
  50567. height: math.unit(1.75, "meters")
  50568. },
  50569. {
  50570. name: "Not good for the people",
  50571. height: math.unit(42, "meters")
  50572. },
  50573. {
  50574. name: "Not good for the neighborhood",
  50575. height: math.unit(135, "meters")
  50576. },
  50577. {
  50578. name: "Bit bigger problem",
  50579. height: math.unit(380, "meters"),
  50580. default: true
  50581. },
  50582. {
  50583. name: "Not good for the city",
  50584. height: math.unit(1.5, "km")
  50585. },
  50586. {
  50587. name: "Not good for the county",
  50588. height: math.unit(5.5, "km")
  50589. },
  50590. {
  50591. name: "Not good for the state",
  50592. height: math.unit(25, "km")
  50593. },
  50594. {
  50595. name: "Not good for the country",
  50596. height: math.unit(125, "km")
  50597. },
  50598. {
  50599. name: "Not good for the continent",
  50600. height: math.unit(2100, "km")
  50601. },
  50602. {
  50603. name: "Not good for the planet",
  50604. height: math.unit(35000, "km")
  50605. },
  50606. {
  50607. name: "Just no",
  50608. height: math.unit(8.5e18, "km")
  50609. },
  50610. ]
  50611. ))
  50612. characterMakers.push(() => makeCharacter(
  50613. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50614. {
  50615. front: {
  50616. height: math.unit(6.5, "feet"),
  50617. name: "Front",
  50618. image: {
  50619. source: "./media/characters/poppy/front.svg",
  50620. extra: 1878/1812,
  50621. bottom: 43/1921
  50622. }
  50623. },
  50624. feet: {
  50625. height: math.unit(1.06, "feet"),
  50626. name: "Feet",
  50627. image: {
  50628. source: "./media/characters/poppy/feet.svg",
  50629. extra: 1083/1083,
  50630. bottom: 87/1170
  50631. }
  50632. },
  50633. },
  50634. [
  50635. {
  50636. name: "Human",
  50637. height: math.unit(6.5, "feet")
  50638. },
  50639. {
  50640. name: "Default",
  50641. height: math.unit(300, "feet"),
  50642. default: true
  50643. },
  50644. {
  50645. name: "Huge",
  50646. height: math.unit(850, "feet")
  50647. },
  50648. {
  50649. name: "Mega",
  50650. height: math.unit(8000, "feet")
  50651. },
  50652. {
  50653. name: "Giga",
  50654. height: math.unit(300, "miles")
  50655. },
  50656. ]
  50657. ))
  50658. characterMakers.push(() => makeCharacter(
  50659. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50660. {
  50661. bipedal: {
  50662. height: math.unit(7, "feet"),
  50663. name: "Bipedal",
  50664. image: {
  50665. source: "./media/characters/zener/bipedal.svg",
  50666. extra: 874/805,
  50667. bottom: 109/983
  50668. }
  50669. },
  50670. quadrupedal: {
  50671. height: math.unit(4.64, "feet"),
  50672. name: "Quadrupedal",
  50673. image: {
  50674. source: "./media/characters/zener/quadrupedal.svg",
  50675. extra: 638/507,
  50676. bottom: 190/828
  50677. }
  50678. },
  50679. cock: {
  50680. height: math.unit(18, "inches"),
  50681. name: "Cock",
  50682. image: {
  50683. source: "./media/characters/zener/cock.svg"
  50684. }
  50685. },
  50686. },
  50687. [
  50688. {
  50689. name: "Normal",
  50690. height: math.unit(7, "feet"),
  50691. default: true
  50692. },
  50693. ]
  50694. ))
  50695. characterMakers.push(() => makeCharacter(
  50696. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50697. {
  50698. nude: {
  50699. height: math.unit(5 + 6/12, "feet"),
  50700. name: "Nude",
  50701. image: {
  50702. source: "./media/characters/charlie-dog/nude.svg",
  50703. extra: 768/734,
  50704. bottom: 26/794
  50705. }
  50706. },
  50707. dressed: {
  50708. height: math.unit(5 + 6/12, "feet"),
  50709. name: "Dressed",
  50710. image: {
  50711. source: "./media/characters/charlie-dog/dressed.svg",
  50712. extra: 768/734,
  50713. bottom: 26/794
  50714. }
  50715. },
  50716. },
  50717. [
  50718. {
  50719. name: "Normal",
  50720. height: math.unit(5 + 6/12, "feet"),
  50721. default: true
  50722. },
  50723. ]
  50724. ))
  50725. characterMakers.push(() => makeCharacter(
  50726. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50727. {
  50728. front: {
  50729. height: math.unit(6 + 4/12, "feet"),
  50730. name: "Front",
  50731. image: {
  50732. source: "./media/characters/ir'istrasz/front.svg",
  50733. extra: 1014/977,
  50734. bottom: 65/1079
  50735. }
  50736. },
  50737. back: {
  50738. height: math.unit(6 + 4/12, "feet"),
  50739. name: "Back",
  50740. image: {
  50741. source: "./media/characters/ir'istrasz/back.svg",
  50742. extra: 1024/992,
  50743. bottom: 34/1058
  50744. }
  50745. },
  50746. },
  50747. [
  50748. {
  50749. name: "Normal",
  50750. height: math.unit(6 + 4/12, "feet"),
  50751. default: true
  50752. },
  50753. ]
  50754. ))
  50755. characterMakers.push(() => makeCharacter(
  50756. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50757. {
  50758. front: {
  50759. height: math.unit(5 + 8/12, "feet"),
  50760. name: "Front",
  50761. image: {
  50762. source: "./media/characters/dee-ditto/front.svg",
  50763. extra: 1874/1785,
  50764. bottom: 68/1942
  50765. }
  50766. },
  50767. back: {
  50768. height: math.unit(5 + 8/12, "feet"),
  50769. name: "Back",
  50770. image: {
  50771. source: "./media/characters/dee-ditto/back.svg",
  50772. extra: 1870/1783,
  50773. bottom: 77/1947
  50774. }
  50775. },
  50776. },
  50777. [
  50778. {
  50779. name: "Normal",
  50780. height: math.unit(5 + 8/12, "feet"),
  50781. default: true
  50782. },
  50783. ]
  50784. ))
  50785. characterMakers.push(() => makeCharacter(
  50786. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50787. {
  50788. front: {
  50789. height: math.unit(7 + 6/12, "feet"),
  50790. name: "Front",
  50791. image: {
  50792. source: "./media/characters/fey/front.svg",
  50793. extra: 995/979,
  50794. bottom: 30/1025
  50795. }
  50796. },
  50797. back: {
  50798. height: math.unit(7 + 6/12, "feet"),
  50799. name: "Back",
  50800. image: {
  50801. source: "./media/characters/fey/back.svg",
  50802. extra: 1079/1008,
  50803. bottom: 5/1084
  50804. }
  50805. },
  50806. dressed: {
  50807. height: math.unit(7 + 6/12, "feet"),
  50808. name: "Dressed",
  50809. image: {
  50810. source: "./media/characters/fey/dressed.svg",
  50811. extra: 995/979,
  50812. bottom: 30/1025
  50813. }
  50814. },
  50815. },
  50816. [
  50817. {
  50818. name: "Normal",
  50819. height: math.unit(7 + 6/12, "feet"),
  50820. default: true
  50821. },
  50822. ]
  50823. ))
  50824. characterMakers.push(() => makeCharacter(
  50825. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50826. {
  50827. standing: {
  50828. height: math.unit(17, "feet"),
  50829. name: "Standing",
  50830. image: {
  50831. source: "./media/characters/aster/standing.svg",
  50832. extra: 1798/1598,
  50833. bottom: 117/1915
  50834. }
  50835. },
  50836. },
  50837. [
  50838. {
  50839. name: "Normal",
  50840. height: math.unit(17, "feet"),
  50841. default: true
  50842. },
  50843. {
  50844. name: "Homewrecker",
  50845. height: math.unit(95, "feet")
  50846. },
  50847. {
  50848. name: "Planet Devourer",
  50849. height: math.unit(1008000, "miles")
  50850. },
  50851. ]
  50852. ))
  50853. characterMakers.push(() => makeCharacter(
  50854. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50855. {
  50856. front: {
  50857. height: math.unit(6 + 5/12, "feet"),
  50858. weight: math.unit(265, "lb"),
  50859. name: "Front",
  50860. image: {
  50861. source: "./media/characters/devon-childs/front.svg",
  50862. extra: 1795/1721,
  50863. bottom: 41/1836
  50864. }
  50865. },
  50866. side: {
  50867. height: math.unit(6 + 5/12, "feet"),
  50868. weight: math.unit(265, "lb"),
  50869. name: "Side",
  50870. image: {
  50871. source: "./media/characters/devon-childs/side.svg",
  50872. extra: 1812/1738,
  50873. bottom: 30/1842
  50874. }
  50875. },
  50876. back: {
  50877. height: math.unit(6 + 5/12, "feet"),
  50878. weight: math.unit(265, "lb"),
  50879. name: "Back",
  50880. image: {
  50881. source: "./media/characters/devon-childs/back.svg",
  50882. extra: 1808/1735,
  50883. bottom: 23/1831
  50884. }
  50885. },
  50886. hand: {
  50887. height: math.unit(1.464, "feet"),
  50888. name: "Hand",
  50889. image: {
  50890. source: "./media/characters/devon-childs/hand.svg"
  50891. }
  50892. },
  50893. foot: {
  50894. height: math.unit(1.6, "feet"),
  50895. name: "Foot",
  50896. image: {
  50897. source: "./media/characters/devon-childs/foot.svg"
  50898. }
  50899. },
  50900. },
  50901. [
  50902. {
  50903. name: "Micro",
  50904. height: math.unit(7, "cm")
  50905. },
  50906. {
  50907. name: "Normal",
  50908. height: math.unit(6 + 5/12, "feet"),
  50909. default: true
  50910. },
  50911. {
  50912. name: "Macro",
  50913. height: math.unit(154, "feet")
  50914. },
  50915. ]
  50916. ))
  50917. characterMakers.push(() => makeCharacter(
  50918. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50919. {
  50920. front: {
  50921. height: math.unit(6, "feet"),
  50922. weight: math.unit(180, "lb"),
  50923. name: "Front",
  50924. image: {
  50925. source: "./media/characters/lydemox-vir/front.svg",
  50926. extra: 1632/1435,
  50927. bottom: 58/1690
  50928. }
  50929. },
  50930. frontSFW: {
  50931. height: math.unit(6, "feet"),
  50932. weight: math.unit(180, "lb"),
  50933. name: "Front (SFW)",
  50934. image: {
  50935. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50936. extra: 1632/1435,
  50937. bottom: 58/1690
  50938. }
  50939. },
  50940. back: {
  50941. height: math.unit(6, "feet"),
  50942. weight: math.unit(180, "lb"),
  50943. name: "Back",
  50944. image: {
  50945. source: "./media/characters/lydemox-vir/back.svg",
  50946. extra: 1593/1408,
  50947. bottom: 31/1624
  50948. }
  50949. },
  50950. paw: {
  50951. height: math.unit(1.85, "feet"),
  50952. name: "Paw",
  50953. image: {
  50954. source: "./media/characters/lydemox-vir/paw.svg"
  50955. }
  50956. },
  50957. dick: {
  50958. height: math.unit(1.8, "feet"),
  50959. name: "Dick",
  50960. image: {
  50961. source: "./media/characters/lydemox-vir/dick.svg"
  50962. }
  50963. },
  50964. },
  50965. [
  50966. {
  50967. name: "Macro",
  50968. height: math.unit(100, "feet"),
  50969. default: true
  50970. },
  50971. {
  50972. name: "Teramacro",
  50973. height: math.unit(1, "earth")
  50974. },
  50975. {
  50976. name: "Planetary",
  50977. height: math.unit(20, "earths")
  50978. },
  50979. ]
  50980. ))
  50981. characterMakers.push(() => makeCharacter(
  50982. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50983. {
  50984. front: {
  50985. height: math.unit(15 + 8/12, "feet"),
  50986. weight: math.unit(1237, "kg"),
  50987. name: "Front",
  50988. image: {
  50989. source: "./media/characters/mia/front.svg",
  50990. extra: 1573/1446,
  50991. bottom: 58/1631
  50992. }
  50993. },
  50994. },
  50995. [
  50996. {
  50997. name: "Small",
  50998. height: math.unit(9 + 5/12, "feet")
  50999. },
  51000. {
  51001. name: "Normal",
  51002. height: math.unit(15 + 8/12, "feet"),
  51003. default: true
  51004. },
  51005. ]
  51006. ))
  51007. characterMakers.push(() => makeCharacter(
  51008. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  51009. {
  51010. front: {
  51011. height: math.unit(10 + 6/12, "feet"),
  51012. weight: math.unit(1.3, "tons"),
  51013. name: "Front",
  51014. image: {
  51015. source: "./media/characters/mr-graves/front.svg",
  51016. extra: 1779/1695,
  51017. bottom: 198/1977
  51018. }
  51019. },
  51020. },
  51021. [
  51022. {
  51023. name: "Normal",
  51024. height: math.unit(10 + 6 /12, "feet"),
  51025. default: true
  51026. },
  51027. ]
  51028. ))
  51029. characterMakers.push(() => makeCharacter(
  51030. { name: "Jess", species: ["human"], tags: ["anthro"] },
  51031. {
  51032. dressedFront: {
  51033. height: math.unit(5 + 8/12, "feet"),
  51034. weight: math.unit(125, "lb"),
  51035. name: "Dressed (Front)",
  51036. image: {
  51037. source: "./media/characters/jess/dressed-front.svg",
  51038. extra: 1176/1152,
  51039. bottom: 42/1218
  51040. }
  51041. },
  51042. dressedSide: {
  51043. height: math.unit(5 + 8/12, "feet"),
  51044. weight: math.unit(125, "lb"),
  51045. name: "Dressed (Side)",
  51046. image: {
  51047. source: "./media/characters/jess/dressed-side.svg",
  51048. extra: 1204/1190,
  51049. bottom: 6/1210
  51050. }
  51051. },
  51052. nudeFront: {
  51053. height: math.unit(5 + 8/12, "feet"),
  51054. weight: math.unit(125, "lb"),
  51055. name: "Nude (Front)",
  51056. image: {
  51057. source: "./media/characters/jess/nude-front.svg",
  51058. extra: 1176/1152,
  51059. bottom: 42/1218
  51060. }
  51061. },
  51062. nudeSide: {
  51063. height: math.unit(5 + 8/12, "feet"),
  51064. weight: math.unit(125, "lb"),
  51065. name: "Nude (Side)",
  51066. image: {
  51067. source: "./media/characters/jess/nude-side.svg",
  51068. extra: 1204/1190,
  51069. bottom: 6/1210
  51070. }
  51071. },
  51072. organsFront: {
  51073. height: math.unit(2.83799342105, "feet"),
  51074. name: "Organs (Front)",
  51075. image: {
  51076. source: "./media/characters/jess/organs-front.svg"
  51077. }
  51078. },
  51079. organsSide: {
  51080. height: math.unit(2.64225290474, "feet"),
  51081. name: "Organs (Side)",
  51082. image: {
  51083. source: "./media/characters/jess/organs-side.svg"
  51084. }
  51085. },
  51086. digestiveTractFront: {
  51087. height: math.unit(2.8106580871, "feet"),
  51088. name: "Digestive Tract (Front)",
  51089. image: {
  51090. source: "./media/characters/jess/digestive-tract-front.svg"
  51091. }
  51092. },
  51093. digestiveTractSide: {
  51094. height: math.unit(2.54365045014, "feet"),
  51095. name: "Digestive Tract (Side)",
  51096. image: {
  51097. source: "./media/characters/jess/digestive-tract-side.svg"
  51098. }
  51099. },
  51100. respiratorySystemFront: {
  51101. height: math.unit(1.11196233456, "feet"),
  51102. name: "Respiratory System (Front)",
  51103. image: {
  51104. source: "./media/characters/jess/respiratory-system-front.svg"
  51105. }
  51106. },
  51107. respiratorySystemSide: {
  51108. height: math.unit(0.89327966297, "feet"),
  51109. name: "Respiratory System (Side)",
  51110. image: {
  51111. source: "./media/characters/jess/respiratory-system-side.svg"
  51112. }
  51113. },
  51114. urinaryTractFront: {
  51115. height: math.unit(1.16126356186, "feet"),
  51116. name: "Urinary Tract (Front)",
  51117. image: {
  51118. source: "./media/characters/jess/urinary-tract-front.svg"
  51119. }
  51120. },
  51121. urinaryTractSide: {
  51122. height: math.unit(1.20910039627, "feet"),
  51123. name: "Urinary Tract (Side)",
  51124. image: {
  51125. source: "./media/characters/jess/urinary-tract-side.svg"
  51126. }
  51127. },
  51128. reproductiveOrgansFront: {
  51129. height: math.unit(0.48422591566, "feet"),
  51130. name: "Reproductive Organs (Front)",
  51131. image: {
  51132. source: "./media/characters/jess/reproductive-organs-front.svg"
  51133. }
  51134. },
  51135. reproductiveOrgansSide: {
  51136. height: math.unit(0.61553314481, "feet"),
  51137. name: "Reproductive Organs (Side)",
  51138. image: {
  51139. source: "./media/characters/jess/reproductive-organs-side.svg"
  51140. }
  51141. },
  51142. breastsFront: {
  51143. height: math.unit(0.47690395121, "feet"),
  51144. name: "Breasts (Front)",
  51145. image: {
  51146. source: "./media/characters/jess/breasts-front.svg"
  51147. }
  51148. },
  51149. breastsSide: {
  51150. height: math.unit(0.30556998307, "feet"),
  51151. name: "Breasts (Side)",
  51152. image: {
  51153. source: "./media/characters/jess/breasts-side.svg"
  51154. }
  51155. },
  51156. heartFront: {
  51157. height: math.unit(0.53011022622, "feet"),
  51158. name: "Heart (Front)",
  51159. image: {
  51160. source: "./media/characters/jess/heart-front.svg"
  51161. }
  51162. },
  51163. heartSide: {
  51164. height: math.unit(0.51790695213, "feet"),
  51165. name: "Heart (Side)",
  51166. image: {
  51167. source: "./media/characters/jess/heart-side.svg"
  51168. }
  51169. },
  51170. earsAndNoseFront: {
  51171. height: math.unit(0.29385483995, "feet"),
  51172. name: "Ears and Nose (Front)",
  51173. image: {
  51174. source: "./media/characters/jess/ears-and-nose-front.svg"
  51175. }
  51176. },
  51177. earsAndNoseSide: {
  51178. height: math.unit(0.18109658741, "feet"),
  51179. name: "Ears and Nose (Side)",
  51180. image: {
  51181. source: "./media/characters/jess/ears-and-nose-side.svg"
  51182. }
  51183. },
  51184. },
  51185. [
  51186. {
  51187. name: "Normal",
  51188. height: math.unit(5 + 8/12, "feet"),
  51189. default: true
  51190. },
  51191. ]
  51192. ))
  51193. characterMakers.push(() => makeCharacter(
  51194. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51195. {
  51196. front: {
  51197. height: math.unit(6, "feet"),
  51198. weight: math.unit(6.64467e-7, "grams"),
  51199. name: "Front",
  51200. image: {
  51201. source: "./media/characters/wimpering/front.svg",
  51202. extra: 597/587,
  51203. bottom: 34/631
  51204. }
  51205. },
  51206. },
  51207. [
  51208. {
  51209. name: "Micro",
  51210. height: math.unit(0.4, "mm"),
  51211. default: true
  51212. },
  51213. ]
  51214. ))
  51215. characterMakers.push(() => makeCharacter(
  51216. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51217. {
  51218. front: {
  51219. height: math.unit(5 + 2/12, "feet"),
  51220. weight: math.unit(110, "lb"),
  51221. name: "Front",
  51222. image: {
  51223. source: "./media/characters/keltre/front.svg",
  51224. extra: 1099/1057,
  51225. bottom: 22/1121
  51226. }
  51227. },
  51228. back: {
  51229. height: math.unit(5 + 2/12, "feet"),
  51230. weight: math.unit(110, "lb"),
  51231. name: "Back",
  51232. image: {
  51233. source: "./media/characters/keltre/back.svg",
  51234. extra: 1095/1053,
  51235. bottom: 17/1112
  51236. }
  51237. },
  51238. dressed: {
  51239. height: math.unit(5 + 2/12, "feet"),
  51240. weight: math.unit(110, "lb"),
  51241. name: "Dressed",
  51242. image: {
  51243. source: "./media/characters/keltre/dressed.svg",
  51244. extra: 1099/1057,
  51245. bottom: 22/1121
  51246. }
  51247. },
  51248. winter: {
  51249. height: math.unit(5 + 2/12, "feet"),
  51250. weight: math.unit(110, "lb"),
  51251. name: "Winter",
  51252. image: {
  51253. source: "./media/characters/keltre/winter.svg",
  51254. extra: 1099/1057,
  51255. bottom: 22/1121
  51256. }
  51257. },
  51258. head: {
  51259. height: math.unit(1.61 * 0.86, "feet"),
  51260. name: "Head",
  51261. image: {
  51262. source: "./media/characters/keltre/head.svg",
  51263. extra: 534/421,
  51264. bottom: 0/534
  51265. }
  51266. },
  51267. hand: {
  51268. height: math.unit(1.3 * 0.86, "feet"),
  51269. name: "Hand",
  51270. image: {
  51271. source: "./media/characters/keltre/hand.svg"
  51272. }
  51273. },
  51274. foot: {
  51275. height: math.unit(1.8 * 0.86, "feet"),
  51276. name: "Foot",
  51277. image: {
  51278. source: "./media/characters/keltre/foot.svg"
  51279. }
  51280. },
  51281. },
  51282. [
  51283. {
  51284. name: "Fine",
  51285. height: math.unit(1, "inch")
  51286. },
  51287. {
  51288. name: "Dimnutive",
  51289. height: math.unit(4, "inches")
  51290. },
  51291. {
  51292. name: "Tiny",
  51293. height: math.unit(1, "foot")
  51294. },
  51295. {
  51296. name: "Small",
  51297. height: math.unit(3, "feet")
  51298. },
  51299. {
  51300. name: "Normal",
  51301. height: math.unit(5 + 2/12, "feet"),
  51302. default: true
  51303. },
  51304. ]
  51305. ))
  51306. characterMakers.push(() => makeCharacter(
  51307. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51308. {
  51309. front: {
  51310. height: math.unit(6 + 2/12, "feet"),
  51311. name: "Front",
  51312. image: {
  51313. source: "./media/characters/nox/front.svg",
  51314. extra: 1917/1830,
  51315. bottom: 74/1991
  51316. }
  51317. },
  51318. back: {
  51319. height: math.unit(6 + 2/12, "feet"),
  51320. name: "Back",
  51321. image: {
  51322. source: "./media/characters/nox/back.svg",
  51323. extra: 1896/1815,
  51324. bottom: 21/1917
  51325. }
  51326. },
  51327. head: {
  51328. height: math.unit(1.1, "feet"),
  51329. name: "Head",
  51330. image: {
  51331. source: "./media/characters/nox/head.svg",
  51332. extra: 874/704,
  51333. bottom: 0/874
  51334. }
  51335. },
  51336. tattoo: {
  51337. height: math.unit(0.729, "feet"),
  51338. name: "Tattoo",
  51339. image: {
  51340. source: "./media/characters/nox/tattoo.svg"
  51341. }
  51342. },
  51343. },
  51344. [
  51345. {
  51346. name: "Normal",
  51347. height: math.unit(6 + 2/12, "feet")
  51348. },
  51349. {
  51350. name: "Gigamacro",
  51351. height: math.unit(2, "earths"),
  51352. default: true
  51353. },
  51354. {
  51355. name: "Cosmic",
  51356. height: math.unit(867, "yottameters")
  51357. },
  51358. ]
  51359. ))
  51360. characterMakers.push(() => makeCharacter(
  51361. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51362. {
  51363. front: {
  51364. height: math.unit(6, "feet"),
  51365. weight: math.unit(150, "lb"),
  51366. name: "Front",
  51367. image: {
  51368. source: "./media/characters/caspian/front.svg",
  51369. extra: 1443/1359,
  51370. bottom: 0/1443
  51371. }
  51372. },
  51373. back: {
  51374. height: math.unit(6, "feet"),
  51375. weight: math.unit(150, "lb"),
  51376. name: "Back",
  51377. image: {
  51378. source: "./media/characters/caspian/back.svg",
  51379. extra: 1379/1309,
  51380. bottom: 0/1379
  51381. }
  51382. },
  51383. head: {
  51384. height: math.unit(0.9, "feet"),
  51385. name: "Head",
  51386. image: {
  51387. source: "./media/characters/caspian/head.svg",
  51388. extra: 692/492,
  51389. bottom: 0/692
  51390. }
  51391. },
  51392. headAlt: {
  51393. height: math.unit(0.95, "feet"),
  51394. name: "Head (Alt)",
  51395. image: {
  51396. source: "./media/characters/caspian/head-alt.svg",
  51397. extra: 668/508,
  51398. bottom: 0/668
  51399. }
  51400. },
  51401. hand: {
  51402. height: math.unit(0.8, "feet"),
  51403. name: "Hand",
  51404. image: {
  51405. source: "./media/characters/caspian/hand.svg"
  51406. }
  51407. },
  51408. paw: {
  51409. height: math.unit(0.95, "feet"),
  51410. name: "Paw",
  51411. image: {
  51412. source: "./media/characters/caspian/paw.svg"
  51413. }
  51414. },
  51415. },
  51416. [
  51417. {
  51418. name: "Normal",
  51419. height: math.unit(162, "feet"),
  51420. default: true
  51421. },
  51422. ]
  51423. ))
  51424. characterMakers.push(() => makeCharacter(
  51425. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51426. {
  51427. front: {
  51428. height: math.unit(6, "feet"),
  51429. name: "Front",
  51430. image: {
  51431. source: "./media/characters/myra-aisling/front.svg",
  51432. extra: 1268/1166,
  51433. bottom: 73/1341
  51434. }
  51435. },
  51436. back: {
  51437. height: math.unit(6, "feet"),
  51438. name: "Back",
  51439. image: {
  51440. source: "./media/characters/myra-aisling/back.svg",
  51441. extra: 1249/1149,
  51442. bottom: 79/1328
  51443. }
  51444. },
  51445. dressed: {
  51446. height: math.unit(6, "feet"),
  51447. name: "Dressed",
  51448. image: {
  51449. source: "./media/characters/myra-aisling/dressed.svg",
  51450. extra: 1290/1189,
  51451. bottom: 47/1337
  51452. }
  51453. },
  51454. hand: {
  51455. height: math.unit(1.1, "feet"),
  51456. name: "Hand",
  51457. image: {
  51458. source: "./media/characters/myra-aisling/hand.svg"
  51459. }
  51460. },
  51461. paw: {
  51462. height: math.unit(1.23, "feet"),
  51463. name: "Paw",
  51464. image: {
  51465. source: "./media/characters/myra-aisling/paw.svg"
  51466. }
  51467. },
  51468. },
  51469. [
  51470. {
  51471. name: "Normal",
  51472. height: math.unit(160, "feet"),
  51473. default: true
  51474. },
  51475. ]
  51476. ))
  51477. characterMakers.push(() => makeCharacter(
  51478. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51479. {
  51480. front: {
  51481. height: math.unit(6, "feet"),
  51482. name: "Front",
  51483. image: {
  51484. source: "./media/characters/tenley-sidero/front.svg",
  51485. extra: 1365/1276,
  51486. bottom: 47/1412
  51487. }
  51488. },
  51489. back: {
  51490. height: math.unit(6, "feet"),
  51491. name: "Back",
  51492. image: {
  51493. source: "./media/characters/tenley-sidero/back.svg",
  51494. extra: 1383/1283,
  51495. bottom: 35/1418
  51496. }
  51497. },
  51498. dressed: {
  51499. height: math.unit(6, "feet"),
  51500. name: "Dressed",
  51501. image: {
  51502. source: "./media/characters/tenley-sidero/dressed.svg",
  51503. extra: 1364/1275,
  51504. bottom: 42/1406
  51505. }
  51506. },
  51507. head: {
  51508. height: math.unit(1.47, "feet"),
  51509. name: "Head",
  51510. image: {
  51511. source: "./media/characters/tenley-sidero/head.svg",
  51512. extra: 610/490,
  51513. bottom: 0/610
  51514. }
  51515. },
  51516. },
  51517. [
  51518. {
  51519. name: "Normal",
  51520. height: math.unit(154, "feet"),
  51521. default: true
  51522. },
  51523. ]
  51524. ))
  51525. characterMakers.push(() => makeCharacter(
  51526. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51527. {
  51528. front: {
  51529. height: math.unit(5, "inches"),
  51530. name: "Front",
  51531. image: {
  51532. source: "./media/characters/mallory/front.svg",
  51533. extra: 1919/1678,
  51534. bottom: 29/1948
  51535. }
  51536. },
  51537. hand: {
  51538. height: math.unit(0.73, "inches"),
  51539. name: "Hand",
  51540. image: {
  51541. source: "./media/characters/mallory/hand.svg"
  51542. }
  51543. },
  51544. paw: {
  51545. height: math.unit(0.68, "inches"),
  51546. name: "Paw",
  51547. image: {
  51548. source: "./media/characters/mallory/paw.svg"
  51549. }
  51550. },
  51551. },
  51552. [
  51553. {
  51554. name: "Small",
  51555. height: math.unit(5, "inches"),
  51556. default: true
  51557. },
  51558. ]
  51559. ))
  51560. characterMakers.push(() => makeCharacter(
  51561. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51562. {
  51563. naked: {
  51564. height: math.unit(6, "feet"),
  51565. name: "Naked",
  51566. image: {
  51567. source: "./media/characters/mab/naked.svg",
  51568. extra: 1855/1757,
  51569. bottom: 208/2063
  51570. }
  51571. },
  51572. outside: {
  51573. height: math.unit(6, "feet"),
  51574. name: "Outside",
  51575. image: {
  51576. source: "./media/characters/mab/outside.svg",
  51577. extra: 1855/1757,
  51578. bottom: 208/2063
  51579. }
  51580. },
  51581. party: {
  51582. height: math.unit(6, "feet"),
  51583. name: "Party",
  51584. image: {
  51585. source: "./media/characters/mab/party.svg",
  51586. extra: 1855/1757,
  51587. bottom: 208/2063
  51588. }
  51589. },
  51590. },
  51591. [
  51592. {
  51593. name: "Normal",
  51594. height: math.unit(165, "feet"),
  51595. default: true
  51596. },
  51597. ]
  51598. ))
  51599. characterMakers.push(() => makeCharacter(
  51600. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51601. {
  51602. feral: {
  51603. height: math.unit(12, "feet"),
  51604. weight: math.unit(20000, "lb"),
  51605. name: "Side",
  51606. image: {
  51607. source: "./media/characters/winter/feral.svg",
  51608. extra: 1286/943,
  51609. bottom: 112/1398
  51610. },
  51611. form: "feral",
  51612. default: true
  51613. },
  51614. feralNsfw: {
  51615. height: math.unit(12, "feet"),
  51616. weight: math.unit(20000, "lb"),
  51617. name: "Side (NSFW)",
  51618. image: {
  51619. source: "./media/characters/winter/feral-nsfw.svg",
  51620. extra: 1286/943,
  51621. bottom: 112/1398
  51622. },
  51623. form: "feral"
  51624. },
  51625. dick: {
  51626. height: math.unit(3.79, "feet"),
  51627. name: "Dick",
  51628. image: {
  51629. source: "./media/characters/winter/dick.svg"
  51630. },
  51631. form: "feral"
  51632. },
  51633. anthro: {
  51634. height: math.unit(12, "feet"),
  51635. weight: math.unit(10, "tons"),
  51636. name: "Anthro",
  51637. image: {
  51638. source: "./media/characters/winter/anthro.svg",
  51639. extra: 1701/1553,
  51640. bottom: 64/1765
  51641. },
  51642. form: "anthro",
  51643. default: true
  51644. },
  51645. },
  51646. [
  51647. {
  51648. name: "Big",
  51649. height: math.unit(12, "feet"),
  51650. default: true,
  51651. form: "feral"
  51652. },
  51653. {
  51654. name: "Big",
  51655. height: math.unit(12, "feet"),
  51656. default: true,
  51657. form: "anthro"
  51658. },
  51659. ],
  51660. {
  51661. "feral": {
  51662. name: "Feral",
  51663. default: true
  51664. },
  51665. "anthro": {
  51666. name: "Anthro"
  51667. }
  51668. }
  51669. ))
  51670. characterMakers.push(() => makeCharacter(
  51671. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51672. {
  51673. front: {
  51674. height: math.unit(4.1, "inches"),
  51675. name: "Front",
  51676. image: {
  51677. source: "./media/characters/alto/front.svg",
  51678. extra: 736/627,
  51679. bottom: 90/826
  51680. }
  51681. },
  51682. },
  51683. [
  51684. {
  51685. name: "Normal",
  51686. height: math.unit(4.1, "inches"),
  51687. default: true
  51688. },
  51689. ]
  51690. ))
  51691. characterMakers.push(() => makeCharacter(
  51692. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51693. {
  51694. sitting: {
  51695. height: math.unit(3, "feet"),
  51696. name: "Sitting",
  51697. image: {
  51698. source: "./media/characters/ratstrid-v/sitting.svg",
  51699. extra: 355/310,
  51700. bottom: 136/491
  51701. }
  51702. },
  51703. },
  51704. [
  51705. {
  51706. name: "Normal",
  51707. height: math.unit(3, "feet"),
  51708. default: true
  51709. },
  51710. ]
  51711. ))
  51712. characterMakers.push(() => makeCharacter(
  51713. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51714. {
  51715. back: {
  51716. height: math.unit(6, "feet"),
  51717. weight: math.unit(450, "lb"),
  51718. name: "Back",
  51719. image: {
  51720. source: "./media/characters/siz/back.svg",
  51721. extra: 1449/1274,
  51722. bottom: 13/1462
  51723. }
  51724. },
  51725. },
  51726. [
  51727. {
  51728. name: "Smallest",
  51729. height: math.unit(18 + 3/12, "feet")
  51730. },
  51731. {
  51732. name: "Modest",
  51733. height: math.unit(56 + 8/12, "feet"),
  51734. default: true
  51735. },
  51736. {
  51737. name: "Largest",
  51738. height: math.unit(3590, "feet")
  51739. },
  51740. ]
  51741. ))
  51742. characterMakers.push(() => makeCharacter(
  51743. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51744. {
  51745. front: {
  51746. height: math.unit(5 + 9/12, "feet"),
  51747. weight: math.unit(150, "lb"),
  51748. name: "Front",
  51749. image: {
  51750. source: "./media/characters/ven/front.svg",
  51751. extra: 1372/1320,
  51752. bottom: 73/1445
  51753. }
  51754. },
  51755. side: {
  51756. height: math.unit(5 + 9/12, "feet"),
  51757. weight: math.unit(1150, "lb"),
  51758. name: "Side",
  51759. image: {
  51760. source: "./media/characters/ven/side.svg",
  51761. extra: 1119/1070,
  51762. bottom: 42/1161
  51763. },
  51764. default: true
  51765. },
  51766. },
  51767. [
  51768. {
  51769. name: "Normal",
  51770. height: math.unit(5 + 9/12, "feet"),
  51771. default: true
  51772. },
  51773. ]
  51774. ))
  51775. characterMakers.push(() => makeCharacter(
  51776. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51777. {
  51778. front: {
  51779. height: math.unit(12, "feet"),
  51780. weight: math.unit(1000, "kg"),
  51781. name: "Front",
  51782. image: {
  51783. source: "./media/characters/maple/front.svg",
  51784. extra: 1193/1081,
  51785. bottom: 22/1215
  51786. }
  51787. },
  51788. },
  51789. [
  51790. {
  51791. name: "Compressed",
  51792. height: math.unit(7, "feet")
  51793. },
  51794. {
  51795. name: "Normal",
  51796. height: math.unit(12, "feet"),
  51797. default: true
  51798. },
  51799. ]
  51800. ))
  51801. characterMakers.push(() => makeCharacter(
  51802. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51803. {
  51804. front: {
  51805. height: math.unit(9, "feet"),
  51806. weight: math.unit(1500, "lb"),
  51807. name: "Front",
  51808. image: {
  51809. source: "./media/characters/nora/front.svg",
  51810. extra: 1348/1286,
  51811. bottom: 218/1566
  51812. }
  51813. },
  51814. erect: {
  51815. height: math.unit(9, "feet"),
  51816. weight: math.unit(11500, "lb"),
  51817. name: "Erect",
  51818. image: {
  51819. source: "./media/characters/nora/erect.svg",
  51820. extra: 1488/1433,
  51821. bottom: 133/1621
  51822. }
  51823. },
  51824. },
  51825. [
  51826. {
  51827. name: "Normal",
  51828. height: math.unit(9, "feet"),
  51829. default: true
  51830. },
  51831. ]
  51832. ))
  51833. characterMakers.push(() => makeCharacter(
  51834. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51835. {
  51836. front: {
  51837. height: math.unit(25, "feet"),
  51838. weight: math.unit(27500, "lb"),
  51839. name: "Front",
  51840. image: {
  51841. source: "./media/characters/north-caudin/front.svg",
  51842. extra: 1184/1082,
  51843. bottom: 23/1207
  51844. }
  51845. },
  51846. },
  51847. [
  51848. {
  51849. name: "Compressed",
  51850. height: math.unit(10, "feet")
  51851. },
  51852. {
  51853. name: "Normal",
  51854. height: math.unit(25, "feet"),
  51855. default: true
  51856. },
  51857. ]
  51858. ))
  51859. characterMakers.push(() => makeCharacter(
  51860. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51861. {
  51862. front: {
  51863. height: math.unit(9, "feet"),
  51864. weight: math.unit(1250, "lb"),
  51865. name: "Front",
  51866. image: {
  51867. source: "./media/characters/merrian/front.svg",
  51868. extra: 2393/2304,
  51869. bottom: 40/2433
  51870. }
  51871. },
  51872. },
  51873. [
  51874. {
  51875. name: "Normal",
  51876. height: math.unit(9, "feet"),
  51877. default: true
  51878. },
  51879. ]
  51880. ))
  51881. characterMakers.push(() => makeCharacter(
  51882. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51883. {
  51884. front: {
  51885. height: math.unit(9, "feet"),
  51886. weight: math.unit(1000, "lb"),
  51887. name: "Front",
  51888. image: {
  51889. source: "./media/characters/hazel/front.svg",
  51890. extra: 2351/2298,
  51891. bottom: 38/2389
  51892. }
  51893. },
  51894. },
  51895. [
  51896. {
  51897. name: "Normal",
  51898. height: math.unit(9, "feet"),
  51899. default: true
  51900. },
  51901. ]
  51902. ))
  51903. characterMakers.push(() => makeCharacter(
  51904. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51905. {
  51906. front: {
  51907. height: math.unit(13, "feet"),
  51908. weight: math.unit(3200, "lb"),
  51909. name: "Front",
  51910. image: {
  51911. source: "./media/characters/emma/front.svg",
  51912. extra: 2263/2029,
  51913. bottom: 68/2331
  51914. }
  51915. },
  51916. },
  51917. [
  51918. {
  51919. name: "Normal",
  51920. height: math.unit(13, "feet"),
  51921. default: true
  51922. },
  51923. ]
  51924. ))
  51925. characterMakers.push(() => makeCharacter(
  51926. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51927. {
  51928. front: {
  51929. height: math.unit(11 + 9/12, "feet"),
  51930. weight: math.unit(2500, "lb"),
  51931. name: "Front",
  51932. image: {
  51933. source: "./media/characters/ilumina/front.svg",
  51934. extra: 2248/2209,
  51935. bottom: 164/2412
  51936. }
  51937. },
  51938. },
  51939. [
  51940. {
  51941. name: "Normal",
  51942. height: math.unit(11 + 9/12, "feet"),
  51943. default: true
  51944. },
  51945. ]
  51946. ))
  51947. characterMakers.push(() => makeCharacter(
  51948. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51949. {
  51950. front: {
  51951. height: math.unit(8 + 10/12, "feet"),
  51952. weight: math.unit(1350, "lb"),
  51953. name: "Front",
  51954. image: {
  51955. source: "./media/characters/moonshine/front.svg",
  51956. extra: 2395/2288,
  51957. bottom: 40/2435
  51958. }
  51959. },
  51960. },
  51961. [
  51962. {
  51963. name: "Normal",
  51964. height: math.unit(8 + 10/12, "feet"),
  51965. default: true
  51966. },
  51967. ]
  51968. ))
  51969. characterMakers.push(() => makeCharacter(
  51970. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51971. {
  51972. front: {
  51973. height: math.unit(14, "feet"),
  51974. weight: math.unit(3400, "lb"),
  51975. name: "Front",
  51976. image: {
  51977. source: "./media/characters/aletia/front.svg",
  51978. extra: 1185/1052,
  51979. bottom: 21/1206
  51980. }
  51981. },
  51982. },
  51983. [
  51984. {
  51985. name: "Compressed",
  51986. height: math.unit(8, "feet")
  51987. },
  51988. {
  51989. name: "Normal",
  51990. height: math.unit(14, "feet"),
  51991. default: true
  51992. },
  51993. ]
  51994. ))
  51995. characterMakers.push(() => makeCharacter(
  51996. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51997. {
  51998. front: {
  51999. height: math.unit(17, "feet"),
  52000. weight: math.unit(6500, "lb"),
  52001. name: "Front",
  52002. image: {
  52003. source: "./media/characters/deidra/front.svg",
  52004. extra: 1201/1081,
  52005. bottom: 16/1217
  52006. }
  52007. },
  52008. },
  52009. [
  52010. {
  52011. name: "Compressed",
  52012. height: math.unit(9 + 6/12, "feet")
  52013. },
  52014. {
  52015. name: "Normal",
  52016. height: math.unit(17, "feet"),
  52017. default: true
  52018. },
  52019. ]
  52020. ))
  52021. characterMakers.push(() => makeCharacter(
  52022. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  52023. {
  52024. front: {
  52025. height: math.unit(7 + 4/12, "feet"),
  52026. weight: math.unit(280, "lb"),
  52027. name: "Front",
  52028. image: {
  52029. source: "./media/characters/freki-yrmori/front.svg",
  52030. extra: 1286/1182,
  52031. bottom: 29/1315
  52032. }
  52033. },
  52034. maw: {
  52035. height: math.unit(0.9, "feet"),
  52036. name: "Maw",
  52037. image: {
  52038. source: "./media/characters/freki-yrmori/maw.svg"
  52039. }
  52040. },
  52041. },
  52042. [
  52043. {
  52044. name: "Normal",
  52045. height: math.unit(7 + 4/12, "feet"),
  52046. default: true
  52047. },
  52048. {
  52049. name: "Macro",
  52050. height: math.unit(38.5, "meters")
  52051. },
  52052. ]
  52053. ))
  52054. characterMakers.push(() => makeCharacter(
  52055. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  52056. {
  52057. side: {
  52058. height: math.unit(47.2, "meters"),
  52059. weight: math.unit(10000, "tons"),
  52060. name: "Side",
  52061. image: {
  52062. source: "./media/characters/aetherios/side.svg",
  52063. extra: 2363/642,
  52064. bottom: 221/2584
  52065. }
  52066. },
  52067. top: {
  52068. height: math.unit(240, "meters"),
  52069. weight: math.unit(10000, "tons"),
  52070. name: "Top",
  52071. image: {
  52072. source: "./media/characters/aetherios/top.svg"
  52073. }
  52074. },
  52075. bottom: {
  52076. height: math.unit(240, "meters"),
  52077. weight: math.unit(10000, "tons"),
  52078. name: "Bottom",
  52079. image: {
  52080. source: "./media/characters/aetherios/bottom.svg"
  52081. }
  52082. },
  52083. head: {
  52084. height: math.unit(38.6, "meters"),
  52085. name: "Head",
  52086. image: {
  52087. source: "./media/characters/aetherios/head.svg",
  52088. extra: 1335/1112,
  52089. bottom: 0/1335
  52090. }
  52091. },
  52092. front: {
  52093. height: math.unit(29, "meters"),
  52094. name: "Front",
  52095. image: {
  52096. source: "./media/characters/aetherios/front.svg",
  52097. extra: 1266/953,
  52098. bottom: 158/1424
  52099. }
  52100. },
  52101. maw: {
  52102. height: math.unit(16.37, "meters"),
  52103. name: "Maw",
  52104. image: {
  52105. source: "./media/characters/aetherios/maw.svg",
  52106. extra: 748/637,
  52107. bottom: 0/748
  52108. },
  52109. extraAttributes: {
  52110. preyCapacity: {
  52111. name: "Capacity",
  52112. power: 3,
  52113. type: "volume",
  52114. base: math.unit(1000, "people")
  52115. },
  52116. tongueSize: {
  52117. name: "Tongue Size",
  52118. power: 2,
  52119. type: "area",
  52120. base: math.unit(21, "m^2")
  52121. }
  52122. }
  52123. },
  52124. forepaw: {
  52125. height: math.unit(18, "meters"),
  52126. name: "Forepaw",
  52127. image: {
  52128. source: "./media/characters/aetherios/forepaw.svg"
  52129. }
  52130. },
  52131. hindpaw: {
  52132. height: math.unit(23, "meters"),
  52133. name: "Hindpaw",
  52134. image: {
  52135. source: "./media/characters/aetherios/hindpaw.svg"
  52136. }
  52137. },
  52138. genitals: {
  52139. height: math.unit(42, "meters"),
  52140. name: "Genitals",
  52141. image: {
  52142. source: "./media/characters/aetherios/genitals.svg"
  52143. }
  52144. },
  52145. },
  52146. [
  52147. {
  52148. name: "Normal",
  52149. height: math.unit(47.2, "meters"),
  52150. default: true
  52151. },
  52152. {
  52153. name: "Macro",
  52154. height: math.unit(160, "meters")
  52155. },
  52156. {
  52157. name: "Mega",
  52158. height: math.unit(1.87, "km")
  52159. },
  52160. {
  52161. name: "Giga",
  52162. height: math.unit(40000, "km")
  52163. },
  52164. {
  52165. name: "Stellar",
  52166. height: math.unit(158000000, "km")
  52167. },
  52168. {
  52169. name: "Cosmic",
  52170. height: math.unit(9.46e12, "km")
  52171. },
  52172. ]
  52173. ))
  52174. characterMakers.push(() => makeCharacter(
  52175. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52176. {
  52177. front: {
  52178. height: math.unit(5 + 4/12, "feet"),
  52179. weight: math.unit(80, "lb"),
  52180. name: "Front",
  52181. image: {
  52182. source: "./media/characters/mizu-gieeg/front.svg",
  52183. extra: 850/709,
  52184. bottom: 52/902
  52185. }
  52186. },
  52187. back: {
  52188. height: math.unit(5 + 4/12, "feet"),
  52189. weight: math.unit(80, "lb"),
  52190. name: "Back",
  52191. image: {
  52192. source: "./media/characters/mizu-gieeg/back.svg",
  52193. extra: 882/745,
  52194. bottom: 25/907
  52195. }
  52196. },
  52197. },
  52198. [
  52199. {
  52200. name: "Normal",
  52201. height: math.unit(5 + 4/12, "feet"),
  52202. default: true
  52203. },
  52204. ]
  52205. ))
  52206. characterMakers.push(() => makeCharacter(
  52207. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52208. {
  52209. front: {
  52210. height: math.unit(6, "feet"),
  52211. name: "Front",
  52212. image: {
  52213. source: "./media/characters/roselle-st-papier/front.svg",
  52214. extra: 1430/1280,
  52215. bottom: 37/1467
  52216. }
  52217. },
  52218. back: {
  52219. height: math.unit(6, "feet"),
  52220. name: "Back",
  52221. image: {
  52222. source: "./media/characters/roselle-st-papier/back.svg",
  52223. extra: 1491/1296,
  52224. bottom: 23/1514
  52225. }
  52226. },
  52227. ear: {
  52228. height: math.unit(1.26, "feet"),
  52229. name: "Ear",
  52230. image: {
  52231. source: "./media/characters/roselle-st-papier/ear.svg"
  52232. }
  52233. },
  52234. },
  52235. [
  52236. {
  52237. name: "Normal",
  52238. height: math.unit(150, "feet"),
  52239. default: true
  52240. },
  52241. ]
  52242. ))
  52243. characterMakers.push(() => makeCharacter(
  52244. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52245. {
  52246. front: {
  52247. height: math.unit(1, "inches"),
  52248. name: "Front",
  52249. image: {
  52250. source: "./media/characters/valargent/front.svg",
  52251. extra: 1825/1694,
  52252. bottom: 62/1887
  52253. }
  52254. },
  52255. back: {
  52256. height: math.unit(1, "inches"),
  52257. name: "Back",
  52258. image: {
  52259. source: "./media/characters/valargent/back.svg",
  52260. extra: 1775/1682,
  52261. bottom: 88/1863
  52262. }
  52263. },
  52264. },
  52265. [
  52266. {
  52267. name: "Micro",
  52268. height: math.unit(1, "inch"),
  52269. default: true
  52270. },
  52271. ]
  52272. ))
  52273. characterMakers.push(() => makeCharacter(
  52274. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52275. {
  52276. front: {
  52277. height: math.unit(3.4, "meters"),
  52278. name: "Front",
  52279. image: {
  52280. source: "./media/characters/zarina/front.svg",
  52281. extra: 1733/1425,
  52282. bottom: 93/1826
  52283. }
  52284. },
  52285. squatting: {
  52286. height: math.unit(2.14, "meters"),
  52287. name: "Squatting",
  52288. image: {
  52289. source: "./media/characters/zarina/squatting.svg",
  52290. extra: 1073/788,
  52291. bottom: 63/1136
  52292. }
  52293. },
  52294. back: {
  52295. height: math.unit(2.14, "meters"),
  52296. name: "Back",
  52297. image: {
  52298. source: "./media/characters/zarina/back.svg",
  52299. extra: 1128/885,
  52300. bottom: 0/1128
  52301. }
  52302. },
  52303. },
  52304. [
  52305. {
  52306. name: "Normal",
  52307. height: math.unit(3.4, "meters"),
  52308. default: true
  52309. },
  52310. {
  52311. name: "Big",
  52312. height: math.unit(5, "meters")
  52313. },
  52314. {
  52315. name: "Macro",
  52316. height: math.unit(110, "meters")
  52317. },
  52318. ]
  52319. ))
  52320. characterMakers.push(() => makeCharacter(
  52321. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52322. {
  52323. front: {
  52324. height: math.unit(7, "feet"),
  52325. name: "Front",
  52326. image: {
  52327. source: "./media/characters/ventus-astro-fox/front.svg",
  52328. extra: 1792/1623,
  52329. bottom: 28/1820
  52330. }
  52331. },
  52332. back: {
  52333. height: math.unit(7, "feet"),
  52334. name: "Back",
  52335. image: {
  52336. source: "./media/characters/ventus-astro-fox/back.svg",
  52337. extra: 1789/1620,
  52338. bottom: 31/1820
  52339. }
  52340. },
  52341. outfit: {
  52342. height: math.unit(7, "feet"),
  52343. name: "Outfit",
  52344. image: {
  52345. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52346. extra: 1054/925,
  52347. bottom: 15/1069
  52348. }
  52349. },
  52350. head: {
  52351. height: math.unit(1.12, "feet"),
  52352. name: "Head",
  52353. image: {
  52354. source: "./media/characters/ventus-astro-fox/head.svg",
  52355. extra: 866/504,
  52356. bottom: 0/866
  52357. }
  52358. },
  52359. hand: {
  52360. height: math.unit(1, "feet"),
  52361. name: "Hand",
  52362. image: {
  52363. source: "./media/characters/ventus-astro-fox/hand.svg"
  52364. }
  52365. },
  52366. paw: {
  52367. height: math.unit(1.5, "feet"),
  52368. name: "Paw",
  52369. image: {
  52370. source: "./media/characters/ventus-astro-fox/paw.svg"
  52371. }
  52372. },
  52373. },
  52374. [
  52375. {
  52376. name: "Normal",
  52377. height: math.unit(7, "feet"),
  52378. default: true
  52379. },
  52380. {
  52381. name: "Macro",
  52382. height: math.unit(200, "feet")
  52383. },
  52384. {
  52385. name: "Cosmic",
  52386. height: math.unit(3, "universes")
  52387. },
  52388. ]
  52389. ))
  52390. characterMakers.push(() => makeCharacter(
  52391. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52392. {
  52393. front: {
  52394. height: math.unit(3, "meters"),
  52395. weight: math.unit(7000, "lb"),
  52396. name: "Front",
  52397. image: {
  52398. source: "./media/characters/core-t/front.svg",
  52399. extra: 5729/4941,
  52400. bottom: 1129/6858
  52401. }
  52402. },
  52403. },
  52404. [
  52405. {
  52406. name: "Big",
  52407. height: math.unit(3, "meters"),
  52408. default: true
  52409. },
  52410. ]
  52411. ))
  52412. characterMakers.push(() => makeCharacter(
  52413. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52414. {
  52415. normal: {
  52416. height: math.unit(6 + 6/12, "feet"),
  52417. weight: math.unit(275, "lb"),
  52418. name: "Front",
  52419. image: {
  52420. source: "./media/characters/cadbunny/normal.svg",
  52421. extra: 1129/947,
  52422. bottom: 93/1222
  52423. },
  52424. default: true,
  52425. form: "normal"
  52426. },
  52427. gigantamax: {
  52428. height: math.unit(26, "feet"),
  52429. weight: math.unit(16000, "lb"),
  52430. name: "Front",
  52431. image: {
  52432. source: "./media/characters/cadbunny/gigantamax.svg",
  52433. extra: 1133/944,
  52434. bottom: 90/1223
  52435. },
  52436. default: true,
  52437. form: "gigantamax"
  52438. },
  52439. },
  52440. [
  52441. {
  52442. name: "Normal",
  52443. height: math.unit(6 + 6/12, "feet"),
  52444. default: true,
  52445. form: "normal"
  52446. },
  52447. {
  52448. name: "Small",
  52449. height: math.unit(26, "feet"),
  52450. default: true,
  52451. form: "gigantamax"
  52452. },
  52453. {
  52454. name: "Large",
  52455. height: math.unit(78, "feet"),
  52456. form: "gigantamax"
  52457. },
  52458. ],
  52459. {
  52460. "normal": {
  52461. name: "Normal",
  52462. default: true
  52463. },
  52464. "gigantamax": {
  52465. name: "Gigantamax"
  52466. }
  52467. }
  52468. ))
  52469. characterMakers.push(() => makeCharacter(
  52470. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52471. {
  52472. anthroFront: {
  52473. height: math.unit(8, "feet"),
  52474. weight: math.unit(300, "lb"),
  52475. name: "Front",
  52476. image: {
  52477. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52478. extra: 1272/1176,
  52479. bottom: 53/1325
  52480. },
  52481. form: "anthro",
  52482. default: true
  52483. },
  52484. feralSide: {
  52485. height: math.unit(4, "feet"),
  52486. weight: math.unit(250, "lb"),
  52487. name: "Side",
  52488. image: {
  52489. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52490. extra: 731/621,
  52491. bottom: 0/731
  52492. },
  52493. form: "feral",
  52494. default: true
  52495. },
  52496. },
  52497. [
  52498. {
  52499. name: "Regular",
  52500. height: math.unit(8, "feet"),
  52501. form: "anthro"
  52502. },
  52503. {
  52504. name: "Macro",
  52505. height: math.unit(250, "feet"),
  52506. form: "anthro",
  52507. default: true
  52508. },
  52509. {
  52510. name: "Regular",
  52511. height: math.unit(4, "feet"),
  52512. form: "feral"
  52513. },
  52514. {
  52515. name: "Macro",
  52516. height: math.unit(125, "feet"),
  52517. form: "feral",
  52518. default: true
  52519. },
  52520. ],
  52521. {
  52522. "anthro": {
  52523. name: "Anthro",
  52524. default: true
  52525. },
  52526. "feral": {
  52527. name: "Feral",
  52528. },
  52529. }
  52530. ))
  52531. characterMakers.push(() => makeCharacter(
  52532. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52533. {
  52534. front: {
  52535. height: math.unit(11 + 10/12, "feet"),
  52536. weight: math.unit(1587, "kg"),
  52537. name: "Front",
  52538. image: {
  52539. source: "./media/characters/maple-javira-dragon/front.svg",
  52540. extra: 1136/744,
  52541. bottom: 73/1209
  52542. }
  52543. },
  52544. side: {
  52545. height: math.unit(11 + 10/12, "feet"),
  52546. weight: math.unit(1587, "kg"),
  52547. name: "Side",
  52548. image: {
  52549. source: "./media/characters/maple-javira-dragon/side.svg",
  52550. extra: 712/505,
  52551. bottom: 17/729
  52552. }
  52553. },
  52554. head: {
  52555. height: math.unit(8.05, "feet"),
  52556. name: "Head",
  52557. image: {
  52558. source: "./media/characters/maple-javira-dragon/head.svg",
  52559. extra: 1420/1344,
  52560. bottom: 0/1420
  52561. }
  52562. },
  52563. },
  52564. [
  52565. {
  52566. name: "Normal",
  52567. height: math.unit(11 + 10/12, "feet"),
  52568. default: true
  52569. },
  52570. ]
  52571. ))
  52572. characterMakers.push(() => makeCharacter(
  52573. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52574. {
  52575. front: {
  52576. height: math.unit(117, "cm"),
  52577. weight: math.unit(50, "kg"),
  52578. name: "Front",
  52579. image: {
  52580. source: "./media/characters/sonia-wyverntail/front.svg",
  52581. extra: 708/592,
  52582. bottom: 25/733
  52583. }
  52584. },
  52585. },
  52586. [
  52587. {
  52588. name: "Normal",
  52589. height: math.unit(117, "cm"),
  52590. default: true
  52591. },
  52592. ]
  52593. ))
  52594. characterMakers.push(() => makeCharacter(
  52595. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52596. {
  52597. front: {
  52598. height: math.unit(6 + 5/12, "feet"),
  52599. name: "Front",
  52600. image: {
  52601. source: "./media/characters/micah/front.svg",
  52602. extra: 1758/1546,
  52603. bottom: 214/1972
  52604. }
  52605. },
  52606. },
  52607. [
  52608. {
  52609. name: "Normal",
  52610. height: math.unit(6 + 5/12, "feet"),
  52611. default: true
  52612. },
  52613. ]
  52614. ))
  52615. characterMakers.push(() => makeCharacter(
  52616. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52617. {
  52618. front: {
  52619. height: math.unit(1.75, "meters"),
  52620. weight: math.unit(100, "kg"),
  52621. name: "Front",
  52622. image: {
  52623. source: "./media/characters/zarya/front.svg",
  52624. extra: 741/735,
  52625. bottom: 44/785
  52626. },
  52627. extraAttributes: {
  52628. "tailLength": {
  52629. name: "Tail Length",
  52630. power: 1,
  52631. type: "length",
  52632. base: math.unit(180, "cm")
  52633. },
  52634. "pawLength": {
  52635. name: "Paw Length",
  52636. power: 1,
  52637. type: "length",
  52638. base: math.unit(31, "cm")
  52639. },
  52640. }
  52641. },
  52642. side: {
  52643. height: math.unit(1.75, "meters"),
  52644. weight: math.unit(100, "kg"),
  52645. name: "Side",
  52646. image: {
  52647. source: "./media/characters/zarya/side.svg",
  52648. extra: 776/770,
  52649. bottom: 17/793
  52650. },
  52651. extraAttributes: {
  52652. "tailLength": {
  52653. name: "Tail Length",
  52654. power: 1,
  52655. type: "length",
  52656. base: math.unit(180, "cm")
  52657. },
  52658. "pawLength": {
  52659. name: "Paw Length",
  52660. power: 1,
  52661. type: "length",
  52662. base: math.unit(31, "cm")
  52663. },
  52664. }
  52665. },
  52666. back: {
  52667. height: math.unit(1.75, "meters"),
  52668. weight: math.unit(100, "kg"),
  52669. name: "Back",
  52670. image: {
  52671. source: "./media/characters/zarya/back.svg",
  52672. extra: 741/735,
  52673. bottom: 44/785
  52674. },
  52675. extraAttributes: {
  52676. "tailLength": {
  52677. name: "Tail Length",
  52678. power: 1,
  52679. type: "length",
  52680. base: math.unit(180, "cm")
  52681. },
  52682. "pawLength": {
  52683. name: "Paw Length",
  52684. power: 1,
  52685. type: "length",
  52686. base: math.unit(31, "cm")
  52687. },
  52688. }
  52689. },
  52690. frontNoTail: {
  52691. height: math.unit(1.75, "meters"),
  52692. weight: math.unit(100, "kg"),
  52693. name: "Front (No Tail)",
  52694. image: {
  52695. source: "./media/characters/zarya/front-no-tail.svg",
  52696. extra: 741/735,
  52697. bottom: 44/785
  52698. },
  52699. extraAttributes: {
  52700. "tailLength": {
  52701. name: "Tail Length",
  52702. power: 1,
  52703. type: "length",
  52704. base: math.unit(180, "cm")
  52705. },
  52706. "pawLength": {
  52707. name: "Paw Length",
  52708. power: 1,
  52709. type: "length",
  52710. base: math.unit(31, "cm")
  52711. },
  52712. }
  52713. },
  52714. dressed: {
  52715. height: math.unit(1.75, "meters"),
  52716. weight: math.unit(100, "kg"),
  52717. name: "Dressed",
  52718. image: {
  52719. source: "./media/characters/zarya/dressed.svg",
  52720. extra: 683/672,
  52721. bottom: 79/762
  52722. },
  52723. extraAttributes: {
  52724. "tailLength": {
  52725. name: "Tail Length",
  52726. power: 1,
  52727. type: "length",
  52728. base: math.unit(180, "cm")
  52729. },
  52730. "pawLength": {
  52731. name: "Paw Length",
  52732. power: 1,
  52733. type: "length",
  52734. base: math.unit(31, "cm")
  52735. },
  52736. }
  52737. },
  52738. },
  52739. [
  52740. {
  52741. name: "Micro",
  52742. height: math.unit(5, "cm")
  52743. },
  52744. {
  52745. name: "Normal",
  52746. height: math.unit(1.75, "meters"),
  52747. default: true
  52748. },
  52749. {
  52750. name: "Macro",
  52751. height: math.unit(122, "meters")
  52752. },
  52753. ]
  52754. ))
  52755. characterMakers.push(() => makeCharacter(
  52756. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52757. {
  52758. front: {
  52759. height: math.unit(7.5, "feet"),
  52760. name: "Front",
  52761. image: {
  52762. source: "./media/characters/sven-hatisson/front.svg",
  52763. extra: 917/857,
  52764. bottom: 42/959
  52765. }
  52766. },
  52767. back: {
  52768. height: math.unit(7.5, "feet"),
  52769. name: "Back",
  52770. image: {
  52771. source: "./media/characters/sven-hatisson/back.svg",
  52772. extra: 903/856,
  52773. bottom: 15/918
  52774. }
  52775. },
  52776. },
  52777. [
  52778. {
  52779. name: "Base Height",
  52780. height: math.unit(7.5, "feet")
  52781. },
  52782. {
  52783. name: "Usual Height",
  52784. height: math.unit(13.5, "feet"),
  52785. default: true
  52786. },
  52787. {
  52788. name: "Smaller Macro",
  52789. height: math.unit(85, "feet")
  52790. },
  52791. {
  52792. name: "Moderate Macro",
  52793. height: math.unit(320, "feet")
  52794. },
  52795. {
  52796. name: "Large Macro",
  52797. height: math.unit(1000, "feet")
  52798. },
  52799. {
  52800. name: "Largest Size",
  52801. height: math.unit(2, "miles")
  52802. },
  52803. ]
  52804. ))
  52805. characterMakers.push(() => makeCharacter(
  52806. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52807. {
  52808. side: {
  52809. height: math.unit(1.8, "meters"),
  52810. weight: math.unit(275, "kg"),
  52811. name: "Side",
  52812. image: {
  52813. source: "./media/characters/terra/side.svg",
  52814. extra: 1273/1147,
  52815. bottom: 0/1273
  52816. }
  52817. },
  52818. },
  52819. [
  52820. {
  52821. name: "Normal",
  52822. height: math.unit(16.2, "meters"),
  52823. default: true
  52824. },
  52825. ]
  52826. ))
  52827. characterMakers.push(() => makeCharacter(
  52828. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52829. {
  52830. borzoiFront: {
  52831. height: math.unit(6 + 9/12, "feet"),
  52832. name: "Front",
  52833. image: {
  52834. source: "./media/characters/rae/borzoi-front.svg",
  52835. extra: 1161/1098,
  52836. bottom: 31/1192
  52837. },
  52838. form: "borzoi",
  52839. default: true
  52840. },
  52841. werewolfFront: {
  52842. height: math.unit(8 + 7/12, "feet"),
  52843. name: "Front",
  52844. image: {
  52845. source: "./media/characters/rae/werewolf-front.svg",
  52846. extra: 1411/1334,
  52847. bottom: 127/1538
  52848. },
  52849. form: "werewolf",
  52850. default: true
  52851. },
  52852. },
  52853. [
  52854. {
  52855. name: "Normal",
  52856. height: math.unit(6 + 9/12, "feet"),
  52857. default: true,
  52858. form: "borzoi"
  52859. },
  52860. {
  52861. name: "Normal",
  52862. height: math.unit(8 + 7/12, "feet"),
  52863. default: true,
  52864. form: "werewolf"
  52865. },
  52866. ],
  52867. {
  52868. "borzoi": {
  52869. name: "Borzoi",
  52870. default: true
  52871. },
  52872. "werewolf": {
  52873. name: "Werewolf",
  52874. },
  52875. }
  52876. ))
  52877. characterMakers.push(() => makeCharacter(
  52878. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52879. {
  52880. front: {
  52881. height: math.unit(8 + 7/12, "feet"),
  52882. weight: math.unit(482, "lb"),
  52883. name: "Front",
  52884. image: {
  52885. source: "./media/characters/kit/front.svg",
  52886. extra: 1247/1103,
  52887. bottom: 41/1288
  52888. }
  52889. },
  52890. back: {
  52891. height: math.unit(8 + 7/12, "feet"),
  52892. weight: math.unit(482, "lb"),
  52893. name: "Back",
  52894. image: {
  52895. source: "./media/characters/kit/back.svg",
  52896. extra: 1252/1123,
  52897. bottom: 21/1273
  52898. }
  52899. },
  52900. paw: {
  52901. height: math.unit(1.46, "feet"),
  52902. name: "Paw",
  52903. image: {
  52904. source: "./media/characters/kit/paw.svg"
  52905. }
  52906. },
  52907. },
  52908. [
  52909. {
  52910. name: "Normal",
  52911. height: math.unit(2.61, "meters"),
  52912. default: true
  52913. },
  52914. {
  52915. name: "\"Tall\"",
  52916. height: math.unit(8.21, "meters")
  52917. },
  52918. {
  52919. name: "Tall",
  52920. height: math.unit(19.6, "meters")
  52921. },
  52922. {
  52923. name: "Very Tall",
  52924. height: math.unit(57.91, "meters")
  52925. },
  52926. {
  52927. name: "Semi-Macro",
  52928. height: math.unit(138.64, "meters")
  52929. },
  52930. {
  52931. name: "Macro",
  52932. height: math.unit(831.99, "meters")
  52933. },
  52934. {
  52935. name: "EX-Macro",
  52936. height: math.unit(96451121, "meters")
  52937. },
  52938. {
  52939. name: "S1-Omnipotent",
  52940. height: math.unit(4.42074e+9, "meters")
  52941. },
  52942. {
  52943. name: "S2-Omnipotent",
  52944. height: math.unit(9.42074e+17, "meters")
  52945. },
  52946. {
  52947. name: "Omnipotent",
  52948. height: math.unit(4.23112e+24, "meters")
  52949. },
  52950. {
  52951. name: "Hypergod",
  52952. height: math.unit(5.05176e+27, "meters")
  52953. },
  52954. {
  52955. name: "Hypergod-EX",
  52956. height: math.unit(9.45532e+49, "meters")
  52957. },
  52958. {
  52959. name: "Hypergod-SP",
  52960. height: math.unit(9.45532e+195, "meters")
  52961. },
  52962. ]
  52963. ))
  52964. characterMakers.push(() => makeCharacter(
  52965. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52966. {
  52967. side: {
  52968. height: math.unit(0.6, "meters"),
  52969. weight: math.unit(24, "kg"),
  52970. name: "Side",
  52971. image: {
  52972. source: "./media/characters/celeste/side.svg",
  52973. extra: 810/517,
  52974. bottom: 53/863
  52975. }
  52976. },
  52977. },
  52978. [
  52979. {
  52980. name: "Velociraptor",
  52981. height: math.unit(0.6, "meters"),
  52982. default: true
  52983. },
  52984. {
  52985. name: "Utahraptor",
  52986. height: math.unit(1.8, "meters")
  52987. },
  52988. {
  52989. name: "Gallimimus",
  52990. height: math.unit(4.0, "meters")
  52991. },
  52992. {
  52993. name: "Large",
  52994. height: math.unit(20, "meters")
  52995. },
  52996. {
  52997. name: "Planetary",
  52998. height: math.unit(50, "megameters")
  52999. },
  53000. {
  53001. name: "Stellar",
  53002. height: math.unit(1.5, "gigameters")
  53003. },
  53004. {
  53005. name: "Galactic",
  53006. height: math.unit(100, "exameters")
  53007. },
  53008. ]
  53009. ))
  53010. characterMakers.push(() => makeCharacter(
  53011. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  53012. {
  53013. front: {
  53014. height: math.unit(6, "feet"),
  53015. weight: math.unit(210, "lb"),
  53016. name: "Front",
  53017. image: {
  53018. source: "./media/characters/glacia/front.svg",
  53019. extra: 958/901,
  53020. bottom: 45/1003
  53021. }
  53022. },
  53023. },
  53024. [
  53025. {
  53026. name: "Macro",
  53027. height: math.unit(1000, "meters"),
  53028. default: true
  53029. },
  53030. ]
  53031. ))
  53032. characterMakers.push(() => makeCharacter(
  53033. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  53034. {
  53035. front: {
  53036. height: math.unit(4, "meters"),
  53037. name: "Front",
  53038. image: {
  53039. source: "./media/characters/giri/front.svg",
  53040. extra: 966/894,
  53041. bottom: 21/987
  53042. }
  53043. },
  53044. },
  53045. [
  53046. {
  53047. name: "Normal",
  53048. height: math.unit(4, "meters"),
  53049. default: true
  53050. },
  53051. ]
  53052. ))
  53053. characterMakers.push(() => makeCharacter(
  53054. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  53055. {
  53056. back: {
  53057. height: math.unit(4, "feet"),
  53058. weight: math.unit(37, "lb"),
  53059. name: "Back",
  53060. image: {
  53061. source: "./media/characters/tin/back.svg",
  53062. extra: 845/780,
  53063. bottom: 28/873
  53064. }
  53065. },
  53066. },
  53067. [
  53068. {
  53069. name: "Normal",
  53070. height: math.unit(4, "feet"),
  53071. default: true
  53072. },
  53073. ]
  53074. ))
  53075. characterMakers.push(() => makeCharacter(
  53076. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  53077. {
  53078. front: {
  53079. height: math.unit(25, "feet"),
  53080. name: "Front",
  53081. image: {
  53082. source: "./media/characters/cadenza-vivace/front.svg",
  53083. extra: 1842/1578,
  53084. bottom: 30/1872
  53085. }
  53086. },
  53087. },
  53088. [
  53089. {
  53090. name: "Macro",
  53091. height: math.unit(25, "feet"),
  53092. default: true
  53093. },
  53094. ]
  53095. ))
  53096. characterMakers.push(() => makeCharacter(
  53097. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  53098. {
  53099. front: {
  53100. height: math.unit(10, "feet"),
  53101. weight: math.unit(625, "kg"),
  53102. name: "Front",
  53103. image: {
  53104. source: "./media/characters/zain/front.svg",
  53105. extra: 1682/1498,
  53106. bottom: 223/1905
  53107. }
  53108. },
  53109. back: {
  53110. height: math.unit(10, "feet"),
  53111. weight: math.unit(625, "kg"),
  53112. name: "Back",
  53113. image: {
  53114. source: "./media/characters/zain/back.svg",
  53115. extra: 1814/1657,
  53116. bottom: 152/1966
  53117. }
  53118. },
  53119. head: {
  53120. height: math.unit(10, "feet"),
  53121. weight: math.unit(625, "kg"),
  53122. name: "Head",
  53123. image: {
  53124. source: "./media/characters/zain/head.svg",
  53125. extra: 1059/762,
  53126. bottom: 0/1059
  53127. }
  53128. },
  53129. },
  53130. [
  53131. {
  53132. name: "Normal",
  53133. height: math.unit(10, "feet"),
  53134. default: true
  53135. },
  53136. ]
  53137. ))
  53138. characterMakers.push(() => makeCharacter(
  53139. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53140. {
  53141. front: {
  53142. height: math.unit(6 + 5/12, "feet"),
  53143. weight: math.unit(750, "lb"),
  53144. name: "Front",
  53145. image: {
  53146. source: "./media/characters/ruchex/front.svg",
  53147. extra: 877/820,
  53148. bottom: 17/894
  53149. },
  53150. extraAttributes: {
  53151. "width": {
  53152. name: "Width",
  53153. power: 1,
  53154. type: "length",
  53155. base: math.unit(4.757, "feet")
  53156. },
  53157. }
  53158. },
  53159. },
  53160. [
  53161. {
  53162. name: "Normal",
  53163. height: math.unit(6 + 5/12, "feet"),
  53164. default: true
  53165. },
  53166. ]
  53167. ))
  53168. characterMakers.push(() => makeCharacter(
  53169. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53170. {
  53171. dressedFront: {
  53172. height: math.unit(191, "cm"),
  53173. weight: math.unit(80, "kg"),
  53174. name: "Front",
  53175. image: {
  53176. source: "./media/characters/buster/dressed-front.svg",
  53177. extra: 1022/973,
  53178. bottom: 69/1091
  53179. }
  53180. },
  53181. dressedBack: {
  53182. height: math.unit(191, "cm"),
  53183. weight: math.unit(80, "kg"),
  53184. name: "Back",
  53185. image: {
  53186. source: "./media/characters/buster/dressed-back.svg",
  53187. extra: 1018/970,
  53188. bottom: 55/1073
  53189. }
  53190. },
  53191. nudeFront: {
  53192. height: math.unit(191, "cm"),
  53193. weight: math.unit(80, "kg"),
  53194. name: "Front (Nude)",
  53195. image: {
  53196. source: "./media/characters/buster/nude-front.svg",
  53197. extra: 1022/973,
  53198. bottom: 69/1091
  53199. }
  53200. },
  53201. nudeBack: {
  53202. height: math.unit(191, "cm"),
  53203. weight: math.unit(80, "kg"),
  53204. name: "Back (Nude)",
  53205. image: {
  53206. source: "./media/characters/buster/nude-back.svg",
  53207. extra: 1018/970,
  53208. bottom: 55/1073
  53209. }
  53210. },
  53211. dick: {
  53212. height: math.unit(2.59, "feet"),
  53213. name: "Dick",
  53214. image: {
  53215. source: "./media/characters/buster/dick.svg"
  53216. }
  53217. },
  53218. ass: {
  53219. height: math.unit(1.2, "feet"),
  53220. name: "Ass",
  53221. image: {
  53222. source: "./media/characters/buster/ass.svg"
  53223. }
  53224. },
  53225. },
  53226. [
  53227. {
  53228. name: "Normal",
  53229. height: math.unit(191, "cm"),
  53230. default: true
  53231. },
  53232. ]
  53233. ))
  53234. characterMakers.push(() => makeCharacter(
  53235. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53236. {
  53237. side: {
  53238. height: math.unit(8.1, "feet"),
  53239. weight: math.unit(3500, "lb"),
  53240. name: "Side",
  53241. image: {
  53242. source: "./media/characters/sonya/side.svg",
  53243. extra: 1730/1317,
  53244. bottom: 86/1816
  53245. }
  53246. },
  53247. },
  53248. [
  53249. {
  53250. name: "Normal",
  53251. height: math.unit(8.1, "feet"),
  53252. default: true
  53253. },
  53254. ]
  53255. ))
  53256. characterMakers.push(() => makeCharacter(
  53257. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53258. {
  53259. front: {
  53260. height: math.unit(6, "feet"),
  53261. weight: math.unit(150, "lb"),
  53262. name: "Front",
  53263. image: {
  53264. source: "./media/characters/cadence-andrysiak/front.svg",
  53265. extra: 1164/1121,
  53266. bottom: 60/1224
  53267. }
  53268. },
  53269. back: {
  53270. height: math.unit(6, "feet"),
  53271. weight: math.unit(150, "lb"),
  53272. name: "Back",
  53273. image: {
  53274. source: "./media/characters/cadence-andrysiak/back.svg",
  53275. extra: 1200/1165,
  53276. bottom: 9/1209
  53277. }
  53278. },
  53279. dressed: {
  53280. height: math.unit(6, "feet"),
  53281. weight: math.unit(150, "lb"),
  53282. name: "Dressed",
  53283. image: {
  53284. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53285. extra: 1164/1121,
  53286. bottom: 60/1224
  53287. }
  53288. },
  53289. },
  53290. [
  53291. {
  53292. name: "Micro",
  53293. height: math.unit(1, "mm")
  53294. },
  53295. {
  53296. name: "Normal",
  53297. height: math.unit(6, "feet"),
  53298. default: true
  53299. },
  53300. ]
  53301. ))
  53302. characterMakers.push(() => makeCharacter(
  53303. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53304. {
  53305. front: {
  53306. height: math.unit(60, "inches"),
  53307. weight: math.unit(16, "lb"),
  53308. preyCapacity: math.unit(80, "liters"),
  53309. name: "Front",
  53310. image: {
  53311. source: "./media/characters/penny-lynx/front.svg",
  53312. extra: 1959/1769,
  53313. bottom: 49/2008
  53314. }
  53315. },
  53316. },
  53317. [
  53318. {
  53319. name: "Nokia",
  53320. height: math.unit(2, "inches")
  53321. },
  53322. {
  53323. name: "Desktop",
  53324. height: math.unit(24, "inches")
  53325. },
  53326. {
  53327. name: "TV",
  53328. height: math.unit(60, "inches")
  53329. },
  53330. {
  53331. name: "Jumbotron",
  53332. height: math.unit(12, "feet")
  53333. },
  53334. {
  53335. name: "Billboard",
  53336. height: math.unit(48, "feet"),
  53337. default: true
  53338. },
  53339. {
  53340. name: "IMAX",
  53341. height: math.unit(96, "feet")
  53342. },
  53343. {
  53344. name: "SINGULARITY",
  53345. height: math.unit(864938, "miles")
  53346. },
  53347. ]
  53348. ))
  53349. characterMakers.push(() => makeCharacter(
  53350. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53351. {
  53352. front: {
  53353. height: math.unit(5 + 4/12, "feet"),
  53354. weight: math.unit(230, "lb"),
  53355. name: "Front",
  53356. image: {
  53357. source: "./media/characters/sukebe/front.svg",
  53358. extra: 2130/2038,
  53359. bottom: 90/2220
  53360. }
  53361. },
  53362. back: {
  53363. height: math.unit(3.48, "feet"),
  53364. weight: math.unit(230, "lb"),
  53365. name: "Back",
  53366. image: {
  53367. source: "./media/characters/sukebe/back.svg",
  53368. extra: 1670/1604,
  53369. bottom: 0/1670
  53370. }
  53371. },
  53372. },
  53373. [
  53374. {
  53375. name: "Normal",
  53376. height: math.unit(5 + 4/12, "feet"),
  53377. default: true
  53378. },
  53379. ]
  53380. ))
  53381. characterMakers.push(() => makeCharacter(
  53382. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53383. {
  53384. front: {
  53385. height: math.unit(6, "feet"),
  53386. name: "Front",
  53387. image: {
  53388. source: "./media/characters/nylla/front.svg",
  53389. extra: 1868/1699,
  53390. bottom: 97/1965
  53391. }
  53392. },
  53393. back: {
  53394. height: math.unit(6, "feet"),
  53395. name: "Back",
  53396. image: {
  53397. source: "./media/characters/nylla/back.svg",
  53398. extra: 1889/1712,
  53399. bottom: 93/1982
  53400. }
  53401. },
  53402. frontNsfw: {
  53403. height: math.unit(6, "feet"),
  53404. name: "Front (NSFW)",
  53405. image: {
  53406. source: "./media/characters/nylla/front-nsfw.svg",
  53407. extra: 1868/1699,
  53408. bottom: 97/1965
  53409. },
  53410. extraAttributes: {
  53411. "dickLength": {
  53412. name: "Dick Length",
  53413. power: 1,
  53414. type: "length",
  53415. base: math.unit(1.4, "feet")
  53416. },
  53417. "cumVolume": {
  53418. name: "Cum Volume",
  53419. power: 3,
  53420. type: "volume",
  53421. base: math.unit(100, "mL")
  53422. },
  53423. }
  53424. },
  53425. backNsfw: {
  53426. height: math.unit(6, "feet"),
  53427. name: "Back (NSFW)",
  53428. image: {
  53429. source: "./media/characters/nylla/back-nsfw.svg",
  53430. extra: 1889/1712,
  53431. bottom: 93/1982
  53432. }
  53433. },
  53434. maw: {
  53435. height: math.unit(2.10, "feet"),
  53436. name: "Maw",
  53437. image: {
  53438. source: "./media/characters/nylla/maw.svg"
  53439. }
  53440. },
  53441. paws: {
  53442. height: math.unit(2.06, "feet"),
  53443. name: "Paws",
  53444. image: {
  53445. source: "./media/characters/nylla/paws.svg"
  53446. }
  53447. },
  53448. muzzle: {
  53449. height: math.unit(0.61, "feet"),
  53450. name: "Muzzle",
  53451. image: {
  53452. source: "./media/characters/nylla/muzzle.svg"
  53453. }
  53454. },
  53455. sheath: {
  53456. height: math.unit(1.305, "feet"),
  53457. name: "Sheath",
  53458. image: {
  53459. source: "./media/characters/nylla/sheath.svg"
  53460. }
  53461. },
  53462. },
  53463. [
  53464. {
  53465. name: "Micro",
  53466. height: math.unit(7.5, "inches")
  53467. },
  53468. {
  53469. name: "Normal",
  53470. height: math.unit(7, "feet"),
  53471. default: true
  53472. },
  53473. {
  53474. name: "Macro",
  53475. height: math.unit(60, "feet")
  53476. },
  53477. {
  53478. name: "Mega",
  53479. height: math.unit(200, "feet")
  53480. },
  53481. ]
  53482. ))
  53483. characterMakers.push(() => makeCharacter(
  53484. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53485. {
  53486. front: {
  53487. height: math.unit(10, "feet"),
  53488. weight: math.unit(2300, "lb"),
  53489. name: "Front",
  53490. image: {
  53491. source: "./media/characters/hunt3r/front.svg",
  53492. extra: 1909/1742,
  53493. bottom: 46/1955
  53494. }
  53495. },
  53496. },
  53497. [
  53498. {
  53499. name: "Normal",
  53500. height: math.unit(10, "feet"),
  53501. default: true
  53502. },
  53503. ]
  53504. ))
  53505. characterMakers.push(() => makeCharacter(
  53506. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53507. {
  53508. dressed: {
  53509. height: math.unit(11, "feet"),
  53510. weight: math.unit(18500, "lb"),
  53511. preyCapacity: math.unit(9, "people"),
  53512. name: "Dressed",
  53513. image: {
  53514. source: "./media/characters/cylphis/dressed.svg",
  53515. extra: 1028/1003,
  53516. bottom: 75/1103
  53517. },
  53518. },
  53519. undressed: {
  53520. height: math.unit(11, "feet"),
  53521. weight: math.unit(18500, "lb"),
  53522. preyCapacity: math.unit(9, "people"),
  53523. name: "Undressed",
  53524. image: {
  53525. source: "./media/characters/cylphis/undressed.svg",
  53526. extra: 1028/1003,
  53527. bottom: 75/1103
  53528. }
  53529. },
  53530. full: {
  53531. height: math.unit(11, "feet"),
  53532. weight: math.unit(18500 + 150*9, "lb"),
  53533. preyCapacity: math.unit(9, "people"),
  53534. name: "Full",
  53535. image: {
  53536. source: "./media/characters/cylphis/full.svg",
  53537. extra: 1028/1003,
  53538. bottom: 75/1103
  53539. }
  53540. },
  53541. },
  53542. [
  53543. {
  53544. name: "Small",
  53545. height: math.unit(8, "feet")
  53546. },
  53547. {
  53548. name: "Normal",
  53549. height: math.unit(11, "feet"),
  53550. default: true
  53551. },
  53552. ]
  53553. ))
  53554. characterMakers.push(() => makeCharacter(
  53555. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53556. {
  53557. front: {
  53558. height: math.unit(2 + 7/12, "feet"),
  53559. name: "Front",
  53560. image: {
  53561. source: "./media/characters/orishan/front.svg",
  53562. extra: 1058/1023,
  53563. bottom: 23/1081
  53564. }
  53565. },
  53566. back: {
  53567. height: math.unit(2 + 7/12, "feet"),
  53568. name: "Back",
  53569. image: {
  53570. source: "./media/characters/orishan/back.svg",
  53571. extra: 1058/1023,
  53572. bottom: 23/1081
  53573. }
  53574. },
  53575. },
  53576. [
  53577. {
  53578. name: "Micro",
  53579. height: math.unit(2, "cm")
  53580. },
  53581. {
  53582. name: "Normal",
  53583. height: math.unit(2 + 7/12, "feet"),
  53584. default: true
  53585. },
  53586. ]
  53587. ))
  53588. characterMakers.push(() => makeCharacter(
  53589. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53590. {
  53591. front: {
  53592. height: math.unit(3, "meters"),
  53593. weight: math.unit(508, "kg"),
  53594. name: "Front",
  53595. image: {
  53596. source: "./media/characters/seranis/front.svg",
  53597. extra: 1478/1454,
  53598. bottom: 41/1519
  53599. }
  53600. },
  53601. },
  53602. [
  53603. {
  53604. name: "Normal",
  53605. height: math.unit(3, "meters"),
  53606. default: true
  53607. },
  53608. {
  53609. name: "Macro",
  53610. height: math.unit(108, "meters")
  53611. },
  53612. {
  53613. name: "Megamacro",
  53614. height: math.unit(1250, "meters")
  53615. },
  53616. ]
  53617. ))
  53618. characterMakers.push(() => makeCharacter(
  53619. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53620. {
  53621. undressed: {
  53622. height: math.unit(5 + 3/12, "feet"),
  53623. name: "Undressed",
  53624. image: {
  53625. source: "./media/characters/ankou/undressed.svg",
  53626. extra: 1301/1213,
  53627. bottom: 87/1388
  53628. }
  53629. },
  53630. dressed: {
  53631. height: math.unit(5 + 3/12, "feet"),
  53632. name: "Dressed",
  53633. image: {
  53634. source: "./media/characters/ankou/dressed.svg",
  53635. extra: 1301/1213,
  53636. bottom: 87/1388
  53637. }
  53638. },
  53639. head: {
  53640. height: math.unit(1.61, "feet"),
  53641. name: "Head",
  53642. image: {
  53643. source: "./media/characters/ankou/head.svg"
  53644. }
  53645. },
  53646. },
  53647. [
  53648. {
  53649. name: "Normal",
  53650. height: math.unit(5 + 3/12, "feet"),
  53651. default: true
  53652. },
  53653. ]
  53654. ))
  53655. characterMakers.push(() => makeCharacter(
  53656. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53657. {
  53658. side: {
  53659. height: math.unit(6 + 3/12, "feet"),
  53660. weight: math.unit(200, "kg"),
  53661. name: "Side",
  53662. image: {
  53663. source: "./media/characters/juniper-skunktaur/side.svg",
  53664. extra: 1574/1229,
  53665. bottom: 38/1612
  53666. }
  53667. },
  53668. front: {
  53669. height: math.unit(6 + 3/12, "feet"),
  53670. weight: math.unit(200, "kg"),
  53671. name: "Front",
  53672. image: {
  53673. source: "./media/characters/juniper-skunktaur/front.svg",
  53674. extra: 1337/1278,
  53675. bottom: 22/1359
  53676. }
  53677. },
  53678. back: {
  53679. height: math.unit(6 + 3/12, "feet"),
  53680. weight: math.unit(200, "kg"),
  53681. name: "Back",
  53682. image: {
  53683. source: "./media/characters/juniper-skunktaur/back.svg",
  53684. extra: 1618/1273,
  53685. bottom: 13/1631
  53686. }
  53687. },
  53688. top: {
  53689. height: math.unit(2.62, "feet"),
  53690. weight: math.unit(200, "kg"),
  53691. name: "Top",
  53692. image: {
  53693. source: "./media/characters/juniper-skunktaur/top.svg"
  53694. }
  53695. },
  53696. },
  53697. [
  53698. {
  53699. name: "Normal",
  53700. height: math.unit(6 + 3/12, "feet"),
  53701. default: true
  53702. },
  53703. ]
  53704. ))
  53705. characterMakers.push(() => makeCharacter(
  53706. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53707. {
  53708. front: {
  53709. height: math.unit(20.5, "feet"),
  53710. name: "Front",
  53711. image: {
  53712. source: "./media/characters/rei/front.svg",
  53713. extra: 1349/1195,
  53714. bottom: 31/1380
  53715. }
  53716. },
  53717. back: {
  53718. height: math.unit(20.5, "feet"),
  53719. name: "Back",
  53720. image: {
  53721. source: "./media/characters/rei/back.svg",
  53722. extra: 1358/1204,
  53723. bottom: 22/1380
  53724. }
  53725. },
  53726. pawsDigi: {
  53727. height: math.unit(3.45, "feet"),
  53728. name: "Paws (Digi)",
  53729. image: {
  53730. source: "./media/characters/rei/paws-digi.svg"
  53731. }
  53732. },
  53733. pawsPlanti: {
  53734. height: math.unit(3.45, "feet"),
  53735. name: "Paws (Planti)",
  53736. image: {
  53737. source: "./media/characters/rei/paws-planti.svg"
  53738. }
  53739. },
  53740. },
  53741. [
  53742. {
  53743. name: "Normal",
  53744. height: math.unit(20.5, "feet"),
  53745. default: true
  53746. },
  53747. ]
  53748. ))
  53749. characterMakers.push(() => makeCharacter(
  53750. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53751. {
  53752. front: {
  53753. height: math.unit(5 + 11/12, "feet"),
  53754. name: "Front",
  53755. image: {
  53756. source: "./media/characters/carina/front.svg",
  53757. extra: 1720/1449,
  53758. bottom: 14/1734
  53759. }
  53760. },
  53761. back: {
  53762. height: math.unit(5 + 11/12, "feet"),
  53763. name: "Back",
  53764. image: {
  53765. source: "./media/characters/carina/back.svg",
  53766. extra: 1493/1445,
  53767. bottom: 17/1510
  53768. }
  53769. },
  53770. paw: {
  53771. height: math.unit(0.92, "feet"),
  53772. name: "Paw",
  53773. image: {
  53774. source: "./media/characters/carina/paw.svg"
  53775. }
  53776. },
  53777. },
  53778. [
  53779. {
  53780. name: "Normal",
  53781. height: math.unit(5 + 11/12, "feet"),
  53782. default: true
  53783. },
  53784. ]
  53785. ))
  53786. characterMakers.push(() => makeCharacter(
  53787. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53788. {
  53789. normal_front: {
  53790. height: math.unit(4.88, "meters"),
  53791. name: "Front",
  53792. image: {
  53793. source: "./media/characters/maya/normal-front.svg",
  53794. extra: 1222/1145,
  53795. bottom: 57/1279
  53796. },
  53797. form: "normal",
  53798. default: true
  53799. },
  53800. monstrous_front: {
  53801. height: math.unit(10, "meters"),
  53802. name: "Front",
  53803. image: {
  53804. source: "./media/characters/maya/monstrous-front.svg",
  53805. extra: 1523/1109,
  53806. bottom: 113/1636
  53807. },
  53808. form: "monstrous",
  53809. extraAttributes: {
  53810. "swallowSize": {
  53811. name: "Tailmaw Bite Size",
  53812. power: 3,
  53813. type: "volume",
  53814. base: math.unit(43000, "liters")
  53815. },
  53816. }
  53817. },
  53818. taur_front: {
  53819. height: math.unit(10, "meters"),
  53820. name: "Front",
  53821. image: {
  53822. source: "./media/characters/maya/taur-front.svg",
  53823. extra: 743/506,
  53824. bottom: 101/844
  53825. },
  53826. form: "taur",
  53827. },
  53828. },
  53829. [
  53830. {
  53831. name: "Normal",
  53832. height: math.unit(4.88, "meters"),
  53833. default: true,
  53834. form: "normal"
  53835. },
  53836. {
  53837. name: "Macro",
  53838. height: math.unit(38.1, "meters"),
  53839. form: "normal"
  53840. },
  53841. {
  53842. name: "Macro+",
  53843. height: math.unit(152.4, "meters"),
  53844. form: "normal"
  53845. },
  53846. {
  53847. name: "Macro++",
  53848. height: math.unit(16.09, "km"),
  53849. form: "normal"
  53850. },
  53851. {
  53852. name: "Mega-macro",
  53853. height: math.unit(700, "megameters"),
  53854. form: "normal"
  53855. },
  53856. {
  53857. name: "Satiated",
  53858. height: math.unit(10, "meters"),
  53859. default: true,
  53860. form: "monstrous"
  53861. },
  53862. {
  53863. name: "Hungry",
  53864. height: math.unit(75, "meters"),
  53865. form: "monstrous"
  53866. },
  53867. {
  53868. name: "Ravenous",
  53869. height: math.unit(500, "meters"),
  53870. form: "monstrous"
  53871. },
  53872. {
  53873. name: "\"Normal\"",
  53874. height: math.unit(10, "meters"),
  53875. form: "taur"
  53876. },
  53877. {
  53878. name: "Macro",
  53879. height: math.unit(50, "meters"),
  53880. form: "taur"
  53881. },
  53882. ],
  53883. {
  53884. "normal": {
  53885. name: "Normal",
  53886. default: true
  53887. },
  53888. "monstrous": {
  53889. name: "Monstrous",
  53890. },
  53891. "taur": {
  53892. name: "Taur",
  53893. },
  53894. }
  53895. ))
  53896. characterMakers.push(() => makeCharacter(
  53897. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53898. {
  53899. front: {
  53900. height: math.unit(6 + 2/12, "feet"),
  53901. weight: math.unit(500, "lb"),
  53902. preyCapacity: math.unit(4, "people"),
  53903. name: "Front",
  53904. image: {
  53905. source: "./media/characters/yepir/front.svg"
  53906. }
  53907. },
  53908. side: {
  53909. height: math.unit(6 + 2/12, "feet"),
  53910. weight: math.unit(500, "lb"),
  53911. preyCapacity: math.unit(4, "people"),
  53912. name: "Side",
  53913. image: {
  53914. source: "./media/characters/yepir/side.svg"
  53915. }
  53916. },
  53917. paw: {
  53918. height: math.unit(1.05, "feet"),
  53919. name: "Paw",
  53920. image: {
  53921. source: "./media/characters/yepir/paw.svg"
  53922. }
  53923. },
  53924. },
  53925. [
  53926. {
  53927. name: "Normal",
  53928. height: math.unit(6 + 2/12, "feet"),
  53929. default: true
  53930. },
  53931. ]
  53932. ))
  53933. characterMakers.push(() => makeCharacter(
  53934. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53935. {
  53936. front: {
  53937. height: math.unit(5 + 4/12, "feet"),
  53938. name: "Front",
  53939. image: {
  53940. source: "./media/characters/russec/front.svg",
  53941. extra: 1926/1626,
  53942. bottom: 72/1998
  53943. }
  53944. },
  53945. back: {
  53946. height: math.unit(5 + 4/12, "feet"),
  53947. name: "Back",
  53948. image: {
  53949. source: "./media/characters/russec/back.svg",
  53950. extra: 1910/1591,
  53951. bottom: 48/1958
  53952. }
  53953. },
  53954. },
  53955. [
  53956. {
  53957. name: "Small",
  53958. height: math.unit(5 + 4/12, "feet")
  53959. },
  53960. {
  53961. name: "Normal",
  53962. height: math.unit(72, "feet"),
  53963. default: true
  53964. },
  53965. ]
  53966. ))
  53967. characterMakers.push(() => makeCharacter(
  53968. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53969. {
  53970. side: {
  53971. height: math.unit(12, "feet"),
  53972. name: "Side",
  53973. image: {
  53974. source: "./media/characters/cianus/side.svg",
  53975. extra: 808/526,
  53976. bottom: 61/869
  53977. }
  53978. },
  53979. },
  53980. [
  53981. {
  53982. name: "Normal",
  53983. height: math.unit(12, "feet"),
  53984. default: true
  53985. },
  53986. ]
  53987. ))
  53988. characterMakers.push(() => makeCharacter(
  53989. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53990. {
  53991. front: {
  53992. height: math.unit(9 + 6/12, "feet"),
  53993. weight: math.unit(300, "lb"),
  53994. name: "Front",
  53995. image: {
  53996. source: "./media/characters/ahab/front.svg",
  53997. extra: 1897/1868,
  53998. bottom: 121/2018
  53999. }
  54000. },
  54001. frontNsfw: {
  54002. height: math.unit(9 + 6/12, "feet"),
  54003. weight: math.unit(300, "lb"),
  54004. name: "Front-nsfw",
  54005. image: {
  54006. source: "./media/characters/ahab/front-nsfw.svg",
  54007. extra: 1897/1868,
  54008. bottom: 121/2018
  54009. }
  54010. },
  54011. },
  54012. [
  54013. {
  54014. name: "Normal",
  54015. height: math.unit(9 + 6/12, "feet")
  54016. },
  54017. {
  54018. name: "Macro",
  54019. height: math.unit(657, "feet"),
  54020. default: true
  54021. },
  54022. ]
  54023. ))
  54024. characterMakers.push(() => makeCharacter(
  54025. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  54026. {
  54027. front: {
  54028. height: math.unit(2.69, "meters"),
  54029. weight: math.unit(132, "kg"),
  54030. name: "Front",
  54031. image: {
  54032. source: "./media/characters/aarkus/front.svg",
  54033. extra: 1400/1231,
  54034. bottom: 34/1434
  54035. }
  54036. },
  54037. back: {
  54038. height: math.unit(2.69, "meters"),
  54039. weight: math.unit(132, "kg"),
  54040. name: "Back",
  54041. image: {
  54042. source: "./media/characters/aarkus/back.svg",
  54043. extra: 1381/1218,
  54044. bottom: 30/1411
  54045. }
  54046. },
  54047. frontNsfw: {
  54048. height: math.unit(2.69, "meters"),
  54049. weight: math.unit(132, "kg"),
  54050. name: "Front (NSFW)",
  54051. image: {
  54052. source: "./media/characters/aarkus/front-nsfw.svg",
  54053. extra: 1400/1231,
  54054. bottom: 34/1434
  54055. }
  54056. },
  54057. foot: {
  54058. height: math.unit(1.45, "feet"),
  54059. name: "Foot",
  54060. image: {
  54061. source: "./media/characters/aarkus/foot.svg"
  54062. }
  54063. },
  54064. head: {
  54065. height: math.unit(2.85, "feet"),
  54066. name: "Head",
  54067. image: {
  54068. source: "./media/characters/aarkus/head.svg"
  54069. }
  54070. },
  54071. headAlt: {
  54072. height: math.unit(3.07, "feet"),
  54073. name: "Head (Alt)",
  54074. image: {
  54075. source: "./media/characters/aarkus/head-alt.svg"
  54076. }
  54077. },
  54078. mouth: {
  54079. height: math.unit(1.25, "feet"),
  54080. name: "Mouth",
  54081. image: {
  54082. source: "./media/characters/aarkus/mouth.svg"
  54083. }
  54084. },
  54085. dick: {
  54086. height: math.unit(1.77, "feet"),
  54087. name: "Dick",
  54088. image: {
  54089. source: "./media/characters/aarkus/dick.svg"
  54090. }
  54091. },
  54092. },
  54093. [
  54094. {
  54095. name: "Normal",
  54096. height: math.unit(2.69, "meters"),
  54097. default: true
  54098. },
  54099. {
  54100. name: "Macro",
  54101. height: math.unit(269, "meters")
  54102. },
  54103. {
  54104. name: "Macro+",
  54105. height: math.unit(672.5, "meters")
  54106. },
  54107. {
  54108. name: "Megamacro",
  54109. height: math.unit(2.017, "km")
  54110. },
  54111. ]
  54112. ))
  54113. characterMakers.push(() => makeCharacter(
  54114. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54115. {
  54116. front: {
  54117. height: math.unit(23.47, "cm"),
  54118. weight: math.unit(600, "grams"),
  54119. name: "Front",
  54120. image: {
  54121. source: "./media/characters/diode/front.svg",
  54122. extra: 1778/1396,
  54123. bottom: 95/1873
  54124. }
  54125. },
  54126. side: {
  54127. height: math.unit(23.47, "cm"),
  54128. weight: math.unit(600, "grams"),
  54129. name: "Side",
  54130. image: {
  54131. source: "./media/characters/diode/side.svg",
  54132. extra: 1831/1404,
  54133. bottom: 86/1917
  54134. }
  54135. },
  54136. wings: {
  54137. height: math.unit(0.683, "feet"),
  54138. name: "Wings",
  54139. image: {
  54140. source: "./media/characters/diode/wings.svg"
  54141. }
  54142. },
  54143. },
  54144. [
  54145. {
  54146. name: "Normal",
  54147. height: math.unit(23.47, "cm"),
  54148. default: true
  54149. },
  54150. ]
  54151. ))
  54152. characterMakers.push(() => makeCharacter(
  54153. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54154. {
  54155. front: {
  54156. height: math.unit(6 + 3/12, "feet"),
  54157. weight: math.unit(250, "lb"),
  54158. name: "Front",
  54159. image: {
  54160. source: "./media/characters/reika/front.svg",
  54161. extra: 1120/1078,
  54162. bottom: 86/1206
  54163. }
  54164. },
  54165. },
  54166. [
  54167. {
  54168. name: "Normal",
  54169. height: math.unit(6 + 3/12, "feet"),
  54170. default: true
  54171. },
  54172. ]
  54173. ))
  54174. characterMakers.push(() => makeCharacter(
  54175. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54176. {
  54177. front: {
  54178. height: math.unit(16 + 8/12, "feet"),
  54179. weight: math.unit(9000, "lb"),
  54180. name: "Front",
  54181. image: {
  54182. source: "./media/characters/lokuto-takama/front.svg",
  54183. extra: 1774/1632,
  54184. bottom: 147/1921
  54185. },
  54186. extraAttributes: {
  54187. "bustWidth": {
  54188. name: "Bust Width",
  54189. power: 1,
  54190. type: "length",
  54191. base: math.unit(2.4, "meters")
  54192. },
  54193. "breastWeight": {
  54194. name: "Breast Weight",
  54195. power: 3,
  54196. type: "mass",
  54197. base: math.unit(1000, "kg")
  54198. },
  54199. }
  54200. },
  54201. },
  54202. [
  54203. {
  54204. name: "Normal",
  54205. height: math.unit(16 + 8/12, "feet"),
  54206. default: true
  54207. },
  54208. ]
  54209. ))
  54210. characterMakers.push(() => makeCharacter(
  54211. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54212. {
  54213. front: {
  54214. height: math.unit(10, "cm"),
  54215. weight: math.unit(850, "grams"),
  54216. name: "Front",
  54217. image: {
  54218. source: "./media/characters/owak-bone/front.svg",
  54219. extra: 1965/1801,
  54220. bottom: 31/1996
  54221. }
  54222. },
  54223. },
  54224. [
  54225. {
  54226. name: "Normal",
  54227. height: math.unit(10, "cm"),
  54228. default: true
  54229. },
  54230. ]
  54231. ))
  54232. characterMakers.push(() => makeCharacter(
  54233. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54234. {
  54235. front: {
  54236. height: math.unit(2 + 6/12, "feet"),
  54237. weight: math.unit(9, "lb"),
  54238. name: "Front",
  54239. image: {
  54240. source: "./media/characters/muffin/front.svg",
  54241. extra: 1220/1195,
  54242. bottom: 84/1304
  54243. }
  54244. },
  54245. },
  54246. [
  54247. {
  54248. name: "Normal",
  54249. height: math.unit(2 + 6/12, "feet"),
  54250. default: true
  54251. },
  54252. ]
  54253. ))
  54254. characterMakers.push(() => makeCharacter(
  54255. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54256. {
  54257. front: {
  54258. height: math.unit(7, "feet"),
  54259. name: "Front",
  54260. image: {
  54261. source: "./media/characters/chimera/front.svg",
  54262. extra: 1752/1614,
  54263. bottom: 68/1820
  54264. }
  54265. },
  54266. },
  54267. [
  54268. {
  54269. name: "Normal",
  54270. height: math.unit(7, "feet")
  54271. },
  54272. {
  54273. name: "Gigamacro",
  54274. height: math.unit(2.9, "gigameters"),
  54275. default: true
  54276. },
  54277. {
  54278. name: "Universal",
  54279. height: math.unit(1.56e26, "yottameters")
  54280. },
  54281. ]
  54282. ))
  54283. characterMakers.push(() => makeCharacter(
  54284. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54285. {
  54286. front: {
  54287. height: math.unit(3, "feet"),
  54288. weight: math.unit(20, "lb"),
  54289. name: "Front",
  54290. image: {
  54291. source: "./media/characters/kit-fennec-fox/front.svg",
  54292. extra: 1027/932,
  54293. bottom: 16/1043
  54294. }
  54295. },
  54296. back: {
  54297. height: math.unit(3, "feet"),
  54298. weight: math.unit(20, "lb"),
  54299. name: "Back",
  54300. image: {
  54301. source: "./media/characters/kit-fennec-fox/back.svg",
  54302. extra: 1027/932,
  54303. bottom: 16/1043
  54304. }
  54305. },
  54306. },
  54307. [
  54308. {
  54309. name: "Normal",
  54310. height: math.unit(3, "feet"),
  54311. default: true
  54312. },
  54313. ]
  54314. ))
  54315. characterMakers.push(() => makeCharacter(
  54316. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54317. {
  54318. front: {
  54319. height: math.unit(167, "cm"),
  54320. name: "Front",
  54321. image: {
  54322. source: "./media/characters/blue-otter/front.svg",
  54323. extra: 1951/1920,
  54324. bottom: 31/1982
  54325. }
  54326. },
  54327. },
  54328. [
  54329. {
  54330. name: "Otter-Sized",
  54331. height: math.unit(100, "cm")
  54332. },
  54333. {
  54334. name: "Normal",
  54335. height: math.unit(167, "cm"),
  54336. default: true
  54337. },
  54338. ]
  54339. ))
  54340. characterMakers.push(() => makeCharacter(
  54341. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54342. {
  54343. front: {
  54344. height: math.unit(4 + 4/12, "feet"),
  54345. name: "Front",
  54346. image: {
  54347. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54348. extra: 1072/1067,
  54349. bottom: 117/1189
  54350. }
  54351. },
  54352. back: {
  54353. height: math.unit(4 + 4/12, "feet"),
  54354. name: "Back",
  54355. image: {
  54356. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54357. extra: 1135/1129,
  54358. bottom: 57/1192
  54359. }
  54360. },
  54361. head: {
  54362. height: math.unit(1.77, "feet"),
  54363. name: "Head",
  54364. image: {
  54365. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54366. }
  54367. },
  54368. },
  54369. [
  54370. {
  54371. name: "Normal",
  54372. height: math.unit(4 + 4/12, "feet"),
  54373. default: true
  54374. },
  54375. ]
  54376. ))
  54377. characterMakers.push(() => makeCharacter(
  54378. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54379. {
  54380. front: {
  54381. height: math.unit(2, "inches"),
  54382. name: "Front",
  54383. image: {
  54384. source: "./media/characters/carley-hartford/front.svg",
  54385. extra: 1035/988,
  54386. bottom: 23/1058
  54387. }
  54388. },
  54389. back: {
  54390. height: math.unit(2, "inches"),
  54391. name: "Back",
  54392. image: {
  54393. source: "./media/characters/carley-hartford/back.svg",
  54394. extra: 1035/988,
  54395. bottom: 23/1058
  54396. }
  54397. },
  54398. dressed: {
  54399. height: math.unit(2, "inches"),
  54400. name: "Dressed",
  54401. image: {
  54402. source: "./media/characters/carley-hartford/dressed.svg",
  54403. extra: 651/620,
  54404. bottom: 0/651
  54405. }
  54406. },
  54407. },
  54408. [
  54409. {
  54410. name: "Micro",
  54411. height: math.unit(2, "inches"),
  54412. default: true
  54413. },
  54414. {
  54415. name: "Macro",
  54416. height: math.unit(6 + 3/12, "feet")
  54417. },
  54418. ]
  54419. ))
  54420. characterMakers.push(() => makeCharacter(
  54421. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54422. {
  54423. front: {
  54424. height: math.unit(2 + 3/12, "feet"),
  54425. weight: math.unit(15 + 7/16, "lb"),
  54426. name: "Front",
  54427. image: {
  54428. source: "./media/characters/duke/front.svg",
  54429. extra: 910/815,
  54430. bottom: 30/940
  54431. }
  54432. },
  54433. },
  54434. [
  54435. {
  54436. name: "Normal",
  54437. height: math.unit(2 + 3/12, "feet"),
  54438. default: true
  54439. },
  54440. ]
  54441. ))
  54442. characterMakers.push(() => makeCharacter(
  54443. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54444. {
  54445. front: {
  54446. height: math.unit(5 + 4/12, "feet"),
  54447. weight: math.unit(156, "lb"),
  54448. name: "Front",
  54449. image: {
  54450. source: "./media/characters/dein/front.svg",
  54451. extra: 855/815,
  54452. bottom: 48/903
  54453. }
  54454. },
  54455. side: {
  54456. height: math.unit(5 + 4/12, "feet"),
  54457. weight: math.unit(156, "lb"),
  54458. name: "side",
  54459. image: {
  54460. source: "./media/characters/dein/side.svg",
  54461. extra: 846/803,
  54462. bottom: 25/871
  54463. }
  54464. },
  54465. maw: {
  54466. height: math.unit(1.45, "feet"),
  54467. name: "Maw",
  54468. image: {
  54469. source: "./media/characters/dein/maw.svg"
  54470. }
  54471. },
  54472. },
  54473. [
  54474. {
  54475. name: "Ferret Sized",
  54476. height: math.unit(2 + 5/12, "feet")
  54477. },
  54478. {
  54479. name: "Normal",
  54480. height: math.unit(5 + 4/12, "feet"),
  54481. default: true
  54482. },
  54483. ]
  54484. ))
  54485. characterMakers.push(() => makeCharacter(
  54486. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54487. {
  54488. front: {
  54489. height: math.unit(84 + 8/12, "feet"),
  54490. weight: math.unit(942180, "lb"),
  54491. name: "Front",
  54492. image: {
  54493. source: "./media/characters/daurine-arima/front.svg",
  54494. extra: 1989/1782,
  54495. bottom: 37/2026
  54496. }
  54497. },
  54498. side: {
  54499. height: math.unit(84 + 8/12, "feet"),
  54500. weight: math.unit(942180, "lb"),
  54501. name: "Side",
  54502. image: {
  54503. source: "./media/characters/daurine-arima/side.svg",
  54504. extra: 1997/1790,
  54505. bottom: 21/2018
  54506. }
  54507. },
  54508. back: {
  54509. height: math.unit(84 + 8/12, "feet"),
  54510. weight: math.unit(942180, "lb"),
  54511. name: "Back",
  54512. image: {
  54513. source: "./media/characters/daurine-arima/back.svg",
  54514. extra: 1992/1800,
  54515. bottom: 12/2004
  54516. }
  54517. },
  54518. head: {
  54519. height: math.unit(15.5, "feet"),
  54520. name: "Head",
  54521. image: {
  54522. source: "./media/characters/daurine-arima/head.svg"
  54523. }
  54524. },
  54525. headAlt: {
  54526. height: math.unit(19.19, "feet"),
  54527. name: "Head (Alt)",
  54528. image: {
  54529. source: "./media/characters/daurine-arima/head-alt.svg"
  54530. }
  54531. },
  54532. },
  54533. [
  54534. {
  54535. name: "Minimum height",
  54536. height: math.unit(8 + 10/12, "feet")
  54537. },
  54538. {
  54539. name: "Comfort height",
  54540. height: math.unit(19 + 6 /12, "feet")
  54541. },
  54542. {
  54543. name: "\"Normal\" height",
  54544. height: math.unit(28 + 10/12, "feet")
  54545. },
  54546. {
  54547. name: "Base height",
  54548. height: math.unit(84 + 8/12, "feet"),
  54549. default: true
  54550. },
  54551. {
  54552. name: "Mini-macro",
  54553. height: math.unit(2360, "feet")
  54554. },
  54555. {
  54556. name: "Macro",
  54557. height: math.unit(10, "miles")
  54558. },
  54559. {
  54560. name: "Goddess",
  54561. height: math.unit(9.99e40, "yottameters")
  54562. },
  54563. ]
  54564. ))
  54565. characterMakers.push(() => makeCharacter(
  54566. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54567. {
  54568. front: {
  54569. height: math.unit(2.3, "meters"),
  54570. name: "Front",
  54571. image: {
  54572. source: "./media/characters/cilenomon/front.svg",
  54573. extra: 1963/1778,
  54574. bottom: 54/2017
  54575. }
  54576. },
  54577. },
  54578. [
  54579. {
  54580. name: "Normal",
  54581. height: math.unit(2.3, "meters"),
  54582. default: true
  54583. },
  54584. {
  54585. name: "Big",
  54586. height: math.unit(5, "meters")
  54587. },
  54588. {
  54589. name: "Macro",
  54590. height: math.unit(30, "meters")
  54591. },
  54592. {
  54593. name: "True",
  54594. height: math.unit(1, "universe")
  54595. },
  54596. ]
  54597. ))
  54598. characterMakers.push(() => makeCharacter(
  54599. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54600. {
  54601. front: {
  54602. height: math.unit(5, "feet"),
  54603. name: "Front",
  54604. image: {
  54605. source: "./media/characters/sen-mink/front.svg",
  54606. extra: 1727/1675,
  54607. bottom: 35/1762
  54608. }
  54609. },
  54610. },
  54611. [
  54612. {
  54613. name: "Normal",
  54614. height: math.unit(5, "feet"),
  54615. default: true
  54616. },
  54617. ]
  54618. ))
  54619. characterMakers.push(() => makeCharacter(
  54620. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54621. {
  54622. front: {
  54623. height: math.unit(5.42999, "feet"),
  54624. weight: math.unit(100, "lb"),
  54625. name: "Front",
  54626. image: {
  54627. source: "./media/characters/ophois/front.svg",
  54628. extra: 1429/1286,
  54629. bottom: 60/1489
  54630. }
  54631. },
  54632. },
  54633. [
  54634. {
  54635. name: "Normal",
  54636. height: math.unit(5.42999, "feet"),
  54637. default: true
  54638. },
  54639. ]
  54640. ))
  54641. characterMakers.push(() => makeCharacter(
  54642. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54643. {
  54644. front: {
  54645. height: math.unit(2, "meters"),
  54646. name: "Front",
  54647. image: {
  54648. source: "./media/characters/riley/front.svg",
  54649. extra: 1779/1754,
  54650. bottom: 139/1918
  54651. }
  54652. },
  54653. },
  54654. [
  54655. {
  54656. name: "Normal",
  54657. height: math.unit(2, "meters"),
  54658. default: true
  54659. },
  54660. ]
  54661. ))
  54662. characterMakers.push(() => makeCharacter(
  54663. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54664. {
  54665. front: {
  54666. height: math.unit(6 + 2/12, "feet"),
  54667. weight: math.unit(195, "lb"),
  54668. preyCapacity: math.unit(6, "people"),
  54669. name: "Front",
  54670. image: {
  54671. source: "./media/characters/shuken-flash/front.svg",
  54672. extra: 1905/1739,
  54673. bottom: 65/1970
  54674. }
  54675. },
  54676. back: {
  54677. height: math.unit(6 + 2/12, "feet"),
  54678. weight: math.unit(195, "lb"),
  54679. preyCapacity: math.unit(6, "people"),
  54680. name: "Back",
  54681. image: {
  54682. source: "./media/characters/shuken-flash/back.svg",
  54683. extra: 1912/1751,
  54684. bottom: 13/1925
  54685. }
  54686. },
  54687. },
  54688. [
  54689. {
  54690. name: "Normal",
  54691. height: math.unit(6 + 2/12, "feet"),
  54692. default: true
  54693. },
  54694. ]
  54695. ))
  54696. characterMakers.push(() => makeCharacter(
  54697. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54698. {
  54699. front: {
  54700. height: math.unit(5 + 9/12, "feet"),
  54701. weight: math.unit(150, "lb"),
  54702. name: "Front",
  54703. image: {
  54704. source: "./media/characters/plat/front.svg",
  54705. extra: 1816/1703,
  54706. bottom: 43/1859
  54707. }
  54708. },
  54709. side: {
  54710. height: math.unit(5 + 9/12, "feet"),
  54711. weight: math.unit(300, "lb"),
  54712. name: "Side",
  54713. image: {
  54714. source: "./media/characters/plat/side.svg",
  54715. extra: 1824/1699,
  54716. bottom: 18/1842
  54717. }
  54718. },
  54719. },
  54720. [
  54721. {
  54722. name: "Normal",
  54723. height: math.unit(5 + 9/12, "feet"),
  54724. default: true
  54725. },
  54726. ]
  54727. ))
  54728. characterMakers.push(() => makeCharacter(
  54729. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54730. {
  54731. front: {
  54732. height: math.unit(9, "feet"),
  54733. weight: math.unit(1800, "lb"),
  54734. name: "Front",
  54735. image: {
  54736. source: "./media/characters/elaine/front.svg",
  54737. extra: 1833/1354,
  54738. bottom: 25/1858
  54739. }
  54740. },
  54741. back: {
  54742. height: math.unit(8.8, "feet"),
  54743. weight: math.unit(1800, "lb"),
  54744. name: "Back",
  54745. image: {
  54746. source: "./media/characters/elaine/back.svg",
  54747. extra: 1641/1233,
  54748. bottom: 53/1694
  54749. }
  54750. },
  54751. },
  54752. [
  54753. {
  54754. name: "Normal",
  54755. height: math.unit(9, "feet"),
  54756. default: true
  54757. },
  54758. ]
  54759. ))
  54760. characterMakers.push(() => makeCharacter(
  54761. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54762. {
  54763. front: {
  54764. height: math.unit(17 + 9/12, "feet"),
  54765. weight: math.unit(8000, "lb"),
  54766. name: "Front",
  54767. image: {
  54768. source: "./media/characters/vera-raven/front.svg",
  54769. extra: 1457/1412,
  54770. bottom: 121/1578
  54771. }
  54772. },
  54773. side: {
  54774. height: math.unit(17 + 9/12, "feet"),
  54775. weight: math.unit(8000, "lb"),
  54776. name: "Side",
  54777. image: {
  54778. source: "./media/characters/vera-raven/side.svg",
  54779. extra: 1510/1464,
  54780. bottom: 54/1564
  54781. }
  54782. },
  54783. },
  54784. [
  54785. {
  54786. name: "Normal",
  54787. height: math.unit(17 + 9/12, "feet"),
  54788. default: true
  54789. },
  54790. ]
  54791. ))
  54792. characterMakers.push(() => makeCharacter(
  54793. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54794. {
  54795. dressed: {
  54796. height: math.unit(6 + 9/12, "feet"),
  54797. name: "Dressed",
  54798. image: {
  54799. source: "./media/characters/nakisha/dressed.svg",
  54800. extra: 1909/1757,
  54801. bottom: 48/1957
  54802. }
  54803. },
  54804. nude: {
  54805. height: math.unit(6 + 9/12, "feet"),
  54806. name: "Nude",
  54807. image: {
  54808. source: "./media/characters/nakisha/nude.svg",
  54809. extra: 1917/1765,
  54810. bottom: 34/1951
  54811. }
  54812. },
  54813. },
  54814. [
  54815. {
  54816. name: "Normal",
  54817. height: math.unit(6 + 9/12, "feet"),
  54818. default: true
  54819. },
  54820. ]
  54821. ))
  54822. characterMakers.push(() => makeCharacter(
  54823. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54824. {
  54825. front: {
  54826. height: math.unit(87, "meters"),
  54827. name: "Front",
  54828. image: {
  54829. source: "./media/characters/serafin/front.svg",
  54830. extra: 1919/1776,
  54831. bottom: 65/1984
  54832. }
  54833. },
  54834. },
  54835. [
  54836. {
  54837. name: "Normal",
  54838. height: math.unit(87, "meters"),
  54839. default: true
  54840. },
  54841. ]
  54842. ))
  54843. characterMakers.push(() => makeCharacter(
  54844. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54845. {
  54846. front: {
  54847. height: math.unit(6, "feet"),
  54848. weight: math.unit(200, "lb"),
  54849. name: "Front",
  54850. image: {
  54851. source: "./media/characters/poptart/front.svg",
  54852. extra: 615/583,
  54853. bottom: 23/638
  54854. }
  54855. },
  54856. back: {
  54857. height: math.unit(6, "feet"),
  54858. weight: math.unit(200, "lb"),
  54859. name: "Back",
  54860. image: {
  54861. source: "./media/characters/poptart/back.svg",
  54862. extra: 617/584,
  54863. bottom: 22/639
  54864. }
  54865. },
  54866. frontNsfw: {
  54867. height: math.unit(6, "feet"),
  54868. weight: math.unit(200, "lb"),
  54869. name: "Front (NSFW)",
  54870. image: {
  54871. source: "./media/characters/poptart/front-nsfw.svg",
  54872. extra: 615/583,
  54873. bottom: 23/638
  54874. }
  54875. },
  54876. backNsfw: {
  54877. height: math.unit(6, "feet"),
  54878. weight: math.unit(200, "lb"),
  54879. name: "Back (NSFW)",
  54880. image: {
  54881. source: "./media/characters/poptart/back-nsfw.svg",
  54882. extra: 617/584,
  54883. bottom: 22/639
  54884. }
  54885. },
  54886. hand: {
  54887. height: math.unit(1.14, "feet"),
  54888. name: "Hand",
  54889. image: {
  54890. source: "./media/characters/poptart/hand.svg"
  54891. }
  54892. },
  54893. foot: {
  54894. height: math.unit(1.5, "feet"),
  54895. name: "Foot",
  54896. image: {
  54897. source: "./media/characters/poptart/foot.svg"
  54898. }
  54899. },
  54900. },
  54901. [
  54902. {
  54903. name: "Normal",
  54904. height: math.unit(6, "feet"),
  54905. default: true
  54906. },
  54907. {
  54908. name: "Grande",
  54909. height: math.unit(350, "feet")
  54910. },
  54911. {
  54912. name: "Massif",
  54913. height: math.unit(967, "feet")
  54914. },
  54915. ]
  54916. ))
  54917. characterMakers.push(() => makeCharacter(
  54918. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54919. {
  54920. hyenaSide: {
  54921. height: math.unit(120, "cm"),
  54922. weight: math.unit(120, "lb"),
  54923. name: "Side",
  54924. image: {
  54925. source: "./media/characters/trance/hyena-side.svg",
  54926. extra: 998/904,
  54927. bottom: 76/1074
  54928. }
  54929. },
  54930. },
  54931. [
  54932. {
  54933. name: "Normal",
  54934. height: math.unit(120, "cm"),
  54935. default: true
  54936. },
  54937. {
  54938. name: "Dire",
  54939. height: math.unit(230, "cm")
  54940. },
  54941. {
  54942. name: "Macro",
  54943. height: math.unit(37, "feet")
  54944. },
  54945. ]
  54946. ))
  54947. characterMakers.push(() => makeCharacter(
  54948. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54949. {
  54950. front: {
  54951. height: math.unit(6 + 3/12, "feet"),
  54952. name: "Front",
  54953. image: {
  54954. source: "./media/characters/michael-berretta/front.svg",
  54955. extra: 515/494,
  54956. bottom: 20/535
  54957. }
  54958. },
  54959. back: {
  54960. height: math.unit(6 + 3/12, "feet"),
  54961. name: "Back",
  54962. image: {
  54963. source: "./media/characters/michael-berretta/back.svg",
  54964. extra: 520/497,
  54965. bottom: 21/541
  54966. }
  54967. },
  54968. frontNsfw: {
  54969. height: math.unit(6 + 3/12, "feet"),
  54970. name: "Front (NSFW)",
  54971. image: {
  54972. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54973. extra: 515/494,
  54974. bottom: 20/535
  54975. }
  54976. },
  54977. dick: {
  54978. height: math.unit(1, "feet"),
  54979. name: "Dick",
  54980. image: {
  54981. source: "./media/characters/michael-berretta/dick.svg"
  54982. }
  54983. },
  54984. },
  54985. [
  54986. {
  54987. name: "Normal",
  54988. height: math.unit(6 + 3/12, "feet"),
  54989. default: true
  54990. },
  54991. {
  54992. name: "Big",
  54993. height: math.unit(12, "feet")
  54994. },
  54995. {
  54996. name: "Macro",
  54997. height: math.unit(187.5, "feet")
  54998. },
  54999. ]
  55000. ))
  55001. characterMakers.push(() => makeCharacter(
  55002. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  55003. {
  55004. front: {
  55005. height: math.unit(9 + 9/12, "feet"),
  55006. weight: math.unit(1244, "lb"),
  55007. name: "Front",
  55008. image: {
  55009. source: "./media/characters/stella-edgecomb/front.svg",
  55010. extra: 1835/1706,
  55011. bottom: 49/1884
  55012. }
  55013. },
  55014. pen: {
  55015. height: math.unit(0.95, "feet"),
  55016. name: "Pen",
  55017. image: {
  55018. source: "./media/characters/stella-edgecomb/pen.svg"
  55019. }
  55020. },
  55021. },
  55022. [
  55023. {
  55024. name: "Cozy Bear",
  55025. height: math.unit(0.5, "inches")
  55026. },
  55027. {
  55028. name: "Normal",
  55029. height: math.unit(9 + 9/12, "feet"),
  55030. default: true
  55031. },
  55032. {
  55033. name: "Giga Bear",
  55034. height: math.unit(1, "mile")
  55035. },
  55036. {
  55037. name: "Great Bear",
  55038. height: math.unit(53, "miles")
  55039. },
  55040. {
  55041. name: "Goddess Bear",
  55042. height: math.unit(40000, "miles")
  55043. },
  55044. {
  55045. name: "Sun Bear",
  55046. height: math.unit(900000, "miles")
  55047. },
  55048. ]
  55049. ))
  55050. characterMakers.push(() => makeCharacter(
  55051. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  55052. {
  55053. anthroFront: {
  55054. height: math.unit(556, "cm"),
  55055. weight: math.unit(2650, "kg"),
  55056. preyCapacity: math.unit(3, "people"),
  55057. name: "Front",
  55058. image: {
  55059. source: "./media/characters/ash´iika/front.svg",
  55060. extra: 710/673,
  55061. bottom: 15/725
  55062. },
  55063. form: "anthro",
  55064. default: true
  55065. },
  55066. anthroSide: {
  55067. height: math.unit(556, "cm"),
  55068. weight: math.unit(2650, "kg"),
  55069. preyCapacity: math.unit(3, "people"),
  55070. name: "Side",
  55071. image: {
  55072. source: "./media/characters/ash´iika/side.svg",
  55073. extra: 696/676,
  55074. bottom: 13/709
  55075. },
  55076. form: "anthro"
  55077. },
  55078. anthroDressed: {
  55079. height: math.unit(556, "cm"),
  55080. weight: math.unit(2650, "kg"),
  55081. preyCapacity: math.unit(3, "people"),
  55082. name: "Dressed",
  55083. image: {
  55084. source: "./media/characters/ash´iika/dressed.svg",
  55085. extra: 710/673,
  55086. bottom: 15/725
  55087. },
  55088. form: "anthro"
  55089. },
  55090. anthroHead: {
  55091. height: math.unit(3.5, "feet"),
  55092. name: "Head",
  55093. image: {
  55094. source: "./media/characters/ash´iika/head.svg",
  55095. extra: 348/291,
  55096. bottom: 45/393
  55097. },
  55098. form: "anthro"
  55099. },
  55100. feralSide: {
  55101. height: math.unit(870, "cm"),
  55102. weight: math.unit(17500, "kg"),
  55103. preyCapacity: math.unit(15, "people"),
  55104. name: "Side",
  55105. image: {
  55106. source: "./media/characters/ash´iika/feral.svg",
  55107. extra: 595/199,
  55108. bottom: 7/602
  55109. },
  55110. form: "feral",
  55111. default: true,
  55112. },
  55113. },
  55114. [
  55115. {
  55116. name: "Normal",
  55117. height: math.unit(556, "cm"),
  55118. default: true,
  55119. form: "anthro"
  55120. },
  55121. {
  55122. name: "Macro",
  55123. height: math.unit(88, "meters"),
  55124. form: "anthro"
  55125. },
  55126. {
  55127. name: "Normal",
  55128. height: math.unit(870, "cm"),
  55129. default: true,
  55130. form: "feral"
  55131. },
  55132. {
  55133. name: "Large",
  55134. height: math.unit(25, "meters"),
  55135. form: "feral"
  55136. },
  55137. ],
  55138. {
  55139. "anthro": {
  55140. name: "Anthro",
  55141. default: true
  55142. },
  55143. "feral": {
  55144. name: "Feral",
  55145. },
  55146. }
  55147. ))
  55148. characterMakers.push(() => makeCharacter(
  55149. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55150. {
  55151. front: {
  55152. height: math.unit(10, "feet"),
  55153. weight: math.unit(800, "lb"),
  55154. name: "Front",
  55155. image: {
  55156. source: "./media/characters/yen/front.svg",
  55157. extra: 443/411,
  55158. bottom: 6/449
  55159. }
  55160. },
  55161. sleeping: {
  55162. height: math.unit(10, "feet"),
  55163. weight: math.unit(800, "lb"),
  55164. name: "Sleeping",
  55165. image: {
  55166. source: "./media/characters/yen/sleeping.svg",
  55167. extra: 470/422,
  55168. bottom: 0/470
  55169. }
  55170. },
  55171. head: {
  55172. height: math.unit(2.2, "feet"),
  55173. name: "Head",
  55174. image: {
  55175. source: "./media/characters/yen/head.svg"
  55176. }
  55177. },
  55178. headAlt: {
  55179. height: math.unit(2.1, "feet"),
  55180. name: "Head (Alt)",
  55181. image: {
  55182. source: "./media/characters/yen/head-alt.svg"
  55183. }
  55184. },
  55185. },
  55186. [
  55187. {
  55188. name: "Normal",
  55189. height: math.unit(10, "feet"),
  55190. default: true
  55191. },
  55192. ]
  55193. ))
  55194. characterMakers.push(() => makeCharacter(
  55195. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55196. {
  55197. front: {
  55198. height: math.unit(12, "feet"),
  55199. name: "Front",
  55200. image: {
  55201. source: "./media/characters/citra/front.svg",
  55202. extra: 1950/1710,
  55203. bottom: 47/1997
  55204. }
  55205. },
  55206. },
  55207. [
  55208. {
  55209. name: "Normal",
  55210. height: math.unit(12, "feet"),
  55211. default: true
  55212. },
  55213. ]
  55214. ))
  55215. characterMakers.push(() => makeCharacter(
  55216. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55217. {
  55218. side: {
  55219. height: math.unit(7 + 10/12, "feet"),
  55220. name: "Side",
  55221. image: {
  55222. source: "./media/characters/sholstim/side.svg",
  55223. extra: 786/682,
  55224. bottom: 40/826
  55225. }
  55226. },
  55227. },
  55228. [
  55229. {
  55230. name: "Normal",
  55231. height: math.unit(7 + 10/12, "feet"),
  55232. default: true
  55233. },
  55234. ]
  55235. ))
  55236. characterMakers.push(() => makeCharacter(
  55237. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55238. {
  55239. front: {
  55240. height: math.unit(3.10, "meters"),
  55241. name: "Front",
  55242. image: {
  55243. source: "./media/characters/aggyn/front.svg",
  55244. extra: 1188/963,
  55245. bottom: 24/1212
  55246. }
  55247. },
  55248. },
  55249. [
  55250. {
  55251. name: "Normal",
  55252. height: math.unit(3.10, "meters"),
  55253. default: true
  55254. },
  55255. ]
  55256. ))
  55257. characterMakers.push(() => makeCharacter(
  55258. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55259. {
  55260. front: {
  55261. height: math.unit(7 + 5/12, "feet"),
  55262. weight: math.unit(687, "lb"),
  55263. name: "Front",
  55264. image: {
  55265. source: "./media/characters/alsandair-hergenroether/front.svg",
  55266. extra: 1251/1186,
  55267. bottom: 75/1326
  55268. }
  55269. },
  55270. back: {
  55271. height: math.unit(7 + 5/12, "feet"),
  55272. weight: math.unit(687, "lb"),
  55273. name: "Back",
  55274. image: {
  55275. source: "./media/characters/alsandair-hergenroether/back.svg",
  55276. extra: 1290/1229,
  55277. bottom: 17/1307
  55278. }
  55279. },
  55280. },
  55281. [
  55282. {
  55283. name: "Max Compression",
  55284. height: math.unit(7 + 5/12, "feet"),
  55285. default: true
  55286. },
  55287. {
  55288. name: "\"Normal\"",
  55289. height: math.unit(2, "universes")
  55290. },
  55291. ]
  55292. ))
  55293. characterMakers.push(() => makeCharacter(
  55294. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55295. {
  55296. front: {
  55297. height: math.unit(4 + 1/12, "feet"),
  55298. weight: math.unit(92, "lb"),
  55299. name: "Front",
  55300. image: {
  55301. source: "./media/characters/ie/front.svg",
  55302. extra: 1585/1352,
  55303. bottom: 91/1676
  55304. }
  55305. },
  55306. },
  55307. [
  55308. {
  55309. name: "Normal",
  55310. height: math.unit(4 + 1/12, "feet"),
  55311. default: true
  55312. },
  55313. ]
  55314. ))
  55315. characterMakers.push(() => makeCharacter(
  55316. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55317. {
  55318. anthro: {
  55319. height: math.unit(6, "feet"),
  55320. weight: math.unit(150, "lb"),
  55321. name: "Front",
  55322. image: {
  55323. source: "./media/characters/willow/anthro.svg",
  55324. extra: 1073/986,
  55325. bottom: 34/1107
  55326. },
  55327. form: "anthro",
  55328. default: true
  55329. },
  55330. taur: {
  55331. height: math.unit(6, "feet"),
  55332. weight: math.unit(150, "lb"),
  55333. name: "Side",
  55334. image: {
  55335. source: "./media/characters/willow/taur.svg",
  55336. extra: 647/512,
  55337. bottom: 136/783
  55338. },
  55339. form: "taur",
  55340. default: true
  55341. },
  55342. },
  55343. [
  55344. {
  55345. name: "Humanoid",
  55346. height: math.unit(2.7, "meters"),
  55347. form: "anthro"
  55348. },
  55349. {
  55350. name: "Normal",
  55351. height: math.unit(9, "meters"),
  55352. form: "anthro",
  55353. default: true
  55354. },
  55355. {
  55356. name: "Humanoid",
  55357. height: math.unit(2.1, "meters"),
  55358. form: "taur"
  55359. },
  55360. {
  55361. name: "Normal",
  55362. height: math.unit(7, "meters"),
  55363. form: "taur",
  55364. default: true
  55365. },
  55366. ],
  55367. {
  55368. "anthro": {
  55369. name: "Anthro",
  55370. default: true
  55371. },
  55372. "taur": {
  55373. name: "Taur",
  55374. },
  55375. }
  55376. ))
  55377. characterMakers.push(() => makeCharacter(
  55378. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55379. {
  55380. front: {
  55381. height: math.unit(2 + 5/12, "feet"),
  55382. name: "Front",
  55383. image: {
  55384. source: "./media/characters/kyan/front.svg",
  55385. extra: 460/334,
  55386. bottom: 23/483
  55387. },
  55388. extraAttributes: {
  55389. "toeLength": {
  55390. name: "Toe Length",
  55391. power: 1,
  55392. type: "length",
  55393. base: math.unit(7, "cm")
  55394. },
  55395. "toeclawLength": {
  55396. name: "Toeclaw Length",
  55397. power: 1,
  55398. type: "length",
  55399. base: math.unit(4.7, "cm")
  55400. },
  55401. "earHeight": {
  55402. name: "Ear Height",
  55403. power: 1,
  55404. type: "length",
  55405. base: math.unit(14.1, "cm")
  55406. },
  55407. }
  55408. },
  55409. paws: {
  55410. height: math.unit(0.45, "feet"),
  55411. name: "Paws",
  55412. image: {
  55413. source: "./media/characters/kyan/paws.svg",
  55414. extra: 581/581,
  55415. bottom: 114/695
  55416. }
  55417. },
  55418. },
  55419. [
  55420. {
  55421. name: "Normal",
  55422. height: math.unit(2 + 5/12, "feet"),
  55423. default: true
  55424. },
  55425. ]
  55426. ))
  55427. characterMakers.push(() => makeCharacter(
  55428. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55429. {
  55430. front: {
  55431. height: math.unit(2 + 2/3, "feet"),
  55432. name: "Front",
  55433. image: {
  55434. source: "./media/characters/xazzon/front.svg",
  55435. extra: 1109/984,
  55436. bottom: 42/1151
  55437. }
  55438. },
  55439. back: {
  55440. height: math.unit(2 + 2/3, "feet"),
  55441. name: "Back",
  55442. image: {
  55443. source: "./media/characters/xazzon/back.svg",
  55444. extra: 1095/971,
  55445. bottom: 23/1118
  55446. }
  55447. },
  55448. },
  55449. [
  55450. {
  55451. name: "Normal",
  55452. height: math.unit(2 + 2/3, "feet"),
  55453. default: true
  55454. },
  55455. ]
  55456. ))
  55457. characterMakers.push(() => makeCharacter(
  55458. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55459. {
  55460. front: {
  55461. height: math.unit(8, "feet"),
  55462. weight: math.unit(300, "lb"),
  55463. name: "Front",
  55464. image: {
  55465. source: "./media/characters/khyla-shadowsong/front.svg",
  55466. extra: 861/798,
  55467. bottom: 32/893
  55468. }
  55469. },
  55470. side: {
  55471. height: math.unit(8, "feet"),
  55472. weight: math.unit(300, "lb"),
  55473. name: "Side",
  55474. image: {
  55475. source: "./media/characters/khyla-shadowsong/side.svg",
  55476. extra: 790/750,
  55477. bottom: 87/877
  55478. }
  55479. },
  55480. back: {
  55481. height: math.unit(8, "feet"),
  55482. weight: math.unit(300, "lb"),
  55483. name: "Back",
  55484. image: {
  55485. source: "./media/characters/khyla-shadowsong/back.svg",
  55486. extra: 855/808,
  55487. bottom: 14/869
  55488. }
  55489. },
  55490. head: {
  55491. height: math.unit(2.7, "feet"),
  55492. name: "Head",
  55493. image: {
  55494. source: "./media/characters/khyla-shadowsong/head.svg"
  55495. }
  55496. },
  55497. },
  55498. [
  55499. {
  55500. name: "Micro",
  55501. height: math.unit(6, "inches")
  55502. },
  55503. {
  55504. name: "Normal",
  55505. height: math.unit(8, "feet"),
  55506. default: true
  55507. },
  55508. ]
  55509. ))
  55510. characterMakers.push(() => makeCharacter(
  55511. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55512. {
  55513. hyperFront: {
  55514. height: math.unit(9 + 4/12, "feet"),
  55515. weight: math.unit(2000, "lb"),
  55516. name: "Front",
  55517. image: {
  55518. source: "./media/characters/tiden/hyper-front.svg",
  55519. extra: 400/382,
  55520. bottom: 6/406
  55521. },
  55522. form: "hyper",
  55523. },
  55524. regularFront: {
  55525. height: math.unit(7 + 10/12, "feet"),
  55526. weight: math.unit(470, "lb"),
  55527. name: "Front",
  55528. image: {
  55529. source: "./media/characters/tiden/regular-front.svg",
  55530. extra: 468/442,
  55531. bottom: 6/474
  55532. },
  55533. form: "regular",
  55534. },
  55535. },
  55536. [
  55537. {
  55538. name: "Normal",
  55539. height: math.unit(9 + 4/12, "feet"),
  55540. default: true,
  55541. form: "hyper"
  55542. },
  55543. {
  55544. name: "Normal",
  55545. height: math.unit(7 + 10/12, "feet"),
  55546. default: true,
  55547. form: "regular"
  55548. },
  55549. ],
  55550. {
  55551. "hyper": {
  55552. name: "Hyper",
  55553. default: true
  55554. },
  55555. "regular": {
  55556. name: "Regular",
  55557. },
  55558. }
  55559. ))
  55560. characterMakers.push(() => makeCharacter(
  55561. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55562. {
  55563. side: {
  55564. height: math.unit(6, "feet"),
  55565. weight: math.unit(150, "lb"),
  55566. name: "Side",
  55567. image: {
  55568. source: "./media/characters/jason-crowe/side.svg",
  55569. extra: 1771/766,
  55570. bottom: 219/1990
  55571. }
  55572. },
  55573. },
  55574. [
  55575. {
  55576. name: "Pocket Gryphon",
  55577. height: math.unit(6, "cm")
  55578. },
  55579. {
  55580. name: "Raven",
  55581. height: math.unit(60, "cm")
  55582. },
  55583. {
  55584. name: "Normal",
  55585. height: math.unit(1, "meter"),
  55586. default: true
  55587. },
  55588. ]
  55589. ))
  55590. characterMakers.push(() => makeCharacter(
  55591. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55592. {
  55593. front: {
  55594. height: math.unit(9 + 6/12, "feet"),
  55595. weight: math.unit(1100, "lb"),
  55596. name: "Front",
  55597. image: {
  55598. source: "./media/characters/django/front.svg",
  55599. extra: 1231/1136,
  55600. bottom: 34/1265
  55601. }
  55602. },
  55603. side: {
  55604. height: math.unit(9 + 6/12, "feet"),
  55605. weight: math.unit(1100, "lb"),
  55606. name: "Side",
  55607. image: {
  55608. source: "./media/characters/django/side.svg",
  55609. extra: 1267/1174,
  55610. bottom: 9/1276
  55611. }
  55612. },
  55613. },
  55614. [
  55615. {
  55616. name: "Normal",
  55617. height: math.unit(9 + 6/12, "feet"),
  55618. default: true
  55619. },
  55620. {
  55621. name: "Macro 1",
  55622. height: math.unit(50, "feet")
  55623. },
  55624. {
  55625. name: "Macro 2",
  55626. height: math.unit(500, "feet")
  55627. },
  55628. {
  55629. name: "Mega Macro",
  55630. height: math.unit(5300, "feet")
  55631. },
  55632. ]
  55633. ))
  55634. characterMakers.push(() => makeCharacter(
  55635. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55636. {
  55637. frontSfw: {
  55638. height: math.unit(120, "cm"),
  55639. weight: math.unit(15, "kg"),
  55640. name: "Front (SFW)",
  55641. image: {
  55642. source: "./media/characters/eri/front-sfw.svg",
  55643. extra: 1014/939,
  55644. bottom: 37/1051
  55645. },
  55646. form: "moth",
  55647. },
  55648. frontNsfw: {
  55649. height: math.unit(120, "cm"),
  55650. weight: math.unit(15, "kg"),
  55651. name: "Front (NSFW)",
  55652. image: {
  55653. source: "./media/characters/eri/front-nsfw.svg",
  55654. extra: 1014/939,
  55655. bottom: 37/1051
  55656. },
  55657. form: "moth",
  55658. default: true
  55659. },
  55660. egg: {
  55661. height: math.unit(10, "cm"),
  55662. name: "Egg",
  55663. image: {
  55664. source: "./media/characters/eri/egg.svg"
  55665. },
  55666. form: "egg",
  55667. default: true
  55668. },
  55669. },
  55670. [
  55671. {
  55672. name: "Normal",
  55673. height: math.unit(120, "cm"),
  55674. default: true,
  55675. form: "moth"
  55676. },
  55677. {
  55678. name: "Normal",
  55679. height: math.unit(10, "cm"),
  55680. default: true,
  55681. form: "egg"
  55682. },
  55683. ],
  55684. {
  55685. "moth": {
  55686. name: "Moth",
  55687. default: true
  55688. },
  55689. "egg": {
  55690. name: "Egg",
  55691. },
  55692. }
  55693. ))
  55694. characterMakers.push(() => makeCharacter(
  55695. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55696. {
  55697. front: {
  55698. height: math.unit(200, "feet"),
  55699. name: "Front",
  55700. image: {
  55701. source: "./media/characters/bishop-dowser/front.svg",
  55702. extra: 933/868,
  55703. bottom: 106/1039
  55704. }
  55705. },
  55706. },
  55707. [
  55708. {
  55709. name: "Giant",
  55710. height: math.unit(200, "feet"),
  55711. default: true
  55712. },
  55713. ]
  55714. ))
  55715. characterMakers.push(() => makeCharacter(
  55716. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55717. {
  55718. front: {
  55719. height: math.unit(2, "meters"),
  55720. preyCapacity: math.unit(3, "people"),
  55721. name: "Front",
  55722. image: {
  55723. source: "./media/characters/fryra/front.svg",
  55724. extra: 1025/948,
  55725. bottom: 30/1055
  55726. },
  55727. extraAttributes: {
  55728. "breastVolume": {
  55729. name: "Breast Volume",
  55730. power: 3,
  55731. type: "volume",
  55732. base: math.unit(8, "liters")
  55733. },
  55734. }
  55735. },
  55736. back: {
  55737. height: math.unit(2, "meters"),
  55738. preyCapacity: math.unit(3, "people"),
  55739. name: "Back",
  55740. image: {
  55741. source: "./media/characters/fryra/back.svg",
  55742. extra: 993/938,
  55743. bottom: 38/1031
  55744. },
  55745. extraAttributes: {
  55746. "breastVolume": {
  55747. name: "Breast Volume",
  55748. power: 3,
  55749. type: "volume",
  55750. base: math.unit(8, "liters")
  55751. },
  55752. }
  55753. },
  55754. head: {
  55755. height: math.unit(1.33, "feet"),
  55756. name: "Head",
  55757. image: {
  55758. source: "./media/characters/fryra/head.svg"
  55759. }
  55760. },
  55761. maw: {
  55762. height: math.unit(0.56, "feet"),
  55763. name: "Maw",
  55764. image: {
  55765. source: "./media/characters/fryra/maw.svg"
  55766. }
  55767. },
  55768. },
  55769. [
  55770. {
  55771. name: "Micro",
  55772. height: math.unit(5, "cm")
  55773. },
  55774. {
  55775. name: "Normal",
  55776. height: math.unit(2, "meters"),
  55777. default: true
  55778. },
  55779. {
  55780. name: "Small Macro",
  55781. height: math.unit(8, "meters")
  55782. },
  55783. {
  55784. name: "Macro",
  55785. height: math.unit(50, "meters")
  55786. },
  55787. {
  55788. name: "Megamacro",
  55789. height: math.unit(1, "km")
  55790. },
  55791. {
  55792. name: "Planetary",
  55793. height: math.unit(300000, "km")
  55794. },
  55795. {
  55796. name: "Universal",
  55797. height: math.unit(250, "lightyears")
  55798. },
  55799. {
  55800. name: "Fabric of Reality",
  55801. height: math.unit(1000, "multiverses")
  55802. },
  55803. ]
  55804. ))
  55805. characterMakers.push(() => makeCharacter(
  55806. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55807. {
  55808. frontDressed: {
  55809. height: math.unit(6 + 2/12, "feet"),
  55810. name: "Front (Dressed)",
  55811. image: {
  55812. source: "./media/characters/fiera/front-dressed.svg",
  55813. extra: 1883/1793,
  55814. bottom: 70/1953
  55815. }
  55816. },
  55817. backDressed: {
  55818. height: math.unit(6 + 2/12, "feet"),
  55819. name: "Back (Dressed)",
  55820. image: {
  55821. source: "./media/characters/fiera/back-dressed.svg",
  55822. extra: 1847/1780,
  55823. bottom: 70/1917
  55824. }
  55825. },
  55826. frontNude: {
  55827. height: math.unit(6 + 2/12, "feet"),
  55828. name: "Front (Nude)",
  55829. image: {
  55830. source: "./media/characters/fiera/front-nude.svg",
  55831. extra: 1875/1785,
  55832. bottom: 66/1941
  55833. }
  55834. },
  55835. backNude: {
  55836. height: math.unit(6 + 2/12, "feet"),
  55837. name: "Back (Nude)",
  55838. image: {
  55839. source: "./media/characters/fiera/back-nude.svg",
  55840. extra: 1855/1788,
  55841. bottom: 44/1899
  55842. }
  55843. },
  55844. maw: {
  55845. height: math.unit(1.3, "feet"),
  55846. name: "Maw",
  55847. image: {
  55848. source: "./media/characters/fiera/maw.svg"
  55849. }
  55850. },
  55851. paw: {
  55852. height: math.unit(1, "feet"),
  55853. name: "Paw",
  55854. image: {
  55855. source: "./media/characters/fiera/paw.svg"
  55856. }
  55857. },
  55858. shoe: {
  55859. height: math.unit(1.05, "feet"),
  55860. name: "Shoe",
  55861. image: {
  55862. source: "./media/characters/fiera/shoe.svg"
  55863. }
  55864. },
  55865. },
  55866. [
  55867. {
  55868. name: "Normal",
  55869. height: math.unit(6 + 2/12, "feet"),
  55870. default: true
  55871. },
  55872. {
  55873. name: "Size Difference",
  55874. height: math.unit(13, "feet")
  55875. },
  55876. {
  55877. name: "Macro",
  55878. height: math.unit(60, "feet")
  55879. },
  55880. {
  55881. name: "Mega Macro",
  55882. height: math.unit(200, "feet")
  55883. },
  55884. ]
  55885. ))
  55886. characterMakers.push(() => makeCharacter(
  55887. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55888. {
  55889. back: {
  55890. height: math.unit(6, "feet"),
  55891. name: "Back",
  55892. image: {
  55893. source: "./media/characters/flare/back.svg",
  55894. extra: 1883/1765,
  55895. bottom: 32/1915
  55896. }
  55897. },
  55898. },
  55899. [
  55900. {
  55901. name: "Normal",
  55902. height: math.unit(6 + 2/12, "feet"),
  55903. default: true
  55904. },
  55905. {
  55906. name: "Size Difference",
  55907. height: math.unit(13, "feet")
  55908. },
  55909. {
  55910. name: "Macro",
  55911. height: math.unit(60, "feet")
  55912. },
  55913. {
  55914. name: "Macro 2",
  55915. height: math.unit(100, "feet")
  55916. },
  55917. {
  55918. name: "Mega Macro",
  55919. height: math.unit(200, "feet")
  55920. },
  55921. ]
  55922. ))
  55923. characterMakers.push(() => makeCharacter(
  55924. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55925. {
  55926. front: {
  55927. height: math.unit(2.2, "m"),
  55928. weight: math.unit(300, "kg"),
  55929. name: "Front",
  55930. image: {
  55931. source: "./media/characters/hanna/front.svg",
  55932. extra: 1696/1502,
  55933. bottom: 206/1902
  55934. }
  55935. },
  55936. },
  55937. [
  55938. {
  55939. name: "Humanoid",
  55940. height: math.unit(2.2, "meters")
  55941. },
  55942. {
  55943. name: "Normal",
  55944. height: math.unit(4.8, "meters"),
  55945. default: true
  55946. },
  55947. ]
  55948. ))
  55949. characterMakers.push(() => makeCharacter(
  55950. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55951. {
  55952. front: {
  55953. height: math.unit(2.8, "meters"),
  55954. name: "Front",
  55955. image: {
  55956. source: "./media/characters/argo/front.svg",
  55957. extra: 731/518,
  55958. bottom: 84/815
  55959. }
  55960. },
  55961. },
  55962. [
  55963. {
  55964. name: "Normal",
  55965. height: math.unit(3, "meters"),
  55966. default: true
  55967. },
  55968. ]
  55969. ))
  55970. characterMakers.push(() => makeCharacter(
  55971. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55972. {
  55973. side: {
  55974. height: math.unit(3.8, "meters"),
  55975. name: "Side",
  55976. image: {
  55977. source: "./media/characters/sybil/side.svg",
  55978. extra: 382/361,
  55979. bottom: 25/407
  55980. }
  55981. },
  55982. },
  55983. [
  55984. {
  55985. name: "Normal",
  55986. height: math.unit(3.8, "meters"),
  55987. default: true
  55988. },
  55989. ]
  55990. ))
  55991. characterMakers.push(() => makeCharacter(
  55992. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55993. {
  55994. side: {
  55995. height: math.unit(6, "meters"),
  55996. name: "Side",
  55997. image: {
  55998. source: "./media/characters/plum/side.svg",
  55999. extra: 858/755,
  56000. bottom: 45/903
  56001. },
  56002. form: "taur",
  56003. default: true
  56004. },
  56005. back: {
  56006. height: math.unit(6.3, "meters"),
  56007. name: "Back",
  56008. image: {
  56009. source: "./media/characters/plum/back.svg",
  56010. extra: 887/813,
  56011. bottom: 32/919
  56012. },
  56013. form: "taur",
  56014. },
  56015. feral: {
  56016. height: math.unit(5.5, "meter"),
  56017. name: "Front",
  56018. image: {
  56019. source: "./media/characters/plum/feral.svg",
  56020. extra: 568/403,
  56021. bottom: 51/619
  56022. },
  56023. form: "feral",
  56024. default: true
  56025. },
  56026. head: {
  56027. height: math.unit(1.46, "meter"),
  56028. name: "Head",
  56029. image: {
  56030. source: "./media/characters/plum/head.svg"
  56031. },
  56032. form: "taur"
  56033. },
  56034. tailTop: {
  56035. height: math.unit(5.6, "meter"),
  56036. name: "Tail (Top)",
  56037. image: {
  56038. source: "./media/characters/plum/tail-top.svg"
  56039. },
  56040. form: "taur",
  56041. },
  56042. tailBottom: {
  56043. height: math.unit(5.6, "meter"),
  56044. name: "Tail (Bottom)",
  56045. image: {
  56046. source: "./media/characters/plum/tail-bottom.svg"
  56047. },
  56048. form: "taur",
  56049. },
  56050. feralHead: {
  56051. height: math.unit(2.56549521, "meter"),
  56052. name: "Head",
  56053. image: {
  56054. source: "./media/characters/plum/head.svg"
  56055. },
  56056. form: "feral"
  56057. },
  56058. feralTailTop: {
  56059. height: math.unit(5.44728435, "meter"),
  56060. name: "Tail (Top)",
  56061. image: {
  56062. source: "./media/characters/plum/tail-top.svg"
  56063. },
  56064. form: "feral",
  56065. },
  56066. feralTailBottom: {
  56067. height: math.unit(5.44728435, "meter"),
  56068. name: "Tail (Bottom)",
  56069. image: {
  56070. source: "./media/characters/plum/tail-bottom.svg"
  56071. },
  56072. form: "feral",
  56073. },
  56074. },
  56075. [
  56076. {
  56077. name: "Normal",
  56078. height: math.unit(6, "meters"),
  56079. default: true,
  56080. form: "taur"
  56081. },
  56082. {
  56083. name: "Normal",
  56084. height: math.unit(5.5, "meters"),
  56085. default: true,
  56086. form: "feral"
  56087. },
  56088. ],
  56089. {
  56090. "taur": {
  56091. name: "Taur",
  56092. default: true
  56093. },
  56094. "feral": {
  56095. name: "Feral",
  56096. },
  56097. }
  56098. ))
  56099. characterMakers.push(() => makeCharacter(
  56100. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  56101. {
  56102. front: {
  56103. height: math.unit(6, "feet"),
  56104. weight: math.unit(115, "lb"),
  56105. name: "Front",
  56106. image: {
  56107. source: "./media/characters/celeste-kitsune/front.svg",
  56108. extra: 393/366,
  56109. bottom: 7/400
  56110. }
  56111. },
  56112. side: {
  56113. height: math.unit(6, "feet"),
  56114. weight: math.unit(115, "lb"),
  56115. name: "Side",
  56116. image: {
  56117. source: "./media/characters/celeste-kitsune/side.svg",
  56118. extra: 818/765,
  56119. bottom: 40/858
  56120. }
  56121. },
  56122. },
  56123. [
  56124. {
  56125. name: "Megamacro",
  56126. height: math.unit(1500, "miles"),
  56127. default: true
  56128. },
  56129. ]
  56130. ))
  56131. characterMakers.push(() => makeCharacter(
  56132. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56133. {
  56134. front: {
  56135. height: math.unit(8, "meters"),
  56136. name: "Front",
  56137. image: {
  56138. source: "./media/characters/io/front.svg",
  56139. extra: 865/722,
  56140. bottom: 58/923
  56141. }
  56142. },
  56143. back: {
  56144. height: math.unit(8, "meters"),
  56145. name: "Back",
  56146. image: {
  56147. source: "./media/characters/io/back.svg",
  56148. extra: 920/776,
  56149. bottom: 42/962
  56150. }
  56151. },
  56152. head: {
  56153. height: math.unit(5.09, "meters"),
  56154. name: "Head",
  56155. image: {
  56156. source: "./media/characters/io/head.svg"
  56157. }
  56158. },
  56159. hand: {
  56160. height: math.unit(1.6, "meters"),
  56161. name: "Hand",
  56162. image: {
  56163. source: "./media/characters/io/hand.svg"
  56164. }
  56165. },
  56166. foot: {
  56167. height: math.unit(2.4, "meters"),
  56168. name: "Foot",
  56169. image: {
  56170. source: "./media/characters/io/foot.svg"
  56171. }
  56172. },
  56173. },
  56174. [
  56175. {
  56176. name: "Normal",
  56177. height: math.unit(8, "meters"),
  56178. default: true
  56179. },
  56180. ]
  56181. ))
  56182. characterMakers.push(() => makeCharacter(
  56183. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56184. {
  56185. side: {
  56186. height: math.unit(6 + 3/12, "feet"),
  56187. weight: math.unit(225, "lb"),
  56188. name: "Side",
  56189. image: {
  56190. source: "./media/characters/silas/side.svg",
  56191. extra: 703/653,
  56192. bottom: 23/726
  56193. },
  56194. extraAttributes: {
  56195. "pawLength": {
  56196. name: "Paw Length",
  56197. power: 1,
  56198. type: "length",
  56199. base: math.unit(12, "inches")
  56200. },
  56201. "pawWidth": {
  56202. name: "Paw Width",
  56203. power: 1,
  56204. type: "length",
  56205. base: math.unit(4.5, "inches")
  56206. },
  56207. "pawArea": {
  56208. name: "Paw Area",
  56209. power: 2,
  56210. type: "area",
  56211. base: math.unit(12 * 4.5, "inches^2")
  56212. },
  56213. }
  56214. },
  56215. },
  56216. [
  56217. {
  56218. name: "Normal",
  56219. height: math.unit(6 + 3/12, "feet"),
  56220. default: true
  56221. },
  56222. ]
  56223. ))
  56224. characterMakers.push(() => makeCharacter(
  56225. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56226. {
  56227. back: {
  56228. height: math.unit(1.6, "meters"),
  56229. weight: math.unit(150, "lb"),
  56230. name: "Back",
  56231. image: {
  56232. source: "./media/characters/zari/back.svg",
  56233. extra: 424/411,
  56234. bottom: 32/456
  56235. },
  56236. extraAttributes: {
  56237. "bladderCapacity": {
  56238. name: "Bladder Size",
  56239. power: 3,
  56240. type: "volume",
  56241. base: math.unit(500, "mL")
  56242. },
  56243. "bladderFlow": {
  56244. name: "Flow Rate",
  56245. power: 3,
  56246. type: "volume",
  56247. base: math.unit(25, "mL")
  56248. },
  56249. }
  56250. },
  56251. },
  56252. [
  56253. {
  56254. name: "Normal",
  56255. height: math.unit(1.6, "meters"),
  56256. default: true
  56257. },
  56258. ]
  56259. ))
  56260. characterMakers.push(() => makeCharacter(
  56261. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56262. {
  56263. front: {
  56264. height: math.unit(25, "feet"),
  56265. weight: math.unit(5, "tons"),
  56266. name: "Front",
  56267. image: {
  56268. source: "./media/characters/charlie-human/front.svg",
  56269. extra: 1870/1740,
  56270. bottom: 102/1972
  56271. },
  56272. extraAttributes: {
  56273. "dickLength": {
  56274. name: "Dick Length",
  56275. power: 1,
  56276. type: "length",
  56277. base: math.unit(9, "feet")
  56278. },
  56279. }
  56280. },
  56281. back: {
  56282. height: math.unit(25, "feet"),
  56283. weight: math.unit(5, "tons"),
  56284. name: "Back",
  56285. image: {
  56286. source: "./media/characters/charlie-human/back.svg",
  56287. extra: 1858/1733,
  56288. bottom: 105/1963
  56289. },
  56290. extraAttributes: {
  56291. "dickLength": {
  56292. name: "Dick Length",
  56293. power: 1,
  56294. type: "length",
  56295. base: math.unit(9, "feet")
  56296. },
  56297. }
  56298. },
  56299. },
  56300. [
  56301. {
  56302. name: "\"Normal\"",
  56303. height: math.unit(6 + 4/12, "feet")
  56304. },
  56305. {
  56306. name: "Big",
  56307. height: math.unit(25, "feet"),
  56308. default: true
  56309. },
  56310. ]
  56311. ))
  56312. characterMakers.push(() => makeCharacter(
  56313. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56314. {
  56315. front: {
  56316. height: math.unit(6 + 4/12, "feet"),
  56317. weight: math.unit(320, "lb"),
  56318. name: "Front",
  56319. image: {
  56320. source: "./media/characters/ookitsu/front.svg",
  56321. extra: 1160/976,
  56322. bottom: 38/1198
  56323. }
  56324. },
  56325. frontNsfw: {
  56326. height: math.unit(6 + 4/12, "feet"),
  56327. weight: math.unit(320, "lb"),
  56328. name: "Front (NSFW)",
  56329. image: {
  56330. source: "./media/characters/ookitsu/front-nsfw.svg",
  56331. extra: 1160/976,
  56332. bottom: 38/1198
  56333. }
  56334. },
  56335. back: {
  56336. height: math.unit(6 + 4/12, "feet"),
  56337. weight: math.unit(320, "lb"),
  56338. name: "Back",
  56339. image: {
  56340. source: "./media/characters/ookitsu/back.svg",
  56341. extra: 1030/975,
  56342. bottom: 70/1100
  56343. }
  56344. },
  56345. head: {
  56346. height: math.unit(1.79, "feet"),
  56347. name: "Head",
  56348. image: {
  56349. source: "./media/characters/ookitsu/head.svg"
  56350. }
  56351. },
  56352. hand: {
  56353. height: math.unit(0.92, "feet"),
  56354. name: "Hand",
  56355. image: {
  56356. source: "./media/characters/ookitsu/hand.svg"
  56357. }
  56358. },
  56359. tails: {
  56360. height: math.unit(3.3, "feet"),
  56361. name: "Tails",
  56362. image: {
  56363. source: "./media/characters/ookitsu/tails.svg"
  56364. }
  56365. },
  56366. dick: {
  56367. height: math.unit(1.10833, "feet"),
  56368. name: "Dick",
  56369. image: {
  56370. source: "./media/characters/ookitsu/dick.svg"
  56371. }
  56372. },
  56373. },
  56374. [
  56375. {
  56376. name: "Normal",
  56377. height: math.unit(6 + 4/12, "feet"),
  56378. default: true
  56379. },
  56380. {
  56381. name: "Macro",
  56382. height: math.unit(30, "feet")
  56383. },
  56384. ]
  56385. ))
  56386. characterMakers.push(() => makeCharacter(
  56387. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56388. {
  56389. anthroFront: {
  56390. height: math.unit(6, "feet"),
  56391. weight: math.unit(250, "lb"),
  56392. name: "Front",
  56393. image: {
  56394. source: "./media/characters/jhusky/anthro-front.svg",
  56395. extra: 474/439,
  56396. bottom: 7/481
  56397. },
  56398. form: "anthro",
  56399. default: true
  56400. },
  56401. taurSideSfw: {
  56402. height: math.unit(6 + 4/12, "feet"),
  56403. weight: math.unit(500, "lb"),
  56404. name: "Side (SFW)",
  56405. image: {
  56406. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56407. extra: 1741/1629,
  56408. bottom: 196/1937
  56409. },
  56410. form: "taur",
  56411. default: true
  56412. },
  56413. taurSideNsfw: {
  56414. height: math.unit(6 + 4/12, "feet"),
  56415. weight: math.unit(500, "lb"),
  56416. name: "Taur (NSFW)",
  56417. image: {
  56418. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56419. extra: 1741/1629,
  56420. bottom: 196/1937
  56421. },
  56422. form: "taur",
  56423. },
  56424. },
  56425. [
  56426. {
  56427. name: "Huge",
  56428. height: math.unit(500, "feet"),
  56429. form: "anthro"
  56430. },
  56431. {
  56432. name: "Macro",
  56433. height: math.unit(1000, "feet"),
  56434. default: true,
  56435. form: "anthro"
  56436. },
  56437. {
  56438. name: "Megamacro",
  56439. height: math.unit(10000, "feet"),
  56440. form: "anthro"
  56441. },
  56442. {
  56443. name: "Huge",
  56444. height: math.unit(528, "feet"),
  56445. form: "taur"
  56446. },
  56447. {
  56448. name: "Macro",
  56449. height: math.unit(1056, "feet"),
  56450. default: true,
  56451. form: "taur"
  56452. },
  56453. {
  56454. name: "Megamacro",
  56455. height: math.unit(10556, "feet"),
  56456. form: "taur"
  56457. },
  56458. ],
  56459. {
  56460. "anthro": {
  56461. name: "Anthro",
  56462. default: true
  56463. },
  56464. "taur": {
  56465. name: "Taur",
  56466. },
  56467. }
  56468. ))
  56469. characterMakers.push(() => makeCharacter(
  56470. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56471. {
  56472. front: {
  56473. height: math.unit(8, "feet"),
  56474. weight: math.unit(500, "lb"),
  56475. name: "Front",
  56476. image: {
  56477. source: "./media/characters/armail/front.svg",
  56478. extra: 1753/1669,
  56479. bottom: 155/1908
  56480. }
  56481. },
  56482. back: {
  56483. height: math.unit(8, "feet"),
  56484. weight: math.unit(500, "lb"),
  56485. name: "Back",
  56486. image: {
  56487. source: "./media/characters/armail/back.svg",
  56488. extra: 1872/1803,
  56489. bottom: 63/1935
  56490. }
  56491. },
  56492. },
  56493. [
  56494. {
  56495. name: "Micro",
  56496. height: math.unit(0.25, "feet")
  56497. },
  56498. {
  56499. name: "Normal",
  56500. height: math.unit(8, "feet"),
  56501. default: true
  56502. },
  56503. {
  56504. name: "Mini-macro",
  56505. height: math.unit(30, "feet")
  56506. },
  56507. {
  56508. name: "Macro",
  56509. height: math.unit(400, "feet")
  56510. },
  56511. {
  56512. name: "Mega-macro",
  56513. height: math.unit(6000, "feet")
  56514. },
  56515. ]
  56516. ))
  56517. characterMakers.push(() => makeCharacter(
  56518. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56519. {
  56520. front: {
  56521. height: math.unit(6 + 7/12, "feet"),
  56522. weight: math.unit(210, "lb"),
  56523. name: "Front",
  56524. image: {
  56525. source: "./media/characters/wilfred-t-buxton/front.svg",
  56526. extra: 1068/882,
  56527. bottom: 28/1096
  56528. }
  56529. },
  56530. },
  56531. [
  56532. {
  56533. name: "Normal",
  56534. height: math.unit(6 + 7/12, "feet"),
  56535. default: true
  56536. },
  56537. ]
  56538. ))
  56539. characterMakers.push(() => makeCharacter(
  56540. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56541. {
  56542. front: {
  56543. height: math.unit(5 + 2/12, "feet"),
  56544. weight: math.unit(120, "lb"),
  56545. name: "Front",
  56546. image: {
  56547. source: "./media/characters/leighton-marrow/front.svg",
  56548. extra: 441/409,
  56549. bottom: 37/478
  56550. }
  56551. },
  56552. },
  56553. [
  56554. {
  56555. name: "Normal",
  56556. height: math.unit(5 + 2/12, "feet"),
  56557. default: true
  56558. },
  56559. ]
  56560. ))
  56561. characterMakers.push(() => makeCharacter(
  56562. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56563. {
  56564. front: {
  56565. height: math.unit(4, "meters"),
  56566. weight: math.unit(1200, "kg"),
  56567. name: "Front",
  56568. image: {
  56569. source: "./media/characters/licos/front.svg",
  56570. extra: 1727/1604,
  56571. bottom: 101/1828
  56572. },
  56573. form: "anthro",
  56574. default: true
  56575. },
  56576. taur_side: {
  56577. height: math.unit(20, "meters"),
  56578. weight: math.unit(1100000, "kg"),
  56579. name: "Side",
  56580. image: {
  56581. source: "./media/characters/licos/taur.svg",
  56582. extra: 1158/1091,
  56583. bottom: 80/1238
  56584. },
  56585. form: "taur",
  56586. default: true
  56587. },
  56588. },
  56589. [
  56590. {
  56591. name: "Normal",
  56592. height: math.unit(4, "meters"),
  56593. default: true,
  56594. form: "anthro"
  56595. },
  56596. {
  56597. name: "Normal",
  56598. height: math.unit(20, "meters"),
  56599. default: true,
  56600. form: "taur"
  56601. },
  56602. ],
  56603. {
  56604. "anthro": {
  56605. name: "Anthro",
  56606. default: true
  56607. },
  56608. "taur": {
  56609. name: "Taur",
  56610. },
  56611. }
  56612. ))
  56613. characterMakers.push(() => makeCharacter(
  56614. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56615. {
  56616. front: {
  56617. height: math.unit(10 + 3/12, "feet"),
  56618. name: "Front",
  56619. image: {
  56620. source: "./media/characters/theo-monkey/front.svg",
  56621. extra: 1735/1658,
  56622. bottom: 73/1808
  56623. }
  56624. },
  56625. back: {
  56626. height: math.unit(10 + 3/12, "feet"),
  56627. name: "Back",
  56628. image: {
  56629. source: "./media/characters/theo-monkey/back.svg",
  56630. extra: 1742/1664,
  56631. bottom: 33/1775
  56632. }
  56633. },
  56634. head: {
  56635. height: math.unit(2.29, "feet"),
  56636. name: "Head",
  56637. image: {
  56638. source: "./media/characters/theo-monkey/head.svg"
  56639. }
  56640. },
  56641. handPalm: {
  56642. height: math.unit(1.73, "feet"),
  56643. name: "Hand (Palm)",
  56644. image: {
  56645. source: "./media/characters/theo-monkey/hand-palm.svg"
  56646. }
  56647. },
  56648. handBack: {
  56649. height: math.unit(1.63, "feet"),
  56650. name: "Hand (Back)",
  56651. image: {
  56652. source: "./media/characters/theo-monkey/hand-back.svg"
  56653. }
  56654. },
  56655. footSole: {
  56656. height: math.unit(2.15, "feet"),
  56657. name: "Foot (Sole)",
  56658. image: {
  56659. source: "./media/characters/theo-monkey/foot-sole.svg"
  56660. }
  56661. },
  56662. footSide: {
  56663. height: math.unit(1.6, "feet"),
  56664. name: "Foot (Side)",
  56665. image: {
  56666. source: "./media/characters/theo-monkey/foot-side.svg"
  56667. }
  56668. },
  56669. },
  56670. [
  56671. {
  56672. name: "Normal",
  56673. height: math.unit(10 + 3/12, "feet"),
  56674. default: true
  56675. },
  56676. ]
  56677. ))
  56678. characterMakers.push(() => makeCharacter(
  56679. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56680. {
  56681. front: {
  56682. height: math.unit(11, "feet"),
  56683. weight: math.unit(3000, "lb"),
  56684. preyCapacity: math.unit(10, "people"),
  56685. name: "Front",
  56686. image: {
  56687. source: "./media/characters/brook/front.svg",
  56688. extra: 909/835,
  56689. bottom: 108/1017
  56690. }
  56691. },
  56692. back: {
  56693. height: math.unit(11, "feet"),
  56694. weight: math.unit(3000, "lb"),
  56695. preyCapacity: math.unit(10, "people"),
  56696. name: "Back",
  56697. image: {
  56698. source: "./media/characters/brook/back.svg",
  56699. extra: 976/916,
  56700. bottom: 34/1010
  56701. }
  56702. },
  56703. backAlt: {
  56704. height: math.unit(11, "feet"),
  56705. weight: math.unit(3000, "lb"),
  56706. preyCapacity: math.unit(10, "people"),
  56707. name: "Back (Alt)",
  56708. image: {
  56709. source: "./media/characters/brook/back-alt.svg",
  56710. extra: 1283/1213,
  56711. bottom: 35/1318
  56712. }
  56713. },
  56714. bust: {
  56715. height: math.unit(9.0859030837, "feet"),
  56716. weight: math.unit(3000, "lb"),
  56717. preyCapacity: math.unit(10, "people"),
  56718. name: "Bust",
  56719. image: {
  56720. source: "./media/characters/brook/bust.svg",
  56721. extra: 2043/1923,
  56722. bottom: 0/2043
  56723. }
  56724. },
  56725. },
  56726. [
  56727. {
  56728. name: "Small",
  56729. height: math.unit(11, "feet"),
  56730. default: true
  56731. },
  56732. {
  56733. name: "Towering",
  56734. height: math.unit(5, "km")
  56735. },
  56736. {
  56737. name: "Enormous",
  56738. height: math.unit(25, "earths")
  56739. },
  56740. ]
  56741. ))
  56742. characterMakers.push(() => makeCharacter(
  56743. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56744. {
  56745. front: {
  56746. height: math.unit(4, "feet"),
  56747. weight: math.unit(150, "lb"),
  56748. name: "Front",
  56749. image: {
  56750. source: "./media/characters/squishi/front.svg",
  56751. extra: 1428/1271,
  56752. bottom: 30/1458
  56753. },
  56754. extraAttributes: {
  56755. "pawSize": {
  56756. name: "Paw Size",
  56757. power: 1,
  56758. type: "length",
  56759. base: math.unit(14, "ShoeSizeMensUS"),
  56760. defaultUnit: "ShoeSizeMensUS"
  56761. },
  56762. }
  56763. },
  56764. side: {
  56765. height: math.unit(4, "feet"),
  56766. weight: math.unit(150, "lb"),
  56767. name: "Side",
  56768. image: {
  56769. source: "./media/characters/squishi/side.svg",
  56770. extra: 1428/1271,
  56771. bottom: 30/1458
  56772. },
  56773. extraAttributes: {
  56774. "pawSize": {
  56775. name: "Paw Size",
  56776. power: 1,
  56777. type: "length",
  56778. base: math.unit(14, "ShoeSizeMensUS"),
  56779. defaultUnit: "ShoeSizeMensUS"
  56780. },
  56781. }
  56782. },
  56783. back: {
  56784. height: math.unit(4, "feet"),
  56785. weight: math.unit(150, "lb"),
  56786. name: "Back",
  56787. image: {
  56788. source: "./media/characters/squishi/back.svg",
  56789. extra: 1428/1271,
  56790. bottom: 30/1458
  56791. },
  56792. extraAttributes: {
  56793. "pawSize": {
  56794. name: "Paw Size",
  56795. power: 1,
  56796. type: "length",
  56797. base: math.unit(14, "ShoeSizeMensUS"),
  56798. defaultUnit: "ShoeSizeMensUS"
  56799. },
  56800. }
  56801. },
  56802. },
  56803. [
  56804. {
  56805. name: "Normal",
  56806. height: math.unit(4, "feet"),
  56807. default: true
  56808. },
  56809. ]
  56810. ))
  56811. characterMakers.push(() => makeCharacter(
  56812. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56813. {
  56814. front: {
  56815. height: math.unit(7 + 8/12, "feet"),
  56816. weight: math.unit(333, "lb"),
  56817. name: "Front",
  56818. image: {
  56819. source: "./media/characters/vincent-vasroc/front.svg",
  56820. extra: 1962/1860,
  56821. bottom: 41/2003
  56822. }
  56823. },
  56824. back: {
  56825. height: math.unit(7 + 8/12, "feet"),
  56826. weight: math.unit(333, "lb"),
  56827. name: "Back",
  56828. image: {
  56829. source: "./media/characters/vincent-vasroc/back.svg",
  56830. extra: 1952/1815,
  56831. bottom: 33/1985
  56832. }
  56833. },
  56834. paw: {
  56835. height: math.unit(1.24, "feet"),
  56836. name: "Paw",
  56837. image: {
  56838. source: "./media/characters/vincent-vasroc/paw.svg"
  56839. }
  56840. },
  56841. ear: {
  56842. height: math.unit(0.75, "feet"),
  56843. name: "Ear",
  56844. image: {
  56845. source: "./media/characters/vincent-vasroc/ear.svg"
  56846. }
  56847. },
  56848. },
  56849. [
  56850. {
  56851. name: "Nano",
  56852. height: math.unit(92, "micrometers")
  56853. },
  56854. {
  56855. name: "Normal",
  56856. height: math.unit(7 + 8/12, "feet"),
  56857. default: true
  56858. },
  56859. ]
  56860. ))
  56861. characterMakers.push(() => makeCharacter(
  56862. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56863. {
  56864. frontNsfw: {
  56865. height: math.unit(40, "feet"),
  56866. weight: math.unit(58, "tons"),
  56867. name: "Front (NSFW)",
  56868. image: {
  56869. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56870. extra: 1265/965,
  56871. bottom: 155/1420
  56872. }
  56873. },
  56874. frontSfw: {
  56875. height: math.unit(40, "feet"),
  56876. weight: math.unit(58, "tons"),
  56877. name: "Front (SFW)",
  56878. image: {
  56879. source: "./media/characters/ru-kahn/front-sfw.svg",
  56880. extra: 1265/965,
  56881. bottom: 80/1345
  56882. }
  56883. },
  56884. },
  56885. [
  56886. {
  56887. name: "Small",
  56888. height: math.unit(4, "feet")
  56889. },
  56890. {
  56891. name: "Normal",
  56892. height: math.unit(40, "feet"),
  56893. default: true
  56894. },
  56895. {
  56896. name: "Macro",
  56897. height: math.unit(400, "feet")
  56898. },
  56899. ]
  56900. ))
  56901. characterMakers.push(() => makeCharacter(
  56902. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56903. {
  56904. frontNude: {
  56905. height: math.unit(6 + 5/12, "feet"),
  56906. name: "Front (Nude)",
  56907. image: {
  56908. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56909. extra: 1369/1366,
  56910. bottom: 68/1437
  56911. }
  56912. },
  56913. frontDressed: {
  56914. height: math.unit(6 + 5/12, "feet"),
  56915. name: "Front (Dressed)",
  56916. image: {
  56917. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56918. extra: 1369/1366,
  56919. bottom: 68/1437
  56920. }
  56921. },
  56922. },
  56923. [
  56924. {
  56925. name: "Normal",
  56926. height: math.unit(6 + 5/12, "feet"),
  56927. default: true
  56928. },
  56929. {
  56930. name: "Maximum",
  56931. height: math.unit(1930, "feet")
  56932. },
  56933. ]
  56934. ))
  56935. characterMakers.push(() => makeCharacter(
  56936. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56937. {
  56938. front: {
  56939. height: math.unit(5 + 6/12, "feet"),
  56940. name: "Front",
  56941. image: {
  56942. source: "./media/characters/kaja/front.svg",
  56943. extra: 1874/1514,
  56944. bottom: 117/1991
  56945. }
  56946. },
  56947. },
  56948. [
  56949. {
  56950. name: "Normal",
  56951. height: math.unit(5 + 6/12, "feet"),
  56952. default: true
  56953. },
  56954. ]
  56955. ))
  56956. characterMakers.push(() => makeCharacter(
  56957. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56958. {
  56959. front: {
  56960. height: math.unit(5 + 9/12, "feet"),
  56961. weight: math.unit(200, "lb"),
  56962. name: "Front",
  56963. image: {
  56964. source: "./media/characters/mark-smith/front.svg",
  56965. extra: 1004/943,
  56966. bottom: 58/1062
  56967. }
  56968. },
  56969. back: {
  56970. height: math.unit(5 + 9/12, "feet"),
  56971. weight: math.unit(200, "lb"),
  56972. name: "Back",
  56973. image: {
  56974. source: "./media/characters/mark-smith/back.svg",
  56975. extra: 1023/953,
  56976. bottom: 24/1047
  56977. }
  56978. },
  56979. head: {
  56980. height: math.unit(1.82, "feet"),
  56981. name: "Head",
  56982. image: {
  56983. source: "./media/characters/mark-smith/head.svg"
  56984. }
  56985. },
  56986. hand: {
  56987. height: math.unit(1.4, "feet"),
  56988. name: "Hand",
  56989. image: {
  56990. source: "./media/characters/mark-smith/hand.svg"
  56991. }
  56992. },
  56993. paw: {
  56994. height: math.unit(1.69, "feet"),
  56995. name: "Paw",
  56996. image: {
  56997. source: "./media/characters/mark-smith/paw.svg"
  56998. }
  56999. },
  57000. },
  57001. [
  57002. {
  57003. name: "Micro",
  57004. height: math.unit(0.25, "inches")
  57005. },
  57006. {
  57007. name: "Normal",
  57008. height: math.unit(5 + 9/12, "feet"),
  57009. default: true
  57010. },
  57011. {
  57012. name: "Macro",
  57013. height: math.unit(500, "feet")
  57014. },
  57015. ]
  57016. ))
  57017. characterMakers.push(() => makeCharacter(
  57018. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  57019. {
  57020. frontNude: {
  57021. height: math.unit(6, "feet"),
  57022. name: "Front (Nude)",
  57023. image: {
  57024. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  57025. extra: 1384/1321,
  57026. bottom: 57/1441
  57027. }
  57028. },
  57029. frontDressed: {
  57030. height: math.unit(6, "feet"),
  57031. name: "Front (Dressed)",
  57032. image: {
  57033. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  57034. extra: 1384/1321,
  57035. bottom: 57/1441
  57036. }
  57037. },
  57038. },
  57039. [
  57040. {
  57041. name: "Normal",
  57042. height: math.unit(6, "feet"),
  57043. default: true
  57044. },
  57045. {
  57046. name: "Maximum",
  57047. height: math.unit(1776, "feet")
  57048. },
  57049. ]
  57050. ))
  57051. characterMakers.push(() => makeCharacter(
  57052. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  57053. {
  57054. front: {
  57055. height: math.unit(2 + 4/12, "feet"),
  57056. weight: math.unit(350, "lb"),
  57057. name: "Front",
  57058. image: {
  57059. source: "./media/characters/devos/front.svg",
  57060. extra: 958/852,
  57061. bottom: 143/1101
  57062. }
  57063. },
  57064. },
  57065. [
  57066. {
  57067. name: "Base",
  57068. height: math.unit(2 + 4/12, "feet"),
  57069. default: true
  57070. },
  57071. ]
  57072. ))
  57073. characterMakers.push(() => makeCharacter(
  57074. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  57075. {
  57076. front: {
  57077. height: math.unit(9 + 2/12, "feet"),
  57078. name: "Front",
  57079. image: {
  57080. source: "./media/characters/hiveheart/front.svg",
  57081. extra: 394/364,
  57082. bottom: 65/459
  57083. }
  57084. },
  57085. back: {
  57086. height: math.unit(9 + 2/12, "feet"),
  57087. name: "Back",
  57088. image: {
  57089. source: "./media/characters/hiveheart/back.svg",
  57090. extra: 374/357,
  57091. bottom: 63/437
  57092. }
  57093. },
  57094. },
  57095. [
  57096. {
  57097. name: "Base",
  57098. height: math.unit(9 + 2/12, "feet"),
  57099. default: true
  57100. },
  57101. ]
  57102. ))
  57103. characterMakers.push(() => makeCharacter(
  57104. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  57105. {
  57106. front: {
  57107. height: math.unit(2.5, "inches"),
  57108. weight: math.unit(0.6, "oz"),
  57109. name: "Front",
  57110. image: {
  57111. source: "./media/characters/bryn/front.svg",
  57112. extra: 1484/1119,
  57113. bottom: 66/1550
  57114. }
  57115. },
  57116. back: {
  57117. height: math.unit(2.5, "inches"),
  57118. weight: math.unit(0.6, "oz"),
  57119. name: "Back",
  57120. image: {
  57121. source: "./media/characters/bryn/back.svg",
  57122. extra: 1472/1170,
  57123. bottom: 32/1504
  57124. }
  57125. },
  57126. wings: {
  57127. height: math.unit(2.5, "inches"),
  57128. weight: math.unit(0.6, "oz"),
  57129. name: "Wings",
  57130. image: {
  57131. source: "./media/characters/bryn/wings.svg",
  57132. extra: 567/448,
  57133. bottom: 10/577
  57134. }
  57135. },
  57136. dressed: {
  57137. height: math.unit(2.5, "inches"),
  57138. weight: math.unit(0.6, "oz"),
  57139. name: "Dressed",
  57140. image: {
  57141. source: "./media/characters/bryn/dressed.svg",
  57142. extra: 719/589,
  57143. bottom: 54/773
  57144. }
  57145. },
  57146. head: {
  57147. height: math.unit(1.75, "inches"),
  57148. name: "Head",
  57149. image: {
  57150. source: "./media/characters/bryn/head.svg"
  57151. }
  57152. },
  57153. foot: {
  57154. height: math.unit(0.4, "inches"),
  57155. name: "Foot",
  57156. image: {
  57157. source: "./media/characters/bryn/foot.svg"
  57158. }
  57159. },
  57160. },
  57161. [
  57162. {
  57163. name: "Normal",
  57164. height: math.unit(2.5, "inches"),
  57165. default: true
  57166. },
  57167. ]
  57168. ))
  57169. characterMakers.push(() => makeCharacter(
  57170. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57171. {
  57172. side: {
  57173. height: math.unit(7, "feet"),
  57174. weight: math.unit(657, "kg"),
  57175. name: "Side",
  57176. image: {
  57177. source: "./media/characters/delta/side.svg",
  57178. extra: 781/212,
  57179. bottom: 7/788
  57180. },
  57181. extraAttributes: {
  57182. "wingspan": {
  57183. name: "Wingspan",
  57184. power: 1,
  57185. type: "length",
  57186. base: math.unit(48, "feet")
  57187. },
  57188. "length": {
  57189. name: "Length",
  57190. power: 1,
  57191. type: "length",
  57192. base: math.unit(21, "feet")
  57193. },
  57194. "pawSize": {
  57195. name: "Paw Size",
  57196. power: 2,
  57197. type: "area",
  57198. base: math.unit(1.5*1.4, "feet^2")
  57199. },
  57200. }
  57201. },
  57202. },
  57203. [
  57204. {
  57205. name: "Normal",
  57206. height: math.unit(6, "feet"),
  57207. default: true
  57208. },
  57209. ]
  57210. ))
  57211. characterMakers.push(() => makeCharacter(
  57212. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57213. {
  57214. front: {
  57215. height: math.unit(6, "feet"),
  57216. name: "Front",
  57217. image: {
  57218. source: "./media/characters/pyrow/front.svg",
  57219. extra: 513/486,
  57220. bottom: 14/527
  57221. }
  57222. },
  57223. frontWing: {
  57224. height: math.unit(6, "feet"),
  57225. name: "Front (Wing)",
  57226. image: {
  57227. source: "./media/characters/pyrow/front-wing.svg",
  57228. extra: 539/383,
  57229. bottom: 20/559
  57230. }
  57231. },
  57232. back: {
  57233. height: math.unit(6, "feet"),
  57234. name: "Back",
  57235. image: {
  57236. source: "./media/characters/pyrow/back.svg",
  57237. extra: 500/473,
  57238. bottom: 9/509
  57239. }
  57240. },
  57241. },
  57242. [
  57243. {
  57244. name: "Normal",
  57245. height: math.unit(6, "feet"),
  57246. default: true
  57247. },
  57248. ]
  57249. ))
  57250. characterMakers.push(() => makeCharacter(
  57251. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57252. {
  57253. front: {
  57254. height: math.unit(5, "meters"),
  57255. weight: math.unit(3, "tonnes"),
  57256. name: "Front",
  57257. image: {
  57258. source: "./media/characters/velikan/front.svg",
  57259. extra: 867/744,
  57260. bottom: 71/938
  57261. },
  57262. extraAttributes: {
  57263. "shoeSize": {
  57264. name: "Shoe Size",
  57265. power: 1,
  57266. type: "length",
  57267. base: math.unit(135, "ShoeSizeUK"),
  57268. defaultUnit: "ShoeSizeUK"
  57269. },
  57270. }
  57271. },
  57272. },
  57273. [
  57274. {
  57275. name: "Normal",
  57276. height: math.unit(5, "meters"),
  57277. default: true
  57278. },
  57279. {
  57280. name: "Macro",
  57281. height: math.unit(1, "km")
  57282. },
  57283. {
  57284. name: "Mega Macro",
  57285. height: math.unit(100, "km")
  57286. },
  57287. {
  57288. name: "Giga Macro",
  57289. height: math.unit(2, "megameters")
  57290. },
  57291. {
  57292. name: "Planetary",
  57293. height: math.unit(22, "megameters")
  57294. },
  57295. {
  57296. name: "Solar",
  57297. height: math.unit(8, "gigameters")
  57298. },
  57299. {
  57300. name: "Cosmic",
  57301. height: math.unit(10, "zettameters")
  57302. },
  57303. {
  57304. name: "Omni",
  57305. height: math.unit(9e260, "multiverses")
  57306. },
  57307. ]
  57308. ))
  57309. characterMakers.push(() => makeCharacter(
  57310. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57311. {
  57312. front: {
  57313. height: math.unit(4 + 3/12, "feet"),
  57314. weight: math.unit(90, "lb"),
  57315. name: "Front",
  57316. image: {
  57317. source: "./media/characters/sabiki/front.svg",
  57318. extra: 1662/1423,
  57319. bottom: 65/1727
  57320. }
  57321. },
  57322. },
  57323. [
  57324. {
  57325. name: "Normal",
  57326. height: math.unit(4 + 3/12, "feet"),
  57327. default: true
  57328. },
  57329. ]
  57330. ))
  57331. characterMakers.push(() => makeCharacter(
  57332. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57333. {
  57334. frontSfw: {
  57335. height: math.unit(2, "mm"),
  57336. name: "Front (SFW)",
  57337. image: {
  57338. source: "./media/characters/carmel/front-sfw.svg",
  57339. extra: 1131/1006,
  57340. bottom: 66/1197
  57341. }
  57342. },
  57343. frontNsfw: {
  57344. height: math.unit(2, "mm"),
  57345. name: "Front (NSFW)",
  57346. image: {
  57347. source: "./media/characters/carmel/front-nsfw.svg",
  57348. extra: 1131/1006,
  57349. bottom: 66/1197
  57350. }
  57351. },
  57352. foot: {
  57353. height: math.unit(0.3, "mm"),
  57354. name: "Foot",
  57355. image: {
  57356. source: "./media/characters/carmel/foot.svg"
  57357. }
  57358. },
  57359. tongue: {
  57360. height: math.unit(0.71, "mm"),
  57361. name: "Tongue",
  57362. image: {
  57363. source: "./media/characters/carmel/tongue.svg"
  57364. }
  57365. },
  57366. dick: {
  57367. height: math.unit(0.085, "mm"),
  57368. name: "Dick",
  57369. image: {
  57370. source: "./media/characters/carmel/dick.svg"
  57371. }
  57372. },
  57373. },
  57374. [
  57375. {
  57376. name: "Micro",
  57377. height: math.unit(2, "mm"),
  57378. default: true
  57379. },
  57380. {
  57381. name: "Normal",
  57382. height: math.unit(4 + 8/12, "feet")
  57383. },
  57384. {
  57385. name: "Mega Macro",
  57386. height: math.unit(250, "feet")
  57387. },
  57388. {
  57389. name: "BIGGER",
  57390. height: math.unit(1000, "feet")
  57391. },
  57392. {
  57393. name: "BIGGEST",
  57394. height: math.unit(2, "miles")
  57395. },
  57396. ]
  57397. ))
  57398. characterMakers.push(() => makeCharacter(
  57399. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57400. {
  57401. front: {
  57402. height: math.unit(6.5, "feet"),
  57403. weight: math.unit(198, "lb"),
  57404. name: "Front",
  57405. image: {
  57406. source: "./media/characters/tamani/anthro.svg",
  57407. extra: 930/890,
  57408. bottom: 34/964
  57409. },
  57410. form: "anthro",
  57411. default: true
  57412. },
  57413. side: {
  57414. height: math.unit(6, "feet"),
  57415. weight: math.unit(198*2, "lb"),
  57416. name: "Side",
  57417. image: {
  57418. source: "./media/characters/tamani/feral.svg",
  57419. extra: 559/519,
  57420. bottom: 43/602
  57421. },
  57422. form: "feral"
  57423. },
  57424. },
  57425. [
  57426. {
  57427. name: "Normal",
  57428. height: math.unit(6.5, "feet"),
  57429. default: true,
  57430. form: "anthro"
  57431. },
  57432. {
  57433. name: "Normal",
  57434. height: math.unit(6, "feet"),
  57435. default: true,
  57436. form: "feral"
  57437. },
  57438. ],
  57439. {
  57440. "anthro": {
  57441. name: "Anthro",
  57442. default: true
  57443. },
  57444. "feral": {
  57445. name: "Feral",
  57446. },
  57447. }
  57448. ))
  57449. characterMakers.push(() => makeCharacter(
  57450. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57451. {
  57452. front: {
  57453. height: math.unit(4 + 1/12, "feet"),
  57454. weight: math.unit(114, "lb"),
  57455. name: "Front",
  57456. image: {
  57457. source: "./media/characters/dex/front.svg",
  57458. extra: 787/680,
  57459. bottom: 18/805
  57460. }
  57461. },
  57462. side: {
  57463. height: math.unit(4 + 1/12, "feet"),
  57464. weight: math.unit(114, "lb"),
  57465. name: "Side",
  57466. image: {
  57467. source: "./media/characters/dex/side.svg",
  57468. extra: 785/680,
  57469. bottom: 12/797
  57470. }
  57471. },
  57472. back: {
  57473. height: math.unit(4 + 1/12, "feet"),
  57474. weight: math.unit(114, "lb"),
  57475. name: "Back",
  57476. image: {
  57477. source: "./media/characters/dex/back.svg",
  57478. extra: 785/681,
  57479. bottom: 17/802
  57480. }
  57481. },
  57482. loungewear: {
  57483. height: math.unit(4 + 1/12, "feet"),
  57484. weight: math.unit(114, "lb"),
  57485. name: "Loungewear",
  57486. image: {
  57487. source: "./media/characters/dex/loungewear.svg",
  57488. extra: 787/680,
  57489. bottom: 18/805
  57490. }
  57491. },
  57492. workout: {
  57493. height: math.unit(4 + 1/12, "feet"),
  57494. weight: math.unit(114, "lb"),
  57495. name: "Workout",
  57496. image: {
  57497. source: "./media/characters/dex/workout.svg",
  57498. extra: 787/680,
  57499. bottom: 18/805
  57500. }
  57501. },
  57502. schoolUniform: {
  57503. height: math.unit(4 + 1/12, "feet"),
  57504. weight: math.unit(114, "lb"),
  57505. name: "School-uniform",
  57506. image: {
  57507. source: "./media/characters/dex/school-uniform.svg",
  57508. extra: 787/680,
  57509. bottom: 18/805
  57510. }
  57511. },
  57512. maw: {
  57513. height: math.unit(0.55, "feet"),
  57514. name: "Maw",
  57515. image: {
  57516. source: "./media/characters/dex/maw.svg"
  57517. }
  57518. },
  57519. paw: {
  57520. height: math.unit(0.87, "feet"),
  57521. name: "Paw",
  57522. image: {
  57523. source: "./media/characters/dex/paw.svg"
  57524. }
  57525. },
  57526. bust: {
  57527. height: math.unit(1.67, "feet"),
  57528. name: "Bust",
  57529. image: {
  57530. source: "./media/characters/dex/bust.svg"
  57531. }
  57532. },
  57533. },
  57534. [
  57535. {
  57536. name: "Normal",
  57537. height: math.unit(4 + 1/12, "feet"),
  57538. default: true
  57539. },
  57540. ]
  57541. ))
  57542. characterMakers.push(() => makeCharacter(
  57543. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57544. {
  57545. front: {
  57546. height: math.unit(4 + 3/12, "feet"),
  57547. weight: math.unit(60, "lb"),
  57548. name: "Front",
  57549. image: {
  57550. source: "./media/characters/silke/front.svg",
  57551. extra: 1334/1122,
  57552. bottom: 21/1355
  57553. }
  57554. },
  57555. back: {
  57556. height: math.unit(4 + 3/12, "feet"),
  57557. weight: math.unit(60, "lb"),
  57558. name: "Back",
  57559. image: {
  57560. source: "./media/characters/silke/back.svg",
  57561. extra: 1328/1092,
  57562. bottom: 16/1344
  57563. }
  57564. },
  57565. dressed: {
  57566. height: math.unit(4 + 3/12, "feet"),
  57567. weight: math.unit(60, "lb"),
  57568. name: "Dressed",
  57569. image: {
  57570. source: "./media/characters/silke/dressed.svg",
  57571. extra: 1334/1122,
  57572. bottom: 43/1377
  57573. }
  57574. },
  57575. },
  57576. [
  57577. {
  57578. name: "Normal",
  57579. height: math.unit(4 + 3/12, "feet"),
  57580. default: true
  57581. },
  57582. ]
  57583. ))
  57584. characterMakers.push(() => makeCharacter(
  57585. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57586. {
  57587. front: {
  57588. height: math.unit(1.58, "meters"),
  57589. weight: math.unit(47, "kg"),
  57590. name: "Front",
  57591. image: {
  57592. source: "./media/characters/wireshark/front.svg",
  57593. extra: 883/838,
  57594. bottom: 66/949
  57595. }
  57596. },
  57597. },
  57598. [
  57599. {
  57600. name: "Normal",
  57601. height: math.unit(1.58, "meters"),
  57602. default: true
  57603. },
  57604. ]
  57605. ))
  57606. characterMakers.push(() => makeCharacter(
  57607. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57608. {
  57609. front: {
  57610. height: math.unit(6, "meters"),
  57611. weight: math.unit(15000, "kg"),
  57612. name: "Front",
  57613. image: {
  57614. source: "./media/characters/gallagher/front.svg",
  57615. extra: 532/493,
  57616. bottom: 0/532
  57617. }
  57618. },
  57619. },
  57620. [
  57621. {
  57622. name: "Normal",
  57623. height: math.unit(6, "meters"),
  57624. default: true
  57625. },
  57626. ]
  57627. ))
  57628. characterMakers.push(() => makeCharacter(
  57629. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57630. {
  57631. front: {
  57632. height: math.unit(2.4, "meters"),
  57633. weight: math.unit(270, "kg"),
  57634. name: "Front",
  57635. image: {
  57636. source: "./media/characters/alice/front.svg",
  57637. extra: 950/900,
  57638. bottom: 36/986
  57639. }
  57640. },
  57641. side: {
  57642. height: math.unit(2.4, "meters"),
  57643. weight: math.unit(270, "kg"),
  57644. name: "Side",
  57645. image: {
  57646. source: "./media/characters/alice/side.svg",
  57647. extra: 921/876,
  57648. bottom: 19/940
  57649. }
  57650. },
  57651. dressed: {
  57652. height: math.unit(2.4, "meters"),
  57653. weight: math.unit(270, "kg"),
  57654. name: "Dressed",
  57655. image: {
  57656. source: "./media/characters/alice/dressed.svg",
  57657. extra: 905/850,
  57658. bottom: 81/986
  57659. }
  57660. },
  57661. fishnet: {
  57662. height: math.unit(2.4, "meters"),
  57663. weight: math.unit(270, "kg"),
  57664. name: "Fishnet",
  57665. image: {
  57666. source: "./media/characters/alice/fishnet.svg",
  57667. extra: 905/850,
  57668. bottom: 81/986
  57669. }
  57670. },
  57671. },
  57672. [
  57673. {
  57674. name: "Normal",
  57675. height: math.unit(2.4, "meters"),
  57676. default: true
  57677. },
  57678. ]
  57679. ))
  57680. characterMakers.push(() => makeCharacter(
  57681. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57682. {
  57683. front: {
  57684. height: math.unit(175.25, "feet"),
  57685. name: "Front",
  57686. image: {
  57687. source: "./media/characters/fio/front.svg",
  57688. extra: 1883/1591,
  57689. bottom: 34/1917
  57690. }
  57691. },
  57692. },
  57693. [
  57694. {
  57695. name: "Normal",
  57696. height: math.unit(175.25, "cm"),
  57697. default: true
  57698. },
  57699. ]
  57700. ))
  57701. characterMakers.push(() => makeCharacter(
  57702. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57703. {
  57704. side: {
  57705. height: math.unit(6, "meters"),
  57706. weight: math.unit(3400, "kg"),
  57707. preyCapacity: math.unit(1700, "liters"),
  57708. name: "Side",
  57709. image: {
  57710. source: "./media/characters/hass/side.svg",
  57711. extra: 1058/997,
  57712. bottom: 177/1235
  57713. }
  57714. },
  57715. feeding: {
  57716. height: math.unit(6*0.63, "meters"),
  57717. weight: math.unit(3400, "kg"),
  57718. preyCapacity: math.unit(1700, "liters"),
  57719. name: "Feeding",
  57720. image: {
  57721. source: "./media/characters/hass/feeding.svg",
  57722. extra: 689/579,
  57723. bottom: 146/835
  57724. }
  57725. },
  57726. guts: {
  57727. height: math.unit(6, "meters"),
  57728. weight: math.unit(3400, "kg"),
  57729. name: "Guts",
  57730. image: {
  57731. source: "./media/characters/hass/guts.svg",
  57732. extra: 1223/1198,
  57733. bottom: 182/1405
  57734. }
  57735. },
  57736. dickFront: {
  57737. height: math.unit(1.4, "meters"),
  57738. name: "Dick (Front)",
  57739. image: {
  57740. source: "./media/characters/hass/dick-front.svg"
  57741. }
  57742. },
  57743. dickSide: {
  57744. height: math.unit(1.3, "meters"),
  57745. name: "Dick (Side)",
  57746. image: {
  57747. source: "./media/characters/hass/dick-side.svg"
  57748. }
  57749. },
  57750. dickBack: {
  57751. height: math.unit(1.4, "meters"),
  57752. name: "Dick (Back)",
  57753. image: {
  57754. source: "./media/characters/hass/dick-back.svg"
  57755. }
  57756. },
  57757. },
  57758. [
  57759. {
  57760. name: "Normal",
  57761. height: math.unit(6, "meters"),
  57762. default: true
  57763. },
  57764. ]
  57765. ))
  57766. characterMakers.push(() => makeCharacter(
  57767. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57768. {
  57769. front: {
  57770. height: math.unit(4, "feet"),
  57771. weight: math.unit(60, "lb"),
  57772. name: "Front",
  57773. image: {
  57774. source: "./media/characters/hickory-finnegan/front.svg",
  57775. extra: 444/411,
  57776. bottom: 10/454
  57777. }
  57778. },
  57779. side: {
  57780. height: math.unit(4, "feet"),
  57781. weight: math.unit(60, "lb"),
  57782. name: "Side",
  57783. image: {
  57784. source: "./media/characters/hickory-finnegan/side.svg",
  57785. extra: 444/411,
  57786. bottom: 10/454
  57787. }
  57788. },
  57789. back: {
  57790. height: math.unit(4, "feet"),
  57791. weight: math.unit(60, "lb"),
  57792. name: "Back",
  57793. image: {
  57794. source: "./media/characters/hickory-finnegan/back.svg",
  57795. extra: 444/411,
  57796. bottom: 10/454
  57797. }
  57798. },
  57799. },
  57800. [
  57801. {
  57802. name: "Normal",
  57803. height: math.unit(4, "feet"),
  57804. default: true
  57805. },
  57806. ]
  57807. ))
  57808. characterMakers.push(() => makeCharacter(
  57809. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57810. {
  57811. snivy_front: {
  57812. height: math.unit(2, "feet"),
  57813. weight: math.unit(17.9, "lb"),
  57814. name: "Front",
  57815. image: {
  57816. source: "./media/characters/robin-phox/snivy-front.svg",
  57817. extra: 569/504,
  57818. bottom: 33/602
  57819. },
  57820. form: "snivy",
  57821. default: true
  57822. },
  57823. snivy_frontNsfw: {
  57824. height: math.unit(2, "feet"),
  57825. weight: math.unit(17.9, "lb"),
  57826. name: "Front (NSFW)",
  57827. image: {
  57828. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57829. extra: 569/504,
  57830. bottom: 33/602
  57831. },
  57832. form: "snivy",
  57833. },
  57834. snivy_back: {
  57835. height: math.unit(2, "feet"),
  57836. weight: math.unit(17.9, "lb"),
  57837. name: "Back",
  57838. image: {
  57839. source: "./media/characters/robin-phox/snivy-back.svg",
  57840. extra: 577/508,
  57841. bottom: 21/598
  57842. },
  57843. form: "snivy",
  57844. },
  57845. snivy_foot: {
  57846. height: math.unit(0.68, "feet"),
  57847. name: "Foot",
  57848. image: {
  57849. source: "./media/characters/robin-phox/snivy-foot.svg"
  57850. },
  57851. form: "snivy",
  57852. },
  57853. snivy_sole: {
  57854. height: math.unit(0.68, "feet"),
  57855. name: "Sole",
  57856. image: {
  57857. source: "./media/characters/robin-phox/snivy-sole.svg"
  57858. },
  57859. form: "snivy",
  57860. },
  57861. yoshi_front: {
  57862. height: math.unit(6, "feet"),
  57863. weight: math.unit(150, "lb"),
  57864. name: "Front",
  57865. image: {
  57866. source: "./media/characters/robin-phox/yoshi-front.svg",
  57867. extra: 890/792,
  57868. bottom: 29/919
  57869. },
  57870. form: "yoshi",
  57871. default: true
  57872. },
  57873. yoshi_frontNsfw: {
  57874. height: math.unit(6, "feet"),
  57875. weight: math.unit(150, "lb"),
  57876. name: "Front (NSFW)",
  57877. image: {
  57878. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57879. extra: 890/792,
  57880. bottom: 29/919
  57881. },
  57882. form: "yoshi",
  57883. },
  57884. yoshi_back: {
  57885. height: math.unit(6, "feet"),
  57886. weight: math.unit(150, "lb"),
  57887. name: "Back",
  57888. image: {
  57889. source: "./media/characters/robin-phox/yoshi-back.svg",
  57890. extra: 890/792,
  57891. bottom: 29/919
  57892. },
  57893. form: "yoshi",
  57894. },
  57895. yoshi_foot: {
  57896. height: math.unit(1.5, "feet"),
  57897. name: "Foot",
  57898. image: {
  57899. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57900. },
  57901. form: "yoshi",
  57902. },
  57903. delphox_front: {
  57904. height: math.unit(4 + 11/12, "feet"),
  57905. weight: math.unit(86, "lb"),
  57906. name: "Front",
  57907. image: {
  57908. source: "./media/characters/robin-phox/delphox-front.svg",
  57909. extra: 1266/1069,
  57910. bottom: 32/1298
  57911. },
  57912. form: "delphox",
  57913. default: true
  57914. },
  57915. delphox_frontNsfw: {
  57916. height: math.unit(4 + 11/12, "feet"),
  57917. weight: math.unit(86, "lb"),
  57918. name: "Front (NSFW)",
  57919. image: {
  57920. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57921. extra: 1266/1069,
  57922. bottom: 32/1298
  57923. },
  57924. form: "delphox",
  57925. },
  57926. delphox_back: {
  57927. height: math.unit(4 + 11/12, "feet"),
  57928. weight: math.unit(86, "lb"),
  57929. name: "Back",
  57930. image: {
  57931. source: "./media/characters/robin-phox/delphox-back.svg",
  57932. extra: 1269/1083,
  57933. bottom: 15/1284
  57934. },
  57935. form: "delphox",
  57936. },
  57937. mienshao_front: {
  57938. height: math.unit(4 + 7/12, "feet"),
  57939. weight: math.unit(78.3, "lb"),
  57940. name: "Front",
  57941. image: {
  57942. source: "./media/characters/robin-phox/mienshao-front.svg",
  57943. extra: 1052/970,
  57944. bottom: 108/1160
  57945. },
  57946. form: "mienshao",
  57947. default: true
  57948. },
  57949. mienshao_frontNsfw: {
  57950. height: math.unit(4 + 7/12, "feet"),
  57951. weight: math.unit(78.3, "lb"),
  57952. name: "Front (NSFW)",
  57953. image: {
  57954. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57955. extra: 1052/970,
  57956. bottom: 108/1160
  57957. },
  57958. form: "mienshao",
  57959. },
  57960. mienshao_back: {
  57961. height: math.unit(4 + 7/12, "feet"),
  57962. weight: math.unit(78.3, "lb"),
  57963. name: "Back",
  57964. image: {
  57965. source: "./media/characters/robin-phox/mienshao-back.svg",
  57966. extra: 1102/982,
  57967. bottom: 32/1134
  57968. },
  57969. form: "mienshao",
  57970. },
  57971. inteleon_front: {
  57972. height: math.unit(6 + 3/12, "feet"),
  57973. weight: math.unit(99.6, "lb"),
  57974. name: "Front",
  57975. image: {
  57976. source: "./media/characters/robin-phox/inteleon-front.svg",
  57977. extra: 910/799,
  57978. bottom: 76/986
  57979. },
  57980. form: "inteleon",
  57981. default: true
  57982. },
  57983. inteleon_frontNsfw: {
  57984. height: math.unit(6 + 3/12, "feet"),
  57985. weight: math.unit(99.6, "lb"),
  57986. name: "Front (NSFW)",
  57987. image: {
  57988. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57989. extra: 910/799,
  57990. bottom: 76/986
  57991. },
  57992. form: "inteleon",
  57993. },
  57994. inteleon_back: {
  57995. height: math.unit(6 + 3/12, "feet"),
  57996. weight: math.unit(99.6, "lb"),
  57997. name: "Back",
  57998. image: {
  57999. source: "./media/characters/robin-phox/inteleon-back.svg",
  58000. extra: 907/796,
  58001. bottom: 25/932
  58002. },
  58003. form: "inteleon",
  58004. },
  58005. reshiram_front: {
  58006. height: math.unit(10 + 6/12, "feet"),
  58007. weight: math.unit(727.5, "lb"),
  58008. name: "Front",
  58009. image: {
  58010. source: "./media/characters/robin-phox/reshiram-front.svg",
  58011. extra: 1198/940,
  58012. bottom: 123/1321
  58013. },
  58014. form: "reshiram",
  58015. },
  58016. reshiram_frontNsfw: {
  58017. height: math.unit(10 + 6/12, "feet"),
  58018. weight: math.unit(727.5, "lb"),
  58019. name: "Front-nsfw",
  58020. image: {
  58021. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  58022. extra: 1198/940,
  58023. bottom: 123/1321
  58024. },
  58025. form: "reshiram",
  58026. },
  58027. reshiram_back: {
  58028. height: math.unit(10 + 6/12, "feet"),
  58029. weight: math.unit(727.5, "lb"),
  58030. name: "Back",
  58031. image: {
  58032. source: "./media/characters/robin-phox/reshiram-back.svg",
  58033. extra: 1024/904,
  58034. bottom: 85/1109
  58035. },
  58036. form: "reshiram",
  58037. },
  58038. samurott_front: {
  58039. height: math.unit(8, "feet"),
  58040. weight: math.unit(208.6, "lb"),
  58041. name: "Front",
  58042. image: {
  58043. source: "./media/characters/robin-phox/samurott-front.svg",
  58044. extra: 1048/984,
  58045. bottom: 100/1148
  58046. },
  58047. form: "samurott",
  58048. },
  58049. samurott_frontNsfw: {
  58050. height: math.unit(8, "feet"),
  58051. weight: math.unit(208.6, "lb"),
  58052. name: "Front-nsfw",
  58053. image: {
  58054. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  58055. extra: 1048/984,
  58056. bottom: 100/1148
  58057. },
  58058. form: "samurott",
  58059. },
  58060. samurott_back: {
  58061. height: math.unit(8, "feet"),
  58062. weight: math.unit(208.6, "lb"),
  58063. name: "Back",
  58064. image: {
  58065. source: "./media/characters/robin-phox/samurott-back.svg",
  58066. extra: 1110/1042,
  58067. bottom: 12/1122
  58068. },
  58069. form: "samurott",
  58070. },
  58071. samurott_feral: {
  58072. height: math.unit(4 + 11/12, "feet"),
  58073. weight: math.unit(208.6, "lb"),
  58074. name: "Feral",
  58075. image: {
  58076. source: "./media/characters/robin-phox/samurott-feral.svg",
  58077. extra: 766/681,
  58078. bottom: 108/874
  58079. },
  58080. form: "samurott",
  58081. },
  58082. },
  58083. [
  58084. {
  58085. name: "Normal",
  58086. height: math.unit(2, "feet"),
  58087. default: true,
  58088. form: "snivy"
  58089. },
  58090. {
  58091. name: "Normal",
  58092. height: math.unit(6, "feet"),
  58093. default: true,
  58094. form: "yoshi"
  58095. },
  58096. {
  58097. name: "Normal",
  58098. height: math.unit(4 + 11/12, "feet"),
  58099. default: true,
  58100. form: "delphox"
  58101. },
  58102. {
  58103. name: "Normal",
  58104. height: math.unit(4 + 7/12, "feet"),
  58105. default: true,
  58106. form: "mienshao"
  58107. },
  58108. {
  58109. name: "Normal",
  58110. height: math.unit(6 + 3/12, "feet"),
  58111. default: true,
  58112. form: "inteleon"
  58113. },
  58114. {
  58115. name: "Normal",
  58116. height: math.unit(10 + 6/12, "feet"),
  58117. default: true,
  58118. form: "reshiram"
  58119. },
  58120. {
  58121. name: "Normal",
  58122. height: math.unit(8, "feet"),
  58123. default: true,
  58124. form: "samurott"
  58125. },
  58126. {
  58127. name: "Macro",
  58128. height: math.unit(500, "feet"),
  58129. allForms: true
  58130. },
  58131. {
  58132. name: "Mega Macro",
  58133. height: math.unit(10, "earths"),
  58134. allForms: true
  58135. },
  58136. {
  58137. name: "Giga Macro",
  58138. height: math.unit(1, "galaxy"),
  58139. allForms: true
  58140. },
  58141. {
  58142. name: "Godly Macro",
  58143. height: math.unit(1e10, "multiverses"),
  58144. allForms: true
  58145. },
  58146. ],
  58147. {
  58148. "snivy": {
  58149. name: "Snivy",
  58150. default: true
  58151. },
  58152. "yoshi": {
  58153. name: "Yoshi",
  58154. },
  58155. "delphox": {
  58156. name: "Delphox",
  58157. },
  58158. "mienshao": {
  58159. name: "Mienshao",
  58160. },
  58161. "inteleon": {
  58162. name: "Inteleon",
  58163. },
  58164. "reshiram": {
  58165. name: "Reshiram",
  58166. },
  58167. "samurott": {
  58168. name: "Samurott",
  58169. },
  58170. }
  58171. ))
  58172. characterMakers.push(() => makeCharacter(
  58173. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58174. {
  58175. front: {
  58176. height: math.unit(4, "feet"),
  58177. name: "Front",
  58178. image: {
  58179. source: "./media/characters/ash-leung/front.svg",
  58180. extra: 1916/1792,
  58181. bottom: 50/1966
  58182. }
  58183. },
  58184. },
  58185. [
  58186. {
  58187. name: "Atomic",
  58188. height: math.unit(1, "angstrom")
  58189. },
  58190. {
  58191. name: "Microscopic",
  58192. height: math.unit(4000, "angstroms")
  58193. },
  58194. {
  58195. name: "Speck",
  58196. height: math.unit(1, "mm")
  58197. },
  58198. {
  58199. name: "Small",
  58200. height: math.unit(1, "inch")
  58201. },
  58202. {
  58203. name: "Normal",
  58204. height: math.unit(4, "feet"),
  58205. default: true
  58206. },
  58207. ]
  58208. ))
  58209. characterMakers.push(() => makeCharacter(
  58210. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58211. {
  58212. frontDressed: {
  58213. height: math.unit(2.08, "meters"),
  58214. weight: math.unit(175, "lb"),
  58215. name: "Front (Dressed)",
  58216. image: {
  58217. source: "./media/characters/carie/front-dressed.svg",
  58218. extra: 456/417,
  58219. bottom: 7/463
  58220. }
  58221. },
  58222. backDressed: {
  58223. height: math.unit(2.08, "meters"),
  58224. weight: math.unit(175, "lb"),
  58225. name: "Back (Dressed)",
  58226. image: {
  58227. source: "./media/characters/carie/back-dressed.svg",
  58228. extra: 455/414,
  58229. bottom: 11/466
  58230. }
  58231. },
  58232. front: {
  58233. height: math.unit(2, "meters"),
  58234. weight: math.unit(175, "lb"),
  58235. name: "Front",
  58236. image: {
  58237. source: "./media/characters/carie/front.svg",
  58238. extra: 438/399,
  58239. bottom: 12/450
  58240. }
  58241. },
  58242. back: {
  58243. height: math.unit(2, "meters"),
  58244. weight: math.unit(175, "lb"),
  58245. name: "Back",
  58246. image: {
  58247. source: "./media/characters/carie/back.svg",
  58248. extra: 438/397,
  58249. bottom: 7/445
  58250. }
  58251. },
  58252. },
  58253. [
  58254. {
  58255. name: "Normal",
  58256. height: math.unit(2.08, "meters"),
  58257. default: true
  58258. },
  58259. {
  58260. name: "Macro",
  58261. height: math.unit(2.08e3, "meters")
  58262. },
  58263. {
  58264. name: "Mega Macro",
  58265. height: math.unit(2.08e6, "meters")
  58266. },
  58267. {
  58268. name: "Giga Macro",
  58269. height: math.unit(2.08e9, "meters")
  58270. },
  58271. {
  58272. name: "Tera Macro",
  58273. height: math.unit(2.08e12, "meters")
  58274. },
  58275. {
  58276. name: "Peta Macro",
  58277. height: math.unit(2.08e15, "meters")
  58278. },
  58279. {
  58280. name: "Exa Macro",
  58281. height: math.unit(2.08e18, "meters")
  58282. },
  58283. {
  58284. name: "Zetta Macro",
  58285. height: math.unit(2.08e21, "meters")
  58286. },
  58287. {
  58288. name: "Yotta Macro",
  58289. height: math.unit(2.08e24, "meters")
  58290. },
  58291. ]
  58292. ))
  58293. characterMakers.push(() => makeCharacter(
  58294. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58295. {
  58296. front: {
  58297. height: math.unit(5 + 2/12, "feet"),
  58298. weight: math.unit(120, "lb"),
  58299. name: "Front",
  58300. image: {
  58301. source: "./media/characters/sai-bree/front.svg",
  58302. extra: 1843/1702,
  58303. bottom: 91/1934
  58304. }
  58305. },
  58306. back: {
  58307. height: math.unit(5 + 2/12, "feet"),
  58308. weight: math.unit(120, "lb"),
  58309. name: "Back",
  58310. image: {
  58311. source: "./media/characters/sai-bree/back.svg",
  58312. extra: 1809/1637,
  58313. bottom: 56/1865
  58314. }
  58315. },
  58316. },
  58317. [
  58318. {
  58319. name: "Normal",
  58320. height: math.unit(5 + 2/12, "feet"),
  58321. default: true
  58322. },
  58323. {
  58324. name: "Macro",
  58325. height: math.unit(500, "feet")
  58326. },
  58327. ]
  58328. ))
  58329. characterMakers.push(() => makeCharacter(
  58330. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58331. {
  58332. side: {
  58333. height: math.unit(0.77, "meters"),
  58334. weight: math.unit(120, "lb"),
  58335. name: "Side",
  58336. image: {
  58337. source: "./media/characters/davwyn/side.svg",
  58338. extra: 1557/1225,
  58339. bottom: 131/1688
  58340. }
  58341. },
  58342. front: {
  58343. height: math.unit(0.835410, "meters"),
  58344. weight: math.unit(120, "lb"),
  58345. name: "Front",
  58346. image: {
  58347. source: "./media/characters/davwyn/front.svg",
  58348. extra: 870/843,
  58349. bottom: 175/1045
  58350. }
  58351. },
  58352. },
  58353. [
  58354. {
  58355. name: "Minidrake",
  58356. height: math.unit(0.77/4, "meters")
  58357. },
  58358. {
  58359. name: "Normal",
  58360. height: math.unit(0.77, "meters"),
  58361. default: true
  58362. },
  58363. ]
  58364. ))
  58365. characterMakers.push(() => makeCharacter(
  58366. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58367. {
  58368. front: {
  58369. height: math.unit(10 + 3/12, "feet"),
  58370. weight: math.unit(2857, "lb"),
  58371. name: "Front",
  58372. image: {
  58373. source: "./media/characters/balans/front.svg",
  58374. extra: 427/402,
  58375. bottom: 26/453
  58376. }
  58377. },
  58378. side: {
  58379. height: math.unit(10 + 3/12, "feet"),
  58380. weight: math.unit(2857, "lb"),
  58381. name: "Side",
  58382. image: {
  58383. source: "./media/characters/balans/side.svg",
  58384. extra: 397/371,
  58385. bottom: 17/414
  58386. }
  58387. },
  58388. back: {
  58389. height: math.unit(10 + 3/12, "feet"),
  58390. weight: math.unit(2857, "lb"),
  58391. name: "Back",
  58392. image: {
  58393. source: "./media/characters/balans/back.svg",
  58394. extra: 408/381,
  58395. bottom: 14/422
  58396. }
  58397. },
  58398. hand: {
  58399. height: math.unit(1.15, "feet"),
  58400. name: "Hand",
  58401. image: {
  58402. source: "./media/characters/balans/hand.svg"
  58403. }
  58404. },
  58405. footRest: {
  58406. height: math.unit(3.1, "feet"),
  58407. name: "Foot (Rest)",
  58408. image: {
  58409. source: "./media/characters/balans/foot-rest.svg"
  58410. }
  58411. },
  58412. footActive: {
  58413. height: math.unit(3.5, "feet"),
  58414. name: "Foot (Active)",
  58415. image: {
  58416. source: "./media/characters/balans/foot-active.svg"
  58417. }
  58418. },
  58419. },
  58420. [
  58421. {
  58422. name: "Normal",
  58423. height: math.unit(10 + 3/12, "feet"),
  58424. default: true
  58425. },
  58426. ]
  58427. ))
  58428. characterMakers.push(() => makeCharacter(
  58429. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58430. {
  58431. side: {
  58432. height: math.unit(9, "meters"),
  58433. weight: math.unit(114, "tonnes"),
  58434. name: "Side",
  58435. image: {
  58436. source: "./media/characters/eldkveikir/side.svg",
  58437. extra: 1927/338,
  58438. bottom: 42/1969
  58439. }
  58440. },
  58441. sitting: {
  58442. height: math.unit(13.4, "meters"),
  58443. weight: math.unit(114, "tonnes"),
  58444. name: "Sitting",
  58445. image: {
  58446. source: "./media/characters/eldkveikir/sitting.svg",
  58447. extra: 1108/963,
  58448. bottom: 610/1718
  58449. }
  58450. },
  58451. maw: {
  58452. height: math.unit(8.36, "meters"),
  58453. name: "Maw",
  58454. image: {
  58455. source: "./media/characters/eldkveikir/maw.svg"
  58456. }
  58457. },
  58458. hand: {
  58459. height: math.unit(4.84, "meters"),
  58460. name: "Hand",
  58461. image: {
  58462. source: "./media/characters/eldkveikir/hand.svg"
  58463. }
  58464. },
  58465. foot: {
  58466. height: math.unit(6.9, "meters"),
  58467. name: "Foot",
  58468. image: {
  58469. source: "./media/characters/eldkveikir/foot.svg"
  58470. }
  58471. },
  58472. genitals: {
  58473. height: math.unit(9.6, "meters"),
  58474. name: "Genitals",
  58475. image: {
  58476. source: "./media/characters/eldkveikir/genitals.svg"
  58477. }
  58478. },
  58479. },
  58480. [
  58481. {
  58482. name: "Normal",
  58483. height: math.unit(9, "meters"),
  58484. default: true
  58485. },
  58486. ]
  58487. ))
  58488. characterMakers.push(() => makeCharacter(
  58489. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58490. {
  58491. front: {
  58492. height: math.unit(14, "feet"),
  58493. weight: math.unit(4100, "lb"),
  58494. name: "Front",
  58495. image: {
  58496. source: "./media/characters/arrow/front.svg",
  58497. extra: 330/318,
  58498. bottom: 56/386
  58499. }
  58500. },
  58501. },
  58502. [
  58503. {
  58504. name: "Normal",
  58505. height: math.unit(14, "feet"),
  58506. default: true
  58507. },
  58508. {
  58509. name: "Minimacro",
  58510. height: math.unit(63, "feet")
  58511. },
  58512. {
  58513. name: "Macro",
  58514. height: math.unit(630, "feet")
  58515. },
  58516. {
  58517. name: "Megamacro",
  58518. height: math.unit(12600, "feet")
  58519. },
  58520. {
  58521. name: "Gigamacro",
  58522. height: math.unit(18000, "miles")
  58523. },
  58524. ]
  58525. ))
  58526. characterMakers.push(() => makeCharacter(
  58527. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58528. {
  58529. front: {
  58530. height: math.unit(10, "feet"),
  58531. weight: math.unit(2.4, "tons"),
  58532. name: "Front",
  58533. image: {
  58534. source: "./media/characters/3yk-k0-unit/front.svg",
  58535. extra: 573/561,
  58536. bottom: 33/606
  58537. }
  58538. },
  58539. back: {
  58540. height: math.unit(10, "feet"),
  58541. weight: math.unit(2.4, "tons"),
  58542. name: "Back",
  58543. image: {
  58544. source: "./media/characters/3yk-k0-unit/back.svg",
  58545. extra: 614/573,
  58546. bottom: 32/646
  58547. }
  58548. },
  58549. maw: {
  58550. height: math.unit(2.15, "feet"),
  58551. name: "Maw",
  58552. image: {
  58553. source: "./media/characters/3yk-k0-unit/maw.svg"
  58554. }
  58555. },
  58556. },
  58557. [
  58558. {
  58559. name: "Normal",
  58560. height: math.unit(10, "feet"),
  58561. default: true
  58562. },
  58563. ]
  58564. ))
  58565. characterMakers.push(() => makeCharacter(
  58566. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58567. {
  58568. front: {
  58569. height: math.unit(8 + 8/12, "feet"),
  58570. name: "Front",
  58571. image: {
  58572. source: "./media/characters/nemo/front.svg",
  58573. extra: 1308/1217,
  58574. bottom: 57/1365
  58575. }
  58576. },
  58577. },
  58578. [
  58579. {
  58580. name: "Normal",
  58581. height: math.unit(8 + 8/12, "feet"),
  58582. default: true
  58583. },
  58584. ]
  58585. ))
  58586. characterMakers.push(() => makeCharacter(
  58587. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58588. {
  58589. front: {
  58590. height: math.unit(8, "feet"),
  58591. weight: math.unit(760, "lb"),
  58592. name: "Front",
  58593. image: {
  58594. source: "./media/characters/rexx/front.svg",
  58595. extra: 786/750,
  58596. bottom: 17/803
  58597. },
  58598. extraAttributes: {
  58599. "pawLength": {
  58600. name: "Paw Length",
  58601. power: 1,
  58602. type: "length",
  58603. base: math.unit(27, "inches")
  58604. },
  58605. }
  58606. },
  58607. },
  58608. [
  58609. {
  58610. name: "Micro",
  58611. height: math.unit(2, "inches")
  58612. },
  58613. {
  58614. name: "Normal",
  58615. height: math.unit(8, "feet"),
  58616. default: true
  58617. },
  58618. {
  58619. name: "Macro",
  58620. height: math.unit(150, "feet")
  58621. },
  58622. ]
  58623. ))
  58624. characterMakers.push(() => makeCharacter(
  58625. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58626. {
  58627. front: {
  58628. height: math.unit(18, "feet"),
  58629. weight: math.unit(1975, "lb"),
  58630. name: "Front",
  58631. image: {
  58632. source: "./media/characters/draco/front.svg",
  58633. extra: 1325/1241,
  58634. bottom: 83/1408
  58635. }
  58636. },
  58637. back: {
  58638. height: math.unit(18, "feet"),
  58639. weight: math.unit(1975, "lb"),
  58640. name: "Back",
  58641. image: {
  58642. source: "./media/characters/draco/back.svg",
  58643. extra: 1332/1250,
  58644. bottom: 43/1375
  58645. }
  58646. },
  58647. dick: {
  58648. height: math.unit(7.5, "feet"),
  58649. name: "Dick",
  58650. image: {
  58651. source: "./media/characters/draco/dick.svg"
  58652. }
  58653. },
  58654. },
  58655. [
  58656. {
  58657. name: "Normal",
  58658. height: math.unit(18, "feet"),
  58659. default: true
  58660. },
  58661. ]
  58662. ))
  58663. characterMakers.push(() => makeCharacter(
  58664. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58665. {
  58666. front: {
  58667. height: math.unit(3.2, "meters"),
  58668. name: "Front",
  58669. image: {
  58670. source: "./media/characters/harriett/front.svg",
  58671. extra: 1966/1915,
  58672. bottom: 9/1975
  58673. }
  58674. },
  58675. },
  58676. [
  58677. {
  58678. name: "Normal",
  58679. height: math.unit(3.2, "meters"),
  58680. default: true
  58681. },
  58682. ]
  58683. ))
  58684. characterMakers.push(() => makeCharacter(
  58685. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58686. {
  58687. standing: {
  58688. height: math.unit(180, "cm"),
  58689. weight: math.unit(185, "lb"),
  58690. name: "Standing",
  58691. image: {
  58692. source: "./media/characters/serpentus/standing.svg",
  58693. extra: 882/878,
  58694. bottom: 16/898
  58695. }
  58696. },
  58697. sitting: {
  58698. height: math.unit(0.8, "meter"),
  58699. weight: math.unit(155, "lb"),
  58700. name: "Sitting",
  58701. image: {
  58702. source: "./media/characters/serpentus/sitting.svg",
  58703. extra: 293/290,
  58704. bottom: 140/433
  58705. }
  58706. },
  58707. },
  58708. [
  58709. {
  58710. name: "Normal",
  58711. height: math.unit(1.8, "meter"),
  58712. default: true
  58713. },
  58714. ]
  58715. ))
  58716. characterMakers.push(() => makeCharacter(
  58717. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58718. {
  58719. front: {
  58720. height: math.unit(5.7174385736, "feet"),
  58721. name: "Front",
  58722. image: {
  58723. source: "./media/characters/nova-polecat/front.svg",
  58724. extra: 1317/1216,
  58725. bottom: 92/1409
  58726. }
  58727. },
  58728. },
  58729. [
  58730. {
  58731. name: "Normal",
  58732. height: math.unit(5.7174385736, "feet"),
  58733. default: true
  58734. },
  58735. ]
  58736. ))
  58737. characterMakers.push(() => makeCharacter(
  58738. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58739. {
  58740. front: {
  58741. height: math.unit(5 + 4/12, "feet"),
  58742. weight: math.unit(250, "lb"),
  58743. name: "Front",
  58744. image: {
  58745. source: "./media/characters/mook/front.svg",
  58746. extra: 1088/1037,
  58747. bottom: 132/1220
  58748. }
  58749. },
  58750. back: {
  58751. height: math.unit(5 + 1/12, "feet"),
  58752. weight: math.unit(250, "lb"),
  58753. name: "Back",
  58754. image: {
  58755. source: "./media/characters/mook/back.svg",
  58756. extra: 1184/905,
  58757. bottom: 96/1280
  58758. }
  58759. },
  58760. head: {
  58761. height: math.unit(1.85, "feet"),
  58762. name: "Head",
  58763. image: {
  58764. source: "./media/characters/mook/head.svg"
  58765. }
  58766. },
  58767. hand: {
  58768. height: math.unit(1.9, "feet"),
  58769. name: "Hand",
  58770. image: {
  58771. source: "./media/characters/mook/hand.svg"
  58772. }
  58773. },
  58774. palm: {
  58775. height: math.unit(1.84, "feet"),
  58776. name: "Palm",
  58777. image: {
  58778. source: "./media/characters/mook/palm.svg"
  58779. }
  58780. },
  58781. foot: {
  58782. height: math.unit(1.44, "feet"),
  58783. name: "Foot",
  58784. image: {
  58785. source: "./media/characters/mook/foot.svg"
  58786. }
  58787. },
  58788. sole: {
  58789. height: math.unit(1.44, "feet"),
  58790. name: "Sole",
  58791. image: {
  58792. source: "./media/characters/mook/sole.svg"
  58793. }
  58794. },
  58795. },
  58796. [
  58797. {
  58798. name: "Normal",
  58799. height: math.unit(5 + 4/12, "feet"),
  58800. default: true
  58801. },
  58802. {
  58803. name: "Big",
  58804. height: math.unit(12, "feet")
  58805. },
  58806. ]
  58807. ))
  58808. characterMakers.push(() => makeCharacter(
  58809. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58810. {
  58811. front: {
  58812. height: math.unit(6 + 10/12, "feet"),
  58813. weight: math.unit(233, "lb"),
  58814. name: "Front",
  58815. image: {
  58816. source: "./media/characters/kayla/front.svg",
  58817. extra: 1850/1775,
  58818. bottom: 65/1915
  58819. }
  58820. },
  58821. },
  58822. [
  58823. {
  58824. name: "Normal",
  58825. height: math.unit(6 + 10/12, "feet"),
  58826. default: true
  58827. },
  58828. {
  58829. name: "Amazonian",
  58830. height: math.unit(12 + 5/12, "feet")
  58831. },
  58832. {
  58833. name: "Mini Giantess",
  58834. height: math.unit(26, "feet")
  58835. },
  58836. {
  58837. name: "Giantess",
  58838. height: math.unit(200, "feet")
  58839. },
  58840. {
  58841. name: "Mega Giantess",
  58842. height: math.unit(2500, "feet")
  58843. },
  58844. {
  58845. name: "City Sized",
  58846. height: math.unit(50, "miles")
  58847. },
  58848. {
  58849. name: "Country Sized",
  58850. height: math.unit(500, "miles")
  58851. },
  58852. {
  58853. name: "Continent Sized",
  58854. height: math.unit(2500, "miles")
  58855. },
  58856. {
  58857. name: "Planet Sized",
  58858. height: math.unit(10000, "miles")
  58859. },
  58860. {
  58861. name: "Star Sized",
  58862. height: math.unit(5e6, "miles")
  58863. },
  58864. {
  58865. name: "Solar System Sized",
  58866. height: math.unit(125, "AU")
  58867. },
  58868. {
  58869. name: "Galaxy Sized",
  58870. height: math.unit(300e3, "lightyears")
  58871. },
  58872. {
  58873. name: "Universe Sized",
  58874. height: math.unit(200e9, "lightyears")
  58875. },
  58876. {
  58877. name: "Multiverse Sized",
  58878. height: math.unit(20, "exauniverses")
  58879. },
  58880. {
  58881. name: "Mother of Existence",
  58882. height: math.unit(1e6, "yottauniverses")
  58883. },
  58884. ]
  58885. ))
  58886. characterMakers.push(() => makeCharacter(
  58887. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58888. {
  58889. side: {
  58890. height: math.unit(9.5, "meters"),
  58891. name: "Side",
  58892. image: {
  58893. source: "./media/characters/kulve-ragnarok/side.svg",
  58894. extra: 364/326,
  58895. bottom: 50/414
  58896. }
  58897. },
  58898. },
  58899. [
  58900. {
  58901. name: "Normal",
  58902. height: math.unit(9.5, "meters"),
  58903. default: true
  58904. },
  58905. ]
  58906. ))
  58907. characterMakers.push(() => makeCharacter(
  58908. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58909. {
  58910. front: {
  58911. height: math.unit(8 + 9/12, "feet"),
  58912. name: "Front",
  58913. image: {
  58914. source: "./media/characters/atlas-goat/front.svg",
  58915. extra: 1462/1323,
  58916. bottom: 12/1474
  58917. }
  58918. },
  58919. },
  58920. [
  58921. {
  58922. name: "Normal",
  58923. height: math.unit(8 + 9/12, "feet"),
  58924. default: true
  58925. },
  58926. {
  58927. name: "Skyline",
  58928. height: math.unit(845, "feet")
  58929. },
  58930. {
  58931. name: "Orbital",
  58932. height: math.unit(93000, "miles")
  58933. },
  58934. {
  58935. name: "Constellation",
  58936. height: math.unit(27000, "lightyears")
  58937. },
  58938. ]
  58939. ))
  58940. characterMakers.push(() => makeCharacter(
  58941. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58942. {
  58943. side: {
  58944. height: math.unit(1.8, "meters"),
  58945. weight: math.unit(120, "kg"),
  58946. name: "Side",
  58947. image: {
  58948. source: "./media/characters/xie-ling/side.svg",
  58949. extra: 646/574,
  58950. bottom: 44/690
  58951. }
  58952. },
  58953. },
  58954. [
  58955. {
  58956. name: "Tiny",
  58957. height: math.unit(1.80, "meters")
  58958. },
  58959. {
  58960. name: "Small",
  58961. height: math.unit(6, "meters")
  58962. },
  58963. {
  58964. name: "Medium",
  58965. height: math.unit(15, "meters")
  58966. },
  58967. {
  58968. name: "Normal",
  58969. height: math.unit(30, "meters"),
  58970. default: true
  58971. },
  58972. {
  58973. name: "Above Normal",
  58974. height: math.unit(60, "meters")
  58975. },
  58976. {
  58977. name: "Big",
  58978. height: math.unit(220, "meters")
  58979. },
  58980. {
  58981. name: "Giant",
  58982. height: math.unit(2.2, "km")
  58983. },
  58984. {
  58985. name: "Macro",
  58986. height: math.unit(25, "km")
  58987. },
  58988. {
  58989. name: "Mega Macro",
  58990. height: math.unit(350, "km")
  58991. },
  58992. {
  58993. name: "Mega Macro+",
  58994. height: math.unit(5000, "km")
  58995. },
  58996. {
  58997. name: "Goddess",
  58998. height: math.unit(3, "multiverses")
  58999. },
  59000. ]
  59001. ))
  59002. characterMakers.push(() => makeCharacter(
  59003. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  59004. {
  59005. frontSfw: {
  59006. height: math.unit(5 + 11/12, "feet"),
  59007. weight: math.unit(210, "lb"),
  59008. name: "Front",
  59009. image: {
  59010. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  59011. extra: 1928/1821,
  59012. bottom: 45/1973
  59013. }
  59014. },
  59015. backSfw: {
  59016. height: math.unit(5 + 11/12, "feet"),
  59017. weight: math.unit(210, "lb"),
  59018. name: "Back",
  59019. image: {
  59020. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  59021. extra: 1920/1813,
  59022. bottom: 34/1954
  59023. }
  59024. },
  59025. frontNsfw: {
  59026. height: math.unit(5 + 11/12, "feet"),
  59027. weight: math.unit(210, "lb"),
  59028. name: "Front (NSFW)",
  59029. image: {
  59030. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  59031. extra: 1928/1821,
  59032. bottom: 45/1973
  59033. }
  59034. },
  59035. backNsfw: {
  59036. height: math.unit(5 + 11/12, "feet"),
  59037. weight: math.unit(210, "lb"),
  59038. name: "Back (NSFW)",
  59039. image: {
  59040. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  59041. extra: 1920/1813,
  59042. bottom: 34/1954
  59043. }
  59044. },
  59045. },
  59046. [
  59047. {
  59048. name: "Normal",
  59049. height: math.unit(5 + 11/12, "feet"),
  59050. default: true
  59051. },
  59052. {
  59053. name: "Goddess",
  59054. height: math.unit(20 + 3/12, "feet")
  59055. },
  59056. {
  59057. name: "Breaker of Man",
  59058. height: math.unit(329 + 9/12, "feet")
  59059. },
  59060. {
  59061. name: "Solar Justice",
  59062. height: math.unit(0.6, "solarradii")
  59063. },
  59064. {
  59065. name: "She Who Judges",
  59066. height: math.unit(1, "universe")
  59067. },
  59068. ]
  59069. ))
  59070. characterMakers.push(() => makeCharacter(
  59071. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  59072. {
  59073. casual_front: {
  59074. height: math.unit(6 + 1/12, "feet"),
  59075. weight: math.unit(190, "lb"),
  59076. preyCapacity: math.unit(1, "people"),
  59077. name: "Front",
  59078. image: {
  59079. source: "./media/characters/managarmr/casual-front.svg",
  59080. extra: 411/381,
  59081. bottom: 15/426
  59082. },
  59083. extraAttributes: {
  59084. "pawSize": {
  59085. name: "Paw Size",
  59086. power: 1,
  59087. type: "length",
  59088. base: math.unit(0.2, "meters")
  59089. },
  59090. },
  59091. form: "casual",
  59092. },
  59093. casual_back: {
  59094. height: math.unit(6 + 1/12, "feet"),
  59095. weight: math.unit(190, "lb"),
  59096. preyCapacity: math.unit(1, "people"),
  59097. name: "Back",
  59098. image: {
  59099. source: "./media/characters/managarmr/casual-back.svg",
  59100. extra: 413/383,
  59101. bottom: 13/426
  59102. },
  59103. extraAttributes: {
  59104. "pawSize": {
  59105. name: "Paw Size",
  59106. power: 1,
  59107. type: "length",
  59108. base: math.unit(0.2, "meters")
  59109. },
  59110. },
  59111. form: "casual",
  59112. },
  59113. base_front: {
  59114. height: math.unit(7, "feet"),
  59115. weight: math.unit(210, "lb"),
  59116. preyCapacity: math.unit(2, "people"),
  59117. name: "Front",
  59118. image: {
  59119. source: "./media/characters/managarmr/base-front.svg",
  59120. extra: 580/485,
  59121. bottom: 32/612
  59122. },
  59123. extraAttributes: {
  59124. "wingspan": {
  59125. name: "Wingspan",
  59126. power: 1,
  59127. type: "length",
  59128. base: math.unit(4, "meters")
  59129. },
  59130. "pawSize": {
  59131. name: "Paw Size",
  59132. power: 1,
  59133. type: "length",
  59134. base: math.unit(0.2, "meters")
  59135. },
  59136. },
  59137. form: "base",
  59138. },
  59139. "true-divine_front": {
  59140. height: math.unit(40, "feet"),
  59141. weight: math.unit(39000, "lb"),
  59142. preyCapacity: math.unit(375, "people"),
  59143. name: "Front",
  59144. image: {
  59145. source: "./media/characters/managarmr/true-divine-front.svg",
  59146. extra: 725/573,
  59147. bottom: 120/845
  59148. },
  59149. extraAttributes: {
  59150. "wingspan": {
  59151. name: "Wingspan",
  59152. power: 1,
  59153. type: "length",
  59154. base: math.unit(20, "meters")
  59155. },
  59156. "pawSize": {
  59157. name: "Paw Size",
  59158. power: 1,
  59159. type: "length",
  59160. base: math.unit(1.5, "meters")
  59161. },
  59162. },
  59163. form: "true-divine",
  59164. },
  59165. },
  59166. [
  59167. {
  59168. name: "Normal",
  59169. height: math.unit(6 + 1/12, "feet"),
  59170. form: "casual",
  59171. default: true
  59172. },
  59173. {
  59174. name: "Normal",
  59175. height: math.unit(7, "feet"),
  59176. form: "base",
  59177. default: true
  59178. },
  59179. ],
  59180. {
  59181. "casual": {
  59182. name: "Casual",
  59183. default: true
  59184. },
  59185. "base": {
  59186. name: "Base",
  59187. },
  59188. "true-divine": {
  59189. name: "True Divine",
  59190. },
  59191. }
  59192. ))
  59193. characterMakers.push(() => makeCharacter(
  59194. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59195. {
  59196. front: {
  59197. height: math.unit(1.8, "meters"),
  59198. weight: math.unit(110, "kg"),
  59199. name: "Front",
  59200. image: {
  59201. source: "./media/characters/mystra/front.svg",
  59202. extra: 529/442,
  59203. bottom: 31/560
  59204. }
  59205. },
  59206. frontLewd: {
  59207. height: math.unit(1.8, "meters"),
  59208. weight: math.unit(110, "kg"),
  59209. name: "Front (Lewd)",
  59210. image: {
  59211. source: "./media/characters/mystra/front-lewd.svg",
  59212. extra: 529/442,
  59213. bottom: 31/560
  59214. }
  59215. },
  59216. head: {
  59217. height: math.unit(1.63, "feet"),
  59218. name: "Head",
  59219. image: {
  59220. source: "./media/characters/mystra/head.svg"
  59221. }
  59222. },
  59223. paw: {
  59224. height: math.unit(1.9, "feet"),
  59225. name: "Paw",
  59226. image: {
  59227. source: "./media/characters/mystra/paw.svg"
  59228. }
  59229. },
  59230. },
  59231. [
  59232. {
  59233. name: "Incognito",
  59234. height: math.unit(2.3, "meters")
  59235. },
  59236. {
  59237. name: "Small Macro",
  59238. height: math.unit(300, "meters")
  59239. },
  59240. {
  59241. name: "Small Mega",
  59242. height: math.unit(2, "km")
  59243. },
  59244. {
  59245. name: "Mega",
  59246. height: math.unit(30, "km")
  59247. },
  59248. {
  59249. name: "Small Giga",
  59250. height: math.unit(100, "km")
  59251. },
  59252. {
  59253. name: "Giga",
  59254. height: math.unit(1000, "km"),
  59255. default: true
  59256. },
  59257. {
  59258. name: "Continental",
  59259. height: math.unit(5000, "km")
  59260. },
  59261. {
  59262. name: "Terra",
  59263. height: math.unit(20000, "km")
  59264. },
  59265. {
  59266. name: "Solar",
  59267. height: math.unit(2e6, "km")
  59268. },
  59269. {
  59270. name: "Galactic",
  59271. height: math.unit(528502, "lightyears")
  59272. },
  59273. {
  59274. name: "Universal",
  59275. height: math.unit(20, "universes")
  59276. },
  59277. ]
  59278. ))
  59279. characterMakers.push(() => makeCharacter(
  59280. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59281. {
  59282. front: {
  59283. height: math.unit(2, "meters"),
  59284. weight: math.unit(140, "kg"),
  59285. name: "Front",
  59286. image: {
  59287. source: "./media/characters/caleb/front.svg",
  59288. extra: 873/817,
  59289. bottom: 47/920
  59290. }
  59291. },
  59292. back: {
  59293. height: math.unit(2, "meters"),
  59294. weight: math.unit(140, "kg"),
  59295. name: "Back",
  59296. image: {
  59297. source: "./media/characters/caleb/back.svg",
  59298. extra: 877/828,
  59299. bottom: 24/901
  59300. }
  59301. },
  59302. snakeTail: {
  59303. height: math.unit(1.44, "feet"),
  59304. name: "Snake Tail",
  59305. image: {
  59306. source: "./media/characters/caleb/snake-tail.svg"
  59307. }
  59308. },
  59309. dick: {
  59310. height: math.unit(2.6, "feet"),
  59311. name: "Dick",
  59312. image: {
  59313. source: "./media/characters/caleb/dick.svg"
  59314. }
  59315. },
  59316. },
  59317. [
  59318. {
  59319. name: "Incognito",
  59320. height: math.unit(3, "meters")
  59321. },
  59322. {
  59323. name: "Home Size",
  59324. height: math.unit(200, "meters"),
  59325. default: true
  59326. },
  59327. {
  59328. name: "Macro",
  59329. height: math.unit(500, "meters")
  59330. },
  59331. {
  59332. name: "Big Macro",
  59333. height: math.unit(5, "km")
  59334. },
  59335. {
  59336. name: "Giga",
  59337. height: math.unit(250, "km")
  59338. },
  59339. {
  59340. name: "Giga+",
  59341. height: math.unit(5000, "km")
  59342. },
  59343. {
  59344. name: "Small Terra",
  59345. height: math.unit(35e3, "km")
  59346. },
  59347. {
  59348. name: "Terra",
  59349. height: math.unit(2e6, "km")
  59350. },
  59351. {
  59352. name: "Terra+",
  59353. height: math.unit(1.5e6, "km")
  59354. },
  59355. ]
  59356. ))
  59357. characterMakers.push(() => makeCharacter(
  59358. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59359. {
  59360. front: {
  59361. height: math.unit(2, "meters"),
  59362. weight: math.unit(120, "kg"),
  59363. name: "Front",
  59364. image: {
  59365. source: "./media/characters/gilirian/front.svg",
  59366. extra: 805/737,
  59367. bottom: 13/818
  59368. }
  59369. },
  59370. side: {
  59371. height: math.unit(2, "meters"),
  59372. weight: math.unit(120, "kg"),
  59373. name: "Side",
  59374. image: {
  59375. source: "./media/characters/gilirian/side.svg",
  59376. extra: 810/746,
  59377. bottom: 6/816
  59378. }
  59379. },
  59380. back: {
  59381. height: math.unit(2, "meters"),
  59382. weight: math.unit(120, "kg"),
  59383. name: "Back",
  59384. image: {
  59385. source: "./media/characters/gilirian/back.svg",
  59386. extra: 815/745,
  59387. bottom: 15/830
  59388. }
  59389. },
  59390. frontNsfw: {
  59391. height: math.unit(2, "meters"),
  59392. weight: math.unit(120, "kg"),
  59393. name: "Front (NSFW)",
  59394. image: {
  59395. source: "./media/characters/gilirian/front-nsfw.svg",
  59396. extra: 805/737,
  59397. bottom: 13/818
  59398. }
  59399. },
  59400. sideNsfw: {
  59401. height: math.unit(2, "meters"),
  59402. weight: math.unit(120, "kg"),
  59403. name: "Side (NSFW)",
  59404. image: {
  59405. source: "./media/characters/gilirian/side-nsfw.svg",
  59406. extra: 810/746,
  59407. bottom: 6/816
  59408. }
  59409. },
  59410. },
  59411. [
  59412. {
  59413. name: "Incognito",
  59414. height: math.unit(2, "meters"),
  59415. default: true
  59416. },
  59417. {
  59418. name: "Macro",
  59419. height: math.unit(250, "meters")
  59420. },
  59421. {
  59422. name: "Big Macro",
  59423. height: math.unit(1500, "meters")
  59424. },
  59425. {
  59426. name: "Mega",
  59427. height: math.unit(40, "km")
  59428. },
  59429. {
  59430. name: "Giga",
  59431. height: math.unit(300, "km")
  59432. },
  59433. {
  59434. name: "Extra Giga",
  59435. height: math.unit(5000, "km")
  59436. },
  59437. {
  59438. name: "Small Terra",
  59439. height: math.unit(10e3, "km")
  59440. },
  59441. {
  59442. name: "Terra",
  59443. height: math.unit(3e5, "km")
  59444. },
  59445. {
  59446. name: "Galactic",
  59447. height: math.unit(369950, "lightyears")
  59448. },
  59449. ]
  59450. ))
  59451. characterMakers.push(() => makeCharacter(
  59452. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59453. {
  59454. front: {
  59455. height: math.unit(2.5, "meters"),
  59456. weight: math.unit(230, "lb"),
  59457. name: "Front",
  59458. image: {
  59459. source: "./media/characters/tarken/front.svg",
  59460. extra: 764/720,
  59461. bottom: 49/813
  59462. }
  59463. },
  59464. back: {
  59465. height: math.unit(2.5, "meters"),
  59466. weight: math.unit(230, "lb"),
  59467. name: "Back",
  59468. image: {
  59469. source: "./media/characters/tarken/back.svg",
  59470. extra: 756/720,
  59471. bottom: 35/791
  59472. }
  59473. },
  59474. frontNsfw: {
  59475. height: math.unit(2.5, "meters"),
  59476. weight: math.unit(230, "lb"),
  59477. name: "Front (NSFW)",
  59478. image: {
  59479. source: "./media/characters/tarken/front-nsfw.svg",
  59480. extra: 764/720,
  59481. bottom: 49/813
  59482. }
  59483. },
  59484. backNsfw: {
  59485. height: math.unit(2.5, "meters"),
  59486. weight: math.unit(230, "lb"),
  59487. name: "Back (NSFW)",
  59488. image: {
  59489. source: "./media/characters/tarken/back-nsfw.svg",
  59490. extra: 756/720,
  59491. bottom: 35/791
  59492. }
  59493. },
  59494. head: {
  59495. height: math.unit(2.22, "feet"),
  59496. name: "Head",
  59497. image: {
  59498. source: "./media/characters/tarken/head.svg"
  59499. }
  59500. },
  59501. tail: {
  59502. height: math.unit(5.25, "feet"),
  59503. name: "Tail",
  59504. image: {
  59505. source: "./media/characters/tarken/tail.svg"
  59506. }
  59507. },
  59508. dick: {
  59509. height: math.unit(1.95, "feet"),
  59510. name: "Dick",
  59511. image: {
  59512. source: "./media/characters/tarken/dick.svg"
  59513. }
  59514. },
  59515. hand: {
  59516. height: math.unit(1.78, "feet"),
  59517. name: "Hand",
  59518. image: {
  59519. source: "./media/characters/tarken/hand.svg"
  59520. }
  59521. },
  59522. beam: {
  59523. height: math.unit(1.5, "feet"),
  59524. name: "Beam",
  59525. image: {
  59526. source: "./media/characters/tarken/beam.svg"
  59527. }
  59528. },
  59529. },
  59530. [
  59531. {
  59532. name: "Original Size",
  59533. height: math.unit(2.5, "meters")
  59534. },
  59535. {
  59536. name: "Macro",
  59537. height: math.unit(150, "meters"),
  59538. default: true
  59539. },
  59540. {
  59541. name: "Macro+",
  59542. height: math.unit(300, "meters")
  59543. },
  59544. {
  59545. name: "Mega",
  59546. height: math.unit(2, "km")
  59547. },
  59548. {
  59549. name: "Mega+",
  59550. height: math.unit(35, "km")
  59551. },
  59552.  {
  59553. name: "Mega++",
  59554. height: math.unit(60, "km")
  59555. },
  59556. {
  59557. name: "Giga",
  59558. height: math.unit(200, "km")
  59559. },
  59560. {
  59561. name: "Giga+",
  59562. height: math.unit(2500, "km")
  59563. },
  59564. {
  59565. name: "Giga++",
  59566. height: math.unit(6600, "km")
  59567. },
  59568. {
  59569. name: "Terra",
  59570. height: math.unit(20000, "km")
  59571. },
  59572. {
  59573. name: "Terra+",
  59574. height: math.unit(300000, "km")
  59575. },
  59576. ]
  59577. ))
  59578. characterMakers.push(() => makeCharacter(
  59579. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59580. {
  59581. magpie_dressed: {
  59582. height: math.unit(1.7, "meters"),
  59583. weight: math.unit(70, "kg"),
  59584. name: "Dressed",
  59585. image: {
  59586. source: "./media/characters/otreus/magpie-dressed.svg",
  59587. extra: 691/672,
  59588. bottom: 116/807
  59589. },
  59590. form: "magpie",
  59591. default: true
  59592. },
  59593. magpie_nude: {
  59594. height: math.unit(1.7, "meters"),
  59595. weight: math.unit(70, "kg"),
  59596. name: "Nude",
  59597. image: {
  59598. source: "./media/characters/otreus/magpie-nude.svg",
  59599. extra: 691/672,
  59600. bottom: 116/807
  59601. },
  59602. form: "magpie",
  59603. },
  59604. magpie_dressedLewd: {
  59605. height: math.unit(1.7, "meters"),
  59606. weight: math.unit(70, "kg"),
  59607. name: "Dressed (Lewd)",
  59608. image: {
  59609. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59610. extra: 691/672,
  59611. bottom: 116/807
  59612. },
  59613. form: "magpie",
  59614. },
  59615. magpie_nudeLewd: {
  59616. height: math.unit(1.7, "meters"),
  59617. weight: math.unit(70, "kg"),
  59618. name: "Nude (Lewd)",
  59619. image: {
  59620. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59621. extra: 691/672,
  59622. bottom: 116/807
  59623. },
  59624. form: "magpie",
  59625. },
  59626. magpie_leftFoot: {
  59627. height: math.unit(1.58, "feet"),
  59628. name: "Left Foot",
  59629. image: {
  59630. source: "./media/characters/otreus/magpie-left-foot.svg"
  59631. },
  59632. form: "magpie",
  59633. },
  59634. magpie_rightFoot: {
  59635. height: math.unit(1.58, "feet"),
  59636. name: "Right Foot",
  59637. image: {
  59638. source: "./media/characters/otreus/magpie-right-foot.svg"
  59639. },
  59640. form: "magpie",
  59641. },
  59642. magpie_wingspan: {
  59643. height: math.unit(2, "meters"),
  59644. weight: math.unit(70, "kg"),
  59645. name: "Wingspan",
  59646. image: {
  59647. source: "./media/characters/otreus/magpie-wingspan.svg"
  59648. },
  59649. extraAttributes: {
  59650. "wingspan": {
  59651. name: "Wingspan",
  59652. power: 1,
  59653. type: "length",
  59654. base: math.unit(3.35, "meters")
  59655. },
  59656. },
  59657. form: "magpie",
  59658. },
  59659. hippogriff_dressed: {
  59660. height: math.unit(1.7, "meters"),
  59661. weight: math.unit(70, "kg"),
  59662. name: "Dressed",
  59663. image: {
  59664. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59665. extra: 710/689,
  59666. bottom: 67/777
  59667. },
  59668. form: "hippogriff",
  59669. default: true
  59670. },
  59671. hippogriff_nude: {
  59672. height: math.unit(1.7, "meters"),
  59673. weight: math.unit(70, "kg"),
  59674. name: "Nude",
  59675. image: {
  59676. source: "./media/characters/otreus/hippogriff-nude.svg",
  59677. extra: 710/689,
  59678. bottom: 67/777
  59679. },
  59680. form: "hippogriff",
  59681. },
  59682. hippogriff_dressedLewd: {
  59683. height: math.unit(1.7, "meters"),
  59684. weight: math.unit(70, "kg"),
  59685. name: "Dressed (Lewd)",
  59686. image: {
  59687. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59688. extra: 710/689,
  59689. bottom: 67/777
  59690. },
  59691. form: "hippogriff",
  59692. },
  59693. hippogriff_nudeLewd: {
  59694. height: math.unit(1.7, "meters"),
  59695. weight: math.unit(70, "kg"),
  59696. name: "Nude (Lewd)",
  59697. image: {
  59698. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59699. extra: 710/689,
  59700. bottom: 67/777
  59701. },
  59702. form: "hippogriff",
  59703. },
  59704. },
  59705. [
  59706. {
  59707. name: "Original Size",
  59708. height: math.unit(1.7, "meters"),
  59709. allForms: true
  59710. },
  59711. {
  59712. name: "Incognito Size",
  59713. height: math.unit(2, "meters"),
  59714. allForms: true
  59715. },
  59716. {
  59717. name: "Mega",
  59718. height: math.unit(2, "km"),
  59719. allForms: true
  59720. },
  59721. {
  59722. name: "Mega+",
  59723. height: math.unit(40, "km"),
  59724. allForms: true
  59725. },
  59726. {
  59727. name: "Giga",
  59728. height: math.unit(250, "km"),
  59729. allForms: true
  59730. },
  59731. {
  59732. name: "Giga+",
  59733. height: math.unit(3000, "km"),
  59734. allForms: true
  59735. },
  59736. {
  59737. name: "Terra",
  59738. height: math.unit(20000, "km"),
  59739. allForms: true
  59740. },
  59741. {
  59742. name: "Solar (Home Size)",
  59743. height: math.unit(3e6, "km"),
  59744. allForms: true,
  59745. default: true
  59746. },
  59747. ],
  59748. {
  59749. "magpie": {
  59750. name: "Magpie",
  59751. default: true
  59752. },
  59753. "hippogriff": {
  59754. name: "Hippogriff",
  59755. },
  59756. }
  59757. ))
  59758. characterMakers.push(() => makeCharacter(
  59759. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59760. {
  59761. frontDressed: {
  59762. height: math.unit(1.8, "meters"),
  59763. weight: math.unit(90, "kg"),
  59764. name: "Front (Dressed)",
  59765. image: {
  59766. source: "./media/characters/thalia/front-dressed.svg",
  59767. extra: 478/402,
  59768. bottom: 55/533
  59769. }
  59770. },
  59771. backDressed: {
  59772. height: math.unit(1.8, "meters"),
  59773. weight: math.unit(90, "kg"),
  59774. name: "Back (Dressed)",
  59775. image: {
  59776. source: "./media/characters/thalia/back-dressed.svg",
  59777. extra: 500/424,
  59778. bottom: 15/515
  59779. }
  59780. },
  59781. frontNude: {
  59782. height: math.unit(1.8, "meters"),
  59783. weight: math.unit(90, "kg"),
  59784. name: "Front (Nude)",
  59785. image: {
  59786. source: "./media/characters/thalia/front-nude.svg",
  59787. extra: 478/402,
  59788. bottom: 55/533
  59789. }
  59790. },
  59791. backNude: {
  59792. height: math.unit(1.8, "meters"),
  59793. weight: math.unit(90, "kg"),
  59794. name: "Back (Nude)",
  59795. image: {
  59796. source: "./media/characters/thalia/back-nude.svg",
  59797. extra: 500/424,
  59798. bottom: 15/515
  59799. }
  59800. },
  59801. },
  59802. [
  59803. {
  59804. name: "Incognito",
  59805. height: math.unit(3, "meters")
  59806. },
  59807. {
  59808. name: "Macro",
  59809. height: math.unit(500, "meters")
  59810. },
  59811. {
  59812. name: "Mega",
  59813. height: math.unit(5, "km")
  59814. },
  59815. {
  59816. name: "Mega+",
  59817. height: math.unit(30, "km")
  59818. },
  59819. {
  59820. name: "Giga",
  59821. height: math.unit(350, "km")
  59822. },
  59823. {
  59824. name: "Giga+",
  59825. height: math.unit(4000, "km")
  59826. },
  59827. {
  59828. name: "Terra",
  59829. height: math.unit(35000, "km")
  59830. },
  59831. {
  59832. name: "Original Size",
  59833. height: math.unit(130000, "km")
  59834. },
  59835. {
  59836. name: "Solar (Home Size)",
  59837. height: math.unit(4e6, "km"),
  59838. default: true
  59839. },
  59840. ]
  59841. ))
  59842. characterMakers.push(() => makeCharacter(
  59843. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59844. {
  59845. front: {
  59846. height: math.unit(1.8, "meters"),
  59847. weight: math.unit(95, "kg"),
  59848. name: "Front",
  59849. image: {
  59850. source: "./media/characters/shango/front.svg",
  59851. extra: 1925/1774,
  59852. bottom: 67/1992
  59853. }
  59854. },
  59855. back: {
  59856. height: math.unit(1.8, "meters"),
  59857. weight: math.unit(95, "kg"),
  59858. name: "Back",
  59859. image: {
  59860. source: "./media/characters/shango/back.svg",
  59861. extra: 1915/1766,
  59862. bottom: 52/1967
  59863. }
  59864. },
  59865. frontLewd: {
  59866. height: math.unit(1.8, "meters"),
  59867. weight: math.unit(95, "kg"),
  59868. name: "Front (Lewd)",
  59869. image: {
  59870. source: "./media/characters/shango/front-lewd.svg",
  59871. extra: 1925/1774,
  59872. bottom: 67/1992
  59873. }
  59874. },
  59875. backLewd: {
  59876. height: math.unit(1.8, "meters"),
  59877. weight: math.unit(95, "kg"),
  59878. name: "Back (Lewd)",
  59879. image: {
  59880. source: "./media/characters/shango/back-lewd.svg",
  59881. extra: 1915/1766,
  59882. bottom: 52/1967
  59883. }
  59884. },
  59885. maw: {
  59886. height: math.unit(1.64, "feet"),
  59887. name: "Maw",
  59888. image: {
  59889. source: "./media/characters/shango/maw.svg"
  59890. }
  59891. },
  59892. dick: {
  59893. height: math.unit(2.14, "feet"),
  59894. name: "Dick",
  59895. image: {
  59896. source: "./media/characters/shango/dick.svg"
  59897. }
  59898. },
  59899. },
  59900. [
  59901. {
  59902. name: "Incognito",
  59903. height: math.unit(1.8, "meters")
  59904. },
  59905. {
  59906. name: "Home Size",
  59907. height: math.unit(60, "meters"),
  59908. default: true
  59909. },
  59910. {
  59911. name: "Macro",
  59912. height: math.unit(450, "meters")
  59913. },
  59914. {
  59915. name: "Mega",
  59916. height: math.unit(6, "km")
  59917. },
  59918. {
  59919. name: "Mega+",
  59920. height: math.unit(35, "km")
  59921. },
  59922. {
  59923. name: "Giga",
  59924. height: math.unit(500, "km")
  59925. },
  59926. {
  59927. name: "Giga+",
  59928. height: math.unit(5000, "km")
  59929. },
  59930. {
  59931. name: "Terra",
  59932. height: math.unit(60000, "km")
  59933. },
  59934. {
  59935. name: "Terra+",
  59936. height: math.unit(400000, "km")
  59937. },
  59938. ]
  59939. ))
  59940. characterMakers.push(() => makeCharacter(
  59941. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59942. {
  59943. front: {
  59944. height: math.unit(2, "meters"),
  59945. weight: math.unit(95, "kg"),
  59946. name: "Front",
  59947. image: {
  59948. source: "./media/characters/osiris-gryphon/front.svg",
  59949. extra: 1508/1313,
  59950. bottom: 87/1595
  59951. }
  59952. },
  59953. back: {
  59954. height: math.unit(2, "meters"),
  59955. weight: math.unit(95, "kg"),
  59956. name: "Back",
  59957. image: {
  59958. source: "./media/characters/osiris-gryphon/back.svg",
  59959. extra: 1436/1309,
  59960. bottom: 64/1500
  59961. }
  59962. },
  59963. frontLewd: {
  59964. height: math.unit(2, "meters"),
  59965. weight: math.unit(95, "kg"),
  59966. name: "Front-lewd",
  59967. image: {
  59968. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59969. extra: 1508/1313,
  59970. bottom: 87/1595
  59971. }
  59972. },
  59973. wing: {
  59974. height: math.unit(6.3333, "feet"),
  59975. name: "Wing",
  59976. image: {
  59977. source: "./media/characters/osiris-gryphon/wing.svg"
  59978. }
  59979. },
  59980. },
  59981. [
  59982. {
  59983. name: "Incognito",
  59984. height: math.unit(2, "meters")
  59985. },
  59986. {
  59987. name: "Home Size",
  59988. height: math.unit(30, "meters"),
  59989. default: true
  59990. },
  59991. {
  59992. name: "Macro",
  59993. height: math.unit(100, "meters")
  59994. },
  59995. {
  59996. name: "Macro+",
  59997. height: math.unit(350, "meters")
  59998. },
  59999. {
  60000. name: "Mega",
  60001. height: math.unit(40, "km")
  60002. },
  60003. {
  60004. name: "Giga",
  60005. height: math.unit(300, "km")
  60006. },
  60007. {
  60008. name: "Giga+",
  60009. height: math.unit(2000, "km")
  60010. },
  60011. {
  60012. name: "Terra",
  60013. height: math.unit(30000, "km")
  60014. },
  60015. ]
  60016. ))
  60017. characterMakers.push(() => makeCharacter(
  60018. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  60019. {
  60020. front: {
  60021. height: math.unit(2.5, "meters"),
  60022. weight: math.unit(200, "kg"),
  60023. name: "Front",
  60024. image: {
  60025. source: "./media/characters/atlas-dragon/front.svg",
  60026. extra: 745/462,
  60027. bottom: 36/781
  60028. }
  60029. },
  60030. back: {
  60031. height: math.unit(2.5, "meters"),
  60032. weight: math.unit(200, "kg"),
  60033. name: "Back",
  60034. image: {
  60035. source: "./media/characters/atlas-dragon/back.svg",
  60036. extra: 848/822,
  60037. bottom: 57/905
  60038. }
  60039. },
  60040. frontLewd: {
  60041. height: math.unit(2.5, "meters"),
  60042. weight: math.unit(200, "kg"),
  60043. name: "Front (Lewd)",
  60044. image: {
  60045. source: "./media/characters/atlas-dragon/front-lewd.svg",
  60046. extra: 745/462,
  60047. bottom: 36/781
  60048. }
  60049. },
  60050. backLewd: {
  60051. height: math.unit(2.5, "meters"),
  60052. weight: math.unit(200, "kg"),
  60053. name: "Back (Lewd)",
  60054. image: {
  60055. source: "./media/characters/atlas-dragon/back-lewd.svg",
  60056. extra: 848/822,
  60057. bottom: 57/905
  60058. }
  60059. },
  60060. },
  60061. [
  60062. {
  60063. name: "Incognito",
  60064. height: math.unit(2.5, "meters")
  60065. },
  60066. {
  60067. name: "Small Macro",
  60068. height: math.unit(50, "meters")
  60069. },
  60070. {
  60071. name: "Macro",
  60072. height: math.unit(350, "meters")
  60073. },
  60074. {
  60075. name: "Mega",
  60076. height: math.unit(5.5, "kilometers")
  60077. },
  60078. {
  60079. name: "Mega+",
  60080. height: math.unit(50, "km")
  60081. },
  60082. {
  60083. name: "Giga",
  60084. height: math.unit(350, "km")
  60085. },
  60086. {
  60087. name: "Giga+",
  60088. height: math.unit(2000, "km")
  60089. },
  60090. {
  60091. name: "Giga++",
  60092. height: math.unit(6500, "km")
  60093. },
  60094. {
  60095. name: "Terra",
  60096. height: math.unit(30000, "km")
  60097. },
  60098. {
  60099. name: "Terra+",
  60100. height: math.unit(250000, "km")
  60101. },
  60102. {
  60103. name: "True Size",
  60104. height: math.unit(100, "multiverses"),
  60105. default: true
  60106. },
  60107. ]
  60108. ))
  60109. characterMakers.push(() => makeCharacter(
  60110. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60111. {
  60112. front: {
  60113. height: math.unit(1.8, "m"),
  60114. weight: math.unit(120, "kg"),
  60115. name: "Front",
  60116. image: {
  60117. source: "./media/characters/chey/front.svg",
  60118. extra: 1359/1270,
  60119. bottom: 18/1377
  60120. }
  60121. },
  60122. arm: {
  60123. height: math.unit(2.05, "feet"),
  60124. name: "Arm",
  60125. image: {
  60126. source: "./media/characters/chey/arm.svg"
  60127. }
  60128. },
  60129. head: {
  60130. height: math.unit(1.89, "feet"),
  60131. name: "Head",
  60132. image: {
  60133. source: "./media/characters/chey/head.svg"
  60134. }
  60135. },
  60136. },
  60137. [
  60138. {
  60139. name: "Original Size",
  60140. height: math.unit(5, "cm")
  60141. },
  60142. {
  60143. name: "Incognito Size",
  60144. height: math.unit(2.4, "m")
  60145. },
  60146. {
  60147. name: "Home Size",
  60148. height: math.unit(200, "meters"),
  60149. default: true
  60150. },
  60151. {
  60152. name: "Mega",
  60153. height: math.unit(2, "km")
  60154. },
  60155. {
  60156. name: "Giga (Preferred Size)",
  60157. height: math.unit(2000, "km")
  60158. },
  60159. {
  60160. name: "Giga+",
  60161. height: math.unit(6000, "km")
  60162. },
  60163. {
  60164. name: "Terra",
  60165. height: math.unit(17000, "km")
  60166. },
  60167. {
  60168. name: "Terra+",
  60169. height: math.unit(75000, "km")
  60170. },
  60171. {
  60172. name: "Terra++",
  60173. height: math.unit(225000, "km")
  60174. },
  60175. ]
  60176. ))
  60177. characterMakers.push(() => makeCharacter(
  60178. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60179. {
  60180. side: {
  60181. height: math.unit(7.8, "meters"),
  60182. name: "Side",
  60183. image: {
  60184. source: "./media/characters/ragnarok/side.svg",
  60185. extra: 725/621,
  60186. bottom: 72/797
  60187. }
  60188. },
  60189. },
  60190. [
  60191. {
  60192. name: "Normal",
  60193. height: math.unit(7.8, "meters"),
  60194. default: true
  60195. },
  60196. ]
  60197. ))
  60198. characterMakers.push(() => makeCharacter(
  60199. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60200. {
  60201. hyena_front: {
  60202. height: math.unit(2.1, "meters"),
  60203. weight: math.unit(110, "kg"),
  60204. name: "Front",
  60205. image: {
  60206. source: "./media/characters/nima/hyena-front.svg",
  60207. extra: 1904/1796,
  60208. bottom: 67/1971
  60209. },
  60210. form: "hyena",
  60211. },
  60212. hyena_back: {
  60213. height: math.unit(2.1, "meters"),
  60214. weight: math.unit(110, "kg"),
  60215. name: "Back",
  60216. image: {
  60217. source: "./media/characters/nima/hyena-back.svg",
  60218. extra: 1964/1884,
  60219. bottom: 35/1999
  60220. },
  60221. form: "hyena",
  60222. },
  60223. shark_front: {
  60224. height: math.unit(1.95, "meters"),
  60225. weight: math.unit(110, "kg"),
  60226. name: "Front",
  60227. image: {
  60228. source: "./media/characters/nima/shark-front.svg",
  60229. extra: 2238/2013,
  60230. bottom: 0/223
  60231. },
  60232. form: "shark",
  60233. },
  60234. paw: {
  60235. height: math.unit(1, "feet"),
  60236. name: "Paw",
  60237. image: {
  60238. source: "./media/characters/nima/paw.svg"
  60239. }
  60240. },
  60241. circlet: {
  60242. height: math.unit(0.3, "feet"),
  60243. name: "Circlet",
  60244. image: {
  60245. source: "./media/characters/nima/circlet.svg"
  60246. }
  60247. },
  60248. necklace: {
  60249. height: math.unit(1.2, "feet"),
  60250. name: "Necklace",
  60251. image: {
  60252. source: "./media/characters/nima/necklace.svg"
  60253. }
  60254. },
  60255. bracelet: {
  60256. height: math.unit(0.51, "feet"),
  60257. name: "Bracelet",
  60258. image: {
  60259. source: "./media/characters/nima/bracelet.svg"
  60260. }
  60261. },
  60262. armband: {
  60263. height: math.unit(1.3, "feet"),
  60264. name: "Armband",
  60265. image: {
  60266. source: "./media/characters/nima/armband.svg"
  60267. }
  60268. },
  60269. },
  60270. [
  60271. {
  60272. name: "Incognito",
  60273. height: math.unit(2.1, "meters"),
  60274. allForms: true
  60275. },
  60276. {
  60277. name: "Small Macro",
  60278. height: math.unit(50, "meters"),
  60279. allForms: true
  60280. },
  60281. {
  60282. name: "Macro",
  60283. height: math.unit(200, "meters"),
  60284. allForms: true
  60285. },
  60286. {
  60287. name: "Mega",
  60288. height: math.unit(2.5, "km"),
  60289. allForms: true
  60290. },
  60291. {
  60292. name: "Mega+",
  60293. height: math.unit(30, "km"),
  60294. allForms: true
  60295. },
  60296. {
  60297. name: "Giga (Home Size)",
  60298. height: math.unit(400, "km"),
  60299. allForms: true,
  60300. default: true
  60301. },
  60302. {
  60303. name: "Giga+",
  60304. height: math.unit(2500, "km"),
  60305. allForms: true
  60306. },
  60307. {
  60308. name: "Giga++",
  60309. height: math.unit(8000, "km"),
  60310. allForms: true
  60311. },
  60312. {
  60313. name: "Terra",
  60314. height: math.unit(20000, "km"),
  60315. allForms: true
  60316. },
  60317. {
  60318. name: "Terra+",
  60319. height: math.unit(70000, "km"),
  60320. allForms: true
  60321. },
  60322. {
  60323. name: "Terra++",
  60324. height: math.unit(600000, "km"),
  60325. allForms: true
  60326. },
  60327. {
  60328. name: "Galactic",
  60329. height: math.unit(40, "galaxies"),
  60330. allForms: true
  60331. },
  60332. {
  60333. name: "Universal",
  60334. height: math.unit(40, "universes"),
  60335. allForms: true
  60336. },
  60337. ],
  60338. {
  60339. "hyena": {
  60340. name: "Hyena",
  60341. default: true
  60342. },
  60343. "shark": {
  60344. name: "Shark",
  60345. },
  60346. }
  60347. ))
  60348. characterMakers.push(() => makeCharacter(
  60349. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60350. {
  60351. anthro_front: {
  60352. height: math.unit(1.5, "meters"),
  60353. name: "Front",
  60354. image: {
  60355. source: "./media/characters/adelaide/anthro-front.svg",
  60356. extra: 860/783,
  60357. bottom: 60/920
  60358. },
  60359. form: "anthro",
  60360. default: true
  60361. },
  60362. hand: {
  60363. height: math.unit(0.65, "feet"),
  60364. name: "Hand",
  60365. image: {
  60366. source: "./media/characters/adelaide/hand.svg"
  60367. },
  60368. form: "anthro"
  60369. },
  60370. foot: {
  60371. height: math.unit(1.38 * 259 / 314, "feet"),
  60372. name: "Foot",
  60373. image: {
  60374. source: "./media/characters/adelaide/foot.svg",
  60375. extra: 259/259,
  60376. bottom: 55/314
  60377. },
  60378. form: "anthro"
  60379. },
  60380. feather: {
  60381. height: math.unit(0.85, "feet"),
  60382. name: "Feather",
  60383. image: {
  60384. source: "./media/characters/adelaide/feather.svg"
  60385. },
  60386. form: "anthro"
  60387. },
  60388. feral_side: {
  60389. height: math.unit(1, "meters"),
  60390. name: "Side",
  60391. image: {
  60392. source: "./media/characters/adelaide/feral-side.svg",
  60393. extra: 550/467,
  60394. bottom: 37/587
  60395. },
  60396. form: "feral",
  60397. default: true
  60398. },
  60399. feral_hand: {
  60400. height: math.unit(0.58, "feet"),
  60401. name: "Hand",
  60402. image: {
  60403. source: "./media/characters/adelaide/hand.svg"
  60404. },
  60405. form: "feral"
  60406. },
  60407. feral_foot: {
  60408. height: math.unit(1.2 * 259 / 314, "feet"),
  60409. name: "Foot",
  60410. image: {
  60411. source: "./media/characters/adelaide/foot.svg",
  60412. extra: 259/259,
  60413. bottom: 55/314
  60414. },
  60415. form: "feral"
  60416. },
  60417. feral_feather: {
  60418. height: math.unit(0.63, "feet"),
  60419. name: "Feather",
  60420. image: {
  60421. source: "./media/characters/adelaide/feather.svg"
  60422. },
  60423. form: "feral"
  60424. },
  60425. },
  60426. [
  60427. {
  60428. name: "Normal",
  60429. height: math.unit(1.5, "meters"),
  60430. form: "anthro",
  60431. default: true
  60432. },
  60433. {
  60434. name: "Normal",
  60435. height: math.unit(1, "meters"),
  60436. form: "feral",
  60437. default: true
  60438. },
  60439. ],
  60440. {
  60441. "anthro": {
  60442. name: "Anthro",
  60443. default: true
  60444. },
  60445. "feral": {
  60446. name: "Feral",
  60447. },
  60448. }
  60449. ))
  60450. characterMakers.push(() => makeCharacter(
  60451. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60452. {
  60453. front: {
  60454. height: math.unit(2.5, "meters"),
  60455. name: "Front",
  60456. image: {
  60457. source: "./media/characters/goa/front.svg",
  60458. extra: 1109/1013,
  60459. bottom: 150/1259
  60460. }
  60461. },
  60462. },
  60463. [
  60464. {
  60465. name: "Normal",
  60466. height: math.unit(2.5, "meters"),
  60467. default: true
  60468. },
  60469. ]
  60470. ))
  60471. characterMakers.push(() => makeCharacter(
  60472. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60473. {
  60474. front: {
  60475. height: math.unit(2, "meters"),
  60476. weight: math.unit(100, "kg"),
  60477. name: "Front",
  60478. image: {
  60479. source: "./media/characters/kiki-weavile/front.svg",
  60480. extra: 357/332,
  60481. bottom: 60/417
  60482. }
  60483. },
  60484. },
  60485. [
  60486. {
  60487. name: "Normal",
  60488. height: math.unit(2, "meters"),
  60489. default: true
  60490. },
  60491. ]
  60492. ))
  60493. characterMakers.push(() => makeCharacter(
  60494. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60495. {
  60496. side: {
  60497. height: math.unit(1.6, "meters"),
  60498. name: "Side",
  60499. image: {
  60500. source: "./media/characters/liza/side.svg",
  60501. extra: 943/915,
  60502. bottom: 72/1015
  60503. }
  60504. },
  60505. },
  60506. [
  60507. {
  60508. name: "Normal",
  60509. height: math.unit(1.6, "meters"),
  60510. default: true
  60511. },
  60512. ]
  60513. ))
  60514. characterMakers.push(() => makeCharacter(
  60515. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60516. {
  60517. side: {
  60518. height: math.unit(2.5, "meters"),
  60519. preyCapacity: math.unit(1, "people"),
  60520. name: "Side",
  60521. image: {
  60522. source: "./media/characters/persephone-sweetbreath/side.svg",
  60523. extra: 796/700,
  60524. bottom: 44/840
  60525. }
  60526. },
  60527. sideVore: {
  60528. height: math.unit(2.5, "meters"),
  60529. preyCapacity: math.unit(1, "people"),
  60530. name: "Side (Full)",
  60531. image: {
  60532. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60533. extra: 796/700,
  60534. bottom: 44/840
  60535. }
  60536. },
  60537. },
  60538. [
  60539. {
  60540. name: "Normal",
  60541. height: math.unit(2.5, "meters"),
  60542. default: true
  60543. },
  60544. ]
  60545. ))
  60546. characterMakers.push(() => makeCharacter(
  60547. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60548. {
  60549. front: {
  60550. height: math.unit(32, "meters"),
  60551. name: "Front",
  60552. image: {
  60553. source: "./media/characters/pierce/front.svg",
  60554. extra: 1695/1475,
  60555. bottom: 185/1880
  60556. }
  60557. },
  60558. side: {
  60559. height: math.unit(32, "meters"),
  60560. name: "Side",
  60561. image: {
  60562. source: "./media/characters/pierce/side.svg",
  60563. extra: 974/859,
  60564. bottom: 43/1017
  60565. }
  60566. },
  60567. frontWingless: {
  60568. height: math.unit(32, "meters"),
  60569. name: "Front (Wingless)",
  60570. image: {
  60571. source: "./media/characters/pierce/front-wingless.svg",
  60572. extra: 1695/1475,
  60573. bottom: 185/1880
  60574. }
  60575. },
  60576. sideWingless: {
  60577. height: math.unit(32, "meters"),
  60578. name: "Side (Wingless)",
  60579. image: {
  60580. source: "./media/characters/pierce/side-wingless.svg",
  60581. extra: 974/859,
  60582. bottom: 43/1017
  60583. }
  60584. },
  60585. maw: {
  60586. height: math.unit(19.3, "meters"),
  60587. name: "Maw",
  60588. image: {
  60589. source: "./media/characters/pierce/maw.svg"
  60590. }
  60591. },
  60592. },
  60593. [
  60594. {
  60595. name: "Small",
  60596. height: math.unit(8.5, "meters")
  60597. },
  60598. {
  60599. name: "Normal",
  60600. height: math.unit(32, "meters"),
  60601. default: true
  60602. },
  60603. ]
  60604. ))
  60605. characterMakers.push(() => makeCharacter(
  60606. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60607. {
  60608. front: {
  60609. height: math.unit(2.3, "meters"),
  60610. weight: math.unit(165, "kg"),
  60611. name: "Front",
  60612. image: {
  60613. source: "./media/characters/shira/front.svg",
  60614. extra: 924/919,
  60615. bottom: 17/941
  60616. },
  60617. form: "cobra",
  60618. default: true
  60619. },
  60620. back: {
  60621. height: math.unit(2.3, "meters"),
  60622. weight: math.unit(165, "kg"),
  60623. name: "Back",
  60624. image: {
  60625. source: "./media/characters/shira/back.svg",
  60626. extra: 928/922,
  60627. bottom: 18/946
  60628. },
  60629. form: "cobra"
  60630. },
  60631. frontLewd: {
  60632. height: math.unit(2.3, "meters"),
  60633. weight: math.unit(165, "kg"),
  60634. name: "Front (Lewd)",
  60635. image: {
  60636. source: "./media/characters/shira/front-lewd.svg",
  60637. extra: 924/919,
  60638. bottom: 17/941
  60639. },
  60640. form: "cobra"
  60641. },
  60642. backLewd: {
  60643. height: math.unit(2.3, "meters"),
  60644. weight: math.unit(165, "kg"),
  60645. name: "Back (Lewd)",
  60646. image: {
  60647. source: "./media/characters/shira/back-lewd.svg",
  60648. extra: 928/922,
  60649. bottom: 18/946
  60650. },
  60651. form: "cobra"
  60652. },
  60653. maw: {
  60654. height: math.unit(1.14, "feet"),
  60655. name: "Maw",
  60656. image: {
  60657. source: "./media/characters/shira/maw.svg"
  60658. },
  60659. form: "cobra"
  60660. },
  60661. magma_front: {
  60662. height: math.unit(2.3, "meters"),
  60663. weight: math.unit(165, "kg"),
  60664. name: "Front",
  60665. image: {
  60666. source: "./media/characters/shira/magma-front.svg",
  60667. extra: 1870/1693,
  60668. bottom: 24/1894
  60669. },
  60670. form: "magma",
  60671. },
  60672. magma_back: {
  60673. height: math.unit(2.3, "meters"),
  60674. weight: math.unit(165, "kg"),
  60675. name: "Back",
  60676. image: {
  60677. source: "./media/characters/shira/magma-back.svg",
  60678. extra: 1918/1756,
  60679. bottom: 46/1964
  60680. },
  60681. form: "magma",
  60682. },
  60683. },
  60684. [
  60685. {
  60686. name: "Incognito",
  60687. height: math.unit(2.3, "meters"),
  60688. allForms: true
  60689. },
  60690. {
  60691. name: "Home Size",
  60692. height: math.unit(150, "meters"),
  60693. default: true,
  60694. allForms: true
  60695. },
  60696. {
  60697. name: "Macro",
  60698. height: math.unit(2, "km"),
  60699. allForms: true
  60700. },
  60701. {
  60702. name: "Mega",
  60703. height: math.unit(30, "km"),
  60704. allForms: true
  60705. },
  60706. {
  60707. name: "Giga",
  60708. height: math.unit(450, "km"),
  60709. allForms: true
  60710. },
  60711. {
  60712. name: "Giga+",
  60713. height: math.unit(3000, "km"),
  60714. allForms: true
  60715. },
  60716. {
  60717. name: "Giga++",
  60718. height: math.unit(6000, "km"),
  60719. allForms: true
  60720. },
  60721. {
  60722. name: "Terra",
  60723. height: math.unit(80000, "km"),
  60724. allForms: true
  60725. },
  60726. {
  60727. name: "Terra+",
  60728. height: math.unit(350000, "km"),
  60729. allForms: true
  60730. },
  60731. {
  60732. name: "Solar",
  60733. height: math.unit(1e6, "km"),
  60734. allForms: true
  60735. },
  60736. ],
  60737. {
  60738. "cobra": {
  60739. name: "Cobra",
  60740. default: true
  60741. },
  60742. "magma": {
  60743. name: "Magma Dragon",
  60744. },
  60745. }
  60746. ))
  60747. characterMakers.push(() => makeCharacter(
  60748. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60749. {
  60750. front: {
  60751. height: math.unit(2, "meters"),
  60752. weight: math.unit(160, "kg"),
  60753. name: "Front",
  60754. image: {
  60755. source: "./media/characters/daxerios/front.svg",
  60756. extra: 1334/1277,
  60757. bottom: 45/1379
  60758. }
  60759. },
  60760. frontLewd: {
  60761. height: math.unit(2, "meters"),
  60762. weight: math.unit(160, "kg"),
  60763. name: "Front (Lewd)",
  60764. image: {
  60765. source: "./media/characters/daxerios/front-lewd.svg",
  60766. extra: 1334/1277,
  60767. bottom: 45/1379
  60768. }
  60769. },
  60770. dick: {
  60771. height: math.unit(2.35, "feet"),
  60772. name: "Dick",
  60773. image: {
  60774. source: "./media/characters/daxerios/dick.svg"
  60775. }
  60776. },
  60777. },
  60778. [
  60779. {
  60780. name: "\"Small\"",
  60781. height: math.unit(5, "meters")
  60782. },
  60783. {
  60784. name: "Original Size",
  60785. height: math.unit(500, "meters"),
  60786. default: true
  60787. },
  60788. {
  60789. name: "Mega",
  60790. height: math.unit(2, "km")
  60791. },
  60792. {
  60793. name: "Mega+",
  60794. height: math.unit(35, "km")
  60795. },
  60796. {
  60797. name: "Giga",
  60798. height: math.unit(250, "km")
  60799. },
  60800. {
  60801. name: "Giga+",
  60802. height: math.unit(3000, "km")
  60803. },
  60804. {
  60805. name: "Terra",
  60806. height: math.unit(25000, "km")
  60807. },
  60808. {
  60809. name: "Terra+",
  60810. height: math.unit(300000, "km")
  60811. },
  60812. {
  60813. name: "Solar",
  60814. height: math.unit(1e6, "km")
  60815. },
  60816. ]
  60817. ))
  60818. characterMakers.push(() => makeCharacter(
  60819. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60820. {
  60821. front: {
  60822. height: math.unit(8 + 4/12, "feet"),
  60823. weight: math.unit(464, "lb"),
  60824. name: "Front",
  60825. image: {
  60826. source: "./media/characters/caveat/front.svg",
  60827. extra: 1861/1678,
  60828. bottom: 40/1901
  60829. }
  60830. },
  60831. },
  60832. [
  60833. {
  60834. name: "Normal",
  60835. height: math.unit(8 + 4/12, "feet"),
  60836. default: true
  60837. },
  60838. ]
  60839. ))
  60840. characterMakers.push(() => makeCharacter(
  60841. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60842. {
  60843. front: {
  60844. height: math.unit(12, "feet"),
  60845. weight: math.unit(1800, "lb"),
  60846. name: "Front",
  60847. image: {
  60848. source: "./media/characters/centbair/front.svg",
  60849. extra: 781/663,
  60850. bottom: 25/806
  60851. }
  60852. },
  60853. frontNsfw: {
  60854. height: math.unit(12, "feet"),
  60855. weight: math.unit(1800, "lb"),
  60856. name: "Front (NSFW)",
  60857. image: {
  60858. source: "./media/characters/centbair/front-nsfw.svg",
  60859. extra: 781/663,
  60860. bottom: 25/806
  60861. }
  60862. },
  60863. back: {
  60864. height: math.unit(12, "feet"),
  60865. weight: math.unit(1800, "lb"),
  60866. name: "Back",
  60867. image: {
  60868. source: "./media/characters/centbair/back.svg",
  60869. extra: 808/761,
  60870. bottom: 19/827
  60871. }
  60872. },
  60873. dick: {
  60874. height: math.unit(6.5, "feet"),
  60875. name: "Dick",
  60876. image: {
  60877. source: "./media/characters/centbair/dick.svg"
  60878. }
  60879. },
  60880. slit: {
  60881. height: math.unit(3.25, "feet"),
  60882. name: "Slit",
  60883. image: {
  60884. source: "./media/characters/centbair/slit.svg"
  60885. }
  60886. },
  60887. },
  60888. [
  60889. {
  60890. name: "Normal",
  60891. height: math.unit(12, "feet"),
  60892. default: true
  60893. },
  60894. ]
  60895. ))
  60896. characterMakers.push(() => makeCharacter(
  60897. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60898. {
  60899. front: {
  60900. height: math.unit(5 + 7/12, "feet"),
  60901. name: "Front",
  60902. image: {
  60903. source: "./media/characters/andy/front.svg",
  60904. extra: 634/588,
  60905. bottom: 36/670
  60906. },
  60907. extraAttributes: {
  60908. "pawLength": {
  60909. name: "Paw Length",
  60910. power: 1,
  60911. type: "length",
  60912. base: math.unit(1, "feet")
  60913. },
  60914. }
  60915. },
  60916. side: {
  60917. height: math.unit(5 + 7/12, "feet"),
  60918. name: "Side",
  60919. image: {
  60920. source: "./media/characters/andy/side.svg",
  60921. extra: 641/596,
  60922. bottom: 34/675
  60923. },
  60924. extraAttributes: {
  60925. "pawLength": {
  60926. name: "Paw Length",
  60927. power: 1,
  60928. type: "length",
  60929. base: math.unit(1, "feet")
  60930. },
  60931. }
  60932. },
  60933. back: {
  60934. height: math.unit(5 + 7/12, "feet"),
  60935. name: "Back",
  60936. image: {
  60937. source: "./media/characters/andy/back.svg",
  60938. extra: 618/583,
  60939. bottom: 39/657
  60940. },
  60941. extraAttributes: {
  60942. "pawLength": {
  60943. name: "Paw Length",
  60944. power: 1,
  60945. type: "length",
  60946. base: math.unit(1, "feet")
  60947. },
  60948. }
  60949. },
  60950. paw: {
  60951. height: math.unit(1.13, "feet"),
  60952. name: "Paw",
  60953. image: {
  60954. source: "./media/characters/andy/paw.svg"
  60955. }
  60956. },
  60957. },
  60958. [
  60959. {
  60960. name: "Micro",
  60961. height: math.unit(4, "inches")
  60962. },
  60963. {
  60964. name: "Normal",
  60965. height: math.unit(5 + 7/12, "feet"),
  60966. default: true
  60967. },
  60968. {
  60969. name: "Macro",
  60970. height: math.unit(390.42, "feet")
  60971. },
  60972. ]
  60973. ))
  60974. characterMakers.push(() => makeCharacter(
  60975. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60976. {
  60977. front: {
  60978. height: math.unit(7, "feet"),
  60979. weight: math.unit(250, "lb"),
  60980. name: "Front",
  60981. image: {
  60982. source: "./media/characters/vix-titan/front.svg",
  60983. extra: 460/428,
  60984. bottom: 15/475
  60985. },
  60986. extraAttributes: {
  60987. "pawWidth": {
  60988. name: "Paw Width",
  60989. power: 1,
  60990. type: "length",
  60991. base: math.unit(0.75, "feet")
  60992. },
  60993. }
  60994. },
  60995. },
  60996. [
  60997. {
  60998. name: "Normal",
  60999. height: math.unit(7, "feet"),
  61000. default: true
  61001. },
  61002. {
  61003. name: "Giant",
  61004. height: math.unit(1500, "feet")
  61005. },
  61006. {
  61007. name: "Mega",
  61008. height: math.unit(10, "miles")
  61009. },
  61010. {
  61011. name: "Giga",
  61012. height: math.unit(150, "miles")
  61013. },
  61014. {
  61015. name: "Tera",
  61016. height: math.unit(144000, "miles")
  61017. },
  61018. ]
  61019. ))
  61020. characterMakers.push(() => makeCharacter(
  61021. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  61022. {
  61023. front: {
  61024. height: math.unit(6 + 2/12, "feet"),
  61025. name: "Front",
  61026. image: {
  61027. source: "./media/characters/reiku/front.svg",
  61028. extra: 1910/1757,
  61029. bottom: 103/2013
  61030. },
  61031. extraAttributes: {
  61032. "thighThickness": {
  61033. name: "Thigh Thickness",
  61034. power: 1,
  61035. type: "length",
  61036. base: math.unit(1.12, "feet")
  61037. },
  61038. "assThickness": {
  61039. name: "Ass Thickness",
  61040. power: 1,
  61041. type: "length",
  61042. base: math.unit(1.12*2, "feet")
  61043. },
  61044. }
  61045. },
  61046. side: {
  61047. height: math.unit(6 + 2/12, "feet"),
  61048. name: "Side",
  61049. image: {
  61050. source: "./media/characters/reiku/side.svg",
  61051. extra: 1846/1748,
  61052. bottom: 99/1945
  61053. },
  61054. extraAttributes: {
  61055. "thighThickness": {
  61056. name: "Thigh Thickness",
  61057. power: 1,
  61058. type: "length",
  61059. base: math.unit(1.12, "feet")
  61060. },
  61061. "assThickness": {
  61062. name: "Ass Thickness",
  61063. power: 1,
  61064. type: "length",
  61065. base: math.unit(1.12*2, "feet")
  61066. },
  61067. }
  61068. },
  61069. back: {
  61070. height: math.unit(6 + 2/12, "feet"),
  61071. name: "Back",
  61072. image: {
  61073. source: "./media/characters/reiku/back.svg",
  61074. extra: 1941/1786,
  61075. bottom: 34/1975
  61076. },
  61077. extraAttributes: {
  61078. "thighThickness": {
  61079. name: "Thigh Thickness",
  61080. power: 1,
  61081. type: "length",
  61082. base: math.unit(1.12, "feet")
  61083. },
  61084. "assThickness": {
  61085. name: "Ass Thickness",
  61086. power: 1,
  61087. type: "length",
  61088. base: math.unit(1.12*2, "feet")
  61089. },
  61090. }
  61091. },
  61092. head: {
  61093. height: math.unit(1.8, "feet"),
  61094. name: "Head",
  61095. image: {
  61096. source: "./media/characters/reiku/head.svg"
  61097. }
  61098. },
  61099. tailTop: {
  61100. height: math.unit(8.4, "feet"),
  61101. name: "Tail (Top)",
  61102. image: {
  61103. source: "./media/characters/reiku/tail-top.svg"
  61104. }
  61105. },
  61106. tailBottom: {
  61107. height: math.unit(8.4, "feet"),
  61108. name: "Tail (Bottom)",
  61109. image: {
  61110. source: "./media/characters/reiku/tail-bottom.svg"
  61111. }
  61112. },
  61113. foot: {
  61114. height: math.unit(2.6, "feet"),
  61115. name: "Foot",
  61116. image: {
  61117. source: "./media/characters/reiku/foot.svg"
  61118. }
  61119. },
  61120. footCurled: {
  61121. height: math.unit(2.3, "feet"),
  61122. name: "Foot (Curled)",
  61123. image: {
  61124. source: "./media/characters/reiku/foot-curled.svg"
  61125. }
  61126. },
  61127. footSide: {
  61128. height: math.unit(1.26, "feet"),
  61129. name: "Foot (Side)",
  61130. image: {
  61131. source: "./media/characters/reiku/foot-side.svg"
  61132. }
  61133. },
  61134. },
  61135. [
  61136. {
  61137. name: "Normal",
  61138. height: math.unit(6 + 2/12, "feet"),
  61139. default: true
  61140. },
  61141. ]
  61142. ))
  61143. characterMakers.push(() => makeCharacter(
  61144. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61145. {
  61146. front: {
  61147. height: math.unit(7, "feet"),
  61148. weight: math.unit(500, "kg"),
  61149. name: "Front",
  61150. image: {
  61151. source: "./media/characters/cialda/front.svg",
  61152. extra: 912/745,
  61153. bottom: 55/967
  61154. }
  61155. },
  61156. },
  61157. [
  61158. {
  61159. name: "Normal",
  61160. height: math.unit(7, "feet"),
  61161. default: true
  61162. },
  61163. ]
  61164. ))
  61165. characterMakers.push(() => makeCharacter(
  61166. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61167. {
  61168. side: {
  61169. height: math.unit(6, "feet"),
  61170. weight: math.unit(600, "lb"),
  61171. preyCapacity: math.unit(25, "liters"),
  61172. name: "Side",
  61173. image: {
  61174. source: "./media/characters/darkkin/side.svg",
  61175. extra: 1597/1447,
  61176. bottom: 101/1698
  61177. }
  61178. },
  61179. },
  61180. [
  61181. {
  61182. name: "Canon Height",
  61183. height: math.unit(568, "feet"),
  61184. default: true
  61185. },
  61186. ]
  61187. ))
  61188. characterMakers.push(() => makeCharacter(
  61189. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61190. {
  61191. front: {
  61192. height: math.unit(6, "feet"),
  61193. weight: math.unit(1500, "lb"),
  61194. preyCapacity: math.unit(3, "people"),
  61195. name: "Front",
  61196. image: {
  61197. source: "./media/characters/livnia/front.svg",
  61198. extra: 934/932,
  61199. bottom: 83/1017
  61200. }
  61201. },
  61202. back: {
  61203. height: math.unit(6, "feet"),
  61204. weight: math.unit(1500, "lb"),
  61205. preyCapacity: math.unit(3, "people"),
  61206. name: "Back",
  61207. image: {
  61208. source: "./media/characters/livnia/back.svg",
  61209. extra: 916/915,
  61210. bottom: 58/974
  61211. }
  61212. },
  61213. head: {
  61214. height: math.unit(1.53, "feet"),
  61215. name: "Head",
  61216. image: {
  61217. source: "./media/characters/livnia/head.svg"
  61218. }
  61219. },
  61220. maw: {
  61221. height: math.unit(0.78, "feet"),
  61222. name: "Maw",
  61223. image: {
  61224. source: "./media/characters/livnia/maw.svg"
  61225. }
  61226. },
  61227. genitals: {
  61228. height: math.unit(0.35, "feet"),
  61229. name: "Genitals",
  61230. image: {
  61231. source: "./media/characters/livnia/genitals.svg"
  61232. }
  61233. },
  61234. },
  61235. [
  61236. {
  61237. name: "Normal",
  61238. height: math.unit(1000, "feet"),
  61239. default: true
  61240. },
  61241. ]
  61242. ))
  61243. characterMakers.push(() => makeCharacter(
  61244. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61245. {
  61246. front: {
  61247. height: math.unit(4, "feet"),
  61248. weight: math.unit(73, "lb"),
  61249. name: "Front",
  61250. image: {
  61251. source: "./media/characters/hayaku/front.svg",
  61252. extra: 1011/888,
  61253. bottom: 33/1044
  61254. }
  61255. },
  61256. back: {
  61257. height: math.unit(4, "feet"),
  61258. weight: math.unit(73, "lb"),
  61259. name: "Back",
  61260. image: {
  61261. source: "./media/characters/hayaku/back.svg",
  61262. extra: 1040/930,
  61263. bottom: 20/1060
  61264. }
  61265. },
  61266. },
  61267. [
  61268. {
  61269. name: "Normal",
  61270. height: math.unit(4, "feet"),
  61271. default: true
  61272. },
  61273. ]
  61274. ))
  61275. characterMakers.push(() => makeCharacter(
  61276. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61277. {
  61278. front: {
  61279. height: math.unit(6 + 7/12, "feet"),
  61280. weight: math.unit(300, "lb"),
  61281. name: "Front",
  61282. image: {
  61283. source: "./media/characters/athena-bryzant/front.svg",
  61284. extra: 870/835,
  61285. bottom: 33/903
  61286. }
  61287. },
  61288. back: {
  61289. height: math.unit(6 + 7/12, "feet"),
  61290. weight: math.unit(300, "lb"),
  61291. name: "Back",
  61292. image: {
  61293. source: "./media/characters/athena-bryzant/back.svg",
  61294. extra: 858/823,
  61295. bottom: 30/888
  61296. }
  61297. },
  61298. head: {
  61299. height: math.unit(2.38, "feet"),
  61300. name: "Head",
  61301. image: {
  61302. source: "./media/characters/athena-bryzant/head.svg"
  61303. }
  61304. },
  61305. wings: {
  61306. height: math.unit(2.85, "feet"),
  61307. name: "Wings",
  61308. image: {
  61309. source: "./media/characters/athena-bryzant/wings.svg"
  61310. }
  61311. },
  61312. },
  61313. [
  61314. {
  61315. name: "Normal",
  61316. height: math.unit(6 + 7/12, "feet"),
  61317. default: true
  61318. },
  61319. {
  61320. name: "Big",
  61321. height: math.unit(8, "feet")
  61322. },
  61323. {
  61324. name: "Very Big",
  61325. height: math.unit(11, "feet")
  61326. },
  61327. ]
  61328. ))
  61329. characterMakers.push(() => makeCharacter(
  61330. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61331. {
  61332. side: {
  61333. height: math.unit(3, "meters"),
  61334. weight: math.unit(7500, "kg"),
  61335. preyCapacity: math.unit(1e12, "people"),
  61336. name: "Side",
  61337. image: {
  61338. source: "./media/characters/zel-kesh/side.svg",
  61339. extra: 910/407,
  61340. bottom: 147/1057
  61341. }
  61342. },
  61343. },
  61344. [
  61345. {
  61346. name: "Normal",
  61347. height: math.unit(3, "meters"),
  61348. default: true
  61349. },
  61350. ]
  61351. ))
  61352. characterMakers.push(() => makeCharacter(
  61353. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61354. {
  61355. front: {
  61356. height: math.unit(2, "meters"),
  61357. weight: math.unit(95, "kg"),
  61358. name: "Front",
  61359. image: {
  61360. source: "./media/characters/kane-fox/front.svg",
  61361. extra: 945/888,
  61362. bottom: 27/972
  61363. }
  61364. },
  61365. back: {
  61366. height: math.unit(2, "meters"),
  61367. weight: math.unit(95, "kg"),
  61368. name: "Back",
  61369. image: {
  61370. source: "./media/characters/kane-fox/back.svg",
  61371. extra: 959/914,
  61372. bottom: 15/974
  61373. }
  61374. },
  61375. frontLewd: {
  61376. height: math.unit(2, "meters"),
  61377. weight: math.unit(95, "kg"),
  61378. name: "Front (Lewd)",
  61379. image: {
  61380. source: "./media/characters/kane-fox/front-lewd.svg",
  61381. extra: 945/888,
  61382. bottom: 27/972
  61383. }
  61384. },
  61385. },
  61386. [
  61387. {
  61388. name: "Home Size",
  61389. height: math.unit(2, "meters"),
  61390. default: true
  61391. },
  61392. {
  61393. name: "Macro",
  61394. height: math.unit(200, "meters")
  61395. },
  61396. {
  61397. name: "Small Mega",
  61398. height: math.unit(3, "km")
  61399. },
  61400. {
  61401. name: "Mega",
  61402. height: math.unit(50, "km")
  61403. },
  61404. {
  61405. name: "Giga",
  61406. height: math.unit(200, "km")
  61407. },
  61408. {
  61409. name: "Giga+",
  61410. height: math.unit(2500, "km")
  61411. },
  61412. {
  61413. name: "Terra",
  61414. height: math.unit(70000, "km")
  61415. },
  61416. {
  61417. name: "Terra+",
  61418. height: math.unit(150000, "km")
  61419. },
  61420. {
  61421. name: "Terra++",
  61422. height: math.unit(400000, "km")
  61423. },
  61424. ]
  61425. ))
  61426. characterMakers.push(() => makeCharacter(
  61427. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61428. {
  61429. otter_front: {
  61430. height: math.unit(1.8, "meters"),
  61431. weight: math.unit(90, "kg"),
  61432. name: "Front",
  61433. image: {
  61434. source: "./media/characters/ayranus/otter-front.svg",
  61435. extra: 468/452,
  61436. bottom: 43/511
  61437. },
  61438. form: "otter",
  61439. },
  61440. otter_frontLewd: {
  61441. height: math.unit(1.8, "meters"),
  61442. weight: math.unit(90, "kg"),
  61443. name: "Front (Lewd)",
  61444. image: {
  61445. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61446. extra: 468/452,
  61447. bottom: 43/511
  61448. },
  61449. form: "otter",
  61450. },
  61451. lionbat_front: {
  61452. height: math.unit(1.8, "meters"),
  61453. weight: math.unit(90, "kg"),
  61454. name: "Front (Lewd)",
  61455. image: {
  61456. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61457. extra: 797/740,
  61458. bottom: 78/875
  61459. },
  61460. form: "lionbat",
  61461. },
  61462. paw: {
  61463. height: math.unit(1.5, "feet"),
  61464. name: "Paw",
  61465. image: {
  61466. source: "./media/characters/ayranus/paw.svg"
  61467. },
  61468. },
  61469. },
  61470. [
  61471. {
  61472. name: "Incognito",
  61473. height: math.unit(1.8, "meters"),
  61474. allForms: true
  61475. },
  61476. {
  61477. name: "Macro",
  61478. height: math.unit(60, "meters"),
  61479. allForms: true
  61480. },
  61481. {
  61482. name: "Macro+",
  61483. height: math.unit(200, "meters"),
  61484. allForms: true
  61485. },
  61486. {
  61487. name: "Mega",
  61488. height: math.unit(35, "km"),
  61489. allForms: true
  61490. },
  61491. {
  61492. name: "Giga",
  61493. height: math.unit(220, "km"),
  61494. allForms: true
  61495. },
  61496. {
  61497. name: "Giga+",
  61498. height: math.unit(1500, "km"),
  61499. allForms: true
  61500. },
  61501. {
  61502. name: "Terra",
  61503. height: math.unit(13000, "km"),
  61504. allForms: true
  61505. },
  61506. {
  61507. name: "Terra+",
  61508. height: math.unit(500000, "km"),
  61509. allForms: true
  61510. },
  61511. {
  61512. name: "Galactic",
  61513. height: math.unit(486080, "parsecs"),
  61514. default: true,
  61515. allForms: true
  61516. },
  61517. ],
  61518. {
  61519. "otter": {
  61520. name: "Otter",
  61521. default: true
  61522. },
  61523. "lionbat": {
  61524. name: "Lionbat",
  61525. },
  61526. }
  61527. ))
  61528. characterMakers.push(() => makeCharacter(
  61529. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61530. {
  61531. front: {
  61532. height: math.unit(7 + 4/12, "feet"),
  61533. weight: math.unit(400, "lb"),
  61534. name: "Front",
  61535. image: {
  61536. source: "./media/characters/proxy/front.svg",
  61537. extra: 1605/1542,
  61538. bottom: 55/1660
  61539. }
  61540. },
  61541. side: {
  61542. height: math.unit(7 + 4/12, "feet"),
  61543. weight: math.unit(400, "lb"),
  61544. name: "Side",
  61545. image: {
  61546. source: "./media/characters/proxy/side.svg",
  61547. extra: 794/759,
  61548. bottom: 6/800
  61549. }
  61550. },
  61551. hand: {
  61552. height: math.unit(1.54, "feet"),
  61553. name: "Hand",
  61554. image: {
  61555. source: "./media/characters/proxy/hand.svg"
  61556. }
  61557. },
  61558. paw: {
  61559. height: math.unit(1.53, "feet"),
  61560. name: "Paw",
  61561. image: {
  61562. source: "./media/characters/proxy/paw.svg"
  61563. }
  61564. },
  61565. maw: {
  61566. height: math.unit(1.9, "feet"),
  61567. name: "Maw",
  61568. image: {
  61569. source: "./media/characters/proxy/maw.svg"
  61570. }
  61571. },
  61572. },
  61573. [
  61574. {
  61575. name: "Normal",
  61576. height: math.unit(7 + 4/12, "feet"),
  61577. default: true
  61578. },
  61579. ]
  61580. ))
  61581. characterMakers.push(() => makeCharacter(
  61582. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61583. {
  61584. front: {
  61585. height: math.unit(4, "meters"),
  61586. name: "Front",
  61587. image: {
  61588. source: "./media/characters/crocozilla/front.svg",
  61589. extra: 1790/1742,
  61590. bottom: 78/1868
  61591. }
  61592. },
  61593. },
  61594. [
  61595. {
  61596. name: "Normal",
  61597. height: math.unit(4, "meters"),
  61598. default: true
  61599. },
  61600. ]
  61601. ))
  61602. characterMakers.push(() => makeCharacter(
  61603. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61604. {
  61605. front: {
  61606. height: math.unit(1.8, "meters"),
  61607. weight: math.unit(120, "kg"),
  61608. name: "Front",
  61609. image: {
  61610. source: "./media/characters/kurz/front.svg",
  61611. extra: 1960/1824,
  61612. bottom: 41/2001
  61613. }
  61614. },
  61615. back: {
  61616. height: math.unit(1.8, "meters"),
  61617. weight: math.unit(120, "kg"),
  61618. name: "Back",
  61619. image: {
  61620. source: "./media/characters/kurz/back.svg",
  61621. extra: 1906/1787,
  61622. bottom: 60/1966
  61623. }
  61624. },
  61625. frontLewd: {
  61626. height: math.unit(1.8, "meters"),
  61627. weight: math.unit(120, "kg"),
  61628. name: "Front (Lewd)",
  61629. image: {
  61630. source: "./media/characters/kurz/front-lewd.svg",
  61631. extra: 1960/1824,
  61632. bottom: 41/2001
  61633. }
  61634. },
  61635. maw: {
  61636. height: math.unit(0.69, "meters"),
  61637. name: "Maw",
  61638. image: {
  61639. source: "./media/characters/kurz/maw.svg"
  61640. }
  61641. },
  61642. },
  61643. [
  61644. {
  61645. name: "Original Size",
  61646. height: math.unit(1.8, "meters")
  61647. },
  61648. {
  61649. name: "Incognito Size",
  61650. height: math.unit(2.4, "meters"),
  61651. default: true
  61652. },
  61653. {
  61654. name: "Macro",
  61655. height: math.unit(30, "meters")
  61656. },
  61657. {
  61658. name: "Macro+",
  61659. height: math.unit(250, "meters")
  61660. },
  61661. {
  61662. name: "Mega",
  61663. height: math.unit(2, "km")
  61664. },
  61665. {
  61666. name: "Mega+",
  61667. height: math.unit(35, "km")
  61668. },
  61669. {
  61670. name: "Mega++",
  61671. height: math.unit(75, "km")
  61672. },
  61673. {
  61674. name: "Giga",
  61675. height: math.unit(250, "km")
  61676. },
  61677. {
  61678. name: "Terra",
  61679. height: math.unit(15000, "km")
  61680. },
  61681. {
  61682. name: "Terra+",
  61683. height: math.unit(2250000, "km")
  61684. },
  61685. ]
  61686. ))
  61687. characterMakers.push(() => makeCharacter(
  61688. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61689. {
  61690. front: {
  61691. height: math.unit(16 + 3/12, "feet"),
  61692. weight: math.unit(3575, "lb"),
  61693. name: "Front",
  61694. image: {
  61695. source: "./media/characters/nikita/front.svg",
  61696. extra: 1064/955,
  61697. bottom: 47/1111
  61698. }
  61699. },
  61700. },
  61701. [
  61702. {
  61703. name: "Normal",
  61704. height: math.unit(16 + 3/12, "feet"),
  61705. default: true
  61706. },
  61707. {
  61708. name: "Big",
  61709. height: math.unit(21, "feet")
  61710. },
  61711. {
  61712. name: "Biggest",
  61713. height: math.unit(50, "feet")
  61714. },
  61715. ]
  61716. ))
  61717. characterMakers.push(() => makeCharacter(
  61718. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61719. {
  61720. front: {
  61721. height: math.unit(1.92, "m"),
  61722. weight: math.unit(76, "kg"),
  61723. name: "Front",
  61724. image: {
  61725. source: "./media/characters/kyara/front.svg",
  61726. extra: 1550/1438,
  61727. bottom: 139/1689
  61728. }
  61729. },
  61730. back: {
  61731. height: math.unit(1.92, "m"),
  61732. weight: math.unit(76, "kg"),
  61733. name: "Back",
  61734. image: {
  61735. source: "./media/characters/kyara/back.svg",
  61736. extra: 1523/1427,
  61737. bottom: 83/1606
  61738. }
  61739. },
  61740. head: {
  61741. height: math.unit(1.22, "feet"),
  61742. name: "Head",
  61743. image: {
  61744. source: "./media/characters/kyara/head.svg"
  61745. }
  61746. },
  61747. maw: {
  61748. height: math.unit(0.73, "feet"),
  61749. name: "Maw",
  61750. image: {
  61751. source: "./media/characters/kyara/maw.svg"
  61752. }
  61753. },
  61754. paws: {
  61755. height: math.unit(0.95, "feet"),
  61756. name: "Paws",
  61757. image: {
  61758. source: "./media/characters/kyara/paws.svg"
  61759. }
  61760. },
  61761. },
  61762. [
  61763. {
  61764. name: "Normal",
  61765. height: math.unit(1.92, "meters"),
  61766. default: true
  61767. },
  61768. {
  61769. name: "Mini Macro",
  61770. height: math.unit(192, "meters")
  61771. },
  61772. {
  61773. name: "Macro",
  61774. height: math.unit(480, "meters")
  61775. },
  61776. {
  61777. name: "Mega Macro",
  61778. height: math.unit(1440, "meters")
  61779. },
  61780. ]
  61781. ))
  61782. characterMakers.push(() => makeCharacter(
  61783. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61784. {
  61785. front: {
  61786. height: math.unit(6, "feet"),
  61787. weight: math.unit(160, "lbs"),
  61788. preyCapacity: math.unit(0.05, "people"),
  61789. name: "Front",
  61790. image: {
  61791. source: "./media/characters/layla-amari/front.svg",
  61792. extra: 1922/1723,
  61793. bottom: 90/2012
  61794. }
  61795. },
  61796. back: {
  61797. height: math.unit(6, "feet"),
  61798. weight: math.unit(160, "lbs"),
  61799. preyCapacity: math.unit(0.05, "people"),
  61800. name: "Back",
  61801. image: {
  61802. source: "./media/characters/layla-amari/back.svg",
  61803. extra: 1917/1718,
  61804. bottom: 50/1967
  61805. }
  61806. },
  61807. frontDressed: {
  61808. height: math.unit(6, "feet"),
  61809. weight: math.unit(160, "lbs"),
  61810. preyCapacity: math.unit(0.05, "people"),
  61811. name: "Front (Dressed)",
  61812. image: {
  61813. source: "./media/characters/layla-amari/front-dressed.svg",
  61814. extra: 1922/1723,
  61815. bottom: 90/2012
  61816. }
  61817. },
  61818. face: {
  61819. height: math.unit(0.93, "feet"),
  61820. name: "Face",
  61821. image: {
  61822. source: "./media/characters/layla-amari/face.svg"
  61823. }
  61824. },
  61825. hand: {
  61826. height: math.unit(0.66 , "feet"),
  61827. name: "Hand",
  61828. image: {
  61829. source: "./media/characters/layla-amari/hand.svg"
  61830. }
  61831. },
  61832. foot: {
  61833. height: math.unit(1, "feet"),
  61834. name: "Foot",
  61835. image: {
  61836. source: "./media/characters/layla-amari/foot.svg"
  61837. }
  61838. },
  61839. necklace: {
  61840. height: math.unit(0.32, "feet"),
  61841. name: "Necklace",
  61842. image: {
  61843. source: "./media/characters/layla-amari/necklace.svg"
  61844. }
  61845. },
  61846. nipple: {
  61847. height: math.unit(0.2, "feet"),
  61848. name: "Nipple",
  61849. image: {
  61850. source: "./media/characters/layla-amari/nipple.svg"
  61851. }
  61852. },
  61853. slit: {
  61854. height: math.unit(0.26, "feet"),
  61855. name: "Slit",
  61856. image: {
  61857. source: "./media/characters/layla-amari/slit.svg"
  61858. }
  61859. },
  61860. },
  61861. [
  61862. {
  61863. name: "Natural",
  61864. height: math.unit(825, "feet"),
  61865. default: true
  61866. },
  61867. {
  61868. name: "Enhanced",
  61869. height: math.unit(8250, "feet")
  61870. },
  61871. {
  61872. name: "Apparent Size",
  61873. height: math.unit(9.04363e+8, "meters")
  61874. },
  61875. ]
  61876. ))
  61877. characterMakers.push(() => makeCharacter(
  61878. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61879. {
  61880. front: {
  61881. height: math.unit(1.3, "meters"),
  61882. name: "Front",
  61883. image: {
  61884. source: "./media/characters/percy/front.svg",
  61885. extra: 1444/1289,
  61886. bottom: 54/1498
  61887. }
  61888. },
  61889. },
  61890. [
  61891. {
  61892. name: "Normal",
  61893. height: math.unit(1.3, "meters"),
  61894. default: true
  61895. },
  61896. ]
  61897. ))
  61898. characterMakers.push(() => makeCharacter(
  61899. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61900. {
  61901. side: {
  61902. height: math.unit(10, "meters"),
  61903. name: "Side",
  61904. image: {
  61905. source: "./media/characters/grev/side.svg",
  61906. extra: 653/266,
  61907. bottom: 77/730
  61908. }
  61909. },
  61910. head: {
  61911. height: math.unit(16.2, "m"),
  61912. name: "Head",
  61913. image: {
  61914. source: "./media/characters/grev/head.svg"
  61915. }
  61916. },
  61917. dick: {
  61918. height: math.unit(2.8135932034, "m"),
  61919. name: "Dick",
  61920. image: {
  61921. source: "./media/characters/grev/dick.svg"
  61922. }
  61923. },
  61924. },
  61925. [
  61926. {
  61927. name: "Friend-Sized",
  61928. height: math.unit(80, "cm")
  61929. },
  61930. {
  61931. name: "Normal",
  61932. height: math.unit(10, "meters"),
  61933. default: true
  61934. },
  61935. {
  61936. name: "Macro",
  61937. height: math.unit(200, "meters")
  61938. },
  61939. ]
  61940. ))
  61941. characterMakers.push(() => makeCharacter(
  61942. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61943. {
  61944. front: {
  61945. height: math.unit(19.75, "feet"),
  61946. weight: math.unit(20000, "lb"),
  61947. name: "Front",
  61948. image: {
  61949. source: "./media/characters/azuuca/front.svg",
  61950. extra: 1593/1511,
  61951. bottom: 55/1648
  61952. }
  61953. },
  61954. },
  61955. [
  61956. {
  61957. name: "Normal",
  61958. height: math.unit(19.75, "feet"),
  61959. default: true
  61960. },
  61961. ]
  61962. ))
  61963. characterMakers.push(() => makeCharacter(
  61964. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61965. {
  61966. front: {
  61967. height: math.unit(15, "feet"),
  61968. weight: math.unit(1500, "lb"),
  61969. name: "Front",
  61970. image: {
  61971. source: "./media/characters/valuria/front.svg",
  61972. extra: 1588/1486,
  61973. bottom: 31/1619
  61974. }
  61975. },
  61976. },
  61977. [
  61978. {
  61979. name: "Normal",
  61980. height: math.unit(15, "feet"),
  61981. default: true
  61982. },
  61983. {
  61984. name: "Small",
  61985. height: math.unit(500, "feet")
  61986. },
  61987. {
  61988. name: "Macro",
  61989. height: math.unit(4000, "feet")
  61990. },
  61991. {
  61992. name: "Mega Macro",
  61993. height: math.unit(2000, "miles")
  61994. },
  61995. {
  61996. name: "Giga Macro",
  61997. height: math.unit(3e6, "miles")
  61998. },
  61999. ]
  62000. ))
  62001. characterMakers.push(() => makeCharacter(
  62002. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  62003. {
  62004. front: {
  62005. height: math.unit(3500, "solarradii"),
  62006. name: "Front",
  62007. image: {
  62008. source: "./media/characters/terigaia/front.svg",
  62009. extra: 1531/1451,
  62010. bottom: 98/1629
  62011. }
  62012. },
  62013. },
  62014. [
  62015. {
  62016. name: "Normal",
  62017. height: math.unit(3500, "solarradii"),
  62018. default: true
  62019. },
  62020. ]
  62021. ))
  62022. characterMakers.push(() => makeCharacter(
  62023. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  62024. {
  62025. front: {
  62026. height: math.unit(9.34, "feet"),
  62027. weight: math.unit(600, "lb"),
  62028. name: "Front",
  62029. image: {
  62030. source: "./media/characters/blair-blaziken/front.svg",
  62031. extra: 1557/1462,
  62032. bottom: 55/1612
  62033. }
  62034. },
  62035. },
  62036. [
  62037. {
  62038. name: "Normal",
  62039. height: math.unit(9.34, "feet"),
  62040. default: true
  62041. },
  62042. ]
  62043. ))
  62044. characterMakers.push(() => makeCharacter(
  62045. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  62046. {
  62047. pistrogre_front: {
  62048. height: math.unit(10, "feet"),
  62049. weight: math.unit(10, "tons"),
  62050. name: "Front",
  62051. image: {
  62052. source: "./media/characters/braxia/pistrogre-front.svg",
  62053. extra: 1531/1334,
  62054. bottom: 114/1645
  62055. },
  62056. form: "pistrogre",
  62057. default: true
  62058. },
  62059. human_front: {
  62060. height: math.unit(10, "feet"),
  62061. weight: math.unit(10, "tons"),
  62062. name: "Front",
  62063. image: {
  62064. source: "./media/characters/braxia/human-front.svg",
  62065. extra: 1574/1501,
  62066. bottom: 37/1611
  62067. },
  62068. form: "human",
  62069. default: true
  62070. },
  62071. },
  62072. [
  62073. {
  62074. name: "Normal",
  62075. height: math.unit(10, "feet"),
  62076. default: true,
  62077. allForms: true
  62078. },
  62079. {
  62080. name: "Macro",
  62081. height: math.unit(1000, "feet"),
  62082. allForms: true
  62083. },
  62084. {
  62085. name: "Mega Macro",
  62086. height: math.unit(100, "miles"),
  62087. allForms: true
  62088. },
  62089. {
  62090. name: "Cosmic",
  62091. height: math.unit(1000000, "lightyears"),
  62092. allForms: true
  62093. },
  62094. {
  62095. name: "ϐѮԆԬӁꭍϞԢ",
  62096. height: math.unit(1000, "multiverses"),
  62097. allForms: true
  62098. },
  62099. ],
  62100. {
  62101. "pistrogre": {
  62102. name: "Pistrogre",
  62103. default: true
  62104. },
  62105. "human": {
  62106. name: "Human",
  62107. },
  62108. }
  62109. ))
  62110. characterMakers.push(() => makeCharacter(
  62111. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62112. {
  62113. front: {
  62114. height: math.unit(6 + 1/12, "feet"),
  62115. weight: math.unit(280, "lb"),
  62116. name: "Front",
  62117. image: {
  62118. source: "./media/characters/kiriga-yato/front.svg",
  62119. extra: 445/394,
  62120. bottom: 11/456
  62121. }
  62122. },
  62123. },
  62124. [
  62125. {
  62126. name: "Descended",
  62127. height: math.unit(3, "feet")
  62128. },
  62129. {
  62130. name: "Average",
  62131. height: math.unit(6 + 1/12, "feet"),
  62132. default: true
  62133. },
  62134. {
  62135. name: "Ascended",
  62136. height: math.unit(9 + 2/12, "feet")
  62137. },
  62138. ]
  62139. ))
  62140. characterMakers.push(() => makeCharacter(
  62141. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62142. {
  62143. front: {
  62144. height: math.unit(6, "feet"),
  62145. weight: math.unit(150, "lb"),
  62146. name: "Front",
  62147. image: {
  62148. source: "./media/characters/kylie/front.svg",
  62149. extra: 1114/1046,
  62150. bottom: 65/1179
  62151. },
  62152. extraAttributes: {
  62153. "hoofSize": {
  62154. name: "Hoof Size",
  62155. power: 2,
  62156. type: "area",
  62157. base: math.unit(0.034, "m^2")
  62158. },
  62159. "footSize": {
  62160. name: "Foot Size",
  62161. power: 2,
  62162. type: "area",
  62163. base: math.unit(0.75, "m^2")
  62164. },
  62165. }
  62166. },
  62167. side: {
  62168. height: math.unit(6, "feet"),
  62169. weight: math.unit(150, "lb"),
  62170. name: "Side",
  62171. image: {
  62172. source: "./media/characters/kylie/side.svg",
  62173. extra: 1178/1110,
  62174. bottom: 21/1199
  62175. },
  62176. extraAttributes: {
  62177. "hoofSize": {
  62178. name: "Hoof Size",
  62179. power: 2,
  62180. type: "area",
  62181. base: math.unit(0.034, "m^2")
  62182. },
  62183. "footSize": {
  62184. name: "Foot Size",
  62185. power: 2,
  62186. type: "area",
  62187. base: math.unit(0.75, "m^2")
  62188. },
  62189. }
  62190. },
  62191. back: {
  62192. height: math.unit(6, "feet"),
  62193. weight: math.unit(150, "lb"),
  62194. name: "Back",
  62195. image: {
  62196. source: "./media/characters/kylie/back.svg",
  62197. extra: 1115/1047,
  62198. bottom: 66/1181
  62199. },
  62200. extraAttributes: {
  62201. "hoofSize": {
  62202. name: "Hoof Size",
  62203. power: 2,
  62204. type: "area",
  62205. base: math.unit(0.034, "m^2")
  62206. },
  62207. "footSize": {
  62208. name: "Foot Size",
  62209. power: 2,
  62210. type: "area",
  62211. base: math.unit(0.75, "m^2")
  62212. },
  62213. }
  62214. },
  62215. head: {
  62216. height: math.unit(1.85, "feet"),
  62217. name: "Head",
  62218. image: {
  62219. source: "./media/characters/kylie/head.svg"
  62220. }
  62221. },
  62222. },
  62223. [
  62224. {
  62225. name: "Normal",
  62226. height: math.unit(90, "meters"),
  62227. default: true
  62228. },
  62229. ]
  62230. ))
  62231. characterMakers.push(() => makeCharacter(
  62232. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62233. {
  62234. front: {
  62235. height: math.unit(245, "feet"),
  62236. weight: math.unit(400000, "lb"),
  62237. name: "Front",
  62238. image: {
  62239. source: "./media/characters/sabado/front.svg",
  62240. extra: 1309/1164,
  62241. bottom: 29/1338
  62242. }
  62243. },
  62244. },
  62245. [
  62246. {
  62247. name: "Normal",
  62248. height: math.unit(245, "feet"),
  62249. default: true
  62250. },
  62251. ]
  62252. ))
  62253. characterMakers.push(() => makeCharacter(
  62254. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62255. {
  62256. shark_front: {
  62257. height: math.unit(2, "meters"),
  62258. weight: math.unit(200, "kg"),
  62259. name: "Front",
  62260. image: {
  62261. source: "./media/characters/zechal/shark-front.svg",
  62262. extra: 969/925,
  62263. bottom: 74/1043
  62264. },
  62265. form: "shark",
  62266. },
  62267. shark_back: {
  62268. height: math.unit(2, "meters"),
  62269. weight: math.unit(200, "kg"),
  62270. name: "Back",
  62271. image: {
  62272. source: "./media/characters/zechal/shark-back.svg",
  62273. extra: 994/949,
  62274. bottom: 176/1170
  62275. },
  62276. form: "shark",
  62277. },
  62278. shark_frontLewd: {
  62279. height: math.unit(2, "meters"),
  62280. weight: math.unit(200, "kg"),
  62281. name: "Front (Lewd)",
  62282. image: {
  62283. source: "./media/characters/zechal/shark-front-lewd.svg",
  62284. extra: 969/925,
  62285. bottom: 74/1043
  62286. },
  62287. form: "shark",
  62288. },
  62289. shark_side: {
  62290. height: math.unit(1.56, "meters"),
  62291. weight: math.unit(200, "kg"),
  62292. name: "Side",
  62293. image: {
  62294. source: "./media/characters/zechal/shark-side.svg"
  62295. },
  62296. form: "shark",
  62297. },
  62298. dragon_front: {
  62299. height: math.unit(2, "meters"),
  62300. weight: math.unit(200, "kg"),
  62301. name: "Front",
  62302. image: {
  62303. source: "./media/characters/zechal/dragon-front.svg",
  62304. extra: 1041/925,
  62305. bottom: 74/1115
  62306. },
  62307. form: "dragon",
  62308. },
  62309. dragon_back: {
  62310. height: math.unit(2, "meters"),
  62311. weight: math.unit(200, "kg"),
  62312. name: "Back",
  62313. image: {
  62314. source: "./media/characters/zechal/dragon-back.svg",
  62315. extra: 1061/949,
  62316. bottom: 176/1237
  62317. },
  62318. form: "dragon",
  62319. },
  62320. dragon_frontLewd: {
  62321. height: math.unit(2, "meters"),
  62322. weight: math.unit(200, "kg"),
  62323. name: "Front (Lewd)",
  62324. image: {
  62325. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62326. extra: 1041/925,
  62327. bottom: 74/1115
  62328. },
  62329. form: "dragon",
  62330. },
  62331. dragon_side: {
  62332. height: math.unit(1.56, "meters"),
  62333. weight: math.unit(200, "kg"),
  62334. name: "Side",
  62335. image: {
  62336. source: "./media/characters/zechal/dragon-side.svg"
  62337. },
  62338. form: "dragon",
  62339. },
  62340. foot: {
  62341. height: math.unit(0.5, "meters"),
  62342. name: "Foot",
  62343. image: {
  62344. source: "./media/characters/zechal/foot.svg"
  62345. }
  62346. },
  62347. sheathFront: {
  62348. height: math.unit(0.45, "meters"),
  62349. name: "Sheath (Front)",
  62350. image: {
  62351. source: "./media/characters/zechal/sheath-front.svg"
  62352. }
  62353. },
  62354. sheathSide: {
  62355. height: math.unit(0.45, "meters"),
  62356. name: "Sheath (Side)",
  62357. image: {
  62358. source: "./media/characters/zechal/sheath-side.svg"
  62359. }
  62360. },
  62361. },
  62362. [
  62363. {
  62364. name: "Incognito",
  62365. height: math.unit(2, "meters"),
  62366. allForms: true
  62367. },
  62368. {
  62369. name: "Small Rampage",
  62370. height: math.unit(25, "meters"),
  62371. allForms: true
  62372. },
  62373. {
  62374. name: "Home Size",
  62375. height: math.unit(250, "meters"),
  62376. allForms: true,
  62377. default: true
  62378. },
  62379. {
  62380. name: "Macro+",
  62381. height: math.unit(700, "meters"),
  62382. allForms: true
  62383. },
  62384. {
  62385. name: "Small Mega",
  62386. height: math.unit(3, "km"),
  62387. allForms: true
  62388. },
  62389. {
  62390. name: "Mega",
  62391. height: math.unit(15, "km"),
  62392. allForms: true
  62393. },
  62394. {
  62395. name: "Giga",
  62396. height: math.unit(300, "km"),
  62397. allForms: true
  62398. },
  62399. {
  62400. name: "Giga+",
  62401. height: math.unit(1750, "km"),
  62402. allForms: true
  62403. },
  62404. {
  62405. name: "Continental",
  62406. height: math.unit(5000, "km"),
  62407. allForms: true
  62408. },
  62409. {
  62410. name: "Terra",
  62411. height: math.unit(20000, "km"),
  62412. allForms: true
  62413. },
  62414. {
  62415. name: "Terra+",
  62416. height: math.unit(300000, "km"),
  62417. allForms: true
  62418. },
  62419. {
  62420. name: "Solar",
  62421. height: math.unit(40000000, "km"),
  62422. allForms: true
  62423. },
  62424. {
  62425. name: "Galactic",
  62426. height: math.unit(810133, "parsecs"),
  62427. allForms: true
  62428. },
  62429. {
  62430. name: "Universal",
  62431. height: math.unit(25, "universes"),
  62432. allForms: true
  62433. },
  62434. ],
  62435. {
  62436. "shark": {
  62437. name: "Shark",
  62438. default: true
  62439. },
  62440. "dragon": {
  62441. name: "Dragon",
  62442. },
  62443. }
  62444. ))
  62445. characterMakers.push(() => makeCharacter(
  62446. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62447. {
  62448. front: {
  62449. height: math.unit(2.2, "meters"),
  62450. weight: math.unit(150, "kg"),
  62451. name: "Front",
  62452. image: {
  62453. source: "./media/characters/sergis/front.svg",
  62454. extra: 1314/1312,
  62455. bottom: 112/1426
  62456. }
  62457. },
  62458. back: {
  62459. height: math.unit(2.2, "meters"),
  62460. weight: math.unit(150, "kg"),
  62461. name: "Back",
  62462. image: {
  62463. source: "./media/characters/sergis/back.svg",
  62464. extra: 1335/1333,
  62465. bottom: 19/1354
  62466. }
  62467. },
  62468. frontLewd: {
  62469. height: math.unit(2.2, "meters"),
  62470. weight: math.unit(150, "kg"),
  62471. name: "Front (Lewd)",
  62472. image: {
  62473. source: "./media/characters/sergis/front-lewd.svg",
  62474. extra: 1314/1312,
  62475. bottom: 112/1426
  62476. }
  62477. },
  62478. frontDressed: {
  62479. height: math.unit(2.2, "meters"),
  62480. weight: math.unit(150, "kg"),
  62481. name: "Front (Dressed)",
  62482. image: {
  62483. source: "./media/characters/sergis/front-dressed.svg",
  62484. extra: 1330/1328,
  62485. bottom: 95/1425
  62486. }
  62487. },
  62488. frontDressedLewd: {
  62489. height: math.unit(2.2, "meters"),
  62490. weight: math.unit(150, "kg"),
  62491. name: "Front (Dressed, Lewd)",
  62492. image: {
  62493. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62494. extra: 1330/1328,
  62495. bottom: 95/1425
  62496. }
  62497. },
  62498. maw: {
  62499. height: math.unit(0.48, "meters"),
  62500. name: "Maw",
  62501. image: {
  62502. source: "./media/characters/sergis/maw.svg"
  62503. }
  62504. },
  62505. sheath: {
  62506. height: math.unit(0.38, "meters"),
  62507. name: "Sheath",
  62508. image: {
  62509. source: "./media/characters/sergis/sheath.svg"
  62510. }
  62511. },
  62512. },
  62513. [
  62514. {
  62515. name: "Incognito Size",
  62516. height: math.unit(2.2, "meters")
  62517. },
  62518. {
  62519. name: "Small Macro",
  62520. height: math.unit(40, "meters")
  62521. },
  62522. {
  62523. name: "Macro",
  62524. height: math.unit(150, "meters")
  62525. },
  62526. {
  62527. name: "Macro+",
  62528. height: math.unit(300, "meters")
  62529. },
  62530. {
  62531. name: "Mega",
  62532. height: math.unit(2.5, "km")
  62533. },
  62534. {
  62535. name: "Mega+",
  62536. height: math.unit(30, "km")
  62537. },
  62538. {
  62539. name: "Home Size",
  62540. height: math.unit(300, "km"),
  62541. default: true
  62542. },
  62543. {
  62544. name: "Giga+",
  62545. height: math.unit(1000, "km")
  62546. },
  62547. {
  62548. name: "Giga++",
  62549. height: math.unit(6000, "km")
  62550. },
  62551. {
  62552. name: "Terra",
  62553. height: math.unit(70000, "km")
  62554. },
  62555. {
  62556. name: "Terra+",
  62557. height: math.unit(200000, "km")
  62558. },
  62559. {
  62560. name: "Galactic",
  62561. height: math.unit(634200, "lightyears")
  62562. },
  62563. ]
  62564. ))
  62565. characterMakers.push(() => makeCharacter(
  62566. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62567. {
  62568. standard: {
  62569. height: math.unit(1 + 5/12, "feet"),
  62570. name: "Standard",
  62571. image: {
  62572. source: "./media/characters/spade/standard.svg",
  62573. extra: 1794/1703,
  62574. bottom: 115/1909
  62575. }
  62576. },
  62577. disguised: {
  62578. height: math.unit(1 + 5/12, "feet"),
  62579. name: "Disguised",
  62580. image: {
  62581. source: "./media/characters/spade/disguised.svg",
  62582. extra: 1794/1700,
  62583. bottom: 98/1892
  62584. }
  62585. },
  62586. },
  62587. [
  62588. {
  62589. name: "Normal",
  62590. height: math.unit(1 + 5/12, "feet"),
  62591. default: true
  62592. },
  62593. ]
  62594. ))
  62595. characterMakers.push(() => makeCharacter(
  62596. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62597. {
  62598. frontNsfw: {
  62599. height: math.unit(5, "meters"),
  62600. weight: math.unit(2000, "kg"),
  62601. preyCapacity: math.unit(5, "people"),
  62602. name: "Front (NSFW)",
  62603. image: {
  62604. source: "./media/characters/zeanlain/front-nsfw.svg",
  62605. extra: 1087/938,
  62606. bottom: 93/1180
  62607. },
  62608. extraAttributes: {
  62609. "wingspan": {
  62610. name: "Wingspan",
  62611. power: 1,
  62612. type: "length",
  62613. base: math.unit(10, "meters")
  62614. },
  62615. "footSize": {
  62616. name: "Foot Size",
  62617. power: 1,
  62618. type: "length",
  62619. base: math.unit(0.68, "meters")
  62620. },
  62621. "cockLength": {
  62622. name: "Cock Length",
  62623. power: 1,
  62624. type: "length",
  62625. base: math.unit(1.69, "meters")
  62626. },
  62627. "ballVolume": {
  62628. name: "Ball Volume",
  62629. power: 3,
  62630. type: "volume",
  62631. base: math.unit(0.028, "m^3")
  62632. },
  62633. }
  62634. },
  62635. front: {
  62636. height: math.unit(5, "meters"),
  62637. weight: math.unit(2000, "kg"),
  62638. preyCapacity: math.unit(3, "people"),
  62639. name: "Front",
  62640. image: {
  62641. source: "./media/characters/zeanlain/front.svg",
  62642. extra: 1087/938,
  62643. bottom: 93/1180
  62644. },
  62645. extraAttributes: {
  62646. "wingspan": {
  62647. name: "Wingspan",
  62648. power: 1,
  62649. type: "length",
  62650. base: math.unit(10, "meters")
  62651. },
  62652. "footSize": {
  62653. name: "Foot Size",
  62654. power: 1,
  62655. type: "length",
  62656. base: math.unit(0.68, "meters")
  62657. },
  62658. }
  62659. },
  62660. },
  62661. [
  62662. {
  62663. name: "Normal",
  62664. height: math.unit(5, "meters"),
  62665. default: true
  62666. },
  62667. ]
  62668. ))
  62669. characterMakers.push(() => makeCharacter(
  62670. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62671. {
  62672. front: {
  62673. height: math.unit(10, "meters"),
  62674. weight: math.unit(250000, "kg"),
  62675. name: "Front",
  62676. image: {
  62677. source: "./media/characters/airamis/front.svg",
  62678. extra: 865/835,
  62679. bottom: 13/878
  62680. }
  62681. },
  62682. },
  62683. [
  62684. {
  62685. name: "Normal",
  62686. height: math.unit(10, "meters"),
  62687. default: true
  62688. },
  62689. ]
  62690. ))
  62691. characterMakers.push(() => makeCharacter(
  62692. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62693. {
  62694. front: {
  62695. height: math.unit(3 + 3/12, "feet"),
  62696. weight: math.unit(75, "lb"),
  62697. name: "Front",
  62698. image: {
  62699. source: "./media/characters/corra-tourmaline/front.svg",
  62700. extra: 1037/864,
  62701. bottom: 39/1076
  62702. }
  62703. },
  62704. back: {
  62705. height: math.unit(3 + 3/12, "feet"),
  62706. weight: math.unit(75, "lb"),
  62707. name: "Back",
  62708. image: {
  62709. source: "./media/characters/corra-tourmaline/back.svg",
  62710. extra: 1022/849,
  62711. bottom: 26/1048
  62712. }
  62713. },
  62714. dressed: {
  62715. height: math.unit(3 + 3/12, "feet"),
  62716. weight: math.unit(75, "lb"),
  62717. name: "Dressed",
  62718. image: {
  62719. source: "./media/characters/corra-tourmaline/dressed.svg",
  62720. extra: 1037/864,
  62721. bottom: 39/1076
  62722. }
  62723. },
  62724. beans: {
  62725. height: math.unit(0.37, "feet"),
  62726. name: "Beans",
  62727. image: {
  62728. source: "./media/characters/corra-tourmaline/beans.svg"
  62729. }
  62730. },
  62731. },
  62732. [
  62733. {
  62734. name: "Normal",
  62735. height: math.unit(3 + 3/12, "feet"),
  62736. default: true
  62737. },
  62738. {
  62739. name: "Macro",
  62740. height: math.unit(32, "feet")
  62741. },
  62742. ]
  62743. ))
  62744. characterMakers.push(() => makeCharacter(
  62745. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62746. {
  62747. front: {
  62748. height: math.unit(6 + 2/12, "feet"),
  62749. weight: math.unit(203, "lb"),
  62750. name: "Front",
  62751. image: {
  62752. source: "./media/characters/maki-kawa/front.svg",
  62753. extra: 950/890,
  62754. bottom: 62/1012
  62755. }
  62756. },
  62757. back: {
  62758. height: math.unit(6 + 2/12, "feet"),
  62759. weight: math.unit(203, "lb"),
  62760. name: "Back",
  62761. image: {
  62762. source: "./media/characters/maki-kawa/back.svg",
  62763. extra: 953/878,
  62764. bottom: 49/1002
  62765. }
  62766. },
  62767. frontBarista: {
  62768. height: math.unit(6 + 2/12, "feet"),
  62769. weight: math.unit(203, "lb"),
  62770. name: "Front (Barista)",
  62771. image: {
  62772. source: "./media/characters/maki-kawa/front-barista.svg",
  62773. extra: 943/883,
  62774. bottom: 69/1012
  62775. }
  62776. },
  62777. backBarista: {
  62778. height: math.unit(6 + 2/12, "feet"),
  62779. weight: math.unit(203, "lb"),
  62780. name: "Back (Barista)",
  62781. image: {
  62782. source: "./media/characters/maki-kawa/back-barista.svg",
  62783. extra: 953/878,
  62784. bottom: 49/1002
  62785. }
  62786. },
  62787. frontWrestler: {
  62788. height: math.unit(6 + 2/12, "feet"),
  62789. weight: math.unit(203, "lb"),
  62790. name: "Front (Wrestler)",
  62791. image: {
  62792. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62793. extra: 950/890,
  62794. bottom: 62/1012
  62795. }
  62796. },
  62797. backWrestler: {
  62798. height: math.unit(6 + 2/12, "feet"),
  62799. weight: math.unit(203, "lb"),
  62800. name: "Back (Wrestler)",
  62801. image: {
  62802. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62803. extra: 953/878,
  62804. bottom: 49/1002
  62805. }
  62806. },
  62807. headFront: {
  62808. height: math.unit(1.64, "feet"),
  62809. name: "Head (Front)",
  62810. image: {
  62811. source: "./media/characters/maki-kawa/head-front.svg"
  62812. }
  62813. },
  62814. headSide: {
  62815. height: math.unit(1.59, "feet"),
  62816. name: "Head (Side)",
  62817. image: {
  62818. source: "./media/characters/maki-kawa/head-side.svg"
  62819. }
  62820. },
  62821. paw: {
  62822. height: math.unit(0.9, "feet"),
  62823. name: "Paw",
  62824. image: {
  62825. source: "./media/characters/maki-kawa/paw.svg"
  62826. }
  62827. },
  62828. },
  62829. [
  62830. {
  62831. name: "Normal",
  62832. height: math.unit(6 + 2/12, "feet"),
  62833. default: true
  62834. },
  62835. {
  62836. name: "Macro",
  62837. height: math.unit(617, "feet")
  62838. },
  62839. ]
  62840. ))
  62841. characterMakers.push(() => makeCharacter(
  62842. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62843. {
  62844. front: {
  62845. height: math.unit(10, "feet"),
  62846. weight: math.unit(1500, "lb"),
  62847. name: "Front",
  62848. image: {
  62849. source: "./media/characters/lennox/front.svg",
  62850. extra: 1623/1496,
  62851. bottom: 18/1641
  62852. }
  62853. },
  62854. back: {
  62855. height: math.unit(10, "feet"),
  62856. weight: math.unit(1500, "lb"),
  62857. name: "Back",
  62858. image: {
  62859. source: "./media/characters/lennox/back.svg",
  62860. extra: 1641/1481,
  62861. bottom: 13/1654
  62862. }
  62863. },
  62864. maw: {
  62865. height: math.unit(2.94, "feet"),
  62866. name: "Maw",
  62867. image: {
  62868. source: "./media/characters/lennox/maw.svg"
  62869. }
  62870. },
  62871. },
  62872. [
  62873. {
  62874. name: "Micro",
  62875. height: math.unit(1, "inch")
  62876. },
  62877. {
  62878. name: "Normal",
  62879. height: math.unit(10, "feet"),
  62880. default: true
  62881. },
  62882. {
  62883. name: "Macro",
  62884. height: math.unit(200, "feet")
  62885. },
  62886. ]
  62887. ))
  62888. characterMakers.push(() => makeCharacter(
  62889. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62890. {
  62891. frontDressed: {
  62892. height: math.unit(15 + 7/12, "feet"),
  62893. weight: math.unit(5000, "lb"),
  62894. name: "Front (Dressed)",
  62895. image: {
  62896. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62897. extra: 1136/1023,
  62898. bottom: 51/1187
  62899. }
  62900. },
  62901. backDressed: {
  62902. height: math.unit(15 + 7/12, "feet"),
  62903. weight: math.unit(5000, "lb"),
  62904. name: "Back (Dressed)",
  62905. image: {
  62906. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62907. extra: 2359/2143,
  62908. bottom: 103/2462
  62909. }
  62910. },
  62911. front: {
  62912. height: math.unit(15 + 7/12, "feet"),
  62913. weight: math.unit(5000, "lb"),
  62914. name: "Front",
  62915. image: {
  62916. source: "./media/characters/vyse-iron-thunder/front.svg",
  62917. extra: 1136/1023,
  62918. bottom: 51/1187
  62919. }
  62920. },
  62921. hand: {
  62922. height: math.unit(2.36, "feet"),
  62923. name: "Hand",
  62924. image: {
  62925. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62926. }
  62927. },
  62928. foot: {
  62929. height: math.unit(1.72, "feet"),
  62930. name: "Foot",
  62931. image: {
  62932. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62933. }
  62934. },
  62935. mouth: {
  62936. height: math.unit(2, "feet"),
  62937. name: "Mouth",
  62938. image: {
  62939. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62940. }
  62941. },
  62942. eye: {
  62943. height: math.unit(0.58, "feet"),
  62944. name: "Eye",
  62945. image: {
  62946. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62947. }
  62948. },
  62949. },
  62950. [
  62951. {
  62952. name: "Normal",
  62953. height: math.unit(15 + 7/12, "feet"),
  62954. default: true
  62955. },
  62956. {
  62957. name: "Macro",
  62958. height: math.unit(157, "feet")
  62959. },
  62960. {
  62961. name: "Macro+",
  62962. height: math.unit(1570, "feet")
  62963. },
  62964. {
  62965. name: "Macro++",
  62966. height: math.unit(15700, "feet")
  62967. },
  62968. {
  62969. name: "Macro+++",
  62970. height: math.unit(157000, "feet")
  62971. },
  62972. {
  62973. name: "Macro++++",
  62974. height: math.unit(1570000, "feet")
  62975. },
  62976. ]
  62977. ))
  62978. characterMakers.push(() => makeCharacter(
  62979. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62980. {
  62981. side: {
  62982. height: math.unit(6, "feet"),
  62983. weight: math.unit(115, "lb"),
  62984. name: "Side",
  62985. image: {
  62986. source: "./media/characters/moonbeam/side.svg",
  62987. extra: 839/485,
  62988. bottom: 60/899
  62989. }
  62990. },
  62991. },
  62992. [
  62993. {
  62994. name: "Normal",
  62995. height: math.unit(6, "feet"),
  62996. default: true
  62997. },
  62998. ]
  62999. ))
  63000. characterMakers.push(() => makeCharacter(
  63001. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  63002. {
  63003. front: {
  63004. height: math.unit(3500, "miles"),
  63005. weight: math.unit(1659, "petatonnes"),
  63006. name: "Front",
  63007. image: {
  63008. source: "./media/characters/baltica/front.svg",
  63009. extra: 429/428,
  63010. bottom: 41/470
  63011. }
  63012. },
  63013. back: {
  63014. height: math.unit(3500, "miles"),
  63015. weight: math.unit(1659, "petatonnes"),
  63016. name: "Back",
  63017. image: {
  63018. source: "./media/characters/baltica/back.svg",
  63019. extra: 452/451,
  63020. bottom: 8/460
  63021. }
  63022. },
  63023. },
  63024. [
  63025. {
  63026. name: "Gigamacro",
  63027. height: math.unit(3500, "miles"),
  63028. default: true
  63029. },
  63030. ]
  63031. ))
  63032. characterMakers.push(() => makeCharacter(
  63033. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  63034. {
  63035. front: {
  63036. height: math.unit(6 + 10/12, "feet"),
  63037. weight: math.unit(200, "lb"),
  63038. name: "Front",
  63039. image: {
  63040. source: "./media/characters/shadow-wolf/front.svg",
  63041. extra: 1931/1760,
  63042. bottom: 88/2019
  63043. }
  63044. },
  63045. },
  63046. [
  63047. {
  63048. name: "Normal",
  63049. height: math.unit(6 + 10/12, "feet"),
  63050. default: true
  63051. },
  63052. ]
  63053. ))
  63054. characterMakers.push(() => makeCharacter(
  63055. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  63056. {
  63057. front: {
  63058. height: math.unit(5 + 10/12, "feet"),
  63059. name: "Front",
  63060. image: {
  63061. source: "./media/characters/quincy-praying-mantis/front.svg",
  63062. extra: 1055/891,
  63063. bottom: 92/1147
  63064. }
  63065. },
  63066. soles: {
  63067. height: math.unit(0.85, "feet"),
  63068. name: "Soles",
  63069. image: {
  63070. source: "./media/characters/quincy-praying-mantis/soles.svg",
  63071. extra: 429/324,
  63072. bottom: 89/518
  63073. },
  63074. extraAttributes: {
  63075. "shoeSize": {
  63076. name: "Shoe Size",
  63077. power: 1,
  63078. type: "length",
  63079. base: math.unit(23, "ShoeSizeMensUS"),
  63080. defaultUnit: "ShoeSizeMensUS"
  63081. },
  63082. }
  63083. },
  63084. foot: {
  63085. height: math.unit(0.72, "feet"),
  63086. name: "Foot",
  63087. image: {
  63088. source: "./media/characters/quincy-praying-mantis/foot.svg",
  63089. extra: 349/349,
  63090. bottom: 76/425
  63091. }
  63092. },
  63093. },
  63094. [
  63095. {
  63096. name: "Normal",
  63097. height: math.unit(5 + 10/12, "feet"),
  63098. default: true
  63099. },
  63100. ]
  63101. ))
  63102. characterMakers.push(() => makeCharacter(
  63103. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  63104. {
  63105. front: {
  63106. height: math.unit(6, "feet"),
  63107. name: "Front",
  63108. image: {
  63109. source: "./media/characters/christopher-redwood/front.svg",
  63110. extra: 1402/1341,
  63111. bottom: 23/1425
  63112. }
  63113. },
  63114. back: {
  63115. height: math.unit(6, "feet"),
  63116. name: "Back",
  63117. image: {
  63118. source: "./media/characters/christopher-redwood/back.svg",
  63119. extra: 1406/1345,
  63120. bottom: 36/1442
  63121. }
  63122. },
  63123. head: {
  63124. height: math.unit(1.685, "feet"),
  63125. name: "Head",
  63126. image: {
  63127. source: "./media/characters/christopher-redwood/head.svg"
  63128. }
  63129. },
  63130. },
  63131. [
  63132. {
  63133. name: "Normal",
  63134. height: math.unit(6, "feet"),
  63135. default: true
  63136. },
  63137. ]
  63138. ))
  63139. characterMakers.push(() => makeCharacter(
  63140. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63141. {
  63142. front: {
  63143. height: math.unit(1.9, "meters"),
  63144. weight: math.unit(140, "lb"),
  63145. name: "Front",
  63146. image: {
  63147. source: "./media/characters/kara-fox/front.svg",
  63148. extra: 766/711,
  63149. bottom: 41/807
  63150. }
  63151. },
  63152. back: {
  63153. height: math.unit(1.9, "meters"),
  63154. weight: math.unit(140, "lb"),
  63155. name: "Back",
  63156. image: {
  63157. source: "./media/characters/kara-fox/back.svg",
  63158. extra: 766/596,
  63159. bottom: 29/795
  63160. }
  63161. },
  63162. maw: {
  63163. height: math.unit(0.78, "feet"),
  63164. name: "Maw",
  63165. image: {
  63166. source: "./media/characters/kara-fox/maw.svg"
  63167. }
  63168. },
  63169. pawpads: {
  63170. height: math.unit(0.96, "feet"),
  63171. name: "Pawpads",
  63172. image: {
  63173. source: "./media/characters/kara-fox/pawpads.svg"
  63174. }
  63175. },
  63176. },
  63177. [
  63178. {
  63179. name: "Normal",
  63180. height: math.unit(1.9, "meters"),
  63181. default: true
  63182. },
  63183. {
  63184. name: "Giantess",
  63185. height: math.unit(80, "meters")
  63186. },
  63187. ]
  63188. ))
  63189. characterMakers.push(() => makeCharacter(
  63190. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63191. {
  63192. front: {
  63193. height: math.unit(12, "feet"),
  63194. name: "Front",
  63195. image: {
  63196. source: "./media/characters/naomi-espeon/front.svg",
  63197. extra: 892/797,
  63198. bottom: 5/897
  63199. }
  63200. },
  63201. back: {
  63202. height: math.unit(12, "feet"),
  63203. name: "Back",
  63204. image: {
  63205. source: "./media/characters/naomi-espeon/back.svg",
  63206. extra: 890/785,
  63207. bottom: 12/902
  63208. }
  63209. },
  63210. },
  63211. [
  63212. {
  63213. name: "Normal",
  63214. height: math.unit(12, "feet"),
  63215. default: true
  63216. },
  63217. ]
  63218. ))
  63219. characterMakers.push(() => makeCharacter(
  63220. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63221. {
  63222. anthro_front: {
  63223. height: math.unit(8, "feet"),
  63224. weight: math.unit(625, "lb"),
  63225. name: "Front",
  63226. image: {
  63227. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63228. extra: 638/574,
  63229. bottom: 73/711
  63230. },
  63231. form: "anthro",
  63232. default: true
  63233. },
  63234. anthro_back: {
  63235. height: math.unit(8, "feet"),
  63236. weight: math.unit(625, "lb"),
  63237. name: "Back",
  63238. image: {
  63239. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63240. extra: 674/614,
  63241. bottom: 7/681
  63242. },
  63243. form: "anthro",
  63244. },
  63245. taur_side: {
  63246. height: math.unit(16, "feet"),
  63247. weight: math.unit(4.5, "tons"),
  63248. name: "Side",
  63249. image: {
  63250. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63251. extra: 704/646,
  63252. bottom: 132/836
  63253. },
  63254. form: "taur",
  63255. default: true
  63256. },
  63257. },
  63258. [
  63259. {
  63260. name: "Normal",
  63261. height: math.unit(8, "feet"),
  63262. default: true,
  63263. form: "anthro"
  63264. },
  63265. {
  63266. name: "Normal",
  63267. height: math.unit(16, "feet"),
  63268. default: true,
  63269. form: "taur"
  63270. },
  63271. ],
  63272. {
  63273. "anthro": {
  63274. name: "Anthro",
  63275. default: true
  63276. },
  63277. "taur": {
  63278. name: "Taur",
  63279. },
  63280. }
  63281. ))
  63282. characterMakers.push(() => makeCharacter(
  63283. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63284. {
  63285. front: {
  63286. height: math.unit(190, "cm"),
  63287. weight: math.unit(110, "kg"),
  63288. name: "Front",
  63289. image: {
  63290. source: "./media/characters/amelie/front.svg",
  63291. extra: 530/442,
  63292. bottom: 35/565
  63293. }
  63294. },
  63295. },
  63296. [
  63297. {
  63298. name: "Normal",
  63299. height: math.unit(190, "cm"),
  63300. default: true
  63301. },
  63302. ]
  63303. ))
  63304. characterMakers.push(() => makeCharacter(
  63305. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63306. {
  63307. front: {
  63308. height: math.unit(21, "feet"),
  63309. weight: math.unit(30000, "lb"),
  63310. name: "Front",
  63311. image: {
  63312. source: "./media/characters/valence/front.svg",
  63313. extra: 1430/1306,
  63314. bottom: 51/1481
  63315. }
  63316. },
  63317. },
  63318. [
  63319. {
  63320. name: "Normal",
  63321. height: math.unit(21, "feet"),
  63322. default: true
  63323. },
  63324. ]
  63325. ))
  63326. characterMakers.push(() => makeCharacter(
  63327. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63328. {
  63329. front: {
  63330. height: math.unit(5 + 9/12, "feet"),
  63331. weight: math.unit(170, "lb"),
  63332. name: "Front",
  63333. image: {
  63334. source: "./media/characters/aurora-adkins/front.svg",
  63335. extra: 1141/1089,
  63336. bottom: 41/1182
  63337. }
  63338. },
  63339. },
  63340. [
  63341. {
  63342. name: "Tiny",
  63343. height: math.unit(7, "mm")
  63344. },
  63345. {
  63346. name: "Small",
  63347. height: math.unit(3.4, "inches")
  63348. },
  63349. {
  63350. name: "Normal",
  63351. height: math.unit(5 + 9/12, "feet"),
  63352. default: true
  63353. },
  63354. {
  63355. name: "Big",
  63356. height: math.unit(31, "feet")
  63357. },
  63358. {
  63359. name: "Giant",
  63360. height: math.unit(300, "feet")
  63361. },
  63362. ]
  63363. ))
  63364. characterMakers.push(() => makeCharacter(
  63365. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63366. {
  63367. front: {
  63368. height: math.unit(5 + 6/12, "feet"),
  63369. weight: math.unit(210, "lb"),
  63370. name: "Front",
  63371. image: {
  63372. source: "./media/characters/cyber/front.svg",
  63373. extra: 1968/1798,
  63374. bottom: 10/1978
  63375. },
  63376. extraAttributes: {
  63377. "shoeSize": {
  63378. name: "Shoe Size",
  63379. power: 1,
  63380. type: "length",
  63381. base: math.unit(30, "ShoeSizeMensUS")
  63382. },
  63383. }
  63384. },
  63385. },
  63386. [
  63387. {
  63388. name: "Normal",
  63389. height: math.unit(5 + 6/12, "feet"),
  63390. default: true
  63391. },
  63392. ]
  63393. ))
  63394. characterMakers.push(() => makeCharacter(
  63395. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63396. {
  63397. front: {
  63398. height: math.unit(6 + 6/12, "feet"),
  63399. weight: math.unit(140, "lb"),
  63400. name: "Front",
  63401. image: {
  63402. source: "./media/characters/sapphire-wairimea/front.svg",
  63403. extra: 475/458,
  63404. bottom: 14/489
  63405. }
  63406. },
  63407. },
  63408. [
  63409. {
  63410. name: "Normal",
  63411. height: math.unit(6 + 6/12, "feet")
  63412. },
  63413. {
  63414. name: "Macro",
  63415. height: math.unit(132, "feet"),
  63416. default: true
  63417. },
  63418. ]
  63419. ))
  63420. characterMakers.push(() => makeCharacter(
  63421. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63422. {
  63423. front: {
  63424. height: math.unit(1.6, "meters"),
  63425. weight: math.unit(100, "lb"),
  63426. name: "Front",
  63427. image: {
  63428. source: "./media/characters/cirkazi/front.svg",
  63429. extra: 489/477,
  63430. bottom: 0/489
  63431. }
  63432. },
  63433. },
  63434. [
  63435. {
  63436. name: "Normal",
  63437. height: math.unit(1.6, "meters")
  63438. },
  63439. {
  63440. name: "Macro",
  63441. height: math.unit(800, "feet"),
  63442. default: true
  63443. },
  63444. ]
  63445. ))
  63446. characterMakers.push(() => makeCharacter(
  63447. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63448. {
  63449. front: {
  63450. height: math.unit(5 + 10/12, "feet"),
  63451. weight: math.unit(145, "lb"),
  63452. name: "Front",
  63453. image: {
  63454. source: "./media/characters/corrin-cavelli/front.svg",
  63455. extra: 483/464,
  63456. bottom: 6/489
  63457. }
  63458. },
  63459. },
  63460. [
  63461. {
  63462. name: "Human",
  63463. height: math.unit(5 + 10/12, "feet")
  63464. },
  63465. {
  63466. name: "Giant",
  63467. height: math.unit(210, "feet"),
  63468. default: true
  63469. },
  63470. ]
  63471. ))
  63472. characterMakers.push(() => makeCharacter(
  63473. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63474. {
  63475. back: {
  63476. height: math.unit(5 + 6/12, "feet"),
  63477. weight: math.unit(115, "lb"),
  63478. name: "Back",
  63479. image: {
  63480. source: "./media/characters/lori-lopez/back.svg",
  63481. extra: 483/474,
  63482. bottom: 6/489
  63483. }
  63484. },
  63485. },
  63486. [
  63487. {
  63488. name: "Human",
  63489. height: math.unit(5 + 6/12, "feet")
  63490. },
  63491. {
  63492. name: "Macro",
  63493. height: math.unit(198, "feet"),
  63494. default: true
  63495. },
  63496. ]
  63497. ))
  63498. characterMakers.push(() => makeCharacter(
  63499. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63500. {
  63501. front: {
  63502. height: math.unit(6, "feet"),
  63503. weight: math.unit(220, "lb"),
  63504. name: "Front",
  63505. image: {
  63506. source: "./media/characters/sylvia-beauregard/front.svg",
  63507. extra: 483/479,
  63508. bottom: 6/489
  63509. }
  63510. },
  63511. },
  63512. [
  63513. {
  63514. name: "Macro",
  63515. height: math.unit(2071, "feet"),
  63516. default: true
  63517. },
  63518. ]
  63519. ))
  63520. characterMakers.push(() => makeCharacter(
  63521. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63522. {
  63523. back: {
  63524. height: math.unit(5 + 6/12, "feet"),
  63525. weight: math.unit(160, "lb"),
  63526. name: "Back",
  63527. image: {
  63528. source: "./media/characters/akiko-takahashi/back.svg",
  63529. extra: 459/454,
  63530. bottom: 27/486
  63531. }
  63532. },
  63533. },
  63534. [
  63535. {
  63536. name: "Human",
  63537. height: math.unit(5 + 6/12, "feet")
  63538. },
  63539. {
  63540. name: "Macro",
  63541. height: math.unit(198, "feet"),
  63542. default: true
  63543. },
  63544. {
  63545. name: "Megamacro",
  63546. height: math.unit(7128, "feet")
  63547. },
  63548. ]
  63549. ))
  63550. characterMakers.push(() => makeCharacter(
  63551. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63552. {
  63553. front: {
  63554. height: math.unit(6, "feet"),
  63555. weight: math.unit(140, "lb"),
  63556. name: "Front",
  63557. image: {
  63558. source: "./media/characters/velvet-garza/front.svg",
  63559. extra: 480/462,
  63560. bottom: 7/487
  63561. }
  63562. },
  63563. },
  63564. [
  63565. {
  63566. name: "Macro",
  63567. height: math.unit(37, "feet"),
  63568. default: true
  63569. },
  63570. ]
  63571. ))
  63572. characterMakers.push(() => makeCharacter(
  63573. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63574. {
  63575. front: {
  63576. height: math.unit(7 + 6/12, "feet"),
  63577. weight: math.unit(400, "lb"),
  63578. name: "Front",
  63579. image: {
  63580. source: "./media/characters/gaia/front.svg",
  63581. extra: 474/463,
  63582. bottom: 13/487
  63583. }
  63584. },
  63585. },
  63586. [
  63587. {
  63588. name: "MiniMacro",
  63589. height: math.unit(7 + 6/12, "feet")
  63590. },
  63591. {
  63592. name: "GigaMacro",
  63593. height: math.unit(14500, "feet"),
  63594. default: true
  63595. },
  63596. ]
  63597. ))
  63598. characterMakers.push(() => makeCharacter(
  63599. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63600. {
  63601. front: {
  63602. height: math.unit(6, "feet"),
  63603. weight: math.unit(150, "lb"),
  63604. name: "Front",
  63605. image: {
  63606. source: "./media/characters/tim/front.svg",
  63607. extra: 1878/1743,
  63608. bottom: 9/1887
  63609. }
  63610. },
  63611. frontDressed: {
  63612. height: math.unit(6, "feet"),
  63613. weight: math.unit(150, "lb"),
  63614. name: "Front (Dressed)",
  63615. image: {
  63616. source: "./media/characters/tim/front-dressed.svg",
  63617. extra: 1765/1485,
  63618. bottom: 48/1813
  63619. }
  63620. },
  63621. backDressed: {
  63622. height: math.unit(6, "feet"),
  63623. weight: math.unit(150, "lb"),
  63624. name: "Back (Dressed)",
  63625. image: {
  63626. source: "./media/characters/tim/back-dressed.svg",
  63627. extra: 1750/1465,
  63628. bottom: 25/1775
  63629. }
  63630. },
  63631. dick: {
  63632. height: math.unit(1.5, "feet"),
  63633. weight: math.unit(6, "lb"),
  63634. name: "Dick",
  63635. image: {
  63636. source: "./media/characters/tim/dick.svg"
  63637. }
  63638. },
  63639. hand: {
  63640. height: math.unit(0.522, "feet"),
  63641. name: "Hand",
  63642. image: {
  63643. source: "./media/characters/tim/hand.svg"
  63644. }
  63645. },
  63646. palm: {
  63647. height: math.unit(0.48, "feet"),
  63648. name: "Palm",
  63649. image: {
  63650. source: "./media/characters/tim/palm.svg"
  63651. }
  63652. },
  63653. paw: {
  63654. height: math.unit(0.9, "feet"),
  63655. name: "Paw",
  63656. image: {
  63657. source: "./media/characters/tim/paw.svg"
  63658. }
  63659. },
  63660. sole: {
  63661. height: math.unit(0.88, "feet"),
  63662. name: "Sole",
  63663. image: {
  63664. source: "./media/characters/tim/sole.svg"
  63665. }
  63666. },
  63667. },
  63668. [
  63669. {
  63670. name: "Macro",
  63671. height: math.unit(1000, "feet")
  63672. },
  63673. {
  63674. name: "Megamacro",
  63675. height: math.unit(10000, "feet"),
  63676. default: true
  63677. },
  63678. {
  63679. name: "Megamacro+",
  63680. height: math.unit(50000, "feet")
  63681. },
  63682. {
  63683. name: "Gigamacro",
  63684. height: math.unit(150000, "km")
  63685. },
  63686. ]
  63687. ))
  63688. characterMakers.push(() => makeCharacter(
  63689. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63690. {
  63691. front: {
  63692. height: math.unit(5 + 8/12, "feet"),
  63693. weight: math.unit(170, "lb"),
  63694. name: "Front",
  63695. image: {
  63696. source: "./media/characters/abel-delreoux/front.svg",
  63697. extra: 1615/1500,
  63698. bottom: 82/1697
  63699. }
  63700. },
  63701. back: {
  63702. height: math.unit(5 + 8/12, "feet"),
  63703. weight: math.unit(170, "lb"),
  63704. name: "Back",
  63705. image: {
  63706. source: "./media/characters/abel-delreoux/back.svg",
  63707. extra: 1644/1534,
  63708. bottom: 24/1668
  63709. }
  63710. },
  63711. casual: {
  63712. height: math.unit(5 + 8/12, "feet"),
  63713. weight: math.unit(170, "lb"),
  63714. name: "Casual",
  63715. image: {
  63716. source: "./media/characters/abel-delreoux/casual.svg",
  63717. extra: 1716/1598,
  63718. bottom: 29/1745
  63719. }
  63720. },
  63721. sleepy: {
  63722. height: math.unit(5 + 8/12, "feet"),
  63723. weight: math.unit(170, "lb"),
  63724. name: "Sleepy",
  63725. image: {
  63726. source: "./media/characters/abel-delreoux/sleepy.svg",
  63727. extra: 1649/1573,
  63728. bottom: 22/1671
  63729. }
  63730. },
  63731. fem: {
  63732. height: math.unit(5 + 8/12, "feet"),
  63733. weight: math.unit(170, "lb"),
  63734. name: "Fem",
  63735. image: {
  63736. source: "./media/characters/abel-delreoux/fem.svg",
  63737. extra: 1680/1564,
  63738. bottom: 17/1697
  63739. }
  63740. },
  63741. hand: {
  63742. height: math.unit(0.78, "feet"),
  63743. name: "Hand",
  63744. image: {
  63745. source: "./media/characters/abel-delreoux/hand.svg"
  63746. }
  63747. },
  63748. paw: {
  63749. height: math.unit(0.78, "feet"),
  63750. name: "Paw",
  63751. image: {
  63752. source: "./media/characters/abel-delreoux/paw.svg"
  63753. }
  63754. },
  63755. },
  63756. [
  63757. {
  63758. name: "Normal",
  63759. height: math.unit(5 + 8/12, "feet"),
  63760. default: true
  63761. },
  63762. ]
  63763. ))
  63764. characterMakers.push(() => makeCharacter(
  63765. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63766. {
  63767. front: {
  63768. height: math.unit(6, "feet"),
  63769. weight: math.unit(159, "lb"),
  63770. name: "Front",
  63771. image: {
  63772. source: "./media/characters/meus/front.svg",
  63773. extra: 938/843,
  63774. bottom: 37/975
  63775. }
  63776. },
  63777. back: {
  63778. height: math.unit(6, "feet"),
  63779. weight: math.unit(159, "lb"),
  63780. name: "Back",
  63781. image: {
  63782. source: "./media/characters/meus/back.svg",
  63783. extra: 967/873,
  63784. bottom: 12/979
  63785. }
  63786. },
  63787. },
  63788. [
  63789. {
  63790. name: "Micro",
  63791. height: math.unit(2, "inches")
  63792. },
  63793. {
  63794. name: "Mini",
  63795. height: math.unit(6, "inches")
  63796. },
  63797. {
  63798. name: "Normal",
  63799. height: math.unit(6, "feet"),
  63800. default: true
  63801. },
  63802. {
  63803. name: "Macro",
  63804. height: math.unit(84, "feet")
  63805. },
  63806. ]
  63807. ))
  63808. characterMakers.push(() => makeCharacter(
  63809. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63810. {
  63811. front: {
  63812. height: math.unit(60, "cm"),
  63813. weight: math.unit(18, "kg"),
  63814. name: "Front",
  63815. image: {
  63816. source: "./media/characters/yamato/front.svg",
  63817. extra: 733/688,
  63818. bottom: 29/762
  63819. }
  63820. },
  63821. },
  63822. [
  63823. {
  63824. name: "Micro",
  63825. height: math.unit(6, "cm")
  63826. },
  63827. {
  63828. name: "Normal",
  63829. height: math.unit(60, "cm"),
  63830. default: true
  63831. },
  63832. ]
  63833. ))
  63834. characterMakers.push(() => makeCharacter(
  63835. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63836. {
  63837. front: {
  63838. height: math.unit(9, "feet"),
  63839. weight: math.unit(518, "lb"),
  63840. name: "Front",
  63841. image: {
  63842. source: "./media/characters/barus/front.svg",
  63843. extra: 1877/1795,
  63844. bottom: 55/1932
  63845. }
  63846. },
  63847. },
  63848. [
  63849. {
  63850. name: "Base Height",
  63851. height: math.unit(9, "feet"),
  63852. default: true
  63853. },
  63854. {
  63855. name: "Large",
  63856. height: math.unit(18, "feet")
  63857. },
  63858. {
  63859. name: "Giant",
  63860. height: math.unit(100, "feet")
  63861. },
  63862. {
  63863. name: "Huge",
  63864. height: math.unit(500, "feet")
  63865. },
  63866. {
  63867. name: "Enormous",
  63868. height: math.unit(300, "meters")
  63869. },
  63870. {
  63871. name: "Deity Among Man",
  63872. height: math.unit(3000, "meters")
  63873. },
  63874. ]
  63875. ))
  63876. characterMakers.push(() => makeCharacter(
  63877. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63878. {
  63879. front: {
  63880. height: math.unit(1.7, "meters"),
  63881. name: "Front",
  63882. image: {
  63883. source: "./media/characters/yari/front.svg",
  63884. extra: 1210/1125,
  63885. bottom: 283/1493
  63886. }
  63887. },
  63888. back: {
  63889. height: math.unit(1.7, "meters"),
  63890. name: "Back",
  63891. image: {
  63892. source: "./media/characters/yari/back.svg",
  63893. extra: 1240/1195,
  63894. bottom: 180/1420
  63895. }
  63896. },
  63897. head: {
  63898. height: math.unit(1.26, "feet"),
  63899. name: "Head",
  63900. image: {
  63901. source: "./media/characters/yari/head.svg"
  63902. }
  63903. },
  63904. },
  63905. [
  63906. {
  63907. name: "Nano",
  63908. height: math.unit(0.5, "mm")
  63909. },
  63910. {
  63911. name: "Micro",
  63912. height: math.unit(3, "inches")
  63913. },
  63914. {
  63915. name: "Short",
  63916. height: math.unit(1.5, "meters")
  63917. },
  63918. {
  63919. name: "Norm",
  63920. height: math.unit(1.7, "meters"),
  63921. default: true
  63922. },
  63923. ]
  63924. ))
  63925. characterMakers.push(() => makeCharacter(
  63926. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63927. {
  63928. front: {
  63929. height: math.unit(5 + 2/12, "feet"),
  63930. weight: math.unit(110, "lb"),
  63931. name: "Front",
  63932. image: {
  63933. source: "./media/characters/salem/front.svg",
  63934. extra: 1895/1800,
  63935. bottom: 23/1918
  63936. }
  63937. },
  63938. back: {
  63939. height: math.unit(5 + 2/12, "feet"),
  63940. weight: math.unit(110, "lb"),
  63941. name: "Back",
  63942. image: {
  63943. source: "./media/characters/salem/back.svg",
  63944. extra: 1875/1802,
  63945. bottom: 20/1895
  63946. }
  63947. },
  63948. head: {
  63949. height: math.unit(1, "feet"),
  63950. name: "Head",
  63951. image: {
  63952. source: "./media/characters/salem/head.svg"
  63953. }
  63954. },
  63955. paw: {
  63956. height: math.unit(0.59, "feet"),
  63957. name: "Paw",
  63958. image: {
  63959. source: "./media/characters/salem/paw.svg"
  63960. }
  63961. },
  63962. beans: {
  63963. height: math.unit(0.66, "feet"),
  63964. name: "Beans",
  63965. image: {
  63966. source: "./media/characters/salem/beans.svg"
  63967. }
  63968. },
  63969. eye: {
  63970. height: math.unit(0.224, "feet"),
  63971. name: "Eye",
  63972. image: {
  63973. source: "./media/characters/salem/eye.svg"
  63974. }
  63975. },
  63976. semiferal: {
  63977. height: math.unit(2.3, "feet"),
  63978. name: "Semiferal",
  63979. image: {
  63980. source: "./media/characters/salem/semiferal.svg",
  63981. extra: 914/839,
  63982. bottom: 32/946
  63983. }
  63984. },
  63985. },
  63986. [
  63987. {
  63988. name: "Micro",
  63989. height: math.unit(4, "inches")
  63990. },
  63991. {
  63992. name: "Normal",
  63993. height: math.unit(5 + 2/12, "feet"),
  63994. default: true
  63995. },
  63996. {
  63997. name: "Macro",
  63998. height: math.unit(108, "feet")
  63999. },
  64000. {
  64001. name: "Macro+",
  64002. height: math.unit(1500, "feet")
  64003. },
  64004. ]
  64005. ))
  64006. characterMakers.push(() => makeCharacter(
  64007. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  64008. {
  64009. front: {
  64010. height: math.unit(7 + 6/12, "feet"),
  64011. weight: math.unit(600, "kg"),
  64012. preyCapacity: math.unit(10, "people"),
  64013. name: "Front",
  64014. image: {
  64015. source: "./media/characters/kii/front.svg",
  64016. extra: 3296/3087,
  64017. bottom: 130/3426
  64018. }
  64019. },
  64020. },
  64021. [
  64022. {
  64023. name: "Normal",
  64024. height: math.unit(7 + 6/12, "feet"),
  64025. default: true
  64026. },
  64027. ]
  64028. ))
  64029. characterMakers.push(() => makeCharacter(
  64030. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  64031. {
  64032. front: {
  64033. height: math.unit(2, "meters"),
  64034. weight: math.unit(200, "lb"),
  64035. name: "Front",
  64036. image: {
  64037. source: "./media/characters/taffy/front.svg",
  64038. extra: 1666/1618,
  64039. bottom: 157/1823
  64040. }
  64041. },
  64042. back: {
  64043. height: math.unit(2, "meters"),
  64044. weight: math.unit(200, "lb"),
  64045. name: "Back",
  64046. image: {
  64047. source: "./media/characters/taffy/back.svg",
  64048. extra: 1635/1583,
  64049. bottom: 153/1788
  64050. }
  64051. },
  64052. },
  64053. [
  64054. {
  64055. name: "Normal",
  64056. height: math.unit(2, "meters"),
  64057. default: true
  64058. },
  64059. ]
  64060. ))
  64061. characterMakers.push(() => makeCharacter(
  64062. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  64063. {
  64064. front: {
  64065. height: math.unit(1.55, "meters"),
  64066. weight: math.unit(60, "kg"),
  64067. name: "Front",
  64068. image: {
  64069. source: "./media/characters/barley/front.svg",
  64070. extra: 1520/1340,
  64071. bottom: 47/1567
  64072. }
  64073. },
  64074. back: {
  64075. height: math.unit(1.55, "meters"),
  64076. weight: math.unit(60, "kg"),
  64077. name: "Back",
  64078. image: {
  64079. source: "./media/characters/barley/back.svg",
  64080. extra: 1543/1341,
  64081. bottom: 12/1555
  64082. }
  64083. },
  64084. feet: {
  64085. height: math.unit(2.18, "feet"),
  64086. name: "Feet",
  64087. image: {
  64088. source: "./media/characters/barley/feet.svg"
  64089. }
  64090. },
  64091. },
  64092. [
  64093. {
  64094. name: "Normal",
  64095. height: math.unit(1.55, "meters"),
  64096. default: true
  64097. },
  64098. ]
  64099. ))
  64100. characterMakers.push(() => makeCharacter(
  64101. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  64102. {
  64103. dressed: {
  64104. height: math.unit(6, "feet"),
  64105. name: "Dressed",
  64106. image: {
  64107. source: "./media/characters/lydia-lopez/dressed.svg",
  64108. extra: 1319/1277,
  64109. bottom: 90/1409
  64110. }
  64111. },
  64112. nude: {
  64113. height: math.unit(6, "feet"),
  64114. name: "Nude",
  64115. image: {
  64116. source: "./media/characters/lydia-lopez/nude.svg",
  64117. extra: 1319/1277,
  64118. bottom: 90/1409
  64119. }
  64120. },
  64121. },
  64122. [
  64123. {
  64124. name: "Normal",
  64125. height: math.unit(6, "feet"),
  64126. default: true
  64127. },
  64128. {
  64129. name: "Maximum",
  64130. height: math.unit(2101, "feet")
  64131. },
  64132. ]
  64133. ))
  64134. characterMakers.push(() => makeCharacter(
  64135. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64136. {
  64137. front: {
  64138. height: math.unit(5 + 4/12, "feet"),
  64139. weight: math.unit(250, "lb"),
  64140. volume: math.unit(20, "gallons"),
  64141. name: "Front",
  64142. image: {
  64143. source: "./media/characters/kira-slime/front.svg",
  64144. extra: 442/403,
  64145. bottom: 18/460
  64146. }
  64147. },
  64148. frontNsfw: {
  64149. height: math.unit(5 + 4/12, "feet"),
  64150. weight: math.unit(250, "lb"),
  64151. volume: math.unit(20, "gallons"),
  64152. name: "Front (NSFW)",
  64153. image: {
  64154. source: "./media/characters/kira-slime/front-nsfw.svg",
  64155. extra: 442/403,
  64156. bottom: 18/460
  64157. }
  64158. },
  64159. },
  64160. [
  64161. {
  64162. name: "Droplet",
  64163. height: math.unit(0.0464452, "feet")
  64164. },
  64165. {
  64166. name: "Pint",
  64167. height: math.unit(0.9824, "feet")
  64168. },
  64169. {
  64170. name: "Bucket",
  64171. height: math.unit(2.83, "feet")
  64172. },
  64173. {
  64174. name: "Normal",
  64175. height: math.unit(5 + 4/12, "feet"),
  64176. default: true
  64177. },
  64178. {
  64179. name: "Tub",
  64180. height: math.unit(8.46614, "feet")
  64181. },
  64182. {
  64183. name: "Pool",
  64184. height: math.unit(31.1895, "feet")
  64185. },
  64186. {
  64187. name: "Pond",
  64188. height: math.unit(170.349, "feet")
  64189. },
  64190. {
  64191. name: "Lake",
  64192. height: math.unit(289334, "feet")
  64193. },
  64194. {
  64195. name: "Ocean",
  64196. height: math.unit(1.11940e+7, "feet")
  64197. },
  64198. ]
  64199. ))
  64200. characterMakers.push(() => makeCharacter(
  64201. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64202. {
  64203. front: {
  64204. height: math.unit(5 + 6/12, "feet"),
  64205. weight: math.unit(120, "lb"),
  64206. name: "Front",
  64207. image: {
  64208. source: "./media/characters/holiday/front.svg",
  64209. extra: 456/403,
  64210. bottom: 4/460
  64211. }
  64212. },
  64213. back: {
  64214. height: math.unit(5 + 6/12, "feet"),
  64215. weight: math.unit(120, "lb"),
  64216. name: "Back",
  64217. image: {
  64218. source: "./media/characters/holiday/back.svg",
  64219. extra: 450/404,
  64220. bottom: 12/462
  64221. }
  64222. },
  64223. head: {
  64224. height: math.unit(2.3, "feet"),
  64225. name: "Head",
  64226. image: {
  64227. source: "./media/characters/holiday/head.svg"
  64228. }
  64229. },
  64230. },
  64231. [
  64232. {
  64233. name: "Normal",
  64234. height: math.unit(5 + 6/12, "feet"),
  64235. default: true
  64236. },
  64237. {
  64238. name: "Macro",
  64239. height: math.unit(6574.25, "feet")
  64240. },
  64241. ]
  64242. ))
  64243. characterMakers.push(() => makeCharacter(
  64244. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64245. {
  64246. front: {
  64247. height: math.unit(6 + 2/12, "feet"),
  64248. weight: math.unit(200, "lb"),
  64249. name: "Front",
  64250. image: {
  64251. source: "./media/characters/camina/front.svg",
  64252. extra: 1048/985,
  64253. bottom: 30/1078
  64254. }
  64255. },
  64256. },
  64257. [
  64258. {
  64259. name: "Normal",
  64260. height: math.unit(6 + 2/12, "feet"),
  64261. default: true
  64262. },
  64263. ]
  64264. ))
  64265. characterMakers.push(() => makeCharacter(
  64266. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64267. {
  64268. front: {
  64269. height: math.unit(30, "cm"),
  64270. weight: math.unit(420, "grams"),
  64271. name: "Front",
  64272. image: {
  64273. source: "./media/characters/smuck/front.svg",
  64274. extra: 379/345,
  64275. bottom: 36/415
  64276. }
  64277. },
  64278. },
  64279. [
  64280. {
  64281. name: "Smuck-Sized",
  64282. height: math.unit(30, "cm"),
  64283. default: true
  64284. },
  64285. ]
  64286. ))
  64287. characterMakers.push(() => makeCharacter(
  64288. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64289. {
  64290. frontSfw: {
  64291. height: math.unit(10, "feet"),
  64292. weight: math.unit(1000, "kg"),
  64293. preyCapacity: math.unit(2, "people"),
  64294. name: "Front (SFW)",
  64295. image: {
  64296. source: "./media/characters/bylur/front-sfw.svg",
  64297. extra: 419/343,
  64298. bottom: 3/422
  64299. },
  64300. default: true
  64301. },
  64302. frontSheath: {
  64303. height: math.unit(10, "feet"),
  64304. weight: math.unit(1000, "kg"),
  64305. preyCapacity: math.unit(2, "people"),
  64306. name: "Front (Sheath)",
  64307. image: {
  64308. source: "./media/characters/bylur/front-sheath.svg",
  64309. extra: 419/343,
  64310. bottom: 3/422
  64311. }
  64312. },
  64313. frontErect: {
  64314. height: math.unit(10, "feet"),
  64315. weight: math.unit(1000, "kg"),
  64316. preyCapacity: math.unit(2, "people"),
  64317. name: "Front (Erect)",
  64318. image: {
  64319. source: "./media/characters/bylur/front-erect.svg",
  64320. extra: 419/343,
  64321. bottom: 3/422
  64322. }
  64323. },
  64324. back: {
  64325. height: math.unit(10, "feet"),
  64326. weight: math.unit(1000, "kg"),
  64327. preyCapacity: math.unit(2, "people"),
  64328. name: "Back",
  64329. image: {
  64330. source: "./media/characters/bylur/back.svg",
  64331. extra: 392/315,
  64332. bottom: 3/395
  64333. }
  64334. },
  64335. maw: {
  64336. height: math.unit(3.65, "feet"),
  64337. name: "Maw",
  64338. image: {
  64339. source: "./media/characters/bylur/maw.svg"
  64340. }
  64341. },
  64342. },
  64343. [
  64344. {
  64345. name: "Slightly Human Sized",
  64346. height: math.unit(10, "feet")
  64347. },
  64348. {
  64349. name: "Normal",
  64350. height: math.unit(35, "feet"),
  64351. default: true
  64352. },
  64353. {
  64354. name: "Macro",
  64355. height: math.unit(130, "feet")
  64356. },
  64357. ]
  64358. ))
  64359. characterMakers.push(() => makeCharacter(
  64360. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64361. {
  64362. frontNsfw: {
  64363. height: math.unit(6, "feet"),
  64364. weight: math.unit(250, "lb"),
  64365. preyCapacity: math.unit(0.05, "people"),
  64366. name: "Front (NSFW)",
  64367. image: {
  64368. source: "./media/characters/oarven/front-nsfw.svg",
  64369. extra: 1795/1783,
  64370. bottom: 142/1937
  64371. }
  64372. },
  64373. frontSfw: {
  64374. height: math.unit(6, "feet"),
  64375. weight: math.unit(250, "lb"),
  64376. preyCapacity: math.unit(0.05, "people"),
  64377. name: "Front (SFW)",
  64378. image: {
  64379. source: "./media/characters/oarven/front-sfw.svg",
  64380. extra: 1795/1783,
  64381. bottom: 142/1937
  64382. }
  64383. },
  64384. },
  64385. [
  64386. {
  64387. name: "Megamacro",
  64388. height: math.unit(5, "miles"),
  64389. default: true
  64390. },
  64391. {
  64392. name: "Maximum Height",
  64393. height: math.unit(5, "AUs")
  64394. },
  64395. ]
  64396. ))
  64397. characterMakers.push(() => makeCharacter(
  64398. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64399. {
  64400. side: {
  64401. height: math.unit(1065, "meters"),
  64402. weight: math.unit(1e12, "kg"),
  64403. volume: math.unit(3265000000, "m^3"),
  64404. name: "Side",
  64405. image: {
  64406. source: "./media/characters/solidarity/side.svg"
  64407. }
  64408. },
  64409. front: {
  64410. height: math.unit(1065, "meters"),
  64411. weight: math.unit(3265000000000, "kg"),
  64412. volume: math.unit(3265000000, "m^3"),
  64413. name: "Front",
  64414. image: {
  64415. source: "./media/characters/solidarity/front.svg"
  64416. }
  64417. },
  64418. top: {
  64419. height: math.unit(5823, "meters"),
  64420. weight: math.unit(3265000000000, "kg"),
  64421. volume: math.unit(3265000000, "m^3"),
  64422. name: "Top",
  64423. image: {
  64424. source: "./media/characters/solidarity/top.svg"
  64425. }
  64426. },
  64427. },
  64428. [
  64429. {
  64430. name: "Normal",
  64431. height: math.unit(1065, "meters"),
  64432. default: true
  64433. },
  64434. ]
  64435. ))
  64436. characterMakers.push(() => makeCharacter(
  64437. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64438. {
  64439. side: {
  64440. height: math.unit(18 + 4/12, "feet"),
  64441. weight: math.unit(13000, "kg"),
  64442. name: "Side",
  64443. image: {
  64444. source: "./media/characters/ani'szi/side.svg",
  64445. extra: 468/459,
  64446. bottom: 60/528
  64447. }
  64448. },
  64449. head: {
  64450. height: math.unit(4.8, "feet"),
  64451. name: "Head",
  64452. image: {
  64453. source: "./media/characters/ani'szi/head.svg"
  64454. }
  64455. },
  64456. jaws: {
  64457. height: math.unit(2.25, "feet"),
  64458. name: "Jaws",
  64459. image: {
  64460. source: "./media/characters/ani'szi/jaws.svg"
  64461. }
  64462. },
  64463. bust: {
  64464. height: math.unit(8.9, "feet"),
  64465. name: "Bust",
  64466. image: {
  64467. source: "./media/characters/ani'szi/bust.svg"
  64468. }
  64469. },
  64470. back: {
  64471. height: math.unit(13.53, "feet"),
  64472. name: "Back",
  64473. image: {
  64474. source: "./media/characters/ani'szi/back.svg"
  64475. }
  64476. },
  64477. eye: {
  64478. height: math.unit(0.44, "feet"),
  64479. name: "Eye",
  64480. image: {
  64481. source: "./media/characters/ani'szi/eye.svg"
  64482. }
  64483. },
  64484. },
  64485. [
  64486. {
  64487. name: "Normal",
  64488. height: math.unit(18 + 4/12, "feet"),
  64489. default: true
  64490. },
  64491. ]
  64492. ))
  64493. characterMakers.push(() => makeCharacter(
  64494. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64495. {
  64496. front: {
  64497. height: math.unit(7 + 6/12, "feet"),
  64498. weight: math.unit(300, "lb"),
  64499. name: "Front",
  64500. image: {
  64501. source: "./media/characters/rain/front.svg",
  64502. extra: 2955/2698,
  64503. bottom: 235/3190
  64504. }
  64505. },
  64506. dressed: {
  64507. height: math.unit(7 + 6/12, "feet"),
  64508. weight: math.unit(300, "lb"),
  64509. name: "Dressed",
  64510. image: {
  64511. source: "./media/characters/rain/dressed.svg",
  64512. extra: 2783/2572,
  64513. bottom: 430/3213
  64514. }
  64515. },
  64516. },
  64517. [
  64518. {
  64519. name: "Normal",
  64520. height: math.unit(7 + 6/12, "feet"),
  64521. default: true
  64522. },
  64523. {
  64524. name: "Macro",
  64525. height: math.unit(200, "feet")
  64526. },
  64527. {
  64528. name: "Macro+",
  64529. height: math.unit(500, "feet")
  64530. },
  64531. {
  64532. name: "Megamacro",
  64533. height: math.unit(5, "miles")
  64534. },
  64535. ]
  64536. ))
  64537. characterMakers.push(() => makeCharacter(
  64538. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64539. {
  64540. taur_side: {
  64541. height: math.unit(3, "meters"),
  64542. name: "Side",
  64543. image: {
  64544. source: "./media/characters/anise/taur-side.svg",
  64545. extra: 1833/926,
  64546. bottom: 134/1967
  64547. },
  64548. form: "taur",
  64549. default: true
  64550. },
  64551. feral_side: {
  64552. height: math.unit(3, "meters"),
  64553. name: "Side",
  64554. image: {
  64555. source: "./media/characters/anise/feral-side.svg",
  64556. extra: 681/349,
  64557. bottom: 26/707
  64558. },
  64559. form: "feral"
  64560. },
  64561. },
  64562. [
  64563. {
  64564. name: "Normal",
  64565. height: math.unit(3, "meters"),
  64566. default: true,
  64567. allForms: true
  64568. },
  64569. ],
  64570. {
  64571. "taur": {
  64572. name: "Taur",
  64573. default: true
  64574. },
  64575. "feral": {
  64576. name: "Feral",
  64577. },
  64578. }
  64579. ))
  64580. characterMakers.push(() => makeCharacter(
  64581. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64582. {
  64583. front: {
  64584. height: math.unit(1.9, "meters"),
  64585. weight: math.unit(75, "kg"),
  64586. name: "Front",
  64587. image: {
  64588. source: "./media/characters/sarina/front.svg",
  64589. extra: 1275/1200,
  64590. bottom: 49/1324
  64591. }
  64592. },
  64593. back: {
  64594. height: math.unit(1.9, "meters"),
  64595. weight: math.unit(75, "kg"),
  64596. name: "Back",
  64597. image: {
  64598. source: "./media/characters/sarina/back.svg",
  64599. extra: 1279/1209,
  64600. bottom: 14/1293
  64601. }
  64602. },
  64603. dressed: {
  64604. height: math.unit(1.9, "meters"),
  64605. weight: math.unit(75, "kg"),
  64606. name: "Dressed",
  64607. image: {
  64608. source: "./media/characters/sarina/dressed.svg",
  64609. extra: 1256/1187,
  64610. bottom: 56/1312
  64611. }
  64612. },
  64613. paw: {
  64614. height: math.unit(0.57, "feet"),
  64615. name: "Paw",
  64616. image: {
  64617. source: "./media/characters/sarina/paw.svg"
  64618. }
  64619. },
  64620. toering: {
  64621. height: math.unit(0.27, "feet"),
  64622. name: "Toering",
  64623. image: {
  64624. source: "./media/characters/sarina/toering.svg"
  64625. }
  64626. },
  64627. },
  64628. [
  64629. {
  64630. name: "Incognito",
  64631. height: math.unit(1.9, "meters")
  64632. },
  64633. {
  64634. name: "Home Size",
  64635. height: math.unit(160, "meters"),
  64636. default: true
  64637. },
  64638. {
  64639. name: "Mega",
  64640. height: math.unit(50, "km")
  64641. },
  64642. {
  64643. name: "Small Giga",
  64644. height: math.unit(250, "km")
  64645. },
  64646. {
  64647. name: "Giga (Preferred Size)",
  64648. height: math.unit(3000, "km")
  64649. },
  64650. {
  64651. name: "Terra",
  64652. height: math.unit(40000, "km")
  64653. },
  64654. {
  64655. name: "Terra+",
  64656. height: math.unit(400000, "km")
  64657. },
  64658. {
  64659. name: "Solar",
  64660. height: math.unit(35e6, "km")
  64661. },
  64662. {
  64663. name: "Galactic",
  64664. height: math.unit(648106, "parsecs")
  64665. },
  64666. {
  64667. name: "Universal",
  64668. height: math.unit(7, "universes")
  64669. },
  64670. {
  64671. name: "Universal+",
  64672. height: math.unit(30, "universes")
  64673. },
  64674. ]
  64675. ))
  64676. characterMakers.push(() => makeCharacter(
  64677. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64678. {
  64679. front: {
  64680. height: math.unit(5 + 6/12, "feet"),
  64681. name: "Front",
  64682. image: {
  64683. source: "./media/characters/sifray/front.svg",
  64684. extra: 722/691,
  64685. bottom: 64/786
  64686. }
  64687. },
  64688. },
  64689. [
  64690. {
  64691. name: "Normal",
  64692. height: math.unit(5 + 6/12, "feet"),
  64693. default: true
  64694. },
  64695. ]
  64696. ))
  64697. characterMakers.push(() => makeCharacter(
  64698. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64699. {
  64700. side: {
  64701. height: math.unit(2.64, "feet"),
  64702. weight: math.unit(100, "lb"),
  64703. preyCapacity: math.unit(3, "people"),
  64704. name: "Side",
  64705. image: {
  64706. source: "./media/characters/spots/side.svg",
  64707. extra: 1859/977,
  64708. bottom: 19/1878
  64709. },
  64710. extraAttributes: {
  64711. "preyPerMinute": {
  64712. name: "Prey Per Minute",
  64713. power: 3,
  64714. type: "volume",
  64715. base: math.unit(6, "people"),
  64716. defaultUnit: "people"
  64717. },
  64718. "preyPerDay": {
  64719. name: "Prey Per Day",
  64720. power: 3,
  64721. type: "volume",
  64722. base: math.unit(6 * 60 * 24, "people"),
  64723. defaultUnit: "people"
  64724. },
  64725. }
  64726. },
  64727. },
  64728. [
  64729. {
  64730. name: "Normal",
  64731. height: math.unit(2.64, "feet"),
  64732. default: true
  64733. },
  64734. ]
  64735. ))
  64736. characterMakers.push(() => makeCharacter(
  64737. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64738. {
  64739. front: {
  64740. height: math.unit(29 + 11/12, "feet"),
  64741. weight: math.unit(40, "tons"),
  64742. name: "Front",
  64743. image: {
  64744. source: "./media/characters/mona/front.svg",
  64745. extra: 1257/1116,
  64746. bottom: 34/1291
  64747. }
  64748. },
  64749. },
  64750. [
  64751. {
  64752. name: "Normal",
  64753. height: math.unit(29 + 11/12, "feet"),
  64754. default: true
  64755. },
  64756. ]
  64757. ))
  64758. characterMakers.push(() => makeCharacter(
  64759. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  64760. {
  64761. front: {
  64762. height: math.unit(15, "feet"),
  64763. weight: math.unit(3000, "kg"),
  64764. preyCapacity: math.unit(5, "people"),
  64765. name: "Front",
  64766. image: {
  64767. source: "./media/characters/frostfire/front.svg",
  64768. extra: 675/558,
  64769. bottom: 73/748
  64770. }
  64771. },
  64772. side: {
  64773. height: math.unit(15, "feet"),
  64774. weight: math.unit(3000, "kg"),
  64775. preyCapacity: math.unit(5, "people"),
  64776. name: "Side",
  64777. image: {
  64778. source: "./media/characters/frostfire/side.svg",
  64779. extra: 687/585,
  64780. bottom: 50/737
  64781. }
  64782. },
  64783. back: {
  64784. height: math.unit(15, "feet"),
  64785. weight: math.unit(3000, "kg"),
  64786. preyCapacity: math.unit(5, "people"),
  64787. name: "Back",
  64788. image: {
  64789. source: "./media/characters/frostfire/back.svg",
  64790. extra: 707/607,
  64791. bottom: 16/723
  64792. }
  64793. },
  64794. head: {
  64795. height: math.unit(9.35, "feet"),
  64796. name: "Head",
  64797. image: {
  64798. source: "./media/characters/frostfire/head.svg"
  64799. }
  64800. },
  64801. maw: {
  64802. height: math.unit(3.32, "feet"),
  64803. name: "Maw",
  64804. image: {
  64805. source: "./media/characters/frostfire/maw.svg"
  64806. }
  64807. },
  64808. hand: {
  64809. height: math.unit(3.7, "feet"),
  64810. name: "Hand",
  64811. image: {
  64812. source: "./media/characters/frostfire/hand.svg"
  64813. }
  64814. },
  64815. paw: {
  64816. height: math.unit(5.8, "feet"),
  64817. name: "Paw",
  64818. image: {
  64819. source: "./media/characters/frostfire/paw.svg"
  64820. }
  64821. },
  64822. },
  64823. [
  64824. {
  64825. name: "Normal",
  64826. height: math.unit(15, "feet"),
  64827. default: true
  64828. },
  64829. ]
  64830. ))
  64831. characterMakers.push(() => makeCharacter(
  64832. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  64833. {
  64834. front: {
  64835. height: math.unit(5 + 2/12, "feet"),
  64836. weight: math.unit(122, "lb"),
  64837. name: "Front",
  64838. image: {
  64839. source: "./media/characters/valeroo/front.svg",
  64840. extra: 1789/1534,
  64841. bottom: 66/1855
  64842. }
  64843. },
  64844. back: {
  64845. height: math.unit(5 + 2/12, "feet"),
  64846. weight: math.unit(122, "lb"),
  64847. name: "Back",
  64848. image: {
  64849. source: "./media/characters/valeroo/back.svg",
  64850. extra: 1848/1588,
  64851. bottom: 68/1916
  64852. }
  64853. },
  64854. head: {
  64855. height: math.unit(1.87, "feet"),
  64856. name: "Head",
  64857. image: {
  64858. source: "./media/characters/valeroo/head.svg"
  64859. }
  64860. },
  64861. hand: {
  64862. height: math.unit(0.82, "feet"),
  64863. name: "Hand",
  64864. image: {
  64865. source: "./media/characters/valeroo/hand.svg"
  64866. }
  64867. },
  64868. foot: {
  64869. height: math.unit(2.42, "feet"),
  64870. name: "Foot",
  64871. image: {
  64872. source: "./media/characters/valeroo/foot.svg"
  64873. }
  64874. },
  64875. },
  64876. [
  64877. {
  64878. name: "Normal",
  64879. height: math.unit(5 + 2/12, "feet"),
  64880. default: true
  64881. },
  64882. ]
  64883. ))
  64884. characterMakers.push(() => makeCharacter(
  64885. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  64886. {
  64887. front: {
  64888. height: math.unit(11 + 3/12, "feet"),
  64889. name: "Front",
  64890. image: {
  64891. source: "./media/characters/corrin/front.svg",
  64892. extra: 665/597,
  64893. bottom: 74/739
  64894. }
  64895. },
  64896. },
  64897. [
  64898. {
  64899. name: "Standard",
  64900. height: math.unit(11 + 3/12, "feet"),
  64901. default: true
  64902. },
  64903. {
  64904. name: "The Boss",
  64905. height: math.unit(110, "feet")
  64906. },
  64907. {
  64908. name: "Shipbreaker",
  64909. height: math.unit(38, "km")
  64910. },
  64911. ]
  64912. ))
  64913. characterMakers.push(() => makeCharacter(
  64914. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  64915. {
  64916. front: {
  64917. height: math.unit(10, "feet"),
  64918. weight: math.unit(1750, "lb"),
  64919. name: "Front",
  64920. image: {
  64921. source: "./media/characters/kiba-ulrich/front.svg",
  64922. extra: 1037/973,
  64923. bottom: 36/1073
  64924. }
  64925. },
  64926. },
  64927. [
  64928. {
  64929. name: "Normal",
  64930. height: math.unit(10, "feet"),
  64931. default: true
  64932. },
  64933. {
  64934. name: "Minimacro",
  64935. height: math.unit(20, "feet")
  64936. },
  64937. {
  64938. name: "Macro",
  64939. height: math.unit(200, "feet")
  64940. },
  64941. {
  64942. name: "Megamacro",
  64943. height: math.unit(22500, "feet")
  64944. },
  64945. {
  64946. name: "Gigamacro",
  64947. height: math.unit(2700, "miles")
  64948. },
  64949. {
  64950. name: "Teramacro",
  64951. height: math.unit(10000, "miles")
  64952. },
  64953. ]
  64954. ))
  64955. characterMakers.push(() => makeCharacter(
  64956. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  64957. {
  64958. gryphon_front: {
  64959. height: math.unit(220, "cm"),
  64960. weight: math.unit(160, "kg"),
  64961. name: "Front",
  64962. image: {
  64963. source: "./media/characters/ceanoth/gryphon-front.svg",
  64964. extra: 616/552,
  64965. bottom: 33/649
  64966. },
  64967. form: "gryphon",
  64968. default: true
  64969. },
  64970. },
  64971. [
  64972. {
  64973. name: "Normal",
  64974. height: math.unit(220, "cm"),
  64975. form: "gryphon",
  64976. default: true
  64977. },
  64978. ],
  64979. {
  64980. "gryphon": {
  64981. name: "Grpyhon",
  64982. default: true
  64983. },
  64984. }
  64985. ))
  64986. characterMakers.push(() => makeCharacter(
  64987. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  64988. {
  64989. dressed: {
  64990. height: math.unit(2.2 * 0.79, "meters"),
  64991. weight: math.unit(0.5, "tonnes"),
  64992. name: "Dressed",
  64993. image: {
  64994. source: "./media/characters/vanadiya-athelya/dressed.svg",
  64995. extra: 665/315,
  64996. bottom: 106/771
  64997. },
  64998. extraAttributes: {
  64999. "bodyLength": {
  65000. name: "Body Length",
  65001. power: 1,
  65002. type: "length",
  65003. base: math.unit(2.5, "meters")
  65004. },
  65005. "tailLength": {
  65006. name: "Tail Length",
  65007. power: 1,
  65008. type: "length",
  65009. base: math.unit(4.5, "meters")
  65010. },
  65011. "wingspan": {
  65012. name: "Wingspan",
  65013. power: 1,
  65014. type: "length",
  65015. base: math.unit(6, "meters")
  65016. },
  65017. "taurStomachCapacity": {
  65018. name: "Taur Stomach Capacity",
  65019. power: 3,
  65020. type: "volume",
  65021. base: math.unit(4, "people"),
  65022. defaultUnit: "people"
  65023. },
  65024. "anthroStomachCapacity": {
  65025. name: "Anthro Stomach Capacity",
  65026. power: 3,
  65027. type: "volume",
  65028. base: math.unit(1, "people"),
  65029. defaultUnit: "people"
  65030. },
  65031. }
  65032. },
  65033. nude: {
  65034. height: math.unit(2.2 * 0.79, "meters"),
  65035. weight: math.unit(0.5, "tonnes"),
  65036. name: "Nude",
  65037. image: {
  65038. source: "./media/characters/vanadiya-athelya/nude.svg",
  65039. extra: 665/315,
  65040. bottom: 106/771
  65041. },
  65042. extraAttributes: {
  65043. "bodyLength": {
  65044. name: "Body Length",
  65045. power: 1,
  65046. type: "length",
  65047. base: math.unit(2.5, "meters")
  65048. },
  65049. "tailLength": {
  65050. name: "Tail Length",
  65051. power: 1,
  65052. type: "length",
  65053. base: math.unit(4.5, "meters")
  65054. },
  65055. "wingspan": {
  65056. name: "Wingspan",
  65057. power: 1,
  65058. type: "length",
  65059. base: math.unit(6, "meters")
  65060. },
  65061. "taurStomachCapacity": {
  65062. name: "Taur Stomach Capacity",
  65063. power: 3,
  65064. type: "volume",
  65065. base: math.unit(4, "people"),
  65066. defaultUnit: "people"
  65067. },
  65068. "anthroStomachCapacity": {
  65069. name: "Anthro Stomach Capacity",
  65070. power: 3,
  65071. type: "volume",
  65072. base: math.unit(1, "people"),
  65073. defaultUnit: "people"
  65074. },
  65075. }
  65076. },
  65077. },
  65078. [
  65079. {
  65080. name: "Handheld",
  65081. height: math.unit(0.79 * 0.06, "meters")
  65082. },
  65083. {
  65084. name: "Mini",
  65085. height: math.unit(0.79 * 0.7, "meters")
  65086. },
  65087. {
  65088. name: "Short",
  65089. height: math.unit(0.79 * 1.4, "meters")
  65090. },
  65091. {
  65092. name: "Imposing",
  65093. height: math.unit(0.79 * 2.2, "meters"),
  65094. default: true
  65095. },
  65096. {
  65097. name: "Big",
  65098. height: math.unit(0.79 * 3.8, "meters")
  65099. },
  65100. {
  65101. name: "Giant",
  65102. height: math.unit(0.79 * 6.7, "meters")
  65103. },
  65104. {
  65105. name: "Airliner",
  65106. height: math.unit(0.79 * 64, "meters")
  65107. },
  65108. {
  65109. name: "Skyscraper",
  65110. height: math.unit(0.79 * 220, "meters")
  65111. },
  65112. {
  65113. name: "Mountain",
  65114. height: math.unit(0.79 * 3.6, "km")
  65115. },
  65116. {
  65117. name: "Spacescraper",
  65118. height: math.unit(0.79 * 70, "km")
  65119. },
  65120. {
  65121. name: "Continental",
  65122. height: math.unit(0.79 * 1290, "km")
  65123. },
  65124. {
  65125. name: "Moon",
  65126. height: math.unit(0.79 * 32200, "km")
  65127. },
  65128. {
  65129. name: "Planetary",
  65130. height: math.unit(0.79 * 145000, "km")
  65131. },
  65132. {
  65133. name: "Stellar",
  65134. height: math.unit(0.79 * 19e6, "km")
  65135. },
  65136. {
  65137. name: "Solar",
  65138. height: math.unit(0.79 * 40, "AU")
  65139. },
  65140. {
  65141. name: "Intersteller",
  65142. height: math.unit(0.79 * 3, "lightyears")
  65143. },
  65144. {
  65145. name: "Star Cluster",
  65146. height: math.unit(0.79 * 80, "lightyears")
  65147. },
  65148. {
  65149. name: "Ecumenical",
  65150. height: math.unit(0.79 * 2e3, "lightyears")
  65151. },
  65152. {
  65153. name: "Galactic",
  65154. height: math.unit(0.79 * 175000, "lightyears")
  65155. },
  65156. {
  65157. name: "Galaxy Cluster",
  65158. height: math.unit(0.79 * 25e6, "lightyears")
  65159. },
  65160. ]
  65161. ))
  65162. characterMakers.push(() => makeCharacter(
  65163. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65164. {
  65165. front: {
  65166. height: math.unit(6 + 2/12, "feet"),
  65167. weight: math.unit(160, "lb"),
  65168. name: "Front",
  65169. image: {
  65170. source: "./media/characters/yana-amelin/front.svg",
  65171. extra: 1413/1295,
  65172. bottom: 42/1455
  65173. }
  65174. },
  65175. back: {
  65176. height: math.unit(6 + 2/12, "feet"),
  65177. weight: math.unit(160, "lb"),
  65178. name: "Back",
  65179. image: {
  65180. source: "./media/characters/yana-amelin/back.svg",
  65181. extra: 1424/1310,
  65182. bottom: 24/1448
  65183. }
  65184. },
  65185. paws: {
  65186. height: math.unit(1.48, "feet"),
  65187. name: "Paws",
  65188. image: {
  65189. source: "./media/characters/yana-amelin/paws.svg",
  65190. extra: 304/304,
  65191. bottom: 49/353
  65192. }
  65193. },
  65194. },
  65195. [
  65196. {
  65197. name: "Micro",
  65198. height: math.unit(4, "inches")
  65199. },
  65200. {
  65201. name: "Normal",
  65202. height: math.unit(6 + 2/12, "feet"),
  65203. default: true
  65204. },
  65205. {
  65206. name: "Minimacro",
  65207. height: math.unit(20, "feet")
  65208. },
  65209. {
  65210. name: "Macro",
  65211. height: math.unit(70, "feet")
  65212. },
  65213. ]
  65214. ))
  65215. characterMakers.push(() => makeCharacter(
  65216. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65217. {
  65218. frontNsfw: {
  65219. height: math.unit(2.48, "meters"),
  65220. weight: math.unit(112, "kg"),
  65221. name: "Front (NSFW)",
  65222. image: {
  65223. source: "./media/characters/titania/front-nsfw.svg",
  65224. extra: 1302/1232,
  65225. bottom: 90/1392
  65226. }
  65227. },
  65228. backNsfw: {
  65229. height: math.unit(2.48, "meters"),
  65230. weight: math.unit(112, "kg"),
  65231. name: "Back (NSFW)",
  65232. image: {
  65233. source: "./media/characters/titania/back-nsfw.svg",
  65234. extra: 1355/1288,
  65235. bottom: 18/1373
  65236. }
  65237. },
  65238. frontSfw: {
  65239. height: math.unit(2.48, "meters"),
  65240. weight: math.unit(112, "kg"),
  65241. name: "Front (SFW)",
  65242. image: {
  65243. source: "./media/characters/titania/front-sfw.svg",
  65244. extra: 1302/1232,
  65245. bottom: 90/1392
  65246. }
  65247. },
  65248. backSfw: {
  65249. height: math.unit(2.48, "meters"),
  65250. weight: math.unit(112, "kg"),
  65251. name: "Back (SFW)",
  65252. image: {
  65253. source: "./media/characters/titania/back-sfw.svg",
  65254. extra: 1355/1288,
  65255. bottom: 18/1373
  65256. }
  65257. },
  65258. head: {
  65259. height: math.unit(2.06, "feet"),
  65260. name: "Head",
  65261. image: {
  65262. source: "./media/characters/titania/head.svg"
  65263. }
  65264. },
  65265. maw: {
  65266. height: math.unit(0.8, "feet"),
  65267. name: "Maw",
  65268. image: {
  65269. source: "./media/characters/titania/maw.svg"
  65270. }
  65271. },
  65272. foot: {
  65273. height: math.unit(1.65, "feet"),
  65274. name: "Foot",
  65275. image: {
  65276. source: "./media/characters/titania/foot.svg"
  65277. }
  65278. },
  65279. nethers: {
  65280. height: math.unit(1.7, "feet"),
  65281. name: "Nethers",
  65282. image: {
  65283. source: "./media/characters/titania/nethers.svg"
  65284. }
  65285. },
  65286. },
  65287. [
  65288. {
  65289. name: "Normal",
  65290. height: math.unit(2.48, "meters"),
  65291. default: true
  65292. },
  65293. {
  65294. name: "Mini Macro",
  65295. height: math.unit(248, "meters")
  65296. },
  65297. {
  65298. name: "Macro",
  65299. height: math.unit(620, "meters")
  65300. },
  65301. {
  65302. name: "Mega Macro",
  65303. height: math.unit(1860, "meters")
  65304. },
  65305. ]
  65306. ))
  65307. characterMakers.push(() => makeCharacter(
  65308. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65309. {
  65310. front: {
  65311. height: math.unit(5 + 9/12, "feet"),
  65312. weight: math.unit(1500, "lb"),
  65313. name: "Front",
  65314. image: {
  65315. source: "./media/characters/tony-gray/front.svg",
  65316. extra: 700/575,
  65317. bottom: 71/771
  65318. }
  65319. },
  65320. },
  65321. [
  65322. {
  65323. name: "Normal",
  65324. height: math.unit(5 + 9/12, "feet"),
  65325. default: true
  65326. },
  65327. ]
  65328. ))
  65329. characterMakers.push(() => makeCharacter(
  65330. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65331. {
  65332. side: {
  65333. height: math.unit(8 + 2/12, "feet"),
  65334. name: "Side",
  65335. image: {
  65336. source: "./media/characters/kelby/side.svg",
  65337. extra: 804/578,
  65338. bottom: 70/874
  65339. },
  65340. form: "regular",
  65341. default: true
  65342. },
  65343. lounging: {
  65344. height: math.unit(12.41, "feet"),
  65345. name: "Lounging",
  65346. image: {
  65347. source: "./media/characters/kelby/lounging.svg"
  65348. },
  65349. form: "regular"
  65350. },
  65351. maw: {
  65352. height: math.unit(5, "feet"),
  65353. name: "Maw",
  65354. image: {
  65355. source: "./media/characters/kelby/maw.svg"
  65356. },
  65357. form: "regular"
  65358. },
  65359. dick: {
  65360. height: math.unit(2.4, "feet"),
  65361. name: "Dick",
  65362. image: {
  65363. source: "./media/characters/kelby/dick.svg"
  65364. },
  65365. form: "regular"
  65366. },
  65367. slit: {
  65368. height: math.unit(1.2, "feet"),
  65369. name: "Slit",
  65370. image: {
  65371. source: "./media/characters/kelby/slit.svg"
  65372. },
  65373. form: "regular"
  65374. },
  65375. chibi: {
  65376. height: math.unit(5, "feet"),
  65377. name: "Chibi",
  65378. image: {
  65379. source: "./media/characters/kelby/chibi.svg",
  65380. extra: 245/200,
  65381. bottom: 43/288
  65382. },
  65383. form: "chibi",
  65384. default: true
  65385. },
  65386. },
  65387. [
  65388. {
  65389. name: "Normal",
  65390. height: math.unit(8 + 2/12, "feet"),
  65391. default: true,
  65392. form: "regular"
  65393. },
  65394. {
  65395. name: "Normal",
  65396. height: math.unit(5, "feet"),
  65397. default: true,
  65398. form: "chibi"
  65399. },
  65400. ],
  65401. {
  65402. "regular": {
  65403. name: "Regular",
  65404. default: true
  65405. },
  65406. "chibi": {
  65407. name: "Chibi",
  65408. },
  65409. }
  65410. ))
  65411. characterMakers.push(() => makeCharacter(
  65412. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65413. {
  65414. front: {
  65415. height: math.unit(7 + 10/12, "feet"),
  65416. weight: math.unit(300, "lb"),
  65417. name: "Front",
  65418. image: {
  65419. source: "./media/characters/elisa-mitchell/front.svg",
  65420. extra: 2562/2355,
  65421. bottom: 62/2624
  65422. }
  65423. },
  65424. maw: {
  65425. height: math.unit(2.37, "feet"),
  65426. name: "Maw",
  65427. image: {
  65428. source: "./media/characters/elisa-mitchell/maw.svg"
  65429. }
  65430. },
  65431. },
  65432. [
  65433. {
  65434. name: "Normal",
  65435. height: math.unit(7 + 10/12, "feet"),
  65436. default: true
  65437. },
  65438. {
  65439. name: "Macro",
  65440. height: math.unit(1490, "feet"),
  65441. default: true
  65442. },
  65443. ]
  65444. ))
  65445. characterMakers.push(() => makeCharacter(
  65446. { name: "Camia \"Vertigo\" Zott", species: ["vampire-bat", "kaiju"], tags: ["anthro"] },
  65447. {
  65448. front: {
  65449. height: math.unit(122, "cm"),
  65450. weight: math.unit(40, "lb"),
  65451. name: "Front",
  65452. image: {
  65453. source: "./media/characters/camia-vertigo-zott/front.svg",
  65454. extra: 2112/1902,
  65455. bottom: 21/2133
  65456. }
  65457. },
  65458. },
  65459. [
  65460. {
  65461. name: "Base Height",
  65462. height: math.unit(122, "cm")
  65463. },
  65464. {
  65465. name: "Macro Height",
  65466. height: math.unit(345, "meters"),
  65467. default: true
  65468. },
  65469. ]
  65470. ))
  65471. characterMakers.push(() => makeCharacter(
  65472. { name: "Dianne Elizabeth Heathers", species: ["saint-bernard"], tags: ["anthro"] },
  65473. {
  65474. front: {
  65475. height: math.unit(6 + 3/12, "feet"),
  65476. weight: math.unit(180, "lb"),
  65477. name: "Front",
  65478. image: {
  65479. source: "./media/characters/dianne-elizabeth-heathers/front.svg",
  65480. extra: 2580/2457,
  65481. bottom: 131/2711
  65482. }
  65483. },
  65484. },
  65485. [
  65486. {
  65487. name: "Normal",
  65488. height: math.unit(6 + 3/12, "feet"),
  65489. default: true
  65490. },
  65491. ]
  65492. ))
  65493. characterMakers.push(() => makeCharacter(
  65494. { name: "Sleeka", species: ["rat"], tags: ["anthro"] },
  65495. {
  65496. front: {
  65497. height: math.unit(165, "cm"),
  65498. weight: math.unit(130, "lb"),
  65499. name: "Front",
  65500. image: {
  65501. source: "./media/characters/sleeka/front.svg",
  65502. extra: 1252/1200,
  65503. bottom: 46/1298
  65504. }
  65505. },
  65506. },
  65507. [
  65508. {
  65509. name: "Normal",
  65510. height: math.unit(165, "cm")
  65511. },
  65512. {
  65513. name: "Galactic",
  65514. height: math.unit(5.8e22, "meters"),
  65515. default: true
  65516. },
  65517. {
  65518. name: "Universal",
  65519. height: math.unit(1.02e29, "meters")
  65520. },
  65521. ]
  65522. ))
  65523. characterMakers.push(() => makeCharacter(
  65524. { name: "Emily Whitetail", species: ["deer"], tags: ["anthro"] },
  65525. {
  65526. front: {
  65527. height: math.unit(5 + 11/12, "feet"),
  65528. weight: math.unit(145, "lb"),
  65529. name: "Front",
  65530. image: {
  65531. source: "./media/characters/emily-whitetail/front.svg",
  65532. extra: 2510/2280,
  65533. bottom: 128/2638
  65534. }
  65535. },
  65536. },
  65537. [
  65538. {
  65539. name: "Normal",
  65540. height: math.unit(5 + 11/12, "feet")
  65541. },
  65542. {
  65543. name: "Galactic",
  65544. height: math.unit(6.3e22, "meters"),
  65545. default: true
  65546. },
  65547. {
  65548. name: "Universal",
  65549. height: math.unit(1.12e29, "meters")
  65550. },
  65551. ]
  65552. ))
  65553. characterMakers.push(() => makeCharacter(
  65554. { name: "Buck Whitetail", species: ["deer"], tags: ["anthro"] },
  65555. {
  65556. front: {
  65557. height: math.unit(5 + 4/12, "feet"),
  65558. weight: math.unit(110, "lb"),
  65559. name: "Front",
  65560. image: {
  65561. source: "./media/characters/buck-whitetail/front.svg",
  65562. extra: 2430/2186,
  65563. bottom: 125/2555
  65564. }
  65565. },
  65566. },
  65567. [
  65568. {
  65569. name: "Normal",
  65570. height: math.unit(5 + 4/12, "feet")
  65571. },
  65572. {
  65573. name: "Galactic",
  65574. height: math.unit(5.4e22, "meters"),
  65575. default: true
  65576. },
  65577. {
  65578. name: "Universal",
  65579. height: math.unit(9.6e28, "meters")
  65580. },
  65581. ]
  65582. ))
  65583. characterMakers.push(() => makeCharacter(
  65584. { name: "Zoey Frisk", species: ["fox"], tags: ["anthro"] },
  65585. {
  65586. front: {
  65587. height: math.unit(5 + 3/12, "feet"),
  65588. name: "Front",
  65589. image: {
  65590. source: "./media/characters/zoey-frisk/front.svg",
  65591. extra: 2825/2646,
  65592. bottom: 57/2882
  65593. }
  65594. },
  65595. },
  65596. [
  65597. {
  65598. name: "Normal",
  65599. height: math.unit(5 + 3/12, "feet"),
  65600. default: true
  65601. },
  65602. {
  65603. name: "Macro",
  65604. height: math.unit(800, "feet")
  65605. },
  65606. ]
  65607. ))
  65608. characterMakers.push(() => makeCharacter(
  65609. { name: "Dhaeleena M'iar", species: ["siamese-cat"], tags: ["anthro"] },
  65610. {
  65611. front: {
  65612. height: math.unit(210, "cm"),
  65613. weight: math.unit(102, "kg"),
  65614. name: "Front",
  65615. image: {
  65616. source: "./media/characters/dhaeleena-m'iar/front.svg",
  65617. extra: 831/790,
  65618. bottom: 19/850
  65619. }
  65620. },
  65621. },
  65622. [
  65623. {
  65624. name: "Micro",
  65625. height: math.unit(1, "mm")
  65626. },
  65627. {
  65628. name: "Small",
  65629. height: math.unit(1, "cm")
  65630. },
  65631. {
  65632. name: "Short",
  65633. height: math.unit(1, "foot")
  65634. },
  65635. {
  65636. name: "Normal",
  65637. height: math.unit(210, "cm"),
  65638. default: true
  65639. },
  65640. {
  65641. name: "Big",
  65642. height: math.unit(15, "feet")
  65643. },
  65644. {
  65645. name: "Macro",
  65646. height: math.unit(50, "feet")
  65647. },
  65648. ]
  65649. ))
  65650. characterMakers.push(() => makeCharacter(
  65651. { name: "Trouble", species: ["wolf"], tags: ["anthro"] },
  65652. {
  65653. front: {
  65654. height: math.unit(80, "feet"),
  65655. weight: math.unit(410000, "lb"),
  65656. name: "Front",
  65657. image: {
  65658. source: "./media/characters/trouble/front.svg",
  65659. extra: 780/723,
  65660. bottom: 11/791
  65661. },
  65662. extraAttributes: {
  65663. "pawArea": {
  65664. name: "Paw Area",
  65665. power: 2,
  65666. type: "area",
  65667. base: math.unit(49, "feet^2")
  65668. },
  65669. }
  65670. },
  65671. },
  65672. [
  65673. {
  65674. name: "Normal",
  65675. height: math.unit(80, "feet"),
  65676. default: true
  65677. },
  65678. ]
  65679. ))
  65680. characterMakers.push(() => makeCharacter(
  65681. { name: "Bastion Aralus", species: ["wolf"], tags: ["anthro"] },
  65682. {
  65683. front: {
  65684. height: math.unit(5 + 7/12, "feet"),
  65685. weight: math.unit(140, "lb"),
  65686. name: "Front",
  65687. image: {
  65688. source: "./media/characters/bastion-aralus/front.svg",
  65689. extra: 1122/1045,
  65690. bottom: 24/1146
  65691. }
  65692. },
  65693. back: {
  65694. height: math.unit(5 + 7/12, "feet"),
  65695. weight: math.unit(140, "lb"),
  65696. name: "Back",
  65697. image: {
  65698. source: "./media/characters/bastion-aralus/back.svg",
  65699. extra: 1158/1078,
  65700. bottom: 39/1197
  65701. }
  65702. },
  65703. dick: {
  65704. height: math.unit(1.16, "feet"),
  65705. name: "Dick",
  65706. image: {
  65707. source: "./media/characters/bastion-aralus/dick.svg"
  65708. }
  65709. },
  65710. },
  65711. [
  65712. {
  65713. name: "Micro",
  65714. height: math.unit(1, "mm")
  65715. },
  65716. {
  65717. name: "Normal",
  65718. height: math.unit(5 + 7/12, "feet"),
  65719. default: true
  65720. },
  65721. {
  65722. name: "Macro",
  65723. height: math.unit(57, "feet")
  65724. },
  65725. ]
  65726. ))
  65727. characterMakers.push(() => makeCharacter(
  65728. { name: "Midnight Yamikidate", species: ["dragon"], tags: ["anthro"] },
  65729. {
  65730. sona_front: {
  65731. height: math.unit(6, "feet"),
  65732. weight: math.unit(350, "lb"),
  65733. name: "Front",
  65734. image: {
  65735. source: "./media/characters/midnight-yamikidate/sona-front.svg",
  65736. extra: 1099/1005,
  65737. bottom: 22/1121
  65738. },
  65739. form: "sona",
  65740. default: true
  65741. },
  65742. sona_side: {
  65743. height: math.unit(6, "feet"),
  65744. weight: math.unit(350, "lb"),
  65745. name: "Side",
  65746. image: {
  65747. source: "./media/characters/midnight-yamikidate/sona-side.svg",
  65748. extra: 1075/1017,
  65749. bottom: 20/1095
  65750. },
  65751. form: "sona",
  65752. },
  65753. character_front: {
  65754. height: math.unit(6, "feet"),
  65755. weight: math.unit(300, "lb"),
  65756. name: "Front",
  65757. image: {
  65758. source: "./media/characters/midnight-yamikidate/character-front.svg",
  65759. extra: 1099/1005,
  65760. bottom: 22/1121
  65761. },
  65762. form: "character",
  65763. default: true
  65764. },
  65765. character_side: {
  65766. height: math.unit(6, "feet"),
  65767. weight: math.unit(300, "lb"),
  65768. name: "Side",
  65769. image: {
  65770. source: "./media/characters/midnight-yamikidate/character-side.svg",
  65771. extra: 1075/1017,
  65772. bottom: 20/1095
  65773. },
  65774. form: "character",
  65775. },
  65776. },
  65777. [
  65778. {
  65779. name: "Normal",
  65780. height: math.unit(500, "feet"),
  65781. default: true,
  65782. form: "sona"
  65783. },
  65784. {
  65785. name: "Normal",
  65786. height: math.unit(50, "feet"),
  65787. default: true,
  65788. form: "character"
  65789. },
  65790. ],
  65791. {
  65792. "sona": {
  65793. name: "Sona",
  65794. default: true
  65795. },
  65796. "character": {
  65797. name: "Character",
  65798. },
  65799. }
  65800. ))
  65801. characterMakers.push(() => makeCharacter(
  65802. { name: "Hood", species: ["raptor"], tags: ["anthro"] },
  65803. {
  65804. front: {
  65805. height: math.unit(5 + 4/12, "feet"),
  65806. weight: math.unit(58, "kg"),
  65807. name: "Front",
  65808. image: {
  65809. source: "./media/characters/hood/front.svg",
  65810. extra: 1474/1309,
  65811. bottom: 0/1474
  65812. }
  65813. },
  65814. },
  65815. [
  65816. {
  65817. name: "Normal",
  65818. height: math.unit(5 + 4/12, "feet"),
  65819. default: true
  65820. },
  65821. ]
  65822. ))
  65823. characterMakers.push(() => makeCharacter(
  65824. { name: "Rena", species: ["wolf"], tags: ["anthro"] },
  65825. {
  65826. front: {
  65827. height: math.unit(8 + 2/12, "feet"),
  65828. name: "Front",
  65829. image: {
  65830. source: "./media/characters/rena/front.svg",
  65831. extra: 1768/1632,
  65832. bottom: 57/1825
  65833. }
  65834. },
  65835. },
  65836. [
  65837. {
  65838. name: "Normal",
  65839. height: math.unit(8 + 2/12, "feet"),
  65840. default: true
  65841. },
  65842. ]
  65843. ))
  65844. characterMakers.push(() => makeCharacter(
  65845. { name: "Taylor (Dilophosaurus)", species: ["dilophosaurus"], tags: ["anthro"] },
  65846. {
  65847. front: {
  65848. height: math.unit(5 + 3/12, "feet"),
  65849. name: "Front",
  65850. image: {
  65851. source: "./media/characters/taylor-dilophosaurus/front.svg",
  65852. extra: 1209/1159,
  65853. bottom: 33/1242
  65854. }
  65855. },
  65856. maw: {
  65857. height: math.unit(1.75, "feet"),
  65858. name: "Maw",
  65859. image: {
  65860. source: "./media/characters/taylor-dilophosaurus/maw.svg"
  65861. }
  65862. },
  65863. },
  65864. [
  65865. {
  65866. name: "Micro",
  65867. height: math.unit(3, "inches")
  65868. },
  65869. {
  65870. name: "Regular",
  65871. height: math.unit(5 + 3/12, "feet"),
  65872. default: true
  65873. },
  65874. {
  65875. name: "Imagined",
  65876. height: math.unit(90, "meters")
  65877. },
  65878. ]
  65879. ))
  65880. characterMakers.push(() => makeCharacter(
  65881. { name: "Suma Roo", species: ["nagainini"], tags: ["naga"] },
  65882. {
  65883. front: {
  65884. height: math.unit(11.75, "feet"),
  65885. weight: math.unit(4346, "lb"),
  65886. preyCapacity: math.unit(20, "people"),
  65887. name: "Front",
  65888. image: {
  65889. source: "./media/characters/suma-roo/front.svg",
  65890. extra: 1370/1365,
  65891. bottom: 164/1534
  65892. }
  65893. },
  65894. },
  65895. [
  65896. {
  65897. name: "Normal",
  65898. height: math.unit(11.75, "feet"),
  65899. default: true
  65900. },
  65901. ]
  65902. ))
  65903. characterMakers.push(() => makeCharacter(
  65904. { name: "Hymmanios", species: ["cat"], tags: ["anthro"] },
  65905. {
  65906. front: {
  65907. height: math.unit(2.35, "meters"),
  65908. weight: math.unit(240, "kg"),
  65909. name: "Front",
  65910. image: {
  65911. source: "./media/characters/hymmanios/front.svg",
  65912. extra: 2032/1994,
  65913. bottom: 194/2226
  65914. }
  65915. },
  65916. },
  65917. [
  65918. {
  65919. name: "Normal",
  65920. height: math.unit(2.35, "meters"),
  65921. default: true
  65922. },
  65923. {
  65924. name: "Macro",
  65925. height: math.unit(75, "meters")
  65926. },
  65927. {
  65928. name: "Mega",
  65929. height: math.unit(1250, "meters")
  65930. },
  65931. {
  65932. name: "Giga",
  65933. height: math.unit(235000, "meters")
  65934. },
  65935. ]
  65936. ))
  65937. characterMakers.push(() => makeCharacter(
  65938. { name: "Azalea", species: ["kaizleon"], tags: ["anthro"] },
  65939. {
  65940. front: {
  65941. height: math.unit(134, "feet"),
  65942. weight: math.unit(932.635, "tons"),
  65943. name: "Front",
  65944. image: {
  65945. source: "./media/characters/azalea/front.svg",
  65946. extra: 703/687,
  65947. bottom: 75/778
  65948. }
  65949. },
  65950. },
  65951. [
  65952. {
  65953. name: "Normal",
  65954. height: math.unit(134, "feet"),
  65955. default: true
  65956. },
  65957. ]
  65958. ))
  65959. //characters
  65960. function makeCharacters() {
  65961. const results = [];
  65962. characterMakers.forEach(character => {
  65963. results.push(character());
  65964. });
  65965. return results;
  65966. }