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

65360 行
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. }
  2395. //species
  2396. function getSpeciesInfo(speciesList) {
  2397. let result = new Set();
  2398. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2399. result.add(entry)
  2400. });
  2401. return Array.from(result);
  2402. };
  2403. function getSpeciesInfoHelper(species) {
  2404. if (!speciesData[species]) {
  2405. console.warn(species + " doesn't exist");
  2406. return [];
  2407. }
  2408. if (speciesData[species].parents) {
  2409. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2410. } else {
  2411. return [species];
  2412. }
  2413. }
  2414. characterMakers.push(() => makeCharacter(
  2415. {
  2416. name: "Fen",
  2417. species: ["crux"],
  2418. description: {
  2419. title: "Bio",
  2420. text: "Very furry. Sheds on everything."
  2421. },
  2422. tags: [
  2423. "anthro",
  2424. "goo"
  2425. ]
  2426. },
  2427. {
  2428. front: {
  2429. height: math.unit(12, "feet"),
  2430. weight: math.unit(2400, "lb"),
  2431. preyCapacity: math.unit(1, "people"),
  2432. name: "Front",
  2433. image: {
  2434. source: "./media/characters/fen/front.svg",
  2435. extra: 1804/1562,
  2436. bottom: 205/2009
  2437. },
  2438. extraAttributes: {
  2439. pawSize: {
  2440. name: "Paw Size",
  2441. power: 2,
  2442. type: "area",
  2443. base: math.unit(0.35, "m^2")
  2444. }
  2445. }
  2446. },
  2447. diving: {
  2448. height: math.unit(4.9, "meters"),
  2449. weight: math.unit(2400, "lb"),
  2450. name: "Diving",
  2451. image: {
  2452. source: "./media/characters/fen/diving.svg"
  2453. }
  2454. },
  2455. sleeby: {
  2456. height: math.unit(3.45, "meters"),
  2457. weight: math.unit(2400, "lb"),
  2458. name: "Sleeby",
  2459. image: {
  2460. source: "./media/characters/fen/sleeby.svg"
  2461. }
  2462. },
  2463. goo: {
  2464. height: math.unit(12, "feet"),
  2465. weight: math.unit(3600, "lb"),
  2466. volume: math.unit(1000, "liters"),
  2467. preyCapacity: math.unit(6, "people"),
  2468. name: "Goo",
  2469. image: {
  2470. source: "./media/characters/fen/goo.svg",
  2471. extra: 1307/1071,
  2472. bottom: 134/1441
  2473. }
  2474. },
  2475. horror: {
  2476. height: math.unit(13.6, "feet"),
  2477. weight: math.unit(2400, "lb"),
  2478. preyCapacity: math.unit(1, "people"),
  2479. name: "Horror",
  2480. image: {
  2481. source: "./media/characters/fen/horror.svg",
  2482. extra: 893/797,
  2483. bottom: 0/893
  2484. }
  2485. },
  2486. gooNsfw: {
  2487. height: math.unit(12, "feet"),
  2488. weight: math.unit(3750, "lb"),
  2489. volume: math.unit(1000, "liters"),
  2490. preyCapacity: math.unit(6, "people"),
  2491. name: "Goo (NSFW)",
  2492. image: {
  2493. source: "./media/characters/fen/goo-nsfw.svg",
  2494. extra: 1875/1734,
  2495. bottom: 122/1997
  2496. }
  2497. },
  2498. maw: {
  2499. height: math.unit(5.03, "feet"),
  2500. name: "Maw",
  2501. image: {
  2502. source: "./media/characters/fen/maw.svg"
  2503. }
  2504. },
  2505. gooCeiling: {
  2506. height: math.unit(6.6, "feet"),
  2507. weight: math.unit(3000, "lb"),
  2508. volume: math.unit(1000, "liters"),
  2509. preyCapacity: math.unit(6, "people"),
  2510. name: "Maw (Goo)",
  2511. image: {
  2512. source: "./media/characters/fen/goo-maw.svg"
  2513. }
  2514. },
  2515. paw: {
  2516. height: math.unit(3.77, "feet"),
  2517. name: "Paw",
  2518. image: {
  2519. source: "./media/characters/fen/paw.svg"
  2520. },
  2521. extraAttributes: {
  2522. "toeSize": {
  2523. name: "Toe Size",
  2524. power: 2,
  2525. type: "area",
  2526. base: math.unit(0.02875, "m^2")
  2527. },
  2528. "pawSize": {
  2529. name: "Paw Size",
  2530. power: 2,
  2531. type: "area",
  2532. base: math.unit(0.378, "m^2")
  2533. },
  2534. }
  2535. },
  2536. tail: {
  2537. height: math.unit(12.1, "feet"),
  2538. name: "Tail",
  2539. image: {
  2540. source: "./media/characters/fen/tail.svg"
  2541. }
  2542. },
  2543. tailFull: {
  2544. height: math.unit(12.1, "feet"),
  2545. name: "Full Tail",
  2546. image: {
  2547. source: "./media/characters/fen/tail-full.svg"
  2548. }
  2549. },
  2550. back: {
  2551. height: math.unit(12, "feet"),
  2552. weight: math.unit(2400, "lb"),
  2553. name: "Back",
  2554. image: {
  2555. source: "./media/characters/fen/back.svg",
  2556. },
  2557. info: {
  2558. description: {
  2559. mode: "append",
  2560. text: "\n\nHe is not currently looking at you."
  2561. }
  2562. }
  2563. },
  2564. full: {
  2565. height: math.unit(1.85, "meter"),
  2566. weight: math.unit(3200, "lb"),
  2567. preyCapacity: math.unit(3, "people"),
  2568. name: "Full",
  2569. image: {
  2570. source: "./media/characters/fen/full.svg",
  2571. extra: 1133/859,
  2572. bottom: 145/1278
  2573. },
  2574. info: {
  2575. description: {
  2576. mode: "append",
  2577. text: "\n\nMunch."
  2578. }
  2579. }
  2580. },
  2581. gooLounging: {
  2582. height: math.unit(4.53, "feet"),
  2583. weight: math.unit(3000, "lb"),
  2584. preyCapacity: math.unit(6, "people"),
  2585. name: "Goo (Lounging)",
  2586. image: {
  2587. source: "./media/characters/fen/goo-lounging.svg",
  2588. bottom: 116 / 613
  2589. }
  2590. },
  2591. lounging: {
  2592. height: math.unit(10.52, "feet"),
  2593. weight: math.unit(2400, "lb"),
  2594. name: "Lounging",
  2595. image: {
  2596. source: "./media/characters/fen/lounging.svg"
  2597. }
  2598. },
  2599. },
  2600. [
  2601. {
  2602. name: "Small",
  2603. height: math.unit(2.2428, "meter")
  2604. },
  2605. {
  2606. name: "Normal",
  2607. height: math.unit(12, "feet"),
  2608. default: true,
  2609. },
  2610. {
  2611. name: "Big",
  2612. height: math.unit(20, "feet")
  2613. },
  2614. {
  2615. name: "Minimacro",
  2616. height: math.unit(40, "feet"),
  2617. info: {
  2618. description: {
  2619. mode: "append",
  2620. text: "\n\nTOO DAMN BIG"
  2621. }
  2622. }
  2623. },
  2624. {
  2625. name: "Macro",
  2626. height: math.unit(100, "feet"),
  2627. info: {
  2628. description: {
  2629. mode: "append",
  2630. text: "\n\nTOO DAMN BIG"
  2631. }
  2632. }
  2633. },
  2634. {
  2635. name: "Megamacro",
  2636. height: math.unit(2, "miles")
  2637. },
  2638. {
  2639. name: "Gigamacro",
  2640. height: math.unit(10, "earths")
  2641. },
  2642. ]
  2643. ))
  2644. characterMakers.push(() => makeCharacter(
  2645. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2646. {
  2647. front: {
  2648. height: math.unit(183, "cm"),
  2649. weight: math.unit(80, "kg"),
  2650. name: "Front",
  2651. image: {
  2652. source: "./media/characters/sofia-fluttertail/front.svg",
  2653. bottom: 0.01,
  2654. extra: 2154 / 2081
  2655. }
  2656. },
  2657. frontAlt: {
  2658. height: math.unit(183, "cm"),
  2659. weight: math.unit(80, "kg"),
  2660. name: "Front (alt)",
  2661. image: {
  2662. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2663. }
  2664. },
  2665. back: {
  2666. height: math.unit(183, "cm"),
  2667. weight: math.unit(80, "kg"),
  2668. name: "Back",
  2669. image: {
  2670. source: "./media/characters/sofia-fluttertail/back.svg"
  2671. }
  2672. },
  2673. kneeling: {
  2674. height: math.unit(125, "cm"),
  2675. weight: math.unit(80, "kg"),
  2676. name: "Kneeling",
  2677. image: {
  2678. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2679. extra: 1033 / 977,
  2680. bottom: 23.7 / 1057
  2681. }
  2682. },
  2683. maw: {
  2684. height: math.unit(183 / 5, "cm"),
  2685. name: "Maw",
  2686. image: {
  2687. source: "./media/characters/sofia-fluttertail/maw.svg"
  2688. }
  2689. },
  2690. mawcloseup: {
  2691. height: math.unit(183 / 5 * 0.41, "cm"),
  2692. name: "Maw (Closeup)",
  2693. image: {
  2694. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2695. }
  2696. },
  2697. paws: {
  2698. height: math.unit(1.17, "feet"),
  2699. name: "Paws",
  2700. image: {
  2701. source: "./media/characters/sofia-fluttertail/paws.svg",
  2702. extra: 851 / 851,
  2703. bottom: 17 / 868
  2704. }
  2705. },
  2706. },
  2707. [
  2708. {
  2709. name: "Normal",
  2710. height: math.unit(1.83, "meter")
  2711. },
  2712. {
  2713. name: "Size Thief",
  2714. height: math.unit(18, "feet")
  2715. },
  2716. {
  2717. name: "50 Foot Collie",
  2718. height: math.unit(50, "feet")
  2719. },
  2720. {
  2721. name: "Macro",
  2722. height: math.unit(96, "feet"),
  2723. default: true
  2724. },
  2725. {
  2726. name: "Megamerger",
  2727. height: math.unit(650, "feet")
  2728. },
  2729. ]
  2730. ))
  2731. characterMakers.push(() => makeCharacter(
  2732. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2733. {
  2734. front: {
  2735. height: math.unit(7, "feet"),
  2736. weight: math.unit(100, "kg"),
  2737. name: "Front",
  2738. image: {
  2739. source: "./media/characters/march/front.svg",
  2740. extra: 1992/1851,
  2741. bottom: 39/2031
  2742. }
  2743. },
  2744. foot: {
  2745. height: math.unit(0.9, "feet"),
  2746. name: "Foot",
  2747. image: {
  2748. source: "./media/characters/march/foot.svg"
  2749. }
  2750. },
  2751. },
  2752. [
  2753. {
  2754. name: "Normal",
  2755. height: math.unit(7.9, "feet")
  2756. },
  2757. {
  2758. name: "Macro",
  2759. height: math.unit(220, "meters")
  2760. },
  2761. {
  2762. name: "Megamacro",
  2763. height: math.unit(2.98, "km"),
  2764. default: true
  2765. },
  2766. {
  2767. name: "Gigamacro",
  2768. height: math.unit(15963, "km")
  2769. },
  2770. {
  2771. name: "Teramacro",
  2772. height: math.unit(2980000000, "km")
  2773. },
  2774. {
  2775. name: "Examacro",
  2776. height: math.unit(250, "parsecs")
  2777. },
  2778. ]
  2779. ))
  2780. characterMakers.push(() => makeCharacter(
  2781. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2782. {
  2783. front: {
  2784. height: math.unit(6, "feet"),
  2785. weight: math.unit(60, "kg"),
  2786. name: "Front",
  2787. image: {
  2788. source: "./media/characters/noir/front.svg",
  2789. extra: 1,
  2790. bottom: 0.032
  2791. }
  2792. },
  2793. },
  2794. [
  2795. {
  2796. name: "Normal",
  2797. height: math.unit(6.6, "feet")
  2798. },
  2799. {
  2800. name: "Macro",
  2801. height: math.unit(500, "feet")
  2802. },
  2803. {
  2804. name: "Megamacro",
  2805. height: math.unit(2.5, "km"),
  2806. default: true
  2807. },
  2808. {
  2809. name: "Gigamacro",
  2810. height: math.unit(22500, "km")
  2811. },
  2812. {
  2813. name: "Teramacro",
  2814. height: math.unit(2500000000, "km")
  2815. },
  2816. {
  2817. name: "Examacro",
  2818. height: math.unit(200, "parsecs")
  2819. },
  2820. ]
  2821. ))
  2822. characterMakers.push(() => makeCharacter(
  2823. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2824. {
  2825. front: {
  2826. height: math.unit(7, "feet"),
  2827. weight: math.unit(100, "kg"),
  2828. name: "Front",
  2829. image: {
  2830. source: "./media/characters/okuri/front.svg",
  2831. extra: 739/665,
  2832. bottom: 39/778
  2833. }
  2834. },
  2835. back: {
  2836. height: math.unit(7, "feet"),
  2837. weight: math.unit(100, "kg"),
  2838. name: "Back",
  2839. image: {
  2840. source: "./media/characters/okuri/back.svg",
  2841. extra: 734/653,
  2842. bottom: 13/747
  2843. }
  2844. },
  2845. sitting: {
  2846. height: math.unit(2.95, "feet"),
  2847. weight: math.unit(100, "kg"),
  2848. name: "Sitting",
  2849. image: {
  2850. source: "./media/characters/okuri/sitting.svg",
  2851. extra: 370/318,
  2852. bottom: 99/469
  2853. }
  2854. },
  2855. },
  2856. [
  2857. {
  2858. name: "Smallest",
  2859. height: math.unit(5 + 2/12, "feet")
  2860. },
  2861. {
  2862. name: "Smaller",
  2863. height: math.unit(300, "feet")
  2864. },
  2865. {
  2866. name: "Small",
  2867. height: math.unit(1000, "feet")
  2868. },
  2869. {
  2870. name: "Macro",
  2871. height: math.unit(1, "mile")
  2872. },
  2873. {
  2874. name: "Mega Macro (Small)",
  2875. height: math.unit(20, "km")
  2876. },
  2877. {
  2878. name: "Mega Macro (Large)",
  2879. height: math.unit(600, "km")
  2880. },
  2881. {
  2882. name: "Giga Macro",
  2883. height: math.unit(10000, "km")
  2884. },
  2885. {
  2886. name: "Normal",
  2887. height: math.unit(577560, "km"),
  2888. default: true
  2889. },
  2890. {
  2891. name: "Large",
  2892. height: math.unit(4, "galaxies")
  2893. },
  2894. {
  2895. name: "Largest",
  2896. height: math.unit(15, "multiverses")
  2897. },
  2898. ]
  2899. ))
  2900. characterMakers.push(() => makeCharacter(
  2901. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2902. {
  2903. front: {
  2904. height: math.unit(7, "feet"),
  2905. weight: math.unit(100, "kg"),
  2906. name: "Front",
  2907. image: {
  2908. source: "./media/characters/manny/front.svg",
  2909. extra: 1,
  2910. bottom: 0.06
  2911. }
  2912. },
  2913. back: {
  2914. height: math.unit(7, "feet"),
  2915. weight: math.unit(100, "kg"),
  2916. name: "Back",
  2917. image: {
  2918. source: "./media/characters/manny/back.svg",
  2919. extra: 1,
  2920. bottom: 0.014
  2921. }
  2922. },
  2923. },
  2924. [
  2925. {
  2926. name: "Normal",
  2927. height: math.unit(7, "feet"),
  2928. },
  2929. {
  2930. name: "Macro",
  2931. height: math.unit(78, "feet"),
  2932. default: true
  2933. },
  2934. {
  2935. name: "Macro+",
  2936. height: math.unit(300, "meters")
  2937. },
  2938. {
  2939. name: "Macro++",
  2940. height: math.unit(2400, "meters")
  2941. },
  2942. {
  2943. name: "Megamacro",
  2944. height: math.unit(5167, "meters")
  2945. },
  2946. {
  2947. name: "Gigamacro",
  2948. height: math.unit(41769, "miles")
  2949. },
  2950. ]
  2951. ))
  2952. characterMakers.push(() => makeCharacter(
  2953. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2954. {
  2955. front: {
  2956. height: math.unit(7, "feet"),
  2957. weight: math.unit(100, "kg"),
  2958. name: "Front",
  2959. image: {
  2960. source: "./media/characters/adake/front-1.svg"
  2961. }
  2962. },
  2963. frontAlt: {
  2964. height: math.unit(7, "feet"),
  2965. weight: math.unit(100, "kg"),
  2966. name: "Front (Alt)",
  2967. image: {
  2968. source: "./media/characters/adake/front-2.svg",
  2969. extra: 1,
  2970. bottom: 0.01
  2971. }
  2972. },
  2973. back: {
  2974. height: math.unit(7, "feet"),
  2975. weight: math.unit(100, "kg"),
  2976. name: "Back",
  2977. image: {
  2978. source: "./media/characters/adake/back.svg",
  2979. }
  2980. },
  2981. kneel: {
  2982. height: math.unit(5.385, "feet"),
  2983. weight: math.unit(100, "kg"),
  2984. name: "Kneeling",
  2985. image: {
  2986. source: "./media/characters/adake/kneel.svg",
  2987. bottom: 0.052
  2988. }
  2989. },
  2990. },
  2991. [
  2992. {
  2993. name: "Normal",
  2994. height: math.unit(7, "feet"),
  2995. },
  2996. {
  2997. name: "Macro",
  2998. height: math.unit(78, "feet"),
  2999. default: true
  3000. },
  3001. {
  3002. name: "Macro+",
  3003. height: math.unit(300, "meters")
  3004. },
  3005. {
  3006. name: "Macro++",
  3007. height: math.unit(2400, "meters")
  3008. },
  3009. {
  3010. name: "Megamacro",
  3011. height: math.unit(5167, "meters")
  3012. },
  3013. {
  3014. name: "Gigamacro",
  3015. height: math.unit(41769, "miles")
  3016. },
  3017. ]
  3018. ))
  3019. characterMakers.push(() => makeCharacter(
  3020. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3021. {
  3022. front: {
  3023. height: math.unit(1.65, "meters"),
  3024. weight: math.unit(50, "kg"),
  3025. name: "Front",
  3026. image: {
  3027. source: "./media/characters/elijah/front.svg",
  3028. extra: 858 / 830,
  3029. bottom: 95.5 / 953.8559
  3030. }
  3031. },
  3032. back: {
  3033. height: math.unit(1.65, "meters"),
  3034. weight: math.unit(50, "kg"),
  3035. name: "Back",
  3036. image: {
  3037. source: "./media/characters/elijah/back.svg",
  3038. extra: 895 / 850,
  3039. bottom: 5.3 / 897.956
  3040. }
  3041. },
  3042. frontNsfw: {
  3043. height: math.unit(1.65, "meters"),
  3044. weight: math.unit(50, "kg"),
  3045. name: "Front (NSFW)",
  3046. image: {
  3047. source: "./media/characters/elijah/front-nsfw.svg",
  3048. extra: 858 / 830,
  3049. bottom: 95.5 / 953.8559
  3050. }
  3051. },
  3052. backNsfw: {
  3053. height: math.unit(1.65, "meters"),
  3054. weight: math.unit(50, "kg"),
  3055. name: "Back (NSFW)",
  3056. image: {
  3057. source: "./media/characters/elijah/back-nsfw.svg",
  3058. extra: 895 / 850,
  3059. bottom: 5.3 / 897.956
  3060. }
  3061. },
  3062. dick: {
  3063. height: math.unit(1, "feet"),
  3064. name: "Dick",
  3065. image: {
  3066. source: "./media/characters/elijah/dick.svg"
  3067. }
  3068. },
  3069. beakOpen: {
  3070. height: math.unit(1.25, "feet"),
  3071. name: "Beak (Open)",
  3072. image: {
  3073. source: "./media/characters/elijah/beak-open.svg"
  3074. }
  3075. },
  3076. beakShut: {
  3077. height: math.unit(1.25, "feet"),
  3078. name: "Beak (Shut)",
  3079. image: {
  3080. source: "./media/characters/elijah/beak-shut.svg"
  3081. }
  3082. },
  3083. footFlexing: {
  3084. height: math.unit(1.61, "feet"),
  3085. name: "Foot (Flexing)",
  3086. image: {
  3087. source: "./media/characters/elijah/foot-flexing.svg"
  3088. }
  3089. },
  3090. footStepping: {
  3091. height: math.unit(1.44, "feet"),
  3092. name: "Foot (Stepping)",
  3093. image: {
  3094. source: "./media/characters/elijah/foot-stepping.svg"
  3095. }
  3096. },
  3097. plantigradeLeg: {
  3098. height: math.unit(2.34, "feet"),
  3099. name: "Plantigrade Leg",
  3100. image: {
  3101. source: "./media/characters/elijah/plantigrade-leg.svg"
  3102. }
  3103. },
  3104. plantigradeFootLeft: {
  3105. height: math.unit(0.9, "feet"),
  3106. name: "Plantigrade Foot (Left)",
  3107. image: {
  3108. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3109. }
  3110. },
  3111. plantigradeFootRight: {
  3112. height: math.unit(0.9, "feet"),
  3113. name: "Plantigrade Foot (Right)",
  3114. image: {
  3115. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3116. }
  3117. },
  3118. },
  3119. [
  3120. {
  3121. name: "Normal",
  3122. height: math.unit(1.65, "meters")
  3123. },
  3124. {
  3125. name: "Macro",
  3126. height: math.unit(55, "meters"),
  3127. default: true
  3128. },
  3129. {
  3130. name: "Macro+",
  3131. height: math.unit(105, "meters")
  3132. },
  3133. ]
  3134. ))
  3135. characterMakers.push(() => makeCharacter(
  3136. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3137. {
  3138. front: {
  3139. height: math.unit(7 + 2/12, "feet"),
  3140. weight: math.unit(320, "kg"),
  3141. preyCapacity: math.unit(0.276549935, "people"),
  3142. name: "Front",
  3143. image: {
  3144. source: "./media/characters/rai/front.svg",
  3145. extra: 1802/1696,
  3146. bottom: 68/1870
  3147. },
  3148. form: "anthro",
  3149. default: true
  3150. },
  3151. frontDressed: {
  3152. height: math.unit(7 + 2/12, "feet"),
  3153. weight: math.unit(320, "kg"),
  3154. preyCapacity: math.unit(0.276549935, "people"),
  3155. name: "Front (Dressed)",
  3156. image: {
  3157. source: "./media/characters/rai/front-dressed.svg",
  3158. extra: 1802/1696,
  3159. bottom: 68/1870
  3160. },
  3161. form: "anthro"
  3162. },
  3163. side: {
  3164. height: math.unit(7 + 2/12, "feet"),
  3165. weight: math.unit(320, "kg"),
  3166. preyCapacity: math.unit(0.276549935, "people"),
  3167. name: "Side",
  3168. image: {
  3169. source: "./media/characters/rai/side.svg",
  3170. extra: 1789/1710,
  3171. bottom: 115/1904
  3172. },
  3173. form: "anthro"
  3174. },
  3175. back: {
  3176. height: math.unit(7 + 2/12, "feet"),
  3177. weight: math.unit(320, "kg"),
  3178. preyCapacity: math.unit(0.276549935, "people"),
  3179. name: "Back",
  3180. image: {
  3181. source: "./media/characters/rai/back.svg",
  3182. extra: 1770/1707,
  3183. bottom: 28/1798
  3184. },
  3185. form: "anthro"
  3186. },
  3187. feral: {
  3188. height: math.unit(9.5, "feet"),
  3189. weight: math.unit(640, "kg"),
  3190. preyCapacity: math.unit(4, "people"),
  3191. name: "Feral",
  3192. image: {
  3193. source: "./media/characters/rai/feral.svg",
  3194. extra: 945/553,
  3195. bottom: 176/1121
  3196. },
  3197. form: "feral",
  3198. default: true
  3199. },
  3200. dragon: {
  3201. height: math.unit(23, "feet"),
  3202. weight: math.unit(50000, "lb"),
  3203. name: "Dragon",
  3204. image: {
  3205. source: "./media/characters/rai/dragon.svg",
  3206. extra: 2498 / 2030,
  3207. bottom: 85.2 / 2584
  3208. },
  3209. form: "dragon",
  3210. default: true
  3211. },
  3212. maw: {
  3213. height: math.unit(1.69, "feet"),
  3214. name: "Maw",
  3215. image: {
  3216. source: "./media/characters/rai/maw.svg"
  3217. },
  3218. form: "anthro"
  3219. },
  3220. },
  3221. [
  3222. {
  3223. name: "Normal",
  3224. height: math.unit(7 + 2/12, "feet"),
  3225. form: "anthro"
  3226. },
  3227. {
  3228. name: "Big",
  3229. height: math.unit(11, "feet"),
  3230. form: "anthro"
  3231. },
  3232. {
  3233. name: "Minimacro",
  3234. height: math.unit(77, "feet"),
  3235. form: "anthro"
  3236. },
  3237. {
  3238. name: "Macro",
  3239. height: math.unit(302, "feet"),
  3240. default: true,
  3241. form: "anthro"
  3242. },
  3243. {
  3244. name: "Normal",
  3245. height: math.unit(9.5, "feet"),
  3246. form: "feral",
  3247. default: true
  3248. },
  3249. {
  3250. name: "Normal",
  3251. height: math.unit(23, "feet"),
  3252. form: "dragon",
  3253. default: true
  3254. }
  3255. ],
  3256. {
  3257. "anthro": {
  3258. name: "Anthro",
  3259. default: true
  3260. },
  3261. "feral": {
  3262. name: "Feral",
  3263. },
  3264. "dragon": {
  3265. name: "Dragon",
  3266. },
  3267. }
  3268. ))
  3269. characterMakers.push(() => makeCharacter(
  3270. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3271. {
  3272. frontDressed: {
  3273. height: math.unit(216, "feet"),
  3274. weight: math.unit(7000000, "lb"),
  3275. preyCapacity: math.unit(1321, "people"),
  3276. name: "Front (Dressed)",
  3277. image: {
  3278. source: "./media/characters/jazzy/front-dressed.svg",
  3279. extra: 2738 / 2651,
  3280. bottom: 41.8 / 2786
  3281. }
  3282. },
  3283. backDressed: {
  3284. height: math.unit(216, "feet"),
  3285. weight: math.unit(7000000, "lb"),
  3286. preyCapacity: math.unit(1321, "people"),
  3287. name: "Back (Dressed)",
  3288. image: {
  3289. source: "./media/characters/jazzy/back-dressed.svg",
  3290. extra: 2775 / 2673,
  3291. bottom: 36.8 / 2817
  3292. }
  3293. },
  3294. front: {
  3295. height: math.unit(216, "feet"),
  3296. weight: math.unit(7000000, "lb"),
  3297. preyCapacity: math.unit(1321, "people"),
  3298. name: "Front",
  3299. image: {
  3300. source: "./media/characters/jazzy/front.svg",
  3301. extra: 2738 / 2651,
  3302. bottom: 41.8 / 2786
  3303. }
  3304. },
  3305. back: {
  3306. height: math.unit(216, "feet"),
  3307. weight: math.unit(7000000, "lb"),
  3308. preyCapacity: math.unit(1321, "people"),
  3309. name: "Back",
  3310. image: {
  3311. source: "./media/characters/jazzy/back.svg",
  3312. extra: 2775 / 2673,
  3313. bottom: 36.8 / 2817
  3314. }
  3315. },
  3316. maw: {
  3317. height: math.unit(20, "feet"),
  3318. name: "Maw",
  3319. image: {
  3320. source: "./media/characters/jazzy/maw.svg"
  3321. }
  3322. },
  3323. paws: {
  3324. height: math.unit(27.5, "feet"),
  3325. name: "Paws",
  3326. image: {
  3327. source: "./media/characters/jazzy/paws.svg"
  3328. }
  3329. },
  3330. eye: {
  3331. height: math.unit(4.4, "feet"),
  3332. name: "Eye",
  3333. image: {
  3334. source: "./media/characters/jazzy/eye.svg"
  3335. }
  3336. },
  3337. droneOffense: {
  3338. height: math.unit(9.5, "inches"),
  3339. name: "Drone (Offense)",
  3340. image: {
  3341. source: "./media/characters/jazzy/drone-offense.svg"
  3342. }
  3343. },
  3344. droneRecon: {
  3345. height: math.unit(9.5, "inches"),
  3346. name: "Drone (Recon)",
  3347. image: {
  3348. source: "./media/characters/jazzy/drone-recon.svg"
  3349. }
  3350. },
  3351. droneDefense: {
  3352. height: math.unit(9.5, "inches"),
  3353. name: "Drone (Defense)",
  3354. image: {
  3355. source: "./media/characters/jazzy/drone-defense.svg"
  3356. }
  3357. },
  3358. },
  3359. [
  3360. {
  3361. name: "Macro",
  3362. height: math.unit(216, "feet"),
  3363. default: true
  3364. },
  3365. ]
  3366. ))
  3367. characterMakers.push(() => makeCharacter(
  3368. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3369. {
  3370. front: {
  3371. height: math.unit(9 + 6/12, "feet"),
  3372. weight: math.unit(700, "lb"),
  3373. name: "Front",
  3374. image: {
  3375. source: "./media/characters/flamm/front.svg",
  3376. extra: 1736/1596,
  3377. bottom: 93/1829
  3378. }
  3379. },
  3380. buff: {
  3381. height: math.unit(9 + 6/12, "feet"),
  3382. weight: math.unit(950, "lb"),
  3383. name: "Buff",
  3384. image: {
  3385. source: "./media/characters/flamm/buff.svg",
  3386. extra: 3018/2874,
  3387. bottom: 221/3239
  3388. }
  3389. },
  3390. },
  3391. [
  3392. {
  3393. name: "Normal",
  3394. height: math.unit(9.5, "feet")
  3395. },
  3396. {
  3397. name: "Macro",
  3398. height: math.unit(200, "feet"),
  3399. default: true
  3400. },
  3401. ]
  3402. ))
  3403. characterMakers.push(() => makeCharacter(
  3404. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3405. {
  3406. front: {
  3407. height: math.unit(5 + 3/12, "feet"),
  3408. weight: math.unit(60, "kg"),
  3409. name: "Front",
  3410. image: {
  3411. source: "./media/characters/zephiro/front.svg",
  3412. extra: 1873/1761,
  3413. bottom: 147/2020
  3414. }
  3415. },
  3416. side: {
  3417. height: math.unit(5 + 3/12, "feet"),
  3418. weight: math.unit(60, "kg"),
  3419. name: "Side",
  3420. image: {
  3421. source: "./media/characters/zephiro/side.svg",
  3422. extra: 1929/1827,
  3423. bottom: 65/1994
  3424. }
  3425. },
  3426. back: {
  3427. height: math.unit(5 + 3/12, "feet"),
  3428. weight: math.unit(60, "kg"),
  3429. name: "Back",
  3430. image: {
  3431. source: "./media/characters/zephiro/back.svg",
  3432. extra: 1926/1816,
  3433. bottom: 41/1967
  3434. }
  3435. },
  3436. hand: {
  3437. height: math.unit(0.68, "feet"),
  3438. name: "Hand",
  3439. image: {
  3440. source: "./media/characters/zephiro/hand.svg"
  3441. }
  3442. },
  3443. paw: {
  3444. height: math.unit(1, "feet"),
  3445. name: "Paw",
  3446. image: {
  3447. source: "./media/characters/zephiro/paw.svg"
  3448. }
  3449. },
  3450. beans: {
  3451. height: math.unit(0.93, "feet"),
  3452. name: "Beans",
  3453. image: {
  3454. source: "./media/characters/zephiro/beans.svg"
  3455. }
  3456. },
  3457. },
  3458. [
  3459. {
  3460. name: "Micro",
  3461. height: math.unit(3, "inches")
  3462. },
  3463. {
  3464. name: "Normal",
  3465. height: math.unit(5 + 3 / 12, "feet"),
  3466. default: true
  3467. },
  3468. {
  3469. name: "Macro",
  3470. height: math.unit(118, "feet")
  3471. },
  3472. ]
  3473. ))
  3474. characterMakers.push(() => makeCharacter(
  3475. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3476. {
  3477. front: {
  3478. height: math.unit(5, "feet"),
  3479. weight: math.unit(90, "kg"),
  3480. preyCapacity: math.unit(14, "people"),
  3481. name: "Front",
  3482. image: {
  3483. source: "./media/characters/fory/front.svg",
  3484. extra: 2862 / 2674,
  3485. bottom: 180 / 3043.8
  3486. },
  3487. form: "weaselbun",
  3488. default: true,
  3489. extraAttributes: {
  3490. "pawSize": {
  3491. name: "Paw Size",
  3492. power: 2,
  3493. type: "area",
  3494. base: math.unit(0.1596, "m^2")
  3495. },
  3496. "pawLength": {
  3497. name: "Paw Length",
  3498. power: 1,
  3499. type: "length",
  3500. base: math.unit(0.7, "m")
  3501. }
  3502. }
  3503. },
  3504. back: {
  3505. height: math.unit(5, "feet"),
  3506. weight: math.unit(90, "kg"),
  3507. preyCapacity: math.unit(14, "people"),
  3508. name: "Back",
  3509. image: {
  3510. source: "./media/characters/fory/back.svg",
  3511. extra: 1790/1672,
  3512. bottom: 84/1874
  3513. },
  3514. form: "weaselbun",
  3515. extraAttributes: {
  3516. "pawSize": {
  3517. name: "Paw Size",
  3518. power: 2,
  3519. type: "area",
  3520. base: math.unit(0.1596, "m^2")
  3521. },
  3522. "pawLength": {
  3523. name: "Paw Length",
  3524. power: 1,
  3525. type: "length",
  3526. base: math.unit(0.7, "m")
  3527. }
  3528. }
  3529. },
  3530. paw: {
  3531. height: math.unit(2.14, "feet"),
  3532. name: "Paw",
  3533. image: {
  3534. source: "./media/characters/fory/paw.svg"
  3535. },
  3536. form: "weaselbun",
  3537. extraAttributes: {
  3538. "pawSize": {
  3539. name: "Paw Size",
  3540. power: 2,
  3541. type: "area",
  3542. base: math.unit(0.1596, "m^2")
  3543. },
  3544. "pawLength": {
  3545. name: "Paw Length",
  3546. power: 1,
  3547. type: "length",
  3548. base: math.unit(0.48, "m")
  3549. }
  3550. }
  3551. },
  3552. bunBack: {
  3553. height: math.unit(3, "feet"),
  3554. weight: math.unit(20, "kg"),
  3555. preyCapacity: math.unit(3, "people"),
  3556. name: "Back",
  3557. image: {
  3558. source: "./media/characters/fory/bun-back.svg",
  3559. extra: 1749/1564,
  3560. bottom: 246/1995
  3561. },
  3562. form: "bun",
  3563. default: true,
  3564. extraAttributes: {
  3565. "pawSize": {
  3566. name: "Paw Size",
  3567. power: 2,
  3568. type: "area",
  3569. base: math.unit(0.072, "m^2")
  3570. },
  3571. "pawLength": {
  3572. name: "Paw Length",
  3573. power: 1,
  3574. type: "length",
  3575. base: math.unit(0.45, "m")
  3576. }
  3577. }
  3578. },
  3579. },
  3580. [
  3581. {
  3582. name: "Normal",
  3583. height: math.unit(5, "feet"),
  3584. form: "weaselbun"
  3585. },
  3586. {
  3587. name: "Macro",
  3588. height: math.unit(50, "feet"),
  3589. default: true,
  3590. form: "weaselbun"
  3591. },
  3592. {
  3593. name: "Megamacro",
  3594. height: math.unit(10, "miles"),
  3595. form: "weaselbun"
  3596. },
  3597. {
  3598. name: "Gigamacro",
  3599. height: math.unit(5, "earths"),
  3600. form: "weaselbun"
  3601. },
  3602. {
  3603. name: "Normal",
  3604. height: math.unit(3, "feet"),
  3605. default: true,
  3606. form: "bun"
  3607. },
  3608. {
  3609. name: "Fun-Size",
  3610. height: math.unit(12, "feet"),
  3611. form: "bun"
  3612. },
  3613. {
  3614. name: "Macro",
  3615. height: math.unit(100, "feet"),
  3616. form: "bun"
  3617. },
  3618. {
  3619. name: "Planetary",
  3620. height: math.unit(3, "earths"),
  3621. form: "bun"
  3622. },
  3623. ],
  3624. {
  3625. "weaselbun": {
  3626. name: "Weaselbun",
  3627. default: true
  3628. },
  3629. "bun": {
  3630. name: "Bun",
  3631. },
  3632. }
  3633. ))
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3636. {
  3637. front: {
  3638. height: math.unit(7, "feet"),
  3639. weight: math.unit(90, "kg"),
  3640. name: "Front",
  3641. image: {
  3642. source: "./media/characters/kurrikage/front.svg",
  3643. extra: 1845/1733,
  3644. bottom: 119/1964
  3645. }
  3646. },
  3647. back: {
  3648. height: math.unit(7, "feet"),
  3649. weight: math.unit(90, "kg"),
  3650. name: "Back",
  3651. image: {
  3652. source: "./media/characters/kurrikage/back.svg",
  3653. extra: 1790/1677,
  3654. bottom: 61/1851
  3655. }
  3656. },
  3657. dressed: {
  3658. height: math.unit(7, "feet"),
  3659. weight: math.unit(90, "kg"),
  3660. name: "Dressed",
  3661. image: {
  3662. source: "./media/characters/kurrikage/dressed.svg",
  3663. extra: 1845/1733,
  3664. bottom: 119/1964
  3665. }
  3666. },
  3667. foot: {
  3668. height: math.unit(1.5, "feet"),
  3669. name: "Foot",
  3670. image: {
  3671. source: "./media/characters/kurrikage/foot.svg"
  3672. }
  3673. },
  3674. staff: {
  3675. height: math.unit(6.7, "feet"),
  3676. name: "Staff",
  3677. image: {
  3678. source: "./media/characters/kurrikage/staff.svg"
  3679. }
  3680. },
  3681. peek: {
  3682. height: math.unit(1.05, "feet"),
  3683. name: "Peeking",
  3684. image: {
  3685. source: "./media/characters/kurrikage/peek.svg",
  3686. bottom: 0.08
  3687. }
  3688. },
  3689. },
  3690. [
  3691. {
  3692. name: "Normal",
  3693. height: math.unit(12, "feet"),
  3694. default: true
  3695. },
  3696. {
  3697. name: "Big",
  3698. height: math.unit(20, "feet")
  3699. },
  3700. {
  3701. name: "Macro",
  3702. height: math.unit(500, "feet")
  3703. },
  3704. {
  3705. name: "Megamacro",
  3706. height: math.unit(20, "miles")
  3707. },
  3708. ]
  3709. ))
  3710. characterMakers.push(() => makeCharacter(
  3711. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3712. {
  3713. front: {
  3714. height: math.unit(6, "feet"),
  3715. weight: math.unit(75, "kg"),
  3716. name: "Front",
  3717. image: {
  3718. source: "./media/characters/shingo/front.svg",
  3719. extra: 1900/1825,
  3720. bottom: 82/1982
  3721. }
  3722. },
  3723. side: {
  3724. height: math.unit(6, "feet"),
  3725. weight: math.unit(75, "kg"),
  3726. name: "Side",
  3727. image: {
  3728. source: "./media/characters/shingo/side.svg",
  3729. extra: 1930/1865,
  3730. bottom: 16/1946
  3731. }
  3732. },
  3733. back: {
  3734. height: math.unit(6, "feet"),
  3735. weight: math.unit(75, "kg"),
  3736. name: "Back",
  3737. image: {
  3738. source: "./media/characters/shingo/back.svg",
  3739. extra: 1922/1852,
  3740. bottom: 16/1938
  3741. }
  3742. },
  3743. frontDressed: {
  3744. height: math.unit(6, "feet"),
  3745. weight: math.unit(150, "lb"),
  3746. name: "Front-dressed",
  3747. image: {
  3748. source: "./media/characters/shingo/front-dressed.svg",
  3749. extra: 1900/1825,
  3750. bottom: 82/1982
  3751. }
  3752. },
  3753. paw: {
  3754. height: math.unit(1.29, "feet"),
  3755. name: "Paw",
  3756. image: {
  3757. source: "./media/characters/shingo/paw.svg"
  3758. }
  3759. },
  3760. hand: {
  3761. height: math.unit(1.07, "feet"),
  3762. name: "Hand",
  3763. image: {
  3764. source: "./media/characters/shingo/hand.svg"
  3765. }
  3766. },
  3767. frontAlt: {
  3768. height: math.unit(6, "feet"),
  3769. weight: math.unit(75, "kg"),
  3770. name: "Front (Alt)",
  3771. image: {
  3772. source: "./media/characters/shingo/front-alt.svg",
  3773. extra: 3511 / 3338,
  3774. bottom: 0.005
  3775. }
  3776. },
  3777. frontAlt2: {
  3778. height: math.unit(6, "feet"),
  3779. weight: math.unit(75, "kg"),
  3780. name: "Front (Alt 2)",
  3781. image: {
  3782. source: "./media/characters/shingo/front-alt-2.svg",
  3783. extra: 706/681,
  3784. bottom: 11/717
  3785. }
  3786. },
  3787. pawAlt: {
  3788. height: math.unit(1, "feet"),
  3789. name: "Paw (Alt)",
  3790. image: {
  3791. source: "./media/characters/shingo/paw-alt.svg"
  3792. }
  3793. },
  3794. },
  3795. [
  3796. {
  3797. name: "Micro",
  3798. height: math.unit(4, "inches")
  3799. },
  3800. {
  3801. name: "Normal",
  3802. height: math.unit(6, "feet"),
  3803. default: true
  3804. },
  3805. {
  3806. name: "Macro",
  3807. height: math.unit(108, "feet")
  3808. },
  3809. {
  3810. name: "Macro+",
  3811. height: math.unit(1500, "feet")
  3812. },
  3813. ]
  3814. ))
  3815. characterMakers.push(() => makeCharacter(
  3816. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3817. {
  3818. side: {
  3819. height: math.unit(6, "feet"),
  3820. weight: math.unit(75, "kg"),
  3821. name: "Side",
  3822. image: {
  3823. source: "./media/characters/aigey/side.svg"
  3824. }
  3825. },
  3826. },
  3827. [
  3828. {
  3829. name: "Macro",
  3830. height: math.unit(200, "feet"),
  3831. default: true
  3832. },
  3833. {
  3834. name: "Megamacro",
  3835. height: math.unit(100, "miles")
  3836. },
  3837. ]
  3838. )
  3839. )
  3840. characterMakers.push(() => makeCharacter(
  3841. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3842. {
  3843. front: {
  3844. height: math.unit(5 + 5 / 12, "feet"),
  3845. weight: math.unit(75, "kg"),
  3846. name: "Front",
  3847. image: {
  3848. source: "./media/characters/natasha/front.svg",
  3849. extra: 859 / 824,
  3850. bottom: 23 / 879.6
  3851. }
  3852. },
  3853. frontNsfw: {
  3854. height: math.unit(5 + 5 / 12, "feet"),
  3855. weight: math.unit(75, "kg"),
  3856. name: "Front (NSFW)",
  3857. image: {
  3858. source: "./media/characters/natasha/front-nsfw.svg",
  3859. extra: 859 / 824,
  3860. bottom: 23 / 879.6
  3861. }
  3862. },
  3863. frontErect: {
  3864. height: math.unit(5 + 5 / 12, "feet"),
  3865. weight: math.unit(75, "kg"),
  3866. name: "Front (Erect)",
  3867. image: {
  3868. source: "./media/characters/natasha/front-erect.svg",
  3869. extra: 859 / 824,
  3870. bottom: 23 / 879.6
  3871. }
  3872. },
  3873. back: {
  3874. height: math.unit(5 + 5 / 12, "feet"),
  3875. weight: math.unit(75, "kg"),
  3876. name: "Back",
  3877. image: {
  3878. source: "./media/characters/natasha/back.svg",
  3879. extra: 887.9 / 852.6,
  3880. bottom: 9.7 / 896.4
  3881. }
  3882. },
  3883. backAlt: {
  3884. height: math.unit(5 + 5 / 12, "feet"),
  3885. weight: math.unit(75, "kg"),
  3886. name: "Back (Alt)",
  3887. image: {
  3888. source: "./media/characters/natasha/back-alt.svg",
  3889. extra: 1236.7 / 1192,
  3890. bottom: 22.3 / 1258.2
  3891. }
  3892. },
  3893. dick: {
  3894. height: math.unit(1.772, "feet"),
  3895. name: "Dick",
  3896. image: {
  3897. source: "./media/characters/natasha/dick.svg"
  3898. }
  3899. },
  3900. paw: {
  3901. height: math.unit(0.250, "meters"),
  3902. name: "Paw",
  3903. image: {
  3904. source: "./media/characters/natasha/paw.svg"
  3905. },
  3906. extraAttributes: {
  3907. "toeSize": {
  3908. name: "Toe Size",
  3909. power: 2,
  3910. type: "area",
  3911. base: math.unit(0.0024, "m^2")
  3912. },
  3913. "padSize": {
  3914. name: "Pad Size",
  3915. power: 2,
  3916. type: "area",
  3917. base: math.unit(0.00889, "m^2")
  3918. },
  3919. "pawSize": {
  3920. name: "Paw Size",
  3921. power: 2,
  3922. type: "area",
  3923. base: math.unit(0.023667, "m^2")
  3924. },
  3925. }
  3926. },
  3927. },
  3928. [
  3929. {
  3930. name: "Shortstack",
  3931. height: math.unit(3, "feet"),
  3932. default: true
  3933. },
  3934. {
  3935. name: "Normal",
  3936. height: math.unit(5 + 5 / 12, "feet")
  3937. },
  3938. {
  3939. name: "Large",
  3940. height: math.unit(12, "feet")
  3941. },
  3942. {
  3943. name: "Macro",
  3944. height: math.unit(100, "feet")
  3945. },
  3946. {
  3947. name: "Macro+",
  3948. height: math.unit(260, "feet")
  3949. },
  3950. {
  3951. name: "Macro++",
  3952. height: math.unit(1, "mile")
  3953. },
  3954. ]
  3955. ))
  3956. characterMakers.push(() => makeCharacter(
  3957. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3958. {
  3959. front: {
  3960. height: math.unit(6, "feet"),
  3961. weight: math.unit(75, "kg"),
  3962. name: "Front",
  3963. image: {
  3964. source: "./media/characters/malik/front.svg",
  3965. extra: 1750/1561,
  3966. bottom: 80/1830
  3967. },
  3968. extraAttributes: {
  3969. "toeSize": {
  3970. name: "Toe Size",
  3971. power: 2,
  3972. type: "area",
  3973. base: math.unit(0.0159, "m^2")
  3974. },
  3975. "pawSize": {
  3976. name: "Paw Size",
  3977. power: 2,
  3978. type: "area",
  3979. base: math.unit(0.09834, "m^2")
  3980. },
  3981. }
  3982. },
  3983. side: {
  3984. height: math.unit(6, "feet"),
  3985. weight: math.unit(75, "kg"),
  3986. name: "Side",
  3987. image: {
  3988. source: "./media/characters/malik/side.svg",
  3989. extra: 1802/1685,
  3990. bottom: 42/1844
  3991. },
  3992. extraAttributes: {
  3993. "toeSize": {
  3994. name: "Toe Size",
  3995. power: 2,
  3996. type: "area",
  3997. base: math.unit(0.0159, "m^2")
  3998. },
  3999. "pawSize": {
  4000. name: "Paw Size",
  4001. power: 2,
  4002. type: "area",
  4003. base: math.unit(0.09834, "m^2")
  4004. },
  4005. }
  4006. },
  4007. back: {
  4008. height: math.unit(6, "feet"),
  4009. weight: math.unit(75, "kg"),
  4010. name: "Back",
  4011. image: {
  4012. source: "./media/characters/malik/back.svg",
  4013. extra: 1803/1607,
  4014. bottom: 33/1836
  4015. },
  4016. extraAttributes: {
  4017. "toeSize": {
  4018. name: "Toe Size",
  4019. power: 2,
  4020. type: "area",
  4021. base: math.unit(0.0159, "m^2")
  4022. },
  4023. "pawSize": {
  4024. name: "Paw Size",
  4025. power: 2,
  4026. type: "area",
  4027. base: math.unit(0.09834, "m^2")
  4028. },
  4029. }
  4030. },
  4031. },
  4032. [
  4033. {
  4034. name: "Macro",
  4035. height: math.unit(156, "feet"),
  4036. default: true
  4037. },
  4038. {
  4039. name: "Macro+",
  4040. height: math.unit(1188, "feet")
  4041. },
  4042. ]
  4043. ))
  4044. characterMakers.push(() => makeCharacter(
  4045. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4046. {
  4047. front: {
  4048. height: math.unit(6, "feet"),
  4049. weight: math.unit(75, "kg"),
  4050. name: "Front",
  4051. image: {
  4052. source: "./media/characters/sefer/front.svg",
  4053. extra: 848 / 659,
  4054. bottom: 28.3 / 876.442
  4055. }
  4056. },
  4057. back: {
  4058. height: math.unit(6, "feet"),
  4059. weight: math.unit(75, "kg"),
  4060. name: "Back",
  4061. image: {
  4062. source: "./media/characters/sefer/back.svg",
  4063. extra: 864 / 695,
  4064. bottom: 10 / 871
  4065. }
  4066. },
  4067. frontDressed: {
  4068. height: math.unit(6, "feet"),
  4069. weight: math.unit(75, "kg"),
  4070. name: "Dressed",
  4071. image: {
  4072. source: "./media/characters/sefer/dressed.svg",
  4073. extra: 839 / 653,
  4074. bottom: 37.6 / 878
  4075. }
  4076. },
  4077. },
  4078. [
  4079. {
  4080. name: "Normal",
  4081. height: math.unit(6, "feet"),
  4082. default: true
  4083. },
  4084. {
  4085. name: "Big",
  4086. height: math.unit(8, "meters")
  4087. },
  4088. ]
  4089. ))
  4090. characterMakers.push(() => makeCharacter(
  4091. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4092. {
  4093. body: {
  4094. height: math.unit(2.2428, "meter"),
  4095. weight: math.unit(124.738, "kg"),
  4096. name: "Body",
  4097. image: {
  4098. extra: 1225 / 1050,
  4099. source: "./media/characters/north/front.svg"
  4100. }
  4101. }
  4102. },
  4103. [
  4104. {
  4105. name: "Micro",
  4106. height: math.unit(4, "inches")
  4107. },
  4108. {
  4109. name: "Macro",
  4110. height: math.unit(63, "meters")
  4111. },
  4112. {
  4113. name: "Megamacro",
  4114. height: math.unit(101, "miles"),
  4115. default: true
  4116. }
  4117. ]
  4118. ))
  4119. characterMakers.push(() => makeCharacter(
  4120. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4121. {
  4122. angled: {
  4123. height: math.unit(4, "meter"),
  4124. weight: math.unit(150, "kg"),
  4125. name: "Angled",
  4126. image: {
  4127. source: "./media/characters/talan/angled-sfw.svg",
  4128. bottom: 29 / 3734
  4129. }
  4130. },
  4131. angledNsfw: {
  4132. height: math.unit(4, "meter"),
  4133. weight: math.unit(150, "kg"),
  4134. name: "Angled (NSFW)",
  4135. image: {
  4136. source: "./media/characters/talan/angled-nsfw.svg",
  4137. bottom: 29 / 3734
  4138. }
  4139. },
  4140. frontNsfw: {
  4141. height: math.unit(4, "meter"),
  4142. weight: math.unit(150, "kg"),
  4143. name: "Front (NSFW)",
  4144. image: {
  4145. source: "./media/characters/talan/front-nsfw.svg",
  4146. bottom: 29 / 3734
  4147. }
  4148. },
  4149. sideNsfw: {
  4150. height: math.unit(4, "meter"),
  4151. weight: math.unit(150, "kg"),
  4152. name: "Side (NSFW)",
  4153. image: {
  4154. source: "./media/characters/talan/side-nsfw.svg",
  4155. bottom: 29 / 3734
  4156. }
  4157. },
  4158. back: {
  4159. height: math.unit(4, "meter"),
  4160. weight: math.unit(150, "kg"),
  4161. name: "Back",
  4162. image: {
  4163. source: "./media/characters/talan/back.svg"
  4164. }
  4165. },
  4166. dickBottom: {
  4167. height: math.unit(0.621, "meter"),
  4168. name: "Dick (Bottom)",
  4169. image: {
  4170. source: "./media/characters/talan/dick-bottom.svg"
  4171. }
  4172. },
  4173. dickTop: {
  4174. height: math.unit(0.621, "meter"),
  4175. name: "Dick (Top)",
  4176. image: {
  4177. source: "./media/characters/talan/dick-top.svg"
  4178. }
  4179. },
  4180. dickSide: {
  4181. height: math.unit(0.305, "meter"),
  4182. name: "Dick (Side)",
  4183. image: {
  4184. source: "./media/characters/talan/dick-side.svg"
  4185. }
  4186. },
  4187. dickFront: {
  4188. height: math.unit(0.305, "meter"),
  4189. name: "Dick (Front)",
  4190. image: {
  4191. source: "./media/characters/talan/dick-front.svg"
  4192. }
  4193. },
  4194. },
  4195. [
  4196. {
  4197. name: "Normal",
  4198. height: math.unit(4, "meters")
  4199. },
  4200. {
  4201. name: "Macro",
  4202. height: math.unit(100, "meters")
  4203. },
  4204. {
  4205. name: "Megamacro",
  4206. height: math.unit(2, "miles"),
  4207. default: true
  4208. },
  4209. {
  4210. name: "Gigamacro",
  4211. height: math.unit(5000, "miles")
  4212. },
  4213. {
  4214. name: "Teramacro",
  4215. height: math.unit(100, "parsecs")
  4216. }
  4217. ]
  4218. ))
  4219. characterMakers.push(() => makeCharacter(
  4220. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4221. {
  4222. front: {
  4223. height: math.unit(2, "meter"),
  4224. weight: math.unit(90, "kg"),
  4225. name: "Front",
  4226. image: {
  4227. source: "./media/characters/gael'rathus/front.svg"
  4228. }
  4229. },
  4230. frontAlt: {
  4231. height: math.unit(2, "meter"),
  4232. weight: math.unit(90, "kg"),
  4233. name: "Front (alt)",
  4234. image: {
  4235. source: "./media/characters/gael'rathus/front-alt.svg"
  4236. }
  4237. },
  4238. frontAlt2: {
  4239. height: math.unit(2, "meter"),
  4240. weight: math.unit(90, "kg"),
  4241. name: "Front (alt 2)",
  4242. image: {
  4243. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4244. }
  4245. }
  4246. },
  4247. [
  4248. {
  4249. name: "Normal",
  4250. height: math.unit(9, "feet"),
  4251. default: true
  4252. },
  4253. {
  4254. name: "Large",
  4255. height: math.unit(25, "feet")
  4256. },
  4257. {
  4258. name: "Macro",
  4259. height: math.unit(0.25, "miles")
  4260. },
  4261. {
  4262. name: "Megamacro",
  4263. height: math.unit(10, "miles")
  4264. }
  4265. ]
  4266. ))
  4267. characterMakers.push(() => makeCharacter(
  4268. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4269. {
  4270. side: {
  4271. height: math.unit(2, "meter"),
  4272. weight: math.unit(140, "kg"),
  4273. name: "Side",
  4274. image: {
  4275. source: "./media/characters/sosha/side.svg",
  4276. extra: 1170/1006,
  4277. bottom: 94/1264
  4278. }
  4279. },
  4280. maw: {
  4281. height: math.unit(2.87, "feet"),
  4282. name: "Maw",
  4283. image: {
  4284. source: "./media/characters/sosha/maw.svg",
  4285. extra: 966/865,
  4286. bottom: 0/966
  4287. }
  4288. },
  4289. cooch: {
  4290. height: math.unit(5.6, "feet"),
  4291. name: "Cooch",
  4292. image: {
  4293. source: "./media/characters/sosha/cooch.svg"
  4294. }
  4295. },
  4296. },
  4297. [
  4298. {
  4299. name: "Normal",
  4300. height: math.unit(12, "feet"),
  4301. default: true
  4302. }
  4303. ]
  4304. ))
  4305. characterMakers.push(() => makeCharacter(
  4306. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4307. {
  4308. side: {
  4309. height: math.unit(5 + 5 / 12, "feet"),
  4310. weight: math.unit(170, "kg"),
  4311. name: "Side",
  4312. image: {
  4313. source: "./media/characters/runnola/side.svg",
  4314. extra: 741 / 448,
  4315. bottom: 0.05
  4316. }
  4317. },
  4318. },
  4319. [
  4320. {
  4321. name: "Small",
  4322. height: math.unit(3, "feet")
  4323. },
  4324. {
  4325. name: "Normal",
  4326. height: math.unit(5 + 5 / 12, "feet"),
  4327. default: true
  4328. },
  4329. {
  4330. name: "Big",
  4331. height: math.unit(10, "feet")
  4332. },
  4333. ]
  4334. ))
  4335. characterMakers.push(() => makeCharacter(
  4336. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4337. {
  4338. front: {
  4339. height: math.unit(2, "meter"),
  4340. weight: math.unit(50, "kg"),
  4341. name: "Front",
  4342. image: {
  4343. source: "./media/characters/kurribird/front.svg",
  4344. bottom: 0.015
  4345. }
  4346. },
  4347. frontAlt: {
  4348. height: math.unit(1.5, "meter"),
  4349. weight: math.unit(50, "kg"),
  4350. name: "Front (Alt)",
  4351. image: {
  4352. source: "./media/characters/kurribird/front-alt.svg",
  4353. extra: 1.45
  4354. }
  4355. },
  4356. },
  4357. [
  4358. {
  4359. name: "Normal",
  4360. height: math.unit(7, "feet")
  4361. },
  4362. {
  4363. name: "Big",
  4364. height: math.unit(12, "feet"),
  4365. default: true
  4366. },
  4367. {
  4368. name: "Macro",
  4369. height: math.unit(1500, "feet")
  4370. },
  4371. {
  4372. name: "Megamacro",
  4373. height: math.unit(2, "miles")
  4374. }
  4375. ]
  4376. ))
  4377. characterMakers.push(() => makeCharacter(
  4378. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4379. {
  4380. front: {
  4381. height: math.unit(2, "meter"),
  4382. weight: math.unit(80, "kg"),
  4383. name: "Front",
  4384. image: {
  4385. source: "./media/characters/elbial/front.svg",
  4386. extra: 1643 / 1556,
  4387. bottom: 60.2 / 1696
  4388. }
  4389. },
  4390. side: {
  4391. height: math.unit(2, "meter"),
  4392. weight: math.unit(80, "kg"),
  4393. name: "Side",
  4394. image: {
  4395. source: "./media/characters/elbial/side.svg",
  4396. extra: 1601/1528,
  4397. bottom: 97/1698
  4398. }
  4399. },
  4400. back: {
  4401. height: math.unit(2, "meter"),
  4402. weight: math.unit(80, "kg"),
  4403. name: "Back",
  4404. image: {
  4405. source: "./media/characters/elbial/back.svg",
  4406. extra: 1653/1569,
  4407. bottom: 20/1673
  4408. }
  4409. },
  4410. frontDressed: {
  4411. height: math.unit(2, "meter"),
  4412. weight: math.unit(80, "kg"),
  4413. name: "Front (Dressed)",
  4414. image: {
  4415. source: "./media/characters/elbial/front-dressed.svg",
  4416. extra: 1638/1569,
  4417. bottom: 70/1708
  4418. }
  4419. },
  4420. genitals: {
  4421. height: math.unit(2 / 3.367, "meter"),
  4422. name: "Genitals",
  4423. image: {
  4424. source: "./media/characters/elbial/genitals.svg"
  4425. }
  4426. },
  4427. },
  4428. [
  4429. {
  4430. name: "Large",
  4431. height: math.unit(100, "feet")
  4432. },
  4433. {
  4434. name: "Macro",
  4435. height: math.unit(500, "feet"),
  4436. default: true
  4437. },
  4438. {
  4439. name: "Megamacro",
  4440. height: math.unit(10, "miles")
  4441. },
  4442. {
  4443. name: "Gigamacro",
  4444. height: math.unit(25000, "miles")
  4445. },
  4446. {
  4447. name: "Full-Size",
  4448. height: math.unit(8000000, "gigaparsecs")
  4449. }
  4450. ]
  4451. ))
  4452. characterMakers.push(() => makeCharacter(
  4453. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4454. {
  4455. front: {
  4456. height: math.unit(2, "meter"),
  4457. weight: math.unit(60, "kg"),
  4458. name: "Front",
  4459. image: {
  4460. source: "./media/characters/noah/front.svg",
  4461. extra: 1383/1313,
  4462. bottom: 104/1487
  4463. }
  4464. },
  4465. hand: {
  4466. height: math.unit(0.6, "feet"),
  4467. name: "Hand",
  4468. image: {
  4469. source: "./media/characters/noah/hand.svg"
  4470. }
  4471. },
  4472. talons: {
  4473. height: math.unit(1.385, "feet"),
  4474. name: "Talons",
  4475. image: {
  4476. source: "./media/characters/noah/talons.svg"
  4477. }
  4478. },
  4479. beak: {
  4480. height: math.unit(0.43, "feet"),
  4481. name: "Beak",
  4482. image: {
  4483. source: "./media/characters/noah/beak.svg"
  4484. }
  4485. },
  4486. collar: {
  4487. height: math.unit(0.88, "feet"),
  4488. name: "Collar",
  4489. image: {
  4490. source: "./media/characters/noah/collar.svg"
  4491. }
  4492. },
  4493. eyeNarrow: {
  4494. height: math.unit(0.18, "feet"),
  4495. name: "Eye (Narrow)",
  4496. image: {
  4497. source: "./media/characters/noah/eye-narrow.svg"
  4498. }
  4499. },
  4500. eyeNormal: {
  4501. height: math.unit(0.18, "feet"),
  4502. name: "Eye (Normal)",
  4503. image: {
  4504. source: "./media/characters/noah/eye-normal.svg"
  4505. }
  4506. },
  4507. eyeWide: {
  4508. height: math.unit(0.18, "feet"),
  4509. name: "Eye (Wide)",
  4510. image: {
  4511. source: "./media/characters/noah/eye-wide.svg"
  4512. }
  4513. },
  4514. ear: {
  4515. height: math.unit(0.64, "feet"),
  4516. name: "Ear",
  4517. image: {
  4518. source: "./media/characters/noah/ear.svg"
  4519. }
  4520. },
  4521. },
  4522. [
  4523. {
  4524. name: "Large",
  4525. height: math.unit(50, "feet")
  4526. },
  4527. {
  4528. name: "Macro",
  4529. height: math.unit(750, "feet"),
  4530. default: true
  4531. },
  4532. {
  4533. name: "Megamacro",
  4534. height: math.unit(50, "miles")
  4535. },
  4536. {
  4537. name: "Gigamacro",
  4538. height: math.unit(100000, "miles")
  4539. },
  4540. {
  4541. name: "Full-Size",
  4542. height: math.unit(3000000000, "miles")
  4543. }
  4544. ]
  4545. ))
  4546. characterMakers.push(() => makeCharacter(
  4547. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4548. {
  4549. front: {
  4550. height: math.unit(2, "meter"),
  4551. weight: math.unit(80, "kg"),
  4552. name: "Front",
  4553. image: {
  4554. source: "./media/characters/natalya/front.svg"
  4555. }
  4556. },
  4557. back: {
  4558. height: math.unit(2, "meter"),
  4559. weight: math.unit(80, "kg"),
  4560. name: "Back",
  4561. image: {
  4562. source: "./media/characters/natalya/back.svg"
  4563. }
  4564. }
  4565. },
  4566. [
  4567. {
  4568. name: "Normal",
  4569. height: math.unit(150, "feet"),
  4570. default: true
  4571. },
  4572. {
  4573. name: "Megamacro",
  4574. height: math.unit(5, "miles")
  4575. },
  4576. {
  4577. name: "Full-Size",
  4578. height: math.unit(600, "kiloparsecs")
  4579. }
  4580. ]
  4581. ))
  4582. characterMakers.push(() => makeCharacter(
  4583. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4584. {
  4585. front: {
  4586. height: math.unit(2, "meter"),
  4587. weight: math.unit(50, "kg"),
  4588. name: "Front",
  4589. image: {
  4590. source: "./media/characters/erestrebah/front.svg",
  4591. extra: 1262/1162,
  4592. bottom: 96/1358
  4593. }
  4594. },
  4595. back: {
  4596. height: math.unit(2, "meter"),
  4597. weight: math.unit(50, "kg"),
  4598. name: "Back",
  4599. image: {
  4600. source: "./media/characters/erestrebah/back.svg",
  4601. extra: 1257/1139,
  4602. bottom: 13/1270
  4603. }
  4604. },
  4605. wing: {
  4606. height: math.unit(2, "meter"),
  4607. weight: math.unit(50, "kg"),
  4608. name: "Wing",
  4609. image: {
  4610. source: "./media/characters/erestrebah/wing.svg",
  4611. extra: 1262/1162,
  4612. bottom: 96/1358
  4613. }
  4614. },
  4615. mouth: {
  4616. height: math.unit(0.39, "feet"),
  4617. name: "Mouth",
  4618. image: {
  4619. source: "./media/characters/erestrebah/mouth.svg"
  4620. }
  4621. }
  4622. },
  4623. [
  4624. {
  4625. name: "Normal",
  4626. height: math.unit(10, "feet")
  4627. },
  4628. {
  4629. name: "Large",
  4630. height: math.unit(50, "feet"),
  4631. default: true
  4632. },
  4633. {
  4634. name: "Macro",
  4635. height: math.unit(300, "feet")
  4636. },
  4637. {
  4638. name: "Macro+",
  4639. height: math.unit(750, "feet")
  4640. },
  4641. {
  4642. name: "Megamacro",
  4643. height: math.unit(3, "miles")
  4644. }
  4645. ]
  4646. ))
  4647. characterMakers.push(() => makeCharacter(
  4648. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4649. {
  4650. front: {
  4651. height: math.unit(2, "meter"),
  4652. weight: math.unit(80, "kg"),
  4653. name: "Front",
  4654. image: {
  4655. source: "./media/characters/jennifer/front.svg",
  4656. bottom: 0.11,
  4657. extra: 1.16
  4658. }
  4659. },
  4660. frontAlt: {
  4661. height: math.unit(2, "meter"),
  4662. weight: math.unit(80, "kg"),
  4663. name: "Front (Alt)",
  4664. image: {
  4665. source: "./media/characters/jennifer/front-alt.svg"
  4666. }
  4667. }
  4668. },
  4669. [
  4670. {
  4671. name: "Canon Height",
  4672. height: math.unit(120, "feet"),
  4673. default: true
  4674. },
  4675. {
  4676. name: "Macro+",
  4677. height: math.unit(300, "feet")
  4678. },
  4679. {
  4680. name: "Megamacro",
  4681. height: math.unit(20000, "feet")
  4682. }
  4683. ]
  4684. ))
  4685. characterMakers.push(() => makeCharacter(
  4686. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4687. {
  4688. front: {
  4689. height: math.unit(2, "meter"),
  4690. weight: math.unit(50, "kg"),
  4691. name: "Front",
  4692. image: {
  4693. source: "./media/characters/kalista/front.svg",
  4694. extra: 1314/1145,
  4695. bottom: 101/1415
  4696. }
  4697. },
  4698. back: {
  4699. height: math.unit(2, "meter"),
  4700. weight: math.unit(50, "kg"),
  4701. name: "Back",
  4702. image: {
  4703. source: "./media/characters/kalista/back.svg",
  4704. extra: 1366 / 1156,
  4705. bottom: 33.9 / 1362.78
  4706. }
  4707. }
  4708. },
  4709. [
  4710. {
  4711. name: "Uncomfortably Small",
  4712. height: math.unit(10, "feet")
  4713. },
  4714. {
  4715. name: "Small",
  4716. height: math.unit(30, "feet")
  4717. },
  4718. {
  4719. name: "Macro",
  4720. height: math.unit(100, "feet"),
  4721. default: true
  4722. },
  4723. {
  4724. name: "Macro+",
  4725. height: math.unit(2000, "feet")
  4726. },
  4727. {
  4728. name: "True Form",
  4729. height: math.unit(8924, "miles")
  4730. }
  4731. ]
  4732. ))
  4733. characterMakers.push(() => makeCharacter(
  4734. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4735. {
  4736. front: {
  4737. height: math.unit(2, "meter"),
  4738. weight: math.unit(120, "kg"),
  4739. name: "Front",
  4740. image: {
  4741. source: "./media/characters/ggv/front.svg"
  4742. }
  4743. },
  4744. side: {
  4745. height: math.unit(2, "meter"),
  4746. weight: math.unit(120, "kg"),
  4747. name: "Side",
  4748. image: {
  4749. source: "./media/characters/ggv/side.svg"
  4750. }
  4751. }
  4752. },
  4753. [
  4754. {
  4755. name: "Extremely Puny",
  4756. height: math.unit(9 + 5 / 12, "feet")
  4757. },
  4758. {
  4759. name: "Horribly Small",
  4760. height: math.unit(47.7, "miles"),
  4761. default: true
  4762. },
  4763. {
  4764. name: "Reasonably Sized",
  4765. height: math.unit(25000, "parsecs")
  4766. },
  4767. {
  4768. name: "Slightly Uncompressed",
  4769. height: math.unit(7.77e31, "parsecs")
  4770. },
  4771. {
  4772. name: "Omniversal",
  4773. height: math.unit(1e300, "meters")
  4774. },
  4775. ]
  4776. ))
  4777. characterMakers.push(() => makeCharacter(
  4778. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4779. {
  4780. front: {
  4781. height: math.unit(2, "meter"),
  4782. weight: math.unit(75, "lb"),
  4783. name: "Front",
  4784. image: {
  4785. source: "./media/characters/napalm/front.svg"
  4786. }
  4787. },
  4788. back: {
  4789. height: math.unit(2, "meter"),
  4790. weight: math.unit(75, "lb"),
  4791. name: "Back",
  4792. image: {
  4793. source: "./media/characters/napalm/back.svg"
  4794. }
  4795. }
  4796. },
  4797. [
  4798. {
  4799. name: "Standard",
  4800. height: math.unit(55, "feet"),
  4801. default: true
  4802. }
  4803. ]
  4804. ))
  4805. characterMakers.push(() => makeCharacter(
  4806. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4807. {
  4808. front: {
  4809. height: math.unit(7 + 5 / 6, "feet"),
  4810. weight: math.unit(325, "lb"),
  4811. name: "Front",
  4812. image: {
  4813. source: "./media/characters/asana/front.svg",
  4814. extra: 1133 / 1060,
  4815. bottom: 15.2 / 1148.6
  4816. }
  4817. },
  4818. back: {
  4819. height: math.unit(7 + 5 / 6, "feet"),
  4820. weight: math.unit(325, "lb"),
  4821. name: "Back",
  4822. image: {
  4823. source: "./media/characters/asana/back.svg",
  4824. extra: 1114 / 1043,
  4825. bottom: 5 / 1120
  4826. }
  4827. },
  4828. dressedDark: {
  4829. height: math.unit(7 + 5 / 6, "feet"),
  4830. weight: math.unit(325, "lb"),
  4831. name: "Dressed (Dark)",
  4832. image: {
  4833. source: "./media/characters/asana/dressed-dark.svg",
  4834. extra: 1133 / 1060,
  4835. bottom: 15.2 / 1148.6
  4836. }
  4837. },
  4838. dressedLight: {
  4839. height: math.unit(7 + 5 / 6, "feet"),
  4840. weight: math.unit(325, "lb"),
  4841. name: "Dressed (Light)",
  4842. image: {
  4843. source: "./media/characters/asana/dressed-light.svg",
  4844. extra: 1133 / 1060,
  4845. bottom: 15.2 / 1148.6
  4846. }
  4847. },
  4848. },
  4849. [
  4850. {
  4851. name: "Standard",
  4852. height: math.unit(7 + 5 / 6, "feet"),
  4853. default: true
  4854. },
  4855. {
  4856. name: "Large",
  4857. height: math.unit(10, "meters")
  4858. },
  4859. {
  4860. name: "Macro",
  4861. height: math.unit(2500, "meters")
  4862. },
  4863. {
  4864. name: "Megamacro",
  4865. height: math.unit(5e6, "meters")
  4866. },
  4867. {
  4868. name: "Examacro",
  4869. height: math.unit(5e12, "lightyears")
  4870. },
  4871. {
  4872. name: "Max Size",
  4873. height: math.unit(1e31, "lightyears")
  4874. }
  4875. ]
  4876. ))
  4877. characterMakers.push(() => makeCharacter(
  4878. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4879. {
  4880. front: {
  4881. height: math.unit(2, "meter"),
  4882. weight: math.unit(60, "kg"),
  4883. name: "Front",
  4884. image: {
  4885. source: "./media/characters/ebony/front.svg",
  4886. bottom: 0.03,
  4887. extra: 1045 / 810 + 0.03
  4888. }
  4889. },
  4890. side: {
  4891. height: math.unit(2, "meter"),
  4892. weight: math.unit(60, "kg"),
  4893. name: "Side",
  4894. image: {
  4895. source: "./media/characters/ebony/side.svg",
  4896. bottom: 0.03,
  4897. extra: 1045 / 810 + 0.03
  4898. }
  4899. },
  4900. back: {
  4901. height: math.unit(2, "meter"),
  4902. weight: math.unit(60, "kg"),
  4903. name: "Back",
  4904. image: {
  4905. source: "./media/characters/ebony/back.svg",
  4906. bottom: 0.01,
  4907. extra: 1045 / 810 + 0.01
  4908. }
  4909. },
  4910. },
  4911. [
  4912. // TODO check why I did this lol
  4913. {
  4914. name: "Standard",
  4915. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4916. default: true
  4917. },
  4918. {
  4919. name: "Macro",
  4920. height: math.unit(200, "feet")
  4921. },
  4922. {
  4923. name: "Gigamacro",
  4924. height: math.unit(13000, "km")
  4925. }
  4926. ]
  4927. ))
  4928. characterMakers.push(() => makeCharacter(
  4929. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4930. {
  4931. front: {
  4932. height: math.unit(6, "feet"),
  4933. weight: math.unit(175, "lb"),
  4934. name: "Front",
  4935. image: {
  4936. source: "./media/characters/mountain/front.svg",
  4937. extra: 972 / 955,
  4938. bottom: 64 / 1036.6
  4939. }
  4940. },
  4941. back: {
  4942. height: math.unit(6, "feet"),
  4943. weight: math.unit(175, "lb"),
  4944. name: "Back",
  4945. image: {
  4946. source: "./media/characters/mountain/back.svg",
  4947. extra: 970 / 950,
  4948. bottom: 28.25 / 999
  4949. }
  4950. },
  4951. },
  4952. [
  4953. {
  4954. name: "Large",
  4955. height: math.unit(20, "meters")
  4956. },
  4957. {
  4958. name: "Macro",
  4959. height: math.unit(300, "meters")
  4960. },
  4961. {
  4962. name: "Gigamacro",
  4963. height: math.unit(10000, "km"),
  4964. default: true
  4965. },
  4966. {
  4967. name: "Examacro",
  4968. height: math.unit(10e9, "lightyears")
  4969. }
  4970. ]
  4971. ))
  4972. characterMakers.push(() => makeCharacter(
  4973. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4974. {
  4975. front: {
  4976. height: math.unit(8, "feet"),
  4977. weight: math.unit(500, "lb"),
  4978. name: "Front",
  4979. image: {
  4980. source: "./media/characters/rick/front.svg"
  4981. }
  4982. }
  4983. },
  4984. [
  4985. {
  4986. name: "Normal",
  4987. height: math.unit(8, "feet"),
  4988. default: true
  4989. },
  4990. {
  4991. name: "Macro",
  4992. height: math.unit(5, "km")
  4993. }
  4994. ]
  4995. ))
  4996. characterMakers.push(() => makeCharacter(
  4997. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4998. {
  4999. front: {
  5000. height: math.unit(8, "feet"),
  5001. weight: math.unit(120, "lb"),
  5002. name: "Front",
  5003. image: {
  5004. source: "./media/characters/ona/front.svg"
  5005. }
  5006. },
  5007. frontAlt: {
  5008. height: math.unit(8, "feet"),
  5009. weight: math.unit(120, "lb"),
  5010. name: "Front (Alt)",
  5011. image: {
  5012. source: "./media/characters/ona/front-alt.svg"
  5013. }
  5014. },
  5015. back: {
  5016. height: math.unit(8, "feet"),
  5017. weight: math.unit(120, "lb"),
  5018. name: "Back",
  5019. image: {
  5020. source: "./media/characters/ona/back.svg"
  5021. }
  5022. },
  5023. foot: {
  5024. height: math.unit(1.1, "feet"),
  5025. name: "Foot",
  5026. image: {
  5027. source: "./media/characters/ona/foot.svg"
  5028. }
  5029. }
  5030. },
  5031. [
  5032. {
  5033. name: "Megamacro",
  5034. height: math.unit(70, "km"),
  5035. default: true
  5036. },
  5037. {
  5038. name: "Gigamacro",
  5039. height: math.unit(681818, "miles")
  5040. },
  5041. {
  5042. name: "Examacro",
  5043. height: math.unit(3800000, "lightyears")
  5044. },
  5045. ]
  5046. ))
  5047. characterMakers.push(() => makeCharacter(
  5048. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5049. {
  5050. front: {
  5051. height: math.unit(12, "feet"),
  5052. weight: math.unit(3000, "lb"),
  5053. name: "Front",
  5054. image: {
  5055. source: "./media/characters/mech/front.svg",
  5056. extra: 2900 / 2770,
  5057. bottom: 110 / 3010
  5058. }
  5059. },
  5060. back: {
  5061. height: math.unit(12, "feet"),
  5062. weight: math.unit(3000, "lb"),
  5063. name: "Back",
  5064. image: {
  5065. source: "./media/characters/mech/back.svg",
  5066. extra: 3011 / 2890,
  5067. bottom: 94 / 3105
  5068. }
  5069. },
  5070. maw: {
  5071. height: math.unit(3.07, "feet"),
  5072. name: "Maw",
  5073. image: {
  5074. source: "./media/characters/mech/maw.svg"
  5075. }
  5076. },
  5077. head: {
  5078. height: math.unit(3.07, "feet"),
  5079. name: "Head",
  5080. image: {
  5081. source: "./media/characters/mech/head.svg"
  5082. }
  5083. },
  5084. dick: {
  5085. height: math.unit(1.43, "feet"),
  5086. name: "Dick",
  5087. image: {
  5088. source: "./media/characters/mech/dick.svg"
  5089. }
  5090. },
  5091. },
  5092. [
  5093. {
  5094. name: "Normal",
  5095. height: math.unit(12, "feet")
  5096. },
  5097. {
  5098. name: "Macro",
  5099. height: math.unit(300, "feet"),
  5100. default: true
  5101. },
  5102. {
  5103. name: "Macro+",
  5104. height: math.unit(1500, "feet")
  5105. },
  5106. ]
  5107. ))
  5108. characterMakers.push(() => makeCharacter(
  5109. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5110. {
  5111. front: {
  5112. height: math.unit(1.3, "meter"),
  5113. weight: math.unit(30, "kg"),
  5114. name: "Front",
  5115. image: {
  5116. source: "./media/characters/gregory/front.svg",
  5117. }
  5118. }
  5119. },
  5120. [
  5121. {
  5122. name: "Normal",
  5123. height: math.unit(1.3, "meter"),
  5124. default: true
  5125. },
  5126. {
  5127. name: "Macro",
  5128. height: math.unit(20, "meter")
  5129. }
  5130. ]
  5131. ))
  5132. characterMakers.push(() => makeCharacter(
  5133. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5134. {
  5135. front: {
  5136. height: math.unit(2.8, "meter"),
  5137. weight: math.unit(200, "kg"),
  5138. name: "Front",
  5139. image: {
  5140. source: "./media/characters/elory/front.svg",
  5141. }
  5142. }
  5143. },
  5144. [
  5145. {
  5146. name: "Normal",
  5147. height: math.unit(2.8, "meter"),
  5148. default: true
  5149. },
  5150. {
  5151. name: "Macro",
  5152. height: math.unit(38, "meter")
  5153. }
  5154. ]
  5155. ))
  5156. characterMakers.push(() => makeCharacter(
  5157. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5158. {
  5159. front: {
  5160. height: math.unit(470, "feet"),
  5161. weight: math.unit(924, "tons"),
  5162. name: "Front",
  5163. image: {
  5164. source: "./media/characters/angelpatamon/front.svg",
  5165. }
  5166. }
  5167. },
  5168. [
  5169. {
  5170. name: "Normal",
  5171. height: math.unit(470, "feet"),
  5172. default: true
  5173. },
  5174. {
  5175. name: "Deity Size I",
  5176. height: math.unit(28651.2, "km")
  5177. },
  5178. {
  5179. name: "Deity Size II",
  5180. height: math.unit(171907.2, "km")
  5181. }
  5182. ]
  5183. ))
  5184. characterMakers.push(() => makeCharacter(
  5185. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5186. {
  5187. side: {
  5188. height: math.unit(7.2, "meter"),
  5189. weight: math.unit(8.2, "tons"),
  5190. name: "Side",
  5191. image: {
  5192. source: "./media/characters/cryae/side.svg",
  5193. extra: 3500 / 1500
  5194. }
  5195. }
  5196. },
  5197. [
  5198. {
  5199. name: "Normal",
  5200. height: math.unit(7.2, "meter"),
  5201. default: true
  5202. }
  5203. ]
  5204. ))
  5205. characterMakers.push(() => makeCharacter(
  5206. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5207. {
  5208. front: {
  5209. height: math.unit(6, "feet"),
  5210. weight: math.unit(175, "lb"),
  5211. name: "Front",
  5212. image: {
  5213. source: "./media/characters/xera/front.svg",
  5214. extra: 2377 / 1972,
  5215. bottom: 75.5 / 2452
  5216. }
  5217. },
  5218. side: {
  5219. height: math.unit(6, "feet"),
  5220. weight: math.unit(175, "lb"),
  5221. name: "Side",
  5222. image: {
  5223. source: "./media/characters/xera/side.svg",
  5224. extra: 2345 / 2019,
  5225. bottom: 39.7 / 2384
  5226. }
  5227. },
  5228. back: {
  5229. height: math.unit(6, "feet"),
  5230. weight: math.unit(175, "lb"),
  5231. name: "Back",
  5232. image: {
  5233. source: "./media/characters/xera/back.svg",
  5234. extra: 2095 / 1984,
  5235. bottom: 67 / 2166
  5236. }
  5237. },
  5238. },
  5239. [
  5240. {
  5241. name: "Small",
  5242. height: math.unit(10, "feet")
  5243. },
  5244. {
  5245. name: "Macro",
  5246. height: math.unit(500, "meters"),
  5247. default: true
  5248. },
  5249. {
  5250. name: "Macro+",
  5251. height: math.unit(10, "km")
  5252. },
  5253. {
  5254. name: "Gigamacro",
  5255. height: math.unit(25000, "km")
  5256. },
  5257. {
  5258. name: "Teramacro",
  5259. height: math.unit(3e6, "km")
  5260. }
  5261. ]
  5262. ))
  5263. characterMakers.push(() => makeCharacter(
  5264. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5265. {
  5266. front: {
  5267. height: math.unit(6, "feet"),
  5268. weight: math.unit(175, "lb"),
  5269. name: "Front",
  5270. image: {
  5271. source: "./media/characters/nebula/front.svg",
  5272. extra: 2566 / 2362,
  5273. bottom: 81 / 2644
  5274. }
  5275. }
  5276. },
  5277. [
  5278. {
  5279. name: "Small",
  5280. height: math.unit(4.5, "meters")
  5281. },
  5282. {
  5283. name: "Macro",
  5284. height: math.unit(1500, "meters"),
  5285. default: true
  5286. },
  5287. {
  5288. name: "Megamacro",
  5289. height: math.unit(150, "km")
  5290. },
  5291. {
  5292. name: "Gigamacro",
  5293. height: math.unit(27000, "km")
  5294. }
  5295. ]
  5296. ))
  5297. characterMakers.push(() => makeCharacter(
  5298. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5299. {
  5300. front: {
  5301. height: math.unit(6, "feet"),
  5302. weight: math.unit(225, "lb"),
  5303. name: "Front",
  5304. image: {
  5305. source: "./media/characters/abysgar/front.svg",
  5306. extra: 1739/1614,
  5307. bottom: 71/1810
  5308. }
  5309. },
  5310. frontNsfw: {
  5311. height: math.unit(6, "feet"),
  5312. weight: math.unit(225, "lb"),
  5313. name: "Front (NSFW)",
  5314. image: {
  5315. source: "./media/characters/abysgar/front-nsfw.svg",
  5316. extra: 1739/1614,
  5317. bottom: 71/1810
  5318. }
  5319. },
  5320. back: {
  5321. height: math.unit(4.6, "feet"),
  5322. weight: math.unit(225, "lb"),
  5323. name: "Back",
  5324. image: {
  5325. source: "./media/characters/abysgar/back.svg",
  5326. extra: 1384/1327,
  5327. bottom: 0/1384
  5328. }
  5329. },
  5330. head: {
  5331. height: math.unit(1.25, "feet"),
  5332. name: "Head",
  5333. image: {
  5334. source: "./media/characters/abysgar/head.svg",
  5335. extra: 669/569,
  5336. bottom: 0/669
  5337. }
  5338. },
  5339. },
  5340. [
  5341. {
  5342. name: "Small",
  5343. height: math.unit(4.5, "meters")
  5344. },
  5345. {
  5346. name: "Macro",
  5347. height: math.unit(1250, "meters"),
  5348. default: true
  5349. },
  5350. {
  5351. name: "Megamacro",
  5352. height: math.unit(125, "km")
  5353. },
  5354. {
  5355. name: "Gigamacro",
  5356. height: math.unit(26000, "km")
  5357. }
  5358. ]
  5359. ))
  5360. characterMakers.push(() => makeCharacter(
  5361. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5362. {
  5363. front: {
  5364. height: math.unit(6, "feet"),
  5365. weight: math.unit(180, "lb"),
  5366. name: "Front",
  5367. image: {
  5368. source: "./media/characters/yakuz/front.svg"
  5369. }
  5370. }
  5371. },
  5372. [
  5373. {
  5374. name: "Small",
  5375. height: math.unit(5, "meters")
  5376. },
  5377. {
  5378. name: "Macro",
  5379. height: math.unit(1500, "meters"),
  5380. default: true
  5381. },
  5382. {
  5383. name: "Megamacro",
  5384. height: math.unit(200, "km")
  5385. },
  5386. {
  5387. name: "Gigamacro",
  5388. height: math.unit(100000, "km")
  5389. }
  5390. ]
  5391. ))
  5392. characterMakers.push(() => makeCharacter(
  5393. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5394. {
  5395. front: {
  5396. height: math.unit(6, "feet"),
  5397. weight: math.unit(175, "lb"),
  5398. name: "Front",
  5399. image: {
  5400. source: "./media/characters/mirova/front.svg",
  5401. extra: 3334 / 3071,
  5402. bottom: 42 / 3375.6
  5403. }
  5404. }
  5405. },
  5406. [
  5407. {
  5408. name: "Small",
  5409. height: math.unit(5, "meters")
  5410. },
  5411. {
  5412. name: "Macro",
  5413. height: math.unit(900, "meters"),
  5414. default: true
  5415. },
  5416. {
  5417. name: "Megamacro",
  5418. height: math.unit(135, "km")
  5419. },
  5420. {
  5421. name: "Gigamacro",
  5422. height: math.unit(20000, "km")
  5423. }
  5424. ]
  5425. ))
  5426. characterMakers.push(() => makeCharacter(
  5427. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5428. {
  5429. side: {
  5430. height: math.unit(28.35, "feet"),
  5431. weight: math.unit(99.75, "tons"),
  5432. name: "Side",
  5433. image: {
  5434. source: "./media/characters/asana-mech/side.svg",
  5435. extra: 923 / 699,
  5436. bottom: 50 / 975
  5437. }
  5438. },
  5439. chaingun: {
  5440. height: math.unit(7, "feet"),
  5441. weight: math.unit(2400, "lb"),
  5442. name: "Chaingun",
  5443. image: {
  5444. source: "./media/characters/asana-mech/chaingun.svg"
  5445. }
  5446. },
  5447. laser: {
  5448. height: math.unit(7.12, "feet"),
  5449. weight: math.unit(2000, "lb"),
  5450. name: "Laser",
  5451. image: {
  5452. source: "./media/characters/asana-mech/laser.svg"
  5453. }
  5454. },
  5455. },
  5456. [
  5457. {
  5458. name: "Normal",
  5459. height: math.unit(28.35, "feet"),
  5460. default: true
  5461. },
  5462. {
  5463. name: "Macro",
  5464. height: math.unit(2500, "feet")
  5465. },
  5466. {
  5467. name: "Megamacro",
  5468. height: math.unit(25, "miles")
  5469. },
  5470. {
  5471. name: "Examacro",
  5472. height: math.unit(6e8, "lightyears")
  5473. },
  5474. ]
  5475. ))
  5476. characterMakers.push(() => makeCharacter(
  5477. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5478. {
  5479. front: {
  5480. height: math.unit(5, "meters"),
  5481. weight: math.unit(1000, "kg"),
  5482. name: "Front",
  5483. image: {
  5484. source: "./media/characters/asche/front.svg",
  5485. extra: 1258 / 1190,
  5486. bottom: 47 / 1305
  5487. }
  5488. },
  5489. frontUnderwear: {
  5490. height: math.unit(5, "meters"),
  5491. weight: math.unit(1000, "kg"),
  5492. name: "Front (Underwear)",
  5493. image: {
  5494. source: "./media/characters/asche/front-underwear.svg",
  5495. extra: 1258 / 1190,
  5496. bottom: 47 / 1305
  5497. }
  5498. },
  5499. frontDressed: {
  5500. height: math.unit(5, "meters"),
  5501. weight: math.unit(1000, "kg"),
  5502. name: "Front (Dressed)",
  5503. image: {
  5504. source: "./media/characters/asche/front-dressed.svg",
  5505. extra: 1258 / 1190,
  5506. bottom: 47 / 1305
  5507. }
  5508. },
  5509. frontArmor: {
  5510. height: math.unit(5, "meters"),
  5511. weight: math.unit(1000, "kg"),
  5512. name: "Front (Armored)",
  5513. image: {
  5514. source: "./media/characters/asche/front-armored.svg",
  5515. extra: 1374 / 1308,
  5516. bottom: 23 / 1397
  5517. }
  5518. },
  5519. mp724: {
  5520. height: math.unit(0.96, "meters"),
  5521. weight: math.unit(38, "kg"),
  5522. name: "H&K MP724",
  5523. image: {
  5524. source: "./media/characters/asche/h&k-mp724.svg"
  5525. }
  5526. },
  5527. side: {
  5528. height: math.unit(5, "meters"),
  5529. weight: math.unit(1000, "kg"),
  5530. name: "Side",
  5531. image: {
  5532. source: "./media/characters/asche/side.svg",
  5533. extra: 1717 / 1609,
  5534. bottom: 0.005
  5535. }
  5536. },
  5537. back: {
  5538. height: math.unit(5, "meters"),
  5539. weight: math.unit(1000, "kg"),
  5540. name: "Back",
  5541. image: {
  5542. source: "./media/characters/asche/back.svg",
  5543. extra: 1570 / 1501
  5544. }
  5545. },
  5546. },
  5547. [
  5548. {
  5549. name: "DEFCON 5",
  5550. height: math.unit(5, "meters")
  5551. },
  5552. {
  5553. name: "DEFCON 4",
  5554. height: math.unit(500, "meters"),
  5555. default: true
  5556. },
  5557. {
  5558. name: "DEFCON 3",
  5559. height: math.unit(5, "km")
  5560. },
  5561. {
  5562. name: "DEFCON 2",
  5563. height: math.unit(500, "km")
  5564. },
  5565. {
  5566. name: "DEFCON 1",
  5567. height: math.unit(500000, "km")
  5568. },
  5569. {
  5570. name: "DEFCON 0",
  5571. height: math.unit(3, "gigaparsecs")
  5572. },
  5573. ]
  5574. ))
  5575. characterMakers.push(() => makeCharacter(
  5576. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5577. {
  5578. front: {
  5579. height: math.unit(7, "feet"),
  5580. weight: math.unit(92.7, "kg"),
  5581. name: "Front",
  5582. image: {
  5583. source: "./media/characters/gale/front.svg",
  5584. extra: 977/919,
  5585. bottom: 105/1082
  5586. }
  5587. },
  5588. side: {
  5589. height: math.unit(6.7, "feet"),
  5590. weight: math.unit(92.7, "kg"),
  5591. name: "Side",
  5592. image: {
  5593. source: "./media/characters/gale/side.svg",
  5594. extra: 978/922,
  5595. bottom: 140/1118
  5596. }
  5597. },
  5598. back: {
  5599. height: math.unit(7, "feet"),
  5600. weight: math.unit(92.7, "kg"),
  5601. name: "Back",
  5602. image: {
  5603. source: "./media/characters/gale/back.svg",
  5604. extra: 966/920,
  5605. bottom: 61/1027
  5606. }
  5607. },
  5608. maw: {
  5609. height: math.unit(2.23, "feet"),
  5610. name: "Maw",
  5611. image: {
  5612. source: "./media/characters/gale/maw.svg"
  5613. }
  5614. },
  5615. foot: {
  5616. height: math.unit(2.1, "feet"),
  5617. name: "Foot",
  5618. image: {
  5619. source: "./media/characters/gale/foot.svg"
  5620. }
  5621. },
  5622. },
  5623. [
  5624. {
  5625. name: "Normal",
  5626. height: math.unit(7, "feet")
  5627. },
  5628. {
  5629. name: "Macro",
  5630. height: math.unit(150, "feet"),
  5631. default: true
  5632. },
  5633. {
  5634. name: "Macro+",
  5635. height: math.unit(300, "feet")
  5636. },
  5637. ]
  5638. ))
  5639. characterMakers.push(() => makeCharacter(
  5640. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5641. {
  5642. front: {
  5643. height: math.unit(5 + 10/12, "feet"),
  5644. weight: math.unit(67, "kg"),
  5645. name: "Front",
  5646. image: {
  5647. source: "./media/characters/draylen/front.svg",
  5648. extra: 832/777,
  5649. bottom: 85/917
  5650. }
  5651. }
  5652. },
  5653. [
  5654. {
  5655. name: "Normal",
  5656. height: math.unit(5 + 10/12, "feet")
  5657. },
  5658. {
  5659. name: "Macro",
  5660. height: math.unit(150, "feet"),
  5661. default: true
  5662. }
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5667. {
  5668. front: {
  5669. height: math.unit(7 + 9 / 12, "feet"),
  5670. weight: math.unit(379, "lbs"),
  5671. name: "Front",
  5672. image: {
  5673. source: "./media/characters/chez/front.svg"
  5674. }
  5675. },
  5676. side: {
  5677. height: math.unit(7 + 9 / 12, "feet"),
  5678. weight: math.unit(379, "lbs"),
  5679. name: "Side",
  5680. image: {
  5681. source: "./media/characters/chez/side.svg"
  5682. }
  5683. }
  5684. },
  5685. [
  5686. {
  5687. name: "Normal",
  5688. height: math.unit(7 + 9 / 12, "feet"),
  5689. default: true
  5690. },
  5691. {
  5692. name: "God King",
  5693. height: math.unit(9750000, "meters")
  5694. }
  5695. ]
  5696. ))
  5697. characterMakers.push(() => makeCharacter(
  5698. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5699. {
  5700. front: {
  5701. height: math.unit(6, "feet"),
  5702. weight: math.unit(275, "lbs"),
  5703. name: "Front",
  5704. image: {
  5705. source: "./media/characters/kaylum/front.svg",
  5706. bottom: 0.01,
  5707. extra: 1166 / 1031
  5708. }
  5709. },
  5710. frontWingless: {
  5711. height: math.unit(6, "feet"),
  5712. weight: math.unit(275, "lbs"),
  5713. name: "Front (Wingless)",
  5714. image: {
  5715. source: "./media/characters/kaylum/front-wingless.svg",
  5716. bottom: 0.01,
  5717. extra: 1117 / 1031
  5718. }
  5719. }
  5720. },
  5721. [
  5722. {
  5723. name: "Normal",
  5724. height: math.unit(3.05, "meters")
  5725. },
  5726. {
  5727. name: "Master",
  5728. height: math.unit(5.5, "meters")
  5729. },
  5730. {
  5731. name: "Rampage",
  5732. height: math.unit(19, "meters")
  5733. },
  5734. {
  5735. name: "Macro Lite",
  5736. height: math.unit(37, "meters")
  5737. },
  5738. {
  5739. name: "Hyper Predator",
  5740. height: math.unit(61, "meters")
  5741. },
  5742. {
  5743. name: "Macro",
  5744. height: math.unit(138, "meters"),
  5745. default: true
  5746. }
  5747. ]
  5748. ))
  5749. characterMakers.push(() => makeCharacter(
  5750. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5751. {
  5752. front: {
  5753. height: math.unit(5 + 5 / 12, "feet"),
  5754. weight: math.unit(120, "lbs"),
  5755. name: "Front",
  5756. image: {
  5757. source: "./media/characters/geta/front.svg",
  5758. extra: 1003/933,
  5759. bottom: 21/1024
  5760. }
  5761. },
  5762. paw: {
  5763. height: math.unit(0.35, "feet"),
  5764. name: "Paw",
  5765. image: {
  5766. source: "./media/characters/geta/paw.svg"
  5767. }
  5768. },
  5769. },
  5770. [
  5771. {
  5772. name: "Micro",
  5773. height: math.unit(3, "inches"),
  5774. default: true
  5775. },
  5776. {
  5777. name: "Normal",
  5778. height: math.unit(5 + 5 / 12, "feet")
  5779. }
  5780. ]
  5781. ))
  5782. characterMakers.push(() => makeCharacter(
  5783. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5784. {
  5785. front: {
  5786. height: math.unit(6, "feet"),
  5787. weight: math.unit(300, "lbs"),
  5788. name: "Front",
  5789. image: {
  5790. source: "./media/characters/tyrnn/front.svg"
  5791. }
  5792. }
  5793. },
  5794. [
  5795. {
  5796. name: "Main Height",
  5797. height: math.unit(355, "feet"),
  5798. default: true
  5799. },
  5800. {
  5801. name: "Fave. Height",
  5802. height: math.unit(2400, "feet")
  5803. }
  5804. ]
  5805. ))
  5806. characterMakers.push(() => makeCharacter(
  5807. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5808. {
  5809. front: {
  5810. height: math.unit(6, "feet"),
  5811. weight: math.unit(300, "lbs"),
  5812. name: "Front",
  5813. image: {
  5814. source: "./media/characters/appledectomy/front.svg"
  5815. }
  5816. }
  5817. },
  5818. [
  5819. {
  5820. name: "Macro",
  5821. height: math.unit(2500, "feet")
  5822. },
  5823. {
  5824. name: "Megamacro",
  5825. height: math.unit(50, "miles"),
  5826. default: true
  5827. },
  5828. {
  5829. name: "Gigamacro",
  5830. height: math.unit(5000, "miles")
  5831. },
  5832. {
  5833. name: "Teramacro",
  5834. height: math.unit(250000, "miles")
  5835. },
  5836. ]
  5837. ))
  5838. characterMakers.push(() => makeCharacter(
  5839. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5840. {
  5841. front: {
  5842. height: math.unit(6, "feet"),
  5843. weight: math.unit(200, "lbs"),
  5844. name: "Front",
  5845. image: {
  5846. source: "./media/characters/vulpes/front.svg",
  5847. extra: 573 / 543,
  5848. bottom: 0.033
  5849. }
  5850. },
  5851. side: {
  5852. height: math.unit(6, "feet"),
  5853. weight: math.unit(200, "lbs"),
  5854. name: "Side",
  5855. image: {
  5856. source: "./media/characters/vulpes/side.svg",
  5857. extra: 577 / 549,
  5858. bottom: 11 / 588
  5859. }
  5860. },
  5861. back: {
  5862. height: math.unit(6, "feet"),
  5863. weight: math.unit(200, "lbs"),
  5864. name: "Back",
  5865. image: {
  5866. source: "./media/characters/vulpes/back.svg",
  5867. extra: 573 / 549,
  5868. bottom: 20 / 593
  5869. }
  5870. },
  5871. feet: {
  5872. height: math.unit(1.276, "feet"),
  5873. name: "Feet",
  5874. image: {
  5875. source: "./media/characters/vulpes/feet.svg"
  5876. }
  5877. },
  5878. maw: {
  5879. height: math.unit(1.18, "feet"),
  5880. name: "Maw",
  5881. image: {
  5882. source: "./media/characters/vulpes/maw.svg"
  5883. }
  5884. },
  5885. },
  5886. [
  5887. {
  5888. name: "Micro",
  5889. height: math.unit(2, "inches")
  5890. },
  5891. {
  5892. name: "Normal",
  5893. height: math.unit(6.3, "feet")
  5894. },
  5895. {
  5896. name: "Macro",
  5897. height: math.unit(850, "feet")
  5898. },
  5899. {
  5900. name: "Megamacro",
  5901. height: math.unit(7500, "feet"),
  5902. default: true
  5903. },
  5904. {
  5905. name: "Gigamacro",
  5906. height: math.unit(570000, "miles")
  5907. }
  5908. ]
  5909. ))
  5910. characterMakers.push(() => makeCharacter(
  5911. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5912. {
  5913. front: {
  5914. height: math.unit(6, "feet"),
  5915. weight: math.unit(210, "lbs"),
  5916. name: "Front",
  5917. image: {
  5918. source: "./media/characters/rain-fallen/front.svg"
  5919. }
  5920. },
  5921. side: {
  5922. height: math.unit(6, "feet"),
  5923. weight: math.unit(210, "lbs"),
  5924. name: "Side",
  5925. image: {
  5926. source: "./media/characters/rain-fallen/side.svg"
  5927. }
  5928. },
  5929. back: {
  5930. height: math.unit(6, "feet"),
  5931. weight: math.unit(210, "lbs"),
  5932. name: "Back",
  5933. image: {
  5934. source: "./media/characters/rain-fallen/back.svg"
  5935. }
  5936. },
  5937. feral: {
  5938. height: math.unit(9, "feet"),
  5939. weight: math.unit(700, "lbs"),
  5940. name: "Feral",
  5941. image: {
  5942. source: "./media/characters/rain-fallen/feral.svg"
  5943. }
  5944. },
  5945. },
  5946. [
  5947. {
  5948. name: "Meddling with Mortals",
  5949. height: math.unit(8 + 8/12, "feet")
  5950. },
  5951. {
  5952. name: "Normal",
  5953. height: math.unit(5, "meter")
  5954. },
  5955. {
  5956. name: "Macro",
  5957. height: math.unit(150, "meter"),
  5958. default: true
  5959. },
  5960. {
  5961. name: "Megamacro",
  5962. height: math.unit(278e6, "meter")
  5963. },
  5964. {
  5965. name: "Gigamacro",
  5966. height: math.unit(2e9, "meter")
  5967. },
  5968. {
  5969. name: "Teramacro",
  5970. height: math.unit(8e12, "meter")
  5971. },
  5972. {
  5973. name: "Devourer",
  5974. height: math.unit(14, "zettameters")
  5975. },
  5976. {
  5977. name: "Scarlet King",
  5978. height: math.unit(18, "yottameters")
  5979. },
  5980. {
  5981. name: "Void",
  5982. height: math.unit(1e88, "yottameters")
  5983. }
  5984. ]
  5985. ))
  5986. characterMakers.push(() => makeCharacter(
  5987. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5988. {
  5989. standing: {
  5990. height: math.unit(6, "feet"),
  5991. weight: math.unit(180, "lbs"),
  5992. name: "Standing",
  5993. image: {
  5994. source: "./media/characters/zaakira/standing.svg",
  5995. extra: 1599/1504,
  5996. bottom: 39/1638
  5997. }
  5998. },
  5999. laying: {
  6000. height: math.unit(3.3, "feet"),
  6001. weight: math.unit(180, "lbs"),
  6002. name: "Laying",
  6003. image: {
  6004. source: "./media/characters/zaakira/laying.svg"
  6005. }
  6006. },
  6007. },
  6008. [
  6009. {
  6010. name: "Normal",
  6011. height: math.unit(12, "feet")
  6012. },
  6013. {
  6014. name: "Macro",
  6015. height: math.unit(279, "feet"),
  6016. default: true
  6017. }
  6018. ]
  6019. ))
  6020. characterMakers.push(() => makeCharacter(
  6021. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6022. {
  6023. femSfw: {
  6024. height: math.unit(8, "feet"),
  6025. weight: math.unit(350, "lb"),
  6026. name: "Fem",
  6027. image: {
  6028. source: "./media/characters/sigvald/fem-sfw.svg",
  6029. extra: 182 / 164,
  6030. bottom: 8.7 / 190.5
  6031. }
  6032. },
  6033. femNsfw: {
  6034. height: math.unit(8, "feet"),
  6035. weight: math.unit(350, "lb"),
  6036. name: "Fem (NSFW)",
  6037. image: {
  6038. source: "./media/characters/sigvald/fem-nsfw.svg",
  6039. extra: 182 / 164,
  6040. bottom: 8.7 / 190.5
  6041. }
  6042. },
  6043. maleNsfw: {
  6044. height: math.unit(8, "feet"),
  6045. weight: math.unit(350, "lb"),
  6046. name: "Male (NSFW)",
  6047. image: {
  6048. source: "./media/characters/sigvald/male-nsfw.svg",
  6049. extra: 182 / 164,
  6050. bottom: 8.7 / 190.5
  6051. }
  6052. },
  6053. hermNsfw: {
  6054. height: math.unit(8, "feet"),
  6055. weight: math.unit(350, "lb"),
  6056. name: "Herm (NSFW)",
  6057. image: {
  6058. source: "./media/characters/sigvald/herm-nsfw.svg",
  6059. extra: 182 / 164,
  6060. bottom: 8.7 / 190.5
  6061. }
  6062. },
  6063. dick: {
  6064. height: math.unit(2.36, "feet"),
  6065. name: "Dick",
  6066. image: {
  6067. source: "./media/characters/sigvald/dick.svg"
  6068. }
  6069. },
  6070. eye: {
  6071. height: math.unit(0.31, "feet"),
  6072. name: "Eye",
  6073. image: {
  6074. source: "./media/characters/sigvald/eye.svg"
  6075. }
  6076. },
  6077. mouth: {
  6078. height: math.unit(0.92, "feet"),
  6079. name: "Mouth",
  6080. image: {
  6081. source: "./media/characters/sigvald/mouth.svg"
  6082. }
  6083. },
  6084. paws: {
  6085. height: math.unit(2.2, "feet"),
  6086. name: "Paws",
  6087. image: {
  6088. source: "./media/characters/sigvald/paws.svg"
  6089. }
  6090. }
  6091. },
  6092. [
  6093. {
  6094. name: "Normal",
  6095. height: math.unit(8, "feet")
  6096. },
  6097. {
  6098. name: "Large",
  6099. height: math.unit(12, "feet")
  6100. },
  6101. {
  6102. name: "Larger",
  6103. height: math.unit(20, "feet")
  6104. },
  6105. {
  6106. name: "Macro",
  6107. height: math.unit(150, "feet")
  6108. },
  6109. {
  6110. name: "Macro+",
  6111. height: math.unit(200, "feet"),
  6112. default: true
  6113. },
  6114. ]
  6115. ))
  6116. characterMakers.push(() => makeCharacter(
  6117. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6118. {
  6119. side: {
  6120. height: math.unit(12, "feet"),
  6121. weight: math.unit(2000, "kg"),
  6122. name: "Side",
  6123. image: {
  6124. source: "./media/characters/scott/side.svg",
  6125. extra: 754 / 724,
  6126. bottom: 0.069
  6127. }
  6128. },
  6129. upright: {
  6130. height: math.unit(12, "feet"),
  6131. weight: math.unit(2000, "kg"),
  6132. name: "Upright",
  6133. image: {
  6134. source: "./media/characters/scott/upright.svg",
  6135. extra: 3881 / 3722,
  6136. bottom: 0.05
  6137. }
  6138. },
  6139. },
  6140. [
  6141. {
  6142. name: "Normal",
  6143. height: math.unit(12, "feet"),
  6144. default: true
  6145. },
  6146. ]
  6147. ))
  6148. characterMakers.push(() => makeCharacter(
  6149. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6150. {
  6151. side: {
  6152. height: math.unit(8, "meters"),
  6153. weight: math.unit(84755, "lbs"),
  6154. name: "Side",
  6155. image: {
  6156. source: "./media/characters/tobias/side.svg",
  6157. extra: 1474 / 1096,
  6158. bottom: 38.9 / 1513.1235
  6159. }
  6160. },
  6161. maw: {
  6162. height: math.unit(2.3, "meters"),
  6163. name: "Maw",
  6164. image: {
  6165. source: "./media/characters/tobias/maw.svg"
  6166. }
  6167. },
  6168. burp: {
  6169. height: math.unit(2.85, "meters"),
  6170. name: "Burp",
  6171. image: {
  6172. source: "./media/characters/tobias/burp.svg"
  6173. }
  6174. },
  6175. },
  6176. [
  6177. {
  6178. name: "Normal",
  6179. height: math.unit(8, "meters"),
  6180. default: true
  6181. },
  6182. ]
  6183. ))
  6184. characterMakers.push(() => makeCharacter(
  6185. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6186. {
  6187. front: {
  6188. height: math.unit(5.5, "feet"),
  6189. weight: math.unit(400, "lbs"),
  6190. name: "Front",
  6191. image: {
  6192. source: "./media/characters/kieran/front.svg",
  6193. extra: 2694 / 2364,
  6194. bottom: 217 / 2908
  6195. }
  6196. },
  6197. side: {
  6198. height: math.unit(5.5, "feet"),
  6199. weight: math.unit(400, "lbs"),
  6200. name: "Side",
  6201. image: {
  6202. source: "./media/characters/kieran/side.svg",
  6203. extra: 875 / 777,
  6204. bottom: 84.6 / 959
  6205. }
  6206. },
  6207. },
  6208. [
  6209. {
  6210. name: "Normal",
  6211. height: math.unit(5.5, "feet"),
  6212. default: true
  6213. },
  6214. ]
  6215. ))
  6216. characterMakers.push(() => makeCharacter(
  6217. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6218. {
  6219. side: {
  6220. height: math.unit(2, "meters"),
  6221. weight: math.unit(70, "kg"),
  6222. name: "Side",
  6223. image: {
  6224. source: "./media/characters/sanya/side.svg",
  6225. bottom: 0.02,
  6226. extra: 1.02
  6227. }
  6228. },
  6229. },
  6230. [
  6231. {
  6232. name: "Small",
  6233. height: math.unit(2, "meters")
  6234. },
  6235. {
  6236. name: "Normal",
  6237. height: math.unit(3, "meters")
  6238. },
  6239. {
  6240. name: "Macro",
  6241. height: math.unit(16, "meters"),
  6242. default: true
  6243. },
  6244. ]
  6245. ))
  6246. characterMakers.push(() => makeCharacter(
  6247. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6248. {
  6249. front: {
  6250. height: math.unit(2, "meters"),
  6251. weight: math.unit(120, "kg"),
  6252. name: "Front",
  6253. image: {
  6254. source: "./media/characters/miranda/front.svg",
  6255. extra: 195 / 185,
  6256. bottom: 10.9 / 206.5
  6257. }
  6258. },
  6259. back: {
  6260. height: math.unit(2, "meters"),
  6261. weight: math.unit(120, "kg"),
  6262. name: "Back",
  6263. image: {
  6264. source: "./media/characters/miranda/back.svg",
  6265. extra: 201 / 193,
  6266. bottom: 2.3 / 203.7
  6267. }
  6268. },
  6269. },
  6270. [
  6271. {
  6272. name: "Normal",
  6273. height: math.unit(10, "feet"),
  6274. default: true
  6275. }
  6276. ]
  6277. ))
  6278. characterMakers.push(() => makeCharacter(
  6279. { name: "James", species: ["deer"], tags: ["anthro"] },
  6280. {
  6281. side: {
  6282. height: math.unit(2, "meters"),
  6283. weight: math.unit(100, "kg"),
  6284. name: "Front",
  6285. image: {
  6286. source: "./media/characters/james/front.svg",
  6287. extra: 10 / 8.5
  6288. }
  6289. },
  6290. },
  6291. [
  6292. {
  6293. name: "Normal",
  6294. height: math.unit(8.5, "feet"),
  6295. default: true
  6296. }
  6297. ]
  6298. ))
  6299. characterMakers.push(() => makeCharacter(
  6300. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6301. {
  6302. side: {
  6303. height: math.unit(9.5, "feet"),
  6304. weight: math.unit(2500, "lbs"),
  6305. name: "Side",
  6306. image: {
  6307. source: "./media/characters/heather/side.svg"
  6308. }
  6309. },
  6310. },
  6311. [
  6312. {
  6313. name: "Normal",
  6314. height: math.unit(9.5, "feet"),
  6315. default: true
  6316. }
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6321. {
  6322. side: {
  6323. height: math.unit(6.5, "feet"),
  6324. weight: math.unit(400, "lbs"),
  6325. name: "Side",
  6326. image: {
  6327. source: "./media/characters/lukas/side.svg",
  6328. extra: 7.25 / 6.5
  6329. }
  6330. },
  6331. },
  6332. [
  6333. {
  6334. name: "Normal",
  6335. height: math.unit(6.5, "feet"),
  6336. default: true
  6337. }
  6338. ]
  6339. ))
  6340. characterMakers.push(() => makeCharacter(
  6341. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6342. {
  6343. side: {
  6344. height: math.unit(5, "feet"),
  6345. weight: math.unit(3000, "lbs"),
  6346. name: "Side",
  6347. image: {
  6348. source: "./media/characters/louise/side.svg"
  6349. }
  6350. },
  6351. },
  6352. [
  6353. {
  6354. name: "Normal",
  6355. height: math.unit(5, "feet"),
  6356. default: true
  6357. }
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6362. {
  6363. side: {
  6364. height: math.unit(6, "feet"),
  6365. weight: math.unit(150, "lbs"),
  6366. name: "Side",
  6367. image: {
  6368. source: "./media/characters/ramona/side.svg",
  6369. extra: 871/854,
  6370. bottom: 41/912
  6371. }
  6372. },
  6373. },
  6374. [
  6375. {
  6376. name: "Normal",
  6377. height: math.unit(6 + 4/12, "feet")
  6378. },
  6379. {
  6380. name: "Minimacro",
  6381. height: math.unit(5.3, "meters"),
  6382. default: true
  6383. },
  6384. {
  6385. name: "Macro",
  6386. height: math.unit(20, "stories")
  6387. },
  6388. {
  6389. name: "Macro+",
  6390. height: math.unit(50, "stories")
  6391. },
  6392. ]
  6393. ))
  6394. characterMakers.push(() => makeCharacter(
  6395. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6396. {
  6397. standing: {
  6398. height: math.unit(5.75, "feet"),
  6399. weight: math.unit(160, "lbs"),
  6400. name: "Standing",
  6401. image: {
  6402. source: "./media/characters/deerpuff/standing.svg",
  6403. extra: 682 / 624
  6404. }
  6405. },
  6406. sitting: {
  6407. height: math.unit(5.75 / 1.79, "feet"),
  6408. weight: math.unit(160, "lbs"),
  6409. name: "Sitting",
  6410. image: {
  6411. source: "./media/characters/deerpuff/sitting.svg",
  6412. bottom: 44 / 400,
  6413. extra: 1
  6414. }
  6415. },
  6416. taurLaying: {
  6417. height: math.unit(6, "feet"),
  6418. weight: math.unit(400, "lbs"),
  6419. name: "Taur (Laying)",
  6420. image: {
  6421. source: "./media/characters/deerpuff/taur-laying.svg"
  6422. }
  6423. },
  6424. },
  6425. [
  6426. {
  6427. name: "Puffball",
  6428. height: math.unit(6, "inches")
  6429. },
  6430. {
  6431. name: "Normalpuff",
  6432. height: math.unit(5.75, "feet")
  6433. },
  6434. {
  6435. name: "Macropuff",
  6436. height: math.unit(1500, "feet"),
  6437. default: true
  6438. },
  6439. {
  6440. name: "Megapuff",
  6441. height: math.unit(500, "miles")
  6442. },
  6443. {
  6444. name: "Gigapuff",
  6445. height: math.unit(250000, "miles")
  6446. },
  6447. {
  6448. name: "Omegapuff",
  6449. height: math.unit(1000, "lightyears")
  6450. },
  6451. ]
  6452. ))
  6453. characterMakers.push(() => makeCharacter(
  6454. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6455. {
  6456. stomping: {
  6457. height: math.unit(6, "feet"),
  6458. weight: math.unit(170, "lbs"),
  6459. name: "Stomping",
  6460. image: {
  6461. source: "./media/characters/vivian/stomping.svg"
  6462. }
  6463. },
  6464. sitting: {
  6465. height: math.unit(6 / 1.75, "feet"),
  6466. weight: math.unit(170, "lbs"),
  6467. name: "Sitting",
  6468. image: {
  6469. source: "./media/characters/vivian/sitting.svg",
  6470. bottom: 1 / 6.4,
  6471. extra: 1,
  6472. }
  6473. },
  6474. },
  6475. [
  6476. {
  6477. name: "Normal",
  6478. height: math.unit(7, "feet"),
  6479. default: true
  6480. },
  6481. {
  6482. name: "Macro",
  6483. height: math.unit(10, "stories")
  6484. },
  6485. {
  6486. name: "Macro+",
  6487. height: math.unit(30, "stories")
  6488. },
  6489. {
  6490. name: "Megamacro",
  6491. height: math.unit(10, "miles")
  6492. },
  6493. {
  6494. name: "Megamacro+",
  6495. height: math.unit(2750000, "meters")
  6496. },
  6497. ]
  6498. ))
  6499. characterMakers.push(() => makeCharacter(
  6500. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6501. {
  6502. front: {
  6503. height: math.unit(6, "feet"),
  6504. weight: math.unit(160, "lbs"),
  6505. name: "Front",
  6506. image: {
  6507. source: "./media/characters/prince/front.svg",
  6508. extra: 1938/1682,
  6509. bottom: 45/1983
  6510. }
  6511. },
  6512. back: {
  6513. height: math.unit(6, "feet"),
  6514. weight: math.unit(160, "lbs"),
  6515. name: "Back",
  6516. image: {
  6517. source: "./media/characters/prince/back.svg",
  6518. extra: 1955/1726,
  6519. bottom: 6/1961
  6520. }
  6521. },
  6522. },
  6523. [
  6524. {
  6525. name: "Normal",
  6526. height: math.unit(7.75, "feet"),
  6527. default: true
  6528. },
  6529. {
  6530. name: "Not cute",
  6531. height: math.unit(17, "feet")
  6532. },
  6533. {
  6534. name: "I said NOT",
  6535. height: math.unit(91, "feet")
  6536. },
  6537. {
  6538. name: "Please stop",
  6539. height: math.unit(560, "feet")
  6540. },
  6541. {
  6542. name: "What have you done",
  6543. height: math.unit(2200, "feet")
  6544. },
  6545. {
  6546. name: "Deer God",
  6547. height: math.unit(3.6, "miles")
  6548. },
  6549. ]
  6550. ))
  6551. characterMakers.push(() => makeCharacter(
  6552. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6553. {
  6554. standing: {
  6555. height: math.unit(6, "feet"),
  6556. weight: math.unit(300, "lbs"),
  6557. name: "Standing",
  6558. image: {
  6559. source: "./media/characters/psymon/standing.svg",
  6560. extra: 1888 / 1810,
  6561. bottom: 0.05
  6562. }
  6563. },
  6564. slithering: {
  6565. height: math.unit(6, "feet"),
  6566. weight: math.unit(300, "lbs"),
  6567. name: "Slithering",
  6568. image: {
  6569. source: "./media/characters/psymon/slithering.svg",
  6570. extra: 1330 / 1224
  6571. }
  6572. },
  6573. slitheringAlt: {
  6574. height: math.unit(6, "feet"),
  6575. weight: math.unit(300, "lbs"),
  6576. name: "Slithering (Alt)",
  6577. image: {
  6578. source: "./media/characters/psymon/slithering-alt.svg",
  6579. extra: 1330 / 1224
  6580. }
  6581. },
  6582. },
  6583. [
  6584. {
  6585. name: "Normal",
  6586. height: math.unit(11.25, "feet"),
  6587. default: true
  6588. },
  6589. {
  6590. name: "Large",
  6591. height: math.unit(27, "feet")
  6592. },
  6593. {
  6594. name: "Giant",
  6595. height: math.unit(87, "feet")
  6596. },
  6597. {
  6598. name: "Macro",
  6599. height: math.unit(365, "feet")
  6600. },
  6601. {
  6602. name: "Megamacro",
  6603. height: math.unit(3, "miles")
  6604. },
  6605. {
  6606. name: "World Serpent",
  6607. height: math.unit(8000, "miles")
  6608. },
  6609. ]
  6610. ))
  6611. characterMakers.push(() => makeCharacter(
  6612. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6613. {
  6614. front: {
  6615. height: math.unit(6, "feet"),
  6616. weight: math.unit(180, "lbs"),
  6617. name: "Front",
  6618. image: {
  6619. source: "./media/characters/daimos/front.svg",
  6620. extra: 4160 / 3897,
  6621. bottom: 0.021
  6622. }
  6623. }
  6624. },
  6625. [
  6626. {
  6627. name: "Normal",
  6628. height: math.unit(8, "feet"),
  6629. default: true
  6630. },
  6631. {
  6632. name: "Big Dog",
  6633. height: math.unit(22, "feet")
  6634. },
  6635. {
  6636. name: "Macro",
  6637. height: math.unit(127, "feet")
  6638. },
  6639. {
  6640. name: "Megamacro",
  6641. height: math.unit(3600, "feet")
  6642. },
  6643. ]
  6644. ))
  6645. characterMakers.push(() => makeCharacter(
  6646. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6647. {
  6648. side: {
  6649. height: math.unit(6, "feet"),
  6650. weight: math.unit(180, "lbs"),
  6651. name: "Side",
  6652. image: {
  6653. source: "./media/characters/blake/side.svg",
  6654. extra: 1212 / 1120,
  6655. bottom: 0.05
  6656. }
  6657. },
  6658. crouched: {
  6659. height: math.unit(6 * 0.57, "feet"),
  6660. weight: math.unit(180, "lbs"),
  6661. name: "Crouched",
  6662. image: {
  6663. source: "./media/characters/blake/crouched.svg",
  6664. extra: 840 / 587,
  6665. bottom: 0.04
  6666. }
  6667. },
  6668. bent: {
  6669. height: math.unit(6 * 0.75, "feet"),
  6670. weight: math.unit(180, "lbs"),
  6671. name: "Bent",
  6672. image: {
  6673. source: "./media/characters/blake/bent.svg",
  6674. extra: 592 / 544,
  6675. bottom: 0.035
  6676. }
  6677. },
  6678. },
  6679. [
  6680. {
  6681. name: "Normal",
  6682. height: math.unit(8 + 1 / 6, "feet"),
  6683. default: true
  6684. },
  6685. {
  6686. name: "Big Backside",
  6687. height: math.unit(37, "feet")
  6688. },
  6689. {
  6690. name: "Subway Shredder",
  6691. height: math.unit(72, "feet")
  6692. },
  6693. {
  6694. name: "City Carver",
  6695. height: math.unit(1675, "feet")
  6696. },
  6697. {
  6698. name: "Tectonic Tweaker",
  6699. height: math.unit(2300, "miles")
  6700. },
  6701. ]
  6702. ))
  6703. characterMakers.push(() => makeCharacter(
  6704. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6705. {
  6706. front: {
  6707. height: math.unit(6, "feet"),
  6708. weight: math.unit(180, "lbs"),
  6709. name: "Front",
  6710. image: {
  6711. source: "./media/characters/guisetto/front.svg",
  6712. extra: 856 / 817,
  6713. bottom: 0.06
  6714. }
  6715. },
  6716. airborne: {
  6717. height: math.unit(6, "feet"),
  6718. weight: math.unit(180, "lbs"),
  6719. name: "Airborne",
  6720. image: {
  6721. source: "./media/characters/guisetto/airborne.svg",
  6722. extra: 584 / 525
  6723. }
  6724. },
  6725. },
  6726. [
  6727. {
  6728. name: "Normal",
  6729. height: math.unit(10 + 11 / 12, "feet"),
  6730. default: true
  6731. },
  6732. {
  6733. name: "Large",
  6734. height: math.unit(35, "feet")
  6735. },
  6736. {
  6737. name: "Macro",
  6738. height: math.unit(475, "feet")
  6739. },
  6740. ]
  6741. ))
  6742. characterMakers.push(() => makeCharacter(
  6743. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6744. {
  6745. front: {
  6746. height: math.unit(6, "feet"),
  6747. weight: math.unit(180, "lbs"),
  6748. name: "Front",
  6749. image: {
  6750. source: "./media/characters/luxor/front.svg",
  6751. extra: 2940 / 2152
  6752. }
  6753. },
  6754. back: {
  6755. height: math.unit(6, "feet"),
  6756. weight: math.unit(180, "lbs"),
  6757. name: "Back",
  6758. image: {
  6759. source: "./media/characters/luxor/back.svg",
  6760. extra: 1083 / 960
  6761. }
  6762. },
  6763. },
  6764. [
  6765. {
  6766. name: "Normal",
  6767. height: math.unit(5 + 5 / 6, "feet"),
  6768. default: true
  6769. },
  6770. {
  6771. name: "Lamp",
  6772. height: math.unit(50, "feet")
  6773. },
  6774. {
  6775. name: "Lämp",
  6776. height: math.unit(300, "feet")
  6777. },
  6778. {
  6779. name: "The sun is a lamp",
  6780. height: math.unit(250000, "miles")
  6781. },
  6782. ]
  6783. ))
  6784. characterMakers.push(() => makeCharacter(
  6785. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6786. {
  6787. front: {
  6788. height: math.unit(6, "feet"),
  6789. weight: math.unit(50, "lbs"),
  6790. name: "Front",
  6791. image: {
  6792. source: "./media/characters/huoyan/front.svg"
  6793. }
  6794. },
  6795. side: {
  6796. height: math.unit(6, "feet"),
  6797. weight: math.unit(180, "lbs"),
  6798. name: "Side",
  6799. image: {
  6800. source: "./media/characters/huoyan/side.svg"
  6801. }
  6802. },
  6803. },
  6804. [
  6805. {
  6806. name: "Chef",
  6807. height: math.unit(9, "feet")
  6808. },
  6809. {
  6810. name: "Normal",
  6811. height: math.unit(65, "feet"),
  6812. default: true
  6813. },
  6814. {
  6815. name: "Macro",
  6816. height: math.unit(780, "feet")
  6817. },
  6818. {
  6819. name: "Flaming Mountain",
  6820. height: math.unit(4.8, "miles")
  6821. },
  6822. {
  6823. name: "Celestial",
  6824. height: math.unit(765000, "miles")
  6825. },
  6826. ]
  6827. ))
  6828. characterMakers.push(() => makeCharacter(
  6829. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6830. {
  6831. front: {
  6832. height: math.unit(5 + 3 / 4, "feet"),
  6833. weight: math.unit(120, "lbs"),
  6834. name: "Front",
  6835. image: {
  6836. source: "./media/characters/tails/front.svg"
  6837. }
  6838. }
  6839. },
  6840. [
  6841. {
  6842. name: "Normal",
  6843. height: math.unit(5 + 3 / 4, "feet"),
  6844. default: true
  6845. }
  6846. ]
  6847. ))
  6848. characterMakers.push(() => makeCharacter(
  6849. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6850. {
  6851. front: {
  6852. height: math.unit(4, "feet"),
  6853. weight: math.unit(50, "lbs"),
  6854. name: "Front",
  6855. image: {
  6856. source: "./media/characters/rainy/front.svg"
  6857. }
  6858. }
  6859. },
  6860. [
  6861. {
  6862. name: "Macro",
  6863. height: math.unit(800, "feet"),
  6864. default: true
  6865. }
  6866. ]
  6867. ))
  6868. characterMakers.push(() => makeCharacter(
  6869. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6870. {
  6871. front: {
  6872. height: math.unit(6, "feet"),
  6873. weight: math.unit(150, "lbs"),
  6874. name: "Front",
  6875. image: {
  6876. source: "./media/characters/rainier/front.svg"
  6877. }
  6878. }
  6879. },
  6880. [
  6881. {
  6882. name: "Micro",
  6883. height: math.unit(2, "mm"),
  6884. default: true
  6885. }
  6886. ]
  6887. ))
  6888. characterMakers.push(() => makeCharacter(
  6889. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6890. {
  6891. front: {
  6892. height: math.unit(8 + 4/12, "feet"),
  6893. weight: math.unit(450, "kilograms"),
  6894. name: "Front",
  6895. image: {
  6896. source: "./media/characters/andy-renard/front.svg",
  6897. extra: 862/809,
  6898. bottom: 85/947
  6899. },
  6900. extraAttributes: {
  6901. "pawSize": {
  6902. name: "Paw Size",
  6903. power: 2,
  6904. type: "area",
  6905. base: math.unit(0.45*0.3, "meters^2")
  6906. },
  6907. "handSize": {
  6908. name: "Hand Size",
  6909. power: 2,
  6910. type: "area",
  6911. base: math.unit(0.4 * 0.3, "meters^2")
  6912. },
  6913. "cockSize": {
  6914. name: "Cock Length",
  6915. power: 1,
  6916. type: "length",
  6917. base: math.unit(0.75, "meters")
  6918. },
  6919. "ballDiameter": {
  6920. name: "Ball Diameter",
  6921. power: 1,
  6922. type: "length",
  6923. base: math.unit(0.3, "meters")
  6924. },
  6925. "ballVolume": {
  6926. name: "Ball Volume",
  6927. power: 3,
  6928. type: "volume",
  6929. base: math.unit(0.01413716694, "meters^3")
  6930. },
  6931. }
  6932. },
  6933. back: {
  6934. height: math.unit(8 + 4/12, "feet"),
  6935. weight: math.unit(450, "kilograms"),
  6936. name: "Back",
  6937. image: {
  6938. source: "./media/characters/andy-renard/back.svg",
  6939. extra: 1112/1033,
  6940. bottom: 64/1176
  6941. },
  6942. extraAttributes: {
  6943. "pawSize": {
  6944. name: "Paw Size",
  6945. power: 2,
  6946. type: "area",
  6947. base: math.unit(0.45*0.3, "meters^2")
  6948. },
  6949. "handSize": {
  6950. name: "Hand Size",
  6951. power: 2,
  6952. type: "area",
  6953. base: math.unit(0.4 * 0.3, "meters^2")
  6954. },
  6955. "cockSize": {
  6956. name: "Cock Length",
  6957. power: 1,
  6958. type: "length",
  6959. base: math.unit(0.75, "meters")
  6960. },
  6961. "ballDiameter": {
  6962. name: "Ball Diameter",
  6963. power: 1,
  6964. type: "length",
  6965. base: math.unit(0.3, "meters")
  6966. },
  6967. "ballVolume": {
  6968. name: "Ball Volume",
  6969. power: 3,
  6970. type: "volume",
  6971. base: math.unit(0.01413716694, "meters^3")
  6972. },
  6973. }
  6974. },
  6975. },
  6976. [
  6977. {
  6978. name: "Tall",
  6979. height: math.unit(6 + 8/12, "feet")
  6980. },
  6981. {
  6982. name: "Very Tall",
  6983. height: math.unit(8 + 4/12, "feet")
  6984. },
  6985. {
  6986. name: "Mini Macro",
  6987. height: math.unit(15, "feet"),
  6988. default: true
  6989. },
  6990. {
  6991. name: "Giant",
  6992. height: math.unit(50, "feet")
  6993. },
  6994. {
  6995. name: "Nice",
  6996. height: math.unit(69, "feet")
  6997. },
  6998. {
  6999. name: "Macro",
  7000. height: math.unit(100, "feet")
  7001. },
  7002. {
  7003. name: "Enormous",
  7004. height: math.unit(500, "feet")
  7005. },
  7006. {
  7007. name: "Gargantuan",
  7008. height: math.unit(1000, "feet")
  7009. },
  7010. {
  7011. name: "Mega",
  7012. height: math.unit(1, "mile")
  7013. },
  7014. {
  7015. name: "Giga",
  7016. height: math.unit(50, "miles")
  7017. },
  7018. {
  7019. name: "Tera",
  7020. height: math.unit(1000, "miles")
  7021. },
  7022. {
  7023. name: "Cosmic",
  7024. height: math.unit(1.5, "galaxies")
  7025. },
  7026. {
  7027. name: "God",
  7028. height: math.unit(1.5, "universes")
  7029. },
  7030. {
  7031. name: "Chief Execute God",
  7032. height: math.unit(1.5, "multiverses")
  7033. },
  7034. ]
  7035. ))
  7036. characterMakers.push(() => makeCharacter(
  7037. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7038. {
  7039. front: {
  7040. height: math.unit(6, "feet"),
  7041. weight: math.unit(210, "lbs"),
  7042. name: "Front",
  7043. image: {
  7044. source: "./media/characters/cimmaron/front-sfw.svg",
  7045. extra: 701 / 676,
  7046. bottom: 0.046
  7047. }
  7048. },
  7049. back: {
  7050. height: math.unit(6, "feet"),
  7051. weight: math.unit(210, "lbs"),
  7052. name: "Back",
  7053. image: {
  7054. source: "./media/characters/cimmaron/back-sfw.svg",
  7055. extra: 701 / 676,
  7056. bottom: 0.046
  7057. }
  7058. },
  7059. frontNsfw: {
  7060. height: math.unit(6, "feet"),
  7061. weight: math.unit(210, "lbs"),
  7062. name: "Front (NSFW)",
  7063. image: {
  7064. source: "./media/characters/cimmaron/front-nsfw.svg",
  7065. extra: 701 / 676,
  7066. bottom: 0.046
  7067. }
  7068. },
  7069. backNsfw: {
  7070. height: math.unit(6, "feet"),
  7071. weight: math.unit(210, "lbs"),
  7072. name: "Back (NSFW)",
  7073. image: {
  7074. source: "./media/characters/cimmaron/back-nsfw.svg",
  7075. extra: 701 / 676,
  7076. bottom: 0.046
  7077. }
  7078. },
  7079. dick: {
  7080. height: math.unit(1.714, "feet"),
  7081. name: "Dick",
  7082. image: {
  7083. source: "./media/characters/cimmaron/dick.svg"
  7084. }
  7085. },
  7086. },
  7087. [
  7088. {
  7089. name: "Normal",
  7090. height: math.unit(6, "feet"),
  7091. default: true
  7092. },
  7093. {
  7094. name: "Macro Mayor",
  7095. height: math.unit(350, "meters")
  7096. },
  7097. ]
  7098. ))
  7099. characterMakers.push(() => makeCharacter(
  7100. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7101. {
  7102. front: {
  7103. height: math.unit(6, "feet"),
  7104. weight: math.unit(200, "lbs"),
  7105. name: "Front",
  7106. image: {
  7107. source: "./media/characters/akari/front.svg",
  7108. extra: 962 / 901,
  7109. bottom: 0.04
  7110. }
  7111. }
  7112. },
  7113. [
  7114. {
  7115. name: "Micro",
  7116. height: math.unit(5, "inches"),
  7117. default: true
  7118. },
  7119. {
  7120. name: "Normal",
  7121. height: math.unit(7, "feet")
  7122. },
  7123. ]
  7124. ))
  7125. characterMakers.push(() => makeCharacter(
  7126. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7127. {
  7128. front: {
  7129. height: math.unit(6, "feet"),
  7130. weight: math.unit(140, "lbs"),
  7131. name: "Front",
  7132. image: {
  7133. source: "./media/characters/cynosura/front.svg",
  7134. extra: 437/410,
  7135. bottom: 9/446
  7136. }
  7137. },
  7138. back: {
  7139. height: math.unit(6, "feet"),
  7140. weight: math.unit(140, "lbs"),
  7141. name: "Back",
  7142. image: {
  7143. source: "./media/characters/cynosura/back.svg",
  7144. extra: 1304/1160,
  7145. bottom: 71/1375
  7146. }
  7147. },
  7148. },
  7149. [
  7150. {
  7151. name: "Micro",
  7152. height: math.unit(4, "inches")
  7153. },
  7154. {
  7155. name: "Normal",
  7156. height: math.unit(5.75, "feet"),
  7157. default: true
  7158. },
  7159. {
  7160. name: "Tall",
  7161. height: math.unit(10, "feet")
  7162. },
  7163. {
  7164. name: "Big",
  7165. height: math.unit(20, "feet")
  7166. },
  7167. {
  7168. name: "Macro",
  7169. height: math.unit(50, "feet")
  7170. },
  7171. ]
  7172. ))
  7173. characterMakers.push(() => makeCharacter(
  7174. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7175. {
  7176. front: {
  7177. height: math.unit(13 + 2/12, "feet"),
  7178. weight: math.unit(800, "kg"),
  7179. name: "Front",
  7180. image: {
  7181. source: "./media/characters/gin/front.svg",
  7182. extra: 1312/1191,
  7183. bottom: 45/1357
  7184. }
  7185. },
  7186. mouth: {
  7187. height: math.unit(2.39 * 1.8, "feet"),
  7188. name: "Mouth",
  7189. image: {
  7190. source: "./media/characters/gin/mouth.svg"
  7191. }
  7192. },
  7193. hand: {
  7194. height: math.unit(1.57 * 2.19, "feet"),
  7195. name: "Hand",
  7196. image: {
  7197. source: "./media/characters/gin/hand.svg"
  7198. }
  7199. },
  7200. foot: {
  7201. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7202. name: "Foot",
  7203. image: {
  7204. source: "./media/characters/gin/foot.svg"
  7205. }
  7206. },
  7207. sole: {
  7208. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7209. name: "Sole",
  7210. image: {
  7211. source: "./media/characters/gin/sole.svg"
  7212. }
  7213. },
  7214. },
  7215. [
  7216. {
  7217. name: "Very Small",
  7218. height: math.unit(13 + 2 / 12, "feet")
  7219. },
  7220. {
  7221. name: "Micro",
  7222. height: math.unit(600, "miles")
  7223. },
  7224. {
  7225. name: "Regular",
  7226. height: math.unit(20, "earths"),
  7227. default: true
  7228. },
  7229. {
  7230. name: "Macro",
  7231. height: math.unit(2.2, "solarradii")
  7232. },
  7233. {
  7234. name: "Teramacro",
  7235. height: math.unit(1.2, "galaxies")
  7236. },
  7237. {
  7238. name: "Omegamacro",
  7239. height: math.unit(200, "universes")
  7240. },
  7241. ]
  7242. ))
  7243. characterMakers.push(() => makeCharacter(
  7244. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7245. {
  7246. front: {
  7247. height: math.unit(6 + 1 / 6, "feet"),
  7248. weight: math.unit(178, "lbs"),
  7249. name: "Front",
  7250. image: {
  7251. source: "./media/characters/guy/front.svg"
  7252. }
  7253. }
  7254. },
  7255. [
  7256. {
  7257. name: "Normal",
  7258. height: math.unit(6 + 1 / 6, "feet"),
  7259. default: true
  7260. },
  7261. {
  7262. name: "Large",
  7263. height: math.unit(25 + 7 / 12, "feet")
  7264. },
  7265. {
  7266. name: "Macro",
  7267. height: math.unit(60 + 9 / 12, "feet")
  7268. },
  7269. {
  7270. name: "Macro+",
  7271. height: math.unit(246, "feet")
  7272. },
  7273. {
  7274. name: "Macro++",
  7275. height: math.unit(878, "feet")
  7276. }
  7277. ]
  7278. ))
  7279. characterMakers.push(() => makeCharacter(
  7280. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7281. {
  7282. front: {
  7283. height: math.unit(9, "feet"),
  7284. weight: math.unit(800, "lbs"),
  7285. name: "Front",
  7286. image: {
  7287. source: "./media/characters/tiberius/front.svg",
  7288. extra: 2295 / 2071
  7289. }
  7290. },
  7291. back: {
  7292. height: math.unit(9, "feet"),
  7293. weight: math.unit(800, "lbs"),
  7294. name: "Back",
  7295. image: {
  7296. source: "./media/characters/tiberius/back.svg",
  7297. extra: 2373 / 2160
  7298. }
  7299. },
  7300. },
  7301. [
  7302. {
  7303. name: "Normal",
  7304. height: math.unit(9, "feet"),
  7305. default: true
  7306. }
  7307. ]
  7308. ))
  7309. characterMakers.push(() => makeCharacter(
  7310. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7311. {
  7312. front: {
  7313. height: math.unit(6, "feet"),
  7314. weight: math.unit(600, "lbs"),
  7315. name: "Front",
  7316. image: {
  7317. source: "./media/characters/surgo/front.svg",
  7318. extra: 3591 / 2227
  7319. }
  7320. },
  7321. back: {
  7322. height: math.unit(6, "feet"),
  7323. weight: math.unit(600, "lbs"),
  7324. name: "Back",
  7325. image: {
  7326. source: "./media/characters/surgo/back.svg",
  7327. extra: 3557 / 2228
  7328. }
  7329. },
  7330. laying: {
  7331. height: math.unit(6 * 0.85, "feet"),
  7332. weight: math.unit(600, "lbs"),
  7333. name: "Laying",
  7334. image: {
  7335. source: "./media/characters/surgo/laying.svg"
  7336. }
  7337. },
  7338. },
  7339. [
  7340. {
  7341. name: "Normal",
  7342. height: math.unit(6, "feet"),
  7343. default: true
  7344. }
  7345. ]
  7346. ))
  7347. characterMakers.push(() => makeCharacter(
  7348. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7349. {
  7350. side: {
  7351. height: math.unit(6, "feet"),
  7352. weight: math.unit(150, "lbs"),
  7353. name: "Side",
  7354. image: {
  7355. source: "./media/characters/cibus/side.svg",
  7356. extra: 800 / 400
  7357. }
  7358. },
  7359. },
  7360. [
  7361. {
  7362. name: "Normal",
  7363. height: math.unit(6, "feet"),
  7364. default: true
  7365. }
  7366. ]
  7367. ))
  7368. characterMakers.push(() => makeCharacter(
  7369. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7370. {
  7371. front: {
  7372. height: math.unit(6, "feet"),
  7373. weight: math.unit(240, "lbs"),
  7374. name: "Front",
  7375. image: {
  7376. source: "./media/characters/nibbles/front.svg"
  7377. }
  7378. },
  7379. side: {
  7380. height: math.unit(6, "feet"),
  7381. weight: math.unit(240, "lbs"),
  7382. name: "Side",
  7383. image: {
  7384. source: "./media/characters/nibbles/side.svg"
  7385. }
  7386. },
  7387. },
  7388. [
  7389. {
  7390. name: "Normal",
  7391. height: math.unit(9, "feet"),
  7392. default: true
  7393. }
  7394. ]
  7395. ))
  7396. characterMakers.push(() => makeCharacter(
  7397. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7398. {
  7399. side: {
  7400. height: math.unit(5 + 1 / 6, "feet"),
  7401. weight: math.unit(130, "lbs"),
  7402. name: "Side",
  7403. image: {
  7404. source: "./media/characters/rikky/side.svg",
  7405. extra: 851 / 801
  7406. }
  7407. },
  7408. },
  7409. [
  7410. {
  7411. name: "Normal",
  7412. height: math.unit(5 + 1 / 6, "feet")
  7413. },
  7414. {
  7415. name: "Macro",
  7416. height: math.unit(152, "feet"),
  7417. default: true
  7418. },
  7419. {
  7420. name: "Megamacro",
  7421. height: math.unit(7, "miles")
  7422. }
  7423. ]
  7424. ))
  7425. characterMakers.push(() => makeCharacter(
  7426. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7427. {
  7428. side: {
  7429. height: math.unit(370, "cm"),
  7430. weight: math.unit(350, "lbs"),
  7431. name: "Side",
  7432. image: {
  7433. source: "./media/characters/malfressa/side.svg"
  7434. }
  7435. },
  7436. walking: {
  7437. height: math.unit(370, "cm"),
  7438. weight: math.unit(350, "lbs"),
  7439. name: "Walking",
  7440. image: {
  7441. source: "./media/characters/malfressa/walking.svg"
  7442. }
  7443. },
  7444. feral: {
  7445. height: math.unit(2500, "cm"),
  7446. weight: math.unit(100000, "lbs"),
  7447. name: "Feral",
  7448. image: {
  7449. source: "./media/characters/malfressa/feral.svg",
  7450. extra: 2108 / 837,
  7451. bottom: 0.02
  7452. }
  7453. },
  7454. },
  7455. [
  7456. {
  7457. name: "Normal",
  7458. height: math.unit(370, "cm")
  7459. },
  7460. {
  7461. name: "Macro",
  7462. height: math.unit(300, "meters"),
  7463. default: true
  7464. }
  7465. ]
  7466. ))
  7467. characterMakers.push(() => makeCharacter(
  7468. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7469. {
  7470. front: {
  7471. height: math.unit(6, "feet"),
  7472. weight: math.unit(60, "kg"),
  7473. name: "Front",
  7474. image: {
  7475. source: "./media/characters/jaro/front.svg",
  7476. extra: 845/817,
  7477. bottom: 45/890
  7478. }
  7479. },
  7480. back: {
  7481. height: math.unit(6, "feet"),
  7482. weight: math.unit(60, "kg"),
  7483. name: "Back",
  7484. image: {
  7485. source: "./media/characters/jaro/back.svg",
  7486. extra: 847/817,
  7487. bottom: 34/881
  7488. }
  7489. },
  7490. },
  7491. [
  7492. {
  7493. name: "Micro",
  7494. height: math.unit(7, "inches")
  7495. },
  7496. {
  7497. name: "Normal",
  7498. height: math.unit(5.5, "feet"),
  7499. default: true
  7500. },
  7501. {
  7502. name: "Minimacro",
  7503. height: math.unit(20, "feet")
  7504. },
  7505. {
  7506. name: "Macro",
  7507. height: math.unit(200, "meters")
  7508. }
  7509. ]
  7510. ))
  7511. characterMakers.push(() => makeCharacter(
  7512. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7513. {
  7514. front: {
  7515. height: math.unit(6, "feet"),
  7516. weight: math.unit(195, "lb"),
  7517. name: "Front",
  7518. image: {
  7519. source: "./media/characters/rogue/front.svg"
  7520. }
  7521. },
  7522. },
  7523. [
  7524. {
  7525. name: "Macro",
  7526. height: math.unit(90, "feet"),
  7527. default: true
  7528. },
  7529. ]
  7530. ))
  7531. characterMakers.push(() => makeCharacter(
  7532. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7533. {
  7534. standing: {
  7535. height: math.unit(5 + 8 / 12, "feet"),
  7536. weight: math.unit(140, "lb"),
  7537. name: "Standing",
  7538. image: {
  7539. source: "./media/characters/piper/standing.svg",
  7540. extra: 1440/1284,
  7541. bottom: 66/1506
  7542. }
  7543. },
  7544. running: {
  7545. height: math.unit(5 + 8 / 12, "feet"),
  7546. weight: math.unit(140, "lb"),
  7547. name: "Running",
  7548. image: {
  7549. source: "./media/characters/piper/running.svg",
  7550. extra: 3948/3655,
  7551. bottom: 0/3948
  7552. }
  7553. },
  7554. sole: {
  7555. height: math.unit(0.81, "feet"),
  7556. weight: math.unit(2, "kg"),
  7557. name: "Sole",
  7558. image: {
  7559. source: "./media/characters/piper/sole.svg"
  7560. }
  7561. },
  7562. nipple: {
  7563. height: math.unit(0.25, "feet"),
  7564. weight: math.unit(1.5, "lb"),
  7565. name: "Nipple",
  7566. image: {
  7567. source: "./media/characters/piper/nipple.svg"
  7568. }
  7569. },
  7570. head: {
  7571. height: math.unit(1.1, "feet"),
  7572. name: "Head",
  7573. image: {
  7574. source: "./media/characters/piper/head.svg"
  7575. }
  7576. },
  7577. },
  7578. [
  7579. {
  7580. name: "Micro",
  7581. height: math.unit(2, "inches")
  7582. },
  7583. {
  7584. name: "Normal",
  7585. height: math.unit(5 + 8 / 12, "feet")
  7586. },
  7587. {
  7588. name: "Macro",
  7589. height: math.unit(250, "feet"),
  7590. default: true
  7591. },
  7592. {
  7593. name: "Megamacro",
  7594. height: math.unit(7, "miles")
  7595. },
  7596. ]
  7597. ))
  7598. characterMakers.push(() => makeCharacter(
  7599. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7600. {
  7601. front: {
  7602. height: math.unit(6, "feet"),
  7603. weight: math.unit(220, "lb"),
  7604. name: "Front",
  7605. image: {
  7606. source: "./media/characters/gemini/front.svg"
  7607. }
  7608. },
  7609. back: {
  7610. height: math.unit(6, "feet"),
  7611. weight: math.unit(220, "lb"),
  7612. name: "Back",
  7613. image: {
  7614. source: "./media/characters/gemini/back.svg"
  7615. }
  7616. },
  7617. kneeling: {
  7618. height: math.unit(6 / 1.5, "feet"),
  7619. weight: math.unit(220, "lb"),
  7620. name: "Kneeling",
  7621. image: {
  7622. source: "./media/characters/gemini/kneeling.svg",
  7623. bottom: 0.02
  7624. }
  7625. },
  7626. },
  7627. [
  7628. {
  7629. name: "Macro",
  7630. height: math.unit(300, "meters"),
  7631. default: true
  7632. },
  7633. {
  7634. name: "Megamacro",
  7635. height: math.unit(6900, "meters")
  7636. },
  7637. ]
  7638. ))
  7639. characterMakers.push(() => makeCharacter(
  7640. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7641. {
  7642. anthro: {
  7643. height: math.unit(2.35, "meters"),
  7644. weight: math.unit(73, "kg"),
  7645. name: "Anthro",
  7646. image: {
  7647. source: "./media/characters/alicia/anthro.svg",
  7648. extra: 2571 / 2385,
  7649. bottom: 75 / 2648
  7650. }
  7651. },
  7652. paw: {
  7653. height: math.unit(1.32, "feet"),
  7654. name: "Paw",
  7655. image: {
  7656. source: "./media/characters/alicia/paw.svg"
  7657. }
  7658. },
  7659. feral: {
  7660. height: math.unit(1.69, "meters"),
  7661. weight: math.unit(73, "kg"),
  7662. name: "Feral",
  7663. image: {
  7664. source: "./media/characters/alicia/feral.svg",
  7665. extra: 2123 / 1715,
  7666. bottom: 222 / 2349
  7667. }
  7668. },
  7669. },
  7670. [
  7671. {
  7672. name: "Normal",
  7673. height: math.unit(2.35, "meters")
  7674. },
  7675. {
  7676. name: "Macro",
  7677. height: math.unit(60, "meters"),
  7678. default: true
  7679. },
  7680. {
  7681. name: "Megamacro",
  7682. height: math.unit(10000, "kilometers")
  7683. },
  7684. ]
  7685. ))
  7686. characterMakers.push(() => makeCharacter(
  7687. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7688. {
  7689. front: {
  7690. height: math.unit(7, "feet"),
  7691. weight: math.unit(250, "lbs"),
  7692. name: "Front",
  7693. image: {
  7694. source: "./media/characters/archy/front.svg"
  7695. }
  7696. }
  7697. },
  7698. [
  7699. {
  7700. name: "Micro",
  7701. height: math.unit(1, "inch")
  7702. },
  7703. {
  7704. name: "Shorty",
  7705. height: math.unit(5, "feet")
  7706. },
  7707. {
  7708. name: "Normal",
  7709. height: math.unit(7, "feet")
  7710. },
  7711. {
  7712. name: "Macro",
  7713. height: math.unit(600, "meters"),
  7714. default: true
  7715. },
  7716. {
  7717. name: "Megamacro",
  7718. height: math.unit(1, "mile")
  7719. },
  7720. ]
  7721. ))
  7722. characterMakers.push(() => makeCharacter(
  7723. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7724. {
  7725. front: {
  7726. height: math.unit(1.65, "meters"),
  7727. weight: math.unit(74, "kg"),
  7728. name: "Front",
  7729. image: {
  7730. source: "./media/characters/berri/front.svg",
  7731. extra: 857 / 837,
  7732. bottom: 18 / 877
  7733. }
  7734. },
  7735. bum: {
  7736. height: math.unit(1.46, "feet"),
  7737. name: "Bum",
  7738. image: {
  7739. source: "./media/characters/berri/bum.svg"
  7740. }
  7741. },
  7742. mouth: {
  7743. height: math.unit(0.44, "feet"),
  7744. name: "Mouth",
  7745. image: {
  7746. source: "./media/characters/berri/mouth.svg"
  7747. }
  7748. },
  7749. paw: {
  7750. height: math.unit(0.826, "feet"),
  7751. name: "Paw",
  7752. image: {
  7753. source: "./media/characters/berri/paw.svg"
  7754. }
  7755. },
  7756. },
  7757. [
  7758. {
  7759. name: "Normal",
  7760. height: math.unit(1.65, "meters")
  7761. },
  7762. {
  7763. name: "Macro",
  7764. height: math.unit(60, "m"),
  7765. default: true
  7766. },
  7767. {
  7768. name: "Megamacro",
  7769. height: math.unit(9.213, "km")
  7770. },
  7771. {
  7772. name: "Planet Eater",
  7773. height: math.unit(489, "megameters")
  7774. },
  7775. {
  7776. name: "Teramacro",
  7777. height: math.unit(2471635000000, "meters")
  7778. },
  7779. {
  7780. name: "Examacro",
  7781. height: math.unit(8.0624e+26, "meters")
  7782. }
  7783. ]
  7784. ))
  7785. characterMakers.push(() => makeCharacter(
  7786. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7787. {
  7788. front: {
  7789. height: math.unit(1.72, "meters"),
  7790. weight: math.unit(68, "kg"),
  7791. name: "Front",
  7792. image: {
  7793. source: "./media/characters/lexi/front.svg"
  7794. }
  7795. }
  7796. },
  7797. [
  7798. {
  7799. name: "Very Smol",
  7800. height: math.unit(10, "mm")
  7801. },
  7802. {
  7803. name: "Micro",
  7804. height: math.unit(6.8, "cm"),
  7805. default: true
  7806. },
  7807. {
  7808. name: "Normal",
  7809. height: math.unit(1.72, "m")
  7810. }
  7811. ]
  7812. ))
  7813. characterMakers.push(() => makeCharacter(
  7814. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7815. {
  7816. front: {
  7817. height: math.unit(1.69, "meters"),
  7818. weight: math.unit(68, "kg"),
  7819. name: "Front",
  7820. image: {
  7821. source: "./media/characters/martin/front.svg",
  7822. extra: 596 / 581
  7823. }
  7824. }
  7825. },
  7826. [
  7827. {
  7828. name: "Micro",
  7829. height: math.unit(6.85, "cm"),
  7830. default: true
  7831. },
  7832. {
  7833. name: "Normal",
  7834. height: math.unit(1.69, "m")
  7835. }
  7836. ]
  7837. ))
  7838. characterMakers.push(() => makeCharacter(
  7839. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7840. {
  7841. front: {
  7842. height: math.unit(1.69, "meters"),
  7843. weight: math.unit(68, "kg"),
  7844. name: "Front",
  7845. image: {
  7846. source: "./media/characters/juno/front.svg"
  7847. }
  7848. }
  7849. },
  7850. [
  7851. {
  7852. name: "Micro",
  7853. height: math.unit(7, "cm")
  7854. },
  7855. {
  7856. name: "Normal",
  7857. height: math.unit(1.89, "m")
  7858. },
  7859. {
  7860. name: "Macro",
  7861. height: math.unit(353, "meters"),
  7862. default: true
  7863. }
  7864. ]
  7865. ))
  7866. characterMakers.push(() => makeCharacter(
  7867. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7868. {
  7869. front: {
  7870. height: math.unit(1.93, "meters"),
  7871. weight: math.unit(83, "kg"),
  7872. name: "Front",
  7873. image: {
  7874. source: "./media/characters/samantha/front.svg"
  7875. }
  7876. },
  7877. frontClothed: {
  7878. height: math.unit(1.93, "meters"),
  7879. weight: math.unit(83, "kg"),
  7880. name: "Front (Clothed)",
  7881. image: {
  7882. source: "./media/characters/samantha/front-clothed.svg"
  7883. }
  7884. },
  7885. back: {
  7886. height: math.unit(1.93, "meters"),
  7887. weight: math.unit(83, "kg"),
  7888. name: "Back",
  7889. image: {
  7890. source: "./media/characters/samantha/back.svg"
  7891. }
  7892. },
  7893. },
  7894. [
  7895. {
  7896. name: "Normal",
  7897. height: math.unit(1.93, "m")
  7898. },
  7899. {
  7900. name: "Macro",
  7901. height: math.unit(74, "meters"),
  7902. default: true
  7903. },
  7904. {
  7905. name: "Macro+",
  7906. height: math.unit(223, "meters"),
  7907. },
  7908. {
  7909. name: "Megamacro",
  7910. height: math.unit(8381, "meters"),
  7911. },
  7912. {
  7913. name: "Megamacro+",
  7914. height: math.unit(12000, "kilometers")
  7915. },
  7916. ]
  7917. ))
  7918. characterMakers.push(() => makeCharacter(
  7919. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7920. {
  7921. front: {
  7922. height: math.unit(1.92, "meters"),
  7923. weight: math.unit(80, "kg"),
  7924. name: "Front",
  7925. image: {
  7926. source: "./media/characters/dr-clay/front.svg"
  7927. }
  7928. },
  7929. frontClothed: {
  7930. height: math.unit(1.92, "meters"),
  7931. weight: math.unit(80, "kg"),
  7932. name: "Front (Clothed)",
  7933. image: {
  7934. source: "./media/characters/dr-clay/front-clothed.svg"
  7935. }
  7936. }
  7937. },
  7938. [
  7939. {
  7940. name: "Normal",
  7941. height: math.unit(1.92, "m")
  7942. },
  7943. {
  7944. name: "Macro",
  7945. height: math.unit(214, "meters"),
  7946. default: true
  7947. },
  7948. {
  7949. name: "Macro+",
  7950. height: math.unit(12.237, "meters"),
  7951. },
  7952. {
  7953. name: "Megamacro",
  7954. height: math.unit(557, "megameters"),
  7955. },
  7956. {
  7957. name: "Unimaginable",
  7958. height: math.unit(120e9, "lightyears")
  7959. },
  7960. ]
  7961. ))
  7962. characterMakers.push(() => makeCharacter(
  7963. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7964. {
  7965. front: {
  7966. height: math.unit(2, "meters"),
  7967. weight: math.unit(80, "kg"),
  7968. name: "Front",
  7969. image: {
  7970. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7971. }
  7972. }
  7973. },
  7974. [
  7975. {
  7976. name: "Teramacro",
  7977. height: math.unit(500000, "lightyears"),
  7978. default: true
  7979. },
  7980. ]
  7981. ))
  7982. characterMakers.push(() => makeCharacter(
  7983. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7984. {
  7985. crux: {
  7986. height: math.unit(2, "meters"),
  7987. weight: math.unit(150, "kg"),
  7988. name: "Crux",
  7989. image: {
  7990. source: "./media/characters/vemus/crux.svg",
  7991. extra: 1074/936,
  7992. bottom: 23/1097
  7993. }
  7994. },
  7995. skunkTanuki: {
  7996. height: math.unit(2, "meters"),
  7997. weight: math.unit(150, "kg"),
  7998. name: "Skunk-Tanuki",
  7999. image: {
  8000. source: "./media/characters/vemus/skunk-tanuki.svg",
  8001. extra: 926/893,
  8002. bottom: 20/946
  8003. }
  8004. },
  8005. },
  8006. [
  8007. {
  8008. name: "Normal",
  8009. height: math.unit(4, "meters"),
  8010. default: true
  8011. },
  8012. {
  8013. name: "Big",
  8014. height: math.unit(8, "meters")
  8015. },
  8016. {
  8017. name: "Macro",
  8018. height: math.unit(100, "meters")
  8019. },
  8020. {
  8021. name: "Macro+",
  8022. height: math.unit(1500, "meters")
  8023. },
  8024. {
  8025. name: "Stellar",
  8026. height: math.unit(14e8, "meters")
  8027. },
  8028. ]
  8029. ))
  8030. characterMakers.push(() => makeCharacter(
  8031. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8032. {
  8033. front: {
  8034. height: math.unit(2, "meters"),
  8035. weight: math.unit(70, "kg"),
  8036. name: "Front",
  8037. image: {
  8038. source: "./media/characters/beherit/front.svg",
  8039. extra: 1234/1109,
  8040. bottom: 55/1289
  8041. }
  8042. }
  8043. },
  8044. [
  8045. {
  8046. name: "Normal",
  8047. height: math.unit(6, "feet")
  8048. },
  8049. {
  8050. name: "Lorg",
  8051. height: math.unit(25, "feet"),
  8052. default: true
  8053. },
  8054. {
  8055. name: "Lorger",
  8056. height: math.unit(75, "feet")
  8057. },
  8058. {
  8059. name: "Macro",
  8060. height: math.unit(200, "meters")
  8061. },
  8062. ]
  8063. ))
  8064. characterMakers.push(() => makeCharacter(
  8065. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8066. {
  8067. front: {
  8068. height: math.unit(2, "meters"),
  8069. weight: math.unit(150, "kg"),
  8070. name: "Front",
  8071. image: {
  8072. source: "./media/characters/everett/front.svg",
  8073. extra: 1017/866,
  8074. bottom: 86/1103
  8075. }
  8076. },
  8077. paw: {
  8078. height: math.unit(2 / 3.6, "meters"),
  8079. name: "Paw",
  8080. image: {
  8081. source: "./media/characters/everett/paw.svg"
  8082. }
  8083. },
  8084. },
  8085. [
  8086. {
  8087. name: "Normal",
  8088. height: math.unit(15, "feet"),
  8089. default: true
  8090. },
  8091. {
  8092. name: "Lorg",
  8093. height: math.unit(70, "feet"),
  8094. default: true
  8095. },
  8096. {
  8097. name: "Lorger",
  8098. height: math.unit(250, "feet")
  8099. },
  8100. {
  8101. name: "Macro",
  8102. height: math.unit(500, "meters")
  8103. },
  8104. ]
  8105. ))
  8106. characterMakers.push(() => makeCharacter(
  8107. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8108. {
  8109. front: {
  8110. height: math.unit(2, "meters"),
  8111. weight: math.unit(86, "kg"),
  8112. name: "Front",
  8113. image: {
  8114. source: "./media/characters/rose/front.svg",
  8115. extra: 1785/1636,
  8116. bottom: 30/1815
  8117. },
  8118. form: "liom",
  8119. default: true
  8120. },
  8121. frontSporty: {
  8122. height: math.unit(2, "meters"),
  8123. weight: math.unit(86, "kg"),
  8124. name: "Front (Sporty)",
  8125. image: {
  8126. source: "./media/characters/rose/front-sporty.svg",
  8127. extra: 350/335,
  8128. bottom: 10/360
  8129. },
  8130. form: "liom"
  8131. },
  8132. frontAlt: {
  8133. height: math.unit(1.6, "meters"),
  8134. weight: math.unit(86, "kg"),
  8135. name: "Front (Alt)",
  8136. image: {
  8137. source: "./media/characters/rose/front-alt.svg",
  8138. extra: 299/283,
  8139. bottom: 3/302
  8140. },
  8141. form: "liom"
  8142. },
  8143. plush: {
  8144. height: math.unit(2, "meters"),
  8145. weight: math.unit(86/3, "kg"),
  8146. name: "Plush",
  8147. image: {
  8148. source: "./media/characters/rose/plush.svg",
  8149. extra: 361/337,
  8150. bottom: 11/372
  8151. },
  8152. form: "plush",
  8153. default: true
  8154. },
  8155. faeStanding: {
  8156. height: math.unit(10, "cm"),
  8157. weight: math.unit(10, "grams"),
  8158. name: "Standing",
  8159. image: {
  8160. source: "./media/characters/rose/fae-standing.svg",
  8161. extra: 1189/1060,
  8162. bottom: 27/1216
  8163. },
  8164. form: "fae",
  8165. default: true
  8166. },
  8167. faeSitting: {
  8168. height: math.unit(5, "cm"),
  8169. weight: math.unit(10, "grams"),
  8170. name: "Sitting",
  8171. image: {
  8172. source: "./media/characters/rose/fae-sitting.svg",
  8173. extra: 737/577,
  8174. bottom: 356/1093
  8175. },
  8176. form: "fae"
  8177. },
  8178. faePaw: {
  8179. height: math.unit(1.35, "cm"),
  8180. name: "Paw",
  8181. image: {
  8182. source: "./media/characters/rose/fae-paw.svg"
  8183. },
  8184. form: "fae"
  8185. },
  8186. },
  8187. [
  8188. {
  8189. name: "True Micro",
  8190. height: math.unit(9, "cm"),
  8191. form: "liom"
  8192. },
  8193. {
  8194. name: "Micro",
  8195. height: math.unit(16, "cm"),
  8196. form: "liom"
  8197. },
  8198. {
  8199. name: "Normal",
  8200. height: math.unit(1.85, "meters"),
  8201. default: true,
  8202. form: "liom"
  8203. },
  8204. {
  8205. name: "Mini-Macro",
  8206. height: math.unit(5, "meters"),
  8207. form: "liom"
  8208. },
  8209. {
  8210. name: "Macro",
  8211. height: math.unit(15, "meters"),
  8212. form: "liom"
  8213. },
  8214. {
  8215. name: "True Macro",
  8216. height: math.unit(40, "meters"),
  8217. form: "liom"
  8218. },
  8219. {
  8220. name: "City Scale",
  8221. height: math.unit(1, "km"),
  8222. form: "liom"
  8223. },
  8224. {
  8225. name: "Plushie",
  8226. height: math.unit(9, "cm"),
  8227. form: "plush",
  8228. default: true
  8229. },
  8230. {
  8231. name: "Fae",
  8232. height: math.unit(10, "cm"),
  8233. form: "fae",
  8234. default: true
  8235. },
  8236. ],
  8237. {
  8238. "liom": {
  8239. name: "Liom"
  8240. },
  8241. "plush": {
  8242. name: "Plush"
  8243. },
  8244. "fae": {
  8245. name: "Fae Fox",
  8246. default: true
  8247. }
  8248. }
  8249. ))
  8250. characterMakers.push(() => makeCharacter(
  8251. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8252. {
  8253. front: {
  8254. height: math.unit(2, "meters"),
  8255. weight: math.unit(350, "lbs"),
  8256. name: "Front",
  8257. image: {
  8258. source: "./media/characters/regal/front.svg"
  8259. }
  8260. },
  8261. back: {
  8262. height: math.unit(2, "meters"),
  8263. weight: math.unit(350, "lbs"),
  8264. name: "Back",
  8265. image: {
  8266. source: "./media/characters/regal/back.svg"
  8267. }
  8268. },
  8269. },
  8270. [
  8271. {
  8272. name: "Macro",
  8273. height: math.unit(350, "feet"),
  8274. default: true
  8275. }
  8276. ]
  8277. ))
  8278. characterMakers.push(() => makeCharacter(
  8279. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8280. {
  8281. standing: {
  8282. height: math.unit(4 + 11/12, "feet"),
  8283. weight: math.unit(100, "lb"),
  8284. name: "Standing",
  8285. image: {
  8286. source: "./media/characters/opal/standing.svg",
  8287. extra: 1588/1513,
  8288. bottom: 23/1611
  8289. }
  8290. },
  8291. sitting: {
  8292. height: math.unit(2.3, "feet"),
  8293. weight: math.unit(100, "lb"),
  8294. name: "Sitting",
  8295. image: {
  8296. source: "./media/characters/opal/sitting.svg",
  8297. extra: 1031/892,
  8298. bottom: 142/1173
  8299. }
  8300. },
  8301. hand: {
  8302. height: math.unit(0.59, "feet"),
  8303. name: "Hand",
  8304. image: {
  8305. source: "./media/characters/opal/hand.svg"
  8306. }
  8307. },
  8308. foot: {
  8309. height: math.unit(0.61, "feet"),
  8310. name: "Foot",
  8311. image: {
  8312. source: "./media/characters/opal/foot.svg"
  8313. }
  8314. },
  8315. },
  8316. [
  8317. {
  8318. name: "Small",
  8319. height: math.unit(4 + 11 / 12, "feet")
  8320. },
  8321. {
  8322. name: "Normal",
  8323. height: math.unit(20, "feet"),
  8324. default: true
  8325. },
  8326. {
  8327. name: "Macro",
  8328. height: math.unit(120, "feet")
  8329. },
  8330. {
  8331. name: "Megamacro",
  8332. height: math.unit(80, "miles")
  8333. },
  8334. {
  8335. name: "True Size",
  8336. height: math.unit(100000, "lightyears")
  8337. },
  8338. ]
  8339. ))
  8340. characterMakers.push(() => makeCharacter(
  8341. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8342. {
  8343. front: {
  8344. height: math.unit(6, "feet"),
  8345. weight: math.unit(200, "lbs"),
  8346. name: "Front",
  8347. image: {
  8348. source: "./media/characters/vector-wuff/front.svg"
  8349. }
  8350. }
  8351. },
  8352. [
  8353. {
  8354. name: "Normal",
  8355. height: math.unit(2.8, "meters")
  8356. },
  8357. {
  8358. name: "Macro",
  8359. height: math.unit(450, "meters"),
  8360. default: true
  8361. },
  8362. {
  8363. name: "Megamacro",
  8364. height: math.unit(15, "kilometers")
  8365. }
  8366. ]
  8367. ))
  8368. characterMakers.push(() => makeCharacter(
  8369. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8370. {
  8371. front: {
  8372. height: math.unit(6, "feet"),
  8373. weight: math.unit(256, "lbs"),
  8374. name: "Front",
  8375. image: {
  8376. source: "./media/characters/dannik/front.svg"
  8377. }
  8378. }
  8379. },
  8380. [
  8381. {
  8382. name: "Macro",
  8383. height: math.unit(69.57, "meters"),
  8384. default: true
  8385. },
  8386. ]
  8387. ))
  8388. characterMakers.push(() => makeCharacter(
  8389. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8390. {
  8391. front: {
  8392. height: math.unit(6, "feet"),
  8393. weight: math.unit(120, "lbs"),
  8394. name: "Front",
  8395. image: {
  8396. source: "./media/characters/azura-saharah/front.svg"
  8397. }
  8398. },
  8399. back: {
  8400. height: math.unit(6, "feet"),
  8401. weight: math.unit(120, "lbs"),
  8402. name: "Back",
  8403. image: {
  8404. source: "./media/characters/azura-saharah/back.svg"
  8405. }
  8406. },
  8407. },
  8408. [
  8409. {
  8410. name: "Macro",
  8411. height: math.unit(100, "feet"),
  8412. default: true
  8413. },
  8414. ]
  8415. ))
  8416. characterMakers.push(() => makeCharacter(
  8417. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8418. {
  8419. side: {
  8420. height: math.unit(5 + 4 / 12, "feet"),
  8421. weight: math.unit(163, "lbs"),
  8422. name: "Side",
  8423. image: {
  8424. source: "./media/characters/kennedy/side.svg"
  8425. }
  8426. }
  8427. },
  8428. [
  8429. {
  8430. name: "Standard Doggo",
  8431. height: math.unit(5 + 4 / 12, "feet")
  8432. },
  8433. {
  8434. name: "Big Doggo",
  8435. height: math.unit(25 + 3 / 12, "feet"),
  8436. default: true
  8437. },
  8438. ]
  8439. ))
  8440. characterMakers.push(() => makeCharacter(
  8441. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8442. {
  8443. front: {
  8444. height: math.unit(5 + 5/12, "feet"),
  8445. weight: math.unit(100, "lbs"),
  8446. name: "Front",
  8447. image: {
  8448. source: "./media/characters/odios-de-lunar/front.svg",
  8449. extra: 1468/1323,
  8450. bottom: 22/1490
  8451. }
  8452. }
  8453. },
  8454. [
  8455. {
  8456. name: "Micro",
  8457. height: math.unit(3, "inches")
  8458. },
  8459. {
  8460. name: "Normal",
  8461. height: math.unit(5.5, "feet"),
  8462. default: true
  8463. },
  8464. {
  8465. name: "Macro",
  8466. height: math.unit(100, "feet")
  8467. },
  8468. ]
  8469. ))
  8470. characterMakers.push(() => makeCharacter(
  8471. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8472. {
  8473. back: {
  8474. height: math.unit(6, "feet"),
  8475. weight: math.unit(220, "lbs"),
  8476. name: "Back",
  8477. image: {
  8478. source: "./media/characters/mandake/back.svg"
  8479. }
  8480. }
  8481. },
  8482. [
  8483. {
  8484. name: "Normal",
  8485. height: math.unit(7, "feet"),
  8486. default: true
  8487. },
  8488. {
  8489. name: "Macro",
  8490. height: math.unit(78, "feet")
  8491. },
  8492. {
  8493. name: "Macro+",
  8494. height: math.unit(300, "meters")
  8495. },
  8496. {
  8497. name: "Macro++",
  8498. height: math.unit(2400, "feet")
  8499. },
  8500. {
  8501. name: "Megamacro",
  8502. height: math.unit(5167, "meters")
  8503. },
  8504. {
  8505. name: "Gigamacro",
  8506. height: math.unit(41769, "miles")
  8507. },
  8508. ]
  8509. ))
  8510. characterMakers.push(() => makeCharacter(
  8511. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8512. {
  8513. front: {
  8514. height: math.unit(6, "feet"),
  8515. weight: math.unit(120, "lbs"),
  8516. name: "Front",
  8517. image: {
  8518. source: "./media/characters/yozey/front.svg"
  8519. }
  8520. },
  8521. frontAlt: {
  8522. height: math.unit(6, "feet"),
  8523. weight: math.unit(120, "lbs"),
  8524. name: "Front (Alt)",
  8525. image: {
  8526. source: "./media/characters/yozey/front-alt.svg"
  8527. }
  8528. },
  8529. side: {
  8530. height: math.unit(6, "feet"),
  8531. weight: math.unit(120, "lbs"),
  8532. name: "Side",
  8533. image: {
  8534. source: "./media/characters/yozey/side.svg"
  8535. }
  8536. },
  8537. },
  8538. [
  8539. {
  8540. name: "Micro",
  8541. height: math.unit(3, "inches"),
  8542. default: true
  8543. },
  8544. {
  8545. name: "Normal",
  8546. height: math.unit(6, "feet")
  8547. }
  8548. ]
  8549. ))
  8550. characterMakers.push(() => makeCharacter(
  8551. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8552. {
  8553. front: {
  8554. height: math.unit(6, "feet"),
  8555. weight: math.unit(103, "lbs"),
  8556. name: "Front",
  8557. image: {
  8558. source: "./media/characters/valeska-voss/front.svg"
  8559. }
  8560. }
  8561. },
  8562. [
  8563. {
  8564. name: "Mini-Sized Sub",
  8565. height: math.unit(3.1, "inches")
  8566. },
  8567. {
  8568. name: "Mid-Sized Sub",
  8569. height: math.unit(6.2, "inches")
  8570. },
  8571. {
  8572. name: "Full-Sized Sub",
  8573. height: math.unit(9.3, "inches")
  8574. },
  8575. {
  8576. name: "Normal",
  8577. height: math.unit(5 + 2 / 12, "foot"),
  8578. default: true
  8579. },
  8580. ]
  8581. ))
  8582. characterMakers.push(() => makeCharacter(
  8583. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8584. {
  8585. front: {
  8586. height: math.unit(6, "feet"),
  8587. weight: math.unit(160, "lbs"),
  8588. name: "Front",
  8589. image: {
  8590. source: "./media/characters/gene-zeta/front.svg",
  8591. extra: 3006 / 2826,
  8592. bottom: 182 / 3188
  8593. }
  8594. }
  8595. },
  8596. [
  8597. {
  8598. name: "Micro",
  8599. height: math.unit(6, "inches")
  8600. },
  8601. {
  8602. name: "Normal",
  8603. height: math.unit(5 + 11 / 12, "foot"),
  8604. default: true
  8605. },
  8606. {
  8607. name: "Macro",
  8608. height: math.unit(140, "feet")
  8609. },
  8610. {
  8611. name: "Supercharged",
  8612. height: math.unit(2500, "feet")
  8613. },
  8614. ]
  8615. ))
  8616. characterMakers.push(() => makeCharacter(
  8617. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8618. {
  8619. front: {
  8620. height: math.unit(6, "feet"),
  8621. weight: math.unit(350, "lbs"),
  8622. name: "Front",
  8623. image: {
  8624. source: "./media/characters/razinox/front.svg",
  8625. extra: 1686 / 1548,
  8626. bottom: 28.2 / 1868
  8627. }
  8628. },
  8629. back: {
  8630. height: math.unit(6, "feet"),
  8631. weight: math.unit(350, "lbs"),
  8632. name: "Back",
  8633. image: {
  8634. source: "./media/characters/razinox/back.svg",
  8635. extra: 1660 / 1590,
  8636. bottom: 15 / 1665
  8637. }
  8638. },
  8639. },
  8640. [
  8641. {
  8642. name: "Normal",
  8643. height: math.unit(10 + 8 / 12, "foot")
  8644. },
  8645. {
  8646. name: "Minimacro",
  8647. height: math.unit(15, "foot")
  8648. },
  8649. {
  8650. name: "Macro",
  8651. height: math.unit(60, "foot"),
  8652. default: true
  8653. },
  8654. {
  8655. name: "Megamacro",
  8656. height: math.unit(5, "miles")
  8657. },
  8658. {
  8659. name: "Gigamacro",
  8660. height: math.unit(6000, "miles")
  8661. },
  8662. ]
  8663. ))
  8664. characterMakers.push(() => makeCharacter(
  8665. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8666. {
  8667. front: {
  8668. height: math.unit(6, "feet"),
  8669. weight: math.unit(150, "lbs"),
  8670. name: "Front",
  8671. image: {
  8672. source: "./media/characters/cobalt/front.svg"
  8673. }
  8674. }
  8675. },
  8676. [
  8677. {
  8678. name: "Normal",
  8679. height: math.unit(8 + 1 / 12, "foot")
  8680. },
  8681. {
  8682. name: "Macro",
  8683. height: math.unit(111, "foot"),
  8684. default: true
  8685. },
  8686. {
  8687. name: "Supracosmic",
  8688. height: math.unit(1e42, "feet")
  8689. },
  8690. ]
  8691. ))
  8692. characterMakers.push(() => makeCharacter(
  8693. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8694. {
  8695. front: {
  8696. height: math.unit(5, "inches"),
  8697. name: "Front",
  8698. image: {
  8699. source: "./media/characters/amanda/front.svg",
  8700. extra: 926/791,
  8701. bottom: 38/964
  8702. }
  8703. },
  8704. back: {
  8705. height: math.unit(5, "inches"),
  8706. name: "Back",
  8707. image: {
  8708. source: "./media/characters/amanda/back.svg",
  8709. extra: 909/805,
  8710. bottom: 43/952
  8711. }
  8712. },
  8713. },
  8714. [
  8715. {
  8716. name: "Micro",
  8717. height: math.unit(5, "inches"),
  8718. default: true
  8719. },
  8720. ]
  8721. ))
  8722. characterMakers.push(() => makeCharacter(
  8723. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8724. {
  8725. front: {
  8726. height: math.unit(2.75, "meters"),
  8727. weight: math.unit(1200, "lb"),
  8728. name: "Front",
  8729. image: {
  8730. source: "./media/characters/teal/front.svg",
  8731. extra: 2463 / 2320,
  8732. bottom: 166 / 2629
  8733. }
  8734. },
  8735. back: {
  8736. height: math.unit(2.75, "meters"),
  8737. weight: math.unit(1200, "lb"),
  8738. name: "Back",
  8739. image: {
  8740. source: "./media/characters/teal/back.svg",
  8741. extra: 2580 / 2489,
  8742. bottom: 151 / 2731
  8743. }
  8744. },
  8745. sitting: {
  8746. height: math.unit(1.9, "meters"),
  8747. weight: math.unit(1200, "lb"),
  8748. name: "Sitting",
  8749. image: {
  8750. source: "./media/characters/teal/sitting.svg",
  8751. extra: 623 / 590,
  8752. bottom: 121 / 744
  8753. }
  8754. },
  8755. standing: {
  8756. height: math.unit(2.75, "meters"),
  8757. weight: math.unit(1200, "lb"),
  8758. name: "Standing",
  8759. image: {
  8760. source: "./media/characters/teal/standing.svg",
  8761. extra: 923 / 893,
  8762. bottom: 60 / 983
  8763. }
  8764. },
  8765. stretching: {
  8766. height: math.unit(3.65, "meters"),
  8767. weight: math.unit(1200, "lb"),
  8768. name: "Stretching",
  8769. image: {
  8770. source: "./media/characters/teal/stretching.svg",
  8771. extra: 1276 / 1244,
  8772. bottom: 0 / 1276
  8773. }
  8774. },
  8775. legged: {
  8776. height: math.unit(1.3, "meters"),
  8777. weight: math.unit(100, "lb"),
  8778. name: "Legged",
  8779. image: {
  8780. source: "./media/characters/teal/legged.svg",
  8781. extra: 462 / 437,
  8782. bottom: 24 / 486
  8783. }
  8784. },
  8785. naga: {
  8786. height: math.unit(5.4, "meters"),
  8787. weight: math.unit(4000, "lb"),
  8788. name: "Naga",
  8789. image: {
  8790. source: "./media/characters/teal/naga.svg",
  8791. extra: 1902 / 1858,
  8792. bottom: 0 / 1902
  8793. }
  8794. },
  8795. hand: {
  8796. height: math.unit(0.52, "meters"),
  8797. name: "Hand",
  8798. image: {
  8799. source: "./media/characters/teal/hand.svg"
  8800. }
  8801. },
  8802. maw: {
  8803. height: math.unit(0.43, "meters"),
  8804. name: "Maw",
  8805. image: {
  8806. source: "./media/characters/teal/maw.svg"
  8807. }
  8808. },
  8809. slit: {
  8810. height: math.unit(0.25, "meters"),
  8811. name: "Slit",
  8812. image: {
  8813. source: "./media/characters/teal/slit.svg"
  8814. }
  8815. },
  8816. },
  8817. [
  8818. {
  8819. name: "Normal",
  8820. height: math.unit(2.75, "meters"),
  8821. default: true
  8822. },
  8823. {
  8824. name: "Macro",
  8825. height: math.unit(300, "feet")
  8826. },
  8827. {
  8828. name: "Macro+",
  8829. height: math.unit(2000, "feet")
  8830. },
  8831. ]
  8832. ))
  8833. characterMakers.push(() => makeCharacter(
  8834. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8835. {
  8836. frontCat: {
  8837. height: math.unit(6, "feet"),
  8838. weight: math.unit(180, "lbs"),
  8839. name: "Front (Cat)",
  8840. image: {
  8841. source: "./media/characters/ravin-amulet/front-cat.svg"
  8842. }
  8843. },
  8844. frontCatAlt: {
  8845. height: math.unit(6, "feet"),
  8846. weight: math.unit(180, "lbs"),
  8847. name: "Front (Alt, Cat)",
  8848. image: {
  8849. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8850. }
  8851. },
  8852. frontWerewolf: {
  8853. height: math.unit(6 * 1.2, "feet"),
  8854. weight: math.unit(225, "lbs"),
  8855. name: "Front (Werewolf)",
  8856. image: {
  8857. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8858. }
  8859. },
  8860. backWerewolf: {
  8861. height: math.unit(6 * 1.2, "feet"),
  8862. weight: math.unit(225, "lbs"),
  8863. name: "Back (Werewolf)",
  8864. image: {
  8865. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8866. }
  8867. },
  8868. },
  8869. [
  8870. {
  8871. name: "Nano",
  8872. height: math.unit(1, "micrometer")
  8873. },
  8874. {
  8875. name: "Micro",
  8876. height: math.unit(1, "inch")
  8877. },
  8878. {
  8879. name: "Normal",
  8880. height: math.unit(6, "feet"),
  8881. default: true
  8882. },
  8883. {
  8884. name: "Macro",
  8885. height: math.unit(60, "feet")
  8886. }
  8887. ]
  8888. ))
  8889. characterMakers.push(() => makeCharacter(
  8890. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8891. {
  8892. front: {
  8893. height: math.unit(6, "feet"),
  8894. weight: math.unit(165, "lbs"),
  8895. name: "Front",
  8896. image: {
  8897. source: "./media/characters/fluoresce/front.svg"
  8898. }
  8899. }
  8900. },
  8901. [
  8902. {
  8903. name: "Micro",
  8904. height: math.unit(6, "cm")
  8905. },
  8906. {
  8907. name: "Normal",
  8908. height: math.unit(5 + 7 / 12, "feet"),
  8909. default: true
  8910. },
  8911. {
  8912. name: "Macro",
  8913. height: math.unit(56, "feet")
  8914. },
  8915. {
  8916. name: "Megamacro",
  8917. height: math.unit(1.9, "miles")
  8918. },
  8919. ]
  8920. ))
  8921. characterMakers.push(() => makeCharacter(
  8922. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8923. {
  8924. front: {
  8925. height: math.unit(9 + 6 / 12, "feet"),
  8926. weight: math.unit(523, "lbs"),
  8927. name: "Side",
  8928. image: {
  8929. source: "./media/characters/aurora/side.svg",
  8930. extra: 474/393,
  8931. bottom: 5/479
  8932. }
  8933. }
  8934. },
  8935. [
  8936. {
  8937. name: "Normal",
  8938. height: math.unit(9 + 6 / 12, "feet")
  8939. },
  8940. {
  8941. name: "Macro",
  8942. height: math.unit(96, "feet"),
  8943. default: true
  8944. },
  8945. {
  8946. name: "Macro+",
  8947. height: math.unit(243, "feet")
  8948. },
  8949. ]
  8950. ))
  8951. characterMakers.push(() => makeCharacter(
  8952. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8953. {
  8954. front: {
  8955. height: math.unit(194, "cm"),
  8956. weight: math.unit(90, "kg"),
  8957. name: "Front",
  8958. image: {
  8959. source: "./media/characters/ranek/front.svg",
  8960. extra: 1862/1791,
  8961. bottom: 80/1942
  8962. }
  8963. },
  8964. back: {
  8965. height: math.unit(194, "cm"),
  8966. weight: math.unit(90, "kg"),
  8967. name: "Back",
  8968. image: {
  8969. source: "./media/characters/ranek/back.svg",
  8970. extra: 1853/1787,
  8971. bottom: 74/1927
  8972. }
  8973. },
  8974. feral: {
  8975. height: math.unit(30, "cm"),
  8976. weight: math.unit(1.6, "lbs"),
  8977. name: "Feral",
  8978. image: {
  8979. source: "./media/characters/ranek/feral.svg",
  8980. extra: 990/631,
  8981. bottom: 29/1019
  8982. }
  8983. },
  8984. },
  8985. [
  8986. {
  8987. name: "Normal",
  8988. height: math.unit(194, "cm"),
  8989. default: true
  8990. },
  8991. {
  8992. name: "Macro",
  8993. height: math.unit(100, "meters")
  8994. },
  8995. ]
  8996. ))
  8997. characterMakers.push(() => makeCharacter(
  8998. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8999. {
  9000. front: {
  9001. height: math.unit(5 + 6 / 12, "feet"),
  9002. weight: math.unit(153, "lbs"),
  9003. name: "Front",
  9004. image: {
  9005. source: "./media/characters/andrew-cooper/front.svg"
  9006. }
  9007. },
  9008. },
  9009. [
  9010. {
  9011. name: "Nano",
  9012. height: math.unit(1, "mm")
  9013. },
  9014. {
  9015. name: "Micro",
  9016. height: math.unit(2, "inches")
  9017. },
  9018. {
  9019. name: "Normal",
  9020. height: math.unit(5 + 6 / 12, "feet"),
  9021. default: true
  9022. }
  9023. ]
  9024. ))
  9025. characterMakers.push(() => makeCharacter(
  9026. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9027. {
  9028. front: {
  9029. height: math.unit(6, "feet"),
  9030. weight: math.unit(180, "lbs"),
  9031. name: "Front",
  9032. image: {
  9033. source: "./media/characters/akane-sato/front.svg",
  9034. extra: 1219 / 1140
  9035. }
  9036. },
  9037. back: {
  9038. height: math.unit(6, "feet"),
  9039. weight: math.unit(180, "lbs"),
  9040. name: "Back",
  9041. image: {
  9042. source: "./media/characters/akane-sato/back.svg",
  9043. extra: 1219 / 1170
  9044. }
  9045. },
  9046. },
  9047. [
  9048. {
  9049. name: "Normal",
  9050. height: math.unit(2.5, "meters")
  9051. },
  9052. {
  9053. name: "Macro",
  9054. height: math.unit(250, "meters"),
  9055. default: true
  9056. },
  9057. {
  9058. name: "Megamacro",
  9059. height: math.unit(25, "km")
  9060. },
  9061. ]
  9062. ))
  9063. characterMakers.push(() => makeCharacter(
  9064. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9065. {
  9066. front: {
  9067. height: math.unit(6, "feet"),
  9068. weight: math.unit(65, "kg"),
  9069. name: "Front",
  9070. image: {
  9071. source: "./media/characters/rook/front.svg",
  9072. extra: 960 / 950
  9073. }
  9074. }
  9075. },
  9076. [
  9077. {
  9078. name: "Normal",
  9079. height: math.unit(8.8, "feet")
  9080. },
  9081. {
  9082. name: "Macro",
  9083. height: math.unit(88, "feet"),
  9084. default: true
  9085. },
  9086. {
  9087. name: "Megamacro",
  9088. height: math.unit(8, "miles")
  9089. },
  9090. ]
  9091. ))
  9092. characterMakers.push(() => makeCharacter(
  9093. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9094. {
  9095. front: {
  9096. height: math.unit(12 + 2 / 12, "feet"),
  9097. weight: math.unit(808, "lbs"),
  9098. name: "Front",
  9099. image: {
  9100. source: "./media/characters/prodigy/front.svg"
  9101. }
  9102. }
  9103. },
  9104. [
  9105. {
  9106. name: "Normal",
  9107. height: math.unit(12 + 2 / 12, "feet"),
  9108. default: true
  9109. },
  9110. {
  9111. name: "Macro",
  9112. height: math.unit(143, "feet")
  9113. },
  9114. {
  9115. name: "Macro+",
  9116. height: math.unit(400, "feet")
  9117. },
  9118. ]
  9119. ))
  9120. characterMakers.push(() => makeCharacter(
  9121. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9122. {
  9123. front: {
  9124. height: math.unit(6, "feet"),
  9125. weight: math.unit(225, "lbs"),
  9126. name: "Front",
  9127. image: {
  9128. source: "./media/characters/daniel/front.svg"
  9129. }
  9130. },
  9131. leaning: {
  9132. height: math.unit(6, "feet"),
  9133. weight: math.unit(225, "lbs"),
  9134. name: "Leaning",
  9135. image: {
  9136. source: "./media/characters/daniel/leaning.svg"
  9137. }
  9138. },
  9139. },
  9140. [
  9141. {
  9142. name: "Macro",
  9143. height: math.unit(1000, "feet"),
  9144. default: true
  9145. },
  9146. ]
  9147. ))
  9148. characterMakers.push(() => makeCharacter(
  9149. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9150. {
  9151. front: {
  9152. height: math.unit(6, "feet"),
  9153. weight: math.unit(88, "lbs"),
  9154. name: "Front",
  9155. image: {
  9156. source: "./media/characters/chiros/front.svg",
  9157. extra: 306 / 226
  9158. }
  9159. },
  9160. side: {
  9161. height: math.unit(6, "feet"),
  9162. weight: math.unit(88, "lbs"),
  9163. name: "Side",
  9164. image: {
  9165. source: "./media/characters/chiros/side.svg",
  9166. extra: 306 / 226
  9167. }
  9168. },
  9169. },
  9170. [
  9171. {
  9172. name: "Normal",
  9173. height: math.unit(6, "cm"),
  9174. default: true
  9175. },
  9176. ]
  9177. ))
  9178. characterMakers.push(() => makeCharacter(
  9179. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9180. {
  9181. front: {
  9182. height: math.unit(6, "feet"),
  9183. weight: math.unit(100, "lbs"),
  9184. name: "Front",
  9185. image: {
  9186. source: "./media/characters/selka/front.svg",
  9187. extra: 947 / 887
  9188. }
  9189. }
  9190. },
  9191. [
  9192. {
  9193. name: "Normal",
  9194. height: math.unit(5, "cm"),
  9195. default: true
  9196. },
  9197. ]
  9198. ))
  9199. characterMakers.push(() => makeCharacter(
  9200. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9201. {
  9202. front: {
  9203. height: math.unit(8 + 3 / 12, "feet"),
  9204. weight: math.unit(424, "lbs"),
  9205. name: "Front",
  9206. image: {
  9207. source: "./media/characters/verin/front.svg",
  9208. extra: 1845 / 1550
  9209. }
  9210. },
  9211. frontArmored: {
  9212. height: math.unit(8 + 3 / 12, "feet"),
  9213. weight: math.unit(424, "lbs"),
  9214. name: "Front (Armored)",
  9215. image: {
  9216. source: "./media/characters/verin/front-armor.svg",
  9217. extra: 1845 / 1550,
  9218. bottom: 0.01
  9219. }
  9220. },
  9221. back: {
  9222. height: math.unit(8 + 3 / 12, "feet"),
  9223. weight: math.unit(424, "lbs"),
  9224. name: "Back",
  9225. image: {
  9226. source: "./media/characters/verin/back.svg",
  9227. bottom: 0.1,
  9228. extra: 1
  9229. }
  9230. },
  9231. foot: {
  9232. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9233. name: "Foot",
  9234. image: {
  9235. source: "./media/characters/verin/foot.svg"
  9236. }
  9237. },
  9238. },
  9239. [
  9240. {
  9241. name: "Normal",
  9242. height: math.unit(8 + 3 / 12, "feet")
  9243. },
  9244. {
  9245. name: "Minimacro",
  9246. height: math.unit(21, "feet"),
  9247. default: true
  9248. },
  9249. {
  9250. name: "Macro",
  9251. height: math.unit(626, "feet")
  9252. },
  9253. ]
  9254. ))
  9255. characterMakers.push(() => makeCharacter(
  9256. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9257. {
  9258. front: {
  9259. height: math.unit(2.718, "meters"),
  9260. weight: math.unit(150, "lbs"),
  9261. name: "Front",
  9262. image: {
  9263. source: "./media/characters/sovrim-terraquian/front.svg",
  9264. extra: 1752/1689,
  9265. bottom: 36/1788
  9266. }
  9267. },
  9268. back: {
  9269. height: math.unit(2.718, "meters"),
  9270. weight: math.unit(150, "lbs"),
  9271. name: "Back",
  9272. image: {
  9273. source: "./media/characters/sovrim-terraquian/back.svg",
  9274. extra: 1698/1657,
  9275. bottom: 58/1756
  9276. }
  9277. },
  9278. tongue: {
  9279. height: math.unit(2.865, "feet"),
  9280. name: "Tongue",
  9281. image: {
  9282. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9283. }
  9284. },
  9285. hand: {
  9286. height: math.unit(1.61, "feet"),
  9287. name: "Hand",
  9288. image: {
  9289. source: "./media/characters/sovrim-terraquian/hand.svg"
  9290. }
  9291. },
  9292. foot: {
  9293. height: math.unit(1.05, "feet"),
  9294. name: "Foot",
  9295. image: {
  9296. source: "./media/characters/sovrim-terraquian/foot.svg"
  9297. }
  9298. },
  9299. footAlt: {
  9300. height: math.unit(0.88, "feet"),
  9301. name: "Foot (Alt)",
  9302. image: {
  9303. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9304. }
  9305. },
  9306. },
  9307. [
  9308. {
  9309. name: "Micro",
  9310. height: math.unit(2, "inches")
  9311. },
  9312. {
  9313. name: "Small",
  9314. height: math.unit(1, "meter")
  9315. },
  9316. {
  9317. name: "Normal",
  9318. height: math.unit(Math.E, "meters"),
  9319. default: true
  9320. },
  9321. {
  9322. name: "Macro",
  9323. height: math.unit(20, "meters")
  9324. },
  9325. {
  9326. name: "Macro+",
  9327. height: math.unit(400, "meters")
  9328. },
  9329. ]
  9330. ))
  9331. characterMakers.push(() => makeCharacter(
  9332. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9333. {
  9334. front: {
  9335. height: math.unit(7, "feet"),
  9336. weight: math.unit(489, "lbs"),
  9337. name: "Front",
  9338. image: {
  9339. source: "./media/characters/reece-silvermane/front.svg",
  9340. bottom: 0.02,
  9341. extra: 1
  9342. }
  9343. },
  9344. },
  9345. [
  9346. {
  9347. name: "Macro",
  9348. height: math.unit(1.5, "miles"),
  9349. default: true
  9350. },
  9351. ]
  9352. ))
  9353. characterMakers.push(() => makeCharacter(
  9354. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9355. {
  9356. front: {
  9357. height: math.unit(6, "feet"),
  9358. weight: math.unit(78, "kg"),
  9359. name: "Front",
  9360. image: {
  9361. source: "./media/characters/kane/front.svg",
  9362. extra: 978 / 899
  9363. }
  9364. },
  9365. back: {
  9366. height: math.unit(6, "feet"),
  9367. weight: math.unit(78, "kg"),
  9368. name: "Back",
  9369. image: {
  9370. source: "./media/characters/kane/back.svg",
  9371. extra: 1966/1800,
  9372. bottom: 0/1966
  9373. }
  9374. },
  9375. head: {
  9376. height: math.unit(1.4, "feet"),
  9377. name: "Head",
  9378. image: {
  9379. source: "./media/characters/kane/head.svg"
  9380. }
  9381. },
  9382. },
  9383. [
  9384. {
  9385. name: "Normal",
  9386. height: math.unit(2.1, "m"),
  9387. },
  9388. {
  9389. name: "Macro",
  9390. height: math.unit(1, "km"),
  9391. default: true
  9392. },
  9393. ]
  9394. ))
  9395. characterMakers.push(() => makeCharacter(
  9396. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9397. {
  9398. front: {
  9399. height: math.unit(6, "feet"),
  9400. weight: math.unit(200, "kg"),
  9401. name: "Front",
  9402. image: {
  9403. source: "./media/characters/tegon/front.svg",
  9404. bottom: 0.01,
  9405. extra: 1
  9406. }
  9407. },
  9408. },
  9409. [
  9410. {
  9411. name: "Micro",
  9412. height: math.unit(1, "inch")
  9413. },
  9414. {
  9415. name: "Normal",
  9416. height: math.unit(6 + 3 / 12, "feet"),
  9417. default: true
  9418. },
  9419. {
  9420. name: "Macro",
  9421. height: math.unit(300, "feet")
  9422. },
  9423. {
  9424. name: "Megamacro",
  9425. height: math.unit(69, "miles")
  9426. },
  9427. ]
  9428. ))
  9429. characterMakers.push(() => makeCharacter(
  9430. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9431. {
  9432. side: {
  9433. height: math.unit(6, "feet"),
  9434. weight: math.unit(2304, "lbs"),
  9435. name: "Side",
  9436. image: {
  9437. source: "./media/characters/arcturax/side.svg",
  9438. extra: 790 / 376,
  9439. bottom: 0.01
  9440. }
  9441. },
  9442. },
  9443. [
  9444. {
  9445. name: "Micro",
  9446. height: math.unit(2, "inch")
  9447. },
  9448. {
  9449. name: "Normal",
  9450. height: math.unit(6, "feet")
  9451. },
  9452. {
  9453. name: "Macro",
  9454. height: math.unit(39, "feet"),
  9455. default: true
  9456. },
  9457. {
  9458. name: "Megamacro",
  9459. height: math.unit(7, "miles")
  9460. },
  9461. ]
  9462. ))
  9463. characterMakers.push(() => makeCharacter(
  9464. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9465. {
  9466. front: {
  9467. height: math.unit(6, "feet"),
  9468. weight: math.unit(50, "lbs"),
  9469. name: "Front",
  9470. image: {
  9471. source: "./media/characters/sentri/front.svg",
  9472. extra: 1750 / 1570,
  9473. bottom: 0.025
  9474. }
  9475. },
  9476. frontAlt: {
  9477. height: math.unit(6, "feet"),
  9478. weight: math.unit(50, "lbs"),
  9479. name: "Front (Alt)",
  9480. image: {
  9481. source: "./media/characters/sentri/front-alt.svg",
  9482. extra: 1750 / 1570,
  9483. bottom: 0.025
  9484. }
  9485. },
  9486. },
  9487. [
  9488. {
  9489. name: "Normal",
  9490. height: math.unit(15, "feet"),
  9491. default: true
  9492. },
  9493. {
  9494. name: "Macro",
  9495. height: math.unit(2500, "feet")
  9496. }
  9497. ]
  9498. ))
  9499. characterMakers.push(() => makeCharacter(
  9500. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9501. {
  9502. front: {
  9503. height: math.unit(5 + 8 / 12, "feet"),
  9504. weight: math.unit(130, "lbs"),
  9505. name: "Front",
  9506. image: {
  9507. source: "./media/characters/corvin/front.svg",
  9508. extra: 1803 / 1629
  9509. }
  9510. },
  9511. frontShirt: {
  9512. height: math.unit(5 + 8 / 12, "feet"),
  9513. weight: math.unit(130, "lbs"),
  9514. name: "Front (Shirt)",
  9515. image: {
  9516. source: "./media/characters/corvin/front-shirt.svg",
  9517. extra: 1803 / 1629
  9518. }
  9519. },
  9520. frontPoncho: {
  9521. height: math.unit(5 + 8 / 12, "feet"),
  9522. weight: math.unit(130, "lbs"),
  9523. name: "Front (Poncho)",
  9524. image: {
  9525. source: "./media/characters/corvin/front-poncho.svg",
  9526. extra: 1803 / 1629
  9527. }
  9528. },
  9529. side: {
  9530. height: math.unit(5 + 8 / 12, "feet"),
  9531. weight: math.unit(130, "lbs"),
  9532. name: "Side",
  9533. image: {
  9534. source: "./media/characters/corvin/side.svg",
  9535. extra: 1012 / 945
  9536. }
  9537. },
  9538. back: {
  9539. height: math.unit(5 + 8 / 12, "feet"),
  9540. weight: math.unit(130, "lbs"),
  9541. name: "Back",
  9542. image: {
  9543. source: "./media/characters/corvin/back.svg",
  9544. extra: 1803 / 1629
  9545. }
  9546. },
  9547. },
  9548. [
  9549. {
  9550. name: "Micro",
  9551. height: math.unit(3, "inches")
  9552. },
  9553. {
  9554. name: "Normal",
  9555. height: math.unit(5 + 8 / 12, "feet")
  9556. },
  9557. {
  9558. name: "Macro",
  9559. height: math.unit(300, "feet"),
  9560. default: true
  9561. },
  9562. {
  9563. name: "Megamacro",
  9564. height: math.unit(500, "miles")
  9565. }
  9566. ]
  9567. ))
  9568. characterMakers.push(() => makeCharacter(
  9569. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9570. {
  9571. front: {
  9572. height: math.unit(6, "feet"),
  9573. weight: math.unit(135, "lbs"),
  9574. name: "Front",
  9575. image: {
  9576. source: "./media/characters/q/front.svg",
  9577. extra: 854 / 752,
  9578. bottom: 0.005
  9579. }
  9580. },
  9581. back: {
  9582. height: math.unit(6, "feet"),
  9583. weight: math.unit(130, "lbs"),
  9584. name: "Back",
  9585. image: {
  9586. source: "./media/characters/q/back.svg",
  9587. extra: 854 / 752
  9588. }
  9589. },
  9590. },
  9591. [
  9592. {
  9593. name: "Macro",
  9594. height: math.unit(90, "feet"),
  9595. default: true
  9596. },
  9597. {
  9598. name: "Extra Macro",
  9599. height: math.unit(300, "feet"),
  9600. },
  9601. {
  9602. name: "BIG WALF",
  9603. height: math.unit(750, "feet"),
  9604. },
  9605. ]
  9606. ))
  9607. characterMakers.push(() => makeCharacter(
  9608. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9609. {
  9610. front: {
  9611. height: math.unit(3, "feet"),
  9612. weight: math.unit(28, "lbs"),
  9613. name: "Front",
  9614. image: {
  9615. source: "./media/characters/citrine/front.svg"
  9616. }
  9617. }
  9618. },
  9619. [
  9620. {
  9621. name: "Normal",
  9622. height: math.unit(3, "feet"),
  9623. default: true
  9624. }
  9625. ]
  9626. ))
  9627. characterMakers.push(() => makeCharacter(
  9628. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9629. {
  9630. front: {
  9631. height: math.unit(14, "feet"),
  9632. weight: math.unit(1450, "kg"),
  9633. preyCapacity: math.unit(15, "people"),
  9634. name: "Front",
  9635. image: {
  9636. source: "./media/characters/aura-starwind/front.svg",
  9637. extra: 1440/1327,
  9638. bottom: 11/1451
  9639. }
  9640. },
  9641. side: {
  9642. height: math.unit(14, "feet"),
  9643. weight: math.unit(1450, "kg"),
  9644. preyCapacity: math.unit(15, "people"),
  9645. name: "Side",
  9646. image: {
  9647. source: "./media/characters/aura-starwind/side.svg",
  9648. extra: 1654 / 1497
  9649. }
  9650. },
  9651. taur: {
  9652. height: math.unit(18, "feet"),
  9653. weight: math.unit(5500, "kg"),
  9654. preyCapacity: math.unit(50, "people"),
  9655. name: "Taur",
  9656. image: {
  9657. source: "./media/characters/aura-starwind/taur.svg",
  9658. extra: 1760 / 1650
  9659. }
  9660. },
  9661. feral: {
  9662. height: math.unit(46, "feet"),
  9663. weight: math.unit(25000, "kg"),
  9664. preyCapacity: math.unit(120, "people"),
  9665. name: "Feral",
  9666. image: {
  9667. source: "./media/characters/aura-starwind/feral.svg"
  9668. }
  9669. },
  9670. },
  9671. [
  9672. {
  9673. name: "Normal",
  9674. height: math.unit(14, "feet"),
  9675. default: true
  9676. },
  9677. {
  9678. name: "Macro",
  9679. height: math.unit(50, "meters")
  9680. },
  9681. {
  9682. name: "Megamacro",
  9683. height: math.unit(5000, "meters")
  9684. },
  9685. {
  9686. name: "Gigamacro",
  9687. height: math.unit(100000, "kilometers")
  9688. },
  9689. ]
  9690. ))
  9691. characterMakers.push(() => makeCharacter(
  9692. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9693. {
  9694. front: {
  9695. height: math.unit(2 + 7 / 12, "feet"),
  9696. weight: math.unit(32, "lbs"),
  9697. name: "Front",
  9698. image: {
  9699. source: "./media/characters/rivet/front.svg",
  9700. extra: 1716 / 1658,
  9701. bottom: 0.03
  9702. }
  9703. },
  9704. foot: {
  9705. height: math.unit(0.551, "feet"),
  9706. name: "Rivet's Foot",
  9707. image: {
  9708. source: "./media/characters/rivet/foot.svg"
  9709. },
  9710. rename: true
  9711. }
  9712. },
  9713. [
  9714. {
  9715. name: "Micro",
  9716. height: math.unit(1.5, "inches"),
  9717. },
  9718. {
  9719. name: "Normal",
  9720. height: math.unit(2 + 7 / 12, "feet"),
  9721. default: true
  9722. },
  9723. {
  9724. name: "Macro",
  9725. height: math.unit(85, "feet")
  9726. },
  9727. {
  9728. name: "Megamacro",
  9729. height: math.unit(2.2, "km")
  9730. }
  9731. ]
  9732. ))
  9733. characterMakers.push(() => makeCharacter(
  9734. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9735. {
  9736. front: {
  9737. height: math.unit(5 + 9 / 12, "feet"),
  9738. weight: math.unit(150, "lbs"),
  9739. name: "Front",
  9740. image: {
  9741. source: "./media/characters/coffee/front.svg",
  9742. extra: 946/880,
  9743. bottom: 66/1012
  9744. }
  9745. },
  9746. foot: {
  9747. height: math.unit(1.29, "feet"),
  9748. name: "Foot",
  9749. image: {
  9750. source: "./media/characters/coffee/foot.svg"
  9751. }
  9752. },
  9753. },
  9754. [
  9755. {
  9756. name: "Micro",
  9757. height: math.unit(2, "inches"),
  9758. },
  9759. {
  9760. name: "Normal",
  9761. height: math.unit(5 + 9 / 12, "feet"),
  9762. default: true
  9763. },
  9764. {
  9765. name: "Macro",
  9766. height: math.unit(800, "feet")
  9767. },
  9768. {
  9769. name: "Megamacro",
  9770. height: math.unit(25, "miles")
  9771. }
  9772. ]
  9773. ))
  9774. characterMakers.push(() => makeCharacter(
  9775. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9776. {
  9777. front: {
  9778. height: math.unit(6, "feet"),
  9779. weight: math.unit(200, "lbs"),
  9780. name: "Front",
  9781. image: {
  9782. source: "./media/characters/chari-gal/front.svg",
  9783. extra: 735/649,
  9784. bottom: 55/790
  9785. },
  9786. form: "normal",
  9787. default: true
  9788. },
  9789. back: {
  9790. height: math.unit(6, "feet"),
  9791. weight: math.unit(200, "lb"),
  9792. name: "Back",
  9793. image: {
  9794. source: "./media/characters/chari-gal/back.svg",
  9795. extra: 762/666,
  9796. bottom: 31/793
  9797. },
  9798. form: "normal"
  9799. },
  9800. mouth: {
  9801. height: math.unit(1.35, "feet"),
  9802. name: "Mouth",
  9803. image: {
  9804. source: "./media/characters/chari-gal/mouth.svg"
  9805. },
  9806. form: "normal"
  9807. },
  9808. gigantamax: {
  9809. height: math.unit(6 * 16, "feet"),
  9810. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9811. name: "Gigantamax",
  9812. image: {
  9813. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9814. extra: 1507/1149,
  9815. bottom: 254/1761
  9816. },
  9817. form: "gigantamax",
  9818. default: true
  9819. },
  9820. },
  9821. [
  9822. {
  9823. name: "Normal",
  9824. height: math.unit(5 + 7 / 12, "feet"),
  9825. form: "normal",
  9826. },
  9827. {
  9828. name: "Macro",
  9829. height: math.unit(200, "feet"),
  9830. default: true,
  9831. form: "normal"
  9832. },
  9833. {
  9834. name: "Normal",
  9835. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9836. form: "gigantamax",
  9837. },
  9838. {
  9839. name: "Macro",
  9840. height: math.unit(16 * 200, "feet"),
  9841. default: true,
  9842. form: "gigantamax"
  9843. },
  9844. ],
  9845. {
  9846. "normal": {
  9847. name: "Normal",
  9848. default: true
  9849. },
  9850. "gigantamax": {
  9851. name: "Gigantamax",
  9852. },
  9853. }
  9854. ))
  9855. characterMakers.push(() => makeCharacter(
  9856. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9857. {
  9858. front: {
  9859. height: math.unit(6, "feet"),
  9860. weight: math.unit(150, "lbs"),
  9861. name: "Front",
  9862. image: {
  9863. source: "./media/characters/nova/front.svg",
  9864. extra: 5000 / 4722,
  9865. bottom: 0.02
  9866. }
  9867. }
  9868. },
  9869. [
  9870. {
  9871. name: "Micro-",
  9872. height: math.unit(0.8, "inches")
  9873. },
  9874. {
  9875. name: "Micro",
  9876. height: math.unit(2, "inches"),
  9877. default: true
  9878. },
  9879. ]
  9880. ))
  9881. characterMakers.push(() => makeCharacter(
  9882. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9883. {
  9884. koboldFront: {
  9885. height: math.unit(3 + 1 / 12, "feet"),
  9886. weight: math.unit(21.7, "lbs"),
  9887. name: "Front",
  9888. image: {
  9889. source: "./media/characters/argent/kobold-front.svg",
  9890. extra: 1471 / 1331,
  9891. bottom: 100.8 / 1575.5
  9892. },
  9893. form: "kobold",
  9894. default: true
  9895. },
  9896. dragonFront: {
  9897. height: math.unit(75, "inches"),
  9898. name: "Front",
  9899. image: {
  9900. source: "./media/characters/argent/dragon-front.svg",
  9901. extra: 1389/1248,
  9902. bottom: 54/1443
  9903. },
  9904. form: "dragon",
  9905. },
  9906. dragonBack: {
  9907. height: math.unit(75, "inches"),
  9908. name: "Back",
  9909. image: {
  9910. source: "./media/characters/argent/dragon-back.svg",
  9911. extra: 1399/1271,
  9912. bottom: 23/1422
  9913. },
  9914. form: "dragon",
  9915. },
  9916. dragonDressed: {
  9917. height: math.unit(75, "inches"),
  9918. name: "Dressed",
  9919. image: {
  9920. source: "./media/characters/argent/dragon-dressed.svg",
  9921. extra: 1350/1215,
  9922. bottom: 26/1376
  9923. },
  9924. form: "dragon"
  9925. },
  9926. dragonHead: {
  9927. height: math.unit(23.5, "inches"),
  9928. name: "Head",
  9929. image: {
  9930. source: "./media/characters/argent/dragon-head.svg"
  9931. },
  9932. form: "dragon",
  9933. },
  9934. },
  9935. [
  9936. {
  9937. name: "Micro",
  9938. height: math.unit(2, "inches"),
  9939. form: "kobold",
  9940. },
  9941. {
  9942. name: "Normal",
  9943. height: math.unit(3 + 1 / 12, "feet"),
  9944. form: "kobold",
  9945. default: true
  9946. },
  9947. {
  9948. name: "Macro",
  9949. height: math.unit(120, "feet"),
  9950. form: "kobold",
  9951. },
  9952. {
  9953. name: "Speck",
  9954. height: math.unit(1, "mm"),
  9955. form: "dragon",
  9956. },
  9957. {
  9958. name: "Tiny",
  9959. height: math.unit(1, "cm"),
  9960. form: "dragon",
  9961. },
  9962. {
  9963. name: "Micro",
  9964. height: math.unit(5, "cm"),
  9965. form: "dragon",
  9966. },
  9967. {
  9968. name: "Normal",
  9969. height: math.unit(75, "inches"),
  9970. form: "dragon",
  9971. default: true
  9972. },
  9973. {
  9974. name: "Extra Tall",
  9975. height: math.unit(9, "feet"),
  9976. form: "dragon",
  9977. },
  9978. {
  9979. name: "Inconvenient",
  9980. height: math.unit(5, "meters"),
  9981. form: "dragon",
  9982. },
  9983. {
  9984. name: "Macro",
  9985. height: math.unit(70, "meters"),
  9986. form: "dragon",
  9987. },
  9988. {
  9989. name: "Macro+",
  9990. height: math.unit(250, "meters"),
  9991. form: "dragon",
  9992. },
  9993. {
  9994. name: "Megamacro",
  9995. height: math.unit(20, "km"),
  9996. form: "dragon",
  9997. },
  9998. {
  9999. name: "Mountainous",
  10000. height: math.unit(100, "km"),
  10001. form: "dragon",
  10002. },
  10003. {
  10004. name: "Continental",
  10005. height: math.unit(2, "megameters"),
  10006. form: "dragon",
  10007. },
  10008. {
  10009. name: "Too Big",
  10010. height: math.unit(900, "megameters"),
  10011. form: "dragon",
  10012. },
  10013. ],
  10014. {
  10015. "kobold": {
  10016. name: "Kobold",
  10017. default: true
  10018. },
  10019. "dragon": {
  10020. name: "Dragon",
  10021. },
  10022. }
  10023. ))
  10024. characterMakers.push(() => makeCharacter(
  10025. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10026. {
  10027. lamp: {
  10028. height: math.unit(7 * 1559 / 989, "feet"),
  10029. name: "Magic Lamp",
  10030. image: {
  10031. source: "./media/characters/mira-al-cul/lamp.svg",
  10032. extra: 1617 / 1559
  10033. }
  10034. },
  10035. front: {
  10036. height: math.unit(7, "feet"),
  10037. name: "Front",
  10038. image: {
  10039. source: "./media/characters/mira-al-cul/front.svg",
  10040. extra: 1044 / 990
  10041. }
  10042. },
  10043. },
  10044. [
  10045. {
  10046. name: "Heavily Restricted",
  10047. height: math.unit(7 * 1559 / 989, "feet")
  10048. },
  10049. {
  10050. name: "Freshly Freed",
  10051. height: math.unit(50 * 1559 / 989, "feet")
  10052. },
  10053. {
  10054. name: "World Encompassing",
  10055. height: math.unit(10000 * 1559 / 989, "miles")
  10056. },
  10057. {
  10058. name: "Galactic",
  10059. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10060. },
  10061. {
  10062. name: "Palmed Universe",
  10063. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10064. default: true
  10065. },
  10066. {
  10067. name: "Multiversal Matriarch",
  10068. height: math.unit(8.87e10, "yottameters")
  10069. },
  10070. {
  10071. name: "Void Mother",
  10072. height: math.unit(3.14e110, "yottaparsecs")
  10073. },
  10074. {
  10075. name: "Toying with Transcendence",
  10076. height: math.unit(1e307, "meters")
  10077. },
  10078. ]
  10079. ))
  10080. characterMakers.push(() => makeCharacter(
  10081. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10082. {
  10083. front: {
  10084. height: math.unit(17 + 1 / 12, "feet"),
  10085. weight: math.unit(476.2 * 5, "lbs"),
  10086. name: "Front",
  10087. image: {
  10088. source: "./media/characters/kuro-shi-uchū/front.svg",
  10089. extra: 2329 / 1835,
  10090. bottom: 0.02
  10091. }
  10092. },
  10093. },
  10094. [
  10095. {
  10096. name: "Micro",
  10097. height: math.unit(2, "inches")
  10098. },
  10099. {
  10100. name: "Normal",
  10101. height: math.unit(12, "meters")
  10102. },
  10103. {
  10104. name: "Planetary",
  10105. height: math.unit(0.00929, "AU"),
  10106. default: true
  10107. },
  10108. {
  10109. name: "Universal",
  10110. height: math.unit(20, "gigaparsecs")
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10116. {
  10117. front: {
  10118. height: math.unit(5 + 2 / 12, "feet"),
  10119. weight: math.unit(120, "lbs"),
  10120. name: "Front",
  10121. image: {
  10122. source: "./media/characters/katherine/front.svg",
  10123. extra: 2075 / 1969
  10124. }
  10125. },
  10126. dress: {
  10127. height: math.unit(5 + 2 / 12, "feet"),
  10128. weight: math.unit(120, "lbs"),
  10129. name: "Dress",
  10130. image: {
  10131. source: "./media/characters/katherine/dress.svg",
  10132. extra: 2258 / 2064
  10133. }
  10134. },
  10135. },
  10136. [
  10137. {
  10138. name: "Micro",
  10139. height: math.unit(1, "inches"),
  10140. default: true
  10141. },
  10142. {
  10143. name: "Normal",
  10144. height: math.unit(5 + 2 / 12, "feet")
  10145. },
  10146. {
  10147. name: "Macro",
  10148. height: math.unit(100, "meters")
  10149. },
  10150. {
  10151. name: "Megamacro",
  10152. height: math.unit(80, "miles")
  10153. },
  10154. ]
  10155. ))
  10156. characterMakers.push(() => makeCharacter(
  10157. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10158. {
  10159. front: {
  10160. height: math.unit(7 + 8 / 12, "feet"),
  10161. weight: math.unit(250, "lbs"),
  10162. name: "Front",
  10163. image: {
  10164. source: "./media/characters/yevis/front.svg",
  10165. extra: 1938 / 1755
  10166. }
  10167. }
  10168. },
  10169. [
  10170. {
  10171. name: "Mortal",
  10172. height: math.unit(7 + 8 / 12, "feet")
  10173. },
  10174. {
  10175. name: "Battle",
  10176. height: math.unit(25 + 11 / 12, "feet")
  10177. },
  10178. {
  10179. name: "Wrath",
  10180. height: math.unit(1654 + 11 / 12, "feet")
  10181. },
  10182. {
  10183. name: "Planet Destroyer",
  10184. height: math.unit(12000, "miles")
  10185. },
  10186. {
  10187. name: "Galaxy Conqueror",
  10188. height: math.unit(1.45, "zettameters"),
  10189. default: true
  10190. },
  10191. {
  10192. name: "Universal War",
  10193. height: math.unit(184, "gigaparsecs")
  10194. },
  10195. {
  10196. name: "Eternity War",
  10197. height: math.unit(1.98e55, "yottaparsecs")
  10198. },
  10199. ]
  10200. ))
  10201. characterMakers.push(() => makeCharacter(
  10202. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10203. {
  10204. front: {
  10205. height: math.unit(5 + 8 / 12, "feet"),
  10206. weight: math.unit(63, "kg"),
  10207. name: "Front",
  10208. image: {
  10209. source: "./media/characters/xavier/front.svg",
  10210. extra: 944 / 883
  10211. }
  10212. },
  10213. frontStretch: {
  10214. height: math.unit(5 + 8 / 12, "feet"),
  10215. weight: math.unit(63, "kg"),
  10216. name: "Stretching",
  10217. image: {
  10218. source: "./media/characters/xavier/front-stretch.svg",
  10219. extra: 962 / 820
  10220. }
  10221. },
  10222. },
  10223. [
  10224. {
  10225. name: "Normal",
  10226. height: math.unit(5 + 8 / 12, "feet")
  10227. },
  10228. {
  10229. name: "Macro",
  10230. height: math.unit(100, "meters"),
  10231. default: true
  10232. },
  10233. {
  10234. name: "McLargeHuge",
  10235. height: math.unit(10, "miles")
  10236. },
  10237. ]
  10238. ))
  10239. characterMakers.push(() => makeCharacter(
  10240. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10241. {
  10242. front: {
  10243. height: math.unit(5 + 5 / 12, "feet"),
  10244. weight: math.unit(150, "lb"),
  10245. name: "Front",
  10246. image: {
  10247. source: "./media/characters/joshii/front.svg",
  10248. extra: 765 / 653,
  10249. bottom: 51 / 816
  10250. }
  10251. },
  10252. foot: {
  10253. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10254. name: "Foot",
  10255. image: {
  10256. source: "./media/characters/joshii/foot.svg"
  10257. }
  10258. },
  10259. },
  10260. [
  10261. {
  10262. name: "Micro",
  10263. height: math.unit(2, "inches")
  10264. },
  10265. {
  10266. name: "Normal",
  10267. height: math.unit(5 + 5 / 12, "feet")
  10268. },
  10269. {
  10270. name: "Macro",
  10271. height: math.unit(785, "feet"),
  10272. default: true
  10273. },
  10274. {
  10275. name: "Megamacro",
  10276. height: math.unit(24.5, "miles")
  10277. },
  10278. ]
  10279. ))
  10280. characterMakers.push(() => makeCharacter(
  10281. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10282. {
  10283. front: {
  10284. height: math.unit(6, "feet"),
  10285. weight: math.unit(150, "lb"),
  10286. name: "Front",
  10287. image: {
  10288. source: "./media/characters/goddess-elizabeth/front.svg",
  10289. extra: 1800 / 1525,
  10290. bottom: 0.005
  10291. }
  10292. },
  10293. foot: {
  10294. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10295. name: "Foot",
  10296. image: {
  10297. source: "./media/characters/goddess-elizabeth/foot.svg"
  10298. }
  10299. },
  10300. mouth: {
  10301. height: math.unit(6, "feet"),
  10302. name: "Mouth",
  10303. image: {
  10304. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10305. }
  10306. },
  10307. },
  10308. [
  10309. {
  10310. name: "Micro",
  10311. height: math.unit(12, "feet")
  10312. },
  10313. {
  10314. name: "Normal",
  10315. height: math.unit(80, "miles"),
  10316. default: true
  10317. },
  10318. {
  10319. name: "Macro",
  10320. height: math.unit(15000, "parsecs")
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10326. {
  10327. front: {
  10328. height: math.unit(5 + 9 / 12, "feet"),
  10329. weight: math.unit(144, "lb"),
  10330. name: "Front",
  10331. image: {
  10332. source: "./media/characters/kara/front.svg"
  10333. }
  10334. },
  10335. feet: {
  10336. height: math.unit(6 / 6.765, "feet"),
  10337. name: "Kara's Feet",
  10338. rename: true,
  10339. image: {
  10340. source: "./media/characters/kara/feet.svg"
  10341. }
  10342. },
  10343. },
  10344. [
  10345. {
  10346. name: "Normal",
  10347. height: math.unit(5 + 9 / 12, "feet")
  10348. },
  10349. {
  10350. name: "Macro",
  10351. height: math.unit(174, "feet"),
  10352. default: true
  10353. },
  10354. ]
  10355. ))
  10356. characterMakers.push(() => makeCharacter(
  10357. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10358. {
  10359. front: {
  10360. height: math.unit(18, "feet"),
  10361. weight: math.unit(4050, "lb"),
  10362. name: "Front",
  10363. image: {
  10364. source: "./media/characters/tyrone/front.svg",
  10365. extra: 2405 / 2270,
  10366. bottom: 182 / 2587
  10367. }
  10368. },
  10369. },
  10370. [
  10371. {
  10372. name: "Normal",
  10373. height: math.unit(18, "feet"),
  10374. default: true
  10375. },
  10376. {
  10377. name: "Macro",
  10378. height: math.unit(300, "feet")
  10379. },
  10380. {
  10381. name: "Megamacro",
  10382. height: math.unit(15, "km")
  10383. },
  10384. {
  10385. name: "Gigamacro",
  10386. height: math.unit(500, "km")
  10387. },
  10388. {
  10389. name: "Teramacro",
  10390. height: math.unit(0.5, "gigameters")
  10391. },
  10392. {
  10393. name: "Omnimacro",
  10394. height: math.unit(1e252, "yottauniverse")
  10395. },
  10396. ]
  10397. ))
  10398. characterMakers.push(() => makeCharacter(
  10399. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10400. {
  10401. front: {
  10402. height: math.unit(7 + 8 / 12, "feet"),
  10403. weight: math.unit(120, "lb"),
  10404. name: "Front",
  10405. image: {
  10406. source: "./media/characters/danny/front.svg",
  10407. extra: 1490 / 1350
  10408. }
  10409. },
  10410. back: {
  10411. height: math.unit(7 + 8 / 12, "feet"),
  10412. weight: math.unit(120, "lb"),
  10413. name: "Back",
  10414. image: {
  10415. source: "./media/characters/danny/back.svg",
  10416. extra: 1490 / 1350
  10417. }
  10418. },
  10419. },
  10420. [
  10421. {
  10422. name: "Normal",
  10423. height: math.unit(7 + 8 / 12, "feet"),
  10424. default: true
  10425. },
  10426. ]
  10427. ))
  10428. characterMakers.push(() => makeCharacter(
  10429. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10430. {
  10431. front: {
  10432. height: math.unit(3.5, "inches"),
  10433. weight: math.unit(19, "grams"),
  10434. name: "Front",
  10435. image: {
  10436. source: "./media/characters/mallow/front.svg",
  10437. extra: 471 / 431
  10438. }
  10439. },
  10440. back: {
  10441. height: math.unit(3.5, "inches"),
  10442. weight: math.unit(19, "grams"),
  10443. name: "Back",
  10444. image: {
  10445. source: "./media/characters/mallow/back.svg",
  10446. extra: 471 / 431
  10447. }
  10448. },
  10449. },
  10450. [
  10451. {
  10452. name: "Normal",
  10453. height: math.unit(3.5, "inches"),
  10454. default: true
  10455. },
  10456. ]
  10457. ))
  10458. characterMakers.push(() => makeCharacter(
  10459. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10460. {
  10461. front: {
  10462. height: math.unit(9, "feet"),
  10463. weight: math.unit(230, "kg"),
  10464. name: "Front",
  10465. image: {
  10466. source: "./media/characters/starry-aqua/front.svg"
  10467. }
  10468. },
  10469. back: {
  10470. height: math.unit(9, "feet"),
  10471. weight: math.unit(230, "kg"),
  10472. name: "Back",
  10473. image: {
  10474. source: "./media/characters/starry-aqua/back.svg"
  10475. }
  10476. },
  10477. hand: {
  10478. height: math.unit(9 * 0.1168, "feet"),
  10479. name: "Hand",
  10480. image: {
  10481. source: "./media/characters/starry-aqua/hand.svg"
  10482. }
  10483. },
  10484. foot: {
  10485. height: math.unit(9 * 0.18, "feet"),
  10486. name: "Foot",
  10487. image: {
  10488. source: "./media/characters/starry-aqua/foot.svg"
  10489. }
  10490. }
  10491. },
  10492. [
  10493. {
  10494. name: "Micro",
  10495. height: math.unit(3, "inches")
  10496. },
  10497. {
  10498. name: "Normal",
  10499. height: math.unit(9, "feet")
  10500. },
  10501. {
  10502. name: "Macro",
  10503. height: math.unit(300, "feet"),
  10504. default: true
  10505. },
  10506. {
  10507. name: "Megamacro",
  10508. height: math.unit(3200, "feet")
  10509. }
  10510. ]
  10511. ))
  10512. characterMakers.push(() => makeCharacter(
  10513. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10514. {
  10515. front: {
  10516. height: math.unit(15, "feet"),
  10517. weight: math.unit(5026, "lb"),
  10518. name: "Front",
  10519. image: {
  10520. source: "./media/characters/luka-towers/front.svg",
  10521. extra: 1269/1133,
  10522. bottom: 51/1320
  10523. }
  10524. },
  10525. },
  10526. [
  10527. {
  10528. name: "Normal",
  10529. height: math.unit(15, "feet"),
  10530. default: true
  10531. },
  10532. {
  10533. name: "Minimacro",
  10534. height: math.unit(25, "feet")
  10535. },
  10536. {
  10537. name: "Macro",
  10538. height: math.unit(320, "feet")
  10539. },
  10540. {
  10541. name: "Megamacro",
  10542. height: math.unit(35000, "feet")
  10543. },
  10544. {
  10545. name: "Gigamacro",
  10546. height: math.unit(4000, "miles")
  10547. },
  10548. {
  10549. name: "Teramacro",
  10550. height: math.unit(15000, "miles")
  10551. },
  10552. ]
  10553. ))
  10554. characterMakers.push(() => makeCharacter(
  10555. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10556. {
  10557. front: {
  10558. height: math.unit(6, "feet"),
  10559. weight: math.unit(150, "lb"),
  10560. name: "Front",
  10561. image: {
  10562. source: "./media/characters/natalie-nightring/front.svg",
  10563. extra: 1,
  10564. bottom: 0.06
  10565. }
  10566. },
  10567. },
  10568. [
  10569. {
  10570. name: "Uh Oh",
  10571. height: math.unit(0.1, "mm")
  10572. },
  10573. {
  10574. name: "Small",
  10575. height: math.unit(3, "inches")
  10576. },
  10577. {
  10578. name: "Human Scale",
  10579. height: math.unit(6, "feet")
  10580. },
  10581. {
  10582. name: "Librarian",
  10583. height: math.unit(50, "feet"),
  10584. default: true
  10585. },
  10586. {
  10587. name: "Immense",
  10588. height: math.unit(200, "miles")
  10589. },
  10590. ]
  10591. ))
  10592. characterMakers.push(() => makeCharacter(
  10593. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10594. {
  10595. front: {
  10596. height: math.unit(6, "feet"),
  10597. weight: math.unit(180, "lbs"),
  10598. name: "Front",
  10599. image: {
  10600. source: "./media/characters/danni-rosie/front.svg",
  10601. extra: 1260 / 1128,
  10602. bottom: 0.022
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Micro",
  10609. height: math.unit(2, "inches"),
  10610. default: true
  10611. },
  10612. ]
  10613. ))
  10614. characterMakers.push(() => makeCharacter(
  10615. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10616. {
  10617. front: {
  10618. height: math.unit(5 + 9 / 12, "feet"),
  10619. weight: math.unit(220, "lb"),
  10620. name: "Front",
  10621. image: {
  10622. source: "./media/characters/samantha-kruse/front.svg",
  10623. extra: (985 / 935),
  10624. bottom: 0.03
  10625. }
  10626. },
  10627. frontUndressed: {
  10628. height: math.unit(5 + 9 / 12, "feet"),
  10629. weight: math.unit(220, "lb"),
  10630. name: "Front (Undressed)",
  10631. image: {
  10632. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10633. extra: (973 / 923),
  10634. bottom: 0.025
  10635. }
  10636. },
  10637. fat: {
  10638. height: math.unit(5 + 9 / 12, "feet"),
  10639. weight: math.unit(900, "lb"),
  10640. name: "Front (Fat)",
  10641. image: {
  10642. source: "./media/characters/samantha-kruse/fat.svg",
  10643. extra: 2688 / 2561
  10644. }
  10645. },
  10646. },
  10647. [
  10648. {
  10649. name: "Normal",
  10650. height: math.unit(5 + 9 / 12, "feet"),
  10651. default: true
  10652. }
  10653. ]
  10654. ))
  10655. characterMakers.push(() => makeCharacter(
  10656. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10657. {
  10658. back: {
  10659. height: math.unit(5 + 4 / 12, "feet"),
  10660. weight: math.unit(4963, "lb"),
  10661. name: "Back",
  10662. image: {
  10663. source: "./media/characters/amelia-rosie/back.svg",
  10664. extra: 1113 / 963,
  10665. bottom: 0.01
  10666. }
  10667. },
  10668. },
  10669. [
  10670. {
  10671. name: "Level 0",
  10672. height: math.unit(5 + 4 / 12, "feet")
  10673. },
  10674. {
  10675. name: "Level 1",
  10676. height: math.unit(164597, "feet"),
  10677. default: true
  10678. },
  10679. {
  10680. name: "Level 2",
  10681. height: math.unit(956243, "miles")
  10682. },
  10683. {
  10684. name: "Level 3",
  10685. height: math.unit(29421709423, "miles")
  10686. },
  10687. {
  10688. name: "Level 4",
  10689. height: math.unit(154, "lightyears")
  10690. },
  10691. {
  10692. name: "Level 5",
  10693. height: math.unit(4738272, "lightyears")
  10694. },
  10695. {
  10696. name: "Level 6",
  10697. height: math.unit(145787152896, "lightyears")
  10698. },
  10699. ]
  10700. ))
  10701. characterMakers.push(() => makeCharacter(
  10702. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10703. {
  10704. front: {
  10705. height: math.unit(5 + 11 / 12, "feet"),
  10706. weight: math.unit(65, "kg"),
  10707. name: "Front",
  10708. image: {
  10709. source: "./media/characters/rook-kitara/front.svg",
  10710. extra: 1347 / 1274,
  10711. bottom: 0.005
  10712. }
  10713. },
  10714. },
  10715. [
  10716. {
  10717. name: "Totally Unfair",
  10718. height: math.unit(1.8, "mm")
  10719. },
  10720. {
  10721. name: "Lap Rookie",
  10722. height: math.unit(1.4, "feet")
  10723. },
  10724. {
  10725. name: "Normal",
  10726. height: math.unit(5 + 11 / 12, "feet"),
  10727. default: true
  10728. },
  10729. {
  10730. name: "How Did This Happen",
  10731. height: math.unit(80, "miles")
  10732. }
  10733. ]
  10734. ))
  10735. characterMakers.push(() => makeCharacter(
  10736. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10737. {
  10738. front: {
  10739. height: math.unit(7, "feet"),
  10740. weight: math.unit(300, "lb"),
  10741. name: "Front",
  10742. image: {
  10743. source: "./media/characters/pisces/front.svg",
  10744. extra: 2255 / 2115,
  10745. bottom: 0.03
  10746. }
  10747. },
  10748. back: {
  10749. height: math.unit(7, "feet"),
  10750. weight: math.unit(300, "lb"),
  10751. name: "Back",
  10752. image: {
  10753. source: "./media/characters/pisces/back.svg",
  10754. extra: 2146 / 2055,
  10755. bottom: 0.04
  10756. }
  10757. },
  10758. },
  10759. [
  10760. {
  10761. name: "Normal",
  10762. height: math.unit(7, "feet"),
  10763. default: true
  10764. },
  10765. {
  10766. name: "Swimming Pool",
  10767. height: math.unit(12.2, "meters")
  10768. },
  10769. {
  10770. name: "Olympic Swimming Pool",
  10771. height: math.unit(56.3, "meters")
  10772. },
  10773. {
  10774. name: "Lake Superior",
  10775. height: math.unit(93900, "meters")
  10776. },
  10777. {
  10778. name: "Mediterranean Sea",
  10779. height: math.unit(644457, "meters")
  10780. },
  10781. {
  10782. name: "World's Oceans",
  10783. height: math.unit(4567491, "meters")
  10784. },
  10785. ]
  10786. ))
  10787. characterMakers.push(() => makeCharacter(
  10788. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10789. {
  10790. front: {
  10791. height: math.unit(2.3, "meters"),
  10792. weight: math.unit(120, "kg"),
  10793. name: "Front",
  10794. image: {
  10795. source: "./media/characters/zelas/front.svg"
  10796. }
  10797. },
  10798. side: {
  10799. height: math.unit(2.3, "meters"),
  10800. weight: math.unit(120, "kg"),
  10801. name: "Side",
  10802. image: {
  10803. source: "./media/characters/zelas/side.svg"
  10804. }
  10805. },
  10806. back: {
  10807. height: math.unit(2.3, "meters"),
  10808. weight: math.unit(120, "kg"),
  10809. name: "Back",
  10810. image: {
  10811. source: "./media/characters/zelas/back.svg"
  10812. }
  10813. },
  10814. foot: {
  10815. height: math.unit(1.116, "feet"),
  10816. name: "Foot",
  10817. image: {
  10818. source: "./media/characters/zelas/foot.svg"
  10819. }
  10820. },
  10821. },
  10822. [
  10823. {
  10824. name: "Normal",
  10825. height: math.unit(2.3, "meters")
  10826. },
  10827. {
  10828. name: "Macro",
  10829. height: math.unit(30, "meters"),
  10830. default: true
  10831. },
  10832. ]
  10833. ))
  10834. characterMakers.push(() => makeCharacter(
  10835. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10836. {
  10837. front: {
  10838. height: math.unit(1, "inch"),
  10839. weight: math.unit(0.21, "grams"),
  10840. name: "Front",
  10841. image: {
  10842. source: "./media/characters/talbot/front.svg",
  10843. extra: 594 / 544
  10844. }
  10845. },
  10846. },
  10847. [
  10848. {
  10849. name: "Micro",
  10850. height: math.unit(1, "inch"),
  10851. default: true
  10852. },
  10853. ]
  10854. ))
  10855. characterMakers.push(() => makeCharacter(
  10856. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10857. {
  10858. front: {
  10859. height: math.unit(3 + 3 / 12, "feet"),
  10860. weight: math.unit(51.8, "lb"),
  10861. name: "Front",
  10862. image: {
  10863. source: "./media/characters/fliss/front.svg",
  10864. extra: 840 / 640
  10865. }
  10866. },
  10867. },
  10868. [
  10869. {
  10870. name: "Teeny Tiny",
  10871. height: math.unit(1, "mm")
  10872. },
  10873. {
  10874. name: "Small",
  10875. height: math.unit(1, "inch"),
  10876. default: true
  10877. },
  10878. {
  10879. name: "Standard Sylveon",
  10880. height: math.unit(3 + 3 / 12, "feet")
  10881. },
  10882. {
  10883. name: "Large Nuisance",
  10884. height: math.unit(33, "feet")
  10885. },
  10886. {
  10887. name: "City Filler",
  10888. height: math.unit(3000, "feet")
  10889. },
  10890. {
  10891. name: "New Horizon",
  10892. height: math.unit(6000, "miles")
  10893. },
  10894. ]
  10895. ))
  10896. characterMakers.push(() => makeCharacter(
  10897. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10898. {
  10899. front: {
  10900. height: math.unit(5, "cm"),
  10901. weight: math.unit(1.94, "g"),
  10902. name: "Front",
  10903. image: {
  10904. source: "./media/characters/fleta/front.svg",
  10905. extra: 835 / 803
  10906. }
  10907. },
  10908. back: {
  10909. height: math.unit(5, "cm"),
  10910. weight: math.unit(1.94, "g"),
  10911. name: "Back",
  10912. image: {
  10913. source: "./media/characters/fleta/back.svg",
  10914. extra: 835 / 803
  10915. }
  10916. },
  10917. },
  10918. [
  10919. {
  10920. name: "Micro",
  10921. height: math.unit(5, "cm"),
  10922. default: true
  10923. },
  10924. ]
  10925. ))
  10926. characterMakers.push(() => makeCharacter(
  10927. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10928. {
  10929. front: {
  10930. height: math.unit(6, "feet"),
  10931. weight: math.unit(225, "lb"),
  10932. name: "Front",
  10933. image: {
  10934. source: "./media/characters/dominic/front.svg",
  10935. extra: 1770 / 1620,
  10936. bottom: 0.025
  10937. }
  10938. },
  10939. back: {
  10940. height: math.unit(6, "feet"),
  10941. weight: math.unit(225, "lb"),
  10942. name: "Back",
  10943. image: {
  10944. source: "./media/characters/dominic/back.svg",
  10945. extra: 1745 / 1620,
  10946. bottom: 0.065
  10947. }
  10948. },
  10949. },
  10950. [
  10951. {
  10952. name: "Nano",
  10953. height: math.unit(0.1, "mm")
  10954. },
  10955. {
  10956. name: "Micro-",
  10957. height: math.unit(1, "mm")
  10958. },
  10959. {
  10960. name: "Micro",
  10961. height: math.unit(4, "inches")
  10962. },
  10963. {
  10964. name: "Normal",
  10965. height: math.unit(6 + 4 / 12, "feet"),
  10966. default: true
  10967. },
  10968. {
  10969. name: "Macro",
  10970. height: math.unit(115, "feet")
  10971. },
  10972. {
  10973. name: "Macro+",
  10974. height: math.unit(955, "feet")
  10975. },
  10976. {
  10977. name: "Megamacro",
  10978. height: math.unit(8990, "feet")
  10979. },
  10980. {
  10981. name: "Gigmacro",
  10982. height: math.unit(9310, "miles")
  10983. },
  10984. {
  10985. name: "Teramacro",
  10986. height: math.unit(1567005010, "miles")
  10987. },
  10988. {
  10989. name: "Examacro",
  10990. height: math.unit(1425, "parsecs")
  10991. },
  10992. ]
  10993. ))
  10994. characterMakers.push(() => makeCharacter(
  10995. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10996. {
  10997. front: {
  10998. height: math.unit(400, "feet"),
  10999. weight: math.unit(44444444, "lb"),
  11000. name: "Front",
  11001. image: {
  11002. source: "./media/characters/major-colonel/front.svg"
  11003. }
  11004. },
  11005. back: {
  11006. height: math.unit(400, "feet"),
  11007. weight: math.unit(44444444, "lb"),
  11008. name: "Back",
  11009. image: {
  11010. source: "./media/characters/major-colonel/back.svg"
  11011. }
  11012. },
  11013. },
  11014. [
  11015. {
  11016. name: "Macro",
  11017. height: math.unit(400, "feet"),
  11018. default: true
  11019. },
  11020. ]
  11021. ))
  11022. characterMakers.push(() => makeCharacter(
  11023. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11024. {
  11025. catFront: {
  11026. height: math.unit(6, "feet"),
  11027. weight: math.unit(120, "lb"),
  11028. name: "Front (Cat Side)",
  11029. image: {
  11030. source: "./media/characters/axel-lycan/cat-front.svg",
  11031. extra: 430 / 402,
  11032. bottom: 43 / 472.35
  11033. }
  11034. },
  11035. catBack: {
  11036. height: math.unit(6, "feet"),
  11037. weight: math.unit(120, "lb"),
  11038. name: "Back (Cat Side)",
  11039. image: {
  11040. source: "./media/characters/axel-lycan/cat-back.svg",
  11041. extra: 447 / 419,
  11042. bottom: 23.3 / 469
  11043. }
  11044. },
  11045. wolfFront: {
  11046. height: math.unit(6, "feet"),
  11047. weight: math.unit(120, "lb"),
  11048. name: "Front (Wolf Side)",
  11049. image: {
  11050. source: "./media/characters/axel-lycan/wolf-front.svg",
  11051. extra: 485 / 456,
  11052. bottom: 19 / 504
  11053. }
  11054. },
  11055. wolfBack: {
  11056. height: math.unit(6, "feet"),
  11057. weight: math.unit(120, "lb"),
  11058. name: "Back (Wolf Side)",
  11059. image: {
  11060. source: "./media/characters/axel-lycan/wolf-back.svg",
  11061. extra: 475 / 438,
  11062. bottom: 39.2 / 514
  11063. }
  11064. },
  11065. },
  11066. [
  11067. {
  11068. name: "Macro",
  11069. height: math.unit(1, "km"),
  11070. default: true
  11071. },
  11072. ]
  11073. ))
  11074. characterMakers.push(() => makeCharacter(
  11075. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11076. {
  11077. front: {
  11078. height: math.unit(5 + 9 / 12, "feet"),
  11079. weight: math.unit(175, "lb"),
  11080. name: "Front",
  11081. image: {
  11082. source: "./media/characters/vanrel-hyena/front.svg",
  11083. extra: 1086 / 1010,
  11084. bottom: 0.04
  11085. }
  11086. },
  11087. },
  11088. [
  11089. {
  11090. name: "Normal",
  11091. height: math.unit(5 + 9 / 12, "feet"),
  11092. default: true
  11093. },
  11094. ]
  11095. ))
  11096. characterMakers.push(() => makeCharacter(
  11097. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11098. {
  11099. front: {
  11100. height: math.unit(6, "feet"),
  11101. weight: math.unit(103, "lb"),
  11102. name: "Front",
  11103. image: {
  11104. source: "./media/characters/abbott-absol/front.svg",
  11105. extra: 765/694,
  11106. bottom: 47/812
  11107. }
  11108. },
  11109. },
  11110. [
  11111. {
  11112. name: "Megamicro",
  11113. height: math.unit(0.1, "mm")
  11114. },
  11115. {
  11116. name: "Micro",
  11117. height: math.unit(1, "inch")
  11118. },
  11119. {
  11120. name: "Normal",
  11121. height: math.unit(6, "feet"),
  11122. default: true
  11123. },
  11124. ]
  11125. ))
  11126. characterMakers.push(() => makeCharacter(
  11127. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11128. {
  11129. front: {
  11130. height: math.unit(6, "feet"),
  11131. weight: math.unit(264, "lb"),
  11132. name: "Front",
  11133. image: {
  11134. source: "./media/characters/hector/front.svg",
  11135. extra: 2280 / 2130,
  11136. bottom: 0.07
  11137. }
  11138. },
  11139. },
  11140. [
  11141. {
  11142. name: "Normal",
  11143. height: math.unit(12.25, "foot"),
  11144. default: true
  11145. },
  11146. {
  11147. name: "Macro",
  11148. height: math.unit(160, "feet")
  11149. },
  11150. ]
  11151. ))
  11152. characterMakers.push(() => makeCharacter(
  11153. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11154. {
  11155. front: {
  11156. height: math.unit(6, "feet"),
  11157. weight: math.unit(150, "lb"),
  11158. name: "Front",
  11159. image: {
  11160. source: "./media/characters/sal/front.svg",
  11161. extra: 1846 / 1699,
  11162. bottom: 0.04
  11163. }
  11164. },
  11165. },
  11166. [
  11167. {
  11168. name: "Megamacro",
  11169. height: math.unit(10, "miles"),
  11170. default: true
  11171. },
  11172. ]
  11173. ))
  11174. characterMakers.push(() => makeCharacter(
  11175. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11176. {
  11177. front: {
  11178. height: math.unit(3, "meters"),
  11179. weight: math.unit(450, "kg"),
  11180. name: "front",
  11181. image: {
  11182. source: "./media/characters/ranger/front.svg",
  11183. extra: 2401 / 2243,
  11184. bottom: 0.05
  11185. }
  11186. },
  11187. },
  11188. [
  11189. {
  11190. name: "Normal",
  11191. height: math.unit(3, "meters"),
  11192. default: true
  11193. },
  11194. ]
  11195. ))
  11196. characterMakers.push(() => makeCharacter(
  11197. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11198. {
  11199. front: {
  11200. height: math.unit(14, "feet"),
  11201. weight: math.unit(800, "kg"),
  11202. name: "Front",
  11203. image: {
  11204. source: "./media/characters/theresa/front.svg",
  11205. extra: 3575 / 3346,
  11206. bottom: 0.03
  11207. }
  11208. },
  11209. },
  11210. [
  11211. {
  11212. name: "Normal",
  11213. height: math.unit(14, "feet"),
  11214. default: true
  11215. },
  11216. ]
  11217. ))
  11218. characterMakers.push(() => makeCharacter(
  11219. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11220. {
  11221. front: {
  11222. height: math.unit(6, "feet"),
  11223. weight: math.unit(3, "kg"),
  11224. name: "Front",
  11225. image: {
  11226. source: "./media/characters/ine/front.svg",
  11227. extra: 678 / 539,
  11228. bottom: 0.023
  11229. }
  11230. },
  11231. },
  11232. [
  11233. {
  11234. name: "Normal",
  11235. height: math.unit(2.265, "feet"),
  11236. default: true
  11237. },
  11238. ]
  11239. ))
  11240. characterMakers.push(() => makeCharacter(
  11241. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11242. {
  11243. front: {
  11244. height: math.unit(5, "feet"),
  11245. weight: math.unit(30, "kg"),
  11246. name: "Front",
  11247. image: {
  11248. source: "./media/characters/vial/front.svg",
  11249. extra: 1365 / 1277,
  11250. bottom: 0.04
  11251. }
  11252. },
  11253. },
  11254. [
  11255. {
  11256. name: "Normal",
  11257. height: math.unit(5, "feet"),
  11258. default: true
  11259. },
  11260. ]
  11261. ))
  11262. characterMakers.push(() => makeCharacter(
  11263. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11264. {
  11265. side: {
  11266. height: math.unit(3.4, "meters"),
  11267. weight: math.unit(1000, "lb"),
  11268. name: "Side",
  11269. image: {
  11270. source: "./media/characters/rovoska/side.svg",
  11271. extra: 4403 / 1515
  11272. }
  11273. },
  11274. },
  11275. [
  11276. {
  11277. name: "Normal",
  11278. height: math.unit(3.4, "meters"),
  11279. default: true
  11280. },
  11281. ]
  11282. ))
  11283. characterMakers.push(() => makeCharacter(
  11284. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11285. {
  11286. front: {
  11287. height: math.unit(8, "feet"),
  11288. weight: math.unit(315, "lb"),
  11289. name: "Front",
  11290. image: {
  11291. source: "./media/characters/gunner-rotthbauer/front.svg"
  11292. }
  11293. },
  11294. back: {
  11295. height: math.unit(8, "feet"),
  11296. weight: math.unit(315, "lb"),
  11297. name: "Back",
  11298. image: {
  11299. source: "./media/characters/gunner-rotthbauer/back.svg"
  11300. }
  11301. },
  11302. },
  11303. [
  11304. {
  11305. name: "Micro",
  11306. height: math.unit(3.5, "inches")
  11307. },
  11308. {
  11309. name: "Normal",
  11310. height: math.unit(8, "feet"),
  11311. default: true
  11312. },
  11313. {
  11314. name: "Macro",
  11315. height: math.unit(250, "feet")
  11316. },
  11317. {
  11318. name: "Megamacro",
  11319. height: math.unit(1, "AU")
  11320. },
  11321. ]
  11322. ))
  11323. characterMakers.push(() => makeCharacter(
  11324. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11325. {
  11326. front: {
  11327. height: math.unit(5 + 5 / 12, "feet"),
  11328. weight: math.unit(140, "lb"),
  11329. name: "Front",
  11330. image: {
  11331. source: "./media/characters/allatia/front.svg",
  11332. extra: 1227 / 1180,
  11333. bottom: 0.027
  11334. }
  11335. },
  11336. },
  11337. [
  11338. {
  11339. name: "Normal",
  11340. height: math.unit(5 + 5 / 12, "feet")
  11341. },
  11342. {
  11343. name: "Macro",
  11344. height: math.unit(250, "feet"),
  11345. default: true
  11346. },
  11347. {
  11348. name: "Megamacro",
  11349. height: math.unit(8, "miles")
  11350. }
  11351. ]
  11352. ))
  11353. characterMakers.push(() => makeCharacter(
  11354. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11355. {
  11356. front: {
  11357. height: math.unit(6, "feet"),
  11358. weight: math.unit(120, "lb"),
  11359. name: "Front",
  11360. image: {
  11361. source: "./media/characters/tene/front.svg",
  11362. extra: 814/750,
  11363. bottom: 36/850
  11364. }
  11365. },
  11366. stomping: {
  11367. height: math.unit(2.025, "meters"),
  11368. weight: math.unit(120, "lb"),
  11369. name: "Stomping",
  11370. image: {
  11371. source: "./media/characters/tene/stomping.svg",
  11372. extra: 885/821,
  11373. bottom: 15/900
  11374. }
  11375. },
  11376. sitting: {
  11377. height: math.unit(1, "meter"),
  11378. weight: math.unit(120, "lb"),
  11379. name: "Sitting",
  11380. image: {
  11381. source: "./media/characters/tene/sitting.svg",
  11382. extra: 396/366,
  11383. bottom: 79/475
  11384. }
  11385. },
  11386. smiling: {
  11387. height: math.unit(1.2, "feet"),
  11388. name: "Smiling",
  11389. image: {
  11390. source: "./media/characters/tene/smiling.svg",
  11391. extra: 1364/1071,
  11392. bottom: 0/1364
  11393. }
  11394. },
  11395. smug: {
  11396. height: math.unit(1.3, "feet"),
  11397. name: "Smug",
  11398. image: {
  11399. source: "./media/characters/tene/smug.svg",
  11400. extra: 1323/1082,
  11401. bottom: 0/1323
  11402. }
  11403. },
  11404. feral: {
  11405. height: math.unit(3.9, "feet"),
  11406. weight: math.unit(250, "lb"),
  11407. name: "Feral",
  11408. image: {
  11409. source: "./media/characters/tene/feral.svg",
  11410. extra: 717 / 458,
  11411. bottom: 0.179
  11412. }
  11413. },
  11414. },
  11415. [
  11416. {
  11417. name: "Normal",
  11418. height: math.unit(6, "feet")
  11419. },
  11420. {
  11421. name: "Macro",
  11422. height: math.unit(300, "feet"),
  11423. default: true
  11424. },
  11425. {
  11426. name: "Megamacro",
  11427. height: math.unit(5, "miles")
  11428. },
  11429. ]
  11430. ))
  11431. characterMakers.push(() => makeCharacter(
  11432. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11433. {
  11434. side: {
  11435. height: math.unit(6, "feet"),
  11436. name: "Side",
  11437. image: {
  11438. source: "./media/characters/evander/side.svg",
  11439. extra: 877 / 477
  11440. }
  11441. },
  11442. },
  11443. [
  11444. {
  11445. name: "Normal",
  11446. height: math.unit(0.83, "meters"),
  11447. default: true
  11448. },
  11449. ]
  11450. ))
  11451. characterMakers.push(() => makeCharacter(
  11452. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11453. {
  11454. front: {
  11455. height: math.unit(12, "feet"),
  11456. weight: math.unit(1000, "lb"),
  11457. name: "Front",
  11458. image: {
  11459. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11460. extra: 1762 / 1611
  11461. }
  11462. },
  11463. back: {
  11464. height: math.unit(12, "feet"),
  11465. weight: math.unit(1000, "lb"),
  11466. name: "Back",
  11467. image: {
  11468. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11469. extra: 1762 / 1611
  11470. }
  11471. },
  11472. },
  11473. [
  11474. {
  11475. name: "Normal",
  11476. height: math.unit(12, "feet"),
  11477. default: true
  11478. },
  11479. {
  11480. name: "Kaiju",
  11481. height: math.unit(150, "feet")
  11482. },
  11483. ]
  11484. ))
  11485. characterMakers.push(() => makeCharacter(
  11486. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11487. {
  11488. front: {
  11489. height: math.unit(6, "feet"),
  11490. weight: math.unit(150, "lb"),
  11491. name: "Front",
  11492. image: {
  11493. source: "./media/characters/zero-alurus/front.svg"
  11494. }
  11495. },
  11496. back: {
  11497. height: math.unit(6, "feet"),
  11498. weight: math.unit(150, "lb"),
  11499. name: "Back",
  11500. image: {
  11501. source: "./media/characters/zero-alurus/back.svg"
  11502. }
  11503. },
  11504. },
  11505. [
  11506. {
  11507. name: "Normal",
  11508. height: math.unit(5 + 10 / 12, "feet")
  11509. },
  11510. {
  11511. name: "Macro",
  11512. height: math.unit(60, "feet"),
  11513. default: true
  11514. },
  11515. {
  11516. name: "Macro+",
  11517. height: math.unit(450, "feet")
  11518. },
  11519. ]
  11520. ))
  11521. characterMakers.push(() => makeCharacter(
  11522. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11523. {
  11524. front: {
  11525. height: math.unit(6, "feet"),
  11526. weight: math.unit(200, "lb"),
  11527. name: "Front",
  11528. image: {
  11529. source: "./media/characters/mega-shi/front.svg",
  11530. extra: 1279 / 1250,
  11531. bottom: 0.02
  11532. }
  11533. },
  11534. back: {
  11535. height: math.unit(6, "feet"),
  11536. weight: math.unit(200, "lb"),
  11537. name: "Back",
  11538. image: {
  11539. source: "./media/characters/mega-shi/back.svg",
  11540. extra: 1279 / 1250,
  11541. bottom: 0.02
  11542. }
  11543. },
  11544. },
  11545. [
  11546. {
  11547. name: "Micro",
  11548. height: math.unit(16 + 6 / 12, "feet")
  11549. },
  11550. {
  11551. name: "Third Dimension",
  11552. height: math.unit(40, "meters")
  11553. },
  11554. {
  11555. name: "Normal",
  11556. height: math.unit(660, "feet"),
  11557. default: true
  11558. },
  11559. {
  11560. name: "Megamacro",
  11561. height: math.unit(10, "miles")
  11562. },
  11563. {
  11564. name: "Planetary Launch",
  11565. height: math.unit(500, "miles")
  11566. },
  11567. {
  11568. name: "Interstellar",
  11569. height: math.unit(1e9, "miles")
  11570. },
  11571. {
  11572. name: "Leaving the Universe",
  11573. height: math.unit(1, "gigaparsec")
  11574. },
  11575. {
  11576. name: "Travelling Universes",
  11577. height: math.unit(30e15, "parsecs")
  11578. },
  11579. ]
  11580. ))
  11581. characterMakers.push(() => makeCharacter(
  11582. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11583. {
  11584. front: {
  11585. height: math.unit(5 + 4/12, "feet"),
  11586. weight: math.unit(120, "lb"),
  11587. name: "Front",
  11588. image: {
  11589. source: "./media/characters/odyssey/front.svg",
  11590. extra: 1747/1571,
  11591. bottom: 47/1794
  11592. }
  11593. },
  11594. side: {
  11595. height: math.unit(5.1, "feet"),
  11596. weight: math.unit(120, "lb"),
  11597. name: "Side",
  11598. image: {
  11599. source: "./media/characters/odyssey/side.svg",
  11600. extra: 1847/1619,
  11601. bottom: 47/1894
  11602. }
  11603. },
  11604. lounging: {
  11605. height: math.unit(1.464, "feet"),
  11606. weight: math.unit(120, "lb"),
  11607. name: "Lounging",
  11608. image: {
  11609. source: "./media/characters/odyssey/lounging.svg",
  11610. extra: 1235/837,
  11611. bottom: 551/1786
  11612. }
  11613. },
  11614. },
  11615. [
  11616. {
  11617. name: "Normal",
  11618. height: math.unit(5 + 4 / 12, "feet")
  11619. },
  11620. {
  11621. name: "Macro",
  11622. height: math.unit(1, "km")
  11623. },
  11624. {
  11625. name: "Megamacro",
  11626. height: math.unit(3000, "km")
  11627. },
  11628. {
  11629. name: "Gigamacro",
  11630. height: math.unit(1, "AU"),
  11631. default: true
  11632. },
  11633. {
  11634. name: "Omniversal",
  11635. height: math.unit(100e14, "lightyears")
  11636. },
  11637. ]
  11638. ))
  11639. characterMakers.push(() => makeCharacter(
  11640. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11641. {
  11642. front: {
  11643. height: math.unit(5 + 10/12, "feet"),
  11644. name: "Front",
  11645. image: {
  11646. source: "./media/characters/mekuto/front.svg",
  11647. extra: 875/835,
  11648. bottom: 46/921
  11649. }
  11650. },
  11651. },
  11652. [
  11653. {
  11654. name: "Minimicro",
  11655. height: math.unit(0.2, "inches")
  11656. },
  11657. {
  11658. name: "Micro",
  11659. height: math.unit(1.5, "inches")
  11660. },
  11661. {
  11662. name: "Normal",
  11663. height: math.unit(5 + 10 / 12, "feet"),
  11664. default: true
  11665. },
  11666. {
  11667. name: "Minimacro",
  11668. height: math.unit(17 + 9 / 12, "feet")
  11669. },
  11670. {
  11671. name: "Macro",
  11672. height: math.unit(177.5, "feet")
  11673. },
  11674. {
  11675. name: "Megamacro",
  11676. height: math.unit(152, "miles")
  11677. },
  11678. ]
  11679. ))
  11680. characterMakers.push(() => makeCharacter(
  11681. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11682. {
  11683. front: {
  11684. height: math.unit(6.5, "inches"),
  11685. weight: math.unit(13, "oz"),
  11686. name: "Front",
  11687. image: {
  11688. source: "./media/characters/dafydd-tomos/front.svg",
  11689. extra: 2990 / 2603,
  11690. bottom: 0.03
  11691. }
  11692. },
  11693. },
  11694. [
  11695. {
  11696. name: "Micro",
  11697. height: math.unit(6.5, "inches"),
  11698. default: true
  11699. },
  11700. ]
  11701. ))
  11702. characterMakers.push(() => makeCharacter(
  11703. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11704. {
  11705. front: {
  11706. height: math.unit(6, "feet"),
  11707. weight: math.unit(150, "lb"),
  11708. name: "Front",
  11709. image: {
  11710. source: "./media/characters/splinter/front.svg",
  11711. extra: 2990 / 2882,
  11712. bottom: 0.04
  11713. }
  11714. },
  11715. back: {
  11716. height: math.unit(6, "feet"),
  11717. weight: math.unit(150, "lb"),
  11718. name: "Back",
  11719. image: {
  11720. source: "./media/characters/splinter/back.svg",
  11721. extra: 2990 / 2882,
  11722. bottom: 0.04
  11723. }
  11724. },
  11725. },
  11726. [
  11727. {
  11728. name: "Normal",
  11729. height: math.unit(6, "feet")
  11730. },
  11731. {
  11732. name: "Macro",
  11733. height: math.unit(230, "meters"),
  11734. default: true
  11735. },
  11736. ]
  11737. ))
  11738. characterMakers.push(() => makeCharacter(
  11739. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11740. {
  11741. front: {
  11742. height: math.unit(4 + 10 / 12, "feet"),
  11743. weight: math.unit(480, "lb"),
  11744. name: "Front",
  11745. image: {
  11746. source: "./media/characters/snow-gabumon/front.svg",
  11747. extra: 1140 / 963,
  11748. bottom: 0.058
  11749. }
  11750. },
  11751. back: {
  11752. height: math.unit(4 + 10 / 12, "feet"),
  11753. weight: math.unit(480, "lb"),
  11754. name: "Back",
  11755. image: {
  11756. source: "./media/characters/snow-gabumon/back.svg",
  11757. extra: 1115 / 962,
  11758. bottom: 0.041
  11759. }
  11760. },
  11761. frontUndresed: {
  11762. height: math.unit(4 + 10 / 12, "feet"),
  11763. weight: math.unit(480, "lb"),
  11764. name: "Front (Undressed)",
  11765. image: {
  11766. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11767. extra: 1061 / 960,
  11768. bottom: 0.045
  11769. }
  11770. },
  11771. },
  11772. [
  11773. {
  11774. name: "Micro",
  11775. height: math.unit(1, "inch")
  11776. },
  11777. {
  11778. name: "Normal",
  11779. height: math.unit(4 + 10 / 12, "feet"),
  11780. default: true
  11781. },
  11782. {
  11783. name: "Macro",
  11784. height: math.unit(200, "feet")
  11785. },
  11786. {
  11787. name: "Megamacro",
  11788. height: math.unit(120, "miles")
  11789. },
  11790. {
  11791. name: "Gigamacro",
  11792. height: math.unit(9800, "miles")
  11793. },
  11794. ]
  11795. ))
  11796. characterMakers.push(() => makeCharacter(
  11797. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11798. {
  11799. front: {
  11800. height: math.unit(1.7, "meters"),
  11801. weight: math.unit(140, "lb"),
  11802. name: "Front",
  11803. image: {
  11804. source: "./media/characters/moody/front.svg",
  11805. extra: 3226 / 3007,
  11806. bottom: 0.087
  11807. }
  11808. },
  11809. },
  11810. [
  11811. {
  11812. name: "Micro",
  11813. height: math.unit(1, "mm")
  11814. },
  11815. {
  11816. name: "Normal",
  11817. height: math.unit(1.7, "meters"),
  11818. default: true
  11819. },
  11820. {
  11821. name: "Macro",
  11822. height: math.unit(80, "meters")
  11823. },
  11824. {
  11825. name: "Macro+",
  11826. height: math.unit(500, "meters")
  11827. },
  11828. ]
  11829. ))
  11830. characterMakers.push(() => makeCharacter(
  11831. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11832. {
  11833. front: {
  11834. height: math.unit(6, "feet"),
  11835. weight: math.unit(150, "lb"),
  11836. name: "Front",
  11837. image: {
  11838. source: "./media/characters/zyas/front.svg",
  11839. extra: 1180 / 1120,
  11840. bottom: 0.045
  11841. }
  11842. },
  11843. },
  11844. [
  11845. {
  11846. name: "Normal",
  11847. height: math.unit(10, "feet"),
  11848. default: true
  11849. },
  11850. {
  11851. name: "Macro",
  11852. height: math.unit(500, "feet")
  11853. },
  11854. {
  11855. name: "Megamacro",
  11856. height: math.unit(5, "miles")
  11857. },
  11858. {
  11859. name: "Teramacro",
  11860. height: math.unit(150000, "miles")
  11861. },
  11862. ]
  11863. ))
  11864. characterMakers.push(() => makeCharacter(
  11865. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11866. {
  11867. front: {
  11868. height: math.unit(6, "feet"),
  11869. weight: math.unit(150, "lb"),
  11870. name: "Front",
  11871. image: {
  11872. source: "./media/characters/cuon/front.svg",
  11873. extra: 1390 / 1320,
  11874. bottom: 0.008
  11875. }
  11876. },
  11877. },
  11878. [
  11879. {
  11880. name: "Micro",
  11881. height: math.unit(3, "inches")
  11882. },
  11883. {
  11884. name: "Normal",
  11885. height: math.unit(18 + 9 / 12, "feet"),
  11886. default: true
  11887. },
  11888. {
  11889. name: "Macro",
  11890. height: math.unit(360, "feet")
  11891. },
  11892. {
  11893. name: "Megamacro",
  11894. height: math.unit(360, "miles")
  11895. },
  11896. ]
  11897. ))
  11898. characterMakers.push(() => makeCharacter(
  11899. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11900. {
  11901. front: {
  11902. height: math.unit(2.4, "meters"),
  11903. weight: math.unit(70, "kg"),
  11904. name: "Front",
  11905. image: {
  11906. source: "./media/characters/nyanuxk/front.svg",
  11907. extra: 1172 / 1084,
  11908. bottom: 0.065
  11909. }
  11910. },
  11911. side: {
  11912. height: math.unit(2.4, "meters"),
  11913. weight: math.unit(70, "kg"),
  11914. name: "Side",
  11915. image: {
  11916. source: "./media/characters/nyanuxk/side.svg",
  11917. extra: 1190 / 1132,
  11918. bottom: 0.007
  11919. }
  11920. },
  11921. back: {
  11922. height: math.unit(2.4, "meters"),
  11923. weight: math.unit(70, "kg"),
  11924. name: "Back",
  11925. image: {
  11926. source: "./media/characters/nyanuxk/back.svg",
  11927. extra: 1200 / 1141,
  11928. bottom: 0.015
  11929. }
  11930. },
  11931. foot: {
  11932. height: math.unit(0.52, "meters"),
  11933. name: "Foot",
  11934. image: {
  11935. source: "./media/characters/nyanuxk/foot.svg"
  11936. }
  11937. },
  11938. },
  11939. [
  11940. {
  11941. name: "Micro",
  11942. height: math.unit(2, "cm")
  11943. },
  11944. {
  11945. name: "Normal",
  11946. height: math.unit(2.4, "meters"),
  11947. default: true
  11948. },
  11949. {
  11950. name: "Smaller Macro",
  11951. height: math.unit(120, "meters")
  11952. },
  11953. {
  11954. name: "Bigger Macro",
  11955. height: math.unit(1.2, "km")
  11956. },
  11957. {
  11958. name: "Megamacro",
  11959. height: math.unit(15, "kilometers")
  11960. },
  11961. {
  11962. name: "Gigamacro",
  11963. height: math.unit(2000, "km")
  11964. },
  11965. {
  11966. name: "Teramacro",
  11967. height: math.unit(500000, "km")
  11968. },
  11969. ]
  11970. ))
  11971. characterMakers.push(() => makeCharacter(
  11972. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11973. {
  11974. side: {
  11975. height: math.unit(6, "feet"),
  11976. name: "Side",
  11977. image: {
  11978. source: "./media/characters/ailbhe/side.svg",
  11979. extra: 757 / 464,
  11980. bottom: 0.041
  11981. }
  11982. },
  11983. },
  11984. [
  11985. {
  11986. name: "Normal",
  11987. height: math.unit(1.07, "meters"),
  11988. default: true
  11989. },
  11990. ]
  11991. ))
  11992. characterMakers.push(() => makeCharacter(
  11993. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11994. {
  11995. front: {
  11996. height: math.unit(6, "feet"),
  11997. weight: math.unit(120, "kg"),
  11998. name: "Front",
  11999. image: {
  12000. source: "./media/characters/zevulfius/front.svg",
  12001. extra: 965 / 903
  12002. }
  12003. },
  12004. side: {
  12005. height: math.unit(6, "feet"),
  12006. weight: math.unit(120, "kg"),
  12007. name: "Side",
  12008. image: {
  12009. source: "./media/characters/zevulfius/side.svg",
  12010. extra: 939 / 900
  12011. }
  12012. },
  12013. back: {
  12014. height: math.unit(6, "feet"),
  12015. weight: math.unit(120, "kg"),
  12016. name: "Back",
  12017. image: {
  12018. source: "./media/characters/zevulfius/back.svg",
  12019. extra: 918 / 854,
  12020. bottom: 0.005
  12021. }
  12022. },
  12023. foot: {
  12024. height: math.unit(6 / 3.72, "feet"),
  12025. name: "Foot",
  12026. image: {
  12027. source: "./media/characters/zevulfius/foot.svg"
  12028. }
  12029. },
  12030. },
  12031. [
  12032. {
  12033. name: "Macro",
  12034. height: math.unit(750, "meters")
  12035. },
  12036. {
  12037. name: "Megamacro",
  12038. height: math.unit(20, "km"),
  12039. default: true
  12040. },
  12041. {
  12042. name: "Gigamacro",
  12043. height: math.unit(2000, "km")
  12044. },
  12045. {
  12046. name: "Teramacro",
  12047. height: math.unit(250000, "km")
  12048. },
  12049. ]
  12050. ))
  12051. characterMakers.push(() => makeCharacter(
  12052. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12053. {
  12054. front: {
  12055. height: math.unit(100, "feet"),
  12056. weight: math.unit(350, "kg"),
  12057. name: "Front",
  12058. image: {
  12059. source: "./media/characters/rikes/front.svg",
  12060. extra: 1565 / 1483,
  12061. bottom: 0.017
  12062. }
  12063. },
  12064. },
  12065. [
  12066. {
  12067. name: "Macro",
  12068. height: math.unit(100, "feet"),
  12069. default: true
  12070. },
  12071. ]
  12072. ))
  12073. characterMakers.push(() => makeCharacter(
  12074. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12075. {
  12076. front: {
  12077. height: math.unit(8, "feet"),
  12078. weight: math.unit(356, "lb"),
  12079. name: "Front",
  12080. image: {
  12081. source: "./media/characters/adam-silver-mane/front.svg",
  12082. extra: 1036/937,
  12083. bottom: 63/1099
  12084. }
  12085. },
  12086. side: {
  12087. height: math.unit(8, "feet"),
  12088. weight: math.unit(356, "lb"),
  12089. name: "Side",
  12090. image: {
  12091. source: "./media/characters/adam-silver-mane/side.svg",
  12092. extra: 997/901,
  12093. bottom: 59/1056
  12094. }
  12095. },
  12096. frontNsfw: {
  12097. height: math.unit(8, "feet"),
  12098. weight: math.unit(356, "lb"),
  12099. name: "Front (NSFW)",
  12100. image: {
  12101. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12102. extra: 1036/937,
  12103. bottom: 63/1099
  12104. }
  12105. },
  12106. sideNsfw: {
  12107. height: math.unit(8, "feet"),
  12108. weight: math.unit(356, "lb"),
  12109. name: "Side (NSFW)",
  12110. image: {
  12111. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12112. extra: 997/901,
  12113. bottom: 59/1056
  12114. }
  12115. },
  12116. dick: {
  12117. height: math.unit(2.1, "feet"),
  12118. name: "Dick",
  12119. image: {
  12120. source: "./media/characters/adam-silver-mane/dick.svg"
  12121. }
  12122. },
  12123. taur: {
  12124. height: math.unit(16, "feet"),
  12125. weight: math.unit(1500, "kg"),
  12126. name: "Taur",
  12127. image: {
  12128. source: "./media/characters/adam-silver-mane/taur.svg",
  12129. extra: 1713 / 1571,
  12130. bottom: 0.01
  12131. }
  12132. },
  12133. },
  12134. [
  12135. {
  12136. name: "Normal",
  12137. height: math.unit(8, "feet")
  12138. },
  12139. {
  12140. name: "Minimacro",
  12141. height: math.unit(80, "feet")
  12142. },
  12143. {
  12144. name: "MDA",
  12145. height: math.unit(80, "meters")
  12146. },
  12147. {
  12148. name: "Macro",
  12149. height: math.unit(800, "feet"),
  12150. default: true
  12151. },
  12152. {
  12153. name: "Megamacro",
  12154. height: math.unit(8000, "feet")
  12155. },
  12156. {
  12157. name: "Gigamacro",
  12158. height: math.unit(800, "miles")
  12159. },
  12160. {
  12161. name: "Teramacro",
  12162. height: math.unit(80000, "miles")
  12163. },
  12164. {
  12165. name: "Celestial",
  12166. height: math.unit(8e6, "miles")
  12167. },
  12168. {
  12169. name: "Star Dragon",
  12170. height: math.unit(800000, "parsecs")
  12171. },
  12172. {
  12173. name: "Godly",
  12174. height: math.unit(800, "teraparsecs")
  12175. },
  12176. ]
  12177. ))
  12178. characterMakers.push(() => makeCharacter(
  12179. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12180. {
  12181. front: {
  12182. height: math.unit(6, "feet"),
  12183. weight: math.unit(150, "lb"),
  12184. name: "Front",
  12185. image: {
  12186. source: "./media/characters/ky'owin/front.svg",
  12187. extra: 3862/3053,
  12188. bottom: 74/3936
  12189. }
  12190. },
  12191. },
  12192. [
  12193. {
  12194. name: "Normal",
  12195. height: math.unit(6 + 8 / 12, "feet")
  12196. },
  12197. {
  12198. name: "Large",
  12199. height: math.unit(68, "feet")
  12200. },
  12201. {
  12202. name: "Macro",
  12203. height: math.unit(132, "feet")
  12204. },
  12205. {
  12206. name: "Macro+",
  12207. height: math.unit(340, "feet")
  12208. },
  12209. {
  12210. name: "Macro++",
  12211. height: math.unit(680, "feet"),
  12212. default: true
  12213. },
  12214. {
  12215. name: "Megamacro",
  12216. height: math.unit(1, "mile")
  12217. },
  12218. {
  12219. name: "Megamacro+",
  12220. height: math.unit(10, "miles")
  12221. },
  12222. ]
  12223. ))
  12224. characterMakers.push(() => makeCharacter(
  12225. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12226. {
  12227. front: {
  12228. height: math.unit(4, "feet"),
  12229. weight: math.unit(50, "lb"),
  12230. name: "Front",
  12231. image: {
  12232. source: "./media/characters/mal/front.svg",
  12233. extra: 785 / 724,
  12234. bottom: 0.07
  12235. }
  12236. },
  12237. },
  12238. [
  12239. {
  12240. name: "Micro",
  12241. height: math.unit(4, "inches")
  12242. },
  12243. {
  12244. name: "Normal",
  12245. height: math.unit(4, "feet"),
  12246. default: true
  12247. },
  12248. {
  12249. name: "Macro",
  12250. height: math.unit(200, "feet")
  12251. },
  12252. ]
  12253. ))
  12254. characterMakers.push(() => makeCharacter(
  12255. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12256. {
  12257. front: {
  12258. height: math.unit(6, "feet"),
  12259. weight: math.unit(150, "lb"),
  12260. name: "Front",
  12261. image: {
  12262. source: "./media/characters/jordan-deware/front.svg",
  12263. extra: 1191 / 1012
  12264. }
  12265. },
  12266. },
  12267. [
  12268. {
  12269. name: "Nano",
  12270. height: math.unit(0.01, "mm")
  12271. },
  12272. {
  12273. name: "Minimicro",
  12274. height: math.unit(1, "mm")
  12275. },
  12276. {
  12277. name: "Micro",
  12278. height: math.unit(0.5, "inches")
  12279. },
  12280. {
  12281. name: "Normal",
  12282. height: math.unit(4, "feet"),
  12283. default: true
  12284. },
  12285. {
  12286. name: "Minimacro",
  12287. height: math.unit(40, "meters")
  12288. },
  12289. {
  12290. name: "Small Macro",
  12291. height: math.unit(400, "meters")
  12292. },
  12293. {
  12294. name: "Macro",
  12295. height: math.unit(4, "miles")
  12296. },
  12297. {
  12298. name: "Megamacro",
  12299. height: math.unit(40, "miles")
  12300. },
  12301. {
  12302. name: "Megamacro+",
  12303. height: math.unit(400, "miles")
  12304. },
  12305. {
  12306. name: "Gigamacro",
  12307. height: math.unit(400000, "miles")
  12308. },
  12309. ]
  12310. ))
  12311. characterMakers.push(() => makeCharacter(
  12312. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12313. {
  12314. side: {
  12315. height: math.unit(6, "feet"),
  12316. weight: math.unit(150, "lb"),
  12317. name: "Side",
  12318. image: {
  12319. source: "./media/characters/kimiko/side.svg",
  12320. extra: 600 / 358
  12321. }
  12322. },
  12323. },
  12324. [
  12325. {
  12326. name: "Normal",
  12327. height: math.unit(15, "feet"),
  12328. default: true
  12329. },
  12330. {
  12331. name: "Macro",
  12332. height: math.unit(220, "feet")
  12333. },
  12334. {
  12335. name: "Macro+",
  12336. height: math.unit(1450, "feet")
  12337. },
  12338. {
  12339. name: "Megamacro",
  12340. height: math.unit(11500, "feet")
  12341. },
  12342. {
  12343. name: "Gigamacro",
  12344. height: math.unit(9500, "miles")
  12345. },
  12346. {
  12347. name: "Teramacro",
  12348. height: math.unit(2208005005, "miles")
  12349. },
  12350. {
  12351. name: "Examacro",
  12352. height: math.unit(2750, "parsecs")
  12353. },
  12354. {
  12355. name: "Zettamacro",
  12356. height: math.unit(101500, "parsecs")
  12357. },
  12358. ]
  12359. ))
  12360. characterMakers.push(() => makeCharacter(
  12361. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12362. {
  12363. front: {
  12364. height: math.unit(6, "feet"),
  12365. weight: math.unit(70, "kg"),
  12366. name: "Front",
  12367. image: {
  12368. source: "./media/characters/andrew-sleepy/front.svg"
  12369. }
  12370. },
  12371. side: {
  12372. height: math.unit(6, "feet"),
  12373. weight: math.unit(70, "kg"),
  12374. name: "Side",
  12375. image: {
  12376. source: "./media/characters/andrew-sleepy/side.svg"
  12377. }
  12378. },
  12379. },
  12380. [
  12381. {
  12382. name: "Micro",
  12383. height: math.unit(1, "mm"),
  12384. default: true
  12385. },
  12386. ]
  12387. ))
  12388. characterMakers.push(() => makeCharacter(
  12389. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12390. {
  12391. front: {
  12392. height: math.unit(6, "feet"),
  12393. weight: math.unit(150, "lb"),
  12394. name: "Front",
  12395. image: {
  12396. source: "./media/characters/judio/front.svg",
  12397. extra: 1258 / 1110
  12398. }
  12399. },
  12400. },
  12401. [
  12402. {
  12403. name: "Normal",
  12404. height: math.unit(5 + 6 / 12, "feet")
  12405. },
  12406. {
  12407. name: "Macro",
  12408. height: math.unit(1000, "feet"),
  12409. default: true
  12410. },
  12411. {
  12412. name: "Megamacro",
  12413. height: math.unit(10, "miles")
  12414. },
  12415. ]
  12416. ))
  12417. characterMakers.push(() => makeCharacter(
  12418. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12419. {
  12420. frontDressed: {
  12421. height: math.unit(6, "feet"),
  12422. weight: math.unit(68, "kg"),
  12423. name: "Front (Dressed)",
  12424. image: {
  12425. source: "./media/characters/nomaxice/front-dressed.svg",
  12426. extra: 1137/824,
  12427. bottom: 74/1211
  12428. }
  12429. },
  12430. frontShorts: {
  12431. height: math.unit(6, "feet"),
  12432. weight: math.unit(68, "kg"),
  12433. name: "Front (Shorts)",
  12434. image: {
  12435. source: "./media/characters/nomaxice/front-shorts.svg",
  12436. extra: 1137/824,
  12437. bottom: 74/1211
  12438. }
  12439. },
  12440. back: {
  12441. height: math.unit(6, "feet"),
  12442. weight: math.unit(68, "kg"),
  12443. name: "Back",
  12444. image: {
  12445. source: "./media/characters/nomaxice/back.svg",
  12446. extra: 822/786,
  12447. bottom: 39/861
  12448. }
  12449. },
  12450. hand: {
  12451. height: math.unit(0.565, "feet"),
  12452. name: "Hand",
  12453. image: {
  12454. source: "./media/characters/nomaxice/hand.svg"
  12455. }
  12456. },
  12457. foot: {
  12458. height: math.unit(1, "feet"),
  12459. name: "Foot",
  12460. image: {
  12461. source: "./media/characters/nomaxice/foot.svg"
  12462. }
  12463. },
  12464. },
  12465. [
  12466. {
  12467. name: "Micro",
  12468. height: math.unit(8, "cm")
  12469. },
  12470. {
  12471. name: "Norm",
  12472. height: math.unit(1.82, "m")
  12473. },
  12474. {
  12475. name: "Norm+",
  12476. height: math.unit(8.8, "feet"),
  12477. default: true
  12478. },
  12479. {
  12480. name: "Big",
  12481. height: math.unit(8, "meters")
  12482. },
  12483. {
  12484. name: "Macro",
  12485. height: math.unit(18, "meters")
  12486. },
  12487. {
  12488. name: "Macro+",
  12489. height: math.unit(88, "meters")
  12490. },
  12491. ]
  12492. ))
  12493. characterMakers.push(() => makeCharacter(
  12494. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12495. {
  12496. front: {
  12497. height: math.unit(12, "feet"),
  12498. weight: math.unit(1.5, "tons"),
  12499. name: "Front",
  12500. image: {
  12501. source: "./media/characters/dydros/front.svg",
  12502. extra: 863 / 800,
  12503. bottom: 0.015
  12504. }
  12505. },
  12506. back: {
  12507. height: math.unit(12, "feet"),
  12508. weight: math.unit(1.5, "tons"),
  12509. name: "Back",
  12510. image: {
  12511. source: "./media/characters/dydros/back.svg",
  12512. extra: 900 / 843,
  12513. bottom: 0.005
  12514. }
  12515. },
  12516. },
  12517. [
  12518. {
  12519. name: "Normal",
  12520. height: math.unit(12, "feet"),
  12521. default: true
  12522. },
  12523. ]
  12524. ))
  12525. characterMakers.push(() => makeCharacter(
  12526. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12527. {
  12528. front: {
  12529. height: math.unit(6, "feet"),
  12530. weight: math.unit(100, "kg"),
  12531. name: "Front",
  12532. image: {
  12533. source: "./media/characters/riggi/front.svg",
  12534. extra: 5787 / 5303
  12535. }
  12536. },
  12537. hyper: {
  12538. height: math.unit(6 * 5 / 3, "feet"),
  12539. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12540. name: "Hyper",
  12541. image: {
  12542. source: "./media/characters/riggi/hyper.svg",
  12543. extra: 3595 / 3485
  12544. }
  12545. },
  12546. },
  12547. [
  12548. {
  12549. name: "Small Macro",
  12550. height: math.unit(50, "feet")
  12551. },
  12552. {
  12553. name: "Default",
  12554. height: math.unit(200, "feet"),
  12555. default: true
  12556. },
  12557. {
  12558. name: "Loom",
  12559. height: math.unit(10000, "feet")
  12560. },
  12561. {
  12562. name: "Cruising Altitude",
  12563. height: math.unit(30000, "feet")
  12564. },
  12565. {
  12566. name: "Megamacro",
  12567. height: math.unit(100, "miles")
  12568. },
  12569. {
  12570. name: "Continent Sized",
  12571. height: math.unit(2800, "miles")
  12572. },
  12573. {
  12574. name: "Earth Sized",
  12575. height: math.unit(8000, "miles")
  12576. },
  12577. ]
  12578. ))
  12579. characterMakers.push(() => makeCharacter(
  12580. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12581. {
  12582. front: {
  12583. height: math.unit(6, "feet"),
  12584. weight: math.unit(250, "lb"),
  12585. name: "Front",
  12586. image: {
  12587. source: "./media/characters/alexi/front.svg",
  12588. extra: 3483 / 3291,
  12589. bottom: 0.04
  12590. }
  12591. },
  12592. back: {
  12593. height: math.unit(6, "feet"),
  12594. weight: math.unit(250, "lb"),
  12595. name: "Back",
  12596. image: {
  12597. source: "./media/characters/alexi/back.svg",
  12598. extra: 3533 / 3356,
  12599. bottom: 0.021
  12600. }
  12601. },
  12602. frontTransforming: {
  12603. height: math.unit(8.58, "feet"),
  12604. weight: math.unit(1300, "lb"),
  12605. name: "Transforming",
  12606. image: {
  12607. source: "./media/characters/alexi/front-transforming.svg",
  12608. extra: 437 / 409,
  12609. bottom: 19 / 458.66
  12610. }
  12611. },
  12612. frontTransformed: {
  12613. height: math.unit(12.5, "feet"),
  12614. weight: math.unit(4000, "lb"),
  12615. name: "Transformed",
  12616. image: {
  12617. source: "./media/characters/alexi/front-transformed.svg",
  12618. extra: 639 / 614,
  12619. bottom: 30.55 / 671
  12620. }
  12621. },
  12622. },
  12623. [
  12624. {
  12625. name: "Normal",
  12626. height: math.unit(14, "feet"),
  12627. default: true
  12628. },
  12629. {
  12630. name: "Minimacro",
  12631. height: math.unit(30, "meters")
  12632. },
  12633. {
  12634. name: "Macro",
  12635. height: math.unit(500, "meters")
  12636. },
  12637. {
  12638. name: "Megamacro",
  12639. height: math.unit(9000, "km")
  12640. },
  12641. {
  12642. name: "Teramacro",
  12643. height: math.unit(384000, "km")
  12644. },
  12645. ]
  12646. ))
  12647. characterMakers.push(() => makeCharacter(
  12648. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12649. {
  12650. front: {
  12651. height: math.unit(6, "feet"),
  12652. weight: math.unit(150, "lb"),
  12653. name: "Front",
  12654. image: {
  12655. source: "./media/characters/kayroo/front.svg",
  12656. extra: 1153 / 1038,
  12657. bottom: 0.06
  12658. }
  12659. },
  12660. foot: {
  12661. height: math.unit(6, "feet"),
  12662. weight: math.unit(150, "lb"),
  12663. name: "Foot",
  12664. image: {
  12665. source: "./media/characters/kayroo/foot.svg"
  12666. }
  12667. },
  12668. },
  12669. [
  12670. {
  12671. name: "Normal",
  12672. height: math.unit(8, "feet"),
  12673. default: true
  12674. },
  12675. {
  12676. name: "Minimacro",
  12677. height: math.unit(250, "feet")
  12678. },
  12679. {
  12680. name: "Macro",
  12681. height: math.unit(2800, "feet")
  12682. },
  12683. {
  12684. name: "Megamacro",
  12685. height: math.unit(5200, "feet")
  12686. },
  12687. {
  12688. name: "Gigamacro",
  12689. height: math.unit(27000, "feet")
  12690. },
  12691. {
  12692. name: "Omega",
  12693. height: math.unit(45000, "feet")
  12694. },
  12695. ]
  12696. ))
  12697. characterMakers.push(() => makeCharacter(
  12698. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12699. {
  12700. front: {
  12701. height: math.unit(18, "feet"),
  12702. weight: math.unit(5800, "lb"),
  12703. name: "Front",
  12704. image: {
  12705. source: "./media/characters/rhys/front.svg",
  12706. extra: 3386 / 3090,
  12707. bottom: 0.07
  12708. }
  12709. },
  12710. },
  12711. [
  12712. {
  12713. name: "Normal",
  12714. height: math.unit(18, "feet"),
  12715. default: true
  12716. },
  12717. {
  12718. name: "Working Size",
  12719. height: math.unit(200, "feet")
  12720. },
  12721. {
  12722. name: "Demolition Size",
  12723. height: math.unit(2000, "feet")
  12724. },
  12725. {
  12726. name: "Maximum Licensed Size",
  12727. height: math.unit(5, "miles")
  12728. },
  12729. {
  12730. name: "Maximum Observed Size",
  12731. height: math.unit(10, "yottameters")
  12732. },
  12733. ]
  12734. ))
  12735. characterMakers.push(() => makeCharacter(
  12736. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12737. {
  12738. front: {
  12739. height: math.unit(6, "feet"),
  12740. weight: math.unit(250, "lb"),
  12741. name: "Front",
  12742. image: {
  12743. source: "./media/characters/toto/front.svg",
  12744. extra: 527 / 479,
  12745. bottom: 0.05
  12746. }
  12747. },
  12748. },
  12749. [
  12750. {
  12751. name: "Micro",
  12752. height: math.unit(3, "feet")
  12753. },
  12754. {
  12755. name: "Normal",
  12756. height: math.unit(10, "feet")
  12757. },
  12758. {
  12759. name: "Macro",
  12760. height: math.unit(150, "feet"),
  12761. default: true
  12762. },
  12763. {
  12764. name: "Megamacro",
  12765. height: math.unit(1200, "feet")
  12766. },
  12767. ]
  12768. ))
  12769. characterMakers.push(() => makeCharacter(
  12770. { name: "King", species: ["lion"], tags: ["anthro"] },
  12771. {
  12772. back: {
  12773. height: math.unit(6, "feet"),
  12774. weight: math.unit(150, "lb"),
  12775. name: "Back",
  12776. image: {
  12777. source: "./media/characters/king/back.svg"
  12778. }
  12779. },
  12780. },
  12781. [
  12782. {
  12783. name: "Micro",
  12784. height: math.unit(2, "inches")
  12785. },
  12786. {
  12787. name: "Normal",
  12788. height: math.unit(8, "feet")
  12789. },
  12790. {
  12791. name: "Macro",
  12792. height: math.unit(200, "feet"),
  12793. default: true
  12794. },
  12795. {
  12796. name: "Megamacro",
  12797. height: math.unit(50, "miles")
  12798. },
  12799. ]
  12800. ))
  12801. characterMakers.push(() => makeCharacter(
  12802. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12803. {
  12804. front: {
  12805. height: math.unit(11, "feet"),
  12806. weight: math.unit(1400, "lb"),
  12807. name: "Front",
  12808. image: {
  12809. source: "./media/characters/cordite/front.svg",
  12810. extra: 1919/1827,
  12811. bottom: 40/1959
  12812. }
  12813. },
  12814. side: {
  12815. height: math.unit(11, "feet"),
  12816. weight: math.unit(1400, "lb"),
  12817. name: "Side",
  12818. image: {
  12819. source: "./media/characters/cordite/side.svg",
  12820. extra: 1908/1793,
  12821. bottom: 38/1946
  12822. }
  12823. },
  12824. back: {
  12825. height: math.unit(11, "feet"),
  12826. weight: math.unit(1400, "lb"),
  12827. name: "Back",
  12828. image: {
  12829. source: "./media/characters/cordite/back.svg",
  12830. extra: 1938/1837,
  12831. bottom: 10/1948
  12832. }
  12833. },
  12834. feral: {
  12835. height: math.unit(2, "feet"),
  12836. weight: math.unit(90, "lb"),
  12837. name: "Feral",
  12838. image: {
  12839. source: "./media/characters/cordite/feral.svg",
  12840. extra: 1260 / 755,
  12841. bottom: 0.05
  12842. }
  12843. },
  12844. },
  12845. [
  12846. {
  12847. name: "Normal",
  12848. height: math.unit(11, "feet"),
  12849. default: true
  12850. },
  12851. ]
  12852. ))
  12853. characterMakers.push(() => makeCharacter(
  12854. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12855. {
  12856. front: {
  12857. height: math.unit(6, "feet"),
  12858. weight: math.unit(150, "lb"),
  12859. name: "Front",
  12860. image: {
  12861. source: "./media/characters/pianostrong/front.svg",
  12862. extra: 6577 / 6254,
  12863. bottom: 0.02
  12864. }
  12865. },
  12866. side: {
  12867. height: math.unit(6, "feet"),
  12868. weight: math.unit(150, "lb"),
  12869. name: "Side",
  12870. image: {
  12871. source: "./media/characters/pianostrong/side.svg",
  12872. extra: 6106 / 5730
  12873. }
  12874. },
  12875. back: {
  12876. height: math.unit(6, "feet"),
  12877. weight: math.unit(150, "lb"),
  12878. name: "Back",
  12879. image: {
  12880. source: "./media/characters/pianostrong/back.svg",
  12881. extra: 6085 / 5733,
  12882. bottom: 0.01
  12883. }
  12884. },
  12885. },
  12886. [
  12887. {
  12888. name: "Macro",
  12889. height: math.unit(100, "feet")
  12890. },
  12891. {
  12892. name: "Macro+",
  12893. height: math.unit(300, "feet"),
  12894. default: true
  12895. },
  12896. {
  12897. name: "Macro++",
  12898. height: math.unit(1000, "feet")
  12899. },
  12900. ]
  12901. ))
  12902. characterMakers.push(() => makeCharacter(
  12903. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12904. {
  12905. front: {
  12906. height: math.unit(6, "feet"),
  12907. weight: math.unit(150, "lb"),
  12908. name: "Front",
  12909. image: {
  12910. source: "./media/characters/kona/front.svg",
  12911. extra: 2960 / 2629,
  12912. bottom: 0.005
  12913. }
  12914. },
  12915. },
  12916. [
  12917. {
  12918. name: "Normal",
  12919. height: math.unit(11 + 8 / 12, "feet")
  12920. },
  12921. {
  12922. name: "Macro",
  12923. height: math.unit(850, "feet"),
  12924. default: true
  12925. },
  12926. {
  12927. name: "Macro+",
  12928. height: math.unit(1.5, "km"),
  12929. default: true
  12930. },
  12931. {
  12932. name: "Megamacro",
  12933. height: math.unit(80, "miles")
  12934. },
  12935. {
  12936. name: "Gigamacro",
  12937. height: math.unit(3500, "miles")
  12938. },
  12939. ]
  12940. ))
  12941. characterMakers.push(() => makeCharacter(
  12942. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12943. {
  12944. side: {
  12945. height: math.unit(1.9, "meters"),
  12946. weight: math.unit(326, "kg"),
  12947. name: "Side",
  12948. image: {
  12949. source: "./media/characters/levi/side.svg",
  12950. extra: 1704 / 1334,
  12951. bottom: 0.02
  12952. }
  12953. },
  12954. },
  12955. [
  12956. {
  12957. name: "Normal",
  12958. height: math.unit(1.9, "meters"),
  12959. default: true
  12960. },
  12961. {
  12962. name: "Macro",
  12963. height: math.unit(20, "meters")
  12964. },
  12965. {
  12966. name: "Macro+",
  12967. height: math.unit(200, "meters")
  12968. },
  12969. {
  12970. name: "Megamacro",
  12971. height: math.unit(2, "km")
  12972. },
  12973. {
  12974. name: "Megamacro+",
  12975. height: math.unit(20, "km")
  12976. },
  12977. {
  12978. name: "Gigamacro",
  12979. height: math.unit(2500, "km")
  12980. },
  12981. {
  12982. name: "Gigamacro+",
  12983. height: math.unit(120000, "km")
  12984. },
  12985. {
  12986. name: "Teramacro",
  12987. height: math.unit(7.77e6, "km")
  12988. },
  12989. ]
  12990. ))
  12991. characterMakers.push(() => makeCharacter(
  12992. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12993. {
  12994. front: {
  12995. height: math.unit(6 + 4/12, "feet"),
  12996. weight: math.unit(190, "lb"),
  12997. name: "Front",
  12998. image: {
  12999. source: "./media/characters/bmc/front.svg",
  13000. extra: 1626/1472,
  13001. bottom: 79/1705
  13002. }
  13003. },
  13004. back: {
  13005. height: math.unit(6 + 4/12, "feet"),
  13006. weight: math.unit(190, "lb"),
  13007. name: "Back",
  13008. image: {
  13009. source: "./media/characters/bmc/back.svg",
  13010. extra: 1640/1479,
  13011. bottom: 45/1685
  13012. }
  13013. },
  13014. frontArmor: {
  13015. height: math.unit(6 + 4/12, "feet"),
  13016. weight: math.unit(190, "lb"),
  13017. name: "Front-armor",
  13018. image: {
  13019. source: "./media/characters/bmc/front-armor.svg",
  13020. extra: 1538/1468,
  13021. bottom: 79/1617
  13022. }
  13023. },
  13024. },
  13025. [
  13026. {
  13027. name: "Human-sized",
  13028. height: math.unit(6 + 4 / 12, "feet")
  13029. },
  13030. {
  13031. name: "Interactive Size",
  13032. height: math.unit(25, "feet")
  13033. },
  13034. {
  13035. name: "Small",
  13036. height: math.unit(250, "feet")
  13037. },
  13038. {
  13039. name: "Normal",
  13040. height: math.unit(1250, "feet"),
  13041. default: true
  13042. },
  13043. {
  13044. name: "Good Day",
  13045. height: math.unit(88, "miles")
  13046. },
  13047. {
  13048. name: "Largest Measured Size",
  13049. height: math.unit(105.960, "galaxies")
  13050. },
  13051. ]
  13052. ))
  13053. characterMakers.push(() => makeCharacter(
  13054. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13055. {
  13056. front: {
  13057. height: math.unit(20, "feet"),
  13058. weight: math.unit(2016, "kg"),
  13059. name: "Front",
  13060. image: {
  13061. source: "./media/characters/sven-the-kaiju/front.svg",
  13062. extra: 1277/1250,
  13063. bottom: 35/1312
  13064. }
  13065. },
  13066. mouth: {
  13067. height: math.unit(1.85, "feet"),
  13068. name: "Mouth",
  13069. image: {
  13070. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13071. }
  13072. },
  13073. },
  13074. [
  13075. {
  13076. name: "Fairy",
  13077. height: math.unit(6, "inches")
  13078. },
  13079. {
  13080. name: "Normal",
  13081. height: math.unit(20, "feet"),
  13082. default: true
  13083. },
  13084. {
  13085. name: "Rampage",
  13086. height: math.unit(200, "feet")
  13087. },
  13088. {
  13089. name: "Archfey Forest Guardian",
  13090. height: math.unit(1, "mile")
  13091. },
  13092. ]
  13093. ))
  13094. characterMakers.push(() => makeCharacter(
  13095. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13096. {
  13097. front: {
  13098. height: math.unit(4, "meters"),
  13099. weight: math.unit(2, "tons"),
  13100. name: "Front",
  13101. image: {
  13102. source: "./media/characters/marik/front.svg",
  13103. extra: 1057 / 1003,
  13104. bottom: 0.08
  13105. }
  13106. },
  13107. },
  13108. [
  13109. {
  13110. name: "Normal",
  13111. height: math.unit(4, "meters"),
  13112. default: true
  13113. },
  13114. {
  13115. name: "Macro",
  13116. height: math.unit(20, "meters")
  13117. },
  13118. {
  13119. name: "Megamacro",
  13120. height: math.unit(50, "km")
  13121. },
  13122. {
  13123. name: "Gigamacro",
  13124. height: math.unit(100, "km")
  13125. },
  13126. {
  13127. name: "Alpha Macro",
  13128. height: math.unit(7.88e7, "yottameters")
  13129. },
  13130. ]
  13131. ))
  13132. characterMakers.push(() => makeCharacter(
  13133. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13134. {
  13135. front: {
  13136. height: math.unit(6, "feet"),
  13137. weight: math.unit(110, "lb"),
  13138. name: "Front",
  13139. image: {
  13140. source: "./media/characters/mel/front.svg",
  13141. extra: 736 / 617,
  13142. bottom: 0.017
  13143. }
  13144. },
  13145. },
  13146. [
  13147. {
  13148. name: "Pico",
  13149. height: math.unit(3, "pm")
  13150. },
  13151. {
  13152. name: "Nano",
  13153. height: math.unit(3, "nm")
  13154. },
  13155. {
  13156. name: "Micro",
  13157. height: math.unit(0.3, "mm"),
  13158. default: true
  13159. },
  13160. {
  13161. name: "Micro+",
  13162. height: math.unit(3, "mm")
  13163. },
  13164. {
  13165. name: "Normal",
  13166. height: math.unit(5 + 10.5 / 12, "feet")
  13167. },
  13168. ]
  13169. ))
  13170. characterMakers.push(() => makeCharacter(
  13171. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13172. {
  13173. kaiju: {
  13174. height: math.unit(1.75, "meters"),
  13175. weight: math.unit(55, "kg"),
  13176. name: "Kaiju",
  13177. image: {
  13178. source: "./media/characters/lykonous/kaiju.svg",
  13179. extra: 1055 / 946,
  13180. bottom: 0.135
  13181. }
  13182. },
  13183. },
  13184. [
  13185. {
  13186. name: "Normal",
  13187. height: math.unit(2.5, "meters"),
  13188. default: true
  13189. },
  13190. {
  13191. name: "Kaiju Dragon",
  13192. height: math.unit(60, "meters")
  13193. },
  13194. {
  13195. name: "Mega Kaiju",
  13196. height: math.unit(120, "km")
  13197. },
  13198. {
  13199. name: "Giga Kaiju",
  13200. height: math.unit(200, "megameters")
  13201. },
  13202. {
  13203. name: "Terra Kaiju",
  13204. height: math.unit(400, "gigameters")
  13205. },
  13206. {
  13207. name: "Kaiju Dragon God",
  13208. height: math.unit(13000, "exaparsecs")
  13209. },
  13210. ]
  13211. ))
  13212. characterMakers.push(() => makeCharacter(
  13213. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13214. {
  13215. front: {
  13216. height: math.unit(6, "feet"),
  13217. weight: math.unit(150, "lb"),
  13218. name: "Front",
  13219. image: {
  13220. source: "./media/characters/blü/front.svg",
  13221. extra: 1883 / 1564,
  13222. bottom: 0.031
  13223. }
  13224. },
  13225. },
  13226. [
  13227. {
  13228. name: "Normal",
  13229. height: math.unit(13, "feet"),
  13230. default: true
  13231. },
  13232. {
  13233. name: "Big Boi",
  13234. height: math.unit(150, "meters")
  13235. },
  13236. {
  13237. name: "Mini Stomper",
  13238. height: math.unit(300, "meters")
  13239. },
  13240. {
  13241. name: "Macro",
  13242. height: math.unit(1000, "meters")
  13243. },
  13244. {
  13245. name: "Megamacro",
  13246. height: math.unit(11000, "meters")
  13247. },
  13248. {
  13249. name: "Gigamacro",
  13250. height: math.unit(11000, "km")
  13251. },
  13252. {
  13253. name: "Teramacro",
  13254. height: math.unit(420000, "km")
  13255. },
  13256. {
  13257. name: "Examacro",
  13258. height: math.unit(120, "parsecs")
  13259. },
  13260. {
  13261. name: "God Tho",
  13262. height: math.unit(98000000000, "parsecs")
  13263. },
  13264. ]
  13265. ))
  13266. characterMakers.push(() => makeCharacter(
  13267. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13268. {
  13269. taurFront: {
  13270. height: math.unit(6, "feet"),
  13271. weight: math.unit(200, "lb"),
  13272. name: "Taur (Front)",
  13273. image: {
  13274. source: "./media/characters/scales/taur-front.svg",
  13275. extra: 1,
  13276. bottom: 0.05
  13277. }
  13278. },
  13279. taurBack: {
  13280. height: math.unit(6, "feet"),
  13281. weight: math.unit(200, "lb"),
  13282. name: "Taur (Back)",
  13283. image: {
  13284. source: "./media/characters/scales/taur-back.svg",
  13285. extra: 1,
  13286. bottom: 0.08
  13287. }
  13288. },
  13289. anthro: {
  13290. height: math.unit(6 * 7 / 12, "feet"),
  13291. weight: math.unit(100, "lb"),
  13292. name: "Anthro",
  13293. image: {
  13294. source: "./media/characters/scales/anthro.svg",
  13295. extra: 1,
  13296. bottom: 0.06
  13297. }
  13298. },
  13299. },
  13300. [
  13301. {
  13302. name: "Normal",
  13303. height: math.unit(12, "feet"),
  13304. default: true
  13305. },
  13306. ]
  13307. ))
  13308. characterMakers.push(() => makeCharacter(
  13309. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13310. {
  13311. front: {
  13312. height: math.unit(6, "feet"),
  13313. weight: math.unit(150, "lb"),
  13314. name: "Front",
  13315. image: {
  13316. source: "./media/characters/koragos/front.svg",
  13317. extra: 841 / 794,
  13318. bottom: 0.035
  13319. }
  13320. },
  13321. back: {
  13322. height: math.unit(6, "feet"),
  13323. weight: math.unit(150, "lb"),
  13324. name: "Back",
  13325. image: {
  13326. source: "./media/characters/koragos/back.svg",
  13327. extra: 841 / 810,
  13328. bottom: 0.022
  13329. }
  13330. },
  13331. },
  13332. [
  13333. {
  13334. name: "Normal",
  13335. height: math.unit(6 + 11 / 12, "feet"),
  13336. default: true
  13337. },
  13338. {
  13339. name: "Macro",
  13340. height: math.unit(490, "feet")
  13341. },
  13342. {
  13343. name: "Megamacro",
  13344. height: math.unit(10, "miles")
  13345. },
  13346. {
  13347. name: "Gigamacro",
  13348. height: math.unit(50, "miles")
  13349. },
  13350. ]
  13351. ))
  13352. characterMakers.push(() => makeCharacter(
  13353. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13354. {
  13355. front: {
  13356. height: math.unit(6, "feet"),
  13357. weight: math.unit(250, "lb"),
  13358. name: "Front",
  13359. image: {
  13360. source: "./media/characters/xylrem/front.svg",
  13361. extra: 3323 / 3050,
  13362. bottom: 0.065
  13363. }
  13364. },
  13365. },
  13366. [
  13367. {
  13368. name: "Micro",
  13369. height: math.unit(4, "feet")
  13370. },
  13371. {
  13372. name: "Normal",
  13373. height: math.unit(16, "feet"),
  13374. default: true
  13375. },
  13376. {
  13377. name: "Macro",
  13378. height: math.unit(2720, "feet")
  13379. },
  13380. {
  13381. name: "Megamacro",
  13382. height: math.unit(25000, "miles")
  13383. },
  13384. ]
  13385. ))
  13386. characterMakers.push(() => makeCharacter(
  13387. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13388. {
  13389. front: {
  13390. height: math.unit(8, "feet"),
  13391. weight: math.unit(250, "kg"),
  13392. name: "Front",
  13393. image: {
  13394. source: "./media/characters/ikideru/front.svg",
  13395. extra: 930 / 870,
  13396. bottom: 0.087
  13397. }
  13398. },
  13399. back: {
  13400. height: math.unit(8, "feet"),
  13401. weight: math.unit(250, "kg"),
  13402. name: "Back",
  13403. image: {
  13404. source: "./media/characters/ikideru/back.svg",
  13405. extra: 919 / 852,
  13406. bottom: 0.055
  13407. }
  13408. },
  13409. },
  13410. [
  13411. {
  13412. name: "Rare",
  13413. height: math.unit(8, "feet"),
  13414. default: true
  13415. },
  13416. {
  13417. name: "Playful Loom",
  13418. height: math.unit(80, "feet")
  13419. },
  13420. {
  13421. name: "City Leaner",
  13422. height: math.unit(230, "feet")
  13423. },
  13424. {
  13425. name: "Megamacro",
  13426. height: math.unit(2500, "feet")
  13427. },
  13428. {
  13429. name: "Gigamacro",
  13430. height: math.unit(26400, "feet")
  13431. },
  13432. {
  13433. name: "Tectonic Shifter",
  13434. height: math.unit(1.7, "megameters")
  13435. },
  13436. {
  13437. name: "Planet Carer",
  13438. height: math.unit(21, "megameters")
  13439. },
  13440. {
  13441. name: "God",
  13442. height: math.unit(11157.22, "parsecs")
  13443. },
  13444. ]
  13445. ))
  13446. characterMakers.push(() => makeCharacter(
  13447. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13448. {
  13449. front: {
  13450. height: math.unit(6, "feet"),
  13451. weight: math.unit(120, "lb"),
  13452. name: "Front",
  13453. image: {
  13454. source: "./media/characters/neo/front.svg"
  13455. }
  13456. },
  13457. },
  13458. [
  13459. {
  13460. name: "Micro",
  13461. height: math.unit(2, "inches"),
  13462. default: true
  13463. },
  13464. {
  13465. name: "Human Size",
  13466. height: math.unit(5 + 8 / 12, "feet")
  13467. },
  13468. ]
  13469. ))
  13470. characterMakers.push(() => makeCharacter(
  13471. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13472. {
  13473. front: {
  13474. height: math.unit(13 + 10 / 12, "feet"),
  13475. weight: math.unit(5320, "lb"),
  13476. name: "Front",
  13477. image: {
  13478. source: "./media/characters/chauncey-chantz/front.svg",
  13479. extra: 1587 / 1435,
  13480. bottom: 0.02
  13481. }
  13482. },
  13483. },
  13484. [
  13485. {
  13486. name: "Normal",
  13487. height: math.unit(13 + 10 / 12, "feet"),
  13488. default: true
  13489. },
  13490. {
  13491. name: "Macro",
  13492. height: math.unit(45, "feet")
  13493. },
  13494. {
  13495. name: "Megamacro",
  13496. height: math.unit(250, "miles")
  13497. },
  13498. {
  13499. name: "Planetary",
  13500. height: math.unit(10000, "miles")
  13501. },
  13502. {
  13503. name: "Galactic",
  13504. height: math.unit(40000, "parsecs")
  13505. },
  13506. {
  13507. name: "Universal",
  13508. height: math.unit(1, "yottameter")
  13509. },
  13510. ]
  13511. ))
  13512. characterMakers.push(() => makeCharacter(
  13513. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13514. {
  13515. front: {
  13516. height: math.unit(6, "feet"),
  13517. weight: math.unit(150, "lb"),
  13518. name: "Front",
  13519. image: {
  13520. source: "./media/characters/epifox/front.svg",
  13521. extra: 1,
  13522. bottom: 0.075
  13523. }
  13524. },
  13525. },
  13526. [
  13527. {
  13528. name: "Micro",
  13529. height: math.unit(6, "inches")
  13530. },
  13531. {
  13532. name: "Normal",
  13533. height: math.unit(12, "feet"),
  13534. default: true
  13535. },
  13536. {
  13537. name: "Macro",
  13538. height: math.unit(3810, "feet")
  13539. },
  13540. {
  13541. name: "Megamacro",
  13542. height: math.unit(500, "miles")
  13543. },
  13544. ]
  13545. ))
  13546. characterMakers.push(() => makeCharacter(
  13547. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13548. {
  13549. front: {
  13550. height: math.unit(1.8796, "m"),
  13551. weight: math.unit(230, "lb"),
  13552. name: "Front",
  13553. image: {
  13554. source: "./media/characters/colin-t/front.svg",
  13555. extra: 1272 / 1193,
  13556. bottom: 0.07
  13557. }
  13558. },
  13559. },
  13560. [
  13561. {
  13562. name: "Micro",
  13563. height: math.unit(0.571, "meters")
  13564. },
  13565. {
  13566. name: "Normal",
  13567. height: math.unit(1.8796, "meters"),
  13568. default: true
  13569. },
  13570. {
  13571. name: "Tall",
  13572. height: math.unit(4, "meters")
  13573. },
  13574. {
  13575. name: "Macro",
  13576. height: math.unit(67.241, "meters")
  13577. },
  13578. {
  13579. name: "Megamacro",
  13580. height: math.unit(371.856, "meters")
  13581. },
  13582. {
  13583. name: "Planetary",
  13584. height: math.unit(12631.5689, "km")
  13585. },
  13586. ]
  13587. ))
  13588. characterMakers.push(() => makeCharacter(
  13589. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13590. {
  13591. front: {
  13592. height: math.unit(1.85, "meters"),
  13593. weight: math.unit(80, "kg"),
  13594. name: "Front",
  13595. image: {
  13596. source: "./media/characters/matvei/front.svg",
  13597. extra: 456/447,
  13598. bottom: 8/464
  13599. }
  13600. },
  13601. back: {
  13602. height: math.unit(1.85, "meters"),
  13603. weight: math.unit(80, "kg"),
  13604. name: "Back",
  13605. image: {
  13606. source: "./media/characters/matvei/back.svg",
  13607. extra: 434/427,
  13608. bottom: 11/445
  13609. }
  13610. },
  13611. },
  13612. [
  13613. {
  13614. name: "Normal",
  13615. height: math.unit(1.85, "meters"),
  13616. default: true
  13617. },
  13618. ]
  13619. ))
  13620. characterMakers.push(() => makeCharacter(
  13621. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13622. {
  13623. front: {
  13624. height: math.unit(5 + 9 / 12, "feet"),
  13625. weight: math.unit(70, "lb"),
  13626. name: "Front",
  13627. image: {
  13628. source: "./media/characters/quincy/front.svg",
  13629. extra: 3041 / 2751
  13630. }
  13631. },
  13632. back: {
  13633. height: math.unit(5 + 9 / 12, "feet"),
  13634. weight: math.unit(70, "lb"),
  13635. name: "Back",
  13636. image: {
  13637. source: "./media/characters/quincy/back.svg",
  13638. extra: 3041 / 2751
  13639. }
  13640. },
  13641. flying: {
  13642. height: math.unit(5 + 4 / 12, "feet"),
  13643. weight: math.unit(70, "lb"),
  13644. name: "Flying",
  13645. image: {
  13646. source: "./media/characters/quincy/flying.svg",
  13647. extra: 1044 / 930
  13648. }
  13649. },
  13650. },
  13651. [
  13652. {
  13653. name: "Micro",
  13654. height: math.unit(3, "cm")
  13655. },
  13656. {
  13657. name: "Normal",
  13658. height: math.unit(5 + 9 / 12, "feet")
  13659. },
  13660. {
  13661. name: "Macro",
  13662. height: math.unit(200, "meters"),
  13663. default: true
  13664. },
  13665. {
  13666. name: "Megamacro",
  13667. height: math.unit(1000, "meters")
  13668. },
  13669. ]
  13670. ))
  13671. characterMakers.push(() => makeCharacter(
  13672. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13673. {
  13674. front: {
  13675. height: math.unit(3 + 11/12, "feet"),
  13676. weight: math.unit(50, "lb"),
  13677. name: "Front",
  13678. image: {
  13679. source: "./media/characters/vanrel/front.svg",
  13680. extra: 1104/949,
  13681. bottom: 52/1156
  13682. }
  13683. },
  13684. back: {
  13685. height: math.unit(3 + 11/12, "feet"),
  13686. weight: math.unit(50, "lb"),
  13687. name: "Back",
  13688. image: {
  13689. source: "./media/characters/vanrel/back.svg",
  13690. extra: 1119/976,
  13691. bottom: 37/1156
  13692. }
  13693. },
  13694. tome: {
  13695. height: math.unit(1.35, "feet"),
  13696. weight: math.unit(10, "lb"),
  13697. name: "Vanrel's Tome",
  13698. rename: true,
  13699. image: {
  13700. source: "./media/characters/vanrel/tome.svg"
  13701. }
  13702. },
  13703. beans: {
  13704. height: math.unit(0.89, "feet"),
  13705. name: "Beans",
  13706. image: {
  13707. source: "./media/characters/vanrel/beans.svg"
  13708. }
  13709. },
  13710. },
  13711. [
  13712. {
  13713. name: "Normal",
  13714. height: math.unit(3 + 11/12, "feet"),
  13715. default: true
  13716. },
  13717. ]
  13718. ))
  13719. characterMakers.push(() => makeCharacter(
  13720. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13721. {
  13722. front: {
  13723. height: math.unit(7 + 5 / 12, "feet"),
  13724. name: "Front",
  13725. image: {
  13726. source: "./media/characters/kuiper-vanrel/front.svg",
  13727. extra: 1219/1169,
  13728. bottom: 69/1288
  13729. }
  13730. },
  13731. back: {
  13732. height: math.unit(7 + 5 / 12, "feet"),
  13733. name: "Back",
  13734. image: {
  13735. source: "./media/characters/kuiper-vanrel/back.svg",
  13736. extra: 1236/1193,
  13737. bottom: 27/1263
  13738. }
  13739. },
  13740. foot: {
  13741. height: math.unit(0.55, "meters"),
  13742. name: "Foot",
  13743. image: {
  13744. source: "./media/characters/kuiper-vanrel/foot.svg",
  13745. }
  13746. },
  13747. battle: {
  13748. height: math.unit(6.824, "feet"),
  13749. name: "Battle",
  13750. image: {
  13751. source: "./media/characters/kuiper-vanrel/battle.svg",
  13752. extra: 1466 / 1327,
  13753. bottom: 29 / 1492.5
  13754. }
  13755. },
  13756. meerkui: {
  13757. height: math.unit(18, "inches"),
  13758. name: "Meerkui",
  13759. image: {
  13760. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13761. extra: 1354/1289,
  13762. bottom: 69/1423
  13763. }
  13764. },
  13765. },
  13766. [
  13767. {
  13768. name: "Normal",
  13769. height: math.unit(7 + 5 / 12, "feet"),
  13770. default: true
  13771. },
  13772. ]
  13773. ))
  13774. characterMakers.push(() => makeCharacter(
  13775. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13776. {
  13777. front: {
  13778. height: math.unit(8 + 5 / 12, "feet"),
  13779. name: "Front",
  13780. image: {
  13781. source: "./media/characters/keset-vanrel/front.svg",
  13782. extra: 1231/1148,
  13783. bottom: 82/1313
  13784. }
  13785. },
  13786. back: {
  13787. height: math.unit(8 + 5 / 12, "feet"),
  13788. name: "Back",
  13789. image: {
  13790. source: "./media/characters/keset-vanrel/back.svg",
  13791. extra: 1240/1174,
  13792. bottom: 33/1273
  13793. }
  13794. },
  13795. hand: {
  13796. height: math.unit(0.6, "meters"),
  13797. name: "Hand",
  13798. image: {
  13799. source: "./media/characters/keset-vanrel/hand.svg"
  13800. }
  13801. },
  13802. foot: {
  13803. height: math.unit(0.94978, "meters"),
  13804. name: "Foot",
  13805. image: {
  13806. source: "./media/characters/keset-vanrel/foot.svg"
  13807. }
  13808. },
  13809. battle: {
  13810. height: math.unit(7.408, "feet"),
  13811. name: "Battle",
  13812. image: {
  13813. source: "./media/characters/keset-vanrel/battle.svg",
  13814. extra: 1890 / 1386,
  13815. bottom: 73.28 / 1970
  13816. }
  13817. },
  13818. },
  13819. [
  13820. {
  13821. name: "Normal",
  13822. height: math.unit(8 + 5 / 12, "feet"),
  13823. default: true
  13824. },
  13825. ]
  13826. ))
  13827. characterMakers.push(() => makeCharacter(
  13828. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13829. {
  13830. front: {
  13831. height: math.unit(6, "feet"),
  13832. weight: math.unit(150, "lb"),
  13833. name: "Front",
  13834. image: {
  13835. source: "./media/characters/neos/front.svg",
  13836. extra: 1696 / 992,
  13837. bottom: 0.14
  13838. }
  13839. },
  13840. },
  13841. [
  13842. {
  13843. name: "Normal",
  13844. height: math.unit(54, "cm"),
  13845. default: true
  13846. },
  13847. {
  13848. name: "Macro",
  13849. height: math.unit(100, "m")
  13850. },
  13851. {
  13852. name: "Megamacro",
  13853. height: math.unit(10, "km")
  13854. },
  13855. {
  13856. name: "Megamacro+",
  13857. height: math.unit(100, "km")
  13858. },
  13859. {
  13860. name: "Gigamacro",
  13861. height: math.unit(100, "Mm")
  13862. },
  13863. {
  13864. name: "Teramacro",
  13865. height: math.unit(100, "Gm")
  13866. },
  13867. {
  13868. name: "Examacro",
  13869. height: math.unit(100, "Em")
  13870. },
  13871. {
  13872. name: "Godly",
  13873. height: math.unit(10000, "Ym")
  13874. },
  13875. {
  13876. name: "Beyond Godly",
  13877. height: math.unit(25, "multiverses")
  13878. },
  13879. ]
  13880. ))
  13881. characterMakers.push(() => makeCharacter(
  13882. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13883. {
  13884. fluide_tame: {
  13885. height: math.unit(5, "feet"),
  13886. name: "Tame",
  13887. image: {
  13888. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  13889. extra: 1655/1574,
  13890. bottom: 231/1886
  13891. },
  13892. form: "fluide",
  13893. default: true
  13894. },
  13895. fluide_nude: {
  13896. height: math.unit(5, "feet"),
  13897. name: "Nude",
  13898. image: {
  13899. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  13900. extra: 1655/1574,
  13901. bottom: 231/1886
  13902. },
  13903. form: "fluide",
  13904. },
  13905. male_tame: {
  13906. height: math.unit(5, "feet"),
  13907. name: "Tame",
  13908. image: {
  13909. source: "./media/characters/sammy-mouse/male-tame.svg",
  13910. extra: 1655/1574,
  13911. bottom: 231/1886
  13912. },
  13913. form: "male",
  13914. default: true
  13915. },
  13916. male_nude: {
  13917. height: math.unit(5, "feet"),
  13918. name: "Nude",
  13919. image: {
  13920. source: "./media/characters/sammy-mouse/male-nude.svg",
  13921. extra: 1655/1574,
  13922. bottom: 231/1886
  13923. },
  13924. form: "male",
  13925. },
  13926. female_nude: {
  13927. height: math.unit(5, "feet"),
  13928. name: "Nude",
  13929. image: {
  13930. source: "./media/characters/sammy-mouse/female-nude.svg",
  13931. extra: 1655/1574,
  13932. bottom: 231/1886
  13933. },
  13934. form: "female",
  13935. default: true
  13936. },
  13937. mouth: {
  13938. height: math.unit(0.32, "feet"),
  13939. name: "Mouth",
  13940. image: {
  13941. source: "./media/characters/sammy-mouse/mouth.svg"
  13942. },
  13943. allForms: true
  13944. },
  13945. paw: {
  13946. height: math.unit(0.42, "feet"),
  13947. name: "Paw",
  13948. image: {
  13949. source: "./media/characters/sammy-mouse/paw.svg"
  13950. },
  13951. allForms: true
  13952. },
  13953. },
  13954. [
  13955. {
  13956. name: "Micro",
  13957. height: math.unit(5, "inches"),
  13958. allForms: true
  13959. },
  13960. {
  13961. name: "Normal",
  13962. height: math.unit(5, "feet"),
  13963. default: true,
  13964. allForms: true
  13965. },
  13966. {
  13967. name: "Macro",
  13968. height: math.unit(60, "feet"),
  13969. allForms: true
  13970. },
  13971. ],
  13972. {
  13973. "fluide": {
  13974. name: "Fluide",
  13975. default: true
  13976. },
  13977. "male": {
  13978. name: "Male",
  13979. },
  13980. "female": {
  13981. name: "Female",
  13982. },
  13983. }
  13984. ))
  13985. characterMakers.push(() => makeCharacter(
  13986. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13987. {
  13988. front: {
  13989. height: math.unit(4, "feet"),
  13990. weight: math.unit(50, "lb"),
  13991. name: "Front",
  13992. image: {
  13993. source: "./media/characters/kole/front.svg",
  13994. extra: 1423 / 1303,
  13995. bottom: 0.025
  13996. }
  13997. },
  13998. back: {
  13999. height: math.unit(4, "feet"),
  14000. weight: math.unit(50, "lb"),
  14001. name: "Back",
  14002. image: {
  14003. source: "./media/characters/kole/back.svg",
  14004. extra: 1426 / 1280,
  14005. bottom: 0.02
  14006. }
  14007. },
  14008. },
  14009. [
  14010. {
  14011. name: "Normal",
  14012. height: math.unit(4, "feet"),
  14013. default: true
  14014. },
  14015. ]
  14016. ))
  14017. characterMakers.push(() => makeCharacter(
  14018. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14019. {
  14020. front: {
  14021. height: math.unit(2.5, "feet"),
  14022. weight: math.unit(32, "lb"),
  14023. name: "Front",
  14024. image: {
  14025. source: "./media/characters/rufran/front.svg",
  14026. extra: 1313/885,
  14027. bottom: 94/1407
  14028. }
  14029. },
  14030. side: {
  14031. height: math.unit(2.5, "feet"),
  14032. weight: math.unit(32, "lb"),
  14033. name: "Side",
  14034. image: {
  14035. source: "./media/characters/rufran/side.svg",
  14036. extra: 1109/852,
  14037. bottom: 118/1227
  14038. }
  14039. },
  14040. back: {
  14041. height: math.unit(2.5, "feet"),
  14042. weight: math.unit(32, "lb"),
  14043. name: "Back",
  14044. image: {
  14045. source: "./media/characters/rufran/back.svg",
  14046. extra: 1280/878,
  14047. bottom: 131/1411
  14048. }
  14049. },
  14050. mouth: {
  14051. height: math.unit(1.13, "feet"),
  14052. name: "Mouth",
  14053. image: {
  14054. source: "./media/characters/rufran/mouth.svg"
  14055. }
  14056. },
  14057. foot: {
  14058. height: math.unit(1.33, "feet"),
  14059. name: "Foot",
  14060. image: {
  14061. source: "./media/characters/rufran/foot.svg"
  14062. }
  14063. },
  14064. koboldFront: {
  14065. height: math.unit(2 + 6 / 12, "feet"),
  14066. weight: math.unit(20, "lb"),
  14067. name: "Front (Kobold)",
  14068. image: {
  14069. source: "./media/characters/rufran/kobold-front.svg",
  14070. extra: 2041 / 1839,
  14071. bottom: 0.055
  14072. }
  14073. },
  14074. koboldBack: {
  14075. height: math.unit(2 + 6 / 12, "feet"),
  14076. weight: math.unit(20, "lb"),
  14077. name: "Back (Kobold)",
  14078. image: {
  14079. source: "./media/characters/rufran/kobold-back.svg",
  14080. extra: 2054 / 1839,
  14081. bottom: 0.01
  14082. }
  14083. },
  14084. koboldHand: {
  14085. height: math.unit(0.2166, "meters"),
  14086. name: "Hand (Kobold)",
  14087. image: {
  14088. source: "./media/characters/rufran/kobold-hand.svg"
  14089. }
  14090. },
  14091. koboldFoot: {
  14092. height: math.unit(0.185, "meters"),
  14093. name: "Foot (Kobold)",
  14094. image: {
  14095. source: "./media/characters/rufran/kobold-foot.svg"
  14096. }
  14097. },
  14098. },
  14099. [
  14100. {
  14101. name: "Micro",
  14102. height: math.unit(1, "inch")
  14103. },
  14104. {
  14105. name: "Normal",
  14106. height: math.unit(2 + 6 / 12, "feet"),
  14107. default: true
  14108. },
  14109. {
  14110. name: "Big",
  14111. height: math.unit(60, "feet")
  14112. },
  14113. {
  14114. name: "Macro",
  14115. height: math.unit(325, "feet")
  14116. },
  14117. ]
  14118. ))
  14119. characterMakers.push(() => makeCharacter(
  14120. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14121. {
  14122. front: {
  14123. height: math.unit(0.3, "meters"),
  14124. weight: math.unit(3.5, "kg"),
  14125. name: "Front",
  14126. image: {
  14127. source: "./media/characters/chip/front.svg",
  14128. extra: 748 / 674
  14129. }
  14130. },
  14131. },
  14132. [
  14133. {
  14134. name: "Micro",
  14135. height: math.unit(1, "inch"),
  14136. default: true
  14137. },
  14138. ]
  14139. ))
  14140. characterMakers.push(() => makeCharacter(
  14141. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14142. {
  14143. side: {
  14144. height: math.unit(2.3, "meters"),
  14145. weight: math.unit(3500, "lb"),
  14146. name: "Side",
  14147. image: {
  14148. source: "./media/characters/torvid/side.svg",
  14149. extra: 1972 / 722,
  14150. bottom: 0.035
  14151. }
  14152. },
  14153. },
  14154. [
  14155. {
  14156. name: "Normal",
  14157. height: math.unit(2.3, "meters"),
  14158. default: true
  14159. },
  14160. ]
  14161. ))
  14162. characterMakers.push(() => makeCharacter(
  14163. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14164. {
  14165. front: {
  14166. height: math.unit(2, "meters"),
  14167. weight: math.unit(150.5, "kg"),
  14168. name: "Front",
  14169. image: {
  14170. source: "./media/characters/susan/front.svg",
  14171. extra: 693 / 635,
  14172. bottom: 0.05
  14173. }
  14174. },
  14175. },
  14176. [
  14177. {
  14178. name: "Megamacro",
  14179. height: math.unit(505, "miles"),
  14180. default: true
  14181. },
  14182. ]
  14183. ))
  14184. characterMakers.push(() => makeCharacter(
  14185. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14186. {
  14187. front: {
  14188. height: math.unit(6, "feet"),
  14189. weight: math.unit(150, "lb"),
  14190. name: "Front",
  14191. image: {
  14192. source: "./media/characters/raindrops/front.svg",
  14193. extra: 2655 / 2461,
  14194. bottom: 49 / 2705
  14195. }
  14196. },
  14197. back: {
  14198. height: math.unit(6, "feet"),
  14199. weight: math.unit(150, "lb"),
  14200. name: "Back",
  14201. image: {
  14202. source: "./media/characters/raindrops/back.svg",
  14203. extra: 2574 / 2400,
  14204. bottom: 65 / 2634
  14205. }
  14206. },
  14207. },
  14208. [
  14209. {
  14210. name: "Micro",
  14211. height: math.unit(6, "inches")
  14212. },
  14213. {
  14214. name: "Normal",
  14215. height: math.unit(6 + 2 / 12, "feet")
  14216. },
  14217. {
  14218. name: "Macro",
  14219. height: math.unit(131, "feet"),
  14220. default: true
  14221. },
  14222. {
  14223. name: "Megamacro",
  14224. height: math.unit(15, "miles")
  14225. },
  14226. {
  14227. name: "Gigamacro",
  14228. height: math.unit(4000, "miles")
  14229. },
  14230. {
  14231. name: "Teramacro",
  14232. height: math.unit(315000, "miles")
  14233. },
  14234. ]
  14235. ))
  14236. characterMakers.push(() => makeCharacter(
  14237. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14238. {
  14239. front: {
  14240. height: math.unit(2.794, "meters"),
  14241. weight: math.unit(325, "kg"),
  14242. name: "Front",
  14243. image: {
  14244. source: "./media/characters/tezwa/front.svg",
  14245. extra: 2083 / 1906,
  14246. bottom: 0.031
  14247. }
  14248. },
  14249. foot: {
  14250. height: math.unit(0.687, "meters"),
  14251. name: "Foot",
  14252. image: {
  14253. source: "./media/characters/tezwa/foot.svg"
  14254. }
  14255. },
  14256. },
  14257. [
  14258. {
  14259. name: "Normal",
  14260. height: math.unit(9 + 2 / 12, "feet"),
  14261. default: true
  14262. },
  14263. ]
  14264. ))
  14265. characterMakers.push(() => makeCharacter(
  14266. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14267. {
  14268. front: {
  14269. height: math.unit(58, "feet"),
  14270. weight: math.unit(89000, "lb"),
  14271. name: "Front",
  14272. image: {
  14273. source: "./media/characters/typhus/front.svg",
  14274. extra: 816 / 800,
  14275. bottom: 0.065
  14276. }
  14277. },
  14278. },
  14279. [
  14280. {
  14281. name: "Macro",
  14282. height: math.unit(58, "feet"),
  14283. default: true
  14284. },
  14285. ]
  14286. ))
  14287. characterMakers.push(() => makeCharacter(
  14288. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14289. {
  14290. front: {
  14291. height: math.unit(12, "feet"),
  14292. weight: math.unit(6, "tonnes"),
  14293. name: "Front",
  14294. image: {
  14295. source: "./media/characters/lyra-von-wulf/front.svg",
  14296. extra: 1,
  14297. bottom: 0.10
  14298. }
  14299. },
  14300. frontMecha: {
  14301. height: math.unit(12, "feet"),
  14302. weight: math.unit(12, "tonnes"),
  14303. name: "Front (Mecha)",
  14304. image: {
  14305. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14306. extra: 1,
  14307. bottom: 0.042
  14308. }
  14309. },
  14310. maw: {
  14311. height: math.unit(2.2, "feet"),
  14312. name: "Maw",
  14313. image: {
  14314. source: "./media/characters/lyra-von-wulf/maw.svg"
  14315. }
  14316. },
  14317. },
  14318. [
  14319. {
  14320. name: "Normal",
  14321. height: math.unit(12, "feet"),
  14322. default: true
  14323. },
  14324. {
  14325. name: "Classic",
  14326. height: math.unit(50, "feet")
  14327. },
  14328. {
  14329. name: "Macro",
  14330. height: math.unit(500, "feet")
  14331. },
  14332. {
  14333. name: "Megamacro",
  14334. height: math.unit(1, "mile")
  14335. },
  14336. {
  14337. name: "Gigamacro",
  14338. height: math.unit(400, "miles")
  14339. },
  14340. {
  14341. name: "Teramacro",
  14342. height: math.unit(22000, "miles")
  14343. },
  14344. {
  14345. name: "Solarmacro",
  14346. height: math.unit(8600000, "miles")
  14347. },
  14348. {
  14349. name: "Galactic",
  14350. height: math.unit(1057000, "lightyears")
  14351. },
  14352. ]
  14353. ))
  14354. characterMakers.push(() => makeCharacter(
  14355. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14356. {
  14357. front: {
  14358. height: math.unit(6 + 10 / 12, "feet"),
  14359. weight: math.unit(150, "lb"),
  14360. name: "Front",
  14361. image: {
  14362. source: "./media/characters/dixon/front.svg",
  14363. extra: 3361 / 3209,
  14364. bottom: 0.01
  14365. }
  14366. },
  14367. },
  14368. [
  14369. {
  14370. name: "Normal",
  14371. height: math.unit(6 + 10 / 12, "feet"),
  14372. default: true
  14373. },
  14374. {
  14375. name: "Big",
  14376. height: math.unit(12, "meters")
  14377. },
  14378. {
  14379. name: "Macro",
  14380. height: math.unit(500, "meters")
  14381. },
  14382. {
  14383. name: "Megamacro",
  14384. height: math.unit(2, "km")
  14385. },
  14386. ]
  14387. ))
  14388. characterMakers.push(() => makeCharacter(
  14389. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14390. {
  14391. front: {
  14392. height: math.unit(185, "cm"),
  14393. weight: math.unit(68, "kg"),
  14394. name: "Front",
  14395. image: {
  14396. source: "./media/characters/kauko/front.svg",
  14397. extra: 1455 / 1421,
  14398. bottom: 0.03
  14399. }
  14400. },
  14401. back: {
  14402. height: math.unit(185, "cm"),
  14403. weight: math.unit(68, "kg"),
  14404. name: "Back",
  14405. image: {
  14406. source: "./media/characters/kauko/back.svg",
  14407. extra: 1455 / 1421,
  14408. bottom: 0.004
  14409. }
  14410. },
  14411. },
  14412. [
  14413. {
  14414. name: "Normal",
  14415. height: math.unit(185, "cm"),
  14416. default: true
  14417. },
  14418. ]
  14419. ))
  14420. characterMakers.push(() => makeCharacter(
  14421. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14422. {
  14423. frontSfw: {
  14424. height: math.unit(5, "meters"),
  14425. weight: math.unit(4250, "lb"),
  14426. name: "Front",
  14427. image: {
  14428. source: "./media/characters/varg/front-sfw.svg",
  14429. extra: 1103/1010,
  14430. bottom: 50/1153
  14431. },
  14432. form: "anthro",
  14433. default: true
  14434. },
  14435. backSfw: {
  14436. height: math.unit(5, "meters"),
  14437. weight: math.unit(4250, "lb"),
  14438. name: "Back",
  14439. image: {
  14440. source: "./media/characters/varg/back-sfw.svg",
  14441. extra: 1038/1022,
  14442. bottom: 36/1074
  14443. },
  14444. form: "anthro"
  14445. },
  14446. frontNsfw: {
  14447. height: math.unit(5, "meters"),
  14448. weight: math.unit(4250, "lb"),
  14449. name: "Front (NSFW)",
  14450. image: {
  14451. source: "./media/characters/varg/front-nsfw.svg",
  14452. extra: 1103/1010,
  14453. bottom: 50/1153
  14454. },
  14455. form: "anthro"
  14456. },
  14457. sheath: {
  14458. height: math.unit(3.8, "feet"),
  14459. weight: math.unit(90, "kilograms"),
  14460. name: "Sheath",
  14461. image: {
  14462. source: "./media/characters/varg/sheath.svg"
  14463. },
  14464. form: "anthro"
  14465. },
  14466. dick: {
  14467. height: math.unit(4.6, "feet"),
  14468. weight: math.unit(451, "kilograms"),
  14469. name: "Dick",
  14470. image: {
  14471. source: "./media/characters/varg/dick.svg"
  14472. },
  14473. form: "anthro"
  14474. },
  14475. feralSfw: {
  14476. height: math.unit(5, "meters"),
  14477. weight: math.unit(100000, "lb"),
  14478. name: "Side",
  14479. image: {
  14480. source: "./media/characters/varg/feral-sfw.svg",
  14481. extra: 1065/511,
  14482. bottom: 211/1276
  14483. },
  14484. form: "feral",
  14485. default: true
  14486. },
  14487. feralNsfw: {
  14488. height: math.unit(5, "meters"),
  14489. weight: math.unit(100000, "lb"),
  14490. name: "Side (NSFW)",
  14491. image: {
  14492. source: "./media/characters/varg/feral-nsfw.svg",
  14493. extra: 1065/511,
  14494. bottom: 211/1276
  14495. },
  14496. form: "feral",
  14497. },
  14498. feralSheath: {
  14499. height: math.unit(9.8, "feet"),
  14500. weight: math.unit(2000, "kilograms"),
  14501. name: "Sheath",
  14502. image: {
  14503. source: "./media/characters/varg/sheath.svg"
  14504. },
  14505. form: "feral"
  14506. },
  14507. feralDick: {
  14508. height: math.unit(13.11, "feet"),
  14509. weight: math.unit(10440, "kilograms"),
  14510. name: "Dick",
  14511. image: {
  14512. source: "./media/characters/varg/dick.svg"
  14513. },
  14514. form: "feral"
  14515. },
  14516. },
  14517. [
  14518. {
  14519. name: "Normal",
  14520. height: math.unit(5, "meters"),
  14521. form: "anthro"
  14522. },
  14523. {
  14524. name: "Macro",
  14525. height: math.unit(200, "meters"),
  14526. form: "anthro"
  14527. },
  14528. {
  14529. name: "Megamacro",
  14530. height: math.unit(20, "kilometers"),
  14531. form: "anthro"
  14532. },
  14533. {
  14534. name: "True Size",
  14535. height: math.unit(211, "km"),
  14536. form: "anthro",
  14537. default: true
  14538. },
  14539. {
  14540. name: "Gigamacro",
  14541. height: math.unit(1000, "km"),
  14542. form: "anthro"
  14543. },
  14544. {
  14545. name: "Gigamacro+",
  14546. height: math.unit(8000, "km"),
  14547. form: "anthro"
  14548. },
  14549. {
  14550. name: "Teramacro",
  14551. height: math.unit(1000000, "km"),
  14552. form: "anthro"
  14553. },
  14554. {
  14555. name: "Normal",
  14556. height: math.unit(5, "meters"),
  14557. form: "feral"
  14558. },
  14559. {
  14560. name: "Macro",
  14561. height: math.unit(200, "meters"),
  14562. form: "feral"
  14563. },
  14564. {
  14565. name: "Megamacro",
  14566. height: math.unit(20, "kilometers"),
  14567. form: "feral"
  14568. },
  14569. {
  14570. name: "True Size",
  14571. height: math.unit(211, "km"),
  14572. form: "feral",
  14573. default: true
  14574. },
  14575. {
  14576. name: "Gigamacro",
  14577. height: math.unit(1000, "km"),
  14578. form: "feral"
  14579. },
  14580. {
  14581. name: "Gigamacro+",
  14582. height: math.unit(8000, "km"),
  14583. form: "feral"
  14584. },
  14585. {
  14586. name: "Teramacro",
  14587. height: math.unit(1000000, "km"),
  14588. form: "feral"
  14589. },
  14590. ],
  14591. {
  14592. "anthro": {
  14593. name: "Anthro",
  14594. default: true
  14595. },
  14596. "feral": {
  14597. name: "Feral",
  14598. },
  14599. }
  14600. ))
  14601. characterMakers.push(() => makeCharacter(
  14602. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14603. {
  14604. front: {
  14605. height: math.unit(7 + 7 / 12, "feet"),
  14606. weight: math.unit(267, "lb"),
  14607. name: "Front",
  14608. image: {
  14609. source: "./media/characters/dayza/front.svg",
  14610. extra: 1262 / 1200,
  14611. bottom: 0.035
  14612. }
  14613. },
  14614. side: {
  14615. height: math.unit(7 + 7 / 12, "feet"),
  14616. weight: math.unit(267, "lb"),
  14617. name: "Side",
  14618. image: {
  14619. source: "./media/characters/dayza/side.svg",
  14620. extra: 1295 / 1245,
  14621. bottom: 0.05
  14622. }
  14623. },
  14624. back: {
  14625. height: math.unit(7 + 7 / 12, "feet"),
  14626. weight: math.unit(267, "lb"),
  14627. name: "Back",
  14628. image: {
  14629. source: "./media/characters/dayza/back.svg",
  14630. extra: 1241 / 1170
  14631. }
  14632. },
  14633. },
  14634. [
  14635. {
  14636. name: "Normal",
  14637. height: math.unit(7 + 7 / 12, "feet"),
  14638. default: true
  14639. },
  14640. {
  14641. name: "Macro",
  14642. height: math.unit(155, "feet")
  14643. },
  14644. ]
  14645. ))
  14646. characterMakers.push(() => makeCharacter(
  14647. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14648. {
  14649. front: {
  14650. height: math.unit(6 + 5 / 12, "feet"),
  14651. weight: math.unit(160, "lb"),
  14652. name: "Front",
  14653. image: {
  14654. source: "./media/characters/xanthos/front.svg",
  14655. extra: 1,
  14656. bottom: 0.04
  14657. }
  14658. },
  14659. back: {
  14660. height: math.unit(6 + 5 / 12, "feet"),
  14661. weight: math.unit(160, "lb"),
  14662. name: "Back",
  14663. image: {
  14664. source: "./media/characters/xanthos/back.svg",
  14665. extra: 1,
  14666. bottom: 0.03
  14667. }
  14668. },
  14669. hand: {
  14670. height: math.unit(0.928, "feet"),
  14671. name: "Hand",
  14672. image: {
  14673. source: "./media/characters/xanthos/hand.svg"
  14674. }
  14675. },
  14676. foot: {
  14677. height: math.unit(1.286, "feet"),
  14678. name: "Foot",
  14679. image: {
  14680. source: "./media/characters/xanthos/foot.svg"
  14681. }
  14682. },
  14683. },
  14684. [
  14685. {
  14686. name: "Normal",
  14687. height: math.unit(6 + 5 / 12, "feet"),
  14688. default: true
  14689. },
  14690. {
  14691. name: "Normal+",
  14692. height: math.unit(6, "meters")
  14693. },
  14694. {
  14695. name: "Macro",
  14696. height: math.unit(40, "feet")
  14697. },
  14698. {
  14699. name: "Macro+",
  14700. height: math.unit(200, "meters")
  14701. },
  14702. {
  14703. name: "Megamacro",
  14704. height: math.unit(20, "km")
  14705. },
  14706. {
  14707. name: "Megamacro+",
  14708. height: math.unit(100, "km")
  14709. },
  14710. {
  14711. name: "Gigamacro",
  14712. height: math.unit(200, "megameters")
  14713. },
  14714. {
  14715. name: "Gigamacro+",
  14716. height: math.unit(1.5, "gigameters")
  14717. },
  14718. ]
  14719. ))
  14720. characterMakers.push(() => makeCharacter(
  14721. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14722. {
  14723. front: {
  14724. height: math.unit(6 + 3 / 12, "feet"),
  14725. weight: math.unit(215, "lb"),
  14726. name: "Front",
  14727. image: {
  14728. source: "./media/characters/grynn/front.svg",
  14729. extra: 4627 / 4209,
  14730. bottom: 0.047
  14731. }
  14732. },
  14733. },
  14734. [
  14735. {
  14736. name: "Micro",
  14737. height: math.unit(6, "inches")
  14738. },
  14739. {
  14740. name: "Normal",
  14741. height: math.unit(6 + 3 / 12, "feet"),
  14742. default: true
  14743. },
  14744. {
  14745. name: "Big",
  14746. height: math.unit(104, "feet")
  14747. },
  14748. {
  14749. name: "Macro",
  14750. height: math.unit(944, "feet")
  14751. },
  14752. {
  14753. name: "Macro+",
  14754. height: math.unit(9480, "feet")
  14755. },
  14756. {
  14757. name: "Megamacro",
  14758. height: math.unit(78752, "feet")
  14759. },
  14760. {
  14761. name: "Megamacro+",
  14762. height: math.unit(630128, "feet")
  14763. },
  14764. {
  14765. name: "Megamacro++",
  14766. height: math.unit(3150695, "feet")
  14767. },
  14768. ]
  14769. ))
  14770. characterMakers.push(() => makeCharacter(
  14771. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14772. {
  14773. front: {
  14774. height: math.unit(7 + 5 / 12, "feet"),
  14775. weight: math.unit(450, "lb"),
  14776. name: "Front",
  14777. image: {
  14778. source: "./media/characters/mocha-aura/front.svg",
  14779. extra: 1907 / 1817,
  14780. bottom: 0.04
  14781. }
  14782. },
  14783. back: {
  14784. height: math.unit(7 + 5 / 12, "feet"),
  14785. weight: math.unit(450, "lb"),
  14786. name: "Back",
  14787. image: {
  14788. source: "./media/characters/mocha-aura/back.svg",
  14789. extra: 1900 / 1825,
  14790. bottom: 0.045
  14791. }
  14792. },
  14793. },
  14794. [
  14795. {
  14796. name: "Nano",
  14797. height: math.unit(1, "nm")
  14798. },
  14799. {
  14800. name: "Megamicro",
  14801. height: math.unit(1, "mm")
  14802. },
  14803. {
  14804. name: "Micro",
  14805. height: math.unit(3, "inches")
  14806. },
  14807. {
  14808. name: "Normal",
  14809. height: math.unit(7 + 5 / 12, "feet"),
  14810. default: true
  14811. },
  14812. {
  14813. name: "Macro",
  14814. height: math.unit(30, "feet")
  14815. },
  14816. {
  14817. name: "Megamacro",
  14818. height: math.unit(3500, "feet")
  14819. },
  14820. {
  14821. name: "Teramacro",
  14822. height: math.unit(500000, "miles")
  14823. },
  14824. {
  14825. name: "Petamacro",
  14826. height: math.unit(50000000000000000, "parsecs")
  14827. },
  14828. ]
  14829. ))
  14830. characterMakers.push(() => makeCharacter(
  14831. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14832. {
  14833. front: {
  14834. height: math.unit(6, "feet"),
  14835. weight: math.unit(150, "lb"),
  14836. name: "Front",
  14837. image: {
  14838. source: "./media/characters/ilisha-devya/front.svg",
  14839. extra: 1053/1049,
  14840. bottom: 270/1323
  14841. }
  14842. },
  14843. back: {
  14844. height: math.unit(6, "feet"),
  14845. weight: math.unit(150, "lb"),
  14846. name: "Back",
  14847. image: {
  14848. source: "./media/characters/ilisha-devya/back.svg",
  14849. extra: 1131/1128,
  14850. bottom: 39/1170
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Macro",
  14857. height: math.unit(500, "feet"),
  14858. default: true
  14859. },
  14860. {
  14861. name: "Megamacro",
  14862. height: math.unit(10, "miles")
  14863. },
  14864. {
  14865. name: "Gigamacro",
  14866. height: math.unit(100000, "miles")
  14867. },
  14868. {
  14869. name: "Examacro",
  14870. height: math.unit(1e9, "lightyears")
  14871. },
  14872. {
  14873. name: "Omniversal",
  14874. height: math.unit(1e33, "lightyears")
  14875. },
  14876. {
  14877. name: "Beyond Infinite",
  14878. height: math.unit(1e100, "lightyears")
  14879. },
  14880. ]
  14881. ))
  14882. characterMakers.push(() => makeCharacter(
  14883. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14884. {
  14885. Side: {
  14886. height: math.unit(6, "feet"),
  14887. weight: math.unit(150, "lb"),
  14888. name: "Side",
  14889. image: {
  14890. source: "./media/characters/mira/side.svg",
  14891. extra: 900 / 799,
  14892. bottom: 0.02
  14893. }
  14894. },
  14895. },
  14896. [
  14897. {
  14898. name: "Human Size",
  14899. height: math.unit(6, "feet")
  14900. },
  14901. {
  14902. name: "Macro",
  14903. height: math.unit(100, "feet"),
  14904. default: true
  14905. },
  14906. {
  14907. name: "Megamacro",
  14908. height: math.unit(10, "miles")
  14909. },
  14910. {
  14911. name: "Gigamacro",
  14912. height: math.unit(25000, "miles")
  14913. },
  14914. {
  14915. name: "Teramacro",
  14916. height: math.unit(300, "AU")
  14917. },
  14918. {
  14919. name: "Full Size",
  14920. height: math.unit(4.5e10, "lightyears")
  14921. },
  14922. ]
  14923. ))
  14924. characterMakers.push(() => makeCharacter(
  14925. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14926. {
  14927. front: {
  14928. height: math.unit(6, "feet"),
  14929. weight: math.unit(150, "lb"),
  14930. name: "Front",
  14931. image: {
  14932. source: "./media/characters/holly/front.svg",
  14933. extra: 639 / 606
  14934. }
  14935. },
  14936. back: {
  14937. height: math.unit(6, "feet"),
  14938. weight: math.unit(150, "lb"),
  14939. name: "Back",
  14940. image: {
  14941. source: "./media/characters/holly/back.svg",
  14942. extra: 623 / 598
  14943. }
  14944. },
  14945. frontWorking: {
  14946. height: math.unit(6, "feet"),
  14947. weight: math.unit(150, "lb"),
  14948. name: "Front (Working)",
  14949. image: {
  14950. source: "./media/characters/holly/front-working.svg",
  14951. extra: 607 / 577,
  14952. bottom: 0.048
  14953. }
  14954. },
  14955. },
  14956. [
  14957. {
  14958. name: "Normal",
  14959. height: math.unit(12 + 3 / 12, "feet"),
  14960. default: true
  14961. },
  14962. ]
  14963. ))
  14964. characterMakers.push(() => makeCharacter(
  14965. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14966. {
  14967. front: {
  14968. height: math.unit(6, "feet"),
  14969. weight: math.unit(150, "lb"),
  14970. name: "Front",
  14971. image: {
  14972. source: "./media/characters/porter/front.svg",
  14973. extra: 1,
  14974. bottom: 0.01
  14975. }
  14976. },
  14977. frontRobes: {
  14978. height: math.unit(6, "feet"),
  14979. weight: math.unit(150, "lb"),
  14980. name: "Front (Robes)",
  14981. image: {
  14982. source: "./media/characters/porter/front-robes.svg",
  14983. extra: 1.01,
  14984. bottom: 0.01
  14985. }
  14986. },
  14987. },
  14988. [
  14989. {
  14990. name: "Normal",
  14991. height: math.unit(11 + 9 / 12, "feet"),
  14992. default: true
  14993. },
  14994. ]
  14995. ))
  14996. characterMakers.push(() => makeCharacter(
  14997. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14998. {
  14999. legendary: {
  15000. height: math.unit(6, "feet"),
  15001. weight: math.unit(150, "lb"),
  15002. name: "Legendary",
  15003. image: {
  15004. source: "./media/characters/lucy/legendary.svg",
  15005. extra: 1355 / 1100,
  15006. bottom: 0.045
  15007. }
  15008. },
  15009. },
  15010. [
  15011. {
  15012. name: "Legendary",
  15013. height: math.unit(86882 * 2, "miles"),
  15014. default: true
  15015. },
  15016. ]
  15017. ))
  15018. characterMakers.push(() => makeCharacter(
  15019. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15020. {
  15021. front: {
  15022. height: math.unit(6, "feet"),
  15023. weight: math.unit(150, "lb"),
  15024. name: "Front",
  15025. image: {
  15026. source: "./media/characters/drusilla/front.svg",
  15027. extra: 678 / 635,
  15028. bottom: 0.03
  15029. }
  15030. },
  15031. back: {
  15032. height: math.unit(6, "feet"),
  15033. weight: math.unit(150, "lb"),
  15034. name: "Back",
  15035. image: {
  15036. source: "./media/characters/drusilla/back.svg",
  15037. extra: 678 / 635,
  15038. bottom: 0.005
  15039. }
  15040. },
  15041. },
  15042. [
  15043. {
  15044. name: "Macro",
  15045. height: math.unit(100, "feet")
  15046. },
  15047. {
  15048. name: "Canon Height",
  15049. height: math.unit(2000, "feet"),
  15050. default: true
  15051. },
  15052. ]
  15053. ))
  15054. characterMakers.push(() => makeCharacter(
  15055. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15056. {
  15057. front: {
  15058. height: math.unit(6, "feet"),
  15059. weight: math.unit(180, "lb"),
  15060. name: "Front",
  15061. image: {
  15062. source: "./media/characters/renard-thatch/front.svg",
  15063. extra: 2411 / 2275,
  15064. bottom: 0.01
  15065. }
  15066. },
  15067. frontPosing: {
  15068. height: math.unit(6, "feet"),
  15069. weight: math.unit(180, "lb"),
  15070. name: "Front (Posing)",
  15071. image: {
  15072. source: "./media/characters/renard-thatch/front-posing.svg",
  15073. extra: 2381 / 2261,
  15074. bottom: 0.01
  15075. }
  15076. },
  15077. back: {
  15078. height: math.unit(6, "feet"),
  15079. weight: math.unit(180, "lb"),
  15080. name: "Back",
  15081. image: {
  15082. source: "./media/characters/renard-thatch/back.svg",
  15083. extra: 2428 / 2288
  15084. }
  15085. },
  15086. },
  15087. [
  15088. {
  15089. name: "Micro",
  15090. height: math.unit(3, "inches")
  15091. },
  15092. {
  15093. name: "Default",
  15094. height: math.unit(6, "feet"),
  15095. default: true
  15096. },
  15097. {
  15098. name: "Macro",
  15099. height: math.unit(75, "feet")
  15100. },
  15101. ]
  15102. ))
  15103. characterMakers.push(() => makeCharacter(
  15104. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15105. {
  15106. front: {
  15107. height: math.unit(1450, "feet"),
  15108. weight: math.unit(1.21e6, "tons"),
  15109. name: "Front",
  15110. image: {
  15111. source: "./media/characters/sekvra/front.svg",
  15112. extra: 1193/1190,
  15113. bottom: 78/1271
  15114. }
  15115. },
  15116. side: {
  15117. height: math.unit(1450, "feet"),
  15118. weight: math.unit(1.21e6, "tons"),
  15119. name: "Side",
  15120. image: {
  15121. source: "./media/characters/sekvra/side.svg",
  15122. extra: 1193/1190,
  15123. bottom: 52/1245
  15124. }
  15125. },
  15126. back: {
  15127. height: math.unit(1450, "feet"),
  15128. weight: math.unit(1.21e6, "tons"),
  15129. name: "Back",
  15130. image: {
  15131. source: "./media/characters/sekvra/back.svg",
  15132. extra: 1219/1216,
  15133. bottom: 21/1240
  15134. }
  15135. },
  15136. frontClothed: {
  15137. height: math.unit(1450, "feet"),
  15138. weight: math.unit(1.21e6, "tons"),
  15139. name: "Front (Clothed)",
  15140. image: {
  15141. source: "./media/characters/sekvra/front-clothed.svg",
  15142. extra: 1192/1189,
  15143. bottom: 79/1271
  15144. }
  15145. },
  15146. },
  15147. [
  15148. {
  15149. name: "Macro",
  15150. height: math.unit(1450, "feet"),
  15151. default: true
  15152. },
  15153. {
  15154. name: "Megamacro",
  15155. height: math.unit(15000, "feet")
  15156. },
  15157. ]
  15158. ))
  15159. characterMakers.push(() => makeCharacter(
  15160. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15161. {
  15162. front: {
  15163. height: math.unit(6, "feet"),
  15164. weight: math.unit(150, "lb"),
  15165. name: "Front",
  15166. image: {
  15167. source: "./media/characters/carmine/front.svg",
  15168. extra: 1557/1538,
  15169. bottom: 68/1625
  15170. }
  15171. },
  15172. frontArmor: {
  15173. height: math.unit(6, "feet"),
  15174. weight: math.unit(150, "lb"),
  15175. name: "Front (Armor)",
  15176. image: {
  15177. source: "./media/characters/carmine/front-armor.svg",
  15178. extra: 1549/1530,
  15179. bottom: 82/1631
  15180. }
  15181. },
  15182. mouth: {
  15183. height: math.unit(0.55, "feet"),
  15184. name: "Mouth",
  15185. image: {
  15186. source: "./media/characters/carmine/mouth.svg"
  15187. }
  15188. },
  15189. hand: {
  15190. height: math.unit(1.05, "feet"),
  15191. name: "Hand",
  15192. image: {
  15193. source: "./media/characters/carmine/hand.svg"
  15194. }
  15195. },
  15196. foot: {
  15197. height: math.unit(0.6, "feet"),
  15198. name: "Foot",
  15199. image: {
  15200. source: "./media/characters/carmine/foot.svg"
  15201. }
  15202. },
  15203. },
  15204. [
  15205. {
  15206. name: "Large",
  15207. height: math.unit(1, "mile")
  15208. },
  15209. {
  15210. name: "Huge",
  15211. height: math.unit(40, "miles"),
  15212. default: true
  15213. },
  15214. {
  15215. name: "Colossal",
  15216. height: math.unit(2500, "miles")
  15217. },
  15218. ]
  15219. ))
  15220. characterMakers.push(() => makeCharacter(
  15221. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15222. {
  15223. front: {
  15224. height: math.unit(6, "feet"),
  15225. weight: math.unit(150, "lb"),
  15226. name: "Front",
  15227. image: {
  15228. source: "./media/characters/elyssia/front.svg",
  15229. extra: 2201 / 2035,
  15230. bottom: 0.05
  15231. }
  15232. },
  15233. frontClothed: {
  15234. height: math.unit(6, "feet"),
  15235. weight: math.unit(150, "lb"),
  15236. name: "Front (Clothed)",
  15237. image: {
  15238. source: "./media/characters/elyssia/front-clothed.svg",
  15239. extra: 2201 / 2035,
  15240. bottom: 0.05
  15241. }
  15242. },
  15243. back: {
  15244. height: math.unit(6, "feet"),
  15245. weight: math.unit(150, "lb"),
  15246. name: "Back",
  15247. image: {
  15248. source: "./media/characters/elyssia/back.svg",
  15249. extra: 2201 / 2035,
  15250. bottom: 0.013
  15251. }
  15252. },
  15253. },
  15254. [
  15255. {
  15256. name: "Smaller",
  15257. height: math.unit(150, "feet")
  15258. },
  15259. {
  15260. name: "Standard",
  15261. height: math.unit(1400, "feet"),
  15262. default: true
  15263. },
  15264. {
  15265. name: "Distracted",
  15266. height: math.unit(15000, "feet")
  15267. },
  15268. ]
  15269. ))
  15270. characterMakers.push(() => makeCharacter(
  15271. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15272. {
  15273. front: {
  15274. height: math.unit(7 + 4/12, "feet"),
  15275. weight: math.unit(690, "lb"),
  15276. name: "Front",
  15277. image: {
  15278. source: "./media/characters/geno-maxwell/front.svg",
  15279. extra: 984/856,
  15280. bottom: 87/1071
  15281. }
  15282. },
  15283. back: {
  15284. height: math.unit(7 + 4/12, "feet"),
  15285. weight: math.unit(690, "lb"),
  15286. name: "Back",
  15287. image: {
  15288. source: "./media/characters/geno-maxwell/back.svg",
  15289. extra: 981/854,
  15290. bottom: 57/1038
  15291. }
  15292. },
  15293. frontCostume: {
  15294. height: math.unit(7 + 4/12, "feet"),
  15295. weight: math.unit(690, "lb"),
  15296. name: "Front (Costume)",
  15297. image: {
  15298. source: "./media/characters/geno-maxwell/front-costume.svg",
  15299. extra: 984/856,
  15300. bottom: 87/1071
  15301. }
  15302. },
  15303. backcostume: {
  15304. height: math.unit(7 + 4/12, "feet"),
  15305. weight: math.unit(690, "lb"),
  15306. name: "Back (Costume)",
  15307. image: {
  15308. source: "./media/characters/geno-maxwell/back-costume.svg",
  15309. extra: 981/854,
  15310. bottom: 57/1038
  15311. }
  15312. },
  15313. },
  15314. [
  15315. {
  15316. name: "Micro",
  15317. height: math.unit(3, "inches")
  15318. },
  15319. {
  15320. name: "Normal",
  15321. height: math.unit(7 + 4 / 12, "feet"),
  15322. default: true
  15323. },
  15324. {
  15325. name: "Macro",
  15326. height: math.unit(220, "feet")
  15327. },
  15328. {
  15329. name: "Megamacro",
  15330. height: math.unit(11, "miles")
  15331. },
  15332. ]
  15333. ))
  15334. characterMakers.push(() => makeCharacter(
  15335. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15336. {
  15337. front: {
  15338. height: math.unit(7 + 4/12, "feet"),
  15339. weight: math.unit(750, "lb"),
  15340. name: "Front",
  15341. image: {
  15342. source: "./media/characters/regena-maxwell/front.svg",
  15343. extra: 984/856,
  15344. bottom: 87/1071
  15345. }
  15346. },
  15347. back: {
  15348. height: math.unit(7 + 4/12, "feet"),
  15349. weight: math.unit(750, "lb"),
  15350. name: "Back",
  15351. image: {
  15352. source: "./media/characters/regena-maxwell/back.svg",
  15353. extra: 981/854,
  15354. bottom: 57/1038
  15355. }
  15356. },
  15357. frontCostume: {
  15358. height: math.unit(7 + 4/12, "feet"),
  15359. weight: math.unit(750, "lb"),
  15360. name: "Front (Costume)",
  15361. image: {
  15362. source: "./media/characters/regena-maxwell/front-costume.svg",
  15363. extra: 984/856,
  15364. bottom: 87/1071
  15365. }
  15366. },
  15367. backcostume: {
  15368. height: math.unit(7 + 4/12, "feet"),
  15369. weight: math.unit(750, "lb"),
  15370. name: "Back (Costume)",
  15371. image: {
  15372. source: "./media/characters/regena-maxwell/back-costume.svg",
  15373. extra: 981/854,
  15374. bottom: 57/1038
  15375. }
  15376. },
  15377. },
  15378. [
  15379. {
  15380. name: "Normal",
  15381. height: math.unit(7 + 4 / 12, "feet"),
  15382. default: true
  15383. },
  15384. {
  15385. name: "Macro",
  15386. height: math.unit(220, "feet")
  15387. },
  15388. {
  15389. name: "Megamacro",
  15390. height: math.unit(11, "miles")
  15391. },
  15392. ]
  15393. ))
  15394. characterMakers.push(() => makeCharacter(
  15395. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15396. {
  15397. front: {
  15398. height: math.unit(6, "feet"),
  15399. weight: math.unit(150, "lb"),
  15400. name: "Front",
  15401. image: {
  15402. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15403. extra: 860 / 690,
  15404. bottom: 0.03
  15405. }
  15406. },
  15407. },
  15408. [
  15409. {
  15410. name: "Normal",
  15411. height: math.unit(1.7, "meters"),
  15412. default: true
  15413. },
  15414. ]
  15415. ))
  15416. characterMakers.push(() => makeCharacter(
  15417. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15418. {
  15419. front: {
  15420. height: math.unit(6, "feet"),
  15421. weight: math.unit(150, "lb"),
  15422. name: "Front",
  15423. image: {
  15424. source: "./media/characters/quilly/front.svg",
  15425. extra: 890 / 776
  15426. }
  15427. },
  15428. },
  15429. [
  15430. {
  15431. name: "Gigamacro",
  15432. height: math.unit(404090, "miles"),
  15433. default: true
  15434. },
  15435. ]
  15436. ))
  15437. characterMakers.push(() => makeCharacter(
  15438. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15439. {
  15440. front: {
  15441. height: math.unit(7 + 8 / 12, "feet"),
  15442. weight: math.unit(350, "lb"),
  15443. name: "Front",
  15444. image: {
  15445. source: "./media/characters/tempest/front.svg",
  15446. extra: 1175 / 1086,
  15447. bottom: 0.02
  15448. }
  15449. },
  15450. },
  15451. [
  15452. {
  15453. name: "Normal",
  15454. height: math.unit(7 + 8 / 12, "feet"),
  15455. default: true
  15456. },
  15457. ]
  15458. ))
  15459. characterMakers.push(() => makeCharacter(
  15460. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15461. {
  15462. side: {
  15463. height: math.unit(4 + 5 / 12, "feet"),
  15464. weight: math.unit(80, "lb"),
  15465. name: "Side",
  15466. image: {
  15467. source: "./media/characters/rodger/side.svg",
  15468. extra: 1235 / 1118
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Micro",
  15475. height: math.unit(1, "inch")
  15476. },
  15477. {
  15478. name: "Normal",
  15479. height: math.unit(4 + 5 / 12, "feet"),
  15480. default: true
  15481. },
  15482. {
  15483. name: "Macro",
  15484. height: math.unit(120, "feet")
  15485. },
  15486. ]
  15487. ))
  15488. characterMakers.push(() => makeCharacter(
  15489. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15490. {
  15491. front: {
  15492. height: math.unit(6, "feet"),
  15493. weight: math.unit(150, "lb"),
  15494. name: "Front",
  15495. image: {
  15496. source: "./media/characters/danyel/front.svg",
  15497. extra: 1185 / 1123,
  15498. bottom: 0.05
  15499. }
  15500. },
  15501. },
  15502. [
  15503. {
  15504. name: "Shrunken",
  15505. height: math.unit(0.5, "mm")
  15506. },
  15507. {
  15508. name: "Micro",
  15509. height: math.unit(1, "mm"),
  15510. default: true
  15511. },
  15512. {
  15513. name: "Upsized",
  15514. height: math.unit(5 + 5 / 12, "feet")
  15515. },
  15516. ]
  15517. ))
  15518. characterMakers.push(() => makeCharacter(
  15519. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15520. {
  15521. front: {
  15522. height: math.unit(5 + 6 / 12, "feet"),
  15523. weight: math.unit(200, "lb"),
  15524. name: "Front",
  15525. image: {
  15526. source: "./media/characters/vivian-bijoux/front.svg",
  15527. extra: 1217/1209,
  15528. bottom: 76/1293
  15529. }
  15530. },
  15531. back: {
  15532. height: math.unit(5 + 6 / 12, "feet"),
  15533. weight: math.unit(200, "lb"),
  15534. name: "Back",
  15535. image: {
  15536. source: "./media/characters/vivian-bijoux/back.svg",
  15537. extra: 1214/1208,
  15538. bottom: 51/1265
  15539. }
  15540. },
  15541. dressed: {
  15542. height: math.unit(5 + 6 / 12, "feet"),
  15543. weight: math.unit(200, "lb"),
  15544. name: "Dressed",
  15545. image: {
  15546. source: "./media/characters/vivian-bijoux/dressed.svg",
  15547. extra: 1217/1209,
  15548. bottom: 76/1293
  15549. }
  15550. },
  15551. },
  15552. [
  15553. {
  15554. name: "Normal",
  15555. height: math.unit(5 + 6 / 12, "feet"),
  15556. default: true
  15557. },
  15558. {
  15559. name: "Bad Dream",
  15560. height: math.unit(500, "feet")
  15561. },
  15562. {
  15563. name: "Nightmare",
  15564. height: math.unit(500, "miles")
  15565. },
  15566. ]
  15567. ))
  15568. characterMakers.push(() => makeCharacter(
  15569. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15570. {
  15571. front: {
  15572. height: math.unit(6 + 1 / 12, "feet"),
  15573. weight: math.unit(260, "lb"),
  15574. name: "Front",
  15575. image: {
  15576. source: "./media/characters/zeta/front.svg",
  15577. extra: 1968 / 1889,
  15578. bottom: 0.06
  15579. }
  15580. },
  15581. back: {
  15582. height: math.unit(6 + 1 / 12, "feet"),
  15583. weight: math.unit(260, "lb"),
  15584. name: "Back",
  15585. image: {
  15586. source: "./media/characters/zeta/back.svg",
  15587. extra: 1944 / 1858,
  15588. bottom: 0.03
  15589. }
  15590. },
  15591. hand: {
  15592. height: math.unit(1.112, "feet"),
  15593. name: "Hand",
  15594. image: {
  15595. source: "./media/characters/zeta/hand.svg"
  15596. }
  15597. },
  15598. foot: {
  15599. height: math.unit(1.48, "feet"),
  15600. name: "Foot",
  15601. image: {
  15602. source: "./media/characters/zeta/foot.svg"
  15603. }
  15604. },
  15605. },
  15606. [
  15607. {
  15608. name: "Micro",
  15609. height: math.unit(6, "inches")
  15610. },
  15611. {
  15612. name: "Normal",
  15613. height: math.unit(6 + 1 / 12, "feet"),
  15614. default: true
  15615. },
  15616. {
  15617. name: "Macro",
  15618. height: math.unit(20, "feet")
  15619. },
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15624. {
  15625. front: {
  15626. height: math.unit(6, "feet"),
  15627. weight: math.unit(150, "lb"),
  15628. name: "Front",
  15629. image: {
  15630. source: "./media/characters/jamie-larsen/front.svg",
  15631. extra: 962 / 933,
  15632. bottom: 0.02
  15633. }
  15634. },
  15635. back: {
  15636. height: math.unit(6, "feet"),
  15637. weight: math.unit(150, "lb"),
  15638. name: "Back",
  15639. image: {
  15640. source: "./media/characters/jamie-larsen/back.svg",
  15641. extra: 997 / 946
  15642. }
  15643. },
  15644. },
  15645. [
  15646. {
  15647. name: "Macro",
  15648. height: math.unit(28 + 7 / 12, "feet"),
  15649. default: true
  15650. },
  15651. {
  15652. name: "Macro+",
  15653. height: math.unit(180, "feet")
  15654. },
  15655. {
  15656. name: "Megamacro",
  15657. height: math.unit(10, "miles")
  15658. },
  15659. {
  15660. name: "Gigamacro",
  15661. height: math.unit(200000, "miles")
  15662. },
  15663. ]
  15664. ))
  15665. characterMakers.push(() => makeCharacter(
  15666. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15667. {
  15668. front: {
  15669. height: math.unit(6, "feet"),
  15670. weight: math.unit(120, "lb"),
  15671. name: "Front",
  15672. image: {
  15673. source: "./media/characters/vance/front.svg",
  15674. extra: 1980 / 1890,
  15675. bottom: 0.09
  15676. }
  15677. },
  15678. back: {
  15679. height: math.unit(6, "feet"),
  15680. weight: math.unit(120, "lb"),
  15681. name: "Back",
  15682. image: {
  15683. source: "./media/characters/vance/back.svg",
  15684. extra: 2081 / 1994,
  15685. bottom: 0.014
  15686. }
  15687. },
  15688. hand: {
  15689. height: math.unit(0.88, "feet"),
  15690. name: "Hand",
  15691. image: {
  15692. source: "./media/characters/vance/hand.svg"
  15693. }
  15694. },
  15695. foot: {
  15696. height: math.unit(0.64, "feet"),
  15697. name: "Foot",
  15698. image: {
  15699. source: "./media/characters/vance/foot.svg"
  15700. }
  15701. },
  15702. },
  15703. [
  15704. {
  15705. name: "Small",
  15706. height: math.unit(90, "feet"),
  15707. default: true
  15708. },
  15709. {
  15710. name: "Macro",
  15711. height: math.unit(100, "meters")
  15712. },
  15713. {
  15714. name: "Megamacro",
  15715. height: math.unit(15, "miles")
  15716. },
  15717. ]
  15718. ))
  15719. characterMakers.push(() => makeCharacter(
  15720. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15721. {
  15722. front: {
  15723. height: math.unit(6, "feet"),
  15724. weight: math.unit(180, "lb"),
  15725. name: "Front",
  15726. image: {
  15727. source: "./media/characters/xochitl/front.svg",
  15728. extra: 2297 / 2261,
  15729. bottom: 0.065
  15730. }
  15731. },
  15732. back: {
  15733. height: math.unit(6, "feet"),
  15734. weight: math.unit(180, "lb"),
  15735. name: "Back",
  15736. image: {
  15737. source: "./media/characters/xochitl/back.svg",
  15738. extra: 2386 / 2354,
  15739. bottom: 0.01
  15740. }
  15741. },
  15742. foot: {
  15743. height: math.unit(6 / 5 * 1.15, "feet"),
  15744. weight: math.unit(150, "lb"),
  15745. name: "Foot",
  15746. image: {
  15747. source: "./media/characters/xochitl/foot.svg"
  15748. }
  15749. },
  15750. },
  15751. [
  15752. {
  15753. name: "Macro",
  15754. height: math.unit(80, "feet")
  15755. },
  15756. {
  15757. name: "Macro+",
  15758. height: math.unit(400, "feet"),
  15759. default: true
  15760. },
  15761. {
  15762. name: "Gigamacro",
  15763. height: math.unit(80000, "miles")
  15764. },
  15765. {
  15766. name: "Gigamacro+",
  15767. height: math.unit(400000, "miles")
  15768. },
  15769. {
  15770. name: "Teramacro",
  15771. height: math.unit(300, "AU")
  15772. },
  15773. ]
  15774. ))
  15775. characterMakers.push(() => makeCharacter(
  15776. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15777. {
  15778. front: {
  15779. height: math.unit(6, "feet"),
  15780. weight: math.unit(150, "lb"),
  15781. name: "Front",
  15782. image: {
  15783. source: "./media/characters/vincent/front.svg",
  15784. extra: 1130 / 1080,
  15785. bottom: 0.055
  15786. }
  15787. },
  15788. beak: {
  15789. height: math.unit(6 * 0.1, "feet"),
  15790. name: "Beak",
  15791. image: {
  15792. source: "./media/characters/vincent/beak.svg"
  15793. }
  15794. },
  15795. hand: {
  15796. height: math.unit(6 * 0.85, "feet"),
  15797. weight: math.unit(150, "lb"),
  15798. name: "Hand",
  15799. image: {
  15800. source: "./media/characters/vincent/hand.svg"
  15801. }
  15802. },
  15803. foot: {
  15804. height: math.unit(6 * 0.19, "feet"),
  15805. weight: math.unit(150, "lb"),
  15806. name: "Foot",
  15807. image: {
  15808. source: "./media/characters/vincent/foot.svg"
  15809. }
  15810. },
  15811. },
  15812. [
  15813. {
  15814. name: "Base",
  15815. height: math.unit(6 + 5 / 12, "feet"),
  15816. default: true
  15817. },
  15818. {
  15819. name: "Macro",
  15820. height: math.unit(300, "feet")
  15821. },
  15822. {
  15823. name: "Megamacro",
  15824. height: math.unit(2, "miles")
  15825. },
  15826. {
  15827. name: "Gigamacro",
  15828. height: math.unit(1000, "miles")
  15829. },
  15830. ]
  15831. ))
  15832. characterMakers.push(() => makeCharacter(
  15833. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15834. {
  15835. front: {
  15836. height: math.unit(2, "meters"),
  15837. weight: math.unit(500, "kg"),
  15838. name: "Front",
  15839. image: {
  15840. source: "./media/characters/coatl/front.svg",
  15841. extra: 3948 / 3500,
  15842. bottom: 0.082
  15843. }
  15844. },
  15845. },
  15846. [
  15847. {
  15848. name: "Normal",
  15849. height: math.unit(4, "meters")
  15850. },
  15851. {
  15852. name: "Macro",
  15853. height: math.unit(100, "meters"),
  15854. default: true
  15855. },
  15856. {
  15857. name: "Macro+",
  15858. height: math.unit(300, "meters")
  15859. },
  15860. {
  15861. name: "Megamacro",
  15862. height: math.unit(3, "gigameters")
  15863. },
  15864. {
  15865. name: "Megamacro+",
  15866. height: math.unit(300, "terameters")
  15867. },
  15868. {
  15869. name: "Megamacro++",
  15870. height: math.unit(3, "lightyears")
  15871. },
  15872. ]
  15873. ))
  15874. characterMakers.push(() => makeCharacter(
  15875. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15876. {
  15877. front: {
  15878. height: math.unit(6, "feet"),
  15879. weight: math.unit(50, "kg"),
  15880. name: "front",
  15881. image: {
  15882. source: "./media/characters/shiroryu/front.svg",
  15883. extra: 1990 / 1935
  15884. }
  15885. },
  15886. },
  15887. [
  15888. {
  15889. name: "Mortal Mingling",
  15890. height: math.unit(3, "meters")
  15891. },
  15892. {
  15893. name: "Kaiju-ish",
  15894. height: math.unit(250, "meters")
  15895. },
  15896. {
  15897. name: "Somewhat Godly",
  15898. height: math.unit(400, "km"),
  15899. default: true
  15900. },
  15901. {
  15902. name: "Planetary",
  15903. height: math.unit(300, "megameters")
  15904. },
  15905. {
  15906. name: "Galaxy-dwarfing",
  15907. height: math.unit(450, "kiloparsecs")
  15908. },
  15909. {
  15910. name: "Universe Eater",
  15911. height: math.unit(150, "gigaparsecs")
  15912. },
  15913. {
  15914. name: "Almost Immeasurable",
  15915. height: math.unit(1.3e266, "yottaparsecs")
  15916. },
  15917. ]
  15918. ))
  15919. characterMakers.push(() => makeCharacter(
  15920. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15921. {
  15922. front: {
  15923. height: math.unit(6, "feet"),
  15924. weight: math.unit(150, "lb"),
  15925. name: "Front",
  15926. image: {
  15927. source: "./media/characters/umeko/front.svg",
  15928. extra: 1,
  15929. bottom: 0.019
  15930. }
  15931. },
  15932. frontArmored: {
  15933. height: math.unit(6, "feet"),
  15934. weight: math.unit(150, "lb"),
  15935. name: "Front (Armored)",
  15936. image: {
  15937. source: "./media/characters/umeko/front-armored.svg",
  15938. extra: 1,
  15939. bottom: 0.021
  15940. }
  15941. },
  15942. },
  15943. [
  15944. {
  15945. name: "Macro",
  15946. height: math.unit(220, "feet"),
  15947. default: true
  15948. },
  15949. {
  15950. name: "Guardian Dragon",
  15951. height: math.unit(50, "miles")
  15952. },
  15953. {
  15954. name: "Cosmic",
  15955. height: math.unit(800000, "miles")
  15956. },
  15957. ]
  15958. ))
  15959. characterMakers.push(() => makeCharacter(
  15960. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15961. {
  15962. front: {
  15963. height: math.unit(6, "feet"),
  15964. weight: math.unit(150, "lb"),
  15965. name: "Front",
  15966. image: {
  15967. source: "./media/characters/cassidy/front.svg",
  15968. extra: 810/808,
  15969. bottom: 41/851
  15970. }
  15971. },
  15972. },
  15973. [
  15974. {
  15975. name: "Canon Height",
  15976. height: math.unit(120, "feet"),
  15977. default: true
  15978. },
  15979. {
  15980. name: "Macro+",
  15981. height: math.unit(400, "feet")
  15982. },
  15983. {
  15984. name: "Macro++",
  15985. height: math.unit(4000, "feet")
  15986. },
  15987. {
  15988. name: "Megamacro",
  15989. height: math.unit(3, "miles")
  15990. },
  15991. ]
  15992. ))
  15993. characterMakers.push(() => makeCharacter(
  15994. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15995. {
  15996. front: {
  15997. height: math.unit(6, "feet"),
  15998. weight: math.unit(150, "lb"),
  15999. name: "Front",
  16000. image: {
  16001. source: "./media/characters/isaac/front.svg",
  16002. extra: 896 / 815,
  16003. bottom: 0.11
  16004. }
  16005. },
  16006. },
  16007. [
  16008. {
  16009. name: "Human Size",
  16010. height: math.unit(8, "feet"),
  16011. default: true
  16012. },
  16013. {
  16014. name: "Macro",
  16015. height: math.unit(400, "feet")
  16016. },
  16017. {
  16018. name: "Megamacro",
  16019. height: math.unit(50, "miles")
  16020. },
  16021. {
  16022. name: "Canon Height",
  16023. height: math.unit(200, "AU")
  16024. },
  16025. ]
  16026. ))
  16027. characterMakers.push(() => makeCharacter(
  16028. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16029. {
  16030. front: {
  16031. height: math.unit(6, "feet"),
  16032. weight: math.unit(72, "kg"),
  16033. name: "Front",
  16034. image: {
  16035. source: "./media/characters/sleekit/front.svg",
  16036. extra: 4693 / 4487,
  16037. bottom: 0.012
  16038. }
  16039. },
  16040. },
  16041. [
  16042. {
  16043. name: "Minimum Height",
  16044. height: math.unit(10, "meters")
  16045. },
  16046. {
  16047. name: "Smaller",
  16048. height: math.unit(25, "meters")
  16049. },
  16050. {
  16051. name: "Larger",
  16052. height: math.unit(38, "meters"),
  16053. default: true
  16054. },
  16055. {
  16056. name: "Maximum height",
  16057. height: math.unit(100, "meters")
  16058. },
  16059. ]
  16060. ))
  16061. characterMakers.push(() => makeCharacter(
  16062. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16063. {
  16064. front: {
  16065. height: math.unit(6, "feet"),
  16066. weight: math.unit(150, "lb"),
  16067. name: "Front",
  16068. image: {
  16069. source: "./media/characters/nillia/front.svg",
  16070. extra: 719/665,
  16071. bottom: 6/725
  16072. }
  16073. },
  16074. back: {
  16075. height: math.unit(6, "feet"),
  16076. weight: math.unit(150, "lb"),
  16077. name: "Back",
  16078. image: {
  16079. source: "./media/characters/nillia/back.svg",
  16080. extra: 705/651,
  16081. bottom: 5/710
  16082. }
  16083. },
  16084. },
  16085. [
  16086. {
  16087. name: "Canon Height",
  16088. height: math.unit(489, "feet"),
  16089. default: true
  16090. }
  16091. ]
  16092. ))
  16093. characterMakers.push(() => makeCharacter(
  16094. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16095. {
  16096. front: {
  16097. height: math.unit(6, "feet"),
  16098. weight: math.unit(150, "lb"),
  16099. name: "Front",
  16100. image: {
  16101. source: "./media/characters/mesmyriza/front.svg",
  16102. extra: 1541/1291,
  16103. bottom: 87/1628
  16104. }
  16105. },
  16106. foot: {
  16107. height: math.unit(6 / (250 / 35), "feet"),
  16108. name: "Foot",
  16109. image: {
  16110. source: "./media/characters/mesmyriza/foot.svg"
  16111. }
  16112. },
  16113. },
  16114. [
  16115. {
  16116. name: "Macro",
  16117. height: math.unit(457, "meters"),
  16118. default: true
  16119. },
  16120. {
  16121. name: "Megamacro",
  16122. height: math.unit(8, "megameters")
  16123. },
  16124. ]
  16125. ))
  16126. characterMakers.push(() => makeCharacter(
  16127. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16128. {
  16129. front: {
  16130. height: math.unit(6, "feet"),
  16131. weight: math.unit(250, "lb"),
  16132. name: "Front",
  16133. image: {
  16134. source: "./media/characters/saudade/front.svg",
  16135. extra: 1172 / 1139,
  16136. bottom: 0.035
  16137. }
  16138. },
  16139. },
  16140. [
  16141. {
  16142. name: "Micro",
  16143. height: math.unit(3, "inches")
  16144. },
  16145. {
  16146. name: "Normal",
  16147. height: math.unit(6, "feet"),
  16148. default: true
  16149. },
  16150. {
  16151. name: "Macro",
  16152. height: math.unit(50, "feet")
  16153. },
  16154. {
  16155. name: "Megamacro",
  16156. height: math.unit(2800, "feet")
  16157. },
  16158. ]
  16159. ))
  16160. characterMakers.push(() => makeCharacter(
  16161. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16162. {
  16163. front: {
  16164. height: math.unit(5 + 4 / 12, "feet"),
  16165. weight: math.unit(100, "lb"),
  16166. name: "Front",
  16167. image: {
  16168. source: "./media/characters/keireer/front.svg",
  16169. extra: 716 / 666,
  16170. bottom: 0.05
  16171. }
  16172. },
  16173. },
  16174. [
  16175. {
  16176. name: "Normal",
  16177. height: math.unit(5 + 4 / 12, "feet"),
  16178. default: true
  16179. },
  16180. ]
  16181. ))
  16182. characterMakers.push(() => makeCharacter(
  16183. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16184. {
  16185. front: {
  16186. height: math.unit(5.5, "feet"),
  16187. weight: math.unit(90, "kg"),
  16188. name: "Front",
  16189. image: {
  16190. source: "./media/characters/mirja/front.svg",
  16191. extra: 1452/1262,
  16192. bottom: 67/1519
  16193. }
  16194. },
  16195. frontDressed: {
  16196. height: math.unit(5.5, "feet"),
  16197. weight: math.unit(90, "lb"),
  16198. name: "Front (Dressed)",
  16199. image: {
  16200. source: "./media/characters/mirja/dressed.svg",
  16201. extra: 1452/1262,
  16202. bottom: 67/1519
  16203. }
  16204. },
  16205. back: {
  16206. height: math.unit(6, "feet"),
  16207. weight: math.unit(90, "lb"),
  16208. name: "Back",
  16209. image: {
  16210. source: "./media/characters/mirja/back.svg",
  16211. extra: 1892/1795,
  16212. bottom: 48/1940
  16213. }
  16214. },
  16215. maw: {
  16216. height: math.unit(1.312, "feet"),
  16217. name: "Maw",
  16218. image: {
  16219. source: "./media/characters/mirja/maw.svg"
  16220. }
  16221. },
  16222. paw: {
  16223. height: math.unit(1.15, "feet"),
  16224. name: "Paw",
  16225. image: {
  16226. source: "./media/characters/mirja/paw.svg"
  16227. }
  16228. },
  16229. },
  16230. [
  16231. {
  16232. name: "\"Incognito\"",
  16233. height: math.unit(3, "meters")
  16234. },
  16235. {
  16236. name: "Strolling Size",
  16237. height: math.unit(15, "km")
  16238. },
  16239. {
  16240. name: "Larger Strolling Size",
  16241. height: math.unit(400, "km")
  16242. },
  16243. {
  16244. name: "Preferred Size",
  16245. height: math.unit(5000, "km"),
  16246. default: true
  16247. },
  16248. {
  16249. name: "True Size",
  16250. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16251. },
  16252. ]
  16253. ))
  16254. characterMakers.push(() => makeCharacter(
  16255. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16256. {
  16257. front: {
  16258. height: math.unit(15, "feet"),
  16259. weight: math.unit(880, "kg"),
  16260. name: "Front",
  16261. image: {
  16262. source: "./media/characters/nightraver/front.svg",
  16263. extra: 2444 / 2160,
  16264. bottom: 0.027
  16265. }
  16266. },
  16267. back: {
  16268. height: math.unit(15, "feet"),
  16269. weight: math.unit(880, "kg"),
  16270. name: "Back",
  16271. image: {
  16272. source: "./media/characters/nightraver/back.svg",
  16273. extra: 2309 / 2180,
  16274. bottom: 0.005
  16275. }
  16276. },
  16277. sole: {
  16278. height: math.unit(2.878, "feet"),
  16279. name: "Sole",
  16280. image: {
  16281. source: "./media/characters/nightraver/sole.svg"
  16282. }
  16283. },
  16284. foot: {
  16285. height: math.unit(2.285, "feet"),
  16286. name: "Foot",
  16287. image: {
  16288. source: "./media/characters/nightraver/foot.svg"
  16289. }
  16290. },
  16291. maw: {
  16292. height: math.unit(2.67, "feet"),
  16293. name: "Maw",
  16294. image: {
  16295. source: "./media/characters/nightraver/maw.svg"
  16296. }
  16297. },
  16298. },
  16299. [
  16300. {
  16301. name: "Micro",
  16302. height: math.unit(1, "cm")
  16303. },
  16304. {
  16305. name: "Normal",
  16306. height: math.unit(15, "feet"),
  16307. default: true
  16308. },
  16309. {
  16310. name: "Macro",
  16311. height: math.unit(300, "feet")
  16312. },
  16313. {
  16314. name: "Megamacro",
  16315. height: math.unit(300, "miles")
  16316. },
  16317. {
  16318. name: "Gigamacro",
  16319. height: math.unit(10000, "miles")
  16320. },
  16321. ]
  16322. ))
  16323. characterMakers.push(() => makeCharacter(
  16324. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16325. {
  16326. side: {
  16327. height: math.unit(2, "inches"),
  16328. weight: math.unit(5, "grams"),
  16329. name: "Side",
  16330. image: {
  16331. source: "./media/characters/arc/side.svg"
  16332. }
  16333. },
  16334. },
  16335. [
  16336. {
  16337. name: "Micro",
  16338. height: math.unit(2, "inches"),
  16339. default: true
  16340. },
  16341. ]
  16342. ))
  16343. characterMakers.push(() => makeCharacter(
  16344. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16345. {
  16346. front: {
  16347. height: math.unit(1.1938, "meters"),
  16348. weight: math.unit(54, "kg"),
  16349. name: "Front",
  16350. image: {
  16351. source: "./media/characters/nebula-shahar/front.svg",
  16352. extra: 1642 / 1436,
  16353. bottom: 0.06
  16354. }
  16355. },
  16356. },
  16357. [
  16358. {
  16359. name: "Megamicro",
  16360. height: math.unit(0.3, "mm")
  16361. },
  16362. {
  16363. name: "Micro",
  16364. height: math.unit(3, "cm")
  16365. },
  16366. {
  16367. name: "Normal",
  16368. height: math.unit(138, "cm"),
  16369. default: true
  16370. },
  16371. {
  16372. name: "Macro",
  16373. height: math.unit(30, "m")
  16374. },
  16375. ]
  16376. ))
  16377. characterMakers.push(() => makeCharacter(
  16378. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16379. {
  16380. front: {
  16381. height: math.unit(5.24, "feet"),
  16382. weight: math.unit(150, "lb"),
  16383. name: "Front",
  16384. image: {
  16385. source: "./media/characters/shayla/front.svg",
  16386. extra: 1512 / 1414,
  16387. bottom: 0.01
  16388. }
  16389. },
  16390. back: {
  16391. height: math.unit(5.24, "feet"),
  16392. weight: math.unit(150, "lb"),
  16393. name: "Back",
  16394. image: {
  16395. source: "./media/characters/shayla/back.svg",
  16396. extra: 1512 / 1414
  16397. }
  16398. },
  16399. hand: {
  16400. height: math.unit(0.7781496062992126, "feet"),
  16401. name: "Hand",
  16402. image: {
  16403. source: "./media/characters/shayla/hand.svg"
  16404. }
  16405. },
  16406. foot: {
  16407. height: math.unit(1.4206036745406823, "feet"),
  16408. name: "Foot",
  16409. image: {
  16410. source: "./media/characters/shayla/foot.svg"
  16411. }
  16412. },
  16413. },
  16414. [
  16415. {
  16416. name: "Micro",
  16417. height: math.unit(0.32, "feet")
  16418. },
  16419. {
  16420. name: "Normal",
  16421. height: math.unit(5.24, "feet"),
  16422. default: true
  16423. },
  16424. {
  16425. name: "Macro",
  16426. height: math.unit(492.12, "feet")
  16427. },
  16428. {
  16429. name: "Megamacro",
  16430. height: math.unit(186.41, "miles")
  16431. },
  16432. ]
  16433. ))
  16434. characterMakers.push(() => makeCharacter(
  16435. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16436. {
  16437. front: {
  16438. height: math.unit(2.2, "m"),
  16439. weight: math.unit(120, "kg"),
  16440. name: "Front",
  16441. image: {
  16442. source: "./media/characters/pia-jr/front.svg",
  16443. extra: 1000 / 970,
  16444. bottom: 0.035
  16445. }
  16446. },
  16447. hand: {
  16448. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16449. name: "Hand",
  16450. image: {
  16451. source: "./media/characters/pia-jr/hand.svg"
  16452. }
  16453. },
  16454. paw: {
  16455. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16456. name: "Paw",
  16457. image: {
  16458. source: "./media/characters/pia-jr/paw.svg"
  16459. }
  16460. },
  16461. },
  16462. [
  16463. {
  16464. name: "Micro",
  16465. height: math.unit(1.2, "cm")
  16466. },
  16467. {
  16468. name: "Normal",
  16469. height: math.unit(2.2, "m"),
  16470. default: true
  16471. },
  16472. {
  16473. name: "Macro",
  16474. height: math.unit(180, "m")
  16475. },
  16476. {
  16477. name: "Megamacro",
  16478. height: math.unit(420, "km")
  16479. },
  16480. ]
  16481. ))
  16482. characterMakers.push(() => makeCharacter(
  16483. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16484. {
  16485. front: {
  16486. height: math.unit(2, "m"),
  16487. weight: math.unit(115, "kg"),
  16488. name: "Front",
  16489. image: {
  16490. source: "./media/characters/pia-sr/front.svg",
  16491. extra: 760 / 730,
  16492. bottom: 0.015
  16493. }
  16494. },
  16495. back: {
  16496. height: math.unit(2, "m"),
  16497. weight: math.unit(115, "kg"),
  16498. name: "Back",
  16499. image: {
  16500. source: "./media/characters/pia-sr/back.svg",
  16501. extra: 760 / 730,
  16502. bottom: 0.01
  16503. }
  16504. },
  16505. hand: {
  16506. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16507. name: "Hand",
  16508. image: {
  16509. source: "./media/characters/pia-sr/hand.svg"
  16510. }
  16511. },
  16512. foot: {
  16513. height: math.unit(1.83, "feet"),
  16514. name: "Foot",
  16515. image: {
  16516. source: "./media/characters/pia-sr/foot.svg"
  16517. }
  16518. },
  16519. },
  16520. [
  16521. {
  16522. name: "Micro",
  16523. height: math.unit(88, "mm")
  16524. },
  16525. {
  16526. name: "Normal",
  16527. height: math.unit(2, "m"),
  16528. default: true
  16529. },
  16530. {
  16531. name: "Macro",
  16532. height: math.unit(200, "m")
  16533. },
  16534. {
  16535. name: "Megamacro",
  16536. height: math.unit(420, "km")
  16537. },
  16538. ]
  16539. ))
  16540. characterMakers.push(() => makeCharacter(
  16541. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16542. {
  16543. front: {
  16544. height: math.unit(8 + 2 / 12, "feet"),
  16545. weight: math.unit(300, "lb"),
  16546. name: "Front",
  16547. image: {
  16548. source: "./media/characters/kibibyte/front.svg",
  16549. extra: 2221 / 2098,
  16550. bottom: 0.04
  16551. }
  16552. },
  16553. },
  16554. [
  16555. {
  16556. name: "Normal",
  16557. height: math.unit(8 + 2 / 12, "feet"),
  16558. default: true
  16559. },
  16560. {
  16561. name: "Socialable Macro",
  16562. height: math.unit(50, "feet")
  16563. },
  16564. {
  16565. name: "Macro",
  16566. height: math.unit(300, "feet")
  16567. },
  16568. {
  16569. name: "Megamacro",
  16570. height: math.unit(500, "miles")
  16571. },
  16572. ]
  16573. ))
  16574. characterMakers.push(() => makeCharacter(
  16575. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16576. {
  16577. front: {
  16578. height: math.unit(6, "feet"),
  16579. weight: math.unit(150, "lb"),
  16580. name: "Front",
  16581. image: {
  16582. source: "./media/characters/felix/front.svg",
  16583. extra: 762 / 722,
  16584. bottom: 0.02
  16585. }
  16586. },
  16587. frontClothed: {
  16588. height: math.unit(6, "feet"),
  16589. weight: math.unit(150, "lb"),
  16590. name: "Front (Clothed)",
  16591. image: {
  16592. source: "./media/characters/felix/front-clothed.svg",
  16593. extra: 762 / 722,
  16594. bottom: 0.02
  16595. }
  16596. },
  16597. },
  16598. [
  16599. {
  16600. name: "Normal",
  16601. height: math.unit(6 + 8 / 12, "feet"),
  16602. default: true
  16603. },
  16604. {
  16605. name: "Macro",
  16606. height: math.unit(2600, "feet")
  16607. },
  16608. {
  16609. name: "Megamacro",
  16610. height: math.unit(450, "miles")
  16611. },
  16612. ]
  16613. ))
  16614. characterMakers.push(() => makeCharacter(
  16615. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16616. {
  16617. front: {
  16618. height: math.unit(6 + 1 / 12, "feet"),
  16619. weight: math.unit(250, "lb"),
  16620. name: "Front",
  16621. image: {
  16622. source: "./media/characters/tobo/front.svg",
  16623. extra: 608 / 586,
  16624. bottom: 0.023
  16625. }
  16626. },
  16627. back: {
  16628. height: math.unit(6 + 1 / 12, "feet"),
  16629. weight: math.unit(250, "lb"),
  16630. name: "Back",
  16631. image: {
  16632. source: "./media/characters/tobo/back.svg",
  16633. extra: 608 / 586
  16634. }
  16635. },
  16636. },
  16637. [
  16638. {
  16639. name: "Nano",
  16640. height: math.unit(2, "nm")
  16641. },
  16642. {
  16643. name: "Megamicro",
  16644. height: math.unit(0.1, "mm")
  16645. },
  16646. {
  16647. name: "Micro",
  16648. height: math.unit(1, "inch"),
  16649. default: true
  16650. },
  16651. {
  16652. name: "Human-sized",
  16653. height: math.unit(6 + 1 / 12, "feet")
  16654. },
  16655. {
  16656. name: "Macro",
  16657. height: math.unit(250, "feet")
  16658. },
  16659. {
  16660. name: "Megamacro",
  16661. height: math.unit(75, "miles")
  16662. },
  16663. {
  16664. name: "Texas-sized",
  16665. height: math.unit(750, "miles")
  16666. },
  16667. {
  16668. name: "Teramacro",
  16669. height: math.unit(50000, "miles")
  16670. },
  16671. ]
  16672. ))
  16673. characterMakers.push(() => makeCharacter(
  16674. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16675. {
  16676. front: {
  16677. height: math.unit(6, "feet"),
  16678. weight: math.unit(269, "lb"),
  16679. name: "Front",
  16680. image: {
  16681. source: "./media/characters/danny-kapowsky/front.svg",
  16682. extra: 766 / 736,
  16683. bottom: 0.044
  16684. }
  16685. },
  16686. back: {
  16687. height: math.unit(6, "feet"),
  16688. weight: math.unit(269, "lb"),
  16689. name: "Back",
  16690. image: {
  16691. source: "./media/characters/danny-kapowsky/back.svg",
  16692. extra: 797 / 760,
  16693. bottom: 0.025
  16694. }
  16695. },
  16696. },
  16697. [
  16698. {
  16699. name: "Macro",
  16700. height: math.unit(150, "feet"),
  16701. default: true
  16702. },
  16703. {
  16704. name: "Macro+",
  16705. height: math.unit(200, "feet")
  16706. },
  16707. {
  16708. name: "Macro++",
  16709. height: math.unit(300, "feet")
  16710. },
  16711. {
  16712. name: "Macro+++",
  16713. height: math.unit(400, "feet")
  16714. },
  16715. ]
  16716. ))
  16717. characterMakers.push(() => makeCharacter(
  16718. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16719. {
  16720. side: {
  16721. height: math.unit(6, "feet"),
  16722. weight: math.unit(170, "lb"),
  16723. name: "Side",
  16724. image: {
  16725. source: "./media/characters/finn/side.svg",
  16726. extra: 1953 / 1807,
  16727. bottom: 0.057
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Megamacro",
  16734. height: math.unit(14445, "feet"),
  16735. default: true
  16736. },
  16737. ]
  16738. ))
  16739. characterMakers.push(() => makeCharacter(
  16740. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16741. {
  16742. front: {
  16743. height: math.unit(5 + 6 / 12, "feet"),
  16744. weight: math.unit(125, "lb"),
  16745. name: "Front",
  16746. image: {
  16747. source: "./media/characters/roy/front.svg",
  16748. extra: 1,
  16749. bottom: 0.11
  16750. }
  16751. },
  16752. },
  16753. [
  16754. {
  16755. name: "Micro",
  16756. height: math.unit(3, "inches"),
  16757. default: true
  16758. },
  16759. {
  16760. name: "Normal",
  16761. height: math.unit(5 + 6 / 12, "feet")
  16762. },
  16763. {
  16764. name: "Lesser Macro",
  16765. height: math.unit(60, "feet")
  16766. },
  16767. {
  16768. name: "Greater Macro",
  16769. height: math.unit(120, "feet")
  16770. },
  16771. ]
  16772. ))
  16773. characterMakers.push(() => makeCharacter(
  16774. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16775. {
  16776. front: {
  16777. height: math.unit(6, "feet"),
  16778. weight: math.unit(100, "lb"),
  16779. name: "Front",
  16780. image: {
  16781. source: "./media/characters/aevsivs/front.svg",
  16782. extra: 1,
  16783. bottom: 0.03
  16784. }
  16785. },
  16786. back: {
  16787. height: math.unit(6, "feet"),
  16788. weight: math.unit(100, "lb"),
  16789. name: "Back",
  16790. image: {
  16791. source: "./media/characters/aevsivs/back.svg"
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Micro",
  16798. height: math.unit(2, "inches"),
  16799. default: true
  16800. },
  16801. {
  16802. name: "Normal",
  16803. height: math.unit(5, "feet")
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16809. {
  16810. front: {
  16811. height: math.unit(5 + 7 / 12, "feet"),
  16812. weight: math.unit(159, "lb"),
  16813. name: "Front",
  16814. image: {
  16815. source: "./media/characters/hildegard/front.svg",
  16816. extra: 289 / 269,
  16817. bottom: 7.63 / 297.8
  16818. }
  16819. },
  16820. back: {
  16821. height: math.unit(5 + 7 / 12, "feet"),
  16822. weight: math.unit(159, "lb"),
  16823. name: "Back",
  16824. image: {
  16825. source: "./media/characters/hildegard/back.svg",
  16826. extra: 280 / 260,
  16827. bottom: 2.3 / 282
  16828. }
  16829. },
  16830. },
  16831. [
  16832. {
  16833. name: "Normal",
  16834. height: math.unit(5 + 7 / 12, "feet"),
  16835. default: true
  16836. },
  16837. ]
  16838. ))
  16839. characterMakers.push(() => makeCharacter(
  16840. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16841. {
  16842. bernard: {
  16843. height: math.unit(2 + 7 / 12, "feet"),
  16844. weight: math.unit(66, "lb"),
  16845. name: "Bernard",
  16846. rename: true,
  16847. image: {
  16848. source: "./media/characters/bernard-wilder/bernard.svg",
  16849. extra: 192 / 128,
  16850. bottom: 0.05
  16851. }
  16852. },
  16853. wilder: {
  16854. height: math.unit(5 + 8 / 12, "feet"),
  16855. weight: math.unit(143, "lb"),
  16856. name: "Wilder",
  16857. rename: true,
  16858. image: {
  16859. source: "./media/characters/bernard-wilder/wilder.svg",
  16860. extra: 361 / 312,
  16861. bottom: 0.02
  16862. }
  16863. },
  16864. },
  16865. [
  16866. {
  16867. name: "Normal",
  16868. height: math.unit(2 + 7 / 12, "feet"),
  16869. default: true
  16870. },
  16871. ]
  16872. ))
  16873. characterMakers.push(() => makeCharacter(
  16874. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16875. {
  16876. anthro: {
  16877. height: math.unit(6 + 1 / 12, "feet"),
  16878. weight: math.unit(155, "lb"),
  16879. name: "Anthro",
  16880. image: {
  16881. source: "./media/characters/hearth/anthro.svg",
  16882. extra: 1178/1136,
  16883. bottom: 28/1206
  16884. }
  16885. },
  16886. feral: {
  16887. height: math.unit(3.78, "feet"),
  16888. weight: math.unit(35, "kg"),
  16889. name: "Feral",
  16890. image: {
  16891. source: "./media/characters/hearth/feral.svg",
  16892. extra: 153 / 135,
  16893. bottom: 0.03
  16894. }
  16895. },
  16896. },
  16897. [
  16898. {
  16899. name: "Normal",
  16900. height: math.unit(6 + 1 / 12, "feet"),
  16901. default: true
  16902. },
  16903. ]
  16904. ))
  16905. characterMakers.push(() => makeCharacter(
  16906. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16907. {
  16908. front: {
  16909. height: math.unit(6, "feet"),
  16910. weight: math.unit(182, "lb"),
  16911. name: "Front",
  16912. image: {
  16913. source: "./media/characters/ingrid/front.svg",
  16914. extra: 294 / 268,
  16915. bottom: 0.027
  16916. }
  16917. },
  16918. },
  16919. [
  16920. {
  16921. name: "Normal",
  16922. height: math.unit(6, "feet"),
  16923. default: true
  16924. },
  16925. ]
  16926. ))
  16927. characterMakers.push(() => makeCharacter(
  16928. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16929. {
  16930. eevee: {
  16931. height: math.unit(2 + 10 / 12, "feet"),
  16932. weight: math.unit(86, "lb"),
  16933. name: "Malgam",
  16934. image: {
  16935. source: "./media/characters/malgam/eevee.svg",
  16936. extra: 952/784,
  16937. bottom: 38/990
  16938. }
  16939. },
  16940. sylveon: {
  16941. height: math.unit(4, "feet"),
  16942. weight: math.unit(101, "lb"),
  16943. name: "Future Malgam",
  16944. rename: true,
  16945. image: {
  16946. source: "./media/characters/malgam/sylveon.svg",
  16947. extra: 371 / 325,
  16948. bottom: 0.015
  16949. }
  16950. },
  16951. gigantamax: {
  16952. height: math.unit(50, "feet"),
  16953. name: "Gigantamax Malgam",
  16954. rename: true,
  16955. image: {
  16956. source: "./media/characters/malgam/gigantamax.svg"
  16957. }
  16958. },
  16959. },
  16960. [
  16961. {
  16962. name: "Normal",
  16963. height: math.unit(2 + 10 / 12, "feet"),
  16964. default: true
  16965. },
  16966. ]
  16967. ))
  16968. characterMakers.push(() => makeCharacter(
  16969. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16970. {
  16971. front: {
  16972. height: math.unit(5 + 11 / 12, "feet"),
  16973. weight: math.unit(188, "lb"),
  16974. name: "Front",
  16975. image: {
  16976. source: "./media/characters/fleur/front.svg",
  16977. extra: 309 / 283,
  16978. bottom: 0.007
  16979. }
  16980. },
  16981. },
  16982. [
  16983. {
  16984. name: "Normal",
  16985. height: math.unit(5 + 11 / 12, "feet"),
  16986. default: true
  16987. },
  16988. ]
  16989. ))
  16990. characterMakers.push(() => makeCharacter(
  16991. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16992. {
  16993. front: {
  16994. height: math.unit(5 + 4 / 12, "feet"),
  16995. weight: math.unit(122, "lb"),
  16996. name: "Front",
  16997. image: {
  16998. source: "./media/characters/jude/front.svg",
  16999. extra: 288 / 273,
  17000. bottom: 0.03
  17001. }
  17002. },
  17003. },
  17004. [
  17005. {
  17006. name: "Normal",
  17007. height: math.unit(5 + 4 / 12, "feet"),
  17008. default: true
  17009. },
  17010. ]
  17011. ))
  17012. characterMakers.push(() => makeCharacter(
  17013. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17014. {
  17015. front: {
  17016. height: math.unit(5 + 11 / 12, "feet"),
  17017. weight: math.unit(190, "lb"),
  17018. name: "Front",
  17019. image: {
  17020. source: "./media/characters/seara/front.svg",
  17021. extra: 1,
  17022. bottom: 0.05
  17023. }
  17024. },
  17025. },
  17026. [
  17027. {
  17028. name: "Normal",
  17029. height: math.unit(5 + 11 / 12, "feet"),
  17030. default: true
  17031. },
  17032. ]
  17033. ))
  17034. characterMakers.push(() => makeCharacter(
  17035. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17036. {
  17037. front: {
  17038. height: math.unit(16 + 5 / 12, "feet"),
  17039. weight: math.unit(524, "lb"),
  17040. name: "Front",
  17041. image: {
  17042. source: "./media/characters/caspian-lugia/front.svg",
  17043. extra: 1,
  17044. bottom: 0.04
  17045. }
  17046. },
  17047. },
  17048. [
  17049. {
  17050. name: "Normal",
  17051. height: math.unit(16 + 5 / 12, "feet"),
  17052. default: true
  17053. },
  17054. ]
  17055. ))
  17056. characterMakers.push(() => makeCharacter(
  17057. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17058. {
  17059. front: {
  17060. height: math.unit(5 + 7 / 12, "feet"),
  17061. weight: math.unit(170, "lb"),
  17062. name: "Front",
  17063. image: {
  17064. source: "./media/characters/mika/front.svg",
  17065. extra: 1,
  17066. bottom: 0.016
  17067. }
  17068. },
  17069. },
  17070. [
  17071. {
  17072. name: "Normal",
  17073. height: math.unit(5 + 7 / 12, "feet"),
  17074. default: true
  17075. },
  17076. ]
  17077. ))
  17078. characterMakers.push(() => makeCharacter(
  17079. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17080. {
  17081. front: {
  17082. height: math.unit(6 + 2 / 12, "feet"),
  17083. weight: math.unit(268, "lb"),
  17084. name: "Front",
  17085. image: {
  17086. source: "./media/characters/sol/front.svg",
  17087. extra: 247 / 231,
  17088. bottom: 0.05
  17089. }
  17090. },
  17091. },
  17092. [
  17093. {
  17094. name: "Normal",
  17095. height: math.unit(6 + 2 / 12, "feet"),
  17096. default: true
  17097. },
  17098. ]
  17099. ))
  17100. characterMakers.push(() => makeCharacter(
  17101. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17102. {
  17103. buizel: {
  17104. height: math.unit(2 + 5 / 12, "feet"),
  17105. weight: math.unit(87, "lb"),
  17106. name: "Front",
  17107. image: {
  17108. source: "./media/characters/umiko/buizel.svg",
  17109. extra: 172 / 157,
  17110. bottom: 0.01
  17111. },
  17112. form: "buizel",
  17113. default: true
  17114. },
  17115. floatzel: {
  17116. height: math.unit(5 + 9 / 12, "feet"),
  17117. weight: math.unit(250, "lb"),
  17118. name: "Front",
  17119. image: {
  17120. source: "./media/characters/umiko/floatzel.svg",
  17121. extra: 1076/1006,
  17122. bottom: 15/1091
  17123. },
  17124. form: "floatzel",
  17125. default: true
  17126. },
  17127. },
  17128. [
  17129. {
  17130. name: "Normal",
  17131. height: math.unit(2 + 5 / 12, "feet"),
  17132. form: "buizel",
  17133. default: true
  17134. },
  17135. {
  17136. name: "Normal",
  17137. height: math.unit(5 + 9 / 12, "feet"),
  17138. form: "floatzel",
  17139. default: true
  17140. },
  17141. ],
  17142. {
  17143. "buizel": {
  17144. name: "Buizel"
  17145. },
  17146. "floatzel": {
  17147. name: "Floatzel",
  17148. default: true
  17149. }
  17150. }
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17154. {
  17155. front: {
  17156. height: math.unit(6 + 2 / 12, "feet"),
  17157. weight: math.unit(146, "lb"),
  17158. name: "Front",
  17159. image: {
  17160. source: "./media/characters/iliac/front.svg",
  17161. extra: 389 / 365,
  17162. bottom: 0.035
  17163. }
  17164. },
  17165. },
  17166. [
  17167. {
  17168. name: "Normal",
  17169. height: math.unit(6 + 2 / 12, "feet"),
  17170. default: true
  17171. },
  17172. ]
  17173. ))
  17174. characterMakers.push(() => makeCharacter(
  17175. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17176. {
  17177. front: {
  17178. height: math.unit(6, "feet"),
  17179. weight: math.unit(170, "lb"),
  17180. name: "Front",
  17181. image: {
  17182. source: "./media/characters/topaz/front.svg",
  17183. extra: 317 / 303,
  17184. bottom: 0.055
  17185. }
  17186. },
  17187. },
  17188. [
  17189. {
  17190. name: "Normal",
  17191. height: math.unit(6, "feet"),
  17192. default: true
  17193. },
  17194. ]
  17195. ))
  17196. characterMakers.push(() => makeCharacter(
  17197. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17198. {
  17199. front: {
  17200. height: math.unit(5 + 11 / 12, "feet"),
  17201. weight: math.unit(144, "lb"),
  17202. name: "Front",
  17203. image: {
  17204. source: "./media/characters/gabriel/front.svg",
  17205. extra: 285 / 262,
  17206. bottom: 0.004
  17207. }
  17208. },
  17209. },
  17210. [
  17211. {
  17212. name: "Normal",
  17213. height: math.unit(5 + 11 / 12, "feet"),
  17214. default: true
  17215. },
  17216. ]
  17217. ))
  17218. characterMakers.push(() => makeCharacter(
  17219. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17220. {
  17221. side: {
  17222. height: math.unit(6 + 5 / 12, "feet"),
  17223. weight: math.unit(300, "lb"),
  17224. name: "Side",
  17225. image: {
  17226. source: "./media/characters/tempest-suicune/side.svg",
  17227. extra: 195 / 154,
  17228. bottom: 0.04
  17229. }
  17230. },
  17231. },
  17232. [
  17233. {
  17234. name: "Normal",
  17235. height: math.unit(6 + 5 / 12, "feet"),
  17236. default: true
  17237. },
  17238. ]
  17239. ))
  17240. characterMakers.push(() => makeCharacter(
  17241. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17242. {
  17243. front: {
  17244. height: math.unit(7 + 2 / 12, "feet"),
  17245. weight: math.unit(322, "lb"),
  17246. name: "Front",
  17247. image: {
  17248. source: "./media/characters/vulcan/front.svg",
  17249. extra: 154 / 147,
  17250. bottom: 0.04
  17251. }
  17252. },
  17253. },
  17254. [
  17255. {
  17256. name: "Normal",
  17257. height: math.unit(7 + 2 / 12, "feet"),
  17258. default: true
  17259. },
  17260. ]
  17261. ))
  17262. characterMakers.push(() => makeCharacter(
  17263. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17264. {
  17265. front: {
  17266. height: math.unit(5 + 10 / 12, "feet"),
  17267. weight: math.unit(264, "lb"),
  17268. name: "Front",
  17269. image: {
  17270. source: "./media/characters/gault/front.svg",
  17271. extra: 161 / 140,
  17272. bottom: 0.028
  17273. }
  17274. },
  17275. },
  17276. [
  17277. {
  17278. name: "Normal",
  17279. height: math.unit(5 + 10 / 12, "feet"),
  17280. default: true
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17286. {
  17287. front: {
  17288. height: math.unit(6, "feet"),
  17289. weight: math.unit(150, "lb"),
  17290. name: "Front",
  17291. image: {
  17292. source: "./media/characters/shard/front.svg",
  17293. extra: 273 / 238,
  17294. bottom: 0.02
  17295. }
  17296. },
  17297. },
  17298. [
  17299. {
  17300. name: "Normal",
  17301. height: math.unit(3 + 6 / 12, "feet"),
  17302. default: true
  17303. },
  17304. ]
  17305. ))
  17306. characterMakers.push(() => makeCharacter(
  17307. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17308. {
  17309. front: {
  17310. height: math.unit(5 + 11 / 12, "feet"),
  17311. weight: math.unit(146, "lb"),
  17312. name: "Front",
  17313. image: {
  17314. source: "./media/characters/ashe/front.svg",
  17315. extra: 400 / 373,
  17316. bottom: 0.01
  17317. }
  17318. },
  17319. },
  17320. [
  17321. {
  17322. name: "Normal",
  17323. height: math.unit(5 + 11 / 12, "feet"),
  17324. default: true
  17325. },
  17326. ]
  17327. ))
  17328. characterMakers.push(() => makeCharacter(
  17329. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17330. {
  17331. front: {
  17332. height: math.unit(5 + 5 / 12, "feet"),
  17333. weight: math.unit(135, "lb"),
  17334. name: "Front",
  17335. image: {
  17336. source: "./media/characters/beatrix/front.svg",
  17337. extra: 392 / 379,
  17338. bottom: 0.01
  17339. }
  17340. },
  17341. },
  17342. [
  17343. {
  17344. name: "Normal",
  17345. height: math.unit(6, "feet"),
  17346. default: true
  17347. },
  17348. ]
  17349. ))
  17350. characterMakers.push(() => makeCharacter(
  17351. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17352. {
  17353. front: {
  17354. height: math.unit(6 + 2/12, "feet"),
  17355. weight: math.unit(135, "lb"),
  17356. name: "Front",
  17357. image: {
  17358. source: "./media/characters/ignatius/front.svg",
  17359. extra: 1380/1259,
  17360. bottom: 27/1407
  17361. }
  17362. },
  17363. },
  17364. [
  17365. {
  17366. name: "Normal",
  17367. height: math.unit(6 + 2/12, "feet"),
  17368. default: true
  17369. },
  17370. ]
  17371. ))
  17372. characterMakers.push(() => makeCharacter(
  17373. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17374. {
  17375. front: {
  17376. height: math.unit(6 + 2 / 12, "feet"),
  17377. weight: math.unit(138, "lb"),
  17378. name: "Front",
  17379. image: {
  17380. source: "./media/characters/mei-li/front.svg",
  17381. extra: 237 / 229,
  17382. bottom: 0.03
  17383. }
  17384. },
  17385. },
  17386. [
  17387. {
  17388. name: "Normal",
  17389. height: math.unit(6 + 2 / 12, "feet"),
  17390. default: true
  17391. },
  17392. ]
  17393. ))
  17394. characterMakers.push(() => makeCharacter(
  17395. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17396. {
  17397. front: {
  17398. height: math.unit(2 + 4 / 12, "feet"),
  17399. weight: math.unit(62, "lb"),
  17400. name: "Front",
  17401. image: {
  17402. source: "./media/characters/puru/front.svg",
  17403. extra: 206 / 149,
  17404. bottom: 0.06
  17405. }
  17406. },
  17407. },
  17408. [
  17409. {
  17410. name: "Normal",
  17411. height: math.unit(2 + 4 / 12, "feet"),
  17412. default: true
  17413. },
  17414. ]
  17415. ))
  17416. characterMakers.push(() => makeCharacter(
  17417. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17418. {
  17419. anthro: {
  17420. height: math.unit(5 + 8/12, "feet"),
  17421. weight: math.unit(200, "lb"),
  17422. energyNeed: math.unit(2000, "kcal"),
  17423. name: "Anthro",
  17424. image: {
  17425. source: "./media/characters/kee/anthro.svg",
  17426. extra: 3251/3184,
  17427. bottom: 250/3501
  17428. }
  17429. },
  17430. taur: {
  17431. height: math.unit(11, "feet"),
  17432. weight: math.unit(500, "lb"),
  17433. energyNeed: math.unit(5000, "kcal"),
  17434. name: "Taur",
  17435. image: {
  17436. source: "./media/characters/kee/taur.svg",
  17437. extra: 1362/1320,
  17438. bottom: 83/1445
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(5 + 8/12, "feet"),
  17446. default: true
  17447. },
  17448. {
  17449. name: "Macro",
  17450. height: math.unit(35, "feet")
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17456. {
  17457. anthro: {
  17458. height: math.unit(7, "feet"),
  17459. weight: math.unit(190, "lb"),
  17460. name: "Anthro",
  17461. image: {
  17462. source: "./media/characters/cobalt-dracha/anthro.svg",
  17463. extra: 231 / 225,
  17464. bottom: 0.04
  17465. }
  17466. },
  17467. feral: {
  17468. height: math.unit(9 + 7 / 12, "feet"),
  17469. weight: math.unit(294, "lb"),
  17470. name: "Feral",
  17471. image: {
  17472. source: "./media/characters/cobalt-dracha/feral.svg",
  17473. extra: 692 / 633,
  17474. bottom: 0.05
  17475. }
  17476. },
  17477. },
  17478. [
  17479. {
  17480. name: "Normal",
  17481. height: math.unit(7, "feet"),
  17482. default: true
  17483. },
  17484. ]
  17485. ))
  17486. characterMakers.push(() => makeCharacter(
  17487. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17488. {
  17489. fallen: {
  17490. height: math.unit(11 + 8 / 12, "feet"),
  17491. weight: math.unit(485, "lb"),
  17492. name: "Java (Fallen)",
  17493. rename: true,
  17494. image: {
  17495. source: "./media/characters/java/fallen.svg",
  17496. extra: 226 / 208,
  17497. bottom: 0.005
  17498. }
  17499. },
  17500. godkin: {
  17501. height: math.unit(10 + 6 / 12, "feet"),
  17502. weight: math.unit(328, "lb"),
  17503. name: "Java (Godkin)",
  17504. rename: true,
  17505. image: {
  17506. source: "./media/characters/java/godkin.svg",
  17507. extra: 1104/1068,
  17508. bottom: 36/1140
  17509. }
  17510. },
  17511. },
  17512. [
  17513. {
  17514. name: "Normal",
  17515. height: math.unit(11 + 8 / 12, "feet"),
  17516. default: true
  17517. },
  17518. ]
  17519. ))
  17520. characterMakers.push(() => makeCharacter(
  17521. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17522. {
  17523. front: {
  17524. height: math.unit(5 + 9 / 12, "feet"),
  17525. weight: math.unit(170, "lb"),
  17526. name: "Front",
  17527. image: {
  17528. source: "./media/characters/purna/front.svg",
  17529. extra: 239 / 229,
  17530. bottom: 0.01
  17531. }
  17532. },
  17533. },
  17534. [
  17535. {
  17536. name: "Normal",
  17537. height: math.unit(5 + 9 / 12, "feet"),
  17538. default: true
  17539. },
  17540. ]
  17541. ))
  17542. characterMakers.push(() => makeCharacter(
  17543. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17544. {
  17545. front: {
  17546. height: math.unit(5 + 9 / 12, "feet"),
  17547. weight: math.unit(142, "lb"),
  17548. name: "Front",
  17549. image: {
  17550. source: "./media/characters/kuva/front.svg",
  17551. extra: 281 / 271,
  17552. bottom: 0.006
  17553. }
  17554. },
  17555. },
  17556. [
  17557. {
  17558. name: "Normal",
  17559. height: math.unit(5 + 9 / 12, "feet"),
  17560. default: true
  17561. },
  17562. ]
  17563. ))
  17564. characterMakers.push(() => makeCharacter(
  17565. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17566. {
  17567. anthro: {
  17568. height: math.unit(9 + 2 / 12, "feet"),
  17569. weight: math.unit(270, "lb"),
  17570. name: "Anthro",
  17571. image: {
  17572. source: "./media/characters/embra/anthro.svg",
  17573. extra: 200 / 187,
  17574. bottom: 0.02
  17575. }
  17576. },
  17577. feral: {
  17578. height: math.unit(18 + 8 / 12, "feet"),
  17579. weight: math.unit(576, "lb"),
  17580. name: "Feral",
  17581. image: {
  17582. source: "./media/characters/embra/feral.svg",
  17583. extra: 152 / 137,
  17584. bottom: 0.037
  17585. }
  17586. },
  17587. },
  17588. [
  17589. {
  17590. name: "Normal",
  17591. height: math.unit(9 + 2 / 12, "feet"),
  17592. default: true
  17593. },
  17594. ]
  17595. ))
  17596. characterMakers.push(() => makeCharacter(
  17597. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17598. {
  17599. anthro: {
  17600. height: math.unit(10 + 9 / 12, "feet"),
  17601. weight: math.unit(224, "lb"),
  17602. name: "Anthro",
  17603. image: {
  17604. source: "./media/characters/grottos/anthro.svg",
  17605. extra: 350 / 332,
  17606. bottom: 0.045
  17607. }
  17608. },
  17609. feral: {
  17610. height: math.unit(20 + 7 / 12, "feet"),
  17611. weight: math.unit(629, "lb"),
  17612. name: "Feral",
  17613. image: {
  17614. source: "./media/characters/grottos/feral.svg",
  17615. extra: 207 / 190,
  17616. bottom: 0.05
  17617. }
  17618. },
  17619. },
  17620. [
  17621. {
  17622. name: "Normal",
  17623. height: math.unit(10 + 9 / 12, "feet"),
  17624. default: true
  17625. },
  17626. ]
  17627. ))
  17628. characterMakers.push(() => makeCharacter(
  17629. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17630. {
  17631. anthro: {
  17632. height: math.unit(9 + 6 / 12, "feet"),
  17633. weight: math.unit(298, "lb"),
  17634. name: "Anthro",
  17635. image: {
  17636. source: "./media/characters/frifna/anthro.svg",
  17637. extra: 282 / 269,
  17638. bottom: 0.015
  17639. }
  17640. },
  17641. feral: {
  17642. height: math.unit(16 + 2 / 12, "feet"),
  17643. weight: math.unit(624, "lb"),
  17644. name: "Feral",
  17645. image: {
  17646. source: "./media/characters/frifna/feral.svg"
  17647. }
  17648. },
  17649. },
  17650. [
  17651. {
  17652. name: "Normal",
  17653. height: math.unit(9 + 6 / 12, "feet"),
  17654. default: true
  17655. },
  17656. ]
  17657. ))
  17658. characterMakers.push(() => makeCharacter(
  17659. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17660. {
  17661. front: {
  17662. height: math.unit(6 + 2 / 12, "feet"),
  17663. weight: math.unit(168, "lb"),
  17664. name: "Front",
  17665. image: {
  17666. source: "./media/characters/elise/front.svg",
  17667. extra: 276 / 271
  17668. }
  17669. },
  17670. },
  17671. [
  17672. {
  17673. name: "Normal",
  17674. height: math.unit(6 + 2 / 12, "feet"),
  17675. default: true
  17676. },
  17677. ]
  17678. ))
  17679. characterMakers.push(() => makeCharacter(
  17680. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17681. {
  17682. front: {
  17683. height: math.unit(5 + 10 / 12, "feet"),
  17684. weight: math.unit(210, "lb"),
  17685. name: "Front",
  17686. image: {
  17687. source: "./media/characters/glade/front.svg",
  17688. extra: 258 / 247,
  17689. bottom: 0.008
  17690. }
  17691. },
  17692. },
  17693. [
  17694. {
  17695. name: "Normal",
  17696. height: math.unit(5 + 10 / 12, "feet"),
  17697. default: true
  17698. },
  17699. ]
  17700. ))
  17701. characterMakers.push(() => makeCharacter(
  17702. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17703. {
  17704. front: {
  17705. height: math.unit(5 + 10 / 12, "feet"),
  17706. weight: math.unit(129, "lb"),
  17707. name: "Front",
  17708. image: {
  17709. source: "./media/characters/rina/front.svg",
  17710. extra: 266 / 255,
  17711. bottom: 0.005
  17712. }
  17713. },
  17714. },
  17715. [
  17716. {
  17717. name: "Normal",
  17718. height: math.unit(5 + 10 / 12, "feet"),
  17719. default: true
  17720. },
  17721. ]
  17722. ))
  17723. characterMakers.push(() => makeCharacter(
  17724. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17725. {
  17726. front: {
  17727. height: math.unit(6 + 1 / 12, "feet"),
  17728. weight: math.unit(192, "lb"),
  17729. name: "Front",
  17730. image: {
  17731. source: "./media/characters/veronica/front.svg",
  17732. extra: 319 / 309,
  17733. bottom: 0.005
  17734. }
  17735. },
  17736. },
  17737. [
  17738. {
  17739. name: "Normal",
  17740. height: math.unit(6 + 1 / 12, "feet"),
  17741. default: true
  17742. },
  17743. ]
  17744. ))
  17745. characterMakers.push(() => makeCharacter(
  17746. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17747. {
  17748. front: {
  17749. height: math.unit(9 + 3 / 12, "feet"),
  17750. weight: math.unit(1100, "lb"),
  17751. name: "Front",
  17752. image: {
  17753. source: "./media/characters/braxton/front.svg",
  17754. extra: 1057 / 984,
  17755. bottom: 0.05
  17756. }
  17757. },
  17758. },
  17759. [
  17760. {
  17761. name: "Normal",
  17762. height: math.unit(9 + 3 / 12, "feet")
  17763. },
  17764. {
  17765. name: "Giant",
  17766. height: math.unit(300, "feet"),
  17767. default: true
  17768. },
  17769. {
  17770. name: "Macro",
  17771. height: math.unit(700, "feet")
  17772. },
  17773. {
  17774. name: "Megamacro",
  17775. height: math.unit(6000, "feet")
  17776. },
  17777. ]
  17778. ))
  17779. characterMakers.push(() => makeCharacter(
  17780. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17781. {
  17782. front: {
  17783. height: math.unit(6 + 7 / 12, "feet"),
  17784. weight: math.unit(150, "lb"),
  17785. name: "Front",
  17786. image: {
  17787. source: "./media/characters/blue-feyonics/front.svg",
  17788. extra: 1403 / 1306,
  17789. bottom: 0.047
  17790. }
  17791. },
  17792. },
  17793. [
  17794. {
  17795. name: "Normal",
  17796. height: math.unit(6 + 7 / 12, "feet"),
  17797. default: true
  17798. },
  17799. ]
  17800. ))
  17801. characterMakers.push(() => makeCharacter(
  17802. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17803. {
  17804. front: {
  17805. height: math.unit(1.8, "meters"),
  17806. weight: math.unit(60, "kg"),
  17807. name: "Front",
  17808. image: {
  17809. source: "./media/characters/maxwell/front.svg",
  17810. extra: 2060 / 1873
  17811. }
  17812. },
  17813. },
  17814. [
  17815. {
  17816. name: "Micro",
  17817. height: math.unit(1, "mm")
  17818. },
  17819. {
  17820. name: "Normal",
  17821. height: math.unit(1.8, "meter"),
  17822. default: true
  17823. },
  17824. {
  17825. name: "Macro",
  17826. height: math.unit(30, "meters")
  17827. },
  17828. {
  17829. name: "Megamacro",
  17830. height: math.unit(10, "km")
  17831. },
  17832. ]
  17833. ))
  17834. characterMakers.push(() => makeCharacter(
  17835. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17836. {
  17837. front: {
  17838. height: math.unit(6, "feet"),
  17839. weight: math.unit(150, "lb"),
  17840. name: "Front",
  17841. image: {
  17842. source: "./media/characters/jack/front.svg",
  17843. extra: 1754 / 1640,
  17844. bottom: 0.01
  17845. }
  17846. },
  17847. },
  17848. [
  17849. {
  17850. name: "Normal",
  17851. height: math.unit(80000, "feet"),
  17852. default: true
  17853. },
  17854. {
  17855. name: "Max size",
  17856. height: math.unit(10, "lightyears")
  17857. },
  17858. ]
  17859. ))
  17860. characterMakers.push(() => makeCharacter(
  17861. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17862. {
  17863. urban: {
  17864. height: math.unit(5, "feet"),
  17865. weight: math.unit(240, "lb"),
  17866. name: "Urban",
  17867. image: {
  17868. source: "./media/characters/cafat/urban.svg",
  17869. extra: 1223/1126,
  17870. bottom: 205/1428
  17871. }
  17872. },
  17873. summer: {
  17874. height: math.unit(5, "feet"),
  17875. weight: math.unit(240, "lb"),
  17876. name: "Summer",
  17877. image: {
  17878. source: "./media/characters/cafat/summer.svg",
  17879. extra: 1223/1126,
  17880. bottom: 205/1428
  17881. }
  17882. },
  17883. winter: {
  17884. height: math.unit(5, "feet"),
  17885. weight: math.unit(240, "lb"),
  17886. name: "Winter",
  17887. image: {
  17888. source: "./media/characters/cafat/winter.svg",
  17889. extra: 1223/1126,
  17890. bottom: 205/1428
  17891. }
  17892. },
  17893. lingerie: {
  17894. height: math.unit(5, "feet"),
  17895. weight: math.unit(240, "lb"),
  17896. name: "Lingerie",
  17897. image: {
  17898. source: "./media/characters/cafat/lingerie.svg",
  17899. extra: 1223/1126,
  17900. bottom: 205/1428
  17901. }
  17902. },
  17903. upright: {
  17904. height: math.unit(6.3, "feet"),
  17905. weight: math.unit(240, "lb"),
  17906. name: "Upright",
  17907. image: {
  17908. source: "./media/characters/cafat/upright.svg",
  17909. bottom: 0.01
  17910. }
  17911. },
  17912. uprightFull: {
  17913. height: math.unit(6.3, "feet"),
  17914. weight: math.unit(240, "lb"),
  17915. name: "Upright (Full)",
  17916. image: {
  17917. source: "./media/characters/cafat/upright-full.svg",
  17918. bottom: 0.01
  17919. }
  17920. },
  17921. },
  17922. [
  17923. {
  17924. name: "Small",
  17925. height: math.unit(5, "feet"),
  17926. default: true
  17927. },
  17928. {
  17929. name: "Large",
  17930. height: math.unit(13, "feet")
  17931. },
  17932. ]
  17933. ))
  17934. characterMakers.push(() => makeCharacter(
  17935. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17936. {
  17937. front: {
  17938. height: math.unit(6, "feet"),
  17939. weight: math.unit(150, "lb"),
  17940. name: "Front",
  17941. image: {
  17942. source: "./media/characters/verin-raharra/front.svg",
  17943. extra: 5019 / 4835,
  17944. bottom: 0.023
  17945. }
  17946. },
  17947. },
  17948. [
  17949. {
  17950. name: "Normal",
  17951. height: math.unit(7 + 5 / 12, "feet"),
  17952. default: true
  17953. },
  17954. {
  17955. name: "Upsized",
  17956. height: math.unit(20, "feet")
  17957. },
  17958. ]
  17959. ))
  17960. characterMakers.push(() => makeCharacter(
  17961. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17962. {
  17963. front: {
  17964. height: math.unit(7, "feet"),
  17965. weight: math.unit(230, "lb"),
  17966. name: "Front",
  17967. image: {
  17968. source: "./media/characters/nakata/front.svg",
  17969. extra: 1.005,
  17970. bottom: 0.01
  17971. }
  17972. },
  17973. },
  17974. [
  17975. {
  17976. name: "Normal",
  17977. height: math.unit(7, "feet"),
  17978. default: true
  17979. },
  17980. {
  17981. name: "Big",
  17982. height: math.unit(14, "feet")
  17983. },
  17984. {
  17985. name: "Macro",
  17986. height: math.unit(400, "feet")
  17987. },
  17988. ]
  17989. ))
  17990. characterMakers.push(() => makeCharacter(
  17991. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17992. {
  17993. front: {
  17994. height: math.unit(4.91, "feet"),
  17995. weight: math.unit(100, "lb"),
  17996. name: "Front",
  17997. image: {
  17998. source: "./media/characters/lily/front.svg",
  17999. extra: 1585 / 1415,
  18000. bottom: 0.02
  18001. }
  18002. },
  18003. },
  18004. [
  18005. {
  18006. name: "Normal",
  18007. height: math.unit(4.91, "feet"),
  18008. default: true
  18009. },
  18010. ]
  18011. ))
  18012. characterMakers.push(() => makeCharacter(
  18013. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18014. {
  18015. laying: {
  18016. height: math.unit(4 + 4 / 12, "feet"),
  18017. weight: math.unit(600, "lb"),
  18018. name: "Laying",
  18019. image: {
  18020. source: "./media/characters/sheila/laying.svg",
  18021. extra: 1333 / 1265,
  18022. bottom: 0.16
  18023. }
  18024. },
  18025. },
  18026. [
  18027. {
  18028. name: "Normal",
  18029. height: math.unit(4 + 4 / 12, "feet"),
  18030. default: true
  18031. },
  18032. ]
  18033. ))
  18034. characterMakers.push(() => makeCharacter(
  18035. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18036. {
  18037. front: {
  18038. height: math.unit(6, "feet"),
  18039. weight: math.unit(190, "lb"),
  18040. name: "Front",
  18041. image: {
  18042. source: "./media/characters/sax/front.svg",
  18043. extra: 1187 / 973,
  18044. bottom: 0.042
  18045. }
  18046. },
  18047. },
  18048. [
  18049. {
  18050. name: "Micro",
  18051. height: math.unit(4, "inches"),
  18052. default: true
  18053. },
  18054. ]
  18055. ))
  18056. characterMakers.push(() => makeCharacter(
  18057. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18058. {
  18059. front: {
  18060. height: math.unit(6, "feet"),
  18061. weight: math.unit(150, "lb"),
  18062. name: "Front",
  18063. image: {
  18064. source: "./media/characters/pandora/front.svg",
  18065. extra: 2720 / 2556,
  18066. bottom: 0.015
  18067. }
  18068. },
  18069. back: {
  18070. height: math.unit(6, "feet"),
  18071. weight: math.unit(150, "lb"),
  18072. name: "Back",
  18073. image: {
  18074. source: "./media/characters/pandora/back.svg",
  18075. extra: 2720 / 2556,
  18076. bottom: 0.01
  18077. }
  18078. },
  18079. beans: {
  18080. height: math.unit(6 / 8, "feet"),
  18081. name: "Beans",
  18082. image: {
  18083. source: "./media/characters/pandora/beans.svg"
  18084. }
  18085. },
  18086. collar: {
  18087. height: math.unit(0.31, "feet"),
  18088. name: "Collar",
  18089. image: {
  18090. source: "./media/characters/pandora/collar.svg"
  18091. }
  18092. },
  18093. skirt: {
  18094. height: math.unit(6, "feet"),
  18095. weight: math.unit(150, "lb"),
  18096. name: "Skirt",
  18097. image: {
  18098. source: "./media/characters/pandora/skirt.svg",
  18099. extra: 1622 / 1525,
  18100. bottom: 0.015
  18101. }
  18102. },
  18103. hoodie: {
  18104. height: math.unit(6, "feet"),
  18105. weight: math.unit(150, "lb"),
  18106. name: "Hoodie",
  18107. image: {
  18108. source: "./media/characters/pandora/hoodie.svg",
  18109. extra: 1622 / 1525,
  18110. bottom: 0.015
  18111. }
  18112. },
  18113. casual: {
  18114. height: math.unit(6, "feet"),
  18115. weight: math.unit(150, "lb"),
  18116. name: "Casual",
  18117. image: {
  18118. source: "./media/characters/pandora/casual.svg",
  18119. extra: 1622 / 1525,
  18120. bottom: 0.015
  18121. }
  18122. },
  18123. },
  18124. [
  18125. {
  18126. name: "Normal",
  18127. height: math.unit(6, "feet")
  18128. },
  18129. {
  18130. name: "Big Steppy",
  18131. height: math.unit(1, "km"),
  18132. default: true
  18133. },
  18134. {
  18135. name: "Galactic Steppy",
  18136. height: math.unit(2, "gigameters")
  18137. },
  18138. ]
  18139. ))
  18140. characterMakers.push(() => makeCharacter(
  18141. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18142. {
  18143. side: {
  18144. height: math.unit(10, "feet"),
  18145. weight: math.unit(800, "kg"),
  18146. name: "Side",
  18147. image: {
  18148. source: "./media/characters/venio-darcony/side.svg",
  18149. extra: 1373 / 1003,
  18150. bottom: 0.037
  18151. }
  18152. },
  18153. front: {
  18154. height: math.unit(19, "feet"),
  18155. weight: math.unit(800, "kg"),
  18156. name: "Front",
  18157. image: {
  18158. source: "./media/characters/venio-darcony/front.svg"
  18159. }
  18160. },
  18161. back: {
  18162. height: math.unit(19, "feet"),
  18163. weight: math.unit(800, "kg"),
  18164. name: "Back",
  18165. image: {
  18166. source: "./media/characters/venio-darcony/back.svg"
  18167. }
  18168. },
  18169. sideNsfw: {
  18170. height: math.unit(10, "feet"),
  18171. weight: math.unit(800, "kg"),
  18172. name: "Side (NSFW)",
  18173. image: {
  18174. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18175. extra: 1373 / 1003,
  18176. bottom: 0.037
  18177. }
  18178. },
  18179. frontNsfw: {
  18180. height: math.unit(19, "feet"),
  18181. weight: math.unit(800, "kg"),
  18182. name: "Front (NSFW)",
  18183. image: {
  18184. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18185. }
  18186. },
  18187. backNsfw: {
  18188. height: math.unit(19, "feet"),
  18189. weight: math.unit(800, "kg"),
  18190. name: "Back (NSFW)",
  18191. image: {
  18192. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18193. }
  18194. },
  18195. sideArmored: {
  18196. height: math.unit(10, "feet"),
  18197. weight: math.unit(800, "kg"),
  18198. name: "Side (Armored)",
  18199. image: {
  18200. source: "./media/characters/venio-darcony/side-armored.svg",
  18201. extra: 1373 / 1003,
  18202. bottom: 0.037
  18203. }
  18204. },
  18205. frontArmored: {
  18206. height: math.unit(19, "feet"),
  18207. weight: math.unit(900, "kg"),
  18208. name: "Front (Armored)",
  18209. image: {
  18210. source: "./media/characters/venio-darcony/front-armored.svg"
  18211. }
  18212. },
  18213. backArmored: {
  18214. height: math.unit(19, "feet"),
  18215. weight: math.unit(900, "kg"),
  18216. name: "Back (Armored)",
  18217. image: {
  18218. source: "./media/characters/venio-darcony/back-armored.svg"
  18219. }
  18220. },
  18221. sword: {
  18222. height: math.unit(10, "feet"),
  18223. weight: math.unit(50, "lb"),
  18224. name: "Sword",
  18225. image: {
  18226. source: "./media/characters/venio-darcony/sword.svg"
  18227. }
  18228. },
  18229. },
  18230. [
  18231. {
  18232. name: "Normal",
  18233. height: math.unit(10, "feet")
  18234. },
  18235. {
  18236. name: "Macro",
  18237. height: math.unit(130, "feet"),
  18238. default: true
  18239. },
  18240. {
  18241. name: "Macro+",
  18242. height: math.unit(240, "feet")
  18243. },
  18244. ]
  18245. ))
  18246. characterMakers.push(() => makeCharacter(
  18247. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18248. {
  18249. front: {
  18250. height: math.unit(6, "feet"),
  18251. weight: math.unit(150, "lb"),
  18252. name: "Front",
  18253. image: {
  18254. source: "./media/characters/veski/front.svg",
  18255. extra: 1299 / 1225,
  18256. bottom: 0.04
  18257. }
  18258. },
  18259. back: {
  18260. height: math.unit(6, "feet"),
  18261. weight: math.unit(150, "lb"),
  18262. name: "Back",
  18263. image: {
  18264. source: "./media/characters/veski/back.svg",
  18265. extra: 1299 / 1225,
  18266. bottom: 0.008
  18267. }
  18268. },
  18269. maw: {
  18270. height: math.unit(1.5 * 1.21, "feet"),
  18271. name: "Maw",
  18272. image: {
  18273. source: "./media/characters/veski/maw.svg"
  18274. }
  18275. },
  18276. },
  18277. [
  18278. {
  18279. name: "Macro",
  18280. height: math.unit(2, "km"),
  18281. default: true
  18282. },
  18283. ]
  18284. ))
  18285. characterMakers.push(() => makeCharacter(
  18286. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18287. {
  18288. front: {
  18289. height: math.unit(5 + 7 / 12, "feet"),
  18290. name: "Front",
  18291. image: {
  18292. source: "./media/characters/isabelle/front.svg",
  18293. extra: 2130 / 1976,
  18294. bottom: 0.05
  18295. }
  18296. },
  18297. },
  18298. [
  18299. {
  18300. name: "Supermicro",
  18301. height: math.unit(10, "micrometers")
  18302. },
  18303. {
  18304. name: "Micro",
  18305. height: math.unit(1, "inch")
  18306. },
  18307. {
  18308. name: "Tiny",
  18309. height: math.unit(5, "inches")
  18310. },
  18311. {
  18312. name: "Standard",
  18313. height: math.unit(5 + 7 / 12, "inches")
  18314. },
  18315. {
  18316. name: "Macro",
  18317. height: math.unit(80, "meters"),
  18318. default: true
  18319. },
  18320. {
  18321. name: "Megamacro",
  18322. height: math.unit(250, "meters")
  18323. },
  18324. {
  18325. name: "Gigamacro",
  18326. height: math.unit(5, "km")
  18327. },
  18328. {
  18329. name: "Cosmic",
  18330. height: math.unit(2.5e6, "miles")
  18331. },
  18332. ]
  18333. ))
  18334. characterMakers.push(() => makeCharacter(
  18335. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18336. {
  18337. front: {
  18338. height: math.unit(6, "feet"),
  18339. weight: math.unit(150, "lb"),
  18340. name: "Front",
  18341. image: {
  18342. source: "./media/characters/hanzo/front.svg",
  18343. extra: 374 / 344,
  18344. bottom: 0.02
  18345. }
  18346. },
  18347. },
  18348. [
  18349. {
  18350. name: "Normal",
  18351. height: math.unit(8, "feet"),
  18352. default: true
  18353. },
  18354. ]
  18355. ))
  18356. characterMakers.push(() => makeCharacter(
  18357. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18358. {
  18359. front: {
  18360. height: math.unit(7, "feet"),
  18361. weight: math.unit(130, "lb"),
  18362. name: "Front",
  18363. image: {
  18364. source: "./media/characters/anna/front.svg",
  18365. extra: 169 / 145,
  18366. bottom: 0.06
  18367. }
  18368. },
  18369. full: {
  18370. height: math.unit(4.96, "feet"),
  18371. weight: math.unit(220, "lb"),
  18372. name: "Full",
  18373. image: {
  18374. source: "./media/characters/anna/full.svg",
  18375. extra: 138 / 114,
  18376. bottom: 0.15
  18377. }
  18378. },
  18379. tongue: {
  18380. height: math.unit(2.53, "feet"),
  18381. name: "Tongue",
  18382. image: {
  18383. source: "./media/characters/anna/tongue.svg"
  18384. }
  18385. },
  18386. },
  18387. [
  18388. {
  18389. name: "Normal",
  18390. height: math.unit(7, "feet"),
  18391. default: true
  18392. },
  18393. ]
  18394. ))
  18395. characterMakers.push(() => makeCharacter(
  18396. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18397. {
  18398. front: {
  18399. height: math.unit(7, "feet"),
  18400. weight: math.unit(150, "lb"),
  18401. name: "Front",
  18402. image: {
  18403. source: "./media/characters/ian-corvid/front.svg",
  18404. extra: 150 / 142,
  18405. bottom: 0.02
  18406. }
  18407. },
  18408. back: {
  18409. height: math.unit(7, "feet"),
  18410. weight: math.unit(150, "lb"),
  18411. name: "Back",
  18412. image: {
  18413. source: "./media/characters/ian-corvid/back.svg",
  18414. extra: 150 / 143,
  18415. bottom: 0.01
  18416. }
  18417. },
  18418. stomping: {
  18419. height: math.unit(7, "feet"),
  18420. weight: math.unit(150, "lb"),
  18421. name: "Stomping",
  18422. image: {
  18423. source: "./media/characters/ian-corvid/stomping.svg",
  18424. extra: 76 / 72
  18425. }
  18426. },
  18427. sitting: {
  18428. height: math.unit(7 / 1.8, "feet"),
  18429. weight: math.unit(150, "lb"),
  18430. name: "Sitting",
  18431. image: {
  18432. source: "./media/characters/ian-corvid/sitting.svg",
  18433. extra: 1400 / 1269,
  18434. bottom: 0.15
  18435. }
  18436. },
  18437. },
  18438. [
  18439. {
  18440. name: "Tiny Microw",
  18441. height: math.unit(1, "inch")
  18442. },
  18443. {
  18444. name: "Microw",
  18445. height: math.unit(6, "inches")
  18446. },
  18447. {
  18448. name: "Crow",
  18449. height: math.unit(7 + 1 / 12, "feet"),
  18450. default: true
  18451. },
  18452. {
  18453. name: "Macrow",
  18454. height: math.unit(176, "feet")
  18455. },
  18456. ]
  18457. ))
  18458. characterMakers.push(() => makeCharacter(
  18459. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18460. {
  18461. front: {
  18462. height: math.unit(5 + 7 / 12, "feet"),
  18463. weight: math.unit(147, "lb"),
  18464. name: "Front",
  18465. image: {
  18466. source: "./media/characters/natalie-kellon/front.svg",
  18467. extra: 1214 / 1141,
  18468. bottom: 0.02
  18469. }
  18470. },
  18471. },
  18472. [
  18473. {
  18474. name: "Micro",
  18475. height: math.unit(1 / 16, "inch")
  18476. },
  18477. {
  18478. name: "Tiny",
  18479. height: math.unit(4, "inches")
  18480. },
  18481. {
  18482. name: "Normal",
  18483. height: math.unit(5 + 7 / 12, "feet"),
  18484. default: true
  18485. },
  18486. {
  18487. name: "Amazon",
  18488. height: math.unit(12, "feet")
  18489. },
  18490. {
  18491. name: "Giantess",
  18492. height: math.unit(160, "meters")
  18493. },
  18494. {
  18495. name: "Titaness",
  18496. height: math.unit(800, "meters")
  18497. },
  18498. ]
  18499. ))
  18500. characterMakers.push(() => makeCharacter(
  18501. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18502. {
  18503. front: {
  18504. height: math.unit(6, "feet"),
  18505. weight: math.unit(150, "lb"),
  18506. name: "Front",
  18507. image: {
  18508. source: "./media/characters/alluria/front.svg",
  18509. extra: 806 / 738,
  18510. bottom: 0.01
  18511. }
  18512. },
  18513. side: {
  18514. height: math.unit(6, "feet"),
  18515. weight: math.unit(150, "lb"),
  18516. name: "Side",
  18517. image: {
  18518. source: "./media/characters/alluria/side.svg",
  18519. extra: 800 / 750,
  18520. }
  18521. },
  18522. back: {
  18523. height: math.unit(6, "feet"),
  18524. weight: math.unit(150, "lb"),
  18525. name: "Back",
  18526. image: {
  18527. source: "./media/characters/alluria/back.svg",
  18528. extra: 806 / 738,
  18529. }
  18530. },
  18531. frontMaid: {
  18532. height: math.unit(6, "feet"),
  18533. weight: math.unit(150, "lb"),
  18534. name: "Front (Maid)",
  18535. image: {
  18536. source: "./media/characters/alluria/front-maid.svg",
  18537. extra: 806 / 738,
  18538. bottom: 0.01
  18539. }
  18540. },
  18541. sideMaid: {
  18542. height: math.unit(6, "feet"),
  18543. weight: math.unit(150, "lb"),
  18544. name: "Side (Maid)",
  18545. image: {
  18546. source: "./media/characters/alluria/side-maid.svg",
  18547. extra: 800 / 750,
  18548. bottom: 0.005
  18549. }
  18550. },
  18551. backMaid: {
  18552. height: math.unit(6, "feet"),
  18553. weight: math.unit(150, "lb"),
  18554. name: "Back (Maid)",
  18555. image: {
  18556. source: "./media/characters/alluria/back-maid.svg",
  18557. extra: 806 / 738,
  18558. }
  18559. },
  18560. },
  18561. [
  18562. {
  18563. name: "Micro",
  18564. height: math.unit(6, "inches"),
  18565. default: true
  18566. },
  18567. ]
  18568. ))
  18569. characterMakers.push(() => makeCharacter(
  18570. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18571. {
  18572. front: {
  18573. height: math.unit(6, "feet"),
  18574. weight: math.unit(150, "lb"),
  18575. name: "Front",
  18576. image: {
  18577. source: "./media/characters/kyle/front.svg",
  18578. extra: 1069 / 962,
  18579. bottom: 77.228 / 1727.45
  18580. }
  18581. },
  18582. },
  18583. [
  18584. {
  18585. name: "Macro",
  18586. height: math.unit(150, "feet"),
  18587. default: true
  18588. },
  18589. ]
  18590. ))
  18591. characterMakers.push(() => makeCharacter(
  18592. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18593. {
  18594. front: {
  18595. height: math.unit(6, "feet"),
  18596. weight: math.unit(300, "lb"),
  18597. name: "Front",
  18598. image: {
  18599. source: "./media/characters/duncan/front.svg",
  18600. extra: 1650 / 1482,
  18601. bottom: 0.05
  18602. }
  18603. },
  18604. },
  18605. [
  18606. {
  18607. name: "Macro",
  18608. height: math.unit(100, "feet"),
  18609. default: true
  18610. },
  18611. ]
  18612. ))
  18613. characterMakers.push(() => makeCharacter(
  18614. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18615. {
  18616. front: {
  18617. height: math.unit(5 + 4 / 12, "feet"),
  18618. weight: math.unit(220, "lb"),
  18619. name: "Front",
  18620. image: {
  18621. source: "./media/characters/memory/front.svg",
  18622. extra: 3641 / 3545,
  18623. bottom: 0.03
  18624. }
  18625. },
  18626. back: {
  18627. height: math.unit(5 + 4 / 12, "feet"),
  18628. weight: math.unit(220, "lb"),
  18629. name: "Back",
  18630. image: {
  18631. source: "./media/characters/memory/back.svg",
  18632. extra: 3641 / 3545,
  18633. bottom: 0.025
  18634. }
  18635. },
  18636. frontSkirt: {
  18637. height: math.unit(5 + 4 / 12, "feet"),
  18638. weight: math.unit(220, "lb"),
  18639. name: "Front (Skirt)",
  18640. image: {
  18641. source: "./media/characters/memory/front-skirt.svg",
  18642. extra: 3641 / 3545,
  18643. bottom: 0.03
  18644. }
  18645. },
  18646. frontDress: {
  18647. height: math.unit(5 + 4 / 12, "feet"),
  18648. weight: math.unit(220, "lb"),
  18649. name: "Front (Dress)",
  18650. image: {
  18651. source: "./media/characters/memory/front-dress.svg",
  18652. extra: 3641 / 3545,
  18653. bottom: 0.03
  18654. }
  18655. },
  18656. },
  18657. [
  18658. {
  18659. name: "Micro",
  18660. height: math.unit(6, "inches"),
  18661. default: true
  18662. },
  18663. {
  18664. name: "Normal",
  18665. height: math.unit(5 + 4 / 12, "feet")
  18666. },
  18667. ]
  18668. ))
  18669. characterMakers.push(() => makeCharacter(
  18670. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18671. {
  18672. front: {
  18673. height: math.unit(4 + 11 / 12, "feet"),
  18674. weight: math.unit(100, "lb"),
  18675. name: "Front",
  18676. image: {
  18677. source: "./media/characters/luno/front.svg",
  18678. extra: 1535 / 1487,
  18679. bottom: 0.03
  18680. }
  18681. },
  18682. },
  18683. [
  18684. {
  18685. name: "Micro",
  18686. height: math.unit(3, "inches")
  18687. },
  18688. {
  18689. name: "Normal",
  18690. height: math.unit(4 + 11 / 12, "feet"),
  18691. default: true
  18692. },
  18693. {
  18694. name: "Macro",
  18695. height: math.unit(300, "feet")
  18696. },
  18697. {
  18698. name: "Megamacro",
  18699. height: math.unit(700, "miles")
  18700. },
  18701. ]
  18702. ))
  18703. characterMakers.push(() => makeCharacter(
  18704. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18705. {
  18706. front: {
  18707. height: math.unit(6 + 2 / 12, "feet"),
  18708. weight: math.unit(170, "lb"),
  18709. name: "Front",
  18710. image: {
  18711. source: "./media/characters/jamesy/front.svg",
  18712. extra: 440 / 382,
  18713. bottom: 0.005
  18714. }
  18715. },
  18716. },
  18717. [
  18718. {
  18719. name: "Micro",
  18720. height: math.unit(3, "inches")
  18721. },
  18722. {
  18723. name: "Normal",
  18724. height: math.unit(6 + 2 / 12, "feet"),
  18725. default: true
  18726. },
  18727. {
  18728. name: "Macro",
  18729. height: math.unit(300, "feet")
  18730. },
  18731. {
  18732. name: "Megamacro",
  18733. height: math.unit(700, "miles")
  18734. },
  18735. ]
  18736. ))
  18737. characterMakers.push(() => makeCharacter(
  18738. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18739. {
  18740. front: {
  18741. height: math.unit(6, "feet"),
  18742. weight: math.unit(160, "lb"),
  18743. name: "Front",
  18744. image: {
  18745. source: "./media/characters/mark/front.svg",
  18746. extra: 3300 / 3100,
  18747. bottom: 136.42 / 3440.47
  18748. }
  18749. },
  18750. },
  18751. [
  18752. {
  18753. name: "Macro",
  18754. height: math.unit(120, "meters")
  18755. },
  18756. {
  18757. name: "Bigger Macro",
  18758. height: math.unit(350, "meters")
  18759. },
  18760. {
  18761. name: "Megamacro",
  18762. height: math.unit(8, "km"),
  18763. default: true
  18764. },
  18765. {
  18766. name: "Continental",
  18767. height: math.unit(4550, "km")
  18768. },
  18769. {
  18770. name: "Planetary",
  18771. height: math.unit(65000, "km")
  18772. },
  18773. ]
  18774. ))
  18775. characterMakers.push(() => makeCharacter(
  18776. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18777. {
  18778. front: {
  18779. height: math.unit(6, "feet"),
  18780. weight: math.unit(400, "lb"),
  18781. name: "Front",
  18782. image: {
  18783. source: "./media/characters/mac/front.svg",
  18784. extra: 1048 / 987.7,
  18785. bottom: 60 / 1107.6,
  18786. }
  18787. },
  18788. },
  18789. [
  18790. {
  18791. name: "Macro",
  18792. height: math.unit(500, "feet"),
  18793. default: true
  18794. },
  18795. ]
  18796. ))
  18797. characterMakers.push(() => makeCharacter(
  18798. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18799. {
  18800. front: {
  18801. height: math.unit(5 + 2 / 12, "feet"),
  18802. weight: math.unit(190, "lb"),
  18803. name: "Front",
  18804. image: {
  18805. source: "./media/characters/bari/front.svg",
  18806. extra: 3156 / 2880,
  18807. bottom: 0.03
  18808. }
  18809. },
  18810. back: {
  18811. height: math.unit(5 + 2 / 12, "feet"),
  18812. weight: math.unit(190, "lb"),
  18813. name: "Back",
  18814. image: {
  18815. source: "./media/characters/bari/back.svg",
  18816. extra: 3260 / 2834,
  18817. bottom: 0.025
  18818. }
  18819. },
  18820. frontPlush: {
  18821. height: math.unit(5 + 2 / 12, "feet"),
  18822. weight: math.unit(190, "lb"),
  18823. name: "Front (Plush)",
  18824. image: {
  18825. source: "./media/characters/bari/front-plush.svg",
  18826. extra: 1112 / 1061,
  18827. bottom: 0.002
  18828. }
  18829. },
  18830. },
  18831. [
  18832. {
  18833. name: "Micro",
  18834. height: math.unit(3, "inches")
  18835. },
  18836. {
  18837. name: "Normal",
  18838. height: math.unit(5 + 2 / 12, "feet"),
  18839. default: true
  18840. },
  18841. {
  18842. name: "Macro",
  18843. height: math.unit(20, "feet")
  18844. },
  18845. ]
  18846. ))
  18847. characterMakers.push(() => makeCharacter(
  18848. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18849. {
  18850. front: {
  18851. height: math.unit(6 + 1 / 12, "feet"),
  18852. weight: math.unit(275, "lb"),
  18853. name: "Front",
  18854. image: {
  18855. source: "./media/characters/hunter-misha-raven/front.svg"
  18856. }
  18857. },
  18858. },
  18859. [
  18860. {
  18861. name: "Mortal",
  18862. height: math.unit(6 + 1 / 12, "feet")
  18863. },
  18864. {
  18865. name: "Divine",
  18866. height: math.unit(1.12134e34, "parsecs"),
  18867. default: true
  18868. },
  18869. ]
  18870. ))
  18871. characterMakers.push(() => makeCharacter(
  18872. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18873. {
  18874. front: {
  18875. height: math.unit(6 + 3 / 12, "feet"),
  18876. weight: math.unit(220, "lb"),
  18877. name: "Front",
  18878. image: {
  18879. source: "./media/characters/max-calore/front.svg",
  18880. extra: 1700 / 1648,
  18881. bottom: 0.01
  18882. }
  18883. },
  18884. back: {
  18885. height: math.unit(6 + 3 / 12, "feet"),
  18886. weight: math.unit(220, "lb"),
  18887. name: "Back",
  18888. image: {
  18889. source: "./media/characters/max-calore/back.svg",
  18890. extra: 1700 / 1648,
  18891. bottom: 0.01
  18892. }
  18893. },
  18894. },
  18895. [
  18896. {
  18897. name: "Normal",
  18898. height: math.unit(6 + 3 / 12, "feet"),
  18899. default: true
  18900. },
  18901. ]
  18902. ))
  18903. characterMakers.push(() => makeCharacter(
  18904. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18905. {
  18906. side: {
  18907. height: math.unit(2 + 8 / 12, "feet"),
  18908. weight: math.unit(99, "lb"),
  18909. name: "Side",
  18910. image: {
  18911. source: "./media/characters/aspen/side.svg",
  18912. extra: 152 / 138,
  18913. bottom: 0.032
  18914. }
  18915. },
  18916. },
  18917. [
  18918. {
  18919. name: "Normal",
  18920. height: math.unit(2 + 8 / 12, "feet"),
  18921. default: true
  18922. },
  18923. ]
  18924. ))
  18925. characterMakers.push(() => makeCharacter(
  18926. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18927. {
  18928. side: {
  18929. height: math.unit(3 + 2 / 12, "feet"),
  18930. weight: math.unit(224, "lb"),
  18931. name: "Side",
  18932. image: {
  18933. source: "./media/characters/sheila-feral-wolf/side.svg",
  18934. extra: 179 / 166,
  18935. bottom: 0.03
  18936. }
  18937. },
  18938. },
  18939. [
  18940. {
  18941. name: "Normal",
  18942. height: math.unit(3 + 2 / 12, "feet"),
  18943. default: true
  18944. },
  18945. ]
  18946. ))
  18947. characterMakers.push(() => makeCharacter(
  18948. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18949. {
  18950. side: {
  18951. height: math.unit(1 + 9 / 12, "feet"),
  18952. weight: math.unit(38, "lb"),
  18953. name: "Side",
  18954. image: {
  18955. source: "./media/characters/michelle/side.svg",
  18956. extra: 147 / 136.7,
  18957. bottom: 0.03
  18958. }
  18959. },
  18960. },
  18961. [
  18962. {
  18963. name: "Normal",
  18964. height: math.unit(1 + 9 / 12, "feet"),
  18965. default: true
  18966. },
  18967. ]
  18968. ))
  18969. characterMakers.push(() => makeCharacter(
  18970. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18971. {
  18972. front: {
  18973. height: math.unit(1.54, "feet"),
  18974. weight: math.unit(50, "lb"),
  18975. name: "Front",
  18976. image: {
  18977. source: "./media/characters/nino/front.svg"
  18978. }
  18979. },
  18980. },
  18981. [
  18982. {
  18983. name: "Normal",
  18984. height: math.unit(1.54, "feet"),
  18985. default: true
  18986. },
  18987. ]
  18988. ))
  18989. characterMakers.push(() => makeCharacter(
  18990. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18991. {
  18992. front: {
  18993. height: math.unit(1.49, "feet"),
  18994. weight: math.unit(45, "lb"),
  18995. name: "Front",
  18996. image: {
  18997. source: "./media/characters/viola/front.svg"
  18998. }
  18999. },
  19000. },
  19001. [
  19002. {
  19003. name: "Normal",
  19004. height: math.unit(1.49, "feet"),
  19005. default: true
  19006. },
  19007. ]
  19008. ))
  19009. characterMakers.push(() => makeCharacter(
  19010. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19011. {
  19012. front: {
  19013. height: math.unit(6 + 5 / 12, "feet"),
  19014. weight: math.unit(580, "lb"),
  19015. name: "Front",
  19016. image: {
  19017. source: "./media/characters/atlas/front.svg",
  19018. extra: 298.5 / 290,
  19019. bottom: 0.015
  19020. }
  19021. },
  19022. },
  19023. [
  19024. {
  19025. name: "Normal",
  19026. height: math.unit(6 + 5 / 12, "feet"),
  19027. default: true
  19028. },
  19029. ]
  19030. ))
  19031. characterMakers.push(() => makeCharacter(
  19032. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19033. {
  19034. side: {
  19035. height: math.unit(15.6, "inches"),
  19036. weight: math.unit(10, "lb"),
  19037. name: "Side",
  19038. image: {
  19039. source: "./media/characters/davy/side.svg",
  19040. extra: 200 / 170,
  19041. bottom: 0.01
  19042. }
  19043. },
  19044. },
  19045. [
  19046. {
  19047. name: "Normal",
  19048. height: math.unit(15.6, "inches"),
  19049. default: true
  19050. },
  19051. ]
  19052. ))
  19053. characterMakers.push(() => makeCharacter(
  19054. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19055. {
  19056. side: {
  19057. height: math.unit(4 + 8 / 12, "feet"),
  19058. weight: math.unit(166, "lb"),
  19059. name: "Side",
  19060. image: {
  19061. source: "./media/characters/fiona/side.svg",
  19062. extra: 232 / 220,
  19063. bottom: 0.03
  19064. }
  19065. },
  19066. },
  19067. [
  19068. {
  19069. name: "Normal",
  19070. height: math.unit(4 + 8 / 12, "feet"),
  19071. default: true
  19072. },
  19073. ]
  19074. ))
  19075. characterMakers.push(() => makeCharacter(
  19076. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19077. {
  19078. front: {
  19079. height: math.unit(26, "inches"),
  19080. weight: math.unit(35, "lb"),
  19081. name: "Front",
  19082. image: {
  19083. source: "./media/characters/lyla/front.svg",
  19084. bottom: 0.1
  19085. }
  19086. },
  19087. },
  19088. [
  19089. {
  19090. name: "Normal",
  19091. height: math.unit(3, "feet"),
  19092. default: true
  19093. },
  19094. ]
  19095. ))
  19096. characterMakers.push(() => makeCharacter(
  19097. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19098. {
  19099. side: {
  19100. height: math.unit(1.8, "feet"),
  19101. weight: math.unit(44, "lb"),
  19102. name: "Side",
  19103. image: {
  19104. source: "./media/characters/perseus/side.svg",
  19105. bottom: 0.21
  19106. }
  19107. },
  19108. },
  19109. [
  19110. {
  19111. name: "Normal",
  19112. height: math.unit(1.8, "feet"),
  19113. default: true
  19114. },
  19115. ]
  19116. ))
  19117. characterMakers.push(() => makeCharacter(
  19118. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19119. {
  19120. side: {
  19121. height: math.unit(4 + 2 / 12, "feet"),
  19122. weight: math.unit(20, "lb"),
  19123. name: "Side",
  19124. image: {
  19125. source: "./media/characters/remus/side.svg"
  19126. }
  19127. },
  19128. },
  19129. [
  19130. {
  19131. name: "Normal",
  19132. height: math.unit(4 + 2 / 12, "feet"),
  19133. default: true
  19134. },
  19135. ]
  19136. ))
  19137. characterMakers.push(() => makeCharacter(
  19138. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19139. {
  19140. front: {
  19141. height: math.unit(4 + 11 / 12, "feet"),
  19142. weight: math.unit(114, "lb"),
  19143. name: "Front",
  19144. image: {
  19145. source: "./media/characters/raf/front.svg",
  19146. extra: 1504/1339,
  19147. bottom: 26/1530
  19148. }
  19149. },
  19150. side: {
  19151. height: math.unit(4 + 11 / 12, "feet"),
  19152. weight: math.unit(114, "lb"),
  19153. name: "Side",
  19154. image: {
  19155. source: "./media/characters/raf/side.svg",
  19156. extra: 1466/1316,
  19157. bottom: 29/1495
  19158. }
  19159. },
  19160. paw: {
  19161. height: math.unit(1.45, "feet"),
  19162. name: "Paw",
  19163. image: {
  19164. source: "./media/characters/raf/paw.svg"
  19165. },
  19166. extraAttributes: {
  19167. "toeSize": {
  19168. name: "Toe Size",
  19169. power: 2,
  19170. type: "area",
  19171. base: math.unit(0.004, "m^2")
  19172. },
  19173. "padSize": {
  19174. name: "Pad Size",
  19175. power: 2,
  19176. type: "area",
  19177. base: math.unit(0.04, "m^2")
  19178. },
  19179. "footSize": {
  19180. name: "Foot Size",
  19181. power: 2,
  19182. type: "area",
  19183. base: math.unit(0.08, "m^2")
  19184. },
  19185. }
  19186. },
  19187. },
  19188. [
  19189. {
  19190. name: "Micro",
  19191. height: math.unit(2, "inches")
  19192. },
  19193. {
  19194. name: "Normal",
  19195. height: math.unit(4 + 11 / 12, "feet"),
  19196. default: true
  19197. },
  19198. {
  19199. name: "Macro",
  19200. height: math.unit(70, "feet")
  19201. },
  19202. ]
  19203. ))
  19204. characterMakers.push(() => makeCharacter(
  19205. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19206. {
  19207. front: {
  19208. height: math.unit(1.5, "meters"),
  19209. weight: math.unit(68, "kg"),
  19210. name: "Front",
  19211. image: {
  19212. source: "./media/characters/liam-einarr/front.svg",
  19213. extra: 2822 / 2666
  19214. }
  19215. },
  19216. back: {
  19217. height: math.unit(1.5, "meters"),
  19218. weight: math.unit(68, "kg"),
  19219. name: "Back",
  19220. image: {
  19221. source: "./media/characters/liam-einarr/back.svg",
  19222. extra: 2822 / 2666,
  19223. bottom: 0.015
  19224. }
  19225. },
  19226. },
  19227. [
  19228. {
  19229. name: "Normal",
  19230. height: math.unit(1.5, "meters"),
  19231. default: true
  19232. },
  19233. {
  19234. name: "Macro",
  19235. height: math.unit(150, "meters")
  19236. },
  19237. {
  19238. name: "Megamacro",
  19239. height: math.unit(35, "km")
  19240. },
  19241. ]
  19242. ))
  19243. characterMakers.push(() => makeCharacter(
  19244. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19245. {
  19246. front: {
  19247. height: math.unit(6, "feet"),
  19248. weight: math.unit(75, "kg"),
  19249. name: "Front",
  19250. image: {
  19251. source: "./media/characters/linda/front.svg",
  19252. extra: 930 / 874,
  19253. bottom: 0.004
  19254. }
  19255. },
  19256. },
  19257. [
  19258. {
  19259. name: "Normal",
  19260. height: math.unit(6, "feet"),
  19261. default: true
  19262. },
  19263. ]
  19264. ))
  19265. characterMakers.push(() => makeCharacter(
  19266. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19267. {
  19268. front: {
  19269. height: math.unit(6 + 8 / 12, "feet"),
  19270. weight: math.unit(220, "lb"),
  19271. name: "Front",
  19272. image: {
  19273. source: "./media/characters/caylex/front.svg",
  19274. extra: 821 / 772,
  19275. bottom: 0.07
  19276. }
  19277. },
  19278. back: {
  19279. height: math.unit(6 + 8 / 12, "feet"),
  19280. weight: math.unit(220, "lb"),
  19281. name: "Back",
  19282. image: {
  19283. source: "./media/characters/caylex/back.svg",
  19284. extra: 821 / 772,
  19285. bottom: 0.022
  19286. }
  19287. },
  19288. hand: {
  19289. height: math.unit(1.25, "feet"),
  19290. name: "Hand",
  19291. image: {
  19292. source: "./media/characters/caylex/hand.svg"
  19293. }
  19294. },
  19295. foot: {
  19296. height: math.unit(1.6, "feet"),
  19297. name: "Foot",
  19298. image: {
  19299. source: "./media/characters/caylex/foot.svg"
  19300. }
  19301. },
  19302. armored: {
  19303. height: math.unit(6 + 8 / 12, "feet"),
  19304. weight: math.unit(250, "lb"),
  19305. name: "Armored",
  19306. image: {
  19307. source: "./media/characters/caylex/armored.svg",
  19308. extra: 1420 / 1310,
  19309. bottom: 0.045
  19310. }
  19311. },
  19312. },
  19313. [
  19314. {
  19315. name: "Normal",
  19316. height: math.unit(6 + 8 / 12, "feet"),
  19317. default: true
  19318. },
  19319. {
  19320. name: "Normal+",
  19321. height: math.unit(12, "feet")
  19322. },
  19323. ]
  19324. ))
  19325. characterMakers.push(() => makeCharacter(
  19326. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19327. {
  19328. front: {
  19329. height: math.unit(7 + 6 / 12, "feet"),
  19330. weight: math.unit(288, "lb"),
  19331. name: "Front",
  19332. image: {
  19333. source: "./media/characters/alana/front.svg",
  19334. extra: 679 / 653,
  19335. bottom: 22.5 / 701
  19336. }
  19337. },
  19338. },
  19339. [
  19340. {
  19341. name: "Normal",
  19342. height: math.unit(7 + 6 / 12, "feet")
  19343. },
  19344. {
  19345. name: "Large",
  19346. height: math.unit(50, "feet")
  19347. },
  19348. {
  19349. name: "Macro",
  19350. height: math.unit(100, "feet"),
  19351. default: true
  19352. },
  19353. {
  19354. name: "Macro+",
  19355. height: math.unit(200, "feet")
  19356. },
  19357. ]
  19358. ))
  19359. characterMakers.push(() => makeCharacter(
  19360. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19361. {
  19362. front: {
  19363. height: math.unit(6 + 1 / 12, "feet"),
  19364. weight: math.unit(210, "lb"),
  19365. name: "Front",
  19366. image: {
  19367. source: "./media/characters/hasani/front.svg",
  19368. extra: 244 / 232,
  19369. bottom: 0.01
  19370. }
  19371. },
  19372. back: {
  19373. height: math.unit(6 + 1 / 12, "feet"),
  19374. weight: math.unit(210, "lb"),
  19375. name: "Back",
  19376. image: {
  19377. source: "./media/characters/hasani/back.svg",
  19378. extra: 244 / 232,
  19379. bottom: 0.01
  19380. }
  19381. },
  19382. },
  19383. [
  19384. {
  19385. name: "Normal",
  19386. height: math.unit(6 + 1 / 12, "feet")
  19387. },
  19388. {
  19389. name: "Macro",
  19390. height: math.unit(175, "feet"),
  19391. default: true
  19392. },
  19393. ]
  19394. ))
  19395. characterMakers.push(() => makeCharacter(
  19396. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19397. {
  19398. front: {
  19399. height: math.unit(1.82, "meters"),
  19400. weight: math.unit(140, "lb"),
  19401. name: "Front",
  19402. image: {
  19403. source: "./media/characters/nita/front.svg",
  19404. extra: 2473 / 2363,
  19405. bottom: 0.01
  19406. }
  19407. },
  19408. },
  19409. [
  19410. {
  19411. name: "Normal",
  19412. height: math.unit(1.82, "m")
  19413. },
  19414. {
  19415. name: "Macro",
  19416. height: math.unit(300, "m")
  19417. },
  19418. {
  19419. name: "Mistake Canon",
  19420. height: math.unit(0.5, "miles"),
  19421. default: true
  19422. },
  19423. {
  19424. name: "Big Mistake",
  19425. height: math.unit(13, "miles")
  19426. },
  19427. {
  19428. name: "Playing God",
  19429. height: math.unit(2450, "miles")
  19430. },
  19431. ]
  19432. ))
  19433. characterMakers.push(() => makeCharacter(
  19434. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19435. {
  19436. front: {
  19437. height: math.unit(4, "feet"),
  19438. weight: math.unit(120, "lb"),
  19439. name: "Front",
  19440. image: {
  19441. source: "./media/characters/shiriko/front.svg",
  19442. extra: 970/934,
  19443. bottom: 5/975
  19444. }
  19445. },
  19446. },
  19447. [
  19448. {
  19449. name: "Normal",
  19450. height: math.unit(4, "feet"),
  19451. default: true
  19452. },
  19453. ]
  19454. ))
  19455. characterMakers.push(() => makeCharacter(
  19456. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19457. {
  19458. front: {
  19459. height: math.unit(6, "feet"),
  19460. name: "front",
  19461. image: {
  19462. source: "./media/characters/deja/front.svg",
  19463. extra: 926 / 840,
  19464. bottom: 0.07
  19465. }
  19466. },
  19467. },
  19468. [
  19469. {
  19470. name: "Planck Length",
  19471. height: math.unit(1.6e-35, "meters")
  19472. },
  19473. {
  19474. name: "Normal",
  19475. height: math.unit(30.48, "meters"),
  19476. default: true
  19477. },
  19478. {
  19479. name: "Universal",
  19480. height: math.unit(8.8e26, "meters")
  19481. },
  19482. ]
  19483. ))
  19484. characterMakers.push(() => makeCharacter(
  19485. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19486. {
  19487. side: {
  19488. height: math.unit(8, "feet"),
  19489. weight: math.unit(6300, "lb"),
  19490. name: "Side",
  19491. image: {
  19492. source: "./media/characters/anima/side.svg",
  19493. bottom: 0.035
  19494. }
  19495. },
  19496. },
  19497. [
  19498. {
  19499. name: "Normal",
  19500. height: math.unit(8, "feet"),
  19501. default: true
  19502. },
  19503. ]
  19504. ))
  19505. characterMakers.push(() => makeCharacter(
  19506. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19507. {
  19508. front: {
  19509. height: math.unit(8, "feet"),
  19510. weight: math.unit(350, "lb"),
  19511. name: "Front",
  19512. image: {
  19513. source: "./media/characters/bianca/front.svg",
  19514. extra: 234 / 225,
  19515. bottom: 0.03
  19516. }
  19517. },
  19518. },
  19519. [
  19520. {
  19521. name: "Normal",
  19522. height: math.unit(8, "feet"),
  19523. default: true
  19524. },
  19525. ]
  19526. ))
  19527. characterMakers.push(() => makeCharacter(
  19528. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19529. {
  19530. front: {
  19531. height: math.unit(11 + 5/12, "feet"),
  19532. weight: math.unit(1200, "lb"),
  19533. name: "Front",
  19534. image: {
  19535. source: "./media/characters/adinia/front.svg",
  19536. extra: 1767/1641,
  19537. bottom: 44/1811
  19538. },
  19539. extraAttributes: {
  19540. "energyIntake": {
  19541. name: "Energy Intake",
  19542. power: 3,
  19543. type: "energy",
  19544. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19545. },
  19546. }
  19547. },
  19548. back: {
  19549. height: math.unit(11 + 5/12, "feet"),
  19550. weight: math.unit(1200, "lb"),
  19551. name: "Back",
  19552. image: {
  19553. source: "./media/characters/adinia/back.svg",
  19554. extra: 1834/1684,
  19555. bottom: 14/1848
  19556. },
  19557. extraAttributes: {
  19558. "energyIntake": {
  19559. name: "Energy Intake",
  19560. power: 3,
  19561. type: "energy",
  19562. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19563. },
  19564. }
  19565. },
  19566. maw: {
  19567. height: math.unit(3.79, "feet"),
  19568. name: "Maw",
  19569. image: {
  19570. source: "./media/characters/adinia/maw.svg"
  19571. }
  19572. },
  19573. rump: {
  19574. height: math.unit(4.6, "feet"),
  19575. name: "Rump",
  19576. image: {
  19577. source: "./media/characters/adinia/rump.svg"
  19578. }
  19579. },
  19580. },
  19581. [
  19582. {
  19583. name: "Normal",
  19584. height: math.unit(11 + 5 / 12, "feet"),
  19585. default: true
  19586. },
  19587. ]
  19588. ))
  19589. characterMakers.push(() => makeCharacter(
  19590. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19591. {
  19592. front: {
  19593. height: math.unit(3, "meters"),
  19594. weight: math.unit(200, "kg"),
  19595. name: "Front",
  19596. image: {
  19597. source: "./media/characters/lykasa/front.svg",
  19598. extra: 1076 / 976,
  19599. bottom: 0.06
  19600. }
  19601. },
  19602. },
  19603. [
  19604. {
  19605. name: "Normal",
  19606. height: math.unit(3, "meters")
  19607. },
  19608. {
  19609. name: "Kaiju",
  19610. height: math.unit(120, "meters"),
  19611. default: true
  19612. },
  19613. {
  19614. name: "Mega Kaiju",
  19615. height: math.unit(240, "km")
  19616. },
  19617. {
  19618. name: "Giga Kaiju",
  19619. height: math.unit(400, "megameters")
  19620. },
  19621. {
  19622. name: "Tera Kaiju",
  19623. height: math.unit(800, "gigameters")
  19624. },
  19625. {
  19626. name: "Kaiju Dragon Goddess",
  19627. height: math.unit(26, "zettaparsecs")
  19628. },
  19629. ]
  19630. ))
  19631. characterMakers.push(() => makeCharacter(
  19632. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19633. {
  19634. side: {
  19635. height: math.unit(283 / 124 * 6, "feet"),
  19636. weight: math.unit(35000, "lb"),
  19637. name: "Side",
  19638. image: {
  19639. source: "./media/characters/malfaren/side.svg",
  19640. extra: 1310/529,
  19641. bottom: 24/1334
  19642. }
  19643. },
  19644. front: {
  19645. height: math.unit(22.36, "feet"),
  19646. weight: math.unit(35000, "lb"),
  19647. name: "Front",
  19648. image: {
  19649. source: "./media/characters/malfaren/front.svg",
  19650. extra: 1237/1115,
  19651. bottom: 32/1269
  19652. }
  19653. },
  19654. maw: {
  19655. height: math.unit(6.9, "feet"),
  19656. name: "Maw",
  19657. image: {
  19658. source: "./media/characters/malfaren/maw.svg"
  19659. }
  19660. },
  19661. dick: {
  19662. height: math.unit(6.19, "feet"),
  19663. name: "Dick",
  19664. image: {
  19665. source: "./media/characters/malfaren/dick.svg"
  19666. }
  19667. },
  19668. eye: {
  19669. height: math.unit(0.69, "feet"),
  19670. name: "Eye",
  19671. image: {
  19672. source: "./media/characters/malfaren/eye.svg"
  19673. }
  19674. },
  19675. },
  19676. [
  19677. {
  19678. name: "Big",
  19679. height: math.unit(283 / 162 * 6, "feet"),
  19680. },
  19681. {
  19682. name: "Bigger",
  19683. height: math.unit(283 / 124 * 6, "feet")
  19684. },
  19685. {
  19686. name: "Massive",
  19687. height: math.unit(283 / 92 * 6, "feet"),
  19688. default: true
  19689. },
  19690. {
  19691. name: "👀💦",
  19692. height: math.unit(283 / 73 * 6, "feet"),
  19693. },
  19694. ]
  19695. ))
  19696. characterMakers.push(() => makeCharacter(
  19697. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19698. {
  19699. front: {
  19700. height: math.unit(1.7, "m"),
  19701. weight: math.unit(70, "kg"),
  19702. name: "Front",
  19703. image: {
  19704. source: "./media/characters/kernel/front.svg",
  19705. extra: 222 / 210,
  19706. bottom: 0.007
  19707. }
  19708. },
  19709. },
  19710. [
  19711. {
  19712. name: "Nano",
  19713. height: math.unit(17, "micrometers")
  19714. },
  19715. {
  19716. name: "Micro",
  19717. height: math.unit(1.7, "mm")
  19718. },
  19719. {
  19720. name: "Small",
  19721. height: math.unit(1.7, "cm")
  19722. },
  19723. {
  19724. name: "Normal",
  19725. height: math.unit(1.7, "m"),
  19726. default: true
  19727. },
  19728. ]
  19729. ))
  19730. characterMakers.push(() => makeCharacter(
  19731. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19732. {
  19733. front: {
  19734. height: math.unit(1.75, "meters"),
  19735. weight: math.unit(65, "kg"),
  19736. name: "Front",
  19737. image: {
  19738. source: "./media/characters/jayne-folest/front.svg",
  19739. extra: 2115 / 2007,
  19740. bottom: 0.02
  19741. }
  19742. },
  19743. back: {
  19744. height: math.unit(1.75, "meters"),
  19745. weight: math.unit(65, "kg"),
  19746. name: "Back",
  19747. image: {
  19748. source: "./media/characters/jayne-folest/back.svg",
  19749. extra: 2115 / 2007,
  19750. bottom: 0.005
  19751. }
  19752. },
  19753. frontClothed: {
  19754. height: math.unit(1.75, "meters"),
  19755. weight: math.unit(65, "kg"),
  19756. name: "Front (Clothed)",
  19757. image: {
  19758. source: "./media/characters/jayne-folest/front-clothed.svg",
  19759. extra: 2115 / 2007,
  19760. bottom: 0.035
  19761. }
  19762. },
  19763. hand: {
  19764. height: math.unit(1 / 1.260, "feet"),
  19765. name: "Hand",
  19766. image: {
  19767. source: "./media/characters/jayne-folest/hand.svg"
  19768. }
  19769. },
  19770. foot: {
  19771. height: math.unit(1 / 0.918, "feet"),
  19772. name: "Foot",
  19773. image: {
  19774. source: "./media/characters/jayne-folest/foot.svg"
  19775. }
  19776. },
  19777. },
  19778. [
  19779. {
  19780. name: "Micro",
  19781. height: math.unit(4, "cm")
  19782. },
  19783. {
  19784. name: "Normal",
  19785. height: math.unit(1.75, "meters")
  19786. },
  19787. {
  19788. name: "Macro",
  19789. height: math.unit(47.5, "meters"),
  19790. default: true
  19791. },
  19792. ]
  19793. ))
  19794. characterMakers.push(() => makeCharacter(
  19795. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19796. {
  19797. front: {
  19798. height: math.unit(180, "cm"),
  19799. weight: math.unit(70, "kg"),
  19800. name: "Front",
  19801. image: {
  19802. source: "./media/characters/algier/front.svg",
  19803. extra: 596 / 572,
  19804. bottom: 0.04
  19805. }
  19806. },
  19807. back: {
  19808. height: math.unit(180, "cm"),
  19809. weight: math.unit(70, "kg"),
  19810. name: "Back",
  19811. image: {
  19812. source: "./media/characters/algier/back.svg",
  19813. extra: 596 / 572,
  19814. bottom: 0.025
  19815. }
  19816. },
  19817. frontdressed: {
  19818. height: math.unit(180, "cm"),
  19819. weight: math.unit(150, "kg"),
  19820. name: "Front-dressed",
  19821. image: {
  19822. source: "./media/characters/algier/front-dressed.svg",
  19823. extra: 596 / 572,
  19824. bottom: 0.038
  19825. }
  19826. },
  19827. },
  19828. [
  19829. {
  19830. name: "Micro",
  19831. height: math.unit(5, "cm")
  19832. },
  19833. {
  19834. name: "Normal",
  19835. height: math.unit(180, "cm"),
  19836. default: true
  19837. },
  19838. {
  19839. name: "Macro",
  19840. height: math.unit(64, "m")
  19841. },
  19842. ]
  19843. ))
  19844. characterMakers.push(() => makeCharacter(
  19845. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19846. {
  19847. upright: {
  19848. height: math.unit(7, "feet"),
  19849. weight: math.unit(300, "lb"),
  19850. name: "Upright",
  19851. image: {
  19852. source: "./media/characters/pretzel/upright.svg",
  19853. extra: 534 / 522,
  19854. bottom: 0.065
  19855. }
  19856. },
  19857. sprawling: {
  19858. height: math.unit(3.75, "feet"),
  19859. weight: math.unit(300, "lb"),
  19860. name: "Sprawling",
  19861. image: {
  19862. source: "./media/characters/pretzel/sprawling.svg",
  19863. extra: 314 / 281,
  19864. bottom: 0.1
  19865. }
  19866. },
  19867. tongue: {
  19868. height: math.unit(2, "feet"),
  19869. name: "Tongue",
  19870. image: {
  19871. source: "./media/characters/pretzel/tongue.svg"
  19872. }
  19873. },
  19874. },
  19875. [
  19876. {
  19877. name: "Normal",
  19878. height: math.unit(7, "feet"),
  19879. default: true
  19880. },
  19881. {
  19882. name: "Oversized",
  19883. height: math.unit(15, "feet")
  19884. },
  19885. {
  19886. name: "Huge",
  19887. height: math.unit(30, "feet")
  19888. },
  19889. {
  19890. name: "Macro",
  19891. height: math.unit(250, "feet")
  19892. },
  19893. ]
  19894. ))
  19895. characterMakers.push(() => makeCharacter(
  19896. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19897. {
  19898. sideFront: {
  19899. height: math.unit(5 + 2 / 12, "feet"),
  19900. weight: math.unit(120, "lb"),
  19901. name: "Front Side",
  19902. image: {
  19903. source: "./media/characters/roxi/side-front.svg",
  19904. extra: 2924 / 2717,
  19905. bottom: 0.08
  19906. }
  19907. },
  19908. sideBack: {
  19909. height: math.unit(5 + 2 / 12, "feet"),
  19910. weight: math.unit(120, "lb"),
  19911. name: "Back Side",
  19912. image: {
  19913. source: "./media/characters/roxi/side-back.svg",
  19914. extra: 2904 / 2693,
  19915. bottom: 0.06
  19916. }
  19917. },
  19918. front: {
  19919. height: math.unit(5 + 2 / 12, "feet"),
  19920. weight: math.unit(120, "lb"),
  19921. name: "Front",
  19922. image: {
  19923. source: "./media/characters/roxi/front.svg",
  19924. extra: 2028 / 1907,
  19925. bottom: 0.01
  19926. }
  19927. },
  19928. frontAlt: {
  19929. height: math.unit(5 + 2 / 12, "feet"),
  19930. weight: math.unit(120, "lb"),
  19931. name: "Front (Alt)",
  19932. image: {
  19933. source: "./media/characters/roxi/front-alt.svg",
  19934. extra: 1828 / 1798,
  19935. bottom: 0.01
  19936. }
  19937. },
  19938. sitting: {
  19939. height: math.unit(2.8, "feet"),
  19940. weight: math.unit(120, "lb"),
  19941. name: "Sitting",
  19942. image: {
  19943. source: "./media/characters/roxi/sitting.svg",
  19944. extra: 2660 / 2462,
  19945. bottom: 0.1
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Normal",
  19952. height: math.unit(5 + 2 / 12, "feet"),
  19953. default: true
  19954. },
  19955. ]
  19956. ))
  19957. characterMakers.push(() => makeCharacter(
  19958. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19959. {
  19960. side: {
  19961. height: math.unit(55, "feet"),
  19962. weight: math.unit(153, "tons"),
  19963. name: "Side",
  19964. image: {
  19965. source: "./media/characters/shadow/side.svg",
  19966. extra: 701 / 628,
  19967. bottom: 0.02
  19968. }
  19969. },
  19970. flying: {
  19971. height: math.unit(145, "feet"),
  19972. weight: math.unit(153, "tons"),
  19973. name: "Flying",
  19974. image: {
  19975. source: "./media/characters/shadow/flying.svg"
  19976. }
  19977. },
  19978. },
  19979. [
  19980. {
  19981. name: "Normal",
  19982. height: math.unit(55, "feet"),
  19983. default: true
  19984. },
  19985. ]
  19986. ))
  19987. characterMakers.push(() => makeCharacter(
  19988. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19989. {
  19990. front: {
  19991. height: math.unit(6, "feet"),
  19992. weight: math.unit(200, "lb"),
  19993. name: "Front",
  19994. image: {
  19995. source: "./media/characters/marcie/front.svg",
  19996. extra: 960 / 876,
  19997. bottom: 58 / 1017.87
  19998. }
  19999. },
  20000. },
  20001. [
  20002. {
  20003. name: "Macro",
  20004. height: math.unit(1, "mile"),
  20005. default: true
  20006. },
  20007. ]
  20008. ))
  20009. characterMakers.push(() => makeCharacter(
  20010. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20011. {
  20012. front: {
  20013. height: math.unit(7, "feet"),
  20014. weight: math.unit(200, "lb"),
  20015. name: "Front",
  20016. image: {
  20017. source: "./media/characters/kachina/front.svg",
  20018. extra: 1290.68 / 1119,
  20019. bottom: 36.5 / 1327.18
  20020. }
  20021. },
  20022. },
  20023. [
  20024. {
  20025. name: "Normal",
  20026. height: math.unit(7, "feet"),
  20027. default: true
  20028. },
  20029. ]
  20030. ))
  20031. characterMakers.push(() => makeCharacter(
  20032. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20033. {
  20034. looking: {
  20035. height: math.unit(2, "meters"),
  20036. weight: math.unit(300, "kg"),
  20037. name: "Looking",
  20038. image: {
  20039. source: "./media/characters/kash/looking.svg",
  20040. extra: 474 / 344,
  20041. bottom: 0.03
  20042. }
  20043. },
  20044. side: {
  20045. height: math.unit(2, "meters"),
  20046. weight: math.unit(300, "kg"),
  20047. name: "Side",
  20048. image: {
  20049. source: "./media/characters/kash/side.svg",
  20050. extra: 302 / 251,
  20051. bottom: 0.03
  20052. }
  20053. },
  20054. front: {
  20055. height: math.unit(2, "meters"),
  20056. weight: math.unit(300, "kg"),
  20057. name: "Front",
  20058. image: {
  20059. source: "./media/characters/kash/front.svg",
  20060. extra: 495 / 360,
  20061. bottom: 0.015
  20062. }
  20063. },
  20064. },
  20065. [
  20066. {
  20067. name: "Normal",
  20068. height: math.unit(2, "meters"),
  20069. default: true
  20070. },
  20071. {
  20072. name: "Big",
  20073. height: math.unit(3, "meters")
  20074. },
  20075. {
  20076. name: "Large",
  20077. height: math.unit(5, "meters")
  20078. },
  20079. ]
  20080. ))
  20081. characterMakers.push(() => makeCharacter(
  20082. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20083. {
  20084. feeding: {
  20085. height: math.unit(6.7, "feet"),
  20086. weight: math.unit(350, "lb"),
  20087. name: "Feeding",
  20088. image: {
  20089. source: "./media/characters/lalim/feeding.svg",
  20090. }
  20091. },
  20092. },
  20093. [
  20094. {
  20095. name: "Normal",
  20096. height: math.unit(6.7, "feet"),
  20097. default: true
  20098. },
  20099. ]
  20100. ))
  20101. characterMakers.push(() => makeCharacter(
  20102. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20103. {
  20104. front: {
  20105. height: math.unit(9.5, "feet"),
  20106. weight: math.unit(600, "lb"),
  20107. name: "Front",
  20108. image: {
  20109. source: "./media/characters/de'vout/front.svg",
  20110. extra: 1443 / 1328,
  20111. bottom: 0.025
  20112. }
  20113. },
  20114. back: {
  20115. height: math.unit(9.5, "feet"),
  20116. weight: math.unit(600, "lb"),
  20117. name: "Back",
  20118. image: {
  20119. source: "./media/characters/de'vout/back.svg",
  20120. extra: 1443 / 1328
  20121. }
  20122. },
  20123. frontDressed: {
  20124. height: math.unit(9.5, "feet"),
  20125. weight: math.unit(600, "lb"),
  20126. name: "Front (Dressed",
  20127. image: {
  20128. source: "./media/characters/de'vout/front-dressed.svg",
  20129. extra: 1443 / 1328,
  20130. bottom: 0.025
  20131. }
  20132. },
  20133. backDressed: {
  20134. height: math.unit(9.5, "feet"),
  20135. weight: math.unit(600, "lb"),
  20136. name: "Back (Dressed",
  20137. image: {
  20138. source: "./media/characters/de'vout/back-dressed.svg",
  20139. extra: 1443 / 1328
  20140. }
  20141. },
  20142. },
  20143. [
  20144. {
  20145. name: "Normal",
  20146. height: math.unit(9.5, "feet"),
  20147. default: true
  20148. },
  20149. ]
  20150. ))
  20151. characterMakers.push(() => makeCharacter(
  20152. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20153. {
  20154. front: {
  20155. height: math.unit(8, "feet"),
  20156. weight: math.unit(225, "lb"),
  20157. name: "Front",
  20158. image: {
  20159. source: "./media/characters/talana/front.svg",
  20160. extra: 1410 / 1300,
  20161. bottom: 0.015
  20162. }
  20163. },
  20164. frontDressed: {
  20165. height: math.unit(8, "feet"),
  20166. weight: math.unit(225, "lb"),
  20167. name: "Front (Dressed",
  20168. image: {
  20169. source: "./media/characters/talana/front-dressed.svg",
  20170. extra: 1410 / 1300,
  20171. bottom: 0.015
  20172. }
  20173. },
  20174. },
  20175. [
  20176. {
  20177. name: "Normal",
  20178. height: math.unit(8, "feet"),
  20179. default: true
  20180. },
  20181. ]
  20182. ))
  20183. characterMakers.push(() => makeCharacter(
  20184. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20185. {
  20186. side: {
  20187. height: math.unit(7.2, "feet"),
  20188. weight: math.unit(150, "lb"),
  20189. name: "Side",
  20190. image: {
  20191. source: "./media/characters/xeauvok/side.svg",
  20192. extra: 1975 / 1523,
  20193. bottom: 0.07
  20194. }
  20195. },
  20196. },
  20197. [
  20198. {
  20199. name: "Normal",
  20200. height: math.unit(7.2, "feet"),
  20201. default: true
  20202. },
  20203. ]
  20204. ))
  20205. characterMakers.push(() => makeCharacter(
  20206. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20207. {
  20208. side: {
  20209. height: math.unit(4, "meters"),
  20210. weight: math.unit(2200, "kg"),
  20211. name: "Side",
  20212. image: {
  20213. source: "./media/characters/zara/side.svg",
  20214. extra: 765/744,
  20215. bottom: 156/921
  20216. }
  20217. },
  20218. },
  20219. [
  20220. {
  20221. name: "Normal",
  20222. height: math.unit(4, "meters"),
  20223. default: true
  20224. },
  20225. ]
  20226. ))
  20227. characterMakers.push(() => makeCharacter(
  20228. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20229. {
  20230. side: {
  20231. height: math.unit(6, "feet"),
  20232. weight: math.unit(150, "lb"),
  20233. name: "Side",
  20234. image: {
  20235. source: "./media/characters/richard-dragon/side.svg",
  20236. extra: 845 / 340,
  20237. bottom: 0.017
  20238. }
  20239. },
  20240. maw: {
  20241. height: math.unit(2.97, "feet"),
  20242. name: "Maw",
  20243. image: {
  20244. source: "./media/characters/richard-dragon/maw.svg"
  20245. }
  20246. },
  20247. },
  20248. [
  20249. ]
  20250. ))
  20251. characterMakers.push(() => makeCharacter(
  20252. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20253. {
  20254. front: {
  20255. height: math.unit(4, "feet"),
  20256. weight: math.unit(100, "lb"),
  20257. name: "Front",
  20258. image: {
  20259. source: "./media/characters/richard-smeargle/front.svg",
  20260. extra: 2952 / 2820,
  20261. bottom: 0.028
  20262. }
  20263. },
  20264. },
  20265. [
  20266. {
  20267. name: "Normal",
  20268. height: math.unit(4, "feet"),
  20269. default: true
  20270. },
  20271. {
  20272. name: "Dynamax",
  20273. height: math.unit(20, "meters")
  20274. },
  20275. ]
  20276. ))
  20277. characterMakers.push(() => makeCharacter(
  20278. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20279. {
  20280. front: {
  20281. height: math.unit(6, "feet"),
  20282. weight: math.unit(110, "lb"),
  20283. name: "Front",
  20284. image: {
  20285. source: "./media/characters/klay/front.svg",
  20286. extra: 962 / 883,
  20287. bottom: 0.04
  20288. }
  20289. },
  20290. back: {
  20291. height: math.unit(6, "feet"),
  20292. weight: math.unit(110, "lb"),
  20293. name: "Back",
  20294. image: {
  20295. source: "./media/characters/klay/back.svg",
  20296. extra: 962 / 883
  20297. }
  20298. },
  20299. beans: {
  20300. height: math.unit(1.15, "feet"),
  20301. name: "Beans",
  20302. image: {
  20303. source: "./media/characters/klay/beans.svg"
  20304. }
  20305. },
  20306. },
  20307. [
  20308. {
  20309. name: "Micro",
  20310. height: math.unit(6, "inches")
  20311. },
  20312. {
  20313. name: "Mini",
  20314. height: math.unit(3, "feet")
  20315. },
  20316. {
  20317. name: "Normal",
  20318. height: math.unit(6, "feet"),
  20319. default: true
  20320. },
  20321. {
  20322. name: "Big",
  20323. height: math.unit(25, "feet")
  20324. },
  20325. {
  20326. name: "Macro",
  20327. height: math.unit(100, "feet")
  20328. },
  20329. {
  20330. name: "Megamacro",
  20331. height: math.unit(400, "feet")
  20332. },
  20333. ]
  20334. ))
  20335. characterMakers.push(() => makeCharacter(
  20336. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20337. {
  20338. front: {
  20339. height: math.unit(6, "feet"),
  20340. weight: math.unit(160, "lb"),
  20341. name: "Front",
  20342. image: {
  20343. source: "./media/characters/marcus/front.svg",
  20344. extra: 734 / 676,
  20345. bottom: 0.03
  20346. }
  20347. },
  20348. },
  20349. [
  20350. {
  20351. name: "Little",
  20352. height: math.unit(6, "feet")
  20353. },
  20354. {
  20355. name: "Normal",
  20356. height: math.unit(110, "feet"),
  20357. default: true
  20358. },
  20359. {
  20360. name: "Macro",
  20361. height: math.unit(250, "feet")
  20362. },
  20363. {
  20364. name: "Megamacro",
  20365. height: math.unit(1000, "feet")
  20366. },
  20367. ]
  20368. ))
  20369. characterMakers.push(() => makeCharacter(
  20370. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20371. {
  20372. front: {
  20373. height: math.unit(7, "feet"),
  20374. weight: math.unit(275, "lb"),
  20375. name: "Front",
  20376. image: {
  20377. source: "./media/characters/claude-delroute/front.svg",
  20378. extra: 902/827,
  20379. bottom: 26/928
  20380. }
  20381. },
  20382. side: {
  20383. height: math.unit(7, "feet"),
  20384. weight: math.unit(275, "lb"),
  20385. name: "Side",
  20386. image: {
  20387. source: "./media/characters/claude-delroute/side.svg",
  20388. extra: 908/853,
  20389. bottom: 16/924
  20390. }
  20391. },
  20392. back: {
  20393. height: math.unit(7, "feet"),
  20394. weight: math.unit(275, "lb"),
  20395. name: "Back",
  20396. image: {
  20397. source: "./media/characters/claude-delroute/back.svg",
  20398. extra: 911/829,
  20399. bottom: 18/929
  20400. }
  20401. },
  20402. maw: {
  20403. height: math.unit(0.6407, "meters"),
  20404. name: "Maw",
  20405. image: {
  20406. source: "./media/characters/claude-delroute/maw.svg"
  20407. }
  20408. },
  20409. },
  20410. [
  20411. {
  20412. name: "Normal",
  20413. height: math.unit(7, "feet"),
  20414. default: true
  20415. },
  20416. {
  20417. name: "Lorge",
  20418. height: math.unit(20, "feet")
  20419. },
  20420. ]
  20421. ))
  20422. characterMakers.push(() => makeCharacter(
  20423. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20424. {
  20425. front: {
  20426. height: math.unit(8 + 4 / 12, "feet"),
  20427. weight: math.unit(600, "lb"),
  20428. name: "Front",
  20429. image: {
  20430. source: "./media/characters/dragonien/front.svg",
  20431. extra: 100 / 94,
  20432. bottom: 3.3 / 103.3445
  20433. }
  20434. },
  20435. back: {
  20436. height: math.unit(8 + 4 / 12, "feet"),
  20437. weight: math.unit(600, "lb"),
  20438. name: "Back",
  20439. image: {
  20440. source: "./media/characters/dragonien/back.svg",
  20441. extra: 776 / 746,
  20442. bottom: 6.4 / 782.0616
  20443. }
  20444. },
  20445. foot: {
  20446. height: math.unit(1.54, "feet"),
  20447. name: "Foot",
  20448. image: {
  20449. source: "./media/characters/dragonien/foot.svg",
  20450. }
  20451. },
  20452. },
  20453. [
  20454. {
  20455. name: "Normal",
  20456. height: math.unit(8 + 4 / 12, "feet"),
  20457. default: true
  20458. },
  20459. {
  20460. name: "Macro",
  20461. height: math.unit(200, "feet")
  20462. },
  20463. {
  20464. name: "Megamacro",
  20465. height: math.unit(1, "mile")
  20466. },
  20467. {
  20468. name: "Gigamacro",
  20469. height: math.unit(1000, "miles")
  20470. },
  20471. ]
  20472. ))
  20473. characterMakers.push(() => makeCharacter(
  20474. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20475. {
  20476. front: {
  20477. height: math.unit(5 + 2 / 12, "feet"),
  20478. weight: math.unit(110, "lb"),
  20479. name: "Front",
  20480. image: {
  20481. source: "./media/characters/desta/front.svg",
  20482. extra: 767 / 726,
  20483. bottom: 11.7 / 779
  20484. }
  20485. },
  20486. back: {
  20487. height: math.unit(5 + 2 / 12, "feet"),
  20488. weight: math.unit(110, "lb"),
  20489. name: "Back",
  20490. image: {
  20491. source: "./media/characters/desta/back.svg",
  20492. extra: 777 / 728,
  20493. bottom: 6 / 784
  20494. }
  20495. },
  20496. frontAlt: {
  20497. height: math.unit(5 + 2 / 12, "feet"),
  20498. weight: math.unit(110, "lb"),
  20499. name: "Front",
  20500. image: {
  20501. source: "./media/characters/desta/front-alt.svg",
  20502. extra: 1482 / 1417
  20503. }
  20504. },
  20505. side: {
  20506. height: math.unit(5 + 2 / 12, "feet"),
  20507. weight: math.unit(110, "lb"),
  20508. name: "Side",
  20509. image: {
  20510. source: "./media/characters/desta/side.svg",
  20511. extra: 2579 / 2491,
  20512. bottom: 0.053
  20513. }
  20514. },
  20515. },
  20516. [
  20517. {
  20518. name: "Micro",
  20519. height: math.unit(6, "inches")
  20520. },
  20521. {
  20522. name: "Normal",
  20523. height: math.unit(5 + 2 / 12, "feet"),
  20524. default: true
  20525. },
  20526. {
  20527. name: "Macro",
  20528. height: math.unit(62, "feet")
  20529. },
  20530. {
  20531. name: "Megamacro",
  20532. height: math.unit(1800, "feet")
  20533. },
  20534. ]
  20535. ))
  20536. characterMakers.push(() => makeCharacter(
  20537. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20538. {
  20539. front: {
  20540. height: math.unit(10, "feet"),
  20541. weight: math.unit(700, "lb"),
  20542. name: "Front",
  20543. image: {
  20544. source: "./media/characters/storm-alystar/front.svg",
  20545. extra: 2112 / 1898,
  20546. bottom: 0.034
  20547. }
  20548. },
  20549. },
  20550. [
  20551. {
  20552. name: "Micro",
  20553. height: math.unit(3.5, "inches")
  20554. },
  20555. {
  20556. name: "Normal",
  20557. height: math.unit(10, "feet"),
  20558. default: true
  20559. },
  20560. {
  20561. name: "Macro",
  20562. height: math.unit(400, "feet")
  20563. },
  20564. {
  20565. name: "Deific",
  20566. height: math.unit(60, "miles")
  20567. },
  20568. ]
  20569. ))
  20570. characterMakers.push(() => makeCharacter(
  20571. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20572. {
  20573. front: {
  20574. height: math.unit(2.35, "meters"),
  20575. weight: math.unit(119, "kg"),
  20576. name: "Front",
  20577. image: {
  20578. source: "./media/characters/ilia/front.svg",
  20579. extra: 1285 / 1255,
  20580. bottom: 0.06
  20581. }
  20582. },
  20583. },
  20584. [
  20585. {
  20586. name: "Normal",
  20587. height: math.unit(2.35, "meters")
  20588. },
  20589. {
  20590. name: "Macro",
  20591. height: math.unit(140, "meters"),
  20592. default: true
  20593. },
  20594. {
  20595. name: "Megamacro",
  20596. height: math.unit(100, "miles")
  20597. },
  20598. ]
  20599. ))
  20600. characterMakers.push(() => makeCharacter(
  20601. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20602. {
  20603. front: {
  20604. height: math.unit(6 + 5 / 12, "feet"),
  20605. weight: math.unit(190, "lb"),
  20606. name: "Front",
  20607. image: {
  20608. source: "./media/characters/kingdead/front.svg",
  20609. extra: 1228 / 1177
  20610. }
  20611. },
  20612. },
  20613. [
  20614. {
  20615. name: "Micro",
  20616. height: math.unit(7, "inches")
  20617. },
  20618. {
  20619. name: "Normal",
  20620. height: math.unit(6 + 5 / 12, "feet")
  20621. },
  20622. {
  20623. name: "Macro",
  20624. height: math.unit(150, "feet"),
  20625. default: true
  20626. },
  20627. {
  20628. name: "Megamacro",
  20629. height: math.unit(200, "miles")
  20630. },
  20631. ]
  20632. ))
  20633. characterMakers.push(() => makeCharacter(
  20634. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20635. {
  20636. front: {
  20637. height: math.unit(8, "feet"),
  20638. weight: math.unit(600, "lb"),
  20639. name: "Front",
  20640. image: {
  20641. source: "./media/characters/kyrehx/front.svg",
  20642. extra: 1195 / 1095,
  20643. bottom: 0.034
  20644. }
  20645. },
  20646. },
  20647. [
  20648. {
  20649. name: "Micro",
  20650. height: math.unit(2, "inches")
  20651. },
  20652. {
  20653. name: "Normal",
  20654. height: math.unit(8, "feet"),
  20655. default: true
  20656. },
  20657. {
  20658. name: "Macro",
  20659. height: math.unit(255, "feet")
  20660. },
  20661. ]
  20662. ))
  20663. characterMakers.push(() => makeCharacter(
  20664. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20665. {
  20666. front: {
  20667. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20668. weight: math.unit(184, "lb"),
  20669. name: "Front",
  20670. image: {
  20671. source: "./media/characters/xang/front.svg",
  20672. extra: 845 / 755
  20673. }
  20674. },
  20675. },
  20676. [
  20677. {
  20678. name: "Normal",
  20679. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20680. default: true
  20681. },
  20682. {
  20683. name: "Macro",
  20684. height: math.unit(0.935 * 146, "feet")
  20685. },
  20686. {
  20687. name: "Megamacro",
  20688. height: math.unit(0.935 * 3, "miles")
  20689. },
  20690. ]
  20691. ))
  20692. characterMakers.push(() => makeCharacter(
  20693. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20694. {
  20695. frontDressed: {
  20696. height: math.unit(5 + 7 / 12, "feet"),
  20697. weight: math.unit(140, "lb"),
  20698. name: "Front (Dressed)",
  20699. image: {
  20700. source: "./media/characters/doc-weardno/front-dressed.svg",
  20701. extra: 263 / 234
  20702. }
  20703. },
  20704. backDressed: {
  20705. height: math.unit(5 + 7 / 12, "feet"),
  20706. weight: math.unit(140, "lb"),
  20707. name: "Back (Dressed)",
  20708. image: {
  20709. source: "./media/characters/doc-weardno/back-dressed.svg",
  20710. extra: 266 / 238
  20711. }
  20712. },
  20713. front: {
  20714. height: math.unit(5 + 7 / 12, "feet"),
  20715. weight: math.unit(140, "lb"),
  20716. name: "Front",
  20717. image: {
  20718. source: "./media/characters/doc-weardno/front.svg",
  20719. extra: 254 / 233
  20720. }
  20721. },
  20722. },
  20723. [
  20724. {
  20725. name: "Micro",
  20726. height: math.unit(3, "inches")
  20727. },
  20728. {
  20729. name: "Normal",
  20730. height: math.unit(5 + 7 / 12, "feet"),
  20731. default: true
  20732. },
  20733. {
  20734. name: "Macro",
  20735. height: math.unit(25, "feet")
  20736. },
  20737. {
  20738. name: "Megamacro",
  20739. height: math.unit(2, "miles")
  20740. },
  20741. ]
  20742. ))
  20743. characterMakers.push(() => makeCharacter(
  20744. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20745. {
  20746. front: {
  20747. height: math.unit(6 + 2 / 12, "feet"),
  20748. weight: math.unit(153, "lb"),
  20749. name: "Front",
  20750. image: {
  20751. source: "./media/characters/seth-whilst/front.svg",
  20752. bottom: 0.07
  20753. }
  20754. },
  20755. },
  20756. [
  20757. {
  20758. name: "Micro",
  20759. height: math.unit(5, "inches")
  20760. },
  20761. {
  20762. name: "Normal",
  20763. height: math.unit(6 + 2 / 12, "feet"),
  20764. default: true
  20765. },
  20766. ]
  20767. ))
  20768. characterMakers.push(() => makeCharacter(
  20769. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20770. {
  20771. front: {
  20772. height: math.unit(3, "inches"),
  20773. weight: math.unit(8, "grams"),
  20774. name: "Front",
  20775. image: {
  20776. source: "./media/characters/pocket-jabari/front.svg",
  20777. extra: 1024 / 974,
  20778. bottom: 0.039
  20779. }
  20780. },
  20781. },
  20782. [
  20783. {
  20784. name: "Minimicro",
  20785. height: math.unit(8, "mm")
  20786. },
  20787. {
  20788. name: "Micro",
  20789. height: math.unit(3, "inches"),
  20790. default: true
  20791. },
  20792. {
  20793. name: "Normal",
  20794. height: math.unit(3, "feet")
  20795. },
  20796. ]
  20797. ))
  20798. characterMakers.push(() => makeCharacter(
  20799. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20800. {
  20801. frontDressed: {
  20802. height: math.unit(15, "feet"),
  20803. weight: math.unit(3280, "lb"),
  20804. name: "Front (Dressed)",
  20805. image: {
  20806. source: "./media/characters/sapphy/front-dressed.svg",
  20807. extra: 1951/1654,
  20808. bottom: 194/2145
  20809. },
  20810. form: "anthro",
  20811. default: true
  20812. },
  20813. backDressed: {
  20814. height: math.unit(15, "feet"),
  20815. weight: math.unit(3280, "lb"),
  20816. name: "Back (Dressed)",
  20817. image: {
  20818. source: "./media/characters/sapphy/back-dressed.svg",
  20819. extra: 2058/1918,
  20820. bottom: 125/2183
  20821. },
  20822. form: "anthro"
  20823. },
  20824. frontNude: {
  20825. height: math.unit(15, "feet"),
  20826. weight: math.unit(3280, "lb"),
  20827. name: "Front (Nude)",
  20828. image: {
  20829. source: "./media/characters/sapphy/front-nude.svg",
  20830. extra: 1951/1654,
  20831. bottom: 194/2145
  20832. },
  20833. form: "anthro"
  20834. },
  20835. backNude: {
  20836. height: math.unit(15, "feet"),
  20837. weight: math.unit(3280, "lb"),
  20838. name: "Back (Nude)",
  20839. image: {
  20840. source: "./media/characters/sapphy/back-nude.svg",
  20841. extra: 2058/1918,
  20842. bottom: 125/2183
  20843. },
  20844. form: "anthro"
  20845. },
  20846. full: {
  20847. height: math.unit(15, "feet"),
  20848. weight: math.unit(3280, "lb"),
  20849. name: "Full",
  20850. image: {
  20851. source: "./media/characters/sapphy/full.svg",
  20852. extra: 1396/1317,
  20853. bottom: 44/1440
  20854. },
  20855. form: "anthro"
  20856. },
  20857. dick: {
  20858. height: math.unit(3.8, "feet"),
  20859. name: "Dick",
  20860. image: {
  20861. source: "./media/characters/sapphy/dick.svg"
  20862. },
  20863. form: "anthro"
  20864. },
  20865. feral: {
  20866. height: math.unit(35, "feet"),
  20867. weight: math.unit(160, "tons"),
  20868. name: "Feral",
  20869. image: {
  20870. source: "./media/characters/sapphy/feral.svg",
  20871. extra: 1050/573,
  20872. bottom: 60/1110
  20873. },
  20874. form: "feral",
  20875. default: true
  20876. },
  20877. },
  20878. [
  20879. {
  20880. name: "Normal",
  20881. height: math.unit(15, "feet"),
  20882. form: "anthro"
  20883. },
  20884. {
  20885. name: "Casual Macro",
  20886. height: math.unit(120, "feet"),
  20887. form: "anthro"
  20888. },
  20889. {
  20890. name: "Macro",
  20891. height: math.unit(2150, "feet"),
  20892. default: true,
  20893. form: "anthro"
  20894. },
  20895. {
  20896. name: "Megamacro",
  20897. height: math.unit(8, "miles"),
  20898. form: "anthro"
  20899. },
  20900. {
  20901. name: "Galaxy Mom",
  20902. height: math.unit(6, "megalightyears"),
  20903. form: "anthro"
  20904. },
  20905. {
  20906. name: "Normal",
  20907. height: math.unit(35, "feet"),
  20908. form: "feral",
  20909. default: true
  20910. },
  20911. {
  20912. name: "Macro",
  20913. height: math.unit(300, "feet"),
  20914. form: "feral"
  20915. },
  20916. {
  20917. name: "Galaxy Mom",
  20918. height: math.unit(10, "megalightyears"),
  20919. form: "feral"
  20920. },
  20921. ],
  20922. {
  20923. "anthro": {
  20924. name: "Anthro",
  20925. default: true
  20926. },
  20927. "feral": {
  20928. name: "Feral"
  20929. }
  20930. }
  20931. ))
  20932. characterMakers.push(() => makeCharacter(
  20933. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20934. {
  20935. hyenaFront: {
  20936. height: math.unit(6, "feet"),
  20937. weight: math.unit(190, "lb"),
  20938. name: "Front",
  20939. image: {
  20940. source: "./media/characters/kiro/hyena-front.svg",
  20941. extra: 927/839,
  20942. bottom: 91/1018
  20943. },
  20944. form: "hyena",
  20945. default: true
  20946. },
  20947. front: {
  20948. height: math.unit(6, "feet"),
  20949. weight: math.unit(170, "lb"),
  20950. name: "Front",
  20951. image: {
  20952. source: "./media/characters/kiro/front.svg",
  20953. extra: 1064 / 1012,
  20954. bottom: 0.052
  20955. },
  20956. form: "folf",
  20957. default: true
  20958. },
  20959. },
  20960. [
  20961. {
  20962. name: "Micro",
  20963. height: math.unit(6, "inches"),
  20964. form: "folf"
  20965. },
  20966. {
  20967. name: "Normal",
  20968. height: math.unit(6, "feet"),
  20969. form: "folf",
  20970. default: true
  20971. },
  20972. {
  20973. name: "Macro",
  20974. height: math.unit(72, "feet"),
  20975. form: "folf"
  20976. },
  20977. {
  20978. name: "Micro",
  20979. height: math.unit(6, "inches"),
  20980. form: "hyena"
  20981. },
  20982. {
  20983. name: "Normal",
  20984. height: math.unit(6, "feet"),
  20985. form: "hyena",
  20986. default: true
  20987. },
  20988. {
  20989. name: "Macro",
  20990. height: math.unit(72, "feet"),
  20991. form: "hyena"
  20992. },
  20993. ],
  20994. {
  20995. "hyena": {
  20996. name: "Hyena",
  20997. default: true
  20998. },
  20999. "folf": {
  21000. name: "Folf",
  21001. },
  21002. }
  21003. ))
  21004. characterMakers.push(() => makeCharacter(
  21005. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21006. {
  21007. front: {
  21008. height: math.unit(5 + 9 / 12, "feet"),
  21009. weight: math.unit(175, "lb"),
  21010. name: "Front",
  21011. image: {
  21012. source: "./media/characters/irishfox/front.svg",
  21013. extra: 1912 / 1680,
  21014. bottom: 0.02
  21015. }
  21016. },
  21017. },
  21018. [
  21019. {
  21020. name: "Nano",
  21021. height: math.unit(1, "mm")
  21022. },
  21023. {
  21024. name: "Micro",
  21025. height: math.unit(2, "inches")
  21026. },
  21027. {
  21028. name: "Normal",
  21029. height: math.unit(5 + 9 / 12, "feet"),
  21030. default: true
  21031. },
  21032. {
  21033. name: "Macro",
  21034. height: math.unit(45, "feet")
  21035. },
  21036. ]
  21037. ))
  21038. characterMakers.push(() => makeCharacter(
  21039. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21040. {
  21041. front: {
  21042. height: math.unit(6 + 1 / 12, "feet"),
  21043. weight: math.unit(75, "lb"),
  21044. name: "Front",
  21045. image: {
  21046. source: "./media/characters/aronai-sieyes/front.svg",
  21047. extra: 1532/1450,
  21048. bottom: 42/1574
  21049. }
  21050. },
  21051. side: {
  21052. height: math.unit(6 + 1 / 12, "feet"),
  21053. weight: math.unit(75, "lb"),
  21054. name: "Side",
  21055. image: {
  21056. source: "./media/characters/aronai-sieyes/side.svg",
  21057. extra: 1422/1365,
  21058. bottom: 148/1570
  21059. }
  21060. },
  21061. back: {
  21062. height: math.unit(6 + 1 / 12, "feet"),
  21063. weight: math.unit(75, "lb"),
  21064. name: "Back",
  21065. image: {
  21066. source: "./media/characters/aronai-sieyes/back.svg",
  21067. extra: 1526/1464,
  21068. bottom: 51/1577
  21069. }
  21070. },
  21071. dressed: {
  21072. height: math.unit(6 + 1 / 12, "feet"),
  21073. weight: math.unit(75, "lb"),
  21074. name: "Dressed",
  21075. image: {
  21076. source: "./media/characters/aronai-sieyes/dressed.svg",
  21077. extra: 1559/1483,
  21078. bottom: 39/1598
  21079. }
  21080. },
  21081. slit: {
  21082. height: math.unit(1.3, "feet"),
  21083. name: "Slit",
  21084. image: {
  21085. source: "./media/characters/aronai-sieyes/slit.svg"
  21086. }
  21087. },
  21088. slitSpread: {
  21089. height: math.unit(0.9, "feet"),
  21090. name: "Slit (Spread)",
  21091. image: {
  21092. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21093. }
  21094. },
  21095. rump: {
  21096. height: math.unit(1.3, "feet"),
  21097. name: "Rump",
  21098. image: {
  21099. source: "./media/characters/aronai-sieyes/rump.svg"
  21100. }
  21101. },
  21102. maw: {
  21103. height: math.unit(1.25, "feet"),
  21104. name: "Maw",
  21105. image: {
  21106. source: "./media/characters/aronai-sieyes/maw.svg"
  21107. }
  21108. },
  21109. feral: {
  21110. height: math.unit(18, "feet"),
  21111. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21112. name: "Feral",
  21113. image: {
  21114. source: "./media/characters/aronai-sieyes/feral.svg",
  21115. extra: 1530 / 1240,
  21116. bottom: 0.035
  21117. }
  21118. },
  21119. },
  21120. [
  21121. {
  21122. name: "Micro",
  21123. height: math.unit(2, "inches")
  21124. },
  21125. {
  21126. name: "Normal",
  21127. height: math.unit(6 + 1 / 12, "feet"),
  21128. default: true
  21129. }
  21130. ]
  21131. ))
  21132. characterMakers.push(() => makeCharacter(
  21133. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21134. {
  21135. front: {
  21136. height: math.unit(12, "feet"),
  21137. weight: math.unit(410, "kg"),
  21138. name: "Front",
  21139. image: {
  21140. source: "./media/characters/xuna/front.svg",
  21141. extra: 2184 / 1980
  21142. }
  21143. },
  21144. side: {
  21145. height: math.unit(12, "feet"),
  21146. weight: math.unit(410, "kg"),
  21147. name: "Side",
  21148. image: {
  21149. source: "./media/characters/xuna/side.svg",
  21150. extra: 2184 / 1980
  21151. }
  21152. },
  21153. back: {
  21154. height: math.unit(12, "feet"),
  21155. weight: math.unit(410, "kg"),
  21156. name: "Back",
  21157. image: {
  21158. source: "./media/characters/xuna/back.svg",
  21159. extra: 2184 / 1980
  21160. }
  21161. },
  21162. },
  21163. [
  21164. {
  21165. name: "Nano glow",
  21166. height: math.unit(10, "nm")
  21167. },
  21168. {
  21169. name: "Micro floof",
  21170. height: math.unit(0.3, "m")
  21171. },
  21172. {
  21173. name: "Huggable softy boi",
  21174. height: math.unit(3.6576, "m"),
  21175. default: true
  21176. },
  21177. {
  21178. name: "Admirable floof",
  21179. height: math.unit(80, "meters")
  21180. },
  21181. {
  21182. name: "Gentle macro",
  21183. height: math.unit(300, "meters")
  21184. },
  21185. {
  21186. name: "Very careful floof",
  21187. height: math.unit(3200, "meters")
  21188. },
  21189. {
  21190. name: "The mega floof",
  21191. height: math.unit(36000, "meters")
  21192. },
  21193. {
  21194. name: "Giga-fur-Wicker",
  21195. height: math.unit(4800000, "meters")
  21196. },
  21197. {
  21198. name: "Licky world",
  21199. height: math.unit(20000000, "meters")
  21200. },
  21201. {
  21202. name: "Floofy cyan sun",
  21203. height: math.unit(1500000000, "meters")
  21204. },
  21205. {
  21206. name: "Milky Wicker",
  21207. height: math.unit(1000000000000000000000, "meters")
  21208. },
  21209. {
  21210. name: "The observing Wicker",
  21211. height: math.unit(999999999999999999999999999, "meters")
  21212. },
  21213. ]
  21214. ))
  21215. characterMakers.push(() => makeCharacter(
  21216. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21217. {
  21218. front: {
  21219. height: math.unit(5 + 9 / 12, "feet"),
  21220. weight: math.unit(150, "lb"),
  21221. name: "Front",
  21222. image: {
  21223. source: "./media/characters/arokha-sieyes/front.svg",
  21224. extra: 1425 / 1284,
  21225. bottom: 0.05
  21226. }
  21227. },
  21228. },
  21229. [
  21230. {
  21231. name: "Normal",
  21232. height: math.unit(5 + 9 / 12, "feet")
  21233. },
  21234. {
  21235. name: "Macro",
  21236. height: math.unit(30, "meters"),
  21237. default: true
  21238. },
  21239. ]
  21240. ))
  21241. characterMakers.push(() => makeCharacter(
  21242. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21243. {
  21244. front: {
  21245. height: math.unit(6, "feet"),
  21246. weight: math.unit(180, "lb"),
  21247. name: "Front",
  21248. image: {
  21249. source: "./media/characters/arokh-sieyes/front.svg",
  21250. extra: 1830 / 1769,
  21251. bottom: 0.01
  21252. }
  21253. },
  21254. },
  21255. [
  21256. {
  21257. name: "Normal",
  21258. height: math.unit(6, "feet")
  21259. },
  21260. {
  21261. name: "Macro",
  21262. height: math.unit(30, "meters"),
  21263. default: true
  21264. },
  21265. ]
  21266. ))
  21267. characterMakers.push(() => makeCharacter(
  21268. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21269. {
  21270. side: {
  21271. height: math.unit(13 + 1 / 12, "feet"),
  21272. weight: math.unit(8.5, "tonnes"),
  21273. preyCapacity: math.unit(36, "people"),
  21274. name: "Side",
  21275. image: {
  21276. source: "./media/characters/goldeneye/side.svg",
  21277. extra: 1139/741,
  21278. bottom: 98/1237
  21279. }
  21280. },
  21281. front: {
  21282. height: math.unit(5.1, "feet"),
  21283. weight: math.unit(8.5, "tonnes"),
  21284. preyCapacity: math.unit(36, "people"),
  21285. name: "Front",
  21286. image: {
  21287. source: "./media/characters/goldeneye/front.svg",
  21288. extra: 635/365,
  21289. bottom: 598/1233
  21290. }
  21291. },
  21292. maw: {
  21293. height: math.unit(6.6, "feet"),
  21294. name: "Maw",
  21295. image: {
  21296. source: "./media/characters/goldeneye/maw.svg"
  21297. }
  21298. },
  21299. headFront: {
  21300. height: math.unit(8, "feet"),
  21301. name: "Head (Front)",
  21302. image: {
  21303. source: "./media/characters/goldeneye/head-front.svg"
  21304. }
  21305. },
  21306. headSide: {
  21307. height: math.unit(6, "feet"),
  21308. name: "Head (Side)",
  21309. image: {
  21310. source: "./media/characters/goldeneye/head-side.svg"
  21311. }
  21312. },
  21313. headBack: {
  21314. height: math.unit(8, "feet"),
  21315. name: "Head (Back)",
  21316. image: {
  21317. source: "./media/characters/goldeneye/head-back.svg"
  21318. }
  21319. },
  21320. paw: {
  21321. height: math.unit(3.4, "feet"),
  21322. name: "Paw",
  21323. image: {
  21324. source: "./media/characters/goldeneye/paw.svg"
  21325. }
  21326. },
  21327. toering: {
  21328. height: math.unit(0.45, "feet"),
  21329. name: "Toering",
  21330. image: {
  21331. source: "./media/characters/goldeneye/toering.svg"
  21332. }
  21333. },
  21334. eyes: {
  21335. height: math.unit(0.5, "feet"),
  21336. name: "Eyes",
  21337. image: {
  21338. source: "./media/characters/goldeneye/eyes.svg"
  21339. }
  21340. },
  21341. },
  21342. [
  21343. {
  21344. name: "Normal",
  21345. height: math.unit(13 + 1 / 12, "feet"),
  21346. default: true
  21347. },
  21348. ]
  21349. ))
  21350. characterMakers.push(() => makeCharacter(
  21351. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21352. {
  21353. front: {
  21354. height: math.unit(6 + 1 / 12, "feet"),
  21355. weight: math.unit(210, "lb"),
  21356. name: "Front",
  21357. image: {
  21358. source: "./media/characters/leonardo-lycheborne/front.svg",
  21359. extra: 776/723,
  21360. bottom: 34/810
  21361. }
  21362. },
  21363. side: {
  21364. height: math.unit(6 + 1 / 12, "feet"),
  21365. weight: math.unit(210, "lb"),
  21366. name: "Side",
  21367. image: {
  21368. source: "./media/characters/leonardo-lycheborne/side.svg",
  21369. extra: 780/728,
  21370. bottom: 12/792
  21371. }
  21372. },
  21373. back: {
  21374. height: math.unit(6 + 1 / 12, "feet"),
  21375. weight: math.unit(210, "lb"),
  21376. name: "Back",
  21377. image: {
  21378. source: "./media/characters/leonardo-lycheborne/back.svg",
  21379. extra: 775/721,
  21380. bottom: 17/792
  21381. }
  21382. },
  21383. hand: {
  21384. height: math.unit(1.08, "feet"),
  21385. name: "Hand",
  21386. image: {
  21387. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21388. }
  21389. },
  21390. foot: {
  21391. height: math.unit(1.32, "feet"),
  21392. name: "Foot",
  21393. image: {
  21394. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21395. }
  21396. },
  21397. maw: {
  21398. height: math.unit(1, "feet"),
  21399. name: "Maw",
  21400. image: {
  21401. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21402. }
  21403. },
  21404. were: {
  21405. height: math.unit(20, "feet"),
  21406. weight: math.unit(7800, "lb"),
  21407. name: "Were",
  21408. image: {
  21409. source: "./media/characters/leonardo-lycheborne/were.svg",
  21410. extra: 1224/1165,
  21411. bottom: 72/1296
  21412. }
  21413. },
  21414. feral: {
  21415. height: math.unit(7.5, "feet"),
  21416. weight: math.unit(600, "lb"),
  21417. name: "Feral",
  21418. image: {
  21419. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21420. extra: 797/702,
  21421. bottom: 139/936
  21422. }
  21423. },
  21424. taur: {
  21425. height: math.unit(11, "feet"),
  21426. weight: math.unit(3300, "lb"),
  21427. name: "Taur",
  21428. image: {
  21429. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21430. extra: 1271/1197,
  21431. bottom: 47/1318
  21432. }
  21433. },
  21434. barghest: {
  21435. height: math.unit(11, "feet"),
  21436. weight: math.unit(1300, "lb"),
  21437. name: "Barghest",
  21438. image: {
  21439. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21440. extra: 1291/1204,
  21441. bottom: 37/1328
  21442. }
  21443. },
  21444. dick: {
  21445. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21446. name: "Dick",
  21447. image: {
  21448. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21449. }
  21450. },
  21451. dickWere: {
  21452. height: math.unit((20) / 3.8, "feet"),
  21453. name: "Dick (Were)",
  21454. image: {
  21455. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21456. }
  21457. },
  21458. },
  21459. [
  21460. {
  21461. name: "Normal",
  21462. height: math.unit(6 + 1 / 12, "feet"),
  21463. default: true
  21464. },
  21465. ]
  21466. ))
  21467. characterMakers.push(() => makeCharacter(
  21468. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21469. {
  21470. front: {
  21471. height: math.unit(10, "feet"),
  21472. weight: math.unit(350, "lb"),
  21473. name: "Front",
  21474. image: {
  21475. source: "./media/characters/jet/front.svg",
  21476. extra: 2050 / 1980,
  21477. bottom: 0.013
  21478. }
  21479. },
  21480. back: {
  21481. height: math.unit(10, "feet"),
  21482. weight: math.unit(350, "lb"),
  21483. name: "Back",
  21484. image: {
  21485. source: "./media/characters/jet/back.svg",
  21486. extra: 2050 / 1980,
  21487. bottom: 0.013
  21488. }
  21489. },
  21490. },
  21491. [
  21492. {
  21493. name: "Micro",
  21494. height: math.unit(6, "inches")
  21495. },
  21496. {
  21497. name: "Normal",
  21498. height: math.unit(10, "feet"),
  21499. default: true
  21500. },
  21501. {
  21502. name: "Macro",
  21503. height: math.unit(100, "feet")
  21504. },
  21505. ]
  21506. ))
  21507. characterMakers.push(() => makeCharacter(
  21508. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21509. {
  21510. front: {
  21511. height: math.unit(15, "feet"),
  21512. weight: math.unit(2800, "lb"),
  21513. name: "Front",
  21514. image: {
  21515. source: "./media/characters/tanarath/front.svg",
  21516. extra: 2392 / 2220,
  21517. bottom: 0.03
  21518. }
  21519. },
  21520. back: {
  21521. height: math.unit(15, "feet"),
  21522. weight: math.unit(2800, "lb"),
  21523. name: "Back",
  21524. image: {
  21525. source: "./media/characters/tanarath/back.svg",
  21526. extra: 2392 / 2220,
  21527. bottom: 0.03
  21528. }
  21529. },
  21530. },
  21531. [
  21532. {
  21533. name: "Normal",
  21534. height: math.unit(15, "feet"),
  21535. default: true
  21536. },
  21537. ]
  21538. ))
  21539. characterMakers.push(() => makeCharacter(
  21540. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21541. {
  21542. front: {
  21543. height: math.unit(7 + 1 / 12, "feet"),
  21544. weight: math.unit(175, "lb"),
  21545. name: "Front",
  21546. image: {
  21547. source: "./media/characters/patty-cattybatty/front.svg",
  21548. extra: 908 / 874,
  21549. bottom: 0.025
  21550. }
  21551. },
  21552. },
  21553. [
  21554. {
  21555. name: "Micro",
  21556. height: math.unit(1, "inch")
  21557. },
  21558. {
  21559. name: "Normal",
  21560. height: math.unit(7 + 1 / 12, "feet")
  21561. },
  21562. {
  21563. name: "Mini Macro",
  21564. height: math.unit(155, "feet")
  21565. },
  21566. {
  21567. name: "Macro",
  21568. height: math.unit(1077, "feet")
  21569. },
  21570. {
  21571. name: "Mega Macro",
  21572. height: math.unit(47650, "feet"),
  21573. default: true
  21574. },
  21575. {
  21576. name: "Giga Macro",
  21577. height: math.unit(440, "miles")
  21578. },
  21579. {
  21580. name: "Tera Macro",
  21581. height: math.unit(8700, "miles")
  21582. },
  21583. {
  21584. name: "Planetary Macro",
  21585. height: math.unit(32700, "miles")
  21586. },
  21587. {
  21588. name: "Solar Macro",
  21589. height: math.unit(550000, "miles")
  21590. },
  21591. {
  21592. name: "Celestial Macro",
  21593. height: math.unit(2.5, "AU")
  21594. },
  21595. ]
  21596. ))
  21597. characterMakers.push(() => makeCharacter(
  21598. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21599. {
  21600. front: {
  21601. height: math.unit(4 + 5 / 12, "feet"),
  21602. weight: math.unit(90, "lb"),
  21603. name: "Front",
  21604. image: {
  21605. source: "./media/characters/cappu/front.svg",
  21606. extra: 1247 / 1152,
  21607. bottom: 0.012
  21608. }
  21609. },
  21610. },
  21611. [
  21612. {
  21613. name: "Normal",
  21614. height: math.unit(4 + 5 / 12, "feet"),
  21615. default: true
  21616. },
  21617. ]
  21618. ))
  21619. characterMakers.push(() => makeCharacter(
  21620. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21621. {
  21622. frontDressed: {
  21623. height: math.unit(70, "cm"),
  21624. weight: math.unit(6, "kg"),
  21625. name: "Front (Dressed)",
  21626. image: {
  21627. source: "./media/characters/sebi/front-dressed.svg",
  21628. extra: 713.5 / 686.5,
  21629. bottom: 0.003
  21630. }
  21631. },
  21632. front: {
  21633. height: math.unit(70, "cm"),
  21634. weight: math.unit(5, "kg"),
  21635. name: "Front",
  21636. image: {
  21637. source: "./media/characters/sebi/front.svg",
  21638. extra: 713.5 / 686.5,
  21639. bottom: 0.003
  21640. }
  21641. }
  21642. },
  21643. [
  21644. {
  21645. name: "Normal",
  21646. height: math.unit(70, "cm"),
  21647. default: true
  21648. },
  21649. {
  21650. name: "Macro",
  21651. height: math.unit(8, "meters")
  21652. },
  21653. ]
  21654. ))
  21655. characterMakers.push(() => makeCharacter(
  21656. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21657. {
  21658. front: {
  21659. height: math.unit(6, "feet"),
  21660. weight: math.unit(150, "lb"),
  21661. name: "Front",
  21662. image: {
  21663. source: "./media/characters/typhek/front.svg",
  21664. extra: 1948 / 1929,
  21665. bottom: 0.025
  21666. }
  21667. },
  21668. side: {
  21669. height: math.unit(6, "feet"),
  21670. weight: math.unit(150, "lb"),
  21671. name: "Side",
  21672. image: {
  21673. source: "./media/characters/typhek/side.svg",
  21674. extra: 2034 / 2010,
  21675. bottom: 0.003
  21676. }
  21677. },
  21678. back: {
  21679. height: math.unit(6, "feet"),
  21680. weight: math.unit(150, "lb"),
  21681. name: "Back",
  21682. image: {
  21683. source: "./media/characters/typhek/back.svg",
  21684. extra: 2005 / 1978,
  21685. bottom: 0.004
  21686. }
  21687. },
  21688. palm: {
  21689. height: math.unit(1.2, "feet"),
  21690. name: "Palm",
  21691. image: {
  21692. source: "./media/characters/typhek/palm.svg"
  21693. }
  21694. },
  21695. fist: {
  21696. height: math.unit(1.1, "feet"),
  21697. name: "Fist",
  21698. image: {
  21699. source: "./media/characters/typhek/fist.svg"
  21700. }
  21701. },
  21702. foot: {
  21703. height: math.unit(1.57, "feet"),
  21704. name: "Foot",
  21705. image: {
  21706. source: "./media/characters/typhek/foot.svg"
  21707. }
  21708. },
  21709. sole: {
  21710. height: math.unit(2.05, "feet"),
  21711. name: "Sole",
  21712. image: {
  21713. source: "./media/characters/typhek/sole.svg"
  21714. }
  21715. },
  21716. },
  21717. [
  21718. {
  21719. name: "Macro",
  21720. height: math.unit(40, "stories"),
  21721. default: true
  21722. },
  21723. {
  21724. name: "Megamacro",
  21725. height: math.unit(1, "mile")
  21726. },
  21727. {
  21728. name: "Gigamacro",
  21729. height: math.unit(4000, "solarradii")
  21730. },
  21731. {
  21732. name: "Universal",
  21733. height: math.unit(1.1, "universes")
  21734. }
  21735. ]
  21736. ))
  21737. characterMakers.push(() => makeCharacter(
  21738. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21739. {
  21740. side: {
  21741. height: math.unit(5 + 7 / 12, "feet"),
  21742. weight: math.unit(150, "lb"),
  21743. name: "Side",
  21744. image: {
  21745. source: "./media/characters/kassy/side.svg",
  21746. extra: 1280 / 1225,
  21747. bottom: 0.002
  21748. }
  21749. },
  21750. front: {
  21751. height: math.unit(5 + 7 / 12, "feet"),
  21752. weight: math.unit(150, "lb"),
  21753. name: "Front",
  21754. image: {
  21755. source: "./media/characters/kassy/front.svg",
  21756. extra: 1280 / 1225,
  21757. bottom: 0.025
  21758. }
  21759. },
  21760. back: {
  21761. height: math.unit(5 + 7 / 12, "feet"),
  21762. weight: math.unit(150, "lb"),
  21763. name: "Back",
  21764. image: {
  21765. source: "./media/characters/kassy/back.svg",
  21766. extra: 1280 / 1225,
  21767. bottom: 0.002
  21768. }
  21769. },
  21770. foot: {
  21771. height: math.unit(1.266, "feet"),
  21772. name: "Foot",
  21773. image: {
  21774. source: "./media/characters/kassy/foot.svg"
  21775. }
  21776. },
  21777. },
  21778. [
  21779. {
  21780. name: "Normal",
  21781. height: math.unit(5 + 7 / 12, "feet")
  21782. },
  21783. {
  21784. name: "Macro",
  21785. height: math.unit(137, "feet"),
  21786. default: true
  21787. },
  21788. {
  21789. name: "Megamacro",
  21790. height: math.unit(1, "mile")
  21791. },
  21792. ]
  21793. ))
  21794. characterMakers.push(() => makeCharacter(
  21795. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21796. {
  21797. front: {
  21798. height: math.unit(6 + 1 / 12, "feet"),
  21799. weight: math.unit(200, "lb"),
  21800. name: "Front",
  21801. image: {
  21802. source: "./media/characters/neil/front.svg",
  21803. extra: 1326 / 1250,
  21804. bottom: 0.023
  21805. }
  21806. },
  21807. },
  21808. [
  21809. {
  21810. name: "Normal",
  21811. height: math.unit(6 + 1 / 12, "feet"),
  21812. default: true
  21813. },
  21814. {
  21815. name: "Macro",
  21816. height: math.unit(200, "feet")
  21817. },
  21818. ]
  21819. ))
  21820. characterMakers.push(() => makeCharacter(
  21821. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21822. {
  21823. front: {
  21824. height: math.unit(5 + 9 / 12, "feet"),
  21825. weight: math.unit(190, "lb"),
  21826. name: "Front",
  21827. image: {
  21828. source: "./media/characters/atticus/front.svg",
  21829. extra: 2934 / 2785,
  21830. bottom: 0.025
  21831. }
  21832. },
  21833. },
  21834. [
  21835. {
  21836. name: "Normal",
  21837. height: math.unit(5 + 9 / 12, "feet"),
  21838. default: true
  21839. },
  21840. {
  21841. name: "Macro",
  21842. height: math.unit(180, "feet")
  21843. },
  21844. ]
  21845. ))
  21846. characterMakers.push(() => makeCharacter(
  21847. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21848. {
  21849. side: {
  21850. height: math.unit(9, "feet"),
  21851. weight: math.unit(650, "lb"),
  21852. name: "Side",
  21853. image: {
  21854. source: "./media/characters/milo/side.svg",
  21855. extra: 2644 / 2310,
  21856. bottom: 0.032
  21857. }
  21858. },
  21859. },
  21860. [
  21861. {
  21862. name: "Normal",
  21863. height: math.unit(9, "feet"),
  21864. default: true
  21865. },
  21866. {
  21867. name: "Macro",
  21868. height: math.unit(300, "feet")
  21869. },
  21870. ]
  21871. ))
  21872. characterMakers.push(() => makeCharacter(
  21873. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21874. {
  21875. side: {
  21876. height: math.unit(8, "meters"),
  21877. weight: math.unit(90000, "kg"),
  21878. name: "Side",
  21879. image: {
  21880. source: "./media/characters/ijzer/side.svg",
  21881. extra: 2756 / 1600,
  21882. bottom: 0.01
  21883. }
  21884. },
  21885. },
  21886. [
  21887. {
  21888. name: "Small",
  21889. height: math.unit(3, "meters")
  21890. },
  21891. {
  21892. name: "Normal",
  21893. height: math.unit(8, "meters"),
  21894. default: true
  21895. },
  21896. {
  21897. name: "Normal+",
  21898. height: math.unit(10, "meters")
  21899. },
  21900. {
  21901. name: "Bigger",
  21902. height: math.unit(24, "meters")
  21903. },
  21904. {
  21905. name: "Huge",
  21906. height: math.unit(80, "meters")
  21907. },
  21908. ]
  21909. ))
  21910. characterMakers.push(() => makeCharacter(
  21911. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21912. {
  21913. front: {
  21914. height: math.unit(6 + 2 / 12, "feet"),
  21915. weight: math.unit(153, "lb"),
  21916. name: "Front",
  21917. image: {
  21918. source: "./media/characters/luca-cervicum/front.svg",
  21919. extra: 370 / 327,
  21920. bottom: 0.015
  21921. }
  21922. },
  21923. back: {
  21924. height: math.unit(6 + 2 / 12, "feet"),
  21925. weight: math.unit(153, "lb"),
  21926. name: "Back",
  21927. image: {
  21928. source: "./media/characters/luca-cervicum/back.svg",
  21929. extra: 367 / 333,
  21930. bottom: 0.005
  21931. }
  21932. },
  21933. frontGear: {
  21934. height: math.unit(6 + 2 / 12, "feet"),
  21935. weight: math.unit(173, "lb"),
  21936. name: "Front (Gear)",
  21937. image: {
  21938. source: "./media/characters/luca-cervicum/front-gear.svg",
  21939. extra: 377 / 333,
  21940. bottom: 0.006
  21941. }
  21942. },
  21943. },
  21944. [
  21945. {
  21946. name: "Normal",
  21947. height: math.unit(6 + 2 / 12, "feet"),
  21948. default: true
  21949. },
  21950. ]
  21951. ))
  21952. characterMakers.push(() => makeCharacter(
  21953. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21954. {
  21955. front: {
  21956. height: math.unit(6 + 1 / 12, "feet"),
  21957. weight: math.unit(304, "lb"),
  21958. name: "Front",
  21959. image: {
  21960. source: "./media/characters/oliver/front.svg",
  21961. extra: 157 / 143,
  21962. bottom: 0.08
  21963. }
  21964. },
  21965. },
  21966. [
  21967. {
  21968. name: "Normal",
  21969. height: math.unit(6 + 1 / 12, "feet"),
  21970. default: true
  21971. },
  21972. ]
  21973. ))
  21974. characterMakers.push(() => makeCharacter(
  21975. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21976. {
  21977. front: {
  21978. height: math.unit(5 + 7 / 12, "feet"),
  21979. weight: math.unit(140, "lb"),
  21980. name: "Front",
  21981. image: {
  21982. source: "./media/characters/shane/front.svg",
  21983. extra: 304 / 289,
  21984. bottom: 0.005
  21985. }
  21986. },
  21987. },
  21988. [
  21989. {
  21990. name: "Normal",
  21991. height: math.unit(5 + 7 / 12, "feet"),
  21992. default: true
  21993. },
  21994. ]
  21995. ))
  21996. characterMakers.push(() => makeCharacter(
  21997. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21998. {
  21999. front: {
  22000. height: math.unit(5 + 9 / 12, "feet"),
  22001. weight: math.unit(178, "lb"),
  22002. name: "Front",
  22003. image: {
  22004. source: "./media/characters/shin/front.svg",
  22005. extra: 159 / 151,
  22006. bottom: 0.015
  22007. }
  22008. },
  22009. },
  22010. [
  22011. {
  22012. name: "Normal",
  22013. height: math.unit(5 + 9 / 12, "feet"),
  22014. default: true
  22015. },
  22016. ]
  22017. ))
  22018. characterMakers.push(() => makeCharacter(
  22019. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22020. {
  22021. front: {
  22022. height: math.unit(5 + 10 / 12, "feet"),
  22023. weight: math.unit(168, "lb"),
  22024. name: "Front",
  22025. image: {
  22026. source: "./media/characters/xerxes/front.svg",
  22027. extra: 282 / 260,
  22028. bottom: 0.045
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Normal",
  22035. height: math.unit(5 + 10 / 12, "feet"),
  22036. default: true
  22037. },
  22038. ]
  22039. ))
  22040. characterMakers.push(() => makeCharacter(
  22041. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22042. {
  22043. front: {
  22044. height: math.unit(6 + 7 / 12, "feet"),
  22045. weight: math.unit(208, "lb"),
  22046. name: "Front",
  22047. image: {
  22048. source: "./media/characters/chaska/front.svg",
  22049. extra: 332 / 319,
  22050. bottom: 0.015
  22051. }
  22052. },
  22053. },
  22054. [
  22055. {
  22056. name: "Normal",
  22057. height: math.unit(6 + 7 / 12, "feet"),
  22058. default: true
  22059. },
  22060. ]
  22061. ))
  22062. characterMakers.push(() => makeCharacter(
  22063. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22064. {
  22065. front: {
  22066. height: math.unit(5 + 8 / 12, "feet"),
  22067. weight: math.unit(208, "lb"),
  22068. name: "Front",
  22069. image: {
  22070. source: "./media/characters/enuk/front.svg",
  22071. extra: 437 / 406,
  22072. bottom: 0.02
  22073. }
  22074. },
  22075. },
  22076. [
  22077. {
  22078. name: "Normal",
  22079. height: math.unit(5 + 8 / 12, "feet"),
  22080. default: true
  22081. },
  22082. ]
  22083. ))
  22084. characterMakers.push(() => makeCharacter(
  22085. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22086. {
  22087. front: {
  22088. height: math.unit(5 + 10 / 12, "feet"),
  22089. weight: math.unit(252, "lb"),
  22090. name: "Front",
  22091. image: {
  22092. source: "./media/characters/bruun/front.svg",
  22093. extra: 197 / 187,
  22094. bottom: 0.012
  22095. }
  22096. },
  22097. },
  22098. [
  22099. {
  22100. name: "Normal",
  22101. height: math.unit(5 + 10 / 12, "feet"),
  22102. default: true
  22103. },
  22104. ]
  22105. ))
  22106. characterMakers.push(() => makeCharacter(
  22107. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22108. {
  22109. front: {
  22110. height: math.unit(6 + 10 / 12, "feet"),
  22111. weight: math.unit(255, "lb"),
  22112. name: "Front",
  22113. image: {
  22114. source: "./media/characters/alexeev/front.svg",
  22115. extra: 213 / 200,
  22116. bottom: 0.05
  22117. }
  22118. },
  22119. },
  22120. [
  22121. {
  22122. name: "Normal",
  22123. height: math.unit(6 + 10 / 12, "feet"),
  22124. default: true
  22125. },
  22126. ]
  22127. ))
  22128. characterMakers.push(() => makeCharacter(
  22129. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22130. {
  22131. front: {
  22132. height: math.unit(2 + 8 / 12, "feet"),
  22133. weight: math.unit(22, "lb"),
  22134. name: "Front",
  22135. image: {
  22136. source: "./media/characters/evelyn/front.svg",
  22137. extra: 208 / 180
  22138. }
  22139. },
  22140. },
  22141. [
  22142. {
  22143. name: "Normal",
  22144. height: math.unit(2 + 8 / 12, "feet"),
  22145. default: true
  22146. },
  22147. ]
  22148. ))
  22149. characterMakers.push(() => makeCharacter(
  22150. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22151. {
  22152. front: {
  22153. height: math.unit(5 + 9 / 12, "feet"),
  22154. weight: math.unit(139, "lb"),
  22155. name: "Front",
  22156. image: {
  22157. source: "./media/characters/inca/front.svg",
  22158. extra: 294 / 291,
  22159. bottom: 0.03
  22160. }
  22161. },
  22162. },
  22163. [
  22164. {
  22165. name: "Normal",
  22166. height: math.unit(5 + 9 / 12, "feet"),
  22167. default: true
  22168. },
  22169. ]
  22170. ))
  22171. characterMakers.push(() => makeCharacter(
  22172. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22173. {
  22174. front: {
  22175. height: math.unit(6 + 3 / 12, "feet"),
  22176. weight: math.unit(185, "lb"),
  22177. name: "Front",
  22178. image: {
  22179. source: "./media/characters/mera/front.svg",
  22180. extra: 291 / 277,
  22181. bottom: 0.03
  22182. }
  22183. },
  22184. },
  22185. [
  22186. {
  22187. name: "Normal",
  22188. height: math.unit(6 + 3 / 12, "feet"),
  22189. default: true
  22190. },
  22191. ]
  22192. ))
  22193. characterMakers.push(() => makeCharacter(
  22194. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22195. {
  22196. front: {
  22197. height: math.unit(6 + 7 / 12, "feet"),
  22198. weight: math.unit(160, "lb"),
  22199. name: "Front",
  22200. image: {
  22201. source: "./media/characters/ceres/front.svg",
  22202. extra: 1023 / 950,
  22203. bottom: 0.027
  22204. }
  22205. },
  22206. back: {
  22207. height: math.unit(6 + 7 / 12, "feet"),
  22208. weight: math.unit(160, "lb"),
  22209. name: "Back",
  22210. image: {
  22211. source: "./media/characters/ceres/back.svg",
  22212. extra: 1023 / 950
  22213. }
  22214. },
  22215. },
  22216. [
  22217. {
  22218. name: "Normal",
  22219. height: math.unit(6 + 7 / 12, "feet"),
  22220. default: true
  22221. },
  22222. ]
  22223. ))
  22224. characterMakers.push(() => makeCharacter(
  22225. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22226. {
  22227. front: {
  22228. height: math.unit(5 + 10 / 12, "feet"),
  22229. weight: math.unit(150, "lb"),
  22230. name: "Front",
  22231. image: {
  22232. source: "./media/characters/kris/front.svg",
  22233. extra: 885 / 803,
  22234. bottom: 0.03
  22235. }
  22236. },
  22237. },
  22238. [
  22239. {
  22240. name: "Normal",
  22241. height: math.unit(5 + 10 / 12, "feet"),
  22242. default: true
  22243. },
  22244. ]
  22245. ))
  22246. characterMakers.push(() => makeCharacter(
  22247. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22248. {
  22249. dragon_front: {
  22250. height: math.unit(5, "feet"),
  22251. name: "Front",
  22252. image: {
  22253. source: "./media/characters/taluthus/dragon-front.svg",
  22254. extra: 1203/1098,
  22255. bottom: 46/1249
  22256. },
  22257. form: "dragon",
  22258. default: true
  22259. },
  22260. dragon_maw: {
  22261. height: math.unit(2.35, "feet"),
  22262. name: "Maw",
  22263. image: {
  22264. source: "./media/characters/taluthus/dragon-maw.svg"
  22265. },
  22266. form: "dragon",
  22267. },
  22268. kitsune_front: {
  22269. height: math.unit(7, "feet"),
  22270. name: "Front",
  22271. image: {
  22272. source: "./media/characters/taluthus/kitsune-front.svg",
  22273. extra: 900/841,
  22274. bottom: 65/965
  22275. },
  22276. form: "kitsune",
  22277. default: true
  22278. },
  22279. },
  22280. [
  22281. {
  22282. name: "Normal",
  22283. height: math.unit(5, "feet"),
  22284. form: "dragon",
  22285. default: true,
  22286. },
  22287. {
  22288. name: "Normal",
  22289. height: math.unit(7, "feet"),
  22290. form: "kitsune",
  22291. default: true
  22292. },
  22293. {
  22294. name: "Macro",
  22295. height: math.unit(300, "feet"),
  22296. allForms: true
  22297. },
  22298. ],
  22299. {
  22300. "dragon": {
  22301. name: "Dragon",
  22302. default: true
  22303. },
  22304. "kitsune": {
  22305. name: "Kitsune",
  22306. },
  22307. }
  22308. ))
  22309. characterMakers.push(() => makeCharacter(
  22310. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22311. {
  22312. front: {
  22313. height: math.unit(5 + 9 / 12, "feet"),
  22314. weight: math.unit(145, "lb"),
  22315. name: "Front",
  22316. image: {
  22317. source: "./media/characters/dawn/front.svg",
  22318. extra: 2094 / 2016,
  22319. bottom: 0.025
  22320. }
  22321. },
  22322. back: {
  22323. height: math.unit(5 + 9 / 12, "feet"),
  22324. weight: math.unit(160, "lb"),
  22325. name: "Back",
  22326. image: {
  22327. source: "./media/characters/dawn/back.svg",
  22328. extra: 2112 / 2080,
  22329. bottom: 0.005
  22330. }
  22331. },
  22332. },
  22333. [
  22334. {
  22335. name: "Normal",
  22336. height: math.unit(6 + 7 / 12, "feet"),
  22337. default: true
  22338. },
  22339. ]
  22340. ))
  22341. characterMakers.push(() => makeCharacter(
  22342. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22343. {
  22344. anthro: {
  22345. height: math.unit(8 + 3 / 12, "feet"),
  22346. weight: math.unit(450, "lb"),
  22347. name: "Anthro",
  22348. image: {
  22349. source: "./media/characters/arador/anthro.svg",
  22350. extra: 1835 / 1718,
  22351. bottom: 0.025
  22352. }
  22353. },
  22354. feral: {
  22355. height: math.unit(4, "feet"),
  22356. weight: math.unit(200, "lb"),
  22357. name: "Feral",
  22358. image: {
  22359. source: "./media/characters/arador/feral.svg",
  22360. extra: 1683 / 1514,
  22361. bottom: 0.07
  22362. }
  22363. },
  22364. },
  22365. [
  22366. {
  22367. name: "Normal",
  22368. height: math.unit(8 + 3 / 12, "feet")
  22369. },
  22370. {
  22371. name: "Macro",
  22372. height: math.unit(82.5, "feet"),
  22373. default: true
  22374. },
  22375. ]
  22376. ))
  22377. characterMakers.push(() => makeCharacter(
  22378. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22379. {
  22380. front: {
  22381. height: math.unit(5 + 10 / 12, "feet"),
  22382. weight: math.unit(125, "lb"),
  22383. name: "Front",
  22384. image: {
  22385. source: "./media/characters/dharsi/front.svg",
  22386. extra: 716 / 630,
  22387. bottom: 0.035
  22388. }
  22389. },
  22390. },
  22391. [
  22392. {
  22393. name: "Nano",
  22394. height: math.unit(100, "nm")
  22395. },
  22396. {
  22397. name: "Micro",
  22398. height: math.unit(2, "inches")
  22399. },
  22400. {
  22401. name: "Normal",
  22402. height: math.unit(5 + 10 / 12, "feet"),
  22403. default: true
  22404. },
  22405. {
  22406. name: "Macro",
  22407. height: math.unit(1000, "feet")
  22408. },
  22409. {
  22410. name: "Megamacro",
  22411. height: math.unit(10, "miles")
  22412. },
  22413. {
  22414. name: "Gigamacro",
  22415. height: math.unit(3000, "miles")
  22416. },
  22417. {
  22418. name: "Teramacro",
  22419. height: math.unit(500000, "miles")
  22420. },
  22421. {
  22422. name: "Teramacro+",
  22423. height: math.unit(30, "galaxies")
  22424. },
  22425. ]
  22426. ))
  22427. characterMakers.push(() => makeCharacter(
  22428. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22429. {
  22430. front: {
  22431. height: math.unit(6, "feet"),
  22432. weight: math.unit(150, "lb"),
  22433. name: "Front",
  22434. image: {
  22435. source: "./media/characters/deathy/front.svg",
  22436. extra: 1552 / 1463,
  22437. bottom: 0.025
  22438. }
  22439. },
  22440. side: {
  22441. height: math.unit(6, "feet"),
  22442. weight: math.unit(150, "lb"),
  22443. name: "Side",
  22444. image: {
  22445. source: "./media/characters/deathy/side.svg",
  22446. extra: 1604 / 1455,
  22447. bottom: 0.025
  22448. }
  22449. },
  22450. back: {
  22451. height: math.unit(6, "feet"),
  22452. weight: math.unit(150, "lb"),
  22453. name: "Back",
  22454. image: {
  22455. source: "./media/characters/deathy/back.svg",
  22456. extra: 1580 / 1463,
  22457. bottom: 0.005
  22458. }
  22459. },
  22460. },
  22461. [
  22462. {
  22463. name: "Micro",
  22464. height: math.unit(5, "millimeters")
  22465. },
  22466. {
  22467. name: "Normal",
  22468. height: math.unit(6 + 5 / 12, "feet"),
  22469. default: true
  22470. },
  22471. ]
  22472. ))
  22473. characterMakers.push(() => makeCharacter(
  22474. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22475. {
  22476. front: {
  22477. height: math.unit(16, "feet"),
  22478. weight: math.unit(4000, "lb"),
  22479. name: "Front",
  22480. image: {
  22481. source: "./media/characters/juniper/front.svg",
  22482. bottom: 0.04
  22483. }
  22484. },
  22485. },
  22486. [
  22487. {
  22488. name: "Normal",
  22489. height: math.unit(16, "feet"),
  22490. default: true
  22491. },
  22492. ]
  22493. ))
  22494. characterMakers.push(() => makeCharacter(
  22495. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22496. {
  22497. front: {
  22498. height: math.unit(6, "feet"),
  22499. weight: math.unit(150, "lb"),
  22500. name: "Front",
  22501. image: {
  22502. source: "./media/characters/hipster/front.svg",
  22503. extra: 1312 / 1209,
  22504. bottom: 0.025
  22505. }
  22506. },
  22507. back: {
  22508. height: math.unit(6, "feet"),
  22509. weight: math.unit(150, "lb"),
  22510. name: "Back",
  22511. image: {
  22512. source: "./media/characters/hipster/back.svg",
  22513. extra: 1281 / 1196,
  22514. bottom: 0.01
  22515. }
  22516. },
  22517. },
  22518. [
  22519. {
  22520. name: "Micro",
  22521. height: math.unit(1, "mm")
  22522. },
  22523. {
  22524. name: "Normal",
  22525. height: math.unit(4, "inches"),
  22526. default: true
  22527. },
  22528. {
  22529. name: "Macro",
  22530. height: math.unit(500, "feet")
  22531. },
  22532. {
  22533. name: "Megamacro",
  22534. height: math.unit(1000, "miles")
  22535. },
  22536. ]
  22537. ))
  22538. characterMakers.push(() => makeCharacter(
  22539. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22540. {
  22541. front: {
  22542. height: math.unit(6, "feet"),
  22543. weight: math.unit(150, "lb"),
  22544. name: "Front",
  22545. image: {
  22546. source: "./media/characters/tendirmuldr/front.svg",
  22547. extra: 1878 / 1772,
  22548. bottom: 0.015
  22549. }
  22550. },
  22551. },
  22552. [
  22553. {
  22554. name: "Megamacro",
  22555. height: math.unit(1500, "miles"),
  22556. default: true
  22557. },
  22558. ]
  22559. ))
  22560. characterMakers.push(() => makeCharacter(
  22561. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22562. {
  22563. front: {
  22564. height: math.unit(14, "feet"),
  22565. weight: math.unit(12000, "lb"),
  22566. name: "Front",
  22567. image: {
  22568. source: "./media/characters/mort/front.svg",
  22569. extra: 365 / 318,
  22570. bottom: 0.01
  22571. }
  22572. },
  22573. side: {
  22574. height: math.unit(14, "feet"),
  22575. weight: math.unit(12000, "lb"),
  22576. name: "Side",
  22577. image: {
  22578. source: "./media/characters/mort/side.svg",
  22579. extra: 365 / 318,
  22580. bottom: 0.052
  22581. },
  22582. default: true
  22583. },
  22584. back: {
  22585. height: math.unit(14, "feet"),
  22586. weight: math.unit(12000, "lb"),
  22587. name: "Back",
  22588. image: {
  22589. source: "./media/characters/mort/back.svg",
  22590. extra: 371 / 332,
  22591. bottom: 0.18
  22592. }
  22593. },
  22594. },
  22595. [
  22596. {
  22597. name: "Normal",
  22598. height: math.unit(14, "feet"),
  22599. default: true
  22600. },
  22601. ]
  22602. ))
  22603. characterMakers.push(() => makeCharacter(
  22604. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22605. {
  22606. front: {
  22607. height: math.unit(8, "feet"),
  22608. weight: math.unit(1, "ton"),
  22609. name: "Front",
  22610. image: {
  22611. source: "./media/characters/lycoa/front.svg",
  22612. extra: 1836/1728,
  22613. bottom: 81/1917
  22614. }
  22615. },
  22616. back: {
  22617. height: math.unit(8, "feet"),
  22618. weight: math.unit(1, "ton"),
  22619. name: "Back",
  22620. image: {
  22621. source: "./media/characters/lycoa/back.svg",
  22622. extra: 1785/1720,
  22623. bottom: 91/1876
  22624. }
  22625. },
  22626. head: {
  22627. height: math.unit(1.6243, "feet"),
  22628. name: "Head",
  22629. image: {
  22630. source: "./media/characters/lycoa/head.svg",
  22631. extra: 1011/782,
  22632. bottom: 0/1011
  22633. }
  22634. },
  22635. tailmaw: {
  22636. height: math.unit(1.9, "feet"),
  22637. name: "Tailmaw",
  22638. image: {
  22639. source: "./media/characters/lycoa/tailmaw.svg"
  22640. }
  22641. },
  22642. tentacles: {
  22643. height: math.unit(2.1, "feet"),
  22644. name: "Tentacles",
  22645. image: {
  22646. source: "./media/characters/lycoa/tentacles.svg"
  22647. }
  22648. },
  22649. dick: {
  22650. height: math.unit(1.73, "feet"),
  22651. name: "Dick",
  22652. image: {
  22653. source: "./media/characters/lycoa/dick.svg"
  22654. }
  22655. },
  22656. },
  22657. [
  22658. {
  22659. name: "Normal",
  22660. height: math.unit(8, "feet"),
  22661. default: true
  22662. },
  22663. {
  22664. name: "Macro",
  22665. height: math.unit(30, "feet")
  22666. },
  22667. ]
  22668. ))
  22669. characterMakers.push(() => makeCharacter(
  22670. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22671. {
  22672. front: {
  22673. height: math.unit(4 + 2 / 12, "feet"),
  22674. weight: math.unit(70, "lb"),
  22675. name: "Front",
  22676. image: {
  22677. source: "./media/characters/naldara/front.svg",
  22678. extra: 1664/1387,
  22679. bottom: 81/1745
  22680. },
  22681. form: "anthro",
  22682. default: true
  22683. },
  22684. naga: {
  22685. height: math.unit(20, "feet"),
  22686. weight: math.unit(15000, "kg"),
  22687. name: "Front",
  22688. image: {
  22689. source: "./media/characters/naldara/naga.svg",
  22690. extra: 1590/1396,
  22691. bottom: 285/1875
  22692. },
  22693. form: "naga",
  22694. default: true
  22695. },
  22696. },
  22697. [
  22698. {
  22699. name: "Normal",
  22700. height: math.unit(4 + 2 / 12, "feet"),
  22701. form: "anthro",
  22702. default: true
  22703. },
  22704. {
  22705. name: "Normal",
  22706. height: math.unit(20, "feet"),
  22707. form: "naga",
  22708. default: true
  22709. },
  22710. ],
  22711. {
  22712. "anthro": {
  22713. name: "Anthro",
  22714. default: true
  22715. },
  22716. "naga": {
  22717. name: "Naga"
  22718. }
  22719. }
  22720. ))
  22721. characterMakers.push(() => makeCharacter(
  22722. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22723. {
  22724. front: {
  22725. height: math.unit(13 + 7 / 12, "feet"),
  22726. weight: math.unit(1500, "lb"),
  22727. name: "Front",
  22728. image: {
  22729. source: "./media/characters/briar/front.svg",
  22730. extra: 1223/1157,
  22731. bottom: 123/1346
  22732. }
  22733. },
  22734. },
  22735. [
  22736. {
  22737. name: "Normal",
  22738. height: math.unit(13 + 7 / 12, "feet"),
  22739. default: true
  22740. },
  22741. ]
  22742. ))
  22743. characterMakers.push(() => makeCharacter(
  22744. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22745. {
  22746. side: {
  22747. height: math.unit(16, "feet"),
  22748. weight: math.unit(500, "lb"),
  22749. name: "Side",
  22750. image: {
  22751. source: "./media/characters/vanguard/side.svg",
  22752. extra: 1022/914,
  22753. bottom: 30/1052
  22754. }
  22755. },
  22756. sideAlt: {
  22757. height: math.unit(10, "feet"),
  22758. weight: math.unit(500, "lb"),
  22759. name: "Side (Alt)",
  22760. image: {
  22761. source: "./media/characters/vanguard/side-alt.svg",
  22762. extra: 502 / 425,
  22763. bottom: 0.087
  22764. }
  22765. },
  22766. },
  22767. [
  22768. {
  22769. name: "Normal",
  22770. height: math.unit(17.71, "feet"),
  22771. default: true
  22772. },
  22773. ]
  22774. ))
  22775. characterMakers.push(() => makeCharacter(
  22776. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22777. {
  22778. front: {
  22779. height: math.unit(7.5, "feet"),
  22780. weight: math.unit(2, "lb"),
  22781. name: "Front",
  22782. image: {
  22783. source: "./media/characters/artemis/work-safe-front.svg",
  22784. extra: 1192 / 1075,
  22785. bottom: 0.07
  22786. },
  22787. form: "work-safe",
  22788. default: true
  22789. },
  22790. frontNsfw: {
  22791. height: math.unit(7.5, "feet"),
  22792. weight: math.unit(2, "lb"),
  22793. name: "Front",
  22794. image: {
  22795. source: "./media/characters/artemis/calibrating-front.svg",
  22796. extra: 1192 / 1075,
  22797. bottom: 0.07
  22798. },
  22799. form: "calibrating",
  22800. default: true
  22801. },
  22802. frontNsfwer: {
  22803. height: math.unit(7.5, "feet"),
  22804. weight: math.unit(2, "lb"),
  22805. name: "Front",
  22806. image: {
  22807. source: "./media/characters/artemis/oversize-load-front.svg",
  22808. extra: 1192 / 1075,
  22809. bottom: 0.07
  22810. },
  22811. form: "oversize-load",
  22812. default: true
  22813. },
  22814. side: {
  22815. height: math.unit(7.5, "feet"),
  22816. weight: math.unit(2, "lb"),
  22817. name: "Side",
  22818. image: {
  22819. source: "./media/characters/artemis/work-safe-side.svg",
  22820. extra: 1192 / 1075,
  22821. bottom: 0.07
  22822. },
  22823. form: "work-safe"
  22824. },
  22825. sideNsfw: {
  22826. height: math.unit(7.5, "feet"),
  22827. weight: math.unit(2, "lb"),
  22828. name: "Side",
  22829. image: {
  22830. source: "./media/characters/artemis/calibrating-side.svg",
  22831. extra: 1192 / 1075,
  22832. bottom: 0.07
  22833. },
  22834. form: "calibrating"
  22835. },
  22836. sideNsfwer: {
  22837. height: math.unit(7.5, "feet"),
  22838. weight: math.unit(2, "lb"),
  22839. name: "Side",
  22840. image: {
  22841. source: "./media/characters/artemis/oversize-load-side.svg",
  22842. extra: 1192 / 1075,
  22843. bottom: 0.07
  22844. },
  22845. form: "oversize-load"
  22846. },
  22847. maw: {
  22848. height: math.unit(1.1, "feet"),
  22849. name: "Maw",
  22850. image: {
  22851. source: "./media/characters/artemis/maw.svg"
  22852. },
  22853. form: "work-safe"
  22854. },
  22855. stomach: {
  22856. height: math.unit(0.95, "feet"),
  22857. name: "Stomach",
  22858. image: {
  22859. source: "./media/characters/artemis/stomach.svg"
  22860. },
  22861. form: "work-safe"
  22862. },
  22863. dickCanine: {
  22864. height: math.unit(1, "feet"),
  22865. name: "Dick (Canine)",
  22866. image: {
  22867. source: "./media/characters/artemis/dick-canine.svg"
  22868. },
  22869. form: "calibrating"
  22870. },
  22871. dickEquine: {
  22872. height: math.unit(0.85, "feet"),
  22873. name: "Dick (Equine)",
  22874. image: {
  22875. source: "./media/characters/artemis/dick-equine.svg"
  22876. },
  22877. form: "calibrating"
  22878. },
  22879. dickExotic: {
  22880. height: math.unit(0.85, "feet"),
  22881. name: "Dick (Exotic)",
  22882. image: {
  22883. source: "./media/characters/artemis/dick-exotic.svg"
  22884. },
  22885. form: "calibrating"
  22886. },
  22887. dickCanineBigger: {
  22888. height: math.unit(1 * 1.33, "feet"),
  22889. name: "Dick (Canine)",
  22890. image: {
  22891. source: "./media/characters/artemis/dick-canine.svg"
  22892. },
  22893. form: "oversize-load"
  22894. },
  22895. dickEquineBigger: {
  22896. height: math.unit(0.85 * 1.33, "feet"),
  22897. name: "Dick (Equine)",
  22898. image: {
  22899. source: "./media/characters/artemis/dick-equine.svg"
  22900. },
  22901. form: "oversize-load"
  22902. },
  22903. dickExoticBigger: {
  22904. height: math.unit(0.85 * 1.33, "feet"),
  22905. name: "Dick (Exotic)",
  22906. image: {
  22907. source: "./media/characters/artemis/dick-exotic.svg"
  22908. },
  22909. form: "oversize-load"
  22910. },
  22911. },
  22912. [
  22913. {
  22914. name: "Normal",
  22915. height: math.unit(7.5, "feet"),
  22916. form: "work-safe",
  22917. default: true
  22918. },
  22919. {
  22920. name: "Normal",
  22921. height: math.unit(7.5, "feet"),
  22922. form: "calibrating",
  22923. default: true
  22924. },
  22925. {
  22926. name: "Normal",
  22927. height: math.unit(7.5, "feet"),
  22928. form: "oversize-load",
  22929. default: true
  22930. },
  22931. {
  22932. name: "Enlarged",
  22933. height: math.unit(12, "feet"),
  22934. form: "work-safe",
  22935. },
  22936. {
  22937. name: "Enlarged",
  22938. height: math.unit(12, "feet"),
  22939. form: "calibrating",
  22940. },
  22941. {
  22942. name: "Enlarged",
  22943. height: math.unit(12, "feet"),
  22944. form: "oversize-load",
  22945. },
  22946. ],
  22947. {
  22948. "work-safe": {
  22949. name: "Work-Safe",
  22950. default: true
  22951. },
  22952. "calibrating": {
  22953. name: "Calibrating"
  22954. },
  22955. "oversize-load": {
  22956. name: "Oversize Load"
  22957. }
  22958. }
  22959. ))
  22960. characterMakers.push(() => makeCharacter(
  22961. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22962. {
  22963. front: {
  22964. height: math.unit(5 + 3 / 12, "feet"),
  22965. weight: math.unit(160, "lb"),
  22966. name: "Front",
  22967. image: {
  22968. source: "./media/characters/kira/front.svg",
  22969. extra: 906 / 786,
  22970. bottom: 0.01
  22971. }
  22972. },
  22973. back: {
  22974. height: math.unit(5 + 3 / 12, "feet"),
  22975. weight: math.unit(160, "lb"),
  22976. name: "Back",
  22977. image: {
  22978. source: "./media/characters/kira/back.svg",
  22979. extra: 882 / 757,
  22980. bottom: 0.005
  22981. }
  22982. },
  22983. frontDressed: {
  22984. height: math.unit(5 + 3 / 12, "feet"),
  22985. weight: math.unit(160, "lb"),
  22986. name: "Front (Dressed)",
  22987. image: {
  22988. source: "./media/characters/kira/front-dressed.svg",
  22989. extra: 906 / 786,
  22990. bottom: 0.01
  22991. }
  22992. },
  22993. beans: {
  22994. height: math.unit(0.92, "feet"),
  22995. name: "Beans",
  22996. image: {
  22997. source: "./media/characters/kira/beans.svg"
  22998. }
  22999. },
  23000. },
  23001. [
  23002. {
  23003. name: "Normal",
  23004. height: math.unit(5 + 3 / 12, "feet"),
  23005. default: true
  23006. },
  23007. ]
  23008. ))
  23009. characterMakers.push(() => makeCharacter(
  23010. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23011. {
  23012. front: {
  23013. height: math.unit(5 + 4 / 12, "feet"),
  23014. weight: math.unit(145, "lb"),
  23015. name: "Front",
  23016. image: {
  23017. source: "./media/characters/scramble/front.svg",
  23018. extra: 763 / 727,
  23019. bottom: 0.05
  23020. }
  23021. },
  23022. back: {
  23023. height: math.unit(5 + 4 / 12, "feet"),
  23024. weight: math.unit(145, "lb"),
  23025. name: "Back",
  23026. image: {
  23027. source: "./media/characters/scramble/back.svg",
  23028. extra: 826 / 737,
  23029. bottom: 0.002
  23030. }
  23031. },
  23032. },
  23033. [
  23034. {
  23035. name: "Normal",
  23036. height: math.unit(5 + 4 / 12, "feet"),
  23037. default: true
  23038. },
  23039. ]
  23040. ))
  23041. characterMakers.push(() => makeCharacter(
  23042. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23043. {
  23044. side: {
  23045. height: math.unit(6 + 2 / 12, "feet"),
  23046. weight: math.unit(190, "lb"),
  23047. name: "Side",
  23048. image: {
  23049. source: "./media/characters/biscuit/side.svg",
  23050. extra: 858 / 791,
  23051. bottom: 0.044
  23052. }
  23053. },
  23054. },
  23055. [
  23056. {
  23057. name: "Normal",
  23058. height: math.unit(6 + 2 / 12, "feet"),
  23059. default: true
  23060. },
  23061. ]
  23062. ))
  23063. characterMakers.push(() => makeCharacter(
  23064. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23065. {
  23066. front: {
  23067. height: math.unit(5 + 2 / 12, "feet"),
  23068. weight: math.unit(120, "lb"),
  23069. name: "Front",
  23070. image: {
  23071. source: "./media/characters/poffin/front.svg",
  23072. extra: 786 / 680,
  23073. bottom: 0.005
  23074. }
  23075. },
  23076. },
  23077. [
  23078. {
  23079. name: "Normal",
  23080. height: math.unit(5 + 2 / 12, "feet"),
  23081. default: true
  23082. },
  23083. ]
  23084. ))
  23085. characterMakers.push(() => makeCharacter(
  23086. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23087. {
  23088. front: {
  23089. height: math.unit(6 + 3 / 12, "feet"),
  23090. weight: math.unit(519, "lb"),
  23091. name: "Front",
  23092. image: {
  23093. source: "./media/characters/dhari/front.svg",
  23094. extra: 1048 / 946,
  23095. bottom: 0.015
  23096. }
  23097. },
  23098. back: {
  23099. height: math.unit(6 + 3 / 12, "feet"),
  23100. weight: math.unit(519, "lb"),
  23101. name: "Back",
  23102. image: {
  23103. source: "./media/characters/dhari/back.svg",
  23104. extra: 1048 / 931,
  23105. bottom: 0.005
  23106. }
  23107. },
  23108. frontDressed: {
  23109. height: math.unit(6 + 3 / 12, "feet"),
  23110. weight: math.unit(519, "lb"),
  23111. name: "Front (Dressed)",
  23112. image: {
  23113. source: "./media/characters/dhari/front-dressed.svg",
  23114. extra: 1713 / 1546,
  23115. bottom: 0.02
  23116. }
  23117. },
  23118. backDressed: {
  23119. height: math.unit(6 + 3 / 12, "feet"),
  23120. weight: math.unit(519, "lb"),
  23121. name: "Back (Dressed)",
  23122. image: {
  23123. source: "./media/characters/dhari/back-dressed.svg",
  23124. extra: 1699 / 1537,
  23125. bottom: 0.01
  23126. }
  23127. },
  23128. maw: {
  23129. height: math.unit(0.95, "feet"),
  23130. name: "Maw",
  23131. image: {
  23132. source: "./media/characters/dhari/maw.svg"
  23133. }
  23134. },
  23135. wereFront: {
  23136. height: math.unit(12 + 8 / 12, "feet"),
  23137. weight: math.unit(4000, "lb"),
  23138. name: "Front (Were)",
  23139. image: {
  23140. source: "./media/characters/dhari/were-front.svg",
  23141. extra: 1065 / 969,
  23142. bottom: 0.015
  23143. }
  23144. },
  23145. wereBack: {
  23146. height: math.unit(12 + 8 / 12, "feet"),
  23147. weight: math.unit(4000, "lb"),
  23148. name: "Back (Were)",
  23149. image: {
  23150. source: "./media/characters/dhari/were-back.svg",
  23151. extra: 1065 / 969,
  23152. bottom: 0.012
  23153. }
  23154. },
  23155. wereMaw: {
  23156. height: math.unit(0.625, "meters"),
  23157. name: "Maw (Were)",
  23158. image: {
  23159. source: "./media/characters/dhari/were-maw.svg"
  23160. }
  23161. },
  23162. },
  23163. [
  23164. {
  23165. name: "Normal",
  23166. height: math.unit(6 + 3 / 12, "feet"),
  23167. default: true
  23168. },
  23169. ]
  23170. ))
  23171. characterMakers.push(() => makeCharacter(
  23172. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23173. {
  23174. anthro: {
  23175. height: math.unit(5 + 7 / 12, "feet"),
  23176. weight: math.unit(175, "lb"),
  23177. name: "Anthro",
  23178. image: {
  23179. source: "./media/characters/rena-dyne/anthro.svg",
  23180. extra: 1849 / 1785,
  23181. bottom: 0.005
  23182. }
  23183. },
  23184. taur: {
  23185. height: math.unit(15 + 6 / 12, "feet"),
  23186. weight: math.unit(8000, "lb"),
  23187. name: "Taur",
  23188. image: {
  23189. source: "./media/characters/rena-dyne/taur.svg",
  23190. extra: 2315 / 2234,
  23191. bottom: 0.033
  23192. }
  23193. },
  23194. },
  23195. [
  23196. {
  23197. name: "Normal",
  23198. height: math.unit(5 + 7 / 12, "feet"),
  23199. default: true
  23200. },
  23201. ]
  23202. ))
  23203. characterMakers.push(() => makeCharacter(
  23204. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23205. {
  23206. front: {
  23207. height: math.unit(8, "feet"),
  23208. weight: math.unit(600, "lb"),
  23209. name: "Front",
  23210. image: {
  23211. source: "./media/characters/weremeep/front.svg",
  23212. extra: 970/849,
  23213. bottom: 7/977
  23214. }
  23215. },
  23216. },
  23217. [
  23218. {
  23219. name: "Normal",
  23220. height: math.unit(8, "feet"),
  23221. default: true
  23222. },
  23223. {
  23224. name: "Lorg",
  23225. height: math.unit(12, "feet")
  23226. },
  23227. {
  23228. name: "Oh Lawd She Comin'",
  23229. height: math.unit(20, "feet")
  23230. },
  23231. ]
  23232. ))
  23233. characterMakers.push(() => makeCharacter(
  23234. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23235. {
  23236. front: {
  23237. height: math.unit(4, "feet"),
  23238. weight: math.unit(90, "lb"),
  23239. name: "Front",
  23240. image: {
  23241. source: "./media/characters/reza/front.svg",
  23242. extra: 1183 / 1111,
  23243. bottom: 0.017
  23244. }
  23245. },
  23246. back: {
  23247. height: math.unit(4, "feet"),
  23248. weight: math.unit(90, "lb"),
  23249. name: "Back",
  23250. image: {
  23251. source: "./media/characters/reza/back.svg",
  23252. extra: 1183 / 1111,
  23253. bottom: 0.01
  23254. }
  23255. },
  23256. drake: {
  23257. height: math.unit(30, "feet"),
  23258. weight: math.unit(246960, "lb"),
  23259. name: "Drake",
  23260. image: {
  23261. source: "./media/characters/reza/drake.svg",
  23262. extra: 2350 / 2024,
  23263. bottom: 60.7 / 2403
  23264. }
  23265. },
  23266. },
  23267. [
  23268. {
  23269. name: "Normal",
  23270. height: math.unit(4, "feet"),
  23271. default: true
  23272. },
  23273. ]
  23274. ))
  23275. characterMakers.push(() => makeCharacter(
  23276. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23277. {
  23278. side: {
  23279. height: math.unit(15, "feet"),
  23280. weight: math.unit(14, "tons"),
  23281. name: "Side",
  23282. image: {
  23283. source: "./media/characters/athea/side.svg",
  23284. extra: 960 / 540,
  23285. bottom: 0.003
  23286. }
  23287. },
  23288. sitting: {
  23289. height: math.unit(6 * 2.85, "feet"),
  23290. weight: math.unit(14, "tons"),
  23291. name: "Sitting",
  23292. image: {
  23293. source: "./media/characters/athea/sitting.svg",
  23294. extra: 621 / 581,
  23295. bottom: 0.075
  23296. }
  23297. },
  23298. maw: {
  23299. height: math.unit(7.59498031496063, "feet"),
  23300. name: "Maw",
  23301. image: {
  23302. source: "./media/characters/athea/maw.svg"
  23303. }
  23304. },
  23305. },
  23306. [
  23307. {
  23308. name: "Lap Cat",
  23309. height: math.unit(2.5, "feet")
  23310. },
  23311. {
  23312. name: "Minimacro",
  23313. height: math.unit(15, "feet"),
  23314. default: true
  23315. },
  23316. {
  23317. name: "Macro",
  23318. height: math.unit(120, "feet")
  23319. },
  23320. {
  23321. name: "Macro+",
  23322. height: math.unit(640, "feet")
  23323. },
  23324. {
  23325. name: "Colossus",
  23326. height: math.unit(2.2, "miles")
  23327. },
  23328. ]
  23329. ))
  23330. characterMakers.push(() => makeCharacter(
  23331. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23332. {
  23333. front: {
  23334. height: math.unit(8 + 8 / 12, "feet"),
  23335. weight: math.unit(130, "kg"),
  23336. name: "Front",
  23337. image: {
  23338. source: "./media/characters/seroko/front.svg",
  23339. extra: 1385 / 1280,
  23340. bottom: 0.025
  23341. }
  23342. },
  23343. back: {
  23344. height: math.unit(8 + 8 / 12, "feet"),
  23345. weight: math.unit(130, "kg"),
  23346. name: "Back",
  23347. image: {
  23348. source: "./media/characters/seroko/back.svg",
  23349. extra: 1369 / 1238,
  23350. bottom: 0.018
  23351. }
  23352. },
  23353. frontDressed: {
  23354. height: math.unit(8 + 8 / 12, "feet"),
  23355. weight: math.unit(130, "kg"),
  23356. name: "Front (Dressed)",
  23357. image: {
  23358. source: "./media/characters/seroko/front-dressed.svg",
  23359. extra: 1366 / 1275,
  23360. bottom: 0.03
  23361. }
  23362. },
  23363. },
  23364. [
  23365. {
  23366. name: "Normal",
  23367. height: math.unit(8 + 8 / 12, "feet"),
  23368. default: true
  23369. },
  23370. ]
  23371. ))
  23372. characterMakers.push(() => makeCharacter(
  23373. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23374. {
  23375. front: {
  23376. height: math.unit(5.5, "feet"),
  23377. weight: math.unit(160, "lb"),
  23378. name: "Front",
  23379. image: {
  23380. source: "./media/characters/quatzi/front.svg",
  23381. extra: 2346 / 2242,
  23382. bottom: 0.015
  23383. }
  23384. },
  23385. },
  23386. [
  23387. {
  23388. name: "Normal",
  23389. height: math.unit(5.5, "feet"),
  23390. default: true
  23391. },
  23392. {
  23393. name: "Big",
  23394. height: math.unit(7.7, "feet")
  23395. },
  23396. ]
  23397. ))
  23398. characterMakers.push(() => makeCharacter(
  23399. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23400. {
  23401. front: {
  23402. height: math.unit(5 + 11 / 12, "feet"),
  23403. weight: math.unit(180, "lb"),
  23404. name: "Front",
  23405. image: {
  23406. source: "./media/characters/sen/front.svg",
  23407. extra: 1321 / 1254,
  23408. bottom: 0.015
  23409. }
  23410. },
  23411. side: {
  23412. height: math.unit(5 + 11 / 12, "feet"),
  23413. weight: math.unit(180, "lb"),
  23414. name: "Side",
  23415. image: {
  23416. source: "./media/characters/sen/side.svg",
  23417. extra: 1321 / 1254,
  23418. bottom: 0.007
  23419. }
  23420. },
  23421. back: {
  23422. height: math.unit(5 + 11 / 12, "feet"),
  23423. weight: math.unit(180, "lb"),
  23424. name: "Back",
  23425. image: {
  23426. source: "./media/characters/sen/back.svg",
  23427. extra: 1321 / 1254
  23428. }
  23429. },
  23430. },
  23431. [
  23432. {
  23433. name: "Normal",
  23434. height: math.unit(5 + 11 / 12, "feet"),
  23435. default: true
  23436. },
  23437. ]
  23438. ))
  23439. characterMakers.push(() => makeCharacter(
  23440. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23441. {
  23442. front: {
  23443. height: math.unit(166.6, "cm"),
  23444. weight: math.unit(66.6, "kg"),
  23445. name: "Front",
  23446. image: {
  23447. source: "./media/characters/fruity/front.svg",
  23448. extra: 1510 / 1386,
  23449. bottom: 0.04
  23450. }
  23451. },
  23452. back: {
  23453. height: math.unit(166.6, "cm"),
  23454. weight: math.unit(66.6, "lb"),
  23455. name: "Back",
  23456. image: {
  23457. source: "./media/characters/fruity/back.svg",
  23458. extra: 1563 / 1435,
  23459. bottom: 0.005
  23460. }
  23461. },
  23462. },
  23463. [
  23464. {
  23465. name: "Normal",
  23466. height: math.unit(166.6, "cm"),
  23467. default: true
  23468. },
  23469. {
  23470. name: "Demonic",
  23471. height: math.unit(166.6, "feet")
  23472. },
  23473. ]
  23474. ))
  23475. characterMakers.push(() => makeCharacter(
  23476. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23477. {
  23478. side: {
  23479. height: math.unit(10, "feet"),
  23480. weight: math.unit(500, "lb"),
  23481. name: "Side",
  23482. image: {
  23483. source: "./media/characters/zost/side.svg",
  23484. extra: 2870/2533,
  23485. bottom: 252/3122
  23486. }
  23487. },
  23488. mawFront: {
  23489. height: math.unit(1.08, "meters"),
  23490. name: "Maw (Front)",
  23491. image: {
  23492. source: "./media/characters/zost/maw-front.svg"
  23493. }
  23494. },
  23495. mawSide: {
  23496. height: math.unit(2.66, "feet"),
  23497. name: "Maw (Side)",
  23498. image: {
  23499. source: "./media/characters/zost/maw-side.svg"
  23500. }
  23501. },
  23502. wingspan: {
  23503. height: math.unit(7.4, "feet"),
  23504. name: "Wingspan",
  23505. image: {
  23506. source: "./media/characters/zost/wingspan.svg"
  23507. }
  23508. },
  23509. },
  23510. [
  23511. {
  23512. name: "Normal",
  23513. height: math.unit(10, "feet"),
  23514. default: true
  23515. },
  23516. ]
  23517. ))
  23518. characterMakers.push(() => makeCharacter(
  23519. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23520. {
  23521. front: {
  23522. height: math.unit(5 + 4 / 12, "feet"),
  23523. weight: math.unit(120, "lb"),
  23524. name: "Front",
  23525. image: {
  23526. source: "./media/characters/luci/front.svg",
  23527. extra: 1985 / 1884,
  23528. bottom: 0.04
  23529. }
  23530. },
  23531. back: {
  23532. height: math.unit(5 + 4 / 12, "feet"),
  23533. weight: math.unit(120, "lb"),
  23534. name: "Back",
  23535. image: {
  23536. source: "./media/characters/luci/back.svg",
  23537. extra: 1892 / 1791,
  23538. bottom: 0.002
  23539. }
  23540. },
  23541. },
  23542. [
  23543. {
  23544. name: "Normal",
  23545. height: math.unit(5 + 4 / 12, "feet"),
  23546. default: true
  23547. },
  23548. ]
  23549. ))
  23550. characterMakers.push(() => makeCharacter(
  23551. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23552. {
  23553. front: {
  23554. height: math.unit(1500, "feet"),
  23555. weight: math.unit(3.8e6, "tons"),
  23556. name: "Front",
  23557. image: {
  23558. source: "./media/characters/2th/front.svg",
  23559. extra: 3489 / 3350,
  23560. bottom: 0.1
  23561. }
  23562. },
  23563. foot: {
  23564. height: math.unit(461, "feet"),
  23565. name: "Foot",
  23566. image: {
  23567. source: "./media/characters/2th/foot.svg"
  23568. }
  23569. },
  23570. },
  23571. [
  23572. {
  23573. name: "\"Micro\"",
  23574. height: math.unit(15 + 7 / 12, "feet")
  23575. },
  23576. {
  23577. name: "Normal",
  23578. height: math.unit(1500, "feet"),
  23579. default: true
  23580. },
  23581. {
  23582. name: "Macro",
  23583. height: math.unit(5000, "feet")
  23584. },
  23585. {
  23586. name: "Megamacro",
  23587. height: math.unit(15, "miles")
  23588. },
  23589. {
  23590. name: "Gigamacro",
  23591. height: math.unit(4000, "miles")
  23592. },
  23593. {
  23594. name: "Galactic",
  23595. height: math.unit(50, "AU")
  23596. },
  23597. ]
  23598. ))
  23599. characterMakers.push(() => makeCharacter(
  23600. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23601. {
  23602. front: {
  23603. height: math.unit(5 + 6 / 12, "feet"),
  23604. weight: math.unit(220, "lb"),
  23605. name: "Front",
  23606. image: {
  23607. source: "./media/characters/amethyst/front.svg",
  23608. extra: 2078 / 2040,
  23609. bottom: 0.045
  23610. }
  23611. },
  23612. back: {
  23613. height: math.unit(5 + 6 / 12, "feet"),
  23614. weight: math.unit(220, "lb"),
  23615. name: "Back",
  23616. image: {
  23617. source: "./media/characters/amethyst/back.svg",
  23618. extra: 2021 / 1989,
  23619. bottom: 0.02
  23620. }
  23621. },
  23622. },
  23623. [
  23624. {
  23625. name: "Normal",
  23626. height: math.unit(5 + 6 / 12, "feet"),
  23627. default: true
  23628. },
  23629. ]
  23630. ))
  23631. characterMakers.push(() => makeCharacter(
  23632. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23633. {
  23634. front: {
  23635. height: math.unit(4 + 11 / 12, "feet"),
  23636. weight: math.unit(120, "lb"),
  23637. name: "Front",
  23638. image: {
  23639. source: "./media/characters/yumi-akiyama/front.svg",
  23640. extra: 1327 / 1235,
  23641. bottom: 0.02
  23642. }
  23643. },
  23644. back: {
  23645. height: math.unit(4 + 11 / 12, "feet"),
  23646. weight: math.unit(120, "lb"),
  23647. name: "Back",
  23648. image: {
  23649. source: "./media/characters/yumi-akiyama/back.svg",
  23650. extra: 1287 / 1245,
  23651. bottom: 0.002
  23652. }
  23653. },
  23654. },
  23655. [
  23656. {
  23657. name: "Galactic",
  23658. height: math.unit(50, "galaxies"),
  23659. default: true
  23660. },
  23661. {
  23662. name: "Universal",
  23663. height: math.unit(100, "universes")
  23664. },
  23665. ]
  23666. ))
  23667. characterMakers.push(() => makeCharacter(
  23668. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23669. {
  23670. front: {
  23671. height: math.unit(8, "feet"),
  23672. weight: math.unit(500, "lb"),
  23673. name: "Front",
  23674. image: {
  23675. source: "./media/characters/rifter-yrmori/front.svg",
  23676. extra: 1180 / 1125,
  23677. bottom: 0.02
  23678. }
  23679. },
  23680. back: {
  23681. height: math.unit(8, "feet"),
  23682. weight: math.unit(500, "lb"),
  23683. name: "Back",
  23684. image: {
  23685. source: "./media/characters/rifter-yrmori/back.svg",
  23686. extra: 1190 / 1145,
  23687. bottom: 0.001
  23688. }
  23689. },
  23690. wings: {
  23691. height: math.unit(7.75, "feet"),
  23692. weight: math.unit(500, "lb"),
  23693. name: "Wings",
  23694. image: {
  23695. source: "./media/characters/rifter-yrmori/wings.svg",
  23696. extra: 1357 / 1285
  23697. }
  23698. },
  23699. maw: {
  23700. height: math.unit(0.8, "feet"),
  23701. name: "Maw",
  23702. image: {
  23703. source: "./media/characters/rifter-yrmori/maw.svg"
  23704. }
  23705. },
  23706. mawfront: {
  23707. height: math.unit(1.45, "feet"),
  23708. name: "Maw (Front)",
  23709. image: {
  23710. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23711. }
  23712. },
  23713. },
  23714. [
  23715. {
  23716. name: "Normal",
  23717. height: math.unit(8, "feet"),
  23718. default: true
  23719. },
  23720. {
  23721. name: "Macro",
  23722. height: math.unit(42, "meters")
  23723. },
  23724. ]
  23725. ))
  23726. characterMakers.push(() => makeCharacter(
  23727. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23728. {
  23729. were: {
  23730. height: math.unit(25 + 6 / 12, "feet"),
  23731. weight: math.unit(10000, "lb"),
  23732. name: "Were",
  23733. image: {
  23734. source: "./media/characters/tahajin/were.svg",
  23735. extra: 801 / 770,
  23736. bottom: 0.042
  23737. }
  23738. },
  23739. aquatic: {
  23740. height: math.unit(6 + 4 / 12, "feet"),
  23741. weight: math.unit(160, "lb"),
  23742. name: "Aquatic",
  23743. image: {
  23744. source: "./media/characters/tahajin/aquatic.svg",
  23745. extra: 572 / 542,
  23746. bottom: 0.04
  23747. }
  23748. },
  23749. chow: {
  23750. height: math.unit(8 + 11 / 12, "feet"),
  23751. weight: math.unit(450, "lb"),
  23752. name: "Chow",
  23753. image: {
  23754. source: "./media/characters/tahajin/chow.svg",
  23755. extra: 660 / 640,
  23756. bottom: 0.015
  23757. }
  23758. },
  23759. demiNaga: {
  23760. height: math.unit(6 + 8 / 12, "feet"),
  23761. weight: math.unit(300, "lb"),
  23762. name: "Demi Naga",
  23763. image: {
  23764. source: "./media/characters/tahajin/demi-naga.svg",
  23765. extra: 643 / 615,
  23766. bottom: 0.1
  23767. }
  23768. },
  23769. data: {
  23770. height: math.unit(5, "inches"),
  23771. weight: math.unit(0.1, "lb"),
  23772. name: "Data",
  23773. image: {
  23774. source: "./media/characters/tahajin/data.svg"
  23775. }
  23776. },
  23777. fluu: {
  23778. height: math.unit(5 + 7 / 12, "feet"),
  23779. weight: math.unit(140, "lb"),
  23780. name: "Fluu",
  23781. image: {
  23782. source: "./media/characters/tahajin/fluu.svg",
  23783. extra: 628 / 592,
  23784. bottom: 0.02
  23785. }
  23786. },
  23787. starWarrior: {
  23788. height: math.unit(4 + 5 / 12, "feet"),
  23789. weight: math.unit(50, "lb"),
  23790. name: "Star Warrior",
  23791. image: {
  23792. source: "./media/characters/tahajin/star-warrior.svg"
  23793. }
  23794. },
  23795. },
  23796. [
  23797. {
  23798. name: "Normal",
  23799. height: math.unit(25 + 6 / 12, "feet"),
  23800. default: true
  23801. },
  23802. ]
  23803. ))
  23804. characterMakers.push(() => makeCharacter(
  23805. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23806. {
  23807. front: {
  23808. height: math.unit(8, "feet"),
  23809. weight: math.unit(350, "lb"),
  23810. name: "Front",
  23811. image: {
  23812. source: "./media/characters/gabira/front.svg",
  23813. extra: 1261/1154,
  23814. bottom: 51/1312
  23815. }
  23816. },
  23817. back: {
  23818. height: math.unit(8, "feet"),
  23819. weight: math.unit(350, "lb"),
  23820. name: "Back",
  23821. image: {
  23822. source: "./media/characters/gabira/back.svg",
  23823. extra: 1265/1163,
  23824. bottom: 46/1311
  23825. }
  23826. },
  23827. head: {
  23828. height: math.unit(2.85, "feet"),
  23829. name: "Head",
  23830. image: {
  23831. source: "./media/characters/gabira/head.svg"
  23832. }
  23833. },
  23834. },
  23835. [
  23836. {
  23837. name: "Normal",
  23838. height: math.unit(8, "feet"),
  23839. default: true
  23840. },
  23841. ]
  23842. ))
  23843. characterMakers.push(() => makeCharacter(
  23844. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23845. {
  23846. front: {
  23847. height: math.unit(5 + 3 / 12, "feet"),
  23848. weight: math.unit(137, "lb"),
  23849. name: "Front",
  23850. image: {
  23851. source: "./media/characters/sasha-katraine/front.svg",
  23852. extra: 1745/1694,
  23853. bottom: 37/1782
  23854. }
  23855. },
  23856. back: {
  23857. height: math.unit(5 + 3 / 12, "feet"),
  23858. weight: math.unit(137, "lb"),
  23859. name: "Back",
  23860. image: {
  23861. source: "./media/characters/sasha-katraine/back.svg",
  23862. extra: 1776/1699,
  23863. bottom: 26/1802
  23864. }
  23865. },
  23866. },
  23867. [
  23868. {
  23869. name: "Micro",
  23870. height: math.unit(5, "inches")
  23871. },
  23872. {
  23873. name: "Normal",
  23874. height: math.unit(5 + 3 / 12, "feet"),
  23875. default: true
  23876. },
  23877. ]
  23878. ))
  23879. characterMakers.push(() => makeCharacter(
  23880. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23881. {
  23882. side: {
  23883. height: math.unit(4, "inches"),
  23884. weight: math.unit(200, "grams"),
  23885. name: "Side",
  23886. image: {
  23887. source: "./media/characters/der/side.svg",
  23888. extra: 719 / 400,
  23889. bottom: 30.6 / 749.9187
  23890. }
  23891. },
  23892. },
  23893. [
  23894. {
  23895. name: "Micro",
  23896. height: math.unit(4, "inches"),
  23897. default: true
  23898. },
  23899. ]
  23900. ))
  23901. characterMakers.push(() => makeCharacter(
  23902. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23903. {
  23904. side: {
  23905. height: math.unit(30, "meters"),
  23906. weight: math.unit(700, "tonnes"),
  23907. name: "Side",
  23908. image: {
  23909. source: "./media/characters/fixerdragon/side.svg",
  23910. extra: (1293.0514 - 116.03) / 1106.86,
  23911. bottom: 116.03 / 1293.0514
  23912. }
  23913. },
  23914. },
  23915. [
  23916. {
  23917. name: "Planck",
  23918. height: math.unit(1.6e-35, "meters")
  23919. },
  23920. {
  23921. name: "Micro",
  23922. height: math.unit(0.4, "meters")
  23923. },
  23924. {
  23925. name: "Normal",
  23926. height: math.unit(30, "meters"),
  23927. default: true
  23928. },
  23929. {
  23930. name: "Megamacro",
  23931. height: math.unit(1.2, "megameters")
  23932. },
  23933. {
  23934. name: "Teramacro",
  23935. height: math.unit(130, "terameters")
  23936. },
  23937. {
  23938. name: "Yottamacro",
  23939. height: math.unit(6200, "yottameters")
  23940. },
  23941. ]
  23942. ));
  23943. characterMakers.push(() => makeCharacter(
  23944. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23945. {
  23946. front: {
  23947. height: math.unit(8, "feet"),
  23948. weight: math.unit(250, "lb"),
  23949. name: "Front",
  23950. image: {
  23951. source: "./media/characters/kite/front.svg",
  23952. extra: 2796 / 2659,
  23953. bottom: 0.002
  23954. }
  23955. },
  23956. },
  23957. [
  23958. {
  23959. name: "Normal",
  23960. height: math.unit(8, "feet"),
  23961. default: true
  23962. },
  23963. {
  23964. name: "Macro",
  23965. height: math.unit(360, "feet")
  23966. },
  23967. {
  23968. name: "Megamacro",
  23969. height: math.unit(1500, "feet")
  23970. },
  23971. ]
  23972. ))
  23973. characterMakers.push(() => makeCharacter(
  23974. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23975. {
  23976. anthro_front: {
  23977. height: math.unit(5 + 11/12, "feet"),
  23978. weight: math.unit(170, "lb"),
  23979. name: "Front",
  23980. image: {
  23981. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23982. extra: 1735/1585,
  23983. bottom: 96/1831
  23984. },
  23985. form: "anthro",
  23986. default: true
  23987. },
  23988. anthro_back: {
  23989. height: math.unit(5 + 11/12, "feet"),
  23990. weight: math.unit(170, "lb"),
  23991. name: "Back",
  23992. image: {
  23993. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23994. extra: 1749/1607,
  23995. bottom: 28/1777
  23996. },
  23997. form: "anthro"
  23998. },
  23999. anthro_male: {
  24000. height: math.unit(5 + 11/12, "feet"),
  24001. weight: math.unit(170, "lb"),
  24002. name: "Male",
  24003. image: {
  24004. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24005. extra: 1855/1713,
  24006. bottom: 63/1918
  24007. },
  24008. form: "anthro"
  24009. },
  24010. taur_front: {
  24011. height: math.unit(5 + 7/12, "feet"),
  24012. weight: math.unit(170, "lb"),
  24013. name: "Front",
  24014. image: {
  24015. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24016. extra: 1151/1059,
  24017. bottom: 356/1507
  24018. },
  24019. form: "taur",
  24020. default: true
  24021. },
  24022. anthro_frontDressed: {
  24023. height: math.unit(5 + 11/12, "feet"),
  24024. weight: math.unit(170, "lb"),
  24025. name: "Front (Dressed)",
  24026. image: {
  24027. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24028. extra: 1735/1585,
  24029. bottom: 96/1831
  24030. },
  24031. form: "anthro"
  24032. },
  24033. anthro_backDressed: {
  24034. height: math.unit(5 + 11/12, "feet"),
  24035. weight: math.unit(170, "lb"),
  24036. name: "Back (Dressed)",
  24037. image: {
  24038. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24039. extra: 1749/1607,
  24040. bottom: 28/1777
  24041. },
  24042. form: "anthro"
  24043. },
  24044. anthro_maleDressed: {
  24045. height: math.unit(5 + 11/12, "feet"),
  24046. weight: math.unit(170, "lb"),
  24047. name: "Male (Dressed)",
  24048. image: {
  24049. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24050. extra: 1855/1713,
  24051. bottom: 63/1918
  24052. },
  24053. form: "anthro"
  24054. },
  24055. taur_frontDressed: {
  24056. height: math.unit(5 + 7/12, "feet"),
  24057. weight: math.unit(170, "lb"),
  24058. name: "Front (Dressed)",
  24059. image: {
  24060. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24061. extra: 1151/1059,
  24062. bottom: 356/1507
  24063. },
  24064. form: "taur"
  24065. },
  24066. maw: {
  24067. height: math.unit(1.46, "feet"),
  24068. name: "Maw",
  24069. image: {
  24070. source: "./media/characters/poojawa-vynar/maw.svg"
  24071. },
  24072. allForms: true
  24073. },
  24074. head: {
  24075. height: math.unit(2.34, "feet"),
  24076. name: "Head",
  24077. image: {
  24078. source: "./media/characters/poojawa-vynar/head.svg"
  24079. },
  24080. allForms: true
  24081. },
  24082. leftPaw: {
  24083. height: math.unit(1.72, "feet"),
  24084. name: "Left Paw",
  24085. image: {
  24086. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24087. },
  24088. allForms: true
  24089. },
  24090. rightPaw: {
  24091. height: math.unit(1.61, "feet"),
  24092. name: "Right Paw",
  24093. image: {
  24094. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24095. },
  24096. allForms: true
  24097. },
  24098. toering: {
  24099. height: math.unit(2.9, "inches"),
  24100. name: "Toering",
  24101. image: {
  24102. source: "./media/characters/poojawa-vynar/toering.svg"
  24103. },
  24104. allForms: true
  24105. },
  24106. shaft: {
  24107. height: math.unit(0.625, "feet"),
  24108. name: "Shaft",
  24109. image: {
  24110. source: "./media/characters/poojawa-vynar/shaft.svg"
  24111. },
  24112. allForms: true
  24113. },
  24114. spade: {
  24115. height: math.unit(0.42, "feet"),
  24116. name: "Spade",
  24117. image: {
  24118. source: "./media/characters/poojawa-vynar/spade.svg"
  24119. },
  24120. allForms: true
  24121. },
  24122. },
  24123. [
  24124. {
  24125. name: "Shortstack",
  24126. height: math.unit(4, "feet"),
  24127. form: "anthro"
  24128. },
  24129. {
  24130. name: "Normal",
  24131. height: math.unit(5 + 11 / 12, "feet"),
  24132. form: "anthro",
  24133. default: true
  24134. },
  24135. {
  24136. name: "Tauric",
  24137. height: math.unit(4, "meters"),
  24138. form: "taur",
  24139. default: true
  24140. },
  24141. ],
  24142. {
  24143. "anthro": {
  24144. name: "Anthro",
  24145. default: true
  24146. },
  24147. "taur": {
  24148. name: "Taur",
  24149. },
  24150. }
  24151. ))
  24152. characterMakers.push(() => makeCharacter(
  24153. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24154. {
  24155. front: {
  24156. height: math.unit(293, "meters"),
  24157. weight: math.unit(70400, "tons"),
  24158. name: "Front",
  24159. image: {
  24160. source: "./media/characters/violette/front.svg",
  24161. extra: 1227 / 1180,
  24162. bottom: 0.005
  24163. }
  24164. },
  24165. back: {
  24166. height: math.unit(293, "meters"),
  24167. weight: math.unit(70400, "tons"),
  24168. name: "Back",
  24169. image: {
  24170. source: "./media/characters/violette/back.svg",
  24171. extra: 1227 / 1180,
  24172. bottom: 0.005
  24173. }
  24174. },
  24175. },
  24176. [
  24177. {
  24178. name: "Macro",
  24179. height: math.unit(293, "meters"),
  24180. default: true
  24181. },
  24182. ]
  24183. ))
  24184. characterMakers.push(() => makeCharacter(
  24185. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24186. {
  24187. front: {
  24188. height: math.unit(1050, "feet"),
  24189. weight: math.unit(200000, "tons"),
  24190. name: "Front",
  24191. image: {
  24192. source: "./media/characters/alessandra/front.svg",
  24193. extra: 960 / 912,
  24194. bottom: 0.06
  24195. }
  24196. },
  24197. },
  24198. [
  24199. {
  24200. name: "Macro",
  24201. height: math.unit(1050, "feet")
  24202. },
  24203. {
  24204. name: "Macro+",
  24205. height: math.unit(900, "meters"),
  24206. default: true
  24207. },
  24208. ]
  24209. ))
  24210. characterMakers.push(() => makeCharacter(
  24211. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24212. {
  24213. front: {
  24214. height: math.unit(5, "feet"),
  24215. weight: math.unit(187, "lb"),
  24216. name: "Front",
  24217. image: {
  24218. source: "./media/characters/person/front.svg",
  24219. extra: 3087 / 2945,
  24220. bottom: 91 / 3181
  24221. }
  24222. },
  24223. },
  24224. [
  24225. {
  24226. name: "Micro",
  24227. height: math.unit(3, "inches")
  24228. },
  24229. {
  24230. name: "Normal",
  24231. height: math.unit(5, "feet"),
  24232. default: true
  24233. },
  24234. {
  24235. name: "Macro",
  24236. height: math.unit(90, "feet")
  24237. },
  24238. {
  24239. name: "Max Size",
  24240. height: math.unit(280, "feet")
  24241. },
  24242. ]
  24243. ))
  24244. characterMakers.push(() => makeCharacter(
  24245. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24246. {
  24247. front: {
  24248. height: math.unit(4.5, "meters"),
  24249. weight: math.unit(3200, "lb"),
  24250. name: "Front",
  24251. image: {
  24252. source: "./media/characters/ty/front.svg",
  24253. extra: 1038 / 960,
  24254. bottom: 31.156 / 1068
  24255. }
  24256. },
  24257. back: {
  24258. height: math.unit(4.5, "meters"),
  24259. weight: math.unit(3200, "lb"),
  24260. name: "Back",
  24261. image: {
  24262. source: "./media/characters/ty/back.svg",
  24263. extra: 1044 / 966,
  24264. bottom: 7.48 / 1049
  24265. }
  24266. },
  24267. },
  24268. [
  24269. {
  24270. name: "Normal",
  24271. height: math.unit(4.5, "meters"),
  24272. default: true
  24273. },
  24274. ]
  24275. ))
  24276. characterMakers.push(() => makeCharacter(
  24277. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24278. {
  24279. front: {
  24280. height: math.unit(5 + 4 / 12, "feet"),
  24281. weight: math.unit(115, "lb"),
  24282. name: "Front",
  24283. image: {
  24284. source: "./media/characters/rocky/front.svg",
  24285. extra: 1012 / 975,
  24286. bottom: 54 / 1066
  24287. }
  24288. },
  24289. },
  24290. [
  24291. {
  24292. name: "Normal",
  24293. height: math.unit(5 + 4 / 12, "feet"),
  24294. default: true
  24295. },
  24296. ]
  24297. ))
  24298. characterMakers.push(() => makeCharacter(
  24299. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24300. {
  24301. upright: {
  24302. height: math.unit(6, "meters"),
  24303. weight: math.unit(4000, "kg"),
  24304. name: "Upright",
  24305. image: {
  24306. source: "./media/characters/ruin/upright.svg",
  24307. extra: 668 / 661,
  24308. bottom: 42 / 799.8396
  24309. }
  24310. },
  24311. },
  24312. [
  24313. {
  24314. name: "Normal",
  24315. height: math.unit(6, "meters"),
  24316. default: true
  24317. },
  24318. ]
  24319. ))
  24320. characterMakers.push(() => makeCharacter(
  24321. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24322. {
  24323. front: {
  24324. height: math.unit(5, "feet"),
  24325. weight: math.unit(106, "lb"),
  24326. name: "Front",
  24327. image: {
  24328. source: "./media/characters/robin/front.svg",
  24329. extra: 862 / 799,
  24330. bottom: 42.4 / 914.8856
  24331. }
  24332. },
  24333. },
  24334. [
  24335. {
  24336. name: "Normal",
  24337. height: math.unit(5, "feet"),
  24338. default: true
  24339. },
  24340. ]
  24341. ))
  24342. characterMakers.push(() => makeCharacter(
  24343. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24344. {
  24345. side: {
  24346. height: math.unit(3, "feet"),
  24347. weight: math.unit(225, "lb"),
  24348. name: "Side",
  24349. image: {
  24350. source: "./media/characters/saian/side.svg",
  24351. extra: 566 / 356,
  24352. bottom: 79.7 / 643
  24353. }
  24354. },
  24355. maw: {
  24356. height: math.unit(2.85, "feet"),
  24357. name: "Maw",
  24358. image: {
  24359. source: "./media/characters/saian/maw.svg"
  24360. }
  24361. },
  24362. },
  24363. [
  24364. {
  24365. name: "Normal",
  24366. height: math.unit(3, "feet"),
  24367. default: true
  24368. },
  24369. ]
  24370. ))
  24371. characterMakers.push(() => makeCharacter(
  24372. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24373. {
  24374. side: {
  24375. height: math.unit(8, "feet"),
  24376. weight: math.unit(300, "lb"),
  24377. name: "Side",
  24378. image: {
  24379. source: "./media/characters/equus-silvermane/side.svg",
  24380. extra: 2176 / 2050,
  24381. bottom: 65.7 / 2245
  24382. }
  24383. },
  24384. front: {
  24385. height: math.unit(8, "feet"),
  24386. weight: math.unit(300, "lb"),
  24387. name: "Front",
  24388. image: {
  24389. source: "./media/characters/equus-silvermane/front.svg",
  24390. extra: 4633 / 4400,
  24391. bottom: 71.3 / 4706.915
  24392. }
  24393. },
  24394. sideStepping: {
  24395. height: math.unit(8, "feet"),
  24396. weight: math.unit(300, "lb"),
  24397. name: "Side (Stepping)",
  24398. image: {
  24399. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24400. extra: 1968 / 1860,
  24401. bottom: 16.4 / 1989
  24402. }
  24403. },
  24404. },
  24405. [
  24406. {
  24407. name: "Normal",
  24408. height: math.unit(8, "feet")
  24409. },
  24410. {
  24411. name: "Minimacro",
  24412. height: math.unit(75, "feet"),
  24413. default: true
  24414. },
  24415. {
  24416. name: "Macro",
  24417. height: math.unit(150, "feet")
  24418. },
  24419. {
  24420. name: "Macro+",
  24421. height: math.unit(1000, "feet")
  24422. },
  24423. {
  24424. name: "Megamacro",
  24425. height: math.unit(1, "mile")
  24426. },
  24427. ]
  24428. ))
  24429. characterMakers.push(() => makeCharacter(
  24430. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24431. {
  24432. side: {
  24433. height: math.unit(20, "feet"),
  24434. weight: math.unit(30000, "kg"),
  24435. name: "Side",
  24436. image: {
  24437. source: "./media/characters/windar/side.svg",
  24438. extra: 1491 / 1248,
  24439. bottom: 82.56 / 1568
  24440. }
  24441. },
  24442. },
  24443. [
  24444. {
  24445. name: "Normal",
  24446. height: math.unit(20, "feet"),
  24447. default: true
  24448. },
  24449. ]
  24450. ))
  24451. characterMakers.push(() => makeCharacter(
  24452. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24453. {
  24454. side: {
  24455. height: math.unit(15.66, "feet"),
  24456. weight: math.unit(150, "lb"),
  24457. name: "Side",
  24458. image: {
  24459. source: "./media/characters/melody/side.svg",
  24460. extra: 1097 / 944,
  24461. bottom: 11.8 / 1109
  24462. }
  24463. },
  24464. sideOutfit: {
  24465. height: math.unit(15.66, "feet"),
  24466. weight: math.unit(150, "lb"),
  24467. name: "Side (Outfit)",
  24468. image: {
  24469. source: "./media/characters/melody/side-outfit.svg",
  24470. extra: 1097 / 944,
  24471. bottom: 11.8 / 1109
  24472. }
  24473. },
  24474. },
  24475. [
  24476. {
  24477. name: "Normal",
  24478. height: math.unit(15.66, "feet"),
  24479. default: true
  24480. },
  24481. ]
  24482. ))
  24483. characterMakers.push(() => makeCharacter(
  24484. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24485. {
  24486. armoredFront: {
  24487. height: math.unit(8, "feet"),
  24488. weight: math.unit(325, "lb"),
  24489. name: "Front",
  24490. image: {
  24491. source: "./media/characters/windera/armored-front.svg",
  24492. extra: 1830/1598,
  24493. bottom: 151/1981
  24494. },
  24495. form: "armored",
  24496. default: true
  24497. },
  24498. macroFront: {
  24499. height: math.unit(70, "feet"),
  24500. weight: math.unit(315453, "lb"),
  24501. name: "Front",
  24502. image: {
  24503. source: "./media/characters/windera/macro-front.svg",
  24504. extra: 963/883,
  24505. bottom: 23/986
  24506. },
  24507. form: "macro",
  24508. default: true
  24509. },
  24510. },
  24511. [
  24512. {
  24513. name: "Normal",
  24514. height: math.unit(8, "feet"),
  24515. default: true,
  24516. form: "armored"
  24517. },
  24518. {
  24519. name: "Normal",
  24520. height: math.unit(70, "feet"),
  24521. default: true,
  24522. form: "macro"
  24523. },
  24524. ],
  24525. {
  24526. "armored": {
  24527. name: "Armored",
  24528. default: true
  24529. },
  24530. "macro": {
  24531. name: "Macro",
  24532. },
  24533. }
  24534. ))
  24535. characterMakers.push(() => makeCharacter(
  24536. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24537. {
  24538. front: {
  24539. height: math.unit(28.75, "feet"),
  24540. weight: math.unit(2000, "kg"),
  24541. name: "Front",
  24542. image: {
  24543. source: "./media/characters/sonear/front.svg",
  24544. extra: 1041.1 / 964.9,
  24545. bottom: 53.7 / 1096.6
  24546. }
  24547. },
  24548. },
  24549. [
  24550. {
  24551. name: "Normal",
  24552. height: math.unit(28.75, "feet"),
  24553. default: true
  24554. },
  24555. ]
  24556. ))
  24557. characterMakers.push(() => makeCharacter(
  24558. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24559. {
  24560. side: {
  24561. height: math.unit(25.5, "feet"),
  24562. weight: math.unit(23000, "kg"),
  24563. name: "Side",
  24564. image: {
  24565. source: "./media/characters/kanara/side.svg"
  24566. }
  24567. },
  24568. },
  24569. [
  24570. {
  24571. name: "Normal",
  24572. height: math.unit(25.5, "feet"),
  24573. default: true
  24574. },
  24575. ]
  24576. ))
  24577. characterMakers.push(() => makeCharacter(
  24578. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24579. {
  24580. side: {
  24581. height: math.unit(10, "feet"),
  24582. weight: math.unit(1000, "kg"),
  24583. name: "Side",
  24584. image: {
  24585. source: "./media/characters/ereus/side.svg",
  24586. extra: 1157 / 959,
  24587. bottom: 153 / 1312.5
  24588. }
  24589. },
  24590. },
  24591. [
  24592. {
  24593. name: "Normal",
  24594. height: math.unit(10, "feet"),
  24595. default: true
  24596. },
  24597. ]
  24598. ))
  24599. characterMakers.push(() => makeCharacter(
  24600. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24601. {
  24602. side: {
  24603. height: math.unit(4.5, "feet"),
  24604. weight: math.unit(500, "lb"),
  24605. name: "Side",
  24606. image: {
  24607. source: "./media/characters/e-ter/side.svg",
  24608. extra: 1550 / 1248,
  24609. bottom: 146 / 1694
  24610. }
  24611. },
  24612. },
  24613. [
  24614. {
  24615. name: "Normal",
  24616. height: math.unit(4.5, "feet"),
  24617. default: true
  24618. },
  24619. ]
  24620. ))
  24621. characterMakers.push(() => makeCharacter(
  24622. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24623. {
  24624. side: {
  24625. height: math.unit(9.7, "feet"),
  24626. weight: math.unit(4000, "kg"),
  24627. name: "Side",
  24628. image: {
  24629. source: "./media/characters/yamie/side.svg"
  24630. }
  24631. },
  24632. },
  24633. [
  24634. {
  24635. name: "Normal",
  24636. height: math.unit(9.7, "feet"),
  24637. default: true
  24638. },
  24639. ]
  24640. ))
  24641. characterMakers.push(() => makeCharacter(
  24642. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24643. {
  24644. front: {
  24645. height: math.unit(50, "feet"),
  24646. weight: math.unit(50000, "kg"),
  24647. name: "Front",
  24648. image: {
  24649. source: "./media/characters/anders/front.svg",
  24650. extra: 570 / 539,
  24651. bottom: 14.7 / 586.7
  24652. }
  24653. },
  24654. },
  24655. [
  24656. {
  24657. name: "Large",
  24658. height: math.unit(50, "feet")
  24659. },
  24660. {
  24661. name: "Macro",
  24662. height: math.unit(2000, "feet"),
  24663. default: true
  24664. },
  24665. {
  24666. name: "Megamacro",
  24667. height: math.unit(12, "miles")
  24668. },
  24669. ]
  24670. ))
  24671. characterMakers.push(() => makeCharacter(
  24672. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24673. {
  24674. front: {
  24675. height: math.unit(7 + 2 / 12, "feet"),
  24676. weight: math.unit(300, "lb"),
  24677. name: "Front",
  24678. image: {
  24679. source: "./media/characters/reban/front.svg",
  24680. extra: 1287/1212,
  24681. bottom: 148/1435
  24682. }
  24683. },
  24684. head: {
  24685. height: math.unit(1.95, "feet"),
  24686. name: "Head",
  24687. image: {
  24688. source: "./media/characters/reban/head.svg"
  24689. }
  24690. },
  24691. maw: {
  24692. height: math.unit(0.95, "feet"),
  24693. name: "Maw",
  24694. image: {
  24695. source: "./media/characters/reban/maw.svg"
  24696. }
  24697. },
  24698. foot: {
  24699. height: math.unit(1.65, "feet"),
  24700. name: "Foot",
  24701. image: {
  24702. source: "./media/characters/reban/foot.svg"
  24703. }
  24704. },
  24705. dick: {
  24706. height: math.unit(7 / 5, "feet"),
  24707. name: "Dick",
  24708. image: {
  24709. source: "./media/characters/reban/dick.svg"
  24710. }
  24711. },
  24712. },
  24713. [
  24714. {
  24715. name: "Natural Height",
  24716. height: math.unit(7 + 2 / 12, "feet")
  24717. },
  24718. {
  24719. name: "Macro",
  24720. height: math.unit(500, "feet"),
  24721. default: true
  24722. },
  24723. {
  24724. name: "Canon Height",
  24725. height: math.unit(50, "AU")
  24726. },
  24727. ]
  24728. ))
  24729. characterMakers.push(() => makeCharacter(
  24730. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24731. {
  24732. front: {
  24733. height: math.unit(6, "feet"),
  24734. weight: math.unit(150, "lb"),
  24735. name: "Front",
  24736. image: {
  24737. source: "./media/characters/terrance-keayes/front.svg",
  24738. extra: 1.005,
  24739. bottom: 151 / 1615
  24740. }
  24741. },
  24742. side: {
  24743. height: math.unit(6, "feet"),
  24744. weight: math.unit(150, "lb"),
  24745. name: "Side",
  24746. image: {
  24747. source: "./media/characters/terrance-keayes/side.svg",
  24748. extra: 1.005,
  24749. bottom: 129.4 / 1544
  24750. }
  24751. },
  24752. back: {
  24753. height: math.unit(6, "feet"),
  24754. weight: math.unit(150, "lb"),
  24755. name: "Back",
  24756. image: {
  24757. source: "./media/characters/terrance-keayes/back.svg",
  24758. extra: 1.005,
  24759. bottom: 58.4 / 1557.3
  24760. }
  24761. },
  24762. dick: {
  24763. height: math.unit(6 * 0.208, "feet"),
  24764. name: "Dick",
  24765. image: {
  24766. source: "./media/characters/terrance-keayes/dick.svg"
  24767. }
  24768. },
  24769. },
  24770. [
  24771. {
  24772. name: "Canon Height",
  24773. height: math.unit(35, "miles"),
  24774. default: true
  24775. },
  24776. ]
  24777. ))
  24778. characterMakers.push(() => makeCharacter(
  24779. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24780. {
  24781. front: {
  24782. height: math.unit(6, "feet"),
  24783. weight: math.unit(150, "lb"),
  24784. name: "Front",
  24785. image: {
  24786. source: "./media/characters/ofelia/front.svg",
  24787. extra: 1130/1117,
  24788. bottom: 91/1221
  24789. }
  24790. },
  24791. back: {
  24792. height: math.unit(6, "feet"),
  24793. weight: math.unit(150, "lb"),
  24794. name: "Back",
  24795. image: {
  24796. source: "./media/characters/ofelia/back.svg",
  24797. extra: 1172/1159,
  24798. bottom: 28/1200
  24799. }
  24800. },
  24801. maw: {
  24802. height: math.unit(1, "feet"),
  24803. name: "Maw",
  24804. image: {
  24805. source: "./media/characters/ofelia/maw.svg"
  24806. }
  24807. },
  24808. foot: {
  24809. height: math.unit(1.949, "feet"),
  24810. name: "Foot",
  24811. image: {
  24812. source: "./media/characters/ofelia/foot.svg"
  24813. }
  24814. },
  24815. },
  24816. [
  24817. {
  24818. name: "Canon Height",
  24819. height: math.unit(2000, "miles"),
  24820. default: true
  24821. },
  24822. ]
  24823. ))
  24824. characterMakers.push(() => makeCharacter(
  24825. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24826. {
  24827. front: {
  24828. height: math.unit(6, "feet"),
  24829. weight: math.unit(150, "lb"),
  24830. name: "Front",
  24831. image: {
  24832. source: "./media/characters/samuel/front.svg",
  24833. extra: 265 / 258,
  24834. bottom: 2 / 266.1566
  24835. }
  24836. },
  24837. },
  24838. [
  24839. {
  24840. name: "Macro",
  24841. height: math.unit(100, "feet"),
  24842. default: true
  24843. },
  24844. {
  24845. name: "Full Size",
  24846. height: math.unit(1000, "miles")
  24847. },
  24848. ]
  24849. ))
  24850. characterMakers.push(() => makeCharacter(
  24851. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24852. {
  24853. front: {
  24854. height: math.unit(6, "feet"),
  24855. weight: math.unit(300, "lb"),
  24856. name: "Front",
  24857. image: {
  24858. source: "./media/characters/beishir-kiel/front.svg",
  24859. extra: 569 / 547,
  24860. bottom: 41.9 / 609
  24861. }
  24862. },
  24863. maw: {
  24864. height: math.unit(6 * 0.202, "feet"),
  24865. name: "Maw",
  24866. image: {
  24867. source: "./media/characters/beishir-kiel/maw.svg"
  24868. }
  24869. },
  24870. },
  24871. [
  24872. {
  24873. name: "Macro",
  24874. height: math.unit(300, "feet"),
  24875. default: true
  24876. },
  24877. ]
  24878. ))
  24879. characterMakers.push(() => makeCharacter(
  24880. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24881. {
  24882. front: {
  24883. height: math.unit(5 + 7/12, "feet"),
  24884. weight: math.unit(120, "lb"),
  24885. name: "Front",
  24886. image: {
  24887. source: "./media/characters/logan-grey/front.svg",
  24888. extra: 1836/1738,
  24889. bottom: 108/1944
  24890. }
  24891. },
  24892. back: {
  24893. height: math.unit(5 + 7/12, "feet"),
  24894. weight: math.unit(120, "lb"),
  24895. name: "Back",
  24896. image: {
  24897. source: "./media/characters/logan-grey/back.svg",
  24898. extra: 1880/1794,
  24899. bottom: 24/1904
  24900. }
  24901. },
  24902. frontSfw: {
  24903. height: math.unit(5 + 7/12, "feet"),
  24904. weight: math.unit(120, "lb"),
  24905. name: "Front (SFW)",
  24906. image: {
  24907. source: "./media/characters/logan-grey/front-sfw.svg",
  24908. extra: 1836/1738,
  24909. bottom: 108/1944
  24910. }
  24911. },
  24912. backSfw: {
  24913. height: math.unit(5 + 7/12, "feet"),
  24914. weight: math.unit(120, "lb"),
  24915. name: "Back (SFW)",
  24916. image: {
  24917. source: "./media/characters/logan-grey/back-sfw.svg",
  24918. extra: 1880/1794,
  24919. bottom: 24/1904
  24920. }
  24921. },
  24922. hands: {
  24923. height: math.unit(0.84, "feet"),
  24924. name: "Hands",
  24925. image: {
  24926. source: "./media/characters/logan-grey/hands.svg"
  24927. }
  24928. },
  24929. paws: {
  24930. height: math.unit(0.72, "feet"),
  24931. name: "Paws",
  24932. image: {
  24933. source: "./media/characters/logan-grey/paws.svg"
  24934. }
  24935. },
  24936. cock: {
  24937. height: math.unit(1.45, "feet"),
  24938. name: "Cock",
  24939. image: {
  24940. source: "./media/characters/logan-grey/cock.svg"
  24941. }
  24942. },
  24943. cockAlt: {
  24944. height: math.unit(1.437, "feet"),
  24945. name: "Cock (alt)",
  24946. image: {
  24947. source: "./media/characters/logan-grey/cock-alt.svg"
  24948. }
  24949. },
  24950. },
  24951. [
  24952. {
  24953. name: "Normal",
  24954. height: math.unit(5 + 8 / 12, "feet")
  24955. },
  24956. {
  24957. name: "The 500 Foot Femboy",
  24958. height: math.unit(500, "feet"),
  24959. default: true
  24960. },
  24961. {
  24962. name: "Megmacro",
  24963. height: math.unit(20, "miles")
  24964. },
  24965. ]
  24966. ))
  24967. characterMakers.push(() => makeCharacter(
  24968. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24969. {
  24970. front: {
  24971. height: math.unit(8 + 2 / 12, "feet"),
  24972. weight: math.unit(275, "lb"),
  24973. name: "Front",
  24974. image: {
  24975. source: "./media/characters/draganta/front.svg",
  24976. extra: 1177 / 1135,
  24977. bottom: 33.46 / 1212.1
  24978. }
  24979. },
  24980. },
  24981. [
  24982. {
  24983. name: "Normal",
  24984. height: math.unit(8 + 6 / 12, "feet"),
  24985. default: true
  24986. },
  24987. {
  24988. name: "Macro",
  24989. height: math.unit(150, "feet")
  24990. },
  24991. {
  24992. name: "Megamacro",
  24993. height: math.unit(1000, "miles")
  24994. },
  24995. ]
  24996. ))
  24997. characterMakers.push(() => makeCharacter(
  24998. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24999. {
  25000. front: {
  25001. height: math.unit(1.72, "m"),
  25002. weight: math.unit(80, "lb"),
  25003. name: "Front",
  25004. image: {
  25005. source: "./media/characters/voski/front.svg",
  25006. extra: 2076.22 / 2022.4,
  25007. bottom: 102.7 / 2177.3866
  25008. }
  25009. },
  25010. frontFlaccid: {
  25011. height: math.unit(1.72, "m"),
  25012. weight: math.unit(80, "lb"),
  25013. name: "Front (Flaccid)",
  25014. image: {
  25015. source: "./media/characters/voski/front-flaccid.svg",
  25016. extra: 2076.22 / 2022.4,
  25017. bottom: 102.7 / 2177.3866
  25018. }
  25019. },
  25020. frontErect: {
  25021. height: math.unit(1.72, "m"),
  25022. weight: math.unit(80, "lb"),
  25023. name: "Front (Erect)",
  25024. image: {
  25025. source: "./media/characters/voski/front-erect.svg",
  25026. extra: 2076.22 / 2022.4,
  25027. bottom: 102.7 / 2177.3866
  25028. }
  25029. },
  25030. back: {
  25031. height: math.unit(1.72, "m"),
  25032. weight: math.unit(80, "lb"),
  25033. name: "Back",
  25034. image: {
  25035. source: "./media/characters/voski/back.svg",
  25036. extra: 2104 / 2051,
  25037. bottom: 10.45 / 2113.63
  25038. }
  25039. },
  25040. },
  25041. [
  25042. {
  25043. name: "Normal",
  25044. height: math.unit(1.72, "m")
  25045. },
  25046. {
  25047. name: "Macro",
  25048. height: math.unit(55, "m"),
  25049. default: true
  25050. },
  25051. {
  25052. name: "Macro+",
  25053. height: math.unit(300, "m")
  25054. },
  25055. {
  25056. name: "Macro++",
  25057. height: math.unit(700, "m")
  25058. },
  25059. {
  25060. name: "Macro+++",
  25061. height: math.unit(4500, "m")
  25062. },
  25063. {
  25064. name: "Macro++++",
  25065. height: math.unit(45, "km")
  25066. },
  25067. {
  25068. name: "Macro+++++",
  25069. height: math.unit(1220, "km")
  25070. },
  25071. ]
  25072. ))
  25073. characterMakers.push(() => makeCharacter(
  25074. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25075. {
  25076. front: {
  25077. height: math.unit(2.3, "m"),
  25078. weight: math.unit(304, "kg"),
  25079. name: "Front",
  25080. image: {
  25081. source: "./media/characters/icowom-lee/front.svg",
  25082. extra: 985 / 955,
  25083. bottom: 25.4 / 1012
  25084. }
  25085. },
  25086. fronttentacles: {
  25087. height: math.unit(2.3, "m"),
  25088. weight: math.unit(304, "kg"),
  25089. name: "Front-tentacles",
  25090. image: {
  25091. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25092. extra: 985 / 955,
  25093. bottom: 25.4 / 1012
  25094. }
  25095. },
  25096. back: {
  25097. height: math.unit(2.3, "m"),
  25098. weight: math.unit(304, "kg"),
  25099. name: "Back",
  25100. image: {
  25101. source: "./media/characters/icowom-lee/back.svg",
  25102. extra: 975 / 954,
  25103. bottom: 9.5 / 985
  25104. }
  25105. },
  25106. backtentacles: {
  25107. height: math.unit(2.3, "m"),
  25108. weight: math.unit(304, "kg"),
  25109. name: "Back-tentacles",
  25110. image: {
  25111. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25112. extra: 975 / 954,
  25113. bottom: 9.5 / 985
  25114. }
  25115. },
  25116. frontDressed: {
  25117. height: math.unit(2.3, "m"),
  25118. weight: math.unit(304, "kg"),
  25119. name: "Front (Dressed)",
  25120. image: {
  25121. source: "./media/characters/icowom-lee/front-dressed.svg",
  25122. extra: 3076 / 2933,
  25123. bottom: 51.4 / 3125.1889
  25124. }
  25125. },
  25126. rump: {
  25127. height: math.unit(0.776, "meters"),
  25128. name: "Rump",
  25129. image: {
  25130. source: "./media/characters/icowom-lee/rump.svg"
  25131. }
  25132. },
  25133. genitals: {
  25134. height: math.unit(0.78, "meters"),
  25135. name: "Genitals",
  25136. image: {
  25137. source: "./media/characters/icowom-lee/genitals.svg"
  25138. }
  25139. },
  25140. },
  25141. [
  25142. {
  25143. name: "Normal",
  25144. height: math.unit(2.3, "meters"),
  25145. default: true
  25146. },
  25147. {
  25148. name: "Macro",
  25149. height: math.unit(94, "meters"),
  25150. default: true
  25151. },
  25152. ]
  25153. ))
  25154. characterMakers.push(() => makeCharacter(
  25155. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25156. {
  25157. front: {
  25158. height: math.unit(22, "meters"),
  25159. weight: math.unit(21000, "kg"),
  25160. name: "Front",
  25161. image: {
  25162. source: "./media/characters/shock-diamond/front.svg",
  25163. extra: 2204 / 2053,
  25164. bottom: 65 / 2239.47
  25165. }
  25166. },
  25167. frontNude: {
  25168. height: math.unit(22, "meters"),
  25169. weight: math.unit(21000, "kg"),
  25170. name: "Front (Nude)",
  25171. image: {
  25172. source: "./media/characters/shock-diamond/front-nude.svg",
  25173. extra: 2514 / 2285,
  25174. bottom: 13 / 2527.56
  25175. }
  25176. },
  25177. },
  25178. [
  25179. {
  25180. name: "Normal",
  25181. height: math.unit(3, "meters")
  25182. },
  25183. {
  25184. name: "Macro",
  25185. height: math.unit(22, "meters"),
  25186. default: true
  25187. },
  25188. ]
  25189. ))
  25190. characterMakers.push(() => makeCharacter(
  25191. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25192. {
  25193. front: {
  25194. height: math.unit(5 + 4/12, "feet"),
  25195. weight: math.unit(125, "lb"),
  25196. name: "Front",
  25197. image: {
  25198. source: "./media/characters/rory/front.svg",
  25199. extra: 1790/1681,
  25200. bottom: 66/1856
  25201. },
  25202. form: "normal",
  25203. default: true
  25204. },
  25205. back: {
  25206. height: math.unit(5 + 4/12, "feet"),
  25207. weight: math.unit(125, "lb"),
  25208. name: "Back",
  25209. image: {
  25210. source: "./media/characters/rory/back.svg",
  25211. extra: 1805/1690,
  25212. bottom: 56/1861
  25213. },
  25214. form: "normal"
  25215. },
  25216. frontDressed: {
  25217. height: math.unit(5 + 4/12, "feet"),
  25218. weight: math.unit(125, "lb"),
  25219. name: "Front (Dressed)",
  25220. image: {
  25221. source: "./media/characters/rory/front-dressed.svg",
  25222. extra: 1790/1681,
  25223. bottom: 66/1856
  25224. },
  25225. form: "normal"
  25226. },
  25227. backDressed: {
  25228. height: math.unit(5 + 4/12, "feet"),
  25229. weight: math.unit(125, "lb"),
  25230. name: "Back (Dressed)",
  25231. image: {
  25232. source: "./media/characters/rory/back-dressed.svg",
  25233. extra: 1805/1690,
  25234. bottom: 56/1861
  25235. },
  25236. form: "normal"
  25237. },
  25238. frontNsfw: {
  25239. height: math.unit(5 + 4/12, "feet"),
  25240. weight: math.unit(125, "lb"),
  25241. name: "Front (NSFW)",
  25242. image: {
  25243. source: "./media/characters/rory/front-nsfw.svg",
  25244. extra: 1790/1681,
  25245. bottom: 66/1856
  25246. },
  25247. form: "normal"
  25248. },
  25249. backNsfw: {
  25250. height: math.unit(5 + 4/12, "feet"),
  25251. weight: math.unit(125, "lb"),
  25252. name: "Back (NSFW)",
  25253. image: {
  25254. source: "./media/characters/rory/back-nsfw.svg",
  25255. extra: 1805/1690,
  25256. bottom: 56/1861
  25257. },
  25258. form: "normal"
  25259. },
  25260. dick: {
  25261. height: math.unit(0.8, "feet"),
  25262. name: "Dick",
  25263. image: {
  25264. source: "./media/characters/rory/dick.svg"
  25265. },
  25266. form: "normal"
  25267. },
  25268. thicc_front: {
  25269. height: math.unit(5 + 4/12, "feet"),
  25270. weight: math.unit(195, "lb"),
  25271. name: "Front",
  25272. image: {
  25273. source: "./media/characters/rory/thicc-front.svg",
  25274. extra: 1220/1100,
  25275. bottom: 103/1323
  25276. },
  25277. form: "thicc",
  25278. default: true
  25279. },
  25280. thicc_back: {
  25281. height: math.unit(5 + 4/12, "feet"),
  25282. weight: math.unit(195, "lb"),
  25283. name: "Back",
  25284. image: {
  25285. source: "./media/characters/rory/thicc-back.svg",
  25286. extra: 1166/1086,
  25287. bottom: 35/1201
  25288. },
  25289. form: "thicc"
  25290. },
  25291. },
  25292. [
  25293. {
  25294. name: "Micro",
  25295. height: math.unit(3, "inches"),
  25296. allForms: true
  25297. },
  25298. {
  25299. name: "Normal",
  25300. height: math.unit(5 + 4/12, "feet"),
  25301. allForms: true,
  25302. default: true
  25303. },
  25304. {
  25305. name: "Macro",
  25306. height: math.unit(90, "feet"),
  25307. allForms: true
  25308. },
  25309. {
  25310. name: "Supercharged",
  25311. height: math.unit(270, "feet"),
  25312. allForms: true
  25313. },
  25314. ],
  25315. {
  25316. "normal": {
  25317. name: "Normal",
  25318. default: true
  25319. },
  25320. "thicc": {
  25321. name: "Thicc",
  25322. },
  25323. }
  25324. ))
  25325. characterMakers.push(() => makeCharacter(
  25326. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25327. {
  25328. front: {
  25329. height: math.unit(5 + 9 / 12, "feet"),
  25330. weight: math.unit(190, "lb"),
  25331. name: "Front",
  25332. image: {
  25333. source: "./media/characters/sprisk/front.svg",
  25334. extra: 1225 / 1180,
  25335. bottom: 42.7 / 1266.4
  25336. }
  25337. },
  25338. frontNsfw: {
  25339. height: math.unit(5 + 9 / 12, "feet"),
  25340. weight: math.unit(190, "lb"),
  25341. name: "Front (NSFW)",
  25342. image: {
  25343. source: "./media/characters/sprisk/front-nsfw.svg",
  25344. extra: 1225 / 1180,
  25345. bottom: 42.7 / 1266.4
  25346. }
  25347. },
  25348. back: {
  25349. height: math.unit(5 + 9 / 12, "feet"),
  25350. weight: math.unit(190, "lb"),
  25351. name: "Back",
  25352. image: {
  25353. source: "./media/characters/sprisk/back.svg",
  25354. extra: 1247 / 1200,
  25355. bottom: 5.6 / 1253.04
  25356. }
  25357. },
  25358. },
  25359. [
  25360. {
  25361. name: "Tiny",
  25362. height: math.unit(2, "inches")
  25363. },
  25364. {
  25365. name: "Normal",
  25366. height: math.unit(5 + 9 / 12, "feet"),
  25367. default: true
  25368. },
  25369. {
  25370. name: "Mini Macro",
  25371. height: math.unit(18, "feet")
  25372. },
  25373. {
  25374. name: "Macro",
  25375. height: math.unit(100, "feet")
  25376. },
  25377. {
  25378. name: "MACRO",
  25379. height: math.unit(50, "miles")
  25380. },
  25381. {
  25382. name: "M A C R O",
  25383. height: math.unit(300, "miles")
  25384. },
  25385. ]
  25386. ))
  25387. characterMakers.push(() => makeCharacter(
  25388. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25389. {
  25390. side: {
  25391. height: math.unit(15.6, "meters"),
  25392. weight: math.unit(700000, "kg"),
  25393. name: "Side",
  25394. image: {
  25395. source: "./media/characters/bunsen/side.svg",
  25396. extra: 1644 / 358
  25397. }
  25398. },
  25399. foot: {
  25400. height: math.unit(1.611 * 1644 / 358, "meter"),
  25401. name: "Foot",
  25402. image: {
  25403. source: "./media/characters/bunsen/foot.svg"
  25404. }
  25405. },
  25406. },
  25407. [
  25408. {
  25409. name: "Small",
  25410. height: math.unit(10, "feet")
  25411. },
  25412. {
  25413. name: "Normal",
  25414. height: math.unit(15.6, "meters"),
  25415. default: true
  25416. },
  25417. ]
  25418. ))
  25419. characterMakers.push(() => makeCharacter(
  25420. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25421. {
  25422. front: {
  25423. height: math.unit(4 + 11 / 12, "feet"),
  25424. weight: math.unit(140, "lb"),
  25425. name: "Front",
  25426. image: {
  25427. source: "./media/characters/sesh/front.svg",
  25428. extra: 3420 / 3231,
  25429. bottom: 72 / 3949.5
  25430. }
  25431. },
  25432. },
  25433. [
  25434. {
  25435. name: "Normal",
  25436. height: math.unit(4 + 11 / 12, "feet")
  25437. },
  25438. {
  25439. name: "Grown",
  25440. height: math.unit(15, "feet"),
  25441. default: true
  25442. },
  25443. {
  25444. name: "Macro",
  25445. height: math.unit(1500, "feet")
  25446. },
  25447. {
  25448. name: "Megamacro",
  25449. height: math.unit(30, "miles")
  25450. },
  25451. {
  25452. name: "Continental",
  25453. height: math.unit(3000, "miles")
  25454. },
  25455. {
  25456. name: "Gravity Mass",
  25457. height: math.unit(300000, "miles")
  25458. },
  25459. {
  25460. name: "Planet Buster",
  25461. height: math.unit(30000000, "miles")
  25462. },
  25463. {
  25464. name: "Big",
  25465. height: math.unit(3000000000, "miles")
  25466. },
  25467. ]
  25468. ))
  25469. characterMakers.push(() => makeCharacter(
  25470. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25471. {
  25472. front: {
  25473. height: math.unit(9, "feet"),
  25474. weight: math.unit(350, "lb"),
  25475. name: "Front",
  25476. image: {
  25477. source: "./media/characters/pepper/front.svg",
  25478. extra: 1448 / 1312,
  25479. bottom: 9.4 / 1457.88
  25480. }
  25481. },
  25482. back: {
  25483. height: math.unit(9, "feet"),
  25484. weight: math.unit(350, "lb"),
  25485. name: "Back",
  25486. image: {
  25487. source: "./media/characters/pepper/back.svg",
  25488. extra: 1423 / 1300,
  25489. bottom: 4.6 / 1429
  25490. }
  25491. },
  25492. maw: {
  25493. height: math.unit(0.932, "feet"),
  25494. name: "Maw",
  25495. image: {
  25496. source: "./media/characters/pepper/maw.svg"
  25497. }
  25498. },
  25499. },
  25500. [
  25501. {
  25502. name: "Normal",
  25503. height: math.unit(9, "feet"),
  25504. default: true
  25505. },
  25506. ]
  25507. ))
  25508. characterMakers.push(() => makeCharacter(
  25509. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25510. {
  25511. front: {
  25512. height: math.unit(6, "feet"),
  25513. weight: math.unit(150, "lb"),
  25514. name: "Front",
  25515. image: {
  25516. source: "./media/characters/maelstrom/front.svg",
  25517. extra: 2100 / 1883,
  25518. bottom: 94 / 2196.7
  25519. }
  25520. },
  25521. },
  25522. [
  25523. {
  25524. name: "Less Kaiju",
  25525. height: math.unit(200, "feet")
  25526. },
  25527. {
  25528. name: "Kaiju",
  25529. height: math.unit(400, "feet"),
  25530. default: true
  25531. },
  25532. {
  25533. name: "Kaiju-er",
  25534. height: math.unit(600, "feet")
  25535. },
  25536. ]
  25537. ))
  25538. characterMakers.push(() => makeCharacter(
  25539. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25540. {
  25541. front: {
  25542. height: math.unit(6 + 5 / 12, "feet"),
  25543. weight: math.unit(180, "lb"),
  25544. name: "Front",
  25545. image: {
  25546. source: "./media/characters/lexir/front.svg",
  25547. extra: 180 / 172,
  25548. bottom: 12 / 192
  25549. }
  25550. },
  25551. back: {
  25552. height: math.unit(6 + 5 / 12, "feet"),
  25553. weight: math.unit(180, "lb"),
  25554. name: "Back",
  25555. image: {
  25556. source: "./media/characters/lexir/back.svg",
  25557. extra: 1273/1201,
  25558. bottom: 39/1312
  25559. }
  25560. },
  25561. },
  25562. [
  25563. {
  25564. name: "Very Smal",
  25565. height: math.unit(1, "nm")
  25566. },
  25567. {
  25568. name: "Normal",
  25569. height: math.unit(6 + 5 / 12, "feet"),
  25570. default: true
  25571. },
  25572. {
  25573. name: "Macro",
  25574. height: math.unit(1, "mile")
  25575. },
  25576. {
  25577. name: "Megamacro",
  25578. height: math.unit(50, "miles")
  25579. },
  25580. ]
  25581. ))
  25582. characterMakers.push(() => makeCharacter(
  25583. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25584. {
  25585. front: {
  25586. height: math.unit(1.5, "meters"),
  25587. weight: math.unit(100, "lb"),
  25588. name: "Front",
  25589. image: {
  25590. source: "./media/characters/maksio/front.svg",
  25591. extra: 1549 / 1531,
  25592. bottom: 123.7 / 1674.5429
  25593. }
  25594. },
  25595. back: {
  25596. height: math.unit(1.5, "meters"),
  25597. weight: math.unit(100, "lb"),
  25598. name: "Back",
  25599. image: {
  25600. source: "./media/characters/maksio/back.svg",
  25601. extra: 1541 / 1509,
  25602. bottom: 97 / 1639
  25603. }
  25604. },
  25605. hand: {
  25606. height: math.unit(0.621, "feet"),
  25607. name: "Hand",
  25608. image: {
  25609. source: "./media/characters/maksio/hand.svg"
  25610. }
  25611. },
  25612. foot: {
  25613. height: math.unit(1.611, "feet"),
  25614. name: "Foot",
  25615. image: {
  25616. source: "./media/characters/maksio/foot.svg"
  25617. }
  25618. },
  25619. },
  25620. [
  25621. {
  25622. name: "Shrunken",
  25623. height: math.unit(10, "cm")
  25624. },
  25625. {
  25626. name: "Normal",
  25627. height: math.unit(150, "cm"),
  25628. default: true
  25629. },
  25630. ]
  25631. ))
  25632. characterMakers.push(() => makeCharacter(
  25633. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25634. {
  25635. front: {
  25636. height: math.unit(100, "feet"),
  25637. name: "Front",
  25638. image: {
  25639. source: "./media/characters/erza-bear/front.svg",
  25640. extra: 2449 / 2390,
  25641. bottom: 46 / 2494
  25642. }
  25643. },
  25644. back: {
  25645. height: math.unit(100, "feet"),
  25646. name: "Back",
  25647. image: {
  25648. source: "./media/characters/erza-bear/back.svg",
  25649. extra: 2489 / 2430,
  25650. bottom: 85.4 / 2480
  25651. }
  25652. },
  25653. tail: {
  25654. height: math.unit(42, "feet"),
  25655. name: "Tail",
  25656. image: {
  25657. source: "./media/characters/erza-bear/tail.svg"
  25658. }
  25659. },
  25660. tongue: {
  25661. height: math.unit(8, "feet"),
  25662. name: "Tongue",
  25663. image: {
  25664. source: "./media/characters/erza-bear/tongue.svg"
  25665. }
  25666. },
  25667. dick: {
  25668. height: math.unit(10.5, "feet"),
  25669. name: "Dick",
  25670. image: {
  25671. source: "./media/characters/erza-bear/dick.svg"
  25672. }
  25673. },
  25674. dickVertical: {
  25675. height: math.unit(16.9, "feet"),
  25676. name: "Dick (Vertical)",
  25677. image: {
  25678. source: "./media/characters/erza-bear/dick-vertical.svg"
  25679. }
  25680. },
  25681. },
  25682. [
  25683. {
  25684. name: "Macro",
  25685. height: math.unit(100, "feet"),
  25686. default: true
  25687. },
  25688. ]
  25689. ))
  25690. characterMakers.push(() => makeCharacter(
  25691. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25692. {
  25693. front: {
  25694. height: math.unit(172, "cm"),
  25695. weight: math.unit(73, "kg"),
  25696. name: "Front",
  25697. image: {
  25698. source: "./media/characters/violet-flor/front.svg",
  25699. extra: 1530 / 1442,
  25700. bottom: 61.9 / 1588.8
  25701. }
  25702. },
  25703. back: {
  25704. height: math.unit(180, "cm"),
  25705. weight: math.unit(73, "kg"),
  25706. name: "Back",
  25707. image: {
  25708. source: "./media/characters/violet-flor/back.svg",
  25709. extra: 1692 / 1630,
  25710. bottom: 20 / 1712
  25711. }
  25712. },
  25713. },
  25714. [
  25715. {
  25716. name: "Normal",
  25717. height: math.unit(172, "cm"),
  25718. default: true
  25719. },
  25720. ]
  25721. ))
  25722. characterMakers.push(() => makeCharacter(
  25723. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25724. {
  25725. front: {
  25726. height: math.unit(6, "feet"),
  25727. weight: math.unit(220, "lb"),
  25728. name: "Front",
  25729. image: {
  25730. source: "./media/characters/lynn-rhea/front.svg",
  25731. extra: 310 / 273
  25732. }
  25733. },
  25734. back: {
  25735. height: math.unit(6, "feet"),
  25736. weight: math.unit(220, "lb"),
  25737. name: "Back",
  25738. image: {
  25739. source: "./media/characters/lynn-rhea/back.svg",
  25740. extra: 310 / 273
  25741. }
  25742. },
  25743. dicks: {
  25744. height: math.unit(0.9, "feet"),
  25745. name: "Dicks",
  25746. image: {
  25747. source: "./media/characters/lynn-rhea/dicks.svg"
  25748. }
  25749. },
  25750. slit: {
  25751. height: math.unit(0.4, "feet"),
  25752. name: "Slit",
  25753. image: {
  25754. source: "./media/characters/lynn-rhea/slit.svg"
  25755. }
  25756. },
  25757. },
  25758. [
  25759. {
  25760. name: "Micro",
  25761. height: math.unit(1, "inch")
  25762. },
  25763. {
  25764. name: "Macro",
  25765. height: math.unit(60, "feet"),
  25766. default: true
  25767. },
  25768. {
  25769. name: "Megamacro",
  25770. height: math.unit(2, "miles")
  25771. },
  25772. {
  25773. name: "Gigamacro",
  25774. height: math.unit(3, "earths")
  25775. },
  25776. {
  25777. name: "Galactic",
  25778. height: math.unit(0.8, "galaxies")
  25779. },
  25780. ]
  25781. ))
  25782. characterMakers.push(() => makeCharacter(
  25783. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25784. {
  25785. front: {
  25786. height: math.unit(1600, "feet"),
  25787. weight: math.unit(85758785169, "kg"),
  25788. name: "Front",
  25789. image: {
  25790. source: "./media/characters/valathos/front.svg",
  25791. extra: 1451 / 1339
  25792. }
  25793. },
  25794. },
  25795. [
  25796. {
  25797. name: "Macro",
  25798. height: math.unit(1600, "feet"),
  25799. default: true
  25800. },
  25801. ]
  25802. ))
  25803. characterMakers.push(() => makeCharacter(
  25804. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25805. {
  25806. front: {
  25807. height: math.unit(7 + 5 / 12, "feet"),
  25808. weight: math.unit(300, "lb"),
  25809. name: "Front",
  25810. image: {
  25811. source: "./media/characters/azula/front.svg",
  25812. extra: 3208 / 2880,
  25813. bottom: 80.2 / 3277
  25814. }
  25815. },
  25816. back: {
  25817. height: math.unit(7 + 5 / 12, "feet"),
  25818. weight: math.unit(300, "lb"),
  25819. name: "Back",
  25820. image: {
  25821. source: "./media/characters/azula/back.svg",
  25822. extra: 3169 / 2822,
  25823. bottom: 150.6 / 3321
  25824. }
  25825. },
  25826. },
  25827. [
  25828. {
  25829. name: "Normal",
  25830. height: math.unit(7 + 5 / 12, "feet"),
  25831. default: true
  25832. },
  25833. {
  25834. name: "Big",
  25835. height: math.unit(20, "feet")
  25836. },
  25837. ]
  25838. ))
  25839. characterMakers.push(() => makeCharacter(
  25840. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25841. {
  25842. front: {
  25843. height: math.unit(5 + 1 / 12, "feet"),
  25844. weight: math.unit(110, "lb"),
  25845. name: "Front",
  25846. image: {
  25847. source: "./media/characters/rupert/front.svg",
  25848. extra: 1549 / 1495,
  25849. bottom: 54.2 / 1604.4
  25850. }
  25851. },
  25852. },
  25853. [
  25854. {
  25855. name: "Normal",
  25856. height: math.unit(5 + 1 / 12, "feet"),
  25857. default: true
  25858. },
  25859. ]
  25860. ))
  25861. characterMakers.push(() => makeCharacter(
  25862. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25863. {
  25864. front: {
  25865. height: math.unit(8 + 4 / 12, "feet"),
  25866. weight: math.unit(350, "lb"),
  25867. name: "Front",
  25868. image: {
  25869. source: "./media/characters/sheera-castellar/front.svg",
  25870. extra: 1957 / 1894,
  25871. bottom: 26.97 / 1975.017
  25872. }
  25873. },
  25874. side: {
  25875. height: math.unit(8 + 4 / 12, "feet"),
  25876. weight: math.unit(350, "lb"),
  25877. name: "Side",
  25878. image: {
  25879. source: "./media/characters/sheera-castellar/side.svg",
  25880. extra: 1957 / 1894
  25881. }
  25882. },
  25883. back: {
  25884. height: math.unit(8 + 4 / 12, "feet"),
  25885. weight: math.unit(350, "lb"),
  25886. name: "Back",
  25887. image: {
  25888. source: "./media/characters/sheera-castellar/back.svg",
  25889. extra: 1957 / 1894
  25890. }
  25891. },
  25892. angled: {
  25893. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25894. weight: math.unit(350, "lb"),
  25895. name: "Angled",
  25896. image: {
  25897. source: "./media/characters/sheera-castellar/angled.svg",
  25898. extra: 1807 / 1707,
  25899. bottom: 68 / 1875
  25900. }
  25901. },
  25902. genitals: {
  25903. height: math.unit(2.2, "feet"),
  25904. name: "Genitals",
  25905. image: {
  25906. source: "./media/characters/sheera-castellar/genitals.svg"
  25907. }
  25908. },
  25909. taur: {
  25910. height: math.unit(10 + 6/12, "feet"),
  25911. name: "Taur",
  25912. image: {
  25913. source: "./media/characters/sheera-castellar/taur.svg",
  25914. extra: 2017/1909,
  25915. bottom: 185/2202
  25916. }
  25917. },
  25918. },
  25919. [
  25920. {
  25921. name: "Normal",
  25922. height: math.unit(8 + 4 / 12, "feet")
  25923. },
  25924. {
  25925. name: "Macro",
  25926. height: math.unit(150, "feet"),
  25927. default: true
  25928. },
  25929. {
  25930. name: "Macro+",
  25931. height: math.unit(800, "feet")
  25932. },
  25933. ]
  25934. ))
  25935. characterMakers.push(() => makeCharacter(
  25936. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25937. {
  25938. front: {
  25939. height: math.unit(6, "feet"),
  25940. weight: math.unit(150, "lb"),
  25941. name: "Front",
  25942. image: {
  25943. source: "./media/characters/jaipur/front.svg",
  25944. extra: 3860 / 3731,
  25945. bottom: 287 / 4140
  25946. }
  25947. },
  25948. back: {
  25949. height: math.unit(6, "feet"),
  25950. weight: math.unit(150, "lb"),
  25951. name: "Back",
  25952. image: {
  25953. source: "./media/characters/jaipur/back.svg",
  25954. extra: 1637/1561,
  25955. bottom: 154/1791
  25956. }
  25957. },
  25958. },
  25959. [
  25960. {
  25961. name: "Normal",
  25962. height: math.unit(1.85, "meters"),
  25963. default: true
  25964. },
  25965. {
  25966. name: "Macro",
  25967. height: math.unit(150, "meters")
  25968. },
  25969. {
  25970. name: "Macro+",
  25971. height: math.unit(0.5, "miles")
  25972. },
  25973. {
  25974. name: "Macro++",
  25975. height: math.unit(2.5, "miles")
  25976. },
  25977. {
  25978. name: "Macro+++",
  25979. height: math.unit(12, "miles")
  25980. },
  25981. {
  25982. name: "Macro++++",
  25983. height: math.unit(120, "miles")
  25984. },
  25985. {
  25986. name: "Macro+++++",
  25987. height: math.unit(1200, "miles")
  25988. },
  25989. ]
  25990. ))
  25991. characterMakers.push(() => makeCharacter(
  25992. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25993. {
  25994. front: {
  25995. height: math.unit(6, "feet"),
  25996. weight: math.unit(150, "lb"),
  25997. name: "Front",
  25998. image: {
  25999. source: "./media/characters/sheila-wolf/front.svg",
  26000. extra: 1931 / 1808,
  26001. bottom: 29.5 / 1960
  26002. }
  26003. },
  26004. dick: {
  26005. height: math.unit(1.464, "feet"),
  26006. name: "Dick",
  26007. image: {
  26008. source: "./media/characters/sheila-wolf/dick.svg"
  26009. }
  26010. },
  26011. muzzle: {
  26012. height: math.unit(0.513, "feet"),
  26013. name: "Muzzle",
  26014. image: {
  26015. source: "./media/characters/sheila-wolf/muzzle.svg"
  26016. }
  26017. },
  26018. },
  26019. [
  26020. {
  26021. name: "Macro",
  26022. height: math.unit(70, "feet"),
  26023. default: true
  26024. },
  26025. ]
  26026. ))
  26027. characterMakers.push(() => makeCharacter(
  26028. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26029. {
  26030. front: {
  26031. height: math.unit(32, "meters"),
  26032. weight: math.unit(300000, "kg"),
  26033. name: "Front",
  26034. image: {
  26035. source: "./media/characters/almor/front.svg",
  26036. extra: 1408 / 1322,
  26037. bottom: 94.6 / 1506.5
  26038. }
  26039. },
  26040. },
  26041. [
  26042. {
  26043. name: "Macro",
  26044. height: math.unit(32, "meters"),
  26045. default: true
  26046. },
  26047. ]
  26048. ))
  26049. characterMakers.push(() => makeCharacter(
  26050. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26051. {
  26052. front: {
  26053. height: math.unit(7, "feet"),
  26054. weight: math.unit(200, "lb"),
  26055. name: "Front",
  26056. image: {
  26057. source: "./media/characters/silver/front.svg",
  26058. extra: 472.1 / 450.5,
  26059. bottom: 26.5 / 499.424
  26060. }
  26061. },
  26062. },
  26063. [
  26064. {
  26065. name: "Normal",
  26066. height: math.unit(7, "feet"),
  26067. default: true
  26068. },
  26069. {
  26070. name: "Macro",
  26071. height: math.unit(800, "feet")
  26072. },
  26073. {
  26074. name: "Megamacro",
  26075. height: math.unit(250, "miles")
  26076. },
  26077. ]
  26078. ))
  26079. characterMakers.push(() => makeCharacter(
  26080. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26081. {
  26082. front: {
  26083. height: math.unit(6, "feet"),
  26084. weight: math.unit(150, "lb"),
  26085. name: "Front",
  26086. image: {
  26087. source: "./media/characters/pliskin/front.svg",
  26088. extra: 1469 / 1359,
  26089. bottom: 70 / 1540
  26090. }
  26091. },
  26092. },
  26093. [
  26094. {
  26095. name: "Micro",
  26096. height: math.unit(3, "inches")
  26097. },
  26098. {
  26099. name: "Normal",
  26100. height: math.unit(5 + 11 / 12, "feet"),
  26101. default: true
  26102. },
  26103. {
  26104. name: "Macro",
  26105. height: math.unit(120, "feet")
  26106. },
  26107. ]
  26108. ))
  26109. characterMakers.push(() => makeCharacter(
  26110. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26111. {
  26112. front: {
  26113. height: math.unit(6, "feet"),
  26114. weight: math.unit(150, "lb"),
  26115. name: "Front",
  26116. image: {
  26117. source: "./media/characters/sammy/front.svg",
  26118. extra: 1193 / 1089,
  26119. bottom: 30.5 / 1226
  26120. }
  26121. },
  26122. },
  26123. [
  26124. {
  26125. name: "Macro",
  26126. height: math.unit(1700, "feet"),
  26127. default: true
  26128. },
  26129. {
  26130. name: "Examacro",
  26131. height: math.unit(2.5e9, "lightyears")
  26132. },
  26133. ]
  26134. ))
  26135. characterMakers.push(() => makeCharacter(
  26136. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26137. {
  26138. front: {
  26139. height: math.unit(21, "meters"),
  26140. weight: math.unit(12, "tonnes"),
  26141. name: "Front",
  26142. image: {
  26143. source: "./media/characters/kuru/front.svg",
  26144. extra: 4301 / 3785,
  26145. bottom: 371.3 / 4691
  26146. }
  26147. },
  26148. },
  26149. [
  26150. {
  26151. name: "Macro",
  26152. height: math.unit(21, "meters"),
  26153. default: true
  26154. },
  26155. ]
  26156. ))
  26157. characterMakers.push(() => makeCharacter(
  26158. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26159. {
  26160. front: {
  26161. height: math.unit(23, "meters"),
  26162. weight: math.unit(12.2, "tonnes"),
  26163. name: "Front",
  26164. image: {
  26165. source: "./media/characters/rakka/front.svg",
  26166. extra: 4670 / 4169,
  26167. bottom: 301 / 4968.7
  26168. }
  26169. },
  26170. },
  26171. [
  26172. {
  26173. name: "Macro",
  26174. height: math.unit(23, "meters"),
  26175. default: true
  26176. },
  26177. ]
  26178. ))
  26179. characterMakers.push(() => makeCharacter(
  26180. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26181. {
  26182. front: {
  26183. height: math.unit(6, "feet"),
  26184. weight: math.unit(150, "lb"),
  26185. name: "Front",
  26186. image: {
  26187. source: "./media/characters/rhys-feline/front.svg",
  26188. extra: 2488 / 2308,
  26189. bottom: 35.67 / 2519.19
  26190. }
  26191. },
  26192. },
  26193. [
  26194. {
  26195. name: "Really Small",
  26196. height: math.unit(1, "nm")
  26197. },
  26198. {
  26199. name: "Micro",
  26200. height: math.unit(4, "inches")
  26201. },
  26202. {
  26203. name: "Normal",
  26204. height: math.unit(4 + 10 / 12, "feet"),
  26205. default: true
  26206. },
  26207. {
  26208. name: "Macro",
  26209. height: math.unit(100, "feet")
  26210. },
  26211. {
  26212. name: "Megamacto",
  26213. height: math.unit(50, "miles")
  26214. },
  26215. ]
  26216. ))
  26217. characterMakers.push(() => makeCharacter(
  26218. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26219. {
  26220. side: {
  26221. height: math.unit(30, "feet"),
  26222. weight: math.unit(35000, "kg"),
  26223. name: "Side",
  26224. image: {
  26225. source: "./media/characters/alydar/side.svg",
  26226. extra: 234 / 222,
  26227. bottom: 6.5 / 241
  26228. }
  26229. },
  26230. front: {
  26231. height: math.unit(30, "feet"),
  26232. weight: math.unit(35000, "kg"),
  26233. name: "Front",
  26234. image: {
  26235. source: "./media/characters/alydar/front.svg",
  26236. extra: 223.37 / 210.2,
  26237. bottom: 22.3 / 246.76
  26238. }
  26239. },
  26240. top: {
  26241. height: math.unit(64.54, "feet"),
  26242. weight: math.unit(35000, "kg"),
  26243. name: "Top",
  26244. image: {
  26245. source: "./media/characters/alydar/top.svg"
  26246. }
  26247. },
  26248. anthro: {
  26249. height: math.unit(30, "feet"),
  26250. weight: math.unit(9000, "kg"),
  26251. name: "Anthro",
  26252. image: {
  26253. source: "./media/characters/alydar/anthro.svg",
  26254. extra: 432 / 421,
  26255. bottom: 7.18 / 440
  26256. }
  26257. },
  26258. maw: {
  26259. height: math.unit(11.693, "feet"),
  26260. name: "Maw",
  26261. image: {
  26262. source: "./media/characters/alydar/maw.svg"
  26263. }
  26264. },
  26265. head: {
  26266. height: math.unit(11.693, "feet"),
  26267. name: "Head",
  26268. image: {
  26269. source: "./media/characters/alydar/head.svg"
  26270. }
  26271. },
  26272. headAlt: {
  26273. height: math.unit(12.861, "feet"),
  26274. name: "Head (Alt)",
  26275. image: {
  26276. source: "./media/characters/alydar/head-alt.svg"
  26277. }
  26278. },
  26279. wing: {
  26280. height: math.unit(20.712, "feet"),
  26281. name: "Wing",
  26282. image: {
  26283. source: "./media/characters/alydar/wing.svg"
  26284. }
  26285. },
  26286. wingFeather: {
  26287. height: math.unit(9.662, "feet"),
  26288. name: "Wing Feather",
  26289. image: {
  26290. source: "./media/characters/alydar/wing-feather.svg"
  26291. }
  26292. },
  26293. countourFeather: {
  26294. height: math.unit(4.154, "feet"),
  26295. name: "Contour Feather",
  26296. image: {
  26297. source: "./media/characters/alydar/contour-feather.svg"
  26298. }
  26299. },
  26300. },
  26301. [
  26302. {
  26303. name: "Diplomatic",
  26304. height: math.unit(13, "feet"),
  26305. default: true
  26306. },
  26307. {
  26308. name: "Small",
  26309. height: math.unit(30, "feet")
  26310. },
  26311. {
  26312. name: "Normal",
  26313. height: math.unit(95, "feet"),
  26314. default: true
  26315. },
  26316. {
  26317. name: "Large",
  26318. height: math.unit(285, "feet")
  26319. },
  26320. {
  26321. name: "Incomprehensible",
  26322. height: math.unit(450, "megameters")
  26323. },
  26324. ]
  26325. ))
  26326. characterMakers.push(() => makeCharacter(
  26327. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26328. {
  26329. side: {
  26330. height: math.unit(11, "feet"),
  26331. weight: math.unit(1750, "kg"),
  26332. name: "Side",
  26333. image: {
  26334. source: "./media/characters/selicia/side.svg",
  26335. extra: 440 / 396,
  26336. bottom: 24.8 / 465.979
  26337. }
  26338. },
  26339. maw: {
  26340. height: math.unit(4.665, "feet"),
  26341. name: "Maw",
  26342. image: {
  26343. source: "./media/characters/selicia/maw.svg"
  26344. }
  26345. },
  26346. },
  26347. [
  26348. {
  26349. name: "Normal",
  26350. height: math.unit(11, "feet"),
  26351. default: true
  26352. },
  26353. ]
  26354. ))
  26355. characterMakers.push(() => makeCharacter(
  26356. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26357. {
  26358. side: {
  26359. height: math.unit(2 + 6 / 12, "feet"),
  26360. weight: math.unit(30, "lb"),
  26361. name: "Side",
  26362. image: {
  26363. source: "./media/characters/layla/side.svg",
  26364. extra: 244 / 188,
  26365. bottom: 18.2 / 262.1
  26366. }
  26367. },
  26368. back: {
  26369. height: math.unit(2 + 6 / 12, "feet"),
  26370. weight: math.unit(30, "lb"),
  26371. name: "Back",
  26372. image: {
  26373. source: "./media/characters/layla/back.svg",
  26374. extra: 308 / 241.5,
  26375. bottom: 8.9 / 316.8
  26376. }
  26377. },
  26378. cumming: {
  26379. height: math.unit(2 + 6 / 12, "feet"),
  26380. weight: math.unit(30, "lb"),
  26381. name: "Cumming",
  26382. image: {
  26383. source: "./media/characters/layla/cumming.svg",
  26384. extra: 342 / 279,
  26385. bottom: 595 / 938
  26386. }
  26387. },
  26388. dickFlaccid: {
  26389. height: math.unit(2.595, "feet"),
  26390. name: "Flaccid Genitals",
  26391. image: {
  26392. source: "./media/characters/layla/dick-flaccid.svg"
  26393. }
  26394. },
  26395. dickErect: {
  26396. height: math.unit(2.359, "feet"),
  26397. name: "Erect Genitals",
  26398. image: {
  26399. source: "./media/characters/layla/dick-erect.svg"
  26400. }
  26401. },
  26402. dragon: {
  26403. height: math.unit(40, "feet"),
  26404. name: "Dragon",
  26405. image: {
  26406. source: "./media/characters/layla/dragon.svg",
  26407. extra: 610/535,
  26408. bottom: 367/977
  26409. }
  26410. },
  26411. taur: {
  26412. height: math.unit(30, "feet"),
  26413. name: "Taur",
  26414. image: {
  26415. source: "./media/characters/layla/taur.svg",
  26416. extra: 1268/1199,
  26417. bottom: 112/1380
  26418. }
  26419. },
  26420. },
  26421. [
  26422. {
  26423. name: "Micro",
  26424. height: math.unit(1, "inch")
  26425. },
  26426. {
  26427. name: "Small",
  26428. height: math.unit(1, "foot")
  26429. },
  26430. {
  26431. name: "Normal",
  26432. height: math.unit(2 + 6 / 12, "feet"),
  26433. default: true
  26434. },
  26435. {
  26436. name: "Macro",
  26437. height: math.unit(200, "feet")
  26438. },
  26439. {
  26440. name: "Megamacro",
  26441. height: math.unit(1000, "miles")
  26442. },
  26443. {
  26444. name: "Planetary",
  26445. height: math.unit(8000, "miles")
  26446. },
  26447. {
  26448. name: "True Layla",
  26449. height: math.unit(200000 * 7, "multiverses")
  26450. },
  26451. ]
  26452. ))
  26453. characterMakers.push(() => makeCharacter(
  26454. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26455. {
  26456. back: {
  26457. height: math.unit(10.5, "feet"),
  26458. weight: math.unit(800, "lb"),
  26459. name: "Back",
  26460. image: {
  26461. source: "./media/characters/knox/back.svg",
  26462. extra: 1486 / 1089,
  26463. bottom: 107 / 1601.4
  26464. }
  26465. },
  26466. side: {
  26467. height: math.unit(10.5, "feet"),
  26468. weight: math.unit(800, "lb"),
  26469. name: "Side",
  26470. image: {
  26471. source: "./media/characters/knox/side.svg",
  26472. extra: 244 / 218,
  26473. bottom: 14 / 260
  26474. }
  26475. },
  26476. },
  26477. [
  26478. {
  26479. name: "Compact",
  26480. height: math.unit(10.5, "feet"),
  26481. default: true
  26482. },
  26483. {
  26484. name: "Dynamax",
  26485. height: math.unit(210, "feet")
  26486. },
  26487. {
  26488. name: "Full Macro",
  26489. height: math.unit(850, "feet")
  26490. },
  26491. ]
  26492. ))
  26493. characterMakers.push(() => makeCharacter(
  26494. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26495. {
  26496. front: {
  26497. height: math.unit(28, "feet"),
  26498. weight: math.unit(10500, "lb"),
  26499. name: "Front",
  26500. image: {
  26501. source: "./media/characters/kayda/front.svg",
  26502. extra: 1536 / 1428,
  26503. bottom: 68.7 / 1603
  26504. }
  26505. },
  26506. back: {
  26507. height: math.unit(28, "feet"),
  26508. weight: math.unit(10500, "lb"),
  26509. name: "Back",
  26510. image: {
  26511. source: "./media/characters/kayda/back.svg",
  26512. extra: 1557 / 1464,
  26513. bottom: 39.5 / 1597.49
  26514. }
  26515. },
  26516. dick: {
  26517. height: math.unit(3.858, "feet"),
  26518. name: "Dick",
  26519. image: {
  26520. source: "./media/characters/kayda/dick.svg"
  26521. }
  26522. },
  26523. },
  26524. [
  26525. {
  26526. name: "Macro",
  26527. height: math.unit(28, "feet"),
  26528. default: true
  26529. },
  26530. ]
  26531. ))
  26532. characterMakers.push(() => makeCharacter(
  26533. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26534. {
  26535. front: {
  26536. height: math.unit(10 + 11 / 12, "feet"),
  26537. weight: math.unit(1400, "lb"),
  26538. name: "Front",
  26539. image: {
  26540. source: "./media/characters/brian/front.svg",
  26541. extra: 737 / 692,
  26542. bottom: 55.4 / 785
  26543. }
  26544. },
  26545. },
  26546. [
  26547. {
  26548. name: "Normal",
  26549. height: math.unit(10 + 11 / 12, "feet"),
  26550. default: true
  26551. },
  26552. ]
  26553. ))
  26554. characterMakers.push(() => makeCharacter(
  26555. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26556. {
  26557. front: {
  26558. height: math.unit(5 + 8 / 12, "feet"),
  26559. weight: math.unit(140, "lb"),
  26560. name: "Front",
  26561. image: {
  26562. source: "./media/characters/khemri/front.svg",
  26563. extra: 4780 / 4059,
  26564. bottom: 80.1 / 4859.25
  26565. }
  26566. },
  26567. },
  26568. [
  26569. {
  26570. name: "Micro",
  26571. height: math.unit(6, "inches")
  26572. },
  26573. {
  26574. name: "Normal",
  26575. height: math.unit(5 + 8 / 12, "feet"),
  26576. default: true
  26577. },
  26578. ]
  26579. ))
  26580. characterMakers.push(() => makeCharacter(
  26581. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26582. {
  26583. front: {
  26584. height: math.unit(13, "feet"),
  26585. weight: math.unit(1700, "lb"),
  26586. name: "Front",
  26587. image: {
  26588. source: "./media/characters/felix-braveheart/front.svg",
  26589. extra: 1222 / 1157,
  26590. bottom: 53.2 / 1280
  26591. }
  26592. },
  26593. back: {
  26594. height: math.unit(13, "feet"),
  26595. weight: math.unit(1700, "lb"),
  26596. name: "Back",
  26597. image: {
  26598. source: "./media/characters/felix-braveheart/back.svg",
  26599. extra: 1277 / 1203,
  26600. bottom: 50.2 / 1327
  26601. }
  26602. },
  26603. feral: {
  26604. height: math.unit(6, "feet"),
  26605. weight: math.unit(400, "lb"),
  26606. name: "Feral",
  26607. image: {
  26608. source: "./media/characters/felix-braveheart/feral.svg",
  26609. extra: 682 / 625,
  26610. bottom: 6.9 / 688
  26611. }
  26612. },
  26613. },
  26614. [
  26615. {
  26616. name: "Normal",
  26617. height: math.unit(13, "feet"),
  26618. default: true
  26619. },
  26620. ]
  26621. ))
  26622. characterMakers.push(() => makeCharacter(
  26623. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26624. {
  26625. side: {
  26626. height: math.unit(5 + 11 / 12, "feet"),
  26627. weight: math.unit(1400, "lb"),
  26628. name: "Side",
  26629. image: {
  26630. source: "./media/characters/shadow-blade/side.svg",
  26631. extra: 1726 / 1267,
  26632. bottom: 58.4 / 1785
  26633. }
  26634. },
  26635. },
  26636. [
  26637. {
  26638. name: "Normal",
  26639. height: math.unit(5 + 11 / 12, "feet"),
  26640. default: true
  26641. },
  26642. ]
  26643. ))
  26644. characterMakers.push(() => makeCharacter(
  26645. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26646. {
  26647. front: {
  26648. height: math.unit(1 + 6 / 12, "feet"),
  26649. weight: math.unit(25, "lb"),
  26650. name: "Front",
  26651. image: {
  26652. source: "./media/characters/karla-halldor/front.svg",
  26653. extra: 1459 / 1383,
  26654. bottom: 12 / 1472
  26655. }
  26656. },
  26657. },
  26658. [
  26659. {
  26660. name: "Normal",
  26661. height: math.unit(1 + 6 / 12, "feet"),
  26662. default: true
  26663. },
  26664. ]
  26665. ))
  26666. characterMakers.push(() => makeCharacter(
  26667. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26668. {
  26669. front: {
  26670. height: math.unit(6 + 2 / 12, "feet"),
  26671. weight: math.unit(160, "lb"),
  26672. name: "Front",
  26673. image: {
  26674. source: "./media/characters/ariam/front.svg",
  26675. extra: 1073/976,
  26676. bottom: 52/1125
  26677. }
  26678. },
  26679. back: {
  26680. height: math.unit(6 + 2/12, "feet"),
  26681. weight: math.unit(160, "lb"),
  26682. name: "Back",
  26683. image: {
  26684. source: "./media/characters/ariam/back.svg",
  26685. extra: 1103/1023,
  26686. bottom: 9/1112
  26687. }
  26688. },
  26689. dressed: {
  26690. height: math.unit(6 + 2/12, "feet"),
  26691. weight: math.unit(160, "lb"),
  26692. name: "Dressed",
  26693. image: {
  26694. source: "./media/characters/ariam/dressed.svg",
  26695. extra: 1099/1009,
  26696. bottom: 25/1124
  26697. }
  26698. },
  26699. squatting: {
  26700. height: math.unit(4.1, "feet"),
  26701. weight: math.unit(160, "lb"),
  26702. name: "Squatting",
  26703. image: {
  26704. source: "./media/characters/ariam/squatting.svg",
  26705. extra: 2617 / 2112,
  26706. bottom: 61.2 / 2681,
  26707. }
  26708. },
  26709. },
  26710. [
  26711. {
  26712. name: "Normal",
  26713. height: math.unit(6 + 2 / 12, "feet"),
  26714. default: true
  26715. },
  26716. {
  26717. name: "Normal+",
  26718. height: math.unit(4, "meters")
  26719. },
  26720. {
  26721. name: "Macro",
  26722. height: math.unit(50, "meters")
  26723. },
  26724. {
  26725. name: "Macro+",
  26726. height: math.unit(100, "meters")
  26727. },
  26728. {
  26729. name: "Megamacro",
  26730. height: math.unit(20, "km")
  26731. },
  26732. {
  26733. name: "Caretaker",
  26734. height: math.unit(444, "megameters")
  26735. },
  26736. ]
  26737. ))
  26738. characterMakers.push(() => makeCharacter(
  26739. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26740. {
  26741. front: {
  26742. height: math.unit(1.67, "meters"),
  26743. weight: math.unit(140, "lb"),
  26744. name: "Front",
  26745. image: {
  26746. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26747. extra: 438 / 410,
  26748. bottom: 0.75 / 439
  26749. }
  26750. },
  26751. },
  26752. [
  26753. {
  26754. name: "Shrunken",
  26755. height: math.unit(7.6, "cm")
  26756. },
  26757. {
  26758. name: "Human Scale",
  26759. height: math.unit(1.67, "meters")
  26760. },
  26761. {
  26762. name: "Wolxi Scale",
  26763. height: math.unit(36.7, "meters"),
  26764. default: true
  26765. },
  26766. ]
  26767. ))
  26768. characterMakers.push(() => makeCharacter(
  26769. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26770. {
  26771. front: {
  26772. height: math.unit(1.73, "meters"),
  26773. weight: math.unit(240, "lb"),
  26774. name: "Front",
  26775. image: {
  26776. source: "./media/characters/izue-two-mothers/front.svg",
  26777. extra: 469 / 437,
  26778. bottom: 1.24 / 470.6
  26779. }
  26780. },
  26781. },
  26782. [
  26783. {
  26784. name: "Shrunken",
  26785. height: math.unit(7.86, "cm")
  26786. },
  26787. {
  26788. name: "Human Scale",
  26789. height: math.unit(1.73, "meters")
  26790. },
  26791. {
  26792. name: "Wolxi Scale",
  26793. height: math.unit(38, "meters"),
  26794. default: true
  26795. },
  26796. ]
  26797. ))
  26798. characterMakers.push(() => makeCharacter(
  26799. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26800. {
  26801. front: {
  26802. height: math.unit(1.55, "meters"),
  26803. weight: math.unit(120, "lb"),
  26804. name: "Front",
  26805. image: {
  26806. source: "./media/characters/teeku-love-shack/front.svg",
  26807. extra: 387 / 362,
  26808. bottom: 1.51 / 388
  26809. }
  26810. },
  26811. },
  26812. [
  26813. {
  26814. name: "Shrunken",
  26815. height: math.unit(7, "cm")
  26816. },
  26817. {
  26818. name: "Human Scale",
  26819. height: math.unit(1.55, "meters")
  26820. },
  26821. {
  26822. name: "Wolxi Scale",
  26823. height: math.unit(34.1, "meters"),
  26824. default: true
  26825. },
  26826. ]
  26827. ))
  26828. characterMakers.push(() => makeCharacter(
  26829. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26830. {
  26831. front: {
  26832. height: math.unit(1.83, "meters"),
  26833. weight: math.unit(135, "lb"),
  26834. name: "Front",
  26835. image: {
  26836. source: "./media/characters/dejma-the-red/front.svg",
  26837. extra: 480 / 458,
  26838. bottom: 1.8 / 482
  26839. }
  26840. },
  26841. },
  26842. [
  26843. {
  26844. name: "Shrunken",
  26845. height: math.unit(8.3, "cm")
  26846. },
  26847. {
  26848. name: "Human Scale",
  26849. height: math.unit(1.83, "meters")
  26850. },
  26851. {
  26852. name: "Wolxi Scale",
  26853. height: math.unit(40, "meters"),
  26854. default: true
  26855. },
  26856. ]
  26857. ))
  26858. characterMakers.push(() => makeCharacter(
  26859. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26860. {
  26861. front: {
  26862. height: math.unit(1.78, "meters"),
  26863. weight: math.unit(65, "kg"),
  26864. name: "Front",
  26865. image: {
  26866. source: "./media/characters/aki/front.svg",
  26867. extra: 452 / 415
  26868. }
  26869. },
  26870. frontNsfw: {
  26871. height: math.unit(1.78, "meters"),
  26872. weight: math.unit(65, "kg"),
  26873. name: "Front (NSFW)",
  26874. image: {
  26875. source: "./media/characters/aki/front-nsfw.svg",
  26876. extra: 452 / 415
  26877. }
  26878. },
  26879. back: {
  26880. height: math.unit(1.78, "meters"),
  26881. weight: math.unit(65, "kg"),
  26882. name: "Back",
  26883. image: {
  26884. source: "./media/characters/aki/back.svg",
  26885. extra: 452 / 415
  26886. }
  26887. },
  26888. rump: {
  26889. height: math.unit(2.05, "feet"),
  26890. name: "Rump",
  26891. image: {
  26892. source: "./media/characters/aki/rump.svg"
  26893. }
  26894. },
  26895. dick: {
  26896. height: math.unit(0.95, "feet"),
  26897. name: "Dick",
  26898. image: {
  26899. source: "./media/characters/aki/dick.svg"
  26900. }
  26901. },
  26902. },
  26903. [
  26904. {
  26905. name: "Micro",
  26906. height: math.unit(15, "cm")
  26907. },
  26908. {
  26909. name: "Normal",
  26910. height: math.unit(178, "cm"),
  26911. default: true
  26912. },
  26913. {
  26914. name: "Macro",
  26915. height: math.unit(214, "m")
  26916. },
  26917. {
  26918. name: "Macro+",
  26919. height: math.unit(534, "m")
  26920. },
  26921. ]
  26922. ))
  26923. characterMakers.push(() => makeCharacter(
  26924. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26925. {
  26926. front: {
  26927. height: math.unit(5 + 5 / 12, "feet"),
  26928. weight: math.unit(120, "lb"),
  26929. name: "Front",
  26930. image: {
  26931. source: "./media/characters/ari/front.svg",
  26932. extra: 1550/1471,
  26933. bottom: 39/1589
  26934. }
  26935. },
  26936. },
  26937. [
  26938. {
  26939. name: "Normal",
  26940. height: math.unit(5 + 5 / 12, "feet")
  26941. },
  26942. {
  26943. name: "Macro",
  26944. height: math.unit(100, "feet"),
  26945. default: true
  26946. },
  26947. {
  26948. name: "Megamacro",
  26949. height: math.unit(100, "miles")
  26950. },
  26951. {
  26952. name: "Gigamacro",
  26953. height: math.unit(80000, "miles")
  26954. },
  26955. ]
  26956. ))
  26957. characterMakers.push(() => makeCharacter(
  26958. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26959. {
  26960. side: {
  26961. height: math.unit(9, "feet"),
  26962. weight: math.unit(400, "kg"),
  26963. name: "Side",
  26964. image: {
  26965. source: "./media/characters/bolt/side.svg",
  26966. extra: 1126 / 896,
  26967. bottom: 60 / 1187.3,
  26968. }
  26969. },
  26970. },
  26971. [
  26972. {
  26973. name: "Micro",
  26974. height: math.unit(5, "inches")
  26975. },
  26976. {
  26977. name: "Normal",
  26978. height: math.unit(9, "feet"),
  26979. default: true
  26980. },
  26981. {
  26982. name: "Macro",
  26983. height: math.unit(700, "feet")
  26984. },
  26985. {
  26986. name: "Max Size",
  26987. height: math.unit(1.52e22, "yottameters")
  26988. },
  26989. ]
  26990. ))
  26991. characterMakers.push(() => makeCharacter(
  26992. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26993. {
  26994. front: {
  26995. height: math.unit(4.3, "meters"),
  26996. weight: math.unit(3, "tons"),
  26997. name: "Front",
  26998. image: {
  26999. source: "./media/characters/draekon-sylviar/front.svg",
  27000. extra: 2072/1512,
  27001. bottom: 74/2146
  27002. }
  27003. },
  27004. back: {
  27005. height: math.unit(4.3, "meters"),
  27006. weight: math.unit(3, "tons"),
  27007. name: "Back",
  27008. image: {
  27009. source: "./media/characters/draekon-sylviar/back.svg",
  27010. extra: 1639/1483,
  27011. bottom: 41/1680
  27012. }
  27013. },
  27014. feral: {
  27015. height: math.unit(1.15, "meters"),
  27016. weight: math.unit(3, "tons"),
  27017. name: "Feral",
  27018. image: {
  27019. source: "./media/characters/draekon-sylviar/feral.svg",
  27020. extra: 1033/395,
  27021. bottom: 130/1163
  27022. }
  27023. },
  27024. maw: {
  27025. height: math.unit(1.3, "meters"),
  27026. name: "Maw",
  27027. image: {
  27028. source: "./media/characters/draekon-sylviar/maw.svg"
  27029. }
  27030. },
  27031. mawSeparated: {
  27032. height: math.unit(1.53, "meters"),
  27033. name: "Separated Maw",
  27034. image: {
  27035. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27036. }
  27037. },
  27038. tail: {
  27039. height: math.unit(1.15, "meters"),
  27040. name: "Tail",
  27041. image: {
  27042. source: "./media/characters/draekon-sylviar/tail.svg"
  27043. }
  27044. },
  27045. tailDick: {
  27046. height: math.unit(1.15, "meters"),
  27047. name: "Tail (Dick)",
  27048. image: {
  27049. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27050. }
  27051. },
  27052. tailDickSeparated: {
  27053. height: math.unit(1.19, "meters"),
  27054. name: "Tail (Separated Dick)",
  27055. image: {
  27056. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27057. }
  27058. },
  27059. slit: {
  27060. height: math.unit(1, "meters"),
  27061. name: "Slit",
  27062. image: {
  27063. source: "./media/characters/draekon-sylviar/slit.svg"
  27064. }
  27065. },
  27066. dick: {
  27067. height: math.unit(1.15, "meters"),
  27068. name: "Dick",
  27069. image: {
  27070. source: "./media/characters/draekon-sylviar/dick.svg"
  27071. }
  27072. },
  27073. dickSeparated: {
  27074. height: math.unit(1.1, "meters"),
  27075. name: "Separated Dick",
  27076. image: {
  27077. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27078. }
  27079. },
  27080. sheath: {
  27081. height: math.unit(1.15, "meters"),
  27082. name: "Sheath",
  27083. image: {
  27084. source: "./media/characters/draekon-sylviar/sheath.svg"
  27085. }
  27086. },
  27087. },
  27088. [
  27089. {
  27090. name: "Small",
  27091. height: math.unit(4.53 / 2, "meters"),
  27092. default: true
  27093. },
  27094. {
  27095. name: "Normal",
  27096. height: math.unit(4.53, "meters"),
  27097. default: true
  27098. },
  27099. {
  27100. name: "Large",
  27101. height: math.unit(4.53 * 2, "meters"),
  27102. },
  27103. ]
  27104. ))
  27105. characterMakers.push(() => makeCharacter(
  27106. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27107. {
  27108. front: {
  27109. height: math.unit(6 + 2 / 12, "feet"),
  27110. weight: math.unit(180, "lb"),
  27111. name: "Front",
  27112. image: {
  27113. source: "./media/characters/brawler/front.svg",
  27114. extra: 3301 / 3027,
  27115. bottom: 138 / 3439
  27116. }
  27117. },
  27118. },
  27119. [
  27120. {
  27121. name: "Normal",
  27122. height: math.unit(6 + 2 / 12, "feet"),
  27123. default: true
  27124. },
  27125. ]
  27126. ))
  27127. characterMakers.push(() => makeCharacter(
  27128. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27129. {
  27130. front: {
  27131. height: math.unit(11, "feet"),
  27132. weight: math.unit(1000, "lb"),
  27133. name: "Front",
  27134. image: {
  27135. source: "./media/characters/alex/front.svg",
  27136. bottom: 44.5 / 620
  27137. }
  27138. },
  27139. },
  27140. [
  27141. {
  27142. name: "Micro",
  27143. height: math.unit(5, "inches")
  27144. },
  27145. {
  27146. name: "Normal",
  27147. height: math.unit(11, "feet"),
  27148. default: true
  27149. },
  27150. {
  27151. name: "Macro",
  27152. height: math.unit(9.5e9, "feet")
  27153. },
  27154. {
  27155. name: "Max Size",
  27156. height: math.unit(1.4e283, "yottameters")
  27157. },
  27158. ]
  27159. ))
  27160. characterMakers.push(() => makeCharacter(
  27161. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27162. {
  27163. female: {
  27164. height: math.unit(29.9, "m"),
  27165. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27166. name: "Female",
  27167. image: {
  27168. source: "./media/characters/zenari/female.svg",
  27169. extra: 3281.6 / 3217,
  27170. bottom: 72.2 / 3353
  27171. }
  27172. },
  27173. male: {
  27174. height: math.unit(27.7, "m"),
  27175. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27176. name: "Male",
  27177. image: {
  27178. source: "./media/characters/zenari/male.svg",
  27179. extra: 3008 / 2991,
  27180. bottom: 54.6 / 3069
  27181. }
  27182. },
  27183. },
  27184. [
  27185. {
  27186. name: "Macro",
  27187. height: math.unit(29.7, "meters"),
  27188. default: true
  27189. },
  27190. ]
  27191. ))
  27192. characterMakers.push(() => makeCharacter(
  27193. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27194. {
  27195. female: {
  27196. height: math.unit(23.8, "m"),
  27197. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27198. name: "Female",
  27199. image: {
  27200. source: "./media/characters/mactarian/female.svg",
  27201. extra: 2662 / 2569,
  27202. bottom: 73 / 2736
  27203. }
  27204. },
  27205. male: {
  27206. height: math.unit(23.8, "m"),
  27207. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27208. name: "Male",
  27209. image: {
  27210. source: "./media/characters/mactarian/male.svg",
  27211. extra: 2673 / 2600,
  27212. bottom: 76 / 2750
  27213. }
  27214. },
  27215. },
  27216. [
  27217. {
  27218. name: "Macro",
  27219. height: math.unit(23.8, "meters"),
  27220. default: true
  27221. },
  27222. ]
  27223. ))
  27224. characterMakers.push(() => makeCharacter(
  27225. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27226. {
  27227. female: {
  27228. height: math.unit(19.3, "m"),
  27229. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27230. name: "Female",
  27231. image: {
  27232. source: "./media/characters/umok/female.svg",
  27233. extra: 2186 / 2078,
  27234. bottom: 87 / 2277
  27235. }
  27236. },
  27237. male: {
  27238. height: math.unit(19.5, "m"),
  27239. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27240. name: "Male",
  27241. image: {
  27242. source: "./media/characters/umok/male.svg",
  27243. extra: 2233 / 2140,
  27244. bottom: 24.4 / 2258
  27245. }
  27246. },
  27247. },
  27248. [
  27249. {
  27250. name: "Macro",
  27251. height: math.unit(19.3, "meters"),
  27252. default: true
  27253. },
  27254. ]
  27255. ))
  27256. characterMakers.push(() => makeCharacter(
  27257. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27258. {
  27259. female: {
  27260. height: math.unit(26.15, "m"),
  27261. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27262. name: "Female",
  27263. image: {
  27264. source: "./media/characters/joraxian/female.svg",
  27265. extra: 2912 / 2824,
  27266. bottom: 36 / 2956
  27267. }
  27268. },
  27269. male: {
  27270. height: math.unit(25.4, "m"),
  27271. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27272. name: "Male",
  27273. image: {
  27274. source: "./media/characters/joraxian/male.svg",
  27275. extra: 2877 / 2721,
  27276. bottom: 82 / 2967
  27277. }
  27278. },
  27279. },
  27280. [
  27281. {
  27282. name: "Macro",
  27283. height: math.unit(26.15, "meters"),
  27284. default: true
  27285. },
  27286. ]
  27287. ))
  27288. characterMakers.push(() => makeCharacter(
  27289. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27290. {
  27291. female: {
  27292. height: math.unit(21.6, "m"),
  27293. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27294. name: "Female",
  27295. image: {
  27296. source: "./media/characters/sthara/female.svg",
  27297. extra: 2516 / 2347,
  27298. bottom: 21.5 / 2537
  27299. }
  27300. },
  27301. male: {
  27302. height: math.unit(24, "m"),
  27303. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27304. name: "Male",
  27305. image: {
  27306. source: "./media/characters/sthara/male.svg",
  27307. extra: 2732 / 2607,
  27308. bottom: 23 / 2732
  27309. }
  27310. },
  27311. },
  27312. [
  27313. {
  27314. name: "Macro",
  27315. height: math.unit(21.6, "meters"),
  27316. default: true
  27317. },
  27318. ]
  27319. ))
  27320. characterMakers.push(() => makeCharacter(
  27321. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27322. {
  27323. front: {
  27324. height: math.unit(6 + 4 / 12, "feet"),
  27325. weight: math.unit(175, "lb"),
  27326. name: "Front",
  27327. image: {
  27328. source: "./media/characters/luka-bryzant/front.svg",
  27329. extra: 311 / 289,
  27330. bottom: 4 / 315
  27331. }
  27332. },
  27333. back: {
  27334. height: math.unit(6 + 4 / 12, "feet"),
  27335. weight: math.unit(175, "lb"),
  27336. name: "Back",
  27337. image: {
  27338. source: "./media/characters/luka-bryzant/back.svg",
  27339. extra: 311 / 289,
  27340. bottom: 3.8 / 313.7
  27341. }
  27342. },
  27343. },
  27344. [
  27345. {
  27346. name: "Micro",
  27347. height: math.unit(10, "inches")
  27348. },
  27349. {
  27350. name: "Normal",
  27351. height: math.unit(6 + 4 / 12, "feet"),
  27352. default: true
  27353. },
  27354. {
  27355. name: "Large",
  27356. height: math.unit(12, "feet")
  27357. },
  27358. ]
  27359. ))
  27360. characterMakers.push(() => makeCharacter(
  27361. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27362. {
  27363. front: {
  27364. height: math.unit(5 + 7 / 12, "feet"),
  27365. weight: math.unit(185, "lb"),
  27366. name: "Front",
  27367. image: {
  27368. source: "./media/characters/aman-aquila/front.svg",
  27369. extra: 1013 / 976,
  27370. bottom: 45.6 / 1057
  27371. }
  27372. },
  27373. side: {
  27374. height: math.unit(5 + 7 / 12, "feet"),
  27375. weight: math.unit(185, "lb"),
  27376. name: "Side",
  27377. image: {
  27378. source: "./media/characters/aman-aquila/side.svg",
  27379. extra: 1054 / 1011,
  27380. bottom: 15 / 1070
  27381. }
  27382. },
  27383. back: {
  27384. height: math.unit(5 + 7 / 12, "feet"),
  27385. weight: math.unit(185, "lb"),
  27386. name: "Back",
  27387. image: {
  27388. source: "./media/characters/aman-aquila/back.svg",
  27389. extra: 1026 / 970,
  27390. bottom: 12 / 1039
  27391. }
  27392. },
  27393. head: {
  27394. height: math.unit(1.211, "feet"),
  27395. name: "Head",
  27396. image: {
  27397. source: "./media/characters/aman-aquila/head.svg",
  27398. }
  27399. },
  27400. },
  27401. [
  27402. {
  27403. name: "Minimicro",
  27404. height: math.unit(0.057, "inches")
  27405. },
  27406. {
  27407. name: "Micro",
  27408. height: math.unit(7, "inches")
  27409. },
  27410. {
  27411. name: "Mini",
  27412. height: math.unit(3 + 7 / 12, "feet")
  27413. },
  27414. {
  27415. name: "Normal",
  27416. height: math.unit(5 + 7 / 12, "feet"),
  27417. default: true
  27418. },
  27419. {
  27420. name: "Macro",
  27421. height: math.unit(157 + 7 / 12, "feet")
  27422. },
  27423. {
  27424. name: "Megamacro",
  27425. height: math.unit(1557 + 7 / 12, "feet")
  27426. },
  27427. {
  27428. name: "Gigamacro",
  27429. height: math.unit(15557 + 7 / 12, "feet")
  27430. },
  27431. ]
  27432. ))
  27433. characterMakers.push(() => makeCharacter(
  27434. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27435. {
  27436. front: {
  27437. height: math.unit(3 + 2 / 12, "inches"),
  27438. weight: math.unit(0.3, "ounces"),
  27439. name: "Front",
  27440. image: {
  27441. source: "./media/characters/hiphae/front.svg",
  27442. extra: 1931 / 1683,
  27443. bottom: 24 / 1955
  27444. }
  27445. },
  27446. },
  27447. [
  27448. {
  27449. name: "Normal",
  27450. height: math.unit(3 + 1 / 2, "inches"),
  27451. default: true
  27452. },
  27453. ]
  27454. ))
  27455. characterMakers.push(() => makeCharacter(
  27456. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27457. {
  27458. front: {
  27459. height: math.unit(5 + 10 / 12, "feet"),
  27460. weight: math.unit(165, "lb"),
  27461. name: "Front",
  27462. image: {
  27463. source: "./media/characters/nicky/front.svg",
  27464. extra: 3144 / 2886,
  27465. bottom: 45.6 / 3192
  27466. }
  27467. },
  27468. back: {
  27469. height: math.unit(5 + 10 / 12, "feet"),
  27470. weight: math.unit(165, "lb"),
  27471. name: "Back",
  27472. image: {
  27473. source: "./media/characters/nicky/back.svg",
  27474. extra: 3055 / 2804,
  27475. bottom: 28.4 / 3087
  27476. }
  27477. },
  27478. frontclothed: {
  27479. height: math.unit(5 + 10 / 12, "feet"),
  27480. weight: math.unit(165, "lb"),
  27481. name: "Front-clothed",
  27482. image: {
  27483. source: "./media/characters/nicky/front-clothed.svg",
  27484. extra: 3184.9 / 2926.9,
  27485. bottom: 86.5 / 3239.9
  27486. }
  27487. },
  27488. foot: {
  27489. height: math.unit(1.16, "feet"),
  27490. name: "Foot",
  27491. image: {
  27492. source: "./media/characters/nicky/foot.svg"
  27493. }
  27494. },
  27495. feet: {
  27496. height: math.unit(1.34, "feet"),
  27497. name: "Feet",
  27498. image: {
  27499. source: "./media/characters/nicky/feet.svg"
  27500. }
  27501. },
  27502. maw: {
  27503. height: math.unit(0.9, "feet"),
  27504. name: "Maw",
  27505. image: {
  27506. source: "./media/characters/nicky/maw.svg"
  27507. }
  27508. },
  27509. },
  27510. [
  27511. {
  27512. name: "Normal",
  27513. height: math.unit(5 + 10 / 12, "feet"),
  27514. default: true
  27515. },
  27516. {
  27517. name: "Macro",
  27518. height: math.unit(60, "feet")
  27519. },
  27520. {
  27521. name: "Megamacro",
  27522. height: math.unit(1, "mile")
  27523. },
  27524. ]
  27525. ))
  27526. characterMakers.push(() => makeCharacter(
  27527. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27528. {
  27529. side: {
  27530. height: math.unit(10, "feet"),
  27531. weight: math.unit(600, "lb"),
  27532. name: "Side",
  27533. image: {
  27534. source: "./media/characters/blair/side.svg",
  27535. bottom: 16.6 / 475,
  27536. extra: 458 / 431
  27537. }
  27538. },
  27539. },
  27540. [
  27541. {
  27542. name: "Micro",
  27543. height: math.unit(8, "inches")
  27544. },
  27545. {
  27546. name: "Normal",
  27547. height: math.unit(10, "feet"),
  27548. default: true
  27549. },
  27550. {
  27551. name: "Macro",
  27552. height: math.unit(180, "feet")
  27553. },
  27554. ]
  27555. ))
  27556. characterMakers.push(() => makeCharacter(
  27557. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27558. {
  27559. front: {
  27560. height: math.unit(5 + 4 / 12, "feet"),
  27561. weight: math.unit(125, "lb"),
  27562. name: "Front",
  27563. image: {
  27564. source: "./media/characters/fisher/front.svg",
  27565. extra: 444 / 390,
  27566. bottom: 2 / 444.8
  27567. }
  27568. },
  27569. },
  27570. [
  27571. {
  27572. name: "Micro",
  27573. height: math.unit(4, "inches")
  27574. },
  27575. {
  27576. name: "Normal",
  27577. height: math.unit(5 + 4 / 12, "feet"),
  27578. default: true
  27579. },
  27580. {
  27581. name: "Macro",
  27582. height: math.unit(100, "feet")
  27583. },
  27584. ]
  27585. ))
  27586. characterMakers.push(() => makeCharacter(
  27587. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27588. {
  27589. front: {
  27590. height: math.unit(6.71, "feet"),
  27591. weight: math.unit(200, "lb"),
  27592. preyCapacity: math.unit(1000000, "people"),
  27593. name: "Front",
  27594. image: {
  27595. source: "./media/characters/gliss/front.svg",
  27596. extra: 2347 / 2231,
  27597. bottom: 113 / 2462
  27598. }
  27599. },
  27600. hammerspaceSize: {
  27601. height: math.unit(6.71 * 717, "feet"),
  27602. weight: math.unit(200, "lb"),
  27603. preyCapacity: math.unit(1000000, "people"),
  27604. name: "Hammerspace Size",
  27605. image: {
  27606. source: "./media/characters/gliss/front.svg",
  27607. extra: 2347 / 2231,
  27608. bottom: 113 / 2462
  27609. }
  27610. },
  27611. },
  27612. [
  27613. {
  27614. name: "Normal",
  27615. height: math.unit(6.71, "feet"),
  27616. default: true
  27617. },
  27618. ]
  27619. ))
  27620. characterMakers.push(() => makeCharacter(
  27621. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27622. {
  27623. side: {
  27624. height: math.unit(1.44, "m"),
  27625. weight: math.unit(80, "kg"),
  27626. name: "Side",
  27627. image: {
  27628. source: "./media/characters/dune-anderson/side.svg",
  27629. bottom: 49 / 1426
  27630. }
  27631. },
  27632. },
  27633. [
  27634. {
  27635. name: "Wolf-sized",
  27636. height: math.unit(1.44, "meters")
  27637. },
  27638. {
  27639. name: "Normal",
  27640. height: math.unit(5.05, "meters"),
  27641. default: true
  27642. },
  27643. {
  27644. name: "Big",
  27645. height: math.unit(14.4, "meters")
  27646. },
  27647. {
  27648. name: "Huge",
  27649. height: math.unit(144, "meters")
  27650. },
  27651. ]
  27652. ))
  27653. characterMakers.push(() => makeCharacter(
  27654. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27655. {
  27656. front: {
  27657. height: math.unit(6, "feet"),
  27658. weight: math.unit(220, "lb"),
  27659. name: "Front",
  27660. image: {
  27661. source: "./media/characters/hind/front.svg",
  27662. extra: 1912/1787,
  27663. bottom: 52/1964
  27664. }
  27665. },
  27666. back: {
  27667. height: math.unit(6, "feet"),
  27668. weight: math.unit(220, "lb"),
  27669. name: "Back",
  27670. image: {
  27671. source: "./media/characters/hind/back.svg",
  27672. extra: 1901/1794,
  27673. bottom: 26/1927
  27674. }
  27675. },
  27676. },
  27677. [
  27678. {
  27679. name: "Normal",
  27680. height: math.unit(6, "feet"),
  27681. default: true
  27682. },
  27683. ]
  27684. ))
  27685. characterMakers.push(() => makeCharacter(
  27686. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27687. {
  27688. front: {
  27689. height: math.unit(2.1, "meters"),
  27690. weight: math.unit(150, "lb"),
  27691. name: "Front",
  27692. image: {
  27693. source: "./media/characters/tharquench-sizestealer/front.svg",
  27694. extra: 1605/1470,
  27695. bottom: 36/1641
  27696. }
  27697. },
  27698. frontAlt: {
  27699. height: math.unit(2.1, "meters"),
  27700. weight: math.unit(150, "lb"),
  27701. name: "Front (Alt)",
  27702. image: {
  27703. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27704. extra: 2318 / 2063,
  27705. bottom: 93.4 / 2410
  27706. }
  27707. },
  27708. },
  27709. [
  27710. {
  27711. name: "Nano",
  27712. height: math.unit(1, "mm")
  27713. },
  27714. {
  27715. name: "Micro",
  27716. height: math.unit(1, "cm")
  27717. },
  27718. {
  27719. name: "Normal",
  27720. height: math.unit(2.1, "meters"),
  27721. default: true
  27722. },
  27723. ]
  27724. ))
  27725. characterMakers.push(() => makeCharacter(
  27726. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27727. {
  27728. front: {
  27729. height: math.unit(7 + 5 / 12, "feet"),
  27730. weight: math.unit(357, "lb"),
  27731. name: "Front",
  27732. image: {
  27733. source: "./media/characters/solex-draconov/front.svg",
  27734. extra: 1993 / 1865,
  27735. bottom: 117 / 2111
  27736. }
  27737. },
  27738. },
  27739. [
  27740. {
  27741. name: "Natural Height",
  27742. height: math.unit(7 + 5 / 12, "feet"),
  27743. default: true
  27744. },
  27745. {
  27746. name: "Macro",
  27747. height: math.unit(350, "feet")
  27748. },
  27749. {
  27750. name: "Macro+",
  27751. height: math.unit(1000, "feet")
  27752. },
  27753. {
  27754. name: "Megamacro",
  27755. height: math.unit(20, "km")
  27756. },
  27757. {
  27758. name: "Megamacro+",
  27759. height: math.unit(1000, "km")
  27760. },
  27761. {
  27762. name: "Gigamacro",
  27763. height: math.unit(2.5, "Gm")
  27764. },
  27765. {
  27766. name: "Teramacro",
  27767. height: math.unit(15, "Tm")
  27768. },
  27769. {
  27770. name: "Galactic",
  27771. height: math.unit(30, "Zm")
  27772. },
  27773. {
  27774. name: "Universal",
  27775. height: math.unit(21000, "Ym")
  27776. },
  27777. {
  27778. name: "Omniversal",
  27779. height: math.unit(9.861e50, "Ym")
  27780. },
  27781. {
  27782. name: "Existential",
  27783. height: math.unit(1e300, "meters")
  27784. },
  27785. ]
  27786. ))
  27787. characterMakers.push(() => makeCharacter(
  27788. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27789. {
  27790. side: {
  27791. height: math.unit(25, "feet"),
  27792. weight: math.unit(90000, "lb"),
  27793. name: "Side",
  27794. image: {
  27795. source: "./media/characters/mandarax/side.svg",
  27796. extra: 614 / 332,
  27797. bottom: 55 / 630
  27798. }
  27799. },
  27800. lounging: {
  27801. height: math.unit(15.4, "feet"),
  27802. weight: math.unit(90000, "lb"),
  27803. name: "Lounging",
  27804. image: {
  27805. source: "./media/characters/mandarax/lounging.svg",
  27806. extra: 817/609,
  27807. bottom: 685/1502
  27808. }
  27809. },
  27810. head: {
  27811. height: math.unit(11.4, "feet"),
  27812. name: "Head",
  27813. image: {
  27814. source: "./media/characters/mandarax/head.svg"
  27815. }
  27816. },
  27817. belly: {
  27818. height: math.unit(33, "feet"),
  27819. name: "Belly",
  27820. preyCapacity: math.unit(500, "people"),
  27821. image: {
  27822. source: "./media/characters/mandarax/belly.svg"
  27823. }
  27824. },
  27825. dick: {
  27826. height: math.unit(8.46, "feet"),
  27827. name: "Dick",
  27828. image: {
  27829. source: "./media/characters/mandarax/dick.svg"
  27830. }
  27831. },
  27832. top: {
  27833. height: math.unit(28, "meters"),
  27834. name: "Top",
  27835. image: {
  27836. source: "./media/characters/mandarax/top.svg"
  27837. }
  27838. },
  27839. },
  27840. [
  27841. {
  27842. name: "Normal",
  27843. height: math.unit(25, "feet"),
  27844. default: true
  27845. },
  27846. ]
  27847. ))
  27848. characterMakers.push(() => makeCharacter(
  27849. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27850. {
  27851. front: {
  27852. height: math.unit(5, "feet"),
  27853. weight: math.unit(90, "lb"),
  27854. name: "Front",
  27855. image: {
  27856. source: "./media/characters/pixil/front.svg",
  27857. extra: 2000 / 1618,
  27858. bottom: 12.3 / 2011
  27859. }
  27860. },
  27861. },
  27862. [
  27863. {
  27864. name: "Normal",
  27865. height: math.unit(5, "feet"),
  27866. default: true
  27867. },
  27868. {
  27869. name: "Megamacro",
  27870. height: math.unit(10, "miles"),
  27871. },
  27872. ]
  27873. ))
  27874. characterMakers.push(() => makeCharacter(
  27875. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27876. {
  27877. front: {
  27878. height: math.unit(7 + 2 / 12, "feet"),
  27879. weight: math.unit(200, "lb"),
  27880. name: "Front",
  27881. image: {
  27882. source: "./media/characters/angel/front.svg",
  27883. extra: 1946/1840,
  27884. bottom: 30/1976
  27885. }
  27886. },
  27887. },
  27888. [
  27889. {
  27890. name: "Normal",
  27891. height: math.unit(7 + 2 / 12, "feet"),
  27892. default: true
  27893. },
  27894. {
  27895. name: "Macro",
  27896. height: math.unit(1000, "feet")
  27897. },
  27898. {
  27899. name: "Megamacro",
  27900. height: math.unit(2, "miles")
  27901. },
  27902. {
  27903. name: "Gigamacro",
  27904. height: math.unit(20, "earths")
  27905. },
  27906. ]
  27907. ))
  27908. characterMakers.push(() => makeCharacter(
  27909. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27910. {
  27911. front: {
  27912. height: math.unit(5, "feet"),
  27913. weight: math.unit(180, "lb"),
  27914. name: "Front",
  27915. image: {
  27916. source: "./media/characters/mekana/front.svg",
  27917. extra: 1671 / 1605,
  27918. bottom: 3.5 / 1691
  27919. }
  27920. },
  27921. side: {
  27922. height: math.unit(5, "feet"),
  27923. weight: math.unit(180, "lb"),
  27924. name: "Side",
  27925. image: {
  27926. source: "./media/characters/mekana/side.svg",
  27927. extra: 1671 / 1605,
  27928. bottom: 3.5 / 1691
  27929. }
  27930. },
  27931. back: {
  27932. height: math.unit(5, "feet"),
  27933. weight: math.unit(180, "lb"),
  27934. name: "Back",
  27935. image: {
  27936. source: "./media/characters/mekana/back.svg",
  27937. extra: 1671 / 1605,
  27938. bottom: 3.5 / 1691
  27939. }
  27940. },
  27941. },
  27942. [
  27943. {
  27944. name: "Normal",
  27945. height: math.unit(5, "feet"),
  27946. default: true
  27947. },
  27948. ]
  27949. ))
  27950. characterMakers.push(() => makeCharacter(
  27951. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27952. {
  27953. front: {
  27954. height: math.unit(4 + 6 / 12, "feet"),
  27955. weight: math.unit(80, "lb"),
  27956. name: "Front",
  27957. image: {
  27958. source: "./media/characters/pixie/front.svg",
  27959. extra: 1924 / 1825,
  27960. bottom: 22.4 / 1946
  27961. }
  27962. },
  27963. },
  27964. [
  27965. {
  27966. name: "Normal",
  27967. height: math.unit(4 + 6 / 12, "feet"),
  27968. default: true
  27969. },
  27970. {
  27971. name: "Macro",
  27972. height: math.unit(40, "feet")
  27973. },
  27974. ]
  27975. ))
  27976. characterMakers.push(() => makeCharacter(
  27977. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27978. {
  27979. front: {
  27980. height: math.unit(2.1, "meters"),
  27981. weight: math.unit(200, "lb"),
  27982. name: "Front",
  27983. image: {
  27984. source: "./media/characters/the-lascivious/front.svg",
  27985. extra: 1 / 0.893,
  27986. bottom: 3.5 / 573.7
  27987. }
  27988. },
  27989. },
  27990. [
  27991. {
  27992. name: "Human Scale",
  27993. height: math.unit(2.1, "meters")
  27994. },
  27995. {
  27996. name: "Wolxi Scale",
  27997. height: math.unit(46.2, "m"),
  27998. default: true
  27999. },
  28000. {
  28001. name: "Boinker of Buildings",
  28002. height: math.unit(10, "km")
  28003. },
  28004. {
  28005. name: "Shagger of Skyscrapers",
  28006. height: math.unit(40, "km")
  28007. },
  28008. {
  28009. name: "Banger of Boroughs",
  28010. height: math.unit(4000, "km")
  28011. },
  28012. {
  28013. name: "Screwer of States",
  28014. height: math.unit(100000, "km")
  28015. },
  28016. {
  28017. name: "Pounder of Planets",
  28018. height: math.unit(2000000, "km")
  28019. },
  28020. ]
  28021. ))
  28022. characterMakers.push(() => makeCharacter(
  28023. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28024. {
  28025. front: {
  28026. height: math.unit(6, "feet"),
  28027. weight: math.unit(150, "lb"),
  28028. name: "Front",
  28029. image: {
  28030. source: "./media/characters/aj/front.svg",
  28031. extra: 2039 / 1562,
  28032. bottom: 40 / 2079
  28033. }
  28034. },
  28035. },
  28036. [
  28037. {
  28038. name: "Normal",
  28039. height: math.unit(11 + 6 / 12, "feet"),
  28040. default: true
  28041. },
  28042. {
  28043. name: "Megamacro",
  28044. height: math.unit(60, "megameters")
  28045. },
  28046. ]
  28047. ))
  28048. characterMakers.push(() => makeCharacter(
  28049. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28050. {
  28051. side: {
  28052. height: math.unit(31 + 8 / 12, "feet"),
  28053. weight: math.unit(75000, "kg"),
  28054. name: "Side",
  28055. image: {
  28056. source: "./media/characters/koros/side.svg",
  28057. extra: 1442 / 1297,
  28058. bottom: 122.7 / 1562
  28059. }
  28060. },
  28061. dicksKingsCrown: {
  28062. height: math.unit(6, "feet"),
  28063. name: "Dicks (King's Crown)",
  28064. image: {
  28065. source: "./media/characters/koros/dicks-kings-crown.svg"
  28066. }
  28067. },
  28068. dicksTailSet: {
  28069. height: math.unit(3, "feet"),
  28070. name: "Dicks (Tail Set)",
  28071. image: {
  28072. source: "./media/characters/koros/dicks-tail-set.svg"
  28073. }
  28074. },
  28075. dickCumming: {
  28076. height: math.unit(7.98, "feet"),
  28077. name: "Dick (Cumming)",
  28078. image: {
  28079. source: "./media/characters/koros/dick-cumming.svg"
  28080. }
  28081. },
  28082. dicksBack: {
  28083. height: math.unit(5.9, "feet"),
  28084. name: "Dicks (Back)",
  28085. image: {
  28086. source: "./media/characters/koros/dicks-back.svg"
  28087. }
  28088. },
  28089. dicksFront: {
  28090. height: math.unit(3.72, "feet"),
  28091. name: "Dicks (Front)",
  28092. image: {
  28093. source: "./media/characters/koros/dicks-front.svg"
  28094. }
  28095. },
  28096. dicksPeeking: {
  28097. height: math.unit(3.0, "feet"),
  28098. name: "Dicks (Peeking)",
  28099. image: {
  28100. source: "./media/characters/koros/dicks-peeking.svg"
  28101. }
  28102. },
  28103. eye: {
  28104. height: math.unit(1.7, "feet"),
  28105. name: "Eye",
  28106. image: {
  28107. source: "./media/characters/koros/eye.svg"
  28108. }
  28109. },
  28110. headFront: {
  28111. height: math.unit(11.69, "feet"),
  28112. name: "Head (Front)",
  28113. image: {
  28114. source: "./media/characters/koros/head-front.svg"
  28115. }
  28116. },
  28117. headSide: {
  28118. height: math.unit(14, "feet"),
  28119. name: "Head (Side)",
  28120. image: {
  28121. source: "./media/characters/koros/head-side.svg"
  28122. }
  28123. },
  28124. leg: {
  28125. height: math.unit(17, "feet"),
  28126. name: "Leg",
  28127. image: {
  28128. source: "./media/characters/koros/leg.svg"
  28129. }
  28130. },
  28131. mawSide: {
  28132. height: math.unit(12.8, "feet"),
  28133. name: "Maw (Side)",
  28134. image: {
  28135. source: "./media/characters/koros/maw-side.svg"
  28136. }
  28137. },
  28138. mawSpitting: {
  28139. height: math.unit(17, "feet"),
  28140. name: "Maw (Spitting)",
  28141. image: {
  28142. source: "./media/characters/koros/maw-spitting.svg"
  28143. }
  28144. },
  28145. slit: {
  28146. height: math.unit(2.8, "feet"),
  28147. name: "Slit",
  28148. image: {
  28149. source: "./media/characters/koros/slit.svg"
  28150. }
  28151. },
  28152. stomach: {
  28153. height: math.unit(6.8, "feet"),
  28154. preyCapacity: math.unit(20, "people"),
  28155. name: "Stomach",
  28156. image: {
  28157. source: "./media/characters/koros/stomach.svg"
  28158. }
  28159. },
  28160. wingspanBottom: {
  28161. height: math.unit(114, "feet"),
  28162. name: "Wingspan (Bottom)",
  28163. image: {
  28164. source: "./media/characters/koros/wingspan-bottom.svg"
  28165. }
  28166. },
  28167. wingspanTop: {
  28168. height: math.unit(104, "feet"),
  28169. name: "Wingspan (Top)",
  28170. image: {
  28171. source: "./media/characters/koros/wingspan-top.svg"
  28172. }
  28173. },
  28174. },
  28175. [
  28176. {
  28177. name: "Normal",
  28178. height: math.unit(31 + 8 / 12, "feet"),
  28179. default: true
  28180. },
  28181. ]
  28182. ))
  28183. characterMakers.push(() => makeCharacter(
  28184. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28185. {
  28186. front: {
  28187. height: math.unit(18 + 5 / 12, "feet"),
  28188. weight: math.unit(3750, "kg"),
  28189. name: "Front",
  28190. image: {
  28191. source: "./media/characters/vexx/front.svg",
  28192. extra: 426 / 396,
  28193. bottom: 31.5 / 458
  28194. }
  28195. },
  28196. maw: {
  28197. height: math.unit(6, "feet"),
  28198. name: "Maw",
  28199. image: {
  28200. source: "./media/characters/vexx/maw.svg"
  28201. }
  28202. },
  28203. },
  28204. [
  28205. {
  28206. name: "Normal",
  28207. height: math.unit(18 + 5 / 12, "feet"),
  28208. default: true
  28209. },
  28210. ]
  28211. ))
  28212. characterMakers.push(() => makeCharacter(
  28213. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28214. {
  28215. front: {
  28216. height: math.unit(17 + 6 / 12, "feet"),
  28217. weight: math.unit(150, "lb"),
  28218. name: "Front",
  28219. image: {
  28220. source: "./media/characters/baadra/front.svg",
  28221. extra: 1694/1553,
  28222. bottom: 179/1873
  28223. }
  28224. },
  28225. frontAlt: {
  28226. height: math.unit(17 + 6 / 12, "feet"),
  28227. weight: math.unit(150, "lb"),
  28228. name: "Front (Alt)",
  28229. image: {
  28230. source: "./media/characters/baadra/front-alt.svg",
  28231. extra: 3137 / 2890,
  28232. bottom: 168.4 / 3305
  28233. }
  28234. },
  28235. back: {
  28236. height: math.unit(17 + 6 / 12, "feet"),
  28237. weight: math.unit(150, "lb"),
  28238. name: "Back",
  28239. image: {
  28240. source: "./media/characters/baadra/back.svg",
  28241. extra: 3142 / 2890,
  28242. bottom: 220 / 3371
  28243. }
  28244. },
  28245. head: {
  28246. height: math.unit(5.45, "feet"),
  28247. name: "Head",
  28248. image: {
  28249. source: "./media/characters/baadra/head.svg"
  28250. }
  28251. },
  28252. headAngry: {
  28253. height: math.unit(4.95, "feet"),
  28254. name: "Head (Angry)",
  28255. image: {
  28256. source: "./media/characters/baadra/head-angry.svg"
  28257. }
  28258. },
  28259. headOpen: {
  28260. height: math.unit(6, "feet"),
  28261. name: "Head (Open)",
  28262. image: {
  28263. source: "./media/characters/baadra/head-open.svg"
  28264. }
  28265. },
  28266. },
  28267. [
  28268. {
  28269. name: "Normal",
  28270. height: math.unit(17 + 6 / 12, "feet"),
  28271. default: true
  28272. },
  28273. ]
  28274. ))
  28275. characterMakers.push(() => makeCharacter(
  28276. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28277. {
  28278. front: {
  28279. height: math.unit(7 + 3 / 12, "feet"),
  28280. weight: math.unit(180, "lb"),
  28281. name: "Front",
  28282. image: {
  28283. source: "./media/characters/juri/front.svg",
  28284. extra: 1401 / 1237,
  28285. bottom: 18.5 / 1418
  28286. }
  28287. },
  28288. side: {
  28289. height: math.unit(7 + 3 / 12, "feet"),
  28290. weight: math.unit(180, "lb"),
  28291. name: "Side",
  28292. image: {
  28293. source: "./media/characters/juri/side.svg",
  28294. extra: 1424 / 1242,
  28295. bottom: 18.5 / 1447
  28296. }
  28297. },
  28298. sitting: {
  28299. height: math.unit(6, "feet"),
  28300. weight: math.unit(180, "lb"),
  28301. name: "Sitting",
  28302. image: {
  28303. source: "./media/characters/juri/sitting.svg",
  28304. extra: 1270 / 1143,
  28305. bottom: 100 / 1343
  28306. }
  28307. },
  28308. back: {
  28309. height: math.unit(7 + 3 / 12, "feet"),
  28310. weight: math.unit(180, "lb"),
  28311. name: "Back",
  28312. image: {
  28313. source: "./media/characters/juri/back.svg",
  28314. extra: 1377 / 1240,
  28315. bottom: 23.7 / 1405
  28316. }
  28317. },
  28318. maw: {
  28319. height: math.unit(2.8, "feet"),
  28320. name: "Maw",
  28321. image: {
  28322. source: "./media/characters/juri/maw.svg"
  28323. }
  28324. },
  28325. stomach: {
  28326. height: math.unit(0.89, "feet"),
  28327. preyCapacity: math.unit(4, "liters"),
  28328. name: "Stomach",
  28329. image: {
  28330. source: "./media/characters/juri/stomach.svg"
  28331. }
  28332. },
  28333. },
  28334. [
  28335. {
  28336. name: "Normal",
  28337. height: math.unit(7 + 3 / 12, "feet"),
  28338. default: true
  28339. },
  28340. ]
  28341. ))
  28342. characterMakers.push(() => makeCharacter(
  28343. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28344. {
  28345. fox: {
  28346. height: math.unit(5 + 6 / 12, "feet"),
  28347. weight: math.unit(140, "lb"),
  28348. name: "Fox",
  28349. image: {
  28350. source: "./media/characters/maxene-sita/fox.svg",
  28351. extra: 146 / 138,
  28352. bottom: 2.1 / 148.19
  28353. }
  28354. },
  28355. foxLaying: {
  28356. height: math.unit(1.70, "feet"),
  28357. weight: math.unit(140, "lb"),
  28358. name: "Fox (Laying)",
  28359. image: {
  28360. source: "./media/characters/maxene-sita/fox-laying.svg",
  28361. extra: 910 / 572,
  28362. bottom: 71 / 981
  28363. }
  28364. },
  28365. kitsune: {
  28366. height: math.unit(10, "feet"),
  28367. weight: math.unit(800, "lb"),
  28368. name: "Kitsune",
  28369. image: {
  28370. source: "./media/characters/maxene-sita/kitsune.svg",
  28371. extra: 185 / 176,
  28372. bottom: 4.7 / 189.9
  28373. }
  28374. },
  28375. hellhound: {
  28376. height: math.unit(10, "feet"),
  28377. weight: math.unit(700, "lb"),
  28378. name: "Hellhound",
  28379. image: {
  28380. source: "./media/characters/maxene-sita/hellhound.svg",
  28381. extra: 1600 / 1545,
  28382. bottom: 81 / 1681
  28383. }
  28384. },
  28385. },
  28386. [
  28387. {
  28388. name: "Normal",
  28389. height: math.unit(5 + 6 / 12, "feet"),
  28390. default: true
  28391. },
  28392. ]
  28393. ))
  28394. characterMakers.push(() => makeCharacter(
  28395. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28396. {
  28397. front: {
  28398. height: math.unit(3 + 4 / 12, "feet"),
  28399. weight: math.unit(70, "lb"),
  28400. name: "Front",
  28401. image: {
  28402. source: "./media/characters/maia/front.svg",
  28403. extra: 227 / 219.5,
  28404. bottom: 40 / 267
  28405. }
  28406. },
  28407. back: {
  28408. height: math.unit(3 + 4 / 12, "feet"),
  28409. weight: math.unit(70, "lb"),
  28410. name: "Back",
  28411. image: {
  28412. source: "./media/characters/maia/back.svg",
  28413. extra: 237 / 225
  28414. }
  28415. },
  28416. },
  28417. [
  28418. {
  28419. name: "Normal",
  28420. height: math.unit(3 + 4 / 12, "feet"),
  28421. default: true
  28422. },
  28423. ]
  28424. ))
  28425. characterMakers.push(() => makeCharacter(
  28426. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28427. {
  28428. front: {
  28429. height: math.unit(5 + 10 / 12, "feet"),
  28430. weight: math.unit(197, "lb"),
  28431. name: "Front",
  28432. image: {
  28433. source: "./media/characters/jabaro/front.svg",
  28434. extra: 225 / 216,
  28435. bottom: 5.06 / 230
  28436. }
  28437. },
  28438. back: {
  28439. height: math.unit(5 + 10 / 12, "feet"),
  28440. weight: math.unit(197, "lb"),
  28441. name: "Back",
  28442. image: {
  28443. source: "./media/characters/jabaro/back.svg",
  28444. extra: 225 / 219,
  28445. bottom: 1.9 / 227
  28446. }
  28447. },
  28448. },
  28449. [
  28450. {
  28451. name: "Normal",
  28452. height: math.unit(5 + 10 / 12, "feet"),
  28453. default: true
  28454. },
  28455. ]
  28456. ))
  28457. characterMakers.push(() => makeCharacter(
  28458. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28459. {
  28460. front: {
  28461. height: math.unit(5 + 8 / 12, "feet"),
  28462. weight: math.unit(139, "lb"),
  28463. name: "Front",
  28464. image: {
  28465. source: "./media/characters/risa/front.svg",
  28466. extra: 270 / 260,
  28467. bottom: 11.2 / 282
  28468. }
  28469. },
  28470. back: {
  28471. height: math.unit(5 + 8 / 12, "feet"),
  28472. weight: math.unit(139, "lb"),
  28473. name: "Back",
  28474. image: {
  28475. source: "./media/characters/risa/back.svg",
  28476. extra: 264 / 255,
  28477. bottom: 4 / 268
  28478. }
  28479. },
  28480. },
  28481. [
  28482. {
  28483. name: "Normal",
  28484. height: math.unit(5 + 8 / 12, "feet"),
  28485. default: true
  28486. },
  28487. ]
  28488. ))
  28489. characterMakers.push(() => makeCharacter(
  28490. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28491. {
  28492. front: {
  28493. height: math.unit(2 + 11 / 12, "feet"),
  28494. weight: math.unit(30, "lb"),
  28495. name: "Front",
  28496. image: {
  28497. source: "./media/characters/weatley/front.svg",
  28498. bottom: 10.7 / 414,
  28499. extra: 403.5 / 362
  28500. }
  28501. },
  28502. back: {
  28503. height: math.unit(2 + 11 / 12, "feet"),
  28504. weight: math.unit(30, "lb"),
  28505. name: "Back",
  28506. image: {
  28507. source: "./media/characters/weatley/back.svg",
  28508. bottom: 10.7 / 414,
  28509. extra: 403.5 / 362
  28510. }
  28511. },
  28512. },
  28513. [
  28514. {
  28515. name: "Normal",
  28516. height: math.unit(2 + 11 / 12, "feet"),
  28517. default: true
  28518. },
  28519. ]
  28520. ))
  28521. characterMakers.push(() => makeCharacter(
  28522. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28523. {
  28524. front: {
  28525. height: math.unit(5 + 2 / 12, "feet"),
  28526. weight: math.unit(50, "kg"),
  28527. name: "Front",
  28528. image: {
  28529. source: "./media/characters/mercury-crescent/front.svg",
  28530. extra: 1088 / 1033,
  28531. bottom: 18.9 / 1109
  28532. }
  28533. },
  28534. },
  28535. [
  28536. {
  28537. name: "Normal",
  28538. height: math.unit(5 + 2 / 12, "feet"),
  28539. default: true
  28540. },
  28541. ]
  28542. ))
  28543. characterMakers.push(() => makeCharacter(
  28544. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28545. {
  28546. front: {
  28547. height: math.unit(2, "feet"),
  28548. weight: math.unit(15, "kg"),
  28549. name: "Front",
  28550. image: {
  28551. source: "./media/characters/diamond-jones/front.svg",
  28552. extra: 727/723,
  28553. bottom: 46/773
  28554. }
  28555. },
  28556. },
  28557. [
  28558. {
  28559. name: "Normal",
  28560. height: math.unit(2, "feet"),
  28561. default: true
  28562. },
  28563. ]
  28564. ))
  28565. characterMakers.push(() => makeCharacter(
  28566. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28567. {
  28568. front: {
  28569. height: math.unit(3, "feet"),
  28570. weight: math.unit(30, "kg"),
  28571. name: "Front",
  28572. image: {
  28573. source: "./media/characters/sweet-bit/front.svg",
  28574. extra: 675 / 567,
  28575. bottom: 27.7 / 703
  28576. }
  28577. },
  28578. },
  28579. [
  28580. {
  28581. name: "Normal",
  28582. height: math.unit(3, "feet"),
  28583. default: true
  28584. },
  28585. ]
  28586. ))
  28587. characterMakers.push(() => makeCharacter(
  28588. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28589. {
  28590. side: {
  28591. height: math.unit(9.178, "feet"),
  28592. weight: math.unit(500, "lb"),
  28593. name: "Side",
  28594. image: {
  28595. source: "./media/characters/umbrazen/side.svg",
  28596. extra: 1730 / 1473,
  28597. bottom: 34.6 / 1765
  28598. }
  28599. },
  28600. },
  28601. [
  28602. {
  28603. name: "Normal",
  28604. height: math.unit(9.178, "feet"),
  28605. default: true
  28606. },
  28607. ]
  28608. ))
  28609. characterMakers.push(() => makeCharacter(
  28610. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28611. {
  28612. front: {
  28613. height: math.unit(10, "feet"),
  28614. weight: math.unit(750, "lb"),
  28615. name: "Front",
  28616. image: {
  28617. source: "./media/characters/arlist/front.svg",
  28618. extra: 961 / 778,
  28619. bottom: 6.2 / 986
  28620. }
  28621. },
  28622. },
  28623. [
  28624. {
  28625. name: "Normal",
  28626. height: math.unit(10, "feet"),
  28627. default: true
  28628. },
  28629. ]
  28630. ))
  28631. characterMakers.push(() => makeCharacter(
  28632. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28633. {
  28634. front: {
  28635. height: math.unit(5 + 1 / 12, "feet"),
  28636. weight: math.unit(110, "lb"),
  28637. name: "Front",
  28638. image: {
  28639. source: "./media/characters/aradel/front.svg",
  28640. extra: 324 / 303,
  28641. bottom: 3.6 / 329.4
  28642. }
  28643. },
  28644. },
  28645. [
  28646. {
  28647. name: "Normal",
  28648. height: math.unit(5 + 1 / 12, "feet"),
  28649. default: true
  28650. },
  28651. ]
  28652. ))
  28653. characterMakers.push(() => makeCharacter(
  28654. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28655. {
  28656. dressed: {
  28657. height: math.unit(3 + 8 / 12, "feet"),
  28658. weight: math.unit(50, "lb"),
  28659. name: "Dressed",
  28660. image: {
  28661. source: "./media/characters/serryn/dressed.svg",
  28662. extra: 1792 / 1656,
  28663. bottom: 43.5 / 1840
  28664. }
  28665. },
  28666. nude: {
  28667. height: math.unit(3 + 8 / 12, "feet"),
  28668. weight: math.unit(50, "lb"),
  28669. name: "Nude",
  28670. image: {
  28671. source: "./media/characters/serryn/nude.svg",
  28672. extra: 1792 / 1656,
  28673. bottom: 43.5 / 1840
  28674. }
  28675. },
  28676. },
  28677. [
  28678. {
  28679. name: "Normal",
  28680. height: math.unit(3 + 8 / 12, "feet"),
  28681. default: true
  28682. },
  28683. ]
  28684. ))
  28685. characterMakers.push(() => makeCharacter(
  28686. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28687. {
  28688. front: {
  28689. height: math.unit(7 + 10 / 12, "feet"),
  28690. weight: math.unit(255, "lb"),
  28691. name: "Front",
  28692. image: {
  28693. source: "./media/characters/xavier-thyme/front.svg",
  28694. extra: 3733 / 3642,
  28695. bottom: 131 / 3869
  28696. }
  28697. },
  28698. frontRaven: {
  28699. height: math.unit(7 + 10 / 12, "feet"),
  28700. weight: math.unit(255, "lb"),
  28701. name: "Front (Raven)",
  28702. image: {
  28703. source: "./media/characters/xavier-thyme/front-raven.svg",
  28704. extra: 4385 / 3642,
  28705. bottom: 131 / 4517
  28706. }
  28707. },
  28708. },
  28709. [
  28710. {
  28711. name: "Normal",
  28712. height: math.unit(7 + 10 / 12, "feet"),
  28713. default: true
  28714. },
  28715. ]
  28716. ))
  28717. characterMakers.push(() => makeCharacter(
  28718. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28719. {
  28720. front: {
  28721. height: math.unit(1.6, "m"),
  28722. weight: math.unit(50, "kg"),
  28723. name: "Front",
  28724. image: {
  28725. source: "./media/characters/kiki/front.svg",
  28726. extra: 4682 / 3610,
  28727. bottom: 115 / 4777
  28728. }
  28729. },
  28730. },
  28731. [
  28732. {
  28733. name: "Normal",
  28734. height: math.unit(1.6, "meters"),
  28735. default: true
  28736. },
  28737. ]
  28738. ))
  28739. characterMakers.push(() => makeCharacter(
  28740. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28741. {
  28742. front: {
  28743. height: math.unit(50, "m"),
  28744. weight: math.unit(500, "tonnes"),
  28745. name: "Front",
  28746. image: {
  28747. source: "./media/characters/ryoko/front.svg",
  28748. extra: 4632 / 3926,
  28749. bottom: 193 / 4823
  28750. }
  28751. },
  28752. },
  28753. [
  28754. {
  28755. name: "Normal",
  28756. height: math.unit(50, "meters"),
  28757. default: true
  28758. },
  28759. ]
  28760. ))
  28761. characterMakers.push(() => makeCharacter(
  28762. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28763. {
  28764. front: {
  28765. height: math.unit(30, "m"),
  28766. weight: math.unit(22, "tonnes"),
  28767. name: "Front",
  28768. image: {
  28769. source: "./media/characters/elio/front.svg",
  28770. extra: 4582 / 3720,
  28771. bottom: 236 / 4828
  28772. }
  28773. },
  28774. },
  28775. [
  28776. {
  28777. name: "Normal",
  28778. height: math.unit(30, "meters"),
  28779. default: true
  28780. },
  28781. ]
  28782. ))
  28783. characterMakers.push(() => makeCharacter(
  28784. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28785. {
  28786. front: {
  28787. height: math.unit(6 + 3 / 12, "feet"),
  28788. weight: math.unit(120, "lb"),
  28789. name: "Front",
  28790. image: {
  28791. source: "./media/characters/azura/front.svg",
  28792. extra: 1149 / 1135,
  28793. bottom: 45 / 1194
  28794. }
  28795. },
  28796. frontClothed: {
  28797. height: math.unit(6 + 3 / 12, "feet"),
  28798. weight: math.unit(120, "lb"),
  28799. name: "Front (Clothed)",
  28800. image: {
  28801. source: "./media/characters/azura/front-clothed.svg",
  28802. extra: 1149 / 1135,
  28803. bottom: 45 / 1194
  28804. }
  28805. },
  28806. },
  28807. [
  28808. {
  28809. name: "Normal",
  28810. height: math.unit(6 + 3 / 12, "feet"),
  28811. default: true
  28812. },
  28813. {
  28814. name: "Macro",
  28815. height: math.unit(20 + 6 / 12, "feet")
  28816. },
  28817. {
  28818. name: "Megamacro",
  28819. height: math.unit(12, "miles")
  28820. },
  28821. {
  28822. name: "Gigamacro",
  28823. height: math.unit(10000, "miles")
  28824. },
  28825. {
  28826. name: "Teramacro",
  28827. height: math.unit(900000, "miles")
  28828. },
  28829. ]
  28830. ))
  28831. characterMakers.push(() => makeCharacter(
  28832. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28833. {
  28834. front: {
  28835. height: math.unit(12, "feet"),
  28836. weight: math.unit(1, "ton"),
  28837. capacity: math.unit(660000, "gallons"),
  28838. name: "Front",
  28839. image: {
  28840. source: "./media/characters/zeus/front.svg",
  28841. extra: 5005 / 4717,
  28842. bottom: 363 / 5388
  28843. }
  28844. },
  28845. },
  28846. [
  28847. {
  28848. name: "Normal",
  28849. height: math.unit(12, "feet")
  28850. },
  28851. {
  28852. name: "Preferred Size",
  28853. height: math.unit(0.5, "miles"),
  28854. default: true
  28855. },
  28856. {
  28857. name: "Giga Horse",
  28858. height: math.unit(300, "miles")
  28859. },
  28860. {
  28861. name: "Riding Planets",
  28862. height: math.unit(30, "megameters")
  28863. },
  28864. {
  28865. name: "Cosmic Giant",
  28866. height: math.unit(3, "zettameters")
  28867. },
  28868. {
  28869. name: "Breeding God",
  28870. height: math.unit(9.92e22, "yottameters")
  28871. },
  28872. ]
  28873. ))
  28874. characterMakers.push(() => makeCharacter(
  28875. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28876. {
  28877. side: {
  28878. height: math.unit(9, "feet"),
  28879. weight: math.unit(1500, "kg"),
  28880. name: "Side",
  28881. image: {
  28882. source: "./media/characters/fang/side.svg",
  28883. extra: 924 / 866,
  28884. bottom: 47.5 / 972.3
  28885. }
  28886. },
  28887. },
  28888. [
  28889. {
  28890. name: "Normal",
  28891. height: math.unit(9, "feet"),
  28892. default: true
  28893. },
  28894. {
  28895. name: "Macro",
  28896. height: math.unit(75 + 6 / 12, "feet")
  28897. },
  28898. {
  28899. name: "Teramacro",
  28900. height: math.unit(50000, "miles")
  28901. },
  28902. ]
  28903. ))
  28904. characterMakers.push(() => makeCharacter(
  28905. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28906. {
  28907. front: {
  28908. height: math.unit(10, "feet"),
  28909. weight: math.unit(2, "tons"),
  28910. name: "Front",
  28911. image: {
  28912. source: "./media/characters/rekhit/front.svg",
  28913. extra: 2796 / 2590,
  28914. bottom: 225 / 3022
  28915. }
  28916. },
  28917. },
  28918. [
  28919. {
  28920. name: "Normal",
  28921. height: math.unit(10, "feet"),
  28922. default: true
  28923. },
  28924. {
  28925. name: "Macro",
  28926. height: math.unit(500, "feet")
  28927. },
  28928. ]
  28929. ))
  28930. characterMakers.push(() => makeCharacter(
  28931. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28932. {
  28933. front: {
  28934. height: math.unit(7 + 6.451 / 12, "feet"),
  28935. weight: math.unit(310, "lb"),
  28936. name: "Front",
  28937. image: {
  28938. source: "./media/characters/dahlia-verrick/front.svg",
  28939. extra: 1488 / 1365,
  28940. bottom: 6.2 / 1495
  28941. }
  28942. },
  28943. back: {
  28944. height: math.unit(7 + 6.451 / 12, "feet"),
  28945. weight: math.unit(310, "lb"),
  28946. name: "Back",
  28947. image: {
  28948. source: "./media/characters/dahlia-verrick/back.svg",
  28949. extra: 1472 / 1351,
  28950. bottom: 5.28 / 1477
  28951. }
  28952. },
  28953. frontBusiness: {
  28954. height: math.unit(7 + 6.451 / 12, "feet"),
  28955. weight: math.unit(200, "lb"),
  28956. name: "Front (Business)",
  28957. image: {
  28958. source: "./media/characters/dahlia-verrick/front-business.svg",
  28959. extra: 1478 / 1381,
  28960. bottom: 5.5 / 1484
  28961. }
  28962. },
  28963. frontCasual: {
  28964. height: math.unit(7 + 6.451 / 12, "feet"),
  28965. weight: math.unit(200, "lb"),
  28966. name: "Front (Casual)",
  28967. image: {
  28968. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28969. extra: 1478 / 1381,
  28970. bottom: 5.5 / 1484
  28971. }
  28972. },
  28973. },
  28974. [
  28975. {
  28976. name: "Travel-Sized",
  28977. height: math.unit(7.45, "inches")
  28978. },
  28979. {
  28980. name: "Normal",
  28981. height: math.unit(7 + 6.451 / 12, "feet"),
  28982. default: true
  28983. },
  28984. {
  28985. name: "Hitting the Town",
  28986. height: math.unit(37 + 8 / 12, "feet")
  28987. },
  28988. {
  28989. name: "Stomp in the Suburbs",
  28990. height: math.unit(964 + 9.728 / 12, "feet")
  28991. },
  28992. {
  28993. name: "Sit on the City",
  28994. height: math.unit(61747 + 10.592 / 12, "feet")
  28995. },
  28996. {
  28997. name: "Glomp the Globe",
  28998. height: math.unit(252919327 + 4.832 / 12, "feet")
  28999. },
  29000. ]
  29001. ))
  29002. characterMakers.push(() => makeCharacter(
  29003. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29004. {
  29005. front: {
  29006. height: math.unit(6 + 4 / 12, "feet"),
  29007. weight: math.unit(320, "lb"),
  29008. name: "Front",
  29009. image: {
  29010. source: "./media/characters/balina-mahigan/front.svg",
  29011. extra: 447 / 428,
  29012. bottom: 18 / 466
  29013. }
  29014. },
  29015. back: {
  29016. height: math.unit(6 + 4 / 12, "feet"),
  29017. weight: math.unit(320, "lb"),
  29018. name: "Back",
  29019. image: {
  29020. source: "./media/characters/balina-mahigan/back.svg",
  29021. extra: 445 / 428,
  29022. bottom: 4.07 / 448
  29023. }
  29024. },
  29025. arm: {
  29026. height: math.unit(1.88, "feet"),
  29027. name: "Arm",
  29028. image: {
  29029. source: "./media/characters/balina-mahigan/arm.svg"
  29030. }
  29031. },
  29032. backPort: {
  29033. height: math.unit(0.685, "feet"),
  29034. name: "Back Port",
  29035. image: {
  29036. source: "./media/characters/balina-mahigan/back-port.svg"
  29037. }
  29038. },
  29039. hoofpaw: {
  29040. height: math.unit(1.41, "feet"),
  29041. name: "Hoofpaw",
  29042. image: {
  29043. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29044. }
  29045. },
  29046. leftHandBack: {
  29047. height: math.unit(0.938, "feet"),
  29048. name: "Left Hand (Back)",
  29049. image: {
  29050. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29051. }
  29052. },
  29053. leftHandFront: {
  29054. height: math.unit(0.938, "feet"),
  29055. name: "Left Hand (Front)",
  29056. image: {
  29057. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29058. }
  29059. },
  29060. rightHandBack: {
  29061. height: math.unit(0.95, "feet"),
  29062. name: "Right Hand (Back)",
  29063. image: {
  29064. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29065. }
  29066. },
  29067. rightHandFront: {
  29068. height: math.unit(0.95, "feet"),
  29069. name: "Right Hand (Front)",
  29070. image: {
  29071. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29072. }
  29073. },
  29074. },
  29075. [
  29076. {
  29077. name: "Normal",
  29078. height: math.unit(6 + 4 / 12, "feet"),
  29079. default: true
  29080. },
  29081. ]
  29082. ))
  29083. characterMakers.push(() => makeCharacter(
  29084. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29085. {
  29086. front: {
  29087. height: math.unit(6, "feet"),
  29088. weight: math.unit(320, "lb"),
  29089. name: "Front",
  29090. image: {
  29091. source: "./media/characters/balina-mejeri/front.svg",
  29092. extra: 517 / 488,
  29093. bottom: 44.2 / 561
  29094. }
  29095. },
  29096. },
  29097. [
  29098. {
  29099. name: "Normal",
  29100. height: math.unit(6 + 4 / 12, "feet")
  29101. },
  29102. {
  29103. name: "Business",
  29104. height: math.unit(155, "feet"),
  29105. default: true
  29106. },
  29107. ]
  29108. ))
  29109. characterMakers.push(() => makeCharacter(
  29110. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29111. {
  29112. kneeling: {
  29113. height: math.unit(6 + 4 / 12, "feet"),
  29114. weight: math.unit(300 * 20, "lb"),
  29115. name: "Kneeling",
  29116. image: {
  29117. source: "./media/characters/balbarian/kneeling.svg",
  29118. extra: 922 / 862,
  29119. bottom: 42.4 / 965
  29120. }
  29121. },
  29122. },
  29123. [
  29124. {
  29125. name: "Normal",
  29126. height: math.unit(6 + 4 / 12, "feet")
  29127. },
  29128. {
  29129. name: "Treasured",
  29130. height: math.unit(18 + 9 / 12, "feet"),
  29131. default: true
  29132. },
  29133. {
  29134. name: "Macro",
  29135. height: math.unit(900, "feet")
  29136. },
  29137. ]
  29138. ))
  29139. characterMakers.push(() => makeCharacter(
  29140. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29141. {
  29142. front: {
  29143. height: math.unit(6 + 4 / 12, "feet"),
  29144. weight: math.unit(325, "lb"),
  29145. name: "Front",
  29146. image: {
  29147. source: "./media/characters/balina-amarini/front.svg",
  29148. extra: 415 / 403,
  29149. bottom: 19 / 433.4
  29150. }
  29151. },
  29152. back: {
  29153. height: math.unit(6 + 4 / 12, "feet"),
  29154. weight: math.unit(325, "lb"),
  29155. name: "Back",
  29156. image: {
  29157. source: "./media/characters/balina-amarini/back.svg",
  29158. extra: 415 / 403,
  29159. bottom: 13.5 / 432
  29160. }
  29161. },
  29162. overdrive: {
  29163. height: math.unit(6 + 4 / 12, "feet"),
  29164. weight: math.unit(400, "lb"),
  29165. name: "Overdrive",
  29166. image: {
  29167. source: "./media/characters/balina-amarini/overdrive.svg",
  29168. extra: 269 / 259,
  29169. bottom: 12 / 282
  29170. }
  29171. },
  29172. },
  29173. [
  29174. {
  29175. name: "Boom",
  29176. height: math.unit(9 + 10 / 12, "feet"),
  29177. default: true
  29178. },
  29179. {
  29180. name: "Macro",
  29181. height: math.unit(280, "feet")
  29182. },
  29183. ]
  29184. ))
  29185. characterMakers.push(() => makeCharacter(
  29186. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29187. {
  29188. goddess: {
  29189. height: math.unit(600, "feet"),
  29190. weight: math.unit(2000000, "tons"),
  29191. name: "Goddess",
  29192. image: {
  29193. source: "./media/characters/lady-kubwa/goddess.svg",
  29194. extra: 1240.5 / 1223,
  29195. bottom: 22 / 1263
  29196. }
  29197. },
  29198. goddesser: {
  29199. height: math.unit(900, "feet"),
  29200. weight: math.unit(20000000, "lb"),
  29201. name: "Goddess-er",
  29202. image: {
  29203. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29204. extra: 899 / 888,
  29205. bottom: 12.6 / 912
  29206. }
  29207. },
  29208. },
  29209. [
  29210. {
  29211. name: "Macro",
  29212. height: math.unit(600, "feet"),
  29213. default: true
  29214. },
  29215. {
  29216. name: "Megamacro",
  29217. height: math.unit(250, "miles")
  29218. },
  29219. ]
  29220. ))
  29221. characterMakers.push(() => makeCharacter(
  29222. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29223. {
  29224. front: {
  29225. height: math.unit(7 + 7 / 12, "feet"),
  29226. weight: math.unit(250, "lb"),
  29227. name: "Front",
  29228. image: {
  29229. source: "./media/characters/tala-grovehorn/front.svg",
  29230. extra: 2636 / 2525,
  29231. bottom: 147 / 2781
  29232. }
  29233. },
  29234. back: {
  29235. height: math.unit(7 + 7 / 12, "feet"),
  29236. weight: math.unit(250, "lb"),
  29237. name: "Back",
  29238. image: {
  29239. source: "./media/characters/tala-grovehorn/back.svg",
  29240. extra: 2635 / 2539,
  29241. bottom: 100 / 2732.8
  29242. }
  29243. },
  29244. mouth: {
  29245. height: math.unit(1.15, "feet"),
  29246. name: "Mouth",
  29247. image: {
  29248. source: "./media/characters/tala-grovehorn/mouth.svg"
  29249. }
  29250. },
  29251. dick: {
  29252. height: math.unit(2.36, "feet"),
  29253. name: "Dick",
  29254. image: {
  29255. source: "./media/characters/tala-grovehorn/dick.svg"
  29256. }
  29257. },
  29258. slit: {
  29259. height: math.unit(0.61, "feet"),
  29260. name: "Slit",
  29261. image: {
  29262. source: "./media/characters/tala-grovehorn/slit.svg"
  29263. }
  29264. },
  29265. },
  29266. [
  29267. ]
  29268. ))
  29269. characterMakers.push(() => makeCharacter(
  29270. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29271. {
  29272. front: {
  29273. height: math.unit(7 + 7 / 12, "feet"),
  29274. weight: math.unit(225, "lb"),
  29275. name: "Front",
  29276. image: {
  29277. source: "./media/characters/epona/front.svg",
  29278. extra: 2445 / 2290,
  29279. bottom: 251 / 2696
  29280. }
  29281. },
  29282. back: {
  29283. height: math.unit(7 + 7 / 12, "feet"),
  29284. weight: math.unit(225, "lb"),
  29285. name: "Back",
  29286. image: {
  29287. source: "./media/characters/epona/back.svg",
  29288. extra: 2546 / 2408,
  29289. bottom: 44 / 2589
  29290. }
  29291. },
  29292. genitals: {
  29293. height: math.unit(1.5, "feet"),
  29294. name: "Genitals",
  29295. image: {
  29296. source: "./media/characters/epona/genitals.svg"
  29297. }
  29298. },
  29299. },
  29300. [
  29301. {
  29302. name: "Normal",
  29303. height: math.unit(7 + 7 / 12, "feet"),
  29304. default: true
  29305. },
  29306. ]
  29307. ))
  29308. characterMakers.push(() => makeCharacter(
  29309. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29310. {
  29311. front: {
  29312. height: math.unit(7, "feet"),
  29313. weight: math.unit(518, "lb"),
  29314. name: "Front",
  29315. image: {
  29316. source: "./media/characters/avia-bloodbourn/front.svg",
  29317. extra: 1466 / 1350,
  29318. bottom: 65 / 1527
  29319. }
  29320. },
  29321. },
  29322. [
  29323. ]
  29324. ))
  29325. characterMakers.push(() => makeCharacter(
  29326. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29327. {
  29328. front: {
  29329. height: math.unit(9.35, "feet"),
  29330. weight: math.unit(600, "lb"),
  29331. name: "Front",
  29332. image: {
  29333. source: "./media/characters/amera/front.svg",
  29334. extra: 891 / 818,
  29335. bottom: 30 / 922.7
  29336. }
  29337. },
  29338. back: {
  29339. height: math.unit(9.35, "feet"),
  29340. weight: math.unit(600, "lb"),
  29341. name: "Back",
  29342. image: {
  29343. source: "./media/characters/amera/back.svg",
  29344. extra: 876 / 824,
  29345. bottom: 6.8 / 884
  29346. }
  29347. },
  29348. dick: {
  29349. height: math.unit(2.14, "feet"),
  29350. name: "Dick",
  29351. image: {
  29352. source: "./media/characters/amera/dick.svg"
  29353. }
  29354. },
  29355. },
  29356. [
  29357. {
  29358. name: "Normal",
  29359. height: math.unit(9.35, "feet"),
  29360. default: true
  29361. },
  29362. ]
  29363. ))
  29364. characterMakers.push(() => makeCharacter(
  29365. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29366. {
  29367. kneeling: {
  29368. height: math.unit(3 + 4 / 12, "feet"),
  29369. weight: math.unit(90, "lb"),
  29370. name: "Kneeling",
  29371. image: {
  29372. source: "./media/characters/rosewen/kneeling.svg",
  29373. extra: 1835 / 1571,
  29374. bottom: 27.7 / 1862
  29375. }
  29376. },
  29377. },
  29378. [
  29379. {
  29380. name: "Normal",
  29381. height: math.unit(3 + 4 / 12, "feet"),
  29382. default: true
  29383. },
  29384. ]
  29385. ))
  29386. characterMakers.push(() => makeCharacter(
  29387. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29388. {
  29389. front: {
  29390. height: math.unit(5 + 10 / 12, "feet"),
  29391. weight: math.unit(200, "lb"),
  29392. name: "Front",
  29393. image: {
  29394. source: "./media/characters/sabah/front.svg",
  29395. extra: 849 / 763,
  29396. bottom: 33.9 / 881
  29397. }
  29398. },
  29399. },
  29400. [
  29401. {
  29402. name: "Normal",
  29403. height: math.unit(5 + 10 / 12, "feet"),
  29404. default: true
  29405. },
  29406. ]
  29407. ))
  29408. characterMakers.push(() => makeCharacter(
  29409. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29410. {
  29411. front: {
  29412. height: math.unit(3 + 5 / 12, "feet"),
  29413. weight: math.unit(40, "kg"),
  29414. name: "Front",
  29415. image: {
  29416. source: "./media/characters/purple-flame/front.svg",
  29417. extra: 1577 / 1412,
  29418. bottom: 97 / 1694
  29419. }
  29420. },
  29421. frontDressed: {
  29422. height: math.unit(3 + 5 / 12, "feet"),
  29423. weight: math.unit(40, "kg"),
  29424. name: "Front (Dressed)",
  29425. image: {
  29426. source: "./media/characters/purple-flame/front-dressed.svg",
  29427. extra: 1577 / 1412,
  29428. bottom: 97 / 1694
  29429. }
  29430. },
  29431. headphones: {
  29432. height: math.unit(0.85, "feet"),
  29433. name: "Headphones",
  29434. image: {
  29435. source: "./media/characters/purple-flame/headphones.svg"
  29436. }
  29437. },
  29438. },
  29439. [
  29440. {
  29441. name: "Really Small",
  29442. height: math.unit(5, "cm")
  29443. },
  29444. {
  29445. name: "Micro",
  29446. height: math.unit(1 + 5 / 12, "feet")
  29447. },
  29448. {
  29449. name: "Normal",
  29450. height: math.unit(3 + 5 / 12, "feet"),
  29451. default: true
  29452. },
  29453. {
  29454. name: "Minimacro",
  29455. height: math.unit(125, "feet")
  29456. },
  29457. {
  29458. name: "Macro",
  29459. height: math.unit(0.5, "miles")
  29460. },
  29461. {
  29462. name: "Megamacro",
  29463. height: math.unit(50, "miles")
  29464. },
  29465. {
  29466. name: "Gigantic",
  29467. height: math.unit(750, "miles")
  29468. },
  29469. {
  29470. name: "Planetary",
  29471. height: math.unit(15000, "miles")
  29472. },
  29473. ]
  29474. ))
  29475. characterMakers.push(() => makeCharacter(
  29476. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29477. {
  29478. front: {
  29479. height: math.unit(14, "feet"),
  29480. weight: math.unit(959, "lb"),
  29481. name: "Front",
  29482. image: {
  29483. source: "./media/characters/arsenal/front.svg",
  29484. extra: 2357 / 2157,
  29485. bottom: 93 / 2458
  29486. }
  29487. },
  29488. },
  29489. [
  29490. {
  29491. name: "Normal",
  29492. height: math.unit(14, "feet"),
  29493. default: true
  29494. },
  29495. ]
  29496. ))
  29497. characterMakers.push(() => makeCharacter(
  29498. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29499. {
  29500. front: {
  29501. height: math.unit(6, "feet"),
  29502. weight: math.unit(150, "lb"),
  29503. name: "Front",
  29504. image: {
  29505. source: "./media/characters/adira/front.svg",
  29506. extra: 1078 / 1029,
  29507. bottom: 87 / 1166
  29508. }
  29509. },
  29510. },
  29511. [
  29512. {
  29513. name: "Micro",
  29514. height: math.unit(4, "inches"),
  29515. default: true
  29516. },
  29517. {
  29518. name: "Macro",
  29519. height: math.unit(50, "feet")
  29520. },
  29521. ]
  29522. ))
  29523. characterMakers.push(() => makeCharacter(
  29524. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29525. {
  29526. front: {
  29527. height: math.unit(16, "feet"),
  29528. weight: math.unit(1000, "lb"),
  29529. name: "Front",
  29530. image: {
  29531. source: "./media/characters/grim/front.svg",
  29532. extra: 622 / 614,
  29533. bottom: 18.1 / 642
  29534. }
  29535. },
  29536. back: {
  29537. height: math.unit(16, "feet"),
  29538. weight: math.unit(1000, "lb"),
  29539. name: "Back",
  29540. image: {
  29541. source: "./media/characters/grim/back.svg",
  29542. extra: 610.6 / 602,
  29543. bottom: 40.8 / 652
  29544. }
  29545. },
  29546. hunched: {
  29547. height: math.unit(9.75, "feet"),
  29548. weight: math.unit(1000, "lb"),
  29549. name: "Hunched",
  29550. image: {
  29551. source: "./media/characters/grim/hunched.svg",
  29552. extra: 304 / 297,
  29553. bottom: 35.4 / 394
  29554. }
  29555. },
  29556. },
  29557. [
  29558. {
  29559. name: "Normal",
  29560. height: math.unit(16, "feet"),
  29561. default: true
  29562. },
  29563. ]
  29564. ))
  29565. characterMakers.push(() => makeCharacter(
  29566. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29567. {
  29568. front: {
  29569. height: math.unit(2.3, "meters"),
  29570. weight: math.unit(300, "lb"),
  29571. name: "Front",
  29572. image: {
  29573. source: "./media/characters/sinja/front-sfw.svg",
  29574. extra: 1393 / 1294,
  29575. bottom: 70 / 1463
  29576. }
  29577. },
  29578. frontNsfw: {
  29579. height: math.unit(2.3, "meters"),
  29580. weight: math.unit(300, "lb"),
  29581. name: "Front (NSFW)",
  29582. image: {
  29583. source: "./media/characters/sinja/front-nsfw.svg",
  29584. extra: 1393 / 1294,
  29585. bottom: 70 / 1463
  29586. }
  29587. },
  29588. back: {
  29589. height: math.unit(2.3, "meters"),
  29590. weight: math.unit(300, "lb"),
  29591. name: "Back",
  29592. image: {
  29593. source: "./media/characters/sinja/back.svg",
  29594. extra: 1393 / 1294,
  29595. bottom: 70 / 1463
  29596. }
  29597. },
  29598. head: {
  29599. height: math.unit(1.771, "feet"),
  29600. name: "Head",
  29601. image: {
  29602. source: "./media/characters/sinja/head.svg"
  29603. }
  29604. },
  29605. slit: {
  29606. height: math.unit(0.8, "feet"),
  29607. name: "Slit",
  29608. image: {
  29609. source: "./media/characters/sinja/slit.svg"
  29610. }
  29611. },
  29612. },
  29613. [
  29614. {
  29615. name: "Normal",
  29616. height: math.unit(2.3, "meters")
  29617. },
  29618. {
  29619. name: "Macro",
  29620. height: math.unit(91, "meters"),
  29621. default: true
  29622. },
  29623. {
  29624. name: "Megamacro",
  29625. height: math.unit(91440, "meters")
  29626. },
  29627. {
  29628. name: "Gigamacro",
  29629. height: math.unit(60960000, "meters")
  29630. },
  29631. {
  29632. name: "Teramacro",
  29633. height: math.unit(9144000000, "meters")
  29634. },
  29635. ]
  29636. ))
  29637. characterMakers.push(() => makeCharacter(
  29638. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29639. {
  29640. front: {
  29641. height: math.unit(1.7, "meters"),
  29642. weight: math.unit(130, "lb"),
  29643. name: "Front",
  29644. image: {
  29645. source: "./media/characters/kyu/front.svg",
  29646. extra: 415 / 395,
  29647. bottom: 5 / 420
  29648. }
  29649. },
  29650. head: {
  29651. height: math.unit(1.75, "feet"),
  29652. name: "Head",
  29653. image: {
  29654. source: "./media/characters/kyu/head.svg"
  29655. }
  29656. },
  29657. foot: {
  29658. height: math.unit(0.81, "feet"),
  29659. name: "Foot",
  29660. image: {
  29661. source: "./media/characters/kyu/foot.svg"
  29662. }
  29663. },
  29664. },
  29665. [
  29666. {
  29667. name: "Normal",
  29668. height: math.unit(1.7, "meters")
  29669. },
  29670. {
  29671. name: "Macro",
  29672. height: math.unit(131, "feet"),
  29673. default: true
  29674. },
  29675. {
  29676. name: "Megamacro",
  29677. height: math.unit(91440, "meters")
  29678. },
  29679. {
  29680. name: "Gigamacro",
  29681. height: math.unit(60960000, "meters")
  29682. },
  29683. {
  29684. name: "Teramacro",
  29685. height: math.unit(9144000000, "meters")
  29686. },
  29687. ]
  29688. ))
  29689. characterMakers.push(() => makeCharacter(
  29690. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29691. {
  29692. front: {
  29693. height: math.unit(7 + 1 / 12, "feet"),
  29694. weight: math.unit(250, "lb"),
  29695. name: "Front",
  29696. image: {
  29697. source: "./media/characters/joey/front.svg",
  29698. extra: 1791 / 1537,
  29699. bottom: 28 / 1816
  29700. }
  29701. },
  29702. },
  29703. [
  29704. {
  29705. name: "Micro",
  29706. height: math.unit(3, "inches")
  29707. },
  29708. {
  29709. name: "Normal",
  29710. height: math.unit(7 + 1 / 12, "feet"),
  29711. default: true
  29712. },
  29713. ]
  29714. ))
  29715. characterMakers.push(() => makeCharacter(
  29716. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29717. {
  29718. front: {
  29719. height: math.unit(165, "cm"),
  29720. weight: math.unit(140, "lb"),
  29721. name: "Front",
  29722. image: {
  29723. source: "./media/characters/sam-evans/front.svg",
  29724. extra: 3417 / 3230,
  29725. bottom: 41.3 / 3417
  29726. }
  29727. },
  29728. frontSixTails: {
  29729. height: math.unit(165, "cm"),
  29730. weight: math.unit(140, "lb"),
  29731. name: "Front-six-tails",
  29732. image: {
  29733. source: "./media/characters/sam-evans/front-six-tails.svg",
  29734. extra: 3417 / 3230,
  29735. bottom: 41.3 / 3417
  29736. }
  29737. },
  29738. back: {
  29739. height: math.unit(165, "cm"),
  29740. weight: math.unit(140, "lb"),
  29741. name: "Back",
  29742. image: {
  29743. source: "./media/characters/sam-evans/back.svg",
  29744. extra: 3227 / 3032,
  29745. bottom: 6.8 / 3234
  29746. }
  29747. },
  29748. face: {
  29749. height: math.unit(0.68, "feet"),
  29750. name: "Face",
  29751. image: {
  29752. source: "./media/characters/sam-evans/face.svg"
  29753. }
  29754. },
  29755. },
  29756. [
  29757. {
  29758. name: "Normal",
  29759. height: math.unit(165, "cm"),
  29760. default: true
  29761. },
  29762. {
  29763. name: "Macro",
  29764. height: math.unit(100, "meters")
  29765. },
  29766. {
  29767. name: "Macro+",
  29768. height: math.unit(800, "meters")
  29769. },
  29770. {
  29771. name: "Macro++",
  29772. height: math.unit(3, "km")
  29773. },
  29774. {
  29775. name: "Macro+++",
  29776. height: math.unit(30, "km")
  29777. },
  29778. ]
  29779. ))
  29780. characterMakers.push(() => makeCharacter(
  29781. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29782. {
  29783. front: {
  29784. height: math.unit(10, "feet"),
  29785. weight: math.unit(750, "lb"),
  29786. name: "Front",
  29787. image: {
  29788. source: "./media/characters/juliet-a/front.svg",
  29789. extra: 1766 / 1720,
  29790. bottom: 43 / 1809
  29791. }
  29792. },
  29793. back: {
  29794. height: math.unit(10, "feet"),
  29795. weight: math.unit(750, "lb"),
  29796. name: "Back",
  29797. image: {
  29798. source: "./media/characters/juliet-a/back.svg",
  29799. extra: 1781 / 1734,
  29800. bottom: 35 / 1810,
  29801. }
  29802. },
  29803. },
  29804. [
  29805. {
  29806. name: "Normal",
  29807. height: math.unit(10, "feet"),
  29808. default: true
  29809. },
  29810. {
  29811. name: "Dragon Form",
  29812. height: math.unit(250, "feet")
  29813. },
  29814. {
  29815. name: "Macro",
  29816. height: math.unit(1000, "feet")
  29817. },
  29818. {
  29819. name: "Megamacro",
  29820. height: math.unit(10000, "feet")
  29821. }
  29822. ]
  29823. ))
  29824. characterMakers.push(() => makeCharacter(
  29825. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29826. {
  29827. regular: {
  29828. height: math.unit(7 + 3 / 12, "feet"),
  29829. weight: math.unit(260, "lb"),
  29830. name: "Regular",
  29831. image: {
  29832. source: "./media/characters/wild/regular.svg",
  29833. extra: 97.45 / 92,
  29834. bottom: 6.8 / 104.3
  29835. }
  29836. },
  29837. biggums: {
  29838. height: math.unit(8 + 6 / 12, "feet"),
  29839. weight: math.unit(425, "lb"),
  29840. name: "Biggums",
  29841. image: {
  29842. source: "./media/characters/wild/biggums.svg",
  29843. extra: 97.45 / 92,
  29844. bottom: 7.5 / 132.34
  29845. }
  29846. },
  29847. mawRegular: {
  29848. height: math.unit(1.24, "feet"),
  29849. name: "Maw (Regular)",
  29850. image: {
  29851. source: "./media/characters/wild/maw.svg"
  29852. }
  29853. },
  29854. mawBiggums: {
  29855. height: math.unit(1.47, "feet"),
  29856. name: "Maw (Biggums)",
  29857. image: {
  29858. source: "./media/characters/wild/maw.svg"
  29859. }
  29860. },
  29861. },
  29862. [
  29863. {
  29864. name: "Normal",
  29865. height: math.unit(7 + 3 / 12, "feet"),
  29866. default: true
  29867. },
  29868. ]
  29869. ))
  29870. characterMakers.push(() => makeCharacter(
  29871. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29872. {
  29873. front: {
  29874. height: math.unit(2.5, "meters"),
  29875. weight: math.unit(200, "kg"),
  29876. name: "Front",
  29877. image: {
  29878. source: "./media/characters/vidar/front.svg",
  29879. extra: 2994 / 2795,
  29880. bottom: 56 / 3061
  29881. }
  29882. },
  29883. back: {
  29884. height: math.unit(2.5, "meters"),
  29885. weight: math.unit(200, "kg"),
  29886. name: "Back",
  29887. image: {
  29888. source: "./media/characters/vidar/back.svg",
  29889. extra: 3131 / 2928,
  29890. bottom: 13.5 / 3141.5
  29891. }
  29892. },
  29893. feral: {
  29894. height: math.unit(2.5, "meters"),
  29895. weight: math.unit(2000, "kg"),
  29896. name: "Feral",
  29897. image: {
  29898. source: "./media/characters/vidar/feral.svg",
  29899. extra: 2790 / 1765,
  29900. bottom: 6 / 2796
  29901. }
  29902. },
  29903. },
  29904. [
  29905. {
  29906. name: "Normal",
  29907. height: math.unit(2.5, "meters"),
  29908. default: true
  29909. },
  29910. {
  29911. name: "Macro",
  29912. height: math.unit(100, "meters")
  29913. },
  29914. ]
  29915. ))
  29916. characterMakers.push(() => makeCharacter(
  29917. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29918. {
  29919. front: {
  29920. height: math.unit(5 + 9 / 12, "feet"),
  29921. weight: math.unit(120, "lb"),
  29922. name: "Front",
  29923. image: {
  29924. source: "./media/characters/ash/front.svg",
  29925. extra: 2189 / 1961,
  29926. bottom: 5.2 / 2194
  29927. }
  29928. },
  29929. },
  29930. [
  29931. {
  29932. name: "Normal",
  29933. height: math.unit(5 + 9 / 12, "feet"),
  29934. default: true
  29935. },
  29936. ]
  29937. ))
  29938. characterMakers.push(() => makeCharacter(
  29939. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29940. {
  29941. front: {
  29942. height: math.unit(9, "feet"),
  29943. weight: math.unit(10000, "lb"),
  29944. name: "Front",
  29945. image: {
  29946. source: "./media/characters/gygabite/front.svg",
  29947. bottom: 31.7 / 537.8,
  29948. extra: 505 / 370
  29949. }
  29950. },
  29951. },
  29952. [
  29953. {
  29954. name: "Normal",
  29955. height: math.unit(9, "feet"),
  29956. default: true
  29957. },
  29958. ]
  29959. ))
  29960. characterMakers.push(() => makeCharacter(
  29961. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29962. {
  29963. front: {
  29964. height: math.unit(12, "feet"),
  29965. weight: math.unit(4000, "lb"),
  29966. name: "Front",
  29967. image: {
  29968. source: "./media/characters/p0tat0/front.svg",
  29969. extra: 1065 / 921,
  29970. bottom: 55.7 / 1121.25
  29971. }
  29972. },
  29973. },
  29974. [
  29975. {
  29976. name: "Normal",
  29977. height: math.unit(12, "feet"),
  29978. default: true
  29979. },
  29980. ]
  29981. ))
  29982. characterMakers.push(() => makeCharacter(
  29983. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29984. {
  29985. side: {
  29986. height: math.unit(6.5, "feet"),
  29987. weight: math.unit(800, "lb"),
  29988. name: "Side",
  29989. image: {
  29990. source: "./media/characters/dusk/side.svg",
  29991. extra: 615 / 373,
  29992. bottom: 53 / 664
  29993. }
  29994. },
  29995. sitting: {
  29996. height: math.unit(7, "feet"),
  29997. weight: math.unit(800, "lb"),
  29998. name: "Sitting",
  29999. image: {
  30000. source: "./media/characters/dusk/sitting.svg",
  30001. extra: 753 / 425,
  30002. bottom: 33 / 774
  30003. }
  30004. },
  30005. head: {
  30006. height: math.unit(6.1, "feet"),
  30007. name: "Head",
  30008. image: {
  30009. source: "./media/characters/dusk/head.svg"
  30010. }
  30011. },
  30012. },
  30013. [
  30014. {
  30015. name: "Normal",
  30016. height: math.unit(7, "feet"),
  30017. default: true
  30018. },
  30019. ]
  30020. ))
  30021. characterMakers.push(() => makeCharacter(
  30022. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30023. {
  30024. front: {
  30025. height: math.unit(15, "feet"),
  30026. weight: math.unit(7000, "lb"),
  30027. name: "Front",
  30028. image: {
  30029. source: "./media/characters/jay-direwolf/front.svg",
  30030. extra: 1810 / 1732,
  30031. bottom: 66 / 1892
  30032. }
  30033. },
  30034. },
  30035. [
  30036. {
  30037. name: "Normal",
  30038. height: math.unit(15, "feet"),
  30039. default: true
  30040. },
  30041. ]
  30042. ))
  30043. characterMakers.push(() => makeCharacter(
  30044. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30045. {
  30046. front: {
  30047. height: math.unit(4 + 9 / 12, "feet"),
  30048. weight: math.unit(130, "lb"),
  30049. name: "Front",
  30050. image: {
  30051. source: "./media/characters/anchovie/front.svg",
  30052. extra: 382 / 350,
  30053. bottom: 25 / 409
  30054. }
  30055. },
  30056. back: {
  30057. height: math.unit(4 + 9 / 12, "feet"),
  30058. weight: math.unit(130, "lb"),
  30059. name: "Back",
  30060. image: {
  30061. source: "./media/characters/anchovie/back.svg",
  30062. extra: 385 / 352,
  30063. bottom: 16.6 / 402
  30064. }
  30065. },
  30066. frontDressed: {
  30067. height: math.unit(4 + 9 / 12, "feet"),
  30068. weight: math.unit(130, "lb"),
  30069. name: "Front (Dressed)",
  30070. image: {
  30071. source: "./media/characters/anchovie/front-dressed.svg",
  30072. extra: 382 / 350,
  30073. bottom: 25 / 409
  30074. }
  30075. },
  30076. backDressed: {
  30077. height: math.unit(4 + 9 / 12, "feet"),
  30078. weight: math.unit(130, "lb"),
  30079. name: "Back (Dressed)",
  30080. image: {
  30081. source: "./media/characters/anchovie/back-dressed.svg",
  30082. extra: 385 / 352,
  30083. bottom: 16.6 / 402
  30084. }
  30085. },
  30086. },
  30087. [
  30088. {
  30089. name: "Micro",
  30090. height: math.unit(6.4, "inches")
  30091. },
  30092. {
  30093. name: "Normal",
  30094. height: math.unit(4 + 9 / 12, "feet"),
  30095. default: true
  30096. },
  30097. ]
  30098. ))
  30099. characterMakers.push(() => makeCharacter(
  30100. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30101. {
  30102. front: {
  30103. height: math.unit(2, "meters"),
  30104. weight: math.unit(180, "lb"),
  30105. name: "Front",
  30106. image: {
  30107. source: "./media/characters/acidrenamon/front.svg",
  30108. extra: 987 / 890,
  30109. bottom: 22.8 / 1009
  30110. }
  30111. },
  30112. back: {
  30113. height: math.unit(2, "meters"),
  30114. weight: math.unit(180, "lb"),
  30115. name: "Back",
  30116. image: {
  30117. source: "./media/characters/acidrenamon/back.svg",
  30118. extra: 983 / 891,
  30119. bottom: 8.4 / 992
  30120. }
  30121. },
  30122. head: {
  30123. height: math.unit(1.92, "feet"),
  30124. name: "Head",
  30125. image: {
  30126. source: "./media/characters/acidrenamon/head.svg"
  30127. }
  30128. },
  30129. rump: {
  30130. height: math.unit(1.72, "feet"),
  30131. name: "Rump",
  30132. image: {
  30133. source: "./media/characters/acidrenamon/rump.svg"
  30134. }
  30135. },
  30136. tail: {
  30137. height: math.unit(4.2, "feet"),
  30138. name: "Tail",
  30139. image: {
  30140. source: "./media/characters/acidrenamon/tail.svg"
  30141. }
  30142. },
  30143. },
  30144. [
  30145. {
  30146. name: "Normal",
  30147. height: math.unit(2, "meters"),
  30148. default: true
  30149. },
  30150. {
  30151. name: "Minimacro",
  30152. height: math.unit(7, "meters")
  30153. },
  30154. {
  30155. name: "Macro",
  30156. height: math.unit(200, "meters")
  30157. },
  30158. {
  30159. name: "Gigamacro",
  30160. height: math.unit(0.2, "earths")
  30161. },
  30162. ]
  30163. ))
  30164. characterMakers.push(() => makeCharacter(
  30165. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30166. {
  30167. front: {
  30168. height: math.unit(152, "feet"),
  30169. name: "Front",
  30170. image: {
  30171. source: "./media/characters/kenzie-lee/front.svg",
  30172. extra: 1869/1774,
  30173. bottom: 128/1997
  30174. }
  30175. },
  30176. side: {
  30177. height: math.unit(86, "feet"),
  30178. name: "Side",
  30179. image: {
  30180. source: "./media/characters/kenzie-lee/side.svg",
  30181. extra: 930/815,
  30182. bottom: 177/1107
  30183. }
  30184. },
  30185. paw: {
  30186. height: math.unit(15, "feet"),
  30187. name: "Paw",
  30188. image: {
  30189. source: "./media/characters/kenzie-lee/paw.svg"
  30190. }
  30191. },
  30192. },
  30193. [
  30194. {
  30195. name: "Kenzie Flea",
  30196. height: math.unit(2, "mm"),
  30197. default: true
  30198. },
  30199. {
  30200. name: "Micro",
  30201. height: math.unit(2, "inches")
  30202. },
  30203. {
  30204. name: "Normal",
  30205. height: math.unit(152, "feet")
  30206. },
  30207. {
  30208. name: "Megamacro",
  30209. height: math.unit(7, "miles")
  30210. },
  30211. {
  30212. name: "Gigamacro",
  30213. height: math.unit(8000, "miles")
  30214. },
  30215. ]
  30216. ))
  30217. characterMakers.push(() => makeCharacter(
  30218. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30219. {
  30220. front: {
  30221. height: math.unit(6, "feet"),
  30222. name: "Front",
  30223. image: {
  30224. source: "./media/characters/withers/front.svg",
  30225. extra: 1935/1760,
  30226. bottom: 72/2007
  30227. }
  30228. },
  30229. back: {
  30230. height: math.unit(6, "feet"),
  30231. name: "Back",
  30232. image: {
  30233. source: "./media/characters/withers/back.svg",
  30234. extra: 1944/1792,
  30235. bottom: 12/1956
  30236. }
  30237. },
  30238. dressed: {
  30239. height: math.unit(6, "feet"),
  30240. name: "Dressed",
  30241. image: {
  30242. source: "./media/characters/withers/dressed.svg",
  30243. extra: 1937/1765,
  30244. bottom: 73/2010
  30245. }
  30246. },
  30247. phase1: {
  30248. height: math.unit(1.1, "feet"),
  30249. name: "Phase 1",
  30250. image: {
  30251. source: "./media/characters/withers/phase-1.svg",
  30252. extra: 1885/1232,
  30253. bottom: 0/1885
  30254. }
  30255. },
  30256. phase2: {
  30257. height: math.unit(1.05, "feet"),
  30258. name: "Phase 2",
  30259. image: {
  30260. source: "./media/characters/withers/phase-2.svg",
  30261. extra: 1792/1090,
  30262. bottom: 0/1792
  30263. }
  30264. },
  30265. partyWipe: {
  30266. height: math.unit(1.1, "feet"),
  30267. name: "Party Wipe",
  30268. image: {
  30269. source: "./media/characters/withers/party-wipe.svg",
  30270. extra: 1864/1207,
  30271. bottom: 0/1864
  30272. }
  30273. },
  30274. },
  30275. [
  30276. {
  30277. name: "Macro",
  30278. height: math.unit(167, "feet"),
  30279. default: true
  30280. },
  30281. {
  30282. name: "Megamacro",
  30283. height: math.unit(15, "miles")
  30284. }
  30285. ]
  30286. ))
  30287. characterMakers.push(() => makeCharacter(
  30288. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30289. {
  30290. front: {
  30291. height: math.unit(6 + 7 / 12, "feet"),
  30292. weight: math.unit(250, "lb"),
  30293. name: "Front",
  30294. image: {
  30295. source: "./media/characters/nemoskii/front.svg",
  30296. extra: 2270 / 1734,
  30297. bottom: 86 / 2354
  30298. }
  30299. },
  30300. back: {
  30301. height: math.unit(6 + 7 / 12, "feet"),
  30302. weight: math.unit(250, "lb"),
  30303. name: "Back",
  30304. image: {
  30305. source: "./media/characters/nemoskii/back.svg",
  30306. extra: 1845 / 1788,
  30307. bottom: 10.5 / 1852
  30308. }
  30309. },
  30310. head: {
  30311. height: math.unit(1.31, "feet"),
  30312. name: "Head",
  30313. image: {
  30314. source: "./media/characters/nemoskii/head.svg"
  30315. }
  30316. },
  30317. },
  30318. [
  30319. {
  30320. name: "Micro",
  30321. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30322. },
  30323. {
  30324. name: "Normal",
  30325. height: math.unit(6 + 7 / 12, "feet"),
  30326. default: true
  30327. },
  30328. {
  30329. name: "Macro",
  30330. height: math.unit((6 + 7 / 12) * 150, "feet")
  30331. },
  30332. {
  30333. name: "Macro+",
  30334. height: math.unit((6 + 7 / 12) * 500, "feet")
  30335. },
  30336. {
  30337. name: "Megamacro",
  30338. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30339. },
  30340. ]
  30341. ))
  30342. characterMakers.push(() => makeCharacter(
  30343. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30344. {
  30345. front: {
  30346. height: math.unit(1, "mile"),
  30347. weight: math.unit(265261.9, "lb"),
  30348. name: "Front",
  30349. image: {
  30350. source: "./media/characters/shui/front.svg",
  30351. extra: 1633 / 1564,
  30352. bottom: 91.5 / 1726
  30353. }
  30354. },
  30355. },
  30356. [
  30357. {
  30358. name: "Macro",
  30359. height: math.unit(1, "mile"),
  30360. default: true
  30361. },
  30362. ]
  30363. ))
  30364. characterMakers.push(() => makeCharacter(
  30365. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30366. {
  30367. front: {
  30368. height: math.unit(12 + 6 / 12, "feet"),
  30369. weight: math.unit(1342, "lb"),
  30370. name: "Front",
  30371. image: {
  30372. source: "./media/characters/arokh-takakura/front.svg",
  30373. extra: 1089 / 1043,
  30374. bottom: 77.4 / 1176.7
  30375. }
  30376. },
  30377. back: {
  30378. height: math.unit(12 + 6 / 12, "feet"),
  30379. weight: math.unit(1342, "lb"),
  30380. name: "Back",
  30381. image: {
  30382. source: "./media/characters/arokh-takakura/back.svg",
  30383. extra: 1046 / 1019,
  30384. bottom: 102 / 1150
  30385. }
  30386. },
  30387. },
  30388. [
  30389. {
  30390. name: "Big",
  30391. height: math.unit(12 + 6 / 12, "feet"),
  30392. default: true
  30393. },
  30394. ]
  30395. ))
  30396. characterMakers.push(() => makeCharacter(
  30397. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30398. {
  30399. front: {
  30400. height: math.unit(5 + 6 / 12, "feet"),
  30401. weight: math.unit(150, "lb"),
  30402. name: "Front",
  30403. image: {
  30404. source: "./media/characters/theo/front.svg",
  30405. extra: 1184 / 1131,
  30406. bottom: 7.4 / 1191
  30407. }
  30408. },
  30409. },
  30410. [
  30411. {
  30412. name: "Micro",
  30413. height: math.unit(5, "inches")
  30414. },
  30415. {
  30416. name: "Normal",
  30417. height: math.unit(5 + 6 / 12, "feet"),
  30418. default: true
  30419. },
  30420. ]
  30421. ))
  30422. characterMakers.push(() => makeCharacter(
  30423. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30424. {
  30425. front: {
  30426. height: math.unit(5 + 9 / 12, "feet"),
  30427. weight: math.unit(130, "lb"),
  30428. name: "Front",
  30429. image: {
  30430. source: "./media/characters/cecelia-swift/front.svg",
  30431. extra: 502 / 484,
  30432. bottom: 23 / 523
  30433. }
  30434. },
  30435. back: {
  30436. height: math.unit(5 + 9 / 12, "feet"),
  30437. weight: math.unit(130, "lb"),
  30438. name: "Back",
  30439. image: {
  30440. source: "./media/characters/cecelia-swift/back.svg",
  30441. extra: 499 / 485,
  30442. bottom: 12 / 511
  30443. }
  30444. },
  30445. head: {
  30446. height: math.unit(0.90, "feet"),
  30447. name: "Head",
  30448. image: {
  30449. source: "./media/characters/cecelia-swift/head.svg"
  30450. }
  30451. },
  30452. rump: {
  30453. height: math.unit(1.75, "feet"),
  30454. name: "Rump",
  30455. image: {
  30456. source: "./media/characters/cecelia-swift/rump.svg"
  30457. }
  30458. },
  30459. },
  30460. [
  30461. {
  30462. name: "Normal",
  30463. height: math.unit(5 + 9 / 12, "feet"),
  30464. default: true
  30465. },
  30466. {
  30467. name: "Big",
  30468. height: math.unit(50, "feet")
  30469. },
  30470. {
  30471. name: "Macro",
  30472. height: math.unit(100, "feet")
  30473. },
  30474. {
  30475. name: "Macro+",
  30476. height: math.unit(500, "feet")
  30477. },
  30478. {
  30479. name: "Macro++",
  30480. height: math.unit(1000, "feet")
  30481. },
  30482. ]
  30483. ))
  30484. characterMakers.push(() => makeCharacter(
  30485. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30486. {
  30487. front: {
  30488. height: math.unit(6, "feet"),
  30489. weight: math.unit(150, "lb"),
  30490. name: "Front",
  30491. image: {
  30492. source: "./media/characters/kaunan/front.svg",
  30493. extra: 2890 / 2523,
  30494. bottom: 49 / 2939
  30495. }
  30496. },
  30497. },
  30498. [
  30499. {
  30500. name: "Macro",
  30501. height: math.unit(150, "feet"),
  30502. default: true
  30503. },
  30504. ]
  30505. ))
  30506. characterMakers.push(() => makeCharacter(
  30507. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30508. {
  30509. dressed: {
  30510. height: math.unit(175, "cm"),
  30511. weight: math.unit(60, "kg"),
  30512. name: "Dressed",
  30513. image: {
  30514. source: "./media/characters/fei/dressed.svg",
  30515. extra: 1402/1278,
  30516. bottom: 27/1429
  30517. }
  30518. },
  30519. nude: {
  30520. height: math.unit(175, "cm"),
  30521. weight: math.unit(60, "kg"),
  30522. name: "Nude",
  30523. image: {
  30524. source: "./media/characters/fei/nude.svg",
  30525. extra: 1402/1278,
  30526. bottom: 27/1429
  30527. }
  30528. },
  30529. heels: {
  30530. height: math.unit(0.466, "feet"),
  30531. name: "Heels",
  30532. image: {
  30533. source: "./media/characters/fei/heels.svg",
  30534. extra: 156/152,
  30535. bottom: 28/184
  30536. }
  30537. },
  30538. },
  30539. [
  30540. {
  30541. name: "Mortal",
  30542. height: math.unit(175, "cm")
  30543. },
  30544. {
  30545. name: "Normal",
  30546. height: math.unit(3500, "m")
  30547. },
  30548. {
  30549. name: "Stroll",
  30550. height: math.unit(18.4, "km"),
  30551. default: true
  30552. },
  30553. {
  30554. name: "Showoff",
  30555. height: math.unit(175, "km")
  30556. },
  30557. ]
  30558. ))
  30559. characterMakers.push(() => makeCharacter(
  30560. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30561. {
  30562. front: {
  30563. height: math.unit(7, "feet"),
  30564. weight: math.unit(1000, "kg"),
  30565. name: "Front",
  30566. image: {
  30567. source: "./media/characters/edrax/front.svg",
  30568. extra: 2838 / 2550,
  30569. bottom: 130 / 2968
  30570. }
  30571. },
  30572. },
  30573. [
  30574. {
  30575. name: "Small",
  30576. height: math.unit(7, "feet")
  30577. },
  30578. {
  30579. name: "Normal",
  30580. height: math.unit(1500, "meters")
  30581. },
  30582. {
  30583. name: "Mega",
  30584. height: math.unit(12000000, "km"),
  30585. default: true
  30586. },
  30587. {
  30588. name: "Megamacro",
  30589. height: math.unit(10600000, "lightyears")
  30590. },
  30591. {
  30592. name: "Hypermacro",
  30593. height: math.unit(256, "yottameters")
  30594. },
  30595. ]
  30596. ))
  30597. characterMakers.push(() => makeCharacter(
  30598. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30599. {
  30600. front: {
  30601. height: math.unit(10, "feet"),
  30602. weight: math.unit(750, "lb"),
  30603. name: "Front",
  30604. image: {
  30605. source: "./media/characters/clove/front.svg",
  30606. extra: 1918/1751,
  30607. bottom: 52/1970
  30608. }
  30609. },
  30610. back: {
  30611. height: math.unit(10, "feet"),
  30612. weight: math.unit(750, "lb"),
  30613. name: "Back",
  30614. image: {
  30615. source: "./media/characters/clove/back.svg",
  30616. extra: 1912/1747,
  30617. bottom: 50/1962
  30618. }
  30619. },
  30620. },
  30621. [
  30622. {
  30623. name: "Normal",
  30624. height: math.unit(10, "feet"),
  30625. default: true
  30626. },
  30627. ]
  30628. ))
  30629. characterMakers.push(() => makeCharacter(
  30630. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30631. {
  30632. front: {
  30633. height: math.unit(4, "feet"),
  30634. weight: math.unit(50, "lb"),
  30635. name: "Front",
  30636. image: {
  30637. source: "./media/characters/alex-rabbit/front.svg",
  30638. extra: 507 / 458,
  30639. bottom: 18.5 / 527
  30640. }
  30641. },
  30642. back: {
  30643. height: math.unit(4, "feet"),
  30644. weight: math.unit(50, "lb"),
  30645. name: "Back",
  30646. image: {
  30647. source: "./media/characters/alex-rabbit/back.svg",
  30648. extra: 502 / 460,
  30649. bottom: 18.9 / 521
  30650. }
  30651. },
  30652. },
  30653. [
  30654. {
  30655. name: "Normal",
  30656. height: math.unit(4, "feet"),
  30657. default: true
  30658. },
  30659. ]
  30660. ))
  30661. characterMakers.push(() => makeCharacter(
  30662. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30663. {
  30664. front: {
  30665. height: math.unit(1 + 3 / 12, "feet"),
  30666. weight: math.unit(80, "lb"),
  30667. name: "Front",
  30668. image: {
  30669. source: "./media/characters/zander-rose/front.svg",
  30670. extra: 916 / 797,
  30671. bottom: 17 / 933
  30672. }
  30673. },
  30674. back: {
  30675. height: math.unit(1 + 3 / 12, "feet"),
  30676. weight: math.unit(80, "lb"),
  30677. name: "Back",
  30678. image: {
  30679. source: "./media/characters/zander-rose/back.svg",
  30680. extra: 903 / 779,
  30681. bottom: 31 / 934
  30682. }
  30683. },
  30684. },
  30685. [
  30686. {
  30687. name: "Normal",
  30688. height: math.unit(1 + 3 / 12, "feet"),
  30689. default: true
  30690. },
  30691. ]
  30692. ))
  30693. characterMakers.push(() => makeCharacter(
  30694. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30695. {
  30696. anthro: {
  30697. height: math.unit(6, "feet"),
  30698. weight: math.unit(150, "lb"),
  30699. name: "Anthro",
  30700. image: {
  30701. source: "./media/characters/razz/anthro.svg",
  30702. extra: 1437 / 1343,
  30703. bottom: 48 / 1485
  30704. }
  30705. },
  30706. feral: {
  30707. height: math.unit(6, "feet"),
  30708. weight: math.unit(150, "lb"),
  30709. name: "Feral",
  30710. image: {
  30711. source: "./media/characters/razz/feral.svg",
  30712. extra: 2569 / 1385,
  30713. bottom: 95 / 2664
  30714. }
  30715. },
  30716. },
  30717. [
  30718. {
  30719. name: "Normal",
  30720. height: math.unit(6, "feet"),
  30721. default: true
  30722. },
  30723. ]
  30724. ))
  30725. characterMakers.push(() => makeCharacter(
  30726. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30727. {
  30728. front: {
  30729. height: math.unit(9 + 4 / 12, "feet"),
  30730. weight: math.unit(500, "lb"),
  30731. name: "Front",
  30732. image: {
  30733. source: "./media/characters/morrigan/front.svg",
  30734. extra: 2707 / 2579,
  30735. bottom: 156 / 2863
  30736. }
  30737. },
  30738. },
  30739. [
  30740. {
  30741. name: "Normal",
  30742. height: math.unit(9 + 4 / 12, "feet"),
  30743. default: true
  30744. },
  30745. ]
  30746. ))
  30747. characterMakers.push(() => makeCharacter(
  30748. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30749. {
  30750. front: {
  30751. height: math.unit(5, "stories"),
  30752. weight: math.unit(4000, "lb"),
  30753. name: "Front",
  30754. image: {
  30755. source: "./media/characters/jenene/front.svg",
  30756. extra: 1780 / 1710,
  30757. bottom: 57 / 1837
  30758. }
  30759. },
  30760. },
  30761. [
  30762. {
  30763. name: "Normal",
  30764. height: math.unit(5, "stories"),
  30765. default: true
  30766. },
  30767. ]
  30768. ))
  30769. characterMakers.push(() => makeCharacter(
  30770. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30771. {
  30772. taurSfw: {
  30773. height: math.unit(10, "meters"),
  30774. weight: math.unit(17500, "kg"),
  30775. name: "Taur",
  30776. image: {
  30777. source: "./media/characters/faey/taur-sfw.svg",
  30778. extra: 1200 / 968,
  30779. bottom: 41 / 1241
  30780. }
  30781. },
  30782. chestmaw: {
  30783. height: math.unit(2.01, "meters"),
  30784. name: "Chestmaw",
  30785. image: {
  30786. source: "./media/characters/faey/chestmaw.svg"
  30787. }
  30788. },
  30789. foot: {
  30790. height: math.unit(2.43, "meters"),
  30791. name: "Foot",
  30792. image: {
  30793. source: "./media/characters/faey/foot.svg"
  30794. }
  30795. },
  30796. jaws: {
  30797. height: math.unit(1.66, "meters"),
  30798. name: "Jaws",
  30799. image: {
  30800. source: "./media/characters/faey/jaws.svg"
  30801. }
  30802. },
  30803. tongues: {
  30804. height: math.unit(2.01, "meters"),
  30805. name: "Tongues",
  30806. image: {
  30807. source: "./media/characters/faey/tongues.svg"
  30808. }
  30809. },
  30810. },
  30811. [
  30812. {
  30813. name: "Small",
  30814. height: math.unit(10, "meters"),
  30815. default: true
  30816. },
  30817. {
  30818. name: "Big",
  30819. height: math.unit(500000, "km")
  30820. },
  30821. ]
  30822. ))
  30823. characterMakers.push(() => makeCharacter(
  30824. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30825. {
  30826. front: {
  30827. height: math.unit(7, "feet"),
  30828. weight: math.unit(275, "lb"),
  30829. name: "Front",
  30830. image: {
  30831. source: "./media/characters/roku/front.svg",
  30832. extra: 903 / 878,
  30833. bottom: 37 / 940
  30834. }
  30835. },
  30836. },
  30837. [
  30838. {
  30839. name: "Normal",
  30840. height: math.unit(7, "feet"),
  30841. default: true
  30842. },
  30843. {
  30844. name: "Macro",
  30845. height: math.unit(500, "feet")
  30846. },
  30847. {
  30848. name: "Megamacro",
  30849. height: math.unit(200, "miles")
  30850. },
  30851. ]
  30852. ))
  30853. characterMakers.push(() => makeCharacter(
  30854. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30855. {
  30856. front: {
  30857. height: math.unit(6 + 2 / 12, "feet"),
  30858. weight: math.unit(150, "lb"),
  30859. name: "Front",
  30860. image: {
  30861. source: "./media/characters/lira/front.svg",
  30862. extra: 1727 / 1605,
  30863. bottom: 26 / 1753
  30864. }
  30865. },
  30866. back: {
  30867. height: math.unit(6 + 2 / 12, "feet"),
  30868. weight: math.unit(150, "lb"),
  30869. name: "Back",
  30870. image: {
  30871. source: "./media/characters/lira/back.svg",
  30872. extra: 1713/1621,
  30873. bottom: 20/1733
  30874. }
  30875. },
  30876. hand: {
  30877. height: math.unit(0.75, "feet"),
  30878. name: "Hand",
  30879. image: {
  30880. source: "./media/characters/lira/hand.svg"
  30881. }
  30882. },
  30883. maw: {
  30884. height: math.unit(0.65, "feet"),
  30885. name: "Maw",
  30886. image: {
  30887. source: "./media/characters/lira/maw.svg"
  30888. }
  30889. },
  30890. pawDigi: {
  30891. height: math.unit(1.6, "feet"),
  30892. name: "Paw Digi",
  30893. image: {
  30894. source: "./media/characters/lira/paw-digi.svg"
  30895. }
  30896. },
  30897. pawPlanti: {
  30898. height: math.unit(1.4, "feet"),
  30899. name: "Paw Planti",
  30900. image: {
  30901. source: "./media/characters/lira/paw-planti.svg"
  30902. }
  30903. },
  30904. },
  30905. [
  30906. {
  30907. name: "Normal",
  30908. height: math.unit(6 + 2 / 12, "feet"),
  30909. default: true
  30910. },
  30911. {
  30912. name: "Macro",
  30913. height: math.unit(100, "feet")
  30914. },
  30915. {
  30916. name: "Macro²",
  30917. height: math.unit(1600, "feet")
  30918. },
  30919. {
  30920. name: "Planetary",
  30921. height: math.unit(20, "earths")
  30922. },
  30923. ]
  30924. ))
  30925. characterMakers.push(() => makeCharacter(
  30926. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30927. {
  30928. front: {
  30929. height: math.unit(6, "feet"),
  30930. weight: math.unit(150, "lb"),
  30931. name: "Front",
  30932. image: {
  30933. source: "./media/characters/hadjet/front.svg",
  30934. extra: 1480 / 1346,
  30935. bottom: 26 / 1506
  30936. }
  30937. },
  30938. frontNsfw: {
  30939. height: math.unit(6, "feet"),
  30940. weight: math.unit(150, "lb"),
  30941. name: "Front (NSFW)",
  30942. image: {
  30943. source: "./media/characters/hadjet/front-nsfw.svg",
  30944. extra: 1440 / 1358,
  30945. bottom: 52 / 1492
  30946. }
  30947. },
  30948. },
  30949. [
  30950. {
  30951. name: "Macro",
  30952. height: math.unit(10, "stories"),
  30953. default: true
  30954. },
  30955. {
  30956. name: "Megamacro",
  30957. height: math.unit(1.5, "miles")
  30958. },
  30959. {
  30960. name: "Megamacro+",
  30961. height: math.unit(5, "miles")
  30962. },
  30963. ]
  30964. ))
  30965. characterMakers.push(() => makeCharacter(
  30966. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30967. {
  30968. side: {
  30969. height: math.unit(106, "feet"),
  30970. weight: math.unit(500, "tonnes"),
  30971. name: "Side",
  30972. image: {
  30973. source: "./media/characters/kodran/side.svg",
  30974. extra: 553 / 480,
  30975. bottom: 33 / 586
  30976. }
  30977. },
  30978. front: {
  30979. height: math.unit(132, "feet"),
  30980. weight: math.unit(500, "tonnes"),
  30981. name: "Front",
  30982. image: {
  30983. source: "./media/characters/kodran/front.svg",
  30984. extra: 667 / 643,
  30985. bottom: 42 / 709
  30986. }
  30987. },
  30988. flying: {
  30989. height: math.unit(350, "feet"),
  30990. weight: math.unit(500, "tonnes"),
  30991. name: "Flying",
  30992. image: {
  30993. source: "./media/characters/kodran/flying.svg"
  30994. }
  30995. },
  30996. foot: {
  30997. height: math.unit(33, "feet"),
  30998. name: "Foot",
  30999. image: {
  31000. source: "./media/characters/kodran/foot.svg"
  31001. }
  31002. },
  31003. footFront: {
  31004. height: math.unit(19, "feet"),
  31005. name: "Foot (Front)",
  31006. image: {
  31007. source: "./media/characters/kodran/foot-front.svg",
  31008. extra: 261 / 261,
  31009. bottom: 91 / 352
  31010. }
  31011. },
  31012. headFront: {
  31013. height: math.unit(53, "feet"),
  31014. name: "Head (Front)",
  31015. image: {
  31016. source: "./media/characters/kodran/head-front.svg"
  31017. }
  31018. },
  31019. headSide: {
  31020. height: math.unit(65, "feet"),
  31021. name: "Head (Side)",
  31022. image: {
  31023. source: "./media/characters/kodran/head-side.svg"
  31024. }
  31025. },
  31026. throat: {
  31027. height: math.unit(79, "feet"),
  31028. name: "Throat",
  31029. image: {
  31030. source: "./media/characters/kodran/throat.svg"
  31031. }
  31032. },
  31033. },
  31034. [
  31035. {
  31036. name: "Large",
  31037. height: math.unit(106, "feet"),
  31038. default: true
  31039. },
  31040. ]
  31041. ))
  31042. characterMakers.push(() => makeCharacter(
  31043. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31044. {
  31045. side: {
  31046. height: math.unit(11, "feet"),
  31047. weight: math.unit(150, "lb"),
  31048. name: "Side",
  31049. image: {
  31050. source: "./media/characters/pyxaron/side.svg",
  31051. extra: 305 / 195,
  31052. bottom: 17 / 322
  31053. }
  31054. },
  31055. },
  31056. [
  31057. {
  31058. name: "Normal",
  31059. height: math.unit(11, "feet"),
  31060. default: true
  31061. },
  31062. ]
  31063. ))
  31064. characterMakers.push(() => makeCharacter(
  31065. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31066. {
  31067. front: {
  31068. height: math.unit(6, "feet"),
  31069. weight: math.unit(150, "lb"),
  31070. name: "Front",
  31071. image: {
  31072. source: "./media/characters/meep/front.svg",
  31073. extra: 88 / 80,
  31074. bottom: 6 / 94
  31075. }
  31076. },
  31077. },
  31078. [
  31079. {
  31080. name: "Fun Sized",
  31081. height: math.unit(2, "inches"),
  31082. default: true
  31083. },
  31084. {
  31085. name: "Friend Sized",
  31086. height: math.unit(8, "inches")
  31087. },
  31088. ]
  31089. ))
  31090. characterMakers.push(() => makeCharacter(
  31091. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31092. {
  31093. front: {
  31094. height: math.unit(15, "feet"),
  31095. weight: math.unit(2500, "lb"),
  31096. name: "Front",
  31097. image: {
  31098. source: "./media/characters/holly-rabbit/front.svg",
  31099. extra: 1433 / 1233,
  31100. bottom: 125 / 1558
  31101. }
  31102. },
  31103. dick: {
  31104. height: math.unit(4.6, "feet"),
  31105. name: "Dick",
  31106. image: {
  31107. source: "./media/characters/holly-rabbit/dick.svg"
  31108. }
  31109. },
  31110. },
  31111. [
  31112. {
  31113. name: "Normal",
  31114. height: math.unit(15, "feet"),
  31115. default: true
  31116. },
  31117. {
  31118. name: "Macro",
  31119. height: math.unit(250, "feet")
  31120. },
  31121. {
  31122. name: "Macro+",
  31123. height: math.unit(2500, "feet")
  31124. },
  31125. ]
  31126. ))
  31127. characterMakers.push(() => makeCharacter(
  31128. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31129. {
  31130. front: {
  31131. height: math.unit(3.02, "meters"),
  31132. weight: math.unit(500, "kg"),
  31133. name: "Front",
  31134. image: {
  31135. source: "./media/characters/drena/front.svg",
  31136. extra: 282 / 243,
  31137. bottom: 8 / 290
  31138. }
  31139. },
  31140. side: {
  31141. height: math.unit(3.02, "meters"),
  31142. weight: math.unit(500, "kg"),
  31143. name: "Side",
  31144. image: {
  31145. source: "./media/characters/drena/side.svg",
  31146. extra: 280 / 245,
  31147. bottom: 10 / 290
  31148. }
  31149. },
  31150. back: {
  31151. height: math.unit(3.02, "meters"),
  31152. weight: math.unit(500, "kg"),
  31153. name: "Back",
  31154. image: {
  31155. source: "./media/characters/drena/back.svg",
  31156. extra: 278 / 243,
  31157. bottom: 2 / 280
  31158. }
  31159. },
  31160. foot: {
  31161. height: math.unit(0.75, "meters"),
  31162. name: "Foot",
  31163. image: {
  31164. source: "./media/characters/drena/foot.svg"
  31165. }
  31166. },
  31167. maw: {
  31168. height: math.unit(0.82, "meters"),
  31169. name: "Maw",
  31170. image: {
  31171. source: "./media/characters/drena/maw.svg"
  31172. }
  31173. },
  31174. eating: {
  31175. height: math.unit(0.75, "meters"),
  31176. name: "Eating",
  31177. image: {
  31178. source: "./media/characters/drena/eating.svg"
  31179. }
  31180. },
  31181. rump: {
  31182. height: math.unit(0.93, "meters"),
  31183. name: "Rump",
  31184. image: {
  31185. source: "./media/characters/drena/rump.svg"
  31186. }
  31187. },
  31188. },
  31189. [
  31190. {
  31191. name: "Normal",
  31192. height: math.unit(3.02, "meters"),
  31193. default: true
  31194. },
  31195. ]
  31196. ))
  31197. characterMakers.push(() => makeCharacter(
  31198. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31199. {
  31200. front: {
  31201. height: math.unit(6 + 4 / 12, "feet"),
  31202. weight: math.unit(250, "lb"),
  31203. name: "Front",
  31204. image: {
  31205. source: "./media/characters/remmyzilla/front.svg",
  31206. extra: 4033 / 3588,
  31207. bottom: 123 / 4156
  31208. }
  31209. },
  31210. back: {
  31211. height: math.unit(6 + 4 / 12, "feet"),
  31212. weight: math.unit(250, "lb"),
  31213. name: "Back",
  31214. image: {
  31215. source: "./media/characters/remmyzilla/back.svg",
  31216. extra: 1696/1602,
  31217. bottom: 63/1759
  31218. }
  31219. },
  31220. paw: {
  31221. height: math.unit(1.73, "feet"),
  31222. name: "Paw",
  31223. image: {
  31224. source: "./media/characters/remmyzilla/paw.svg"
  31225. },
  31226. extraAttributes: {
  31227. "toeSize": {
  31228. name: "Toe Size",
  31229. power: 2,
  31230. type: "area",
  31231. base: math.unit(0.0035, "m^2")
  31232. },
  31233. "padSize": {
  31234. name: "Pad Size",
  31235. power: 2,
  31236. type: "area",
  31237. base: math.unit(0.015, "m^2")
  31238. },
  31239. "pawsize": {
  31240. name: "Paw Size",
  31241. power: 2,
  31242. type: "area",
  31243. base: math.unit(0.072, "m^2")
  31244. },
  31245. }
  31246. },
  31247. maw: {
  31248. height: math.unit(1.73, "feet"),
  31249. name: "Maw",
  31250. image: {
  31251. source: "./media/characters/remmyzilla/maw.svg"
  31252. }
  31253. },
  31254. },
  31255. [
  31256. {
  31257. name: "Normal",
  31258. height: math.unit(6 + 4 / 12, "feet")
  31259. },
  31260. {
  31261. name: "Minimacro",
  31262. height: math.unit(12 + 8 / 12, "feet")
  31263. },
  31264. {
  31265. name: "Normal",
  31266. height: math.unit(640, "feet"),
  31267. default: true
  31268. },
  31269. {
  31270. name: "Megamacro",
  31271. height: math.unit(6400, "feet")
  31272. },
  31273. {
  31274. name: "Gigamacro",
  31275. height: math.unit(64000, "miles")
  31276. },
  31277. ]
  31278. ))
  31279. characterMakers.push(() => makeCharacter(
  31280. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31281. {
  31282. front: {
  31283. height: math.unit(2.5, "meters"),
  31284. weight: math.unit(300, "lb"),
  31285. name: "Front",
  31286. image: {
  31287. source: "./media/characters/lawrence/front.svg",
  31288. extra: 357 / 335,
  31289. bottom: 30 / 387
  31290. }
  31291. },
  31292. back: {
  31293. height: math.unit(2.5, "meters"),
  31294. weight: math.unit(300, "lb"),
  31295. name: "Back",
  31296. image: {
  31297. source: "./media/characters/lawrence/back.svg",
  31298. extra: 357 / 338,
  31299. bottom: 16 / 373
  31300. }
  31301. },
  31302. head: {
  31303. height: math.unit(0.9, "meter"),
  31304. name: "Head",
  31305. image: {
  31306. source: "./media/characters/lawrence/head.svg"
  31307. }
  31308. },
  31309. maw: {
  31310. height: math.unit(0.7, "meter"),
  31311. name: "Maw",
  31312. image: {
  31313. source: "./media/characters/lawrence/maw.svg"
  31314. }
  31315. },
  31316. footBottom: {
  31317. height: math.unit(0.5, "meter"),
  31318. name: "Foot (Bottom)",
  31319. image: {
  31320. source: "./media/characters/lawrence/foot-bottom.svg"
  31321. }
  31322. },
  31323. footTop: {
  31324. height: math.unit(0.5, "meter"),
  31325. name: "Foot (Top)",
  31326. image: {
  31327. source: "./media/characters/lawrence/foot-top.svg"
  31328. }
  31329. },
  31330. },
  31331. [
  31332. {
  31333. name: "Normal",
  31334. height: math.unit(2.5, "meters"),
  31335. default: true
  31336. },
  31337. {
  31338. name: "Macro",
  31339. height: math.unit(95, "meters")
  31340. },
  31341. {
  31342. name: "Megamacro",
  31343. height: math.unit(150, "km")
  31344. },
  31345. ]
  31346. ))
  31347. characterMakers.push(() => makeCharacter(
  31348. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31349. {
  31350. front: {
  31351. height: math.unit(4.2, "meters"),
  31352. preyCapacity: math.unit(50, "m^3"),
  31353. weight: math.unit(30, "tonnes"),
  31354. name: "Front",
  31355. image: {
  31356. source: "./media/characters/sydney/front.svg",
  31357. extra: 1177/1129,
  31358. bottom: 197/1374
  31359. },
  31360. extraAttributes: {
  31361. "length": {
  31362. name: "Length",
  31363. power: 1,
  31364. type: "length",
  31365. base: math.unit(21, "meters")
  31366. },
  31367. }
  31368. },
  31369. },
  31370. [
  31371. {
  31372. name: "Normal",
  31373. height: math.unit(4.2, "meters"),
  31374. default: true
  31375. },
  31376. ]
  31377. ))
  31378. characterMakers.push(() => makeCharacter(
  31379. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31380. {
  31381. back: {
  31382. height: math.unit(201, "feet"),
  31383. name: "Back",
  31384. image: {
  31385. source: "./media/characters/jessica/back.svg",
  31386. extra: 273 / 259,
  31387. bottom: 7 / 280
  31388. }
  31389. },
  31390. },
  31391. [
  31392. {
  31393. name: "Normal",
  31394. height: math.unit(201, "feet"),
  31395. default: true
  31396. },
  31397. {
  31398. name: "Megamacro",
  31399. height: math.unit(8, "miles")
  31400. },
  31401. ]
  31402. ))
  31403. characterMakers.push(() => makeCharacter(
  31404. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31405. {
  31406. side: {
  31407. height: math.unit(5.6, "m"),
  31408. weight: math.unit(8000, "kg"),
  31409. name: "Side",
  31410. image: {
  31411. source: "./media/characters/victoria/side.svg",
  31412. extra: 1542/1229,
  31413. bottom: 124/1666
  31414. }
  31415. },
  31416. maw: {
  31417. height: math.unit(7.14, "feet"),
  31418. name: "Maw",
  31419. image: {
  31420. source: "./media/characters/victoria/maw.svg"
  31421. }
  31422. },
  31423. },
  31424. [
  31425. {
  31426. name: "Normal",
  31427. height: math.unit(5.6, "m"),
  31428. default: true
  31429. },
  31430. ]
  31431. ))
  31432. characterMakers.push(() => makeCharacter(
  31433. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31434. {
  31435. front: {
  31436. height: math.unit(5 + 6 / 12, "feet"),
  31437. name: "Front",
  31438. image: {
  31439. source: "./media/characters/cat/front.svg",
  31440. extra: 1449/1295,
  31441. bottom: 34/1483
  31442. },
  31443. form: "cat",
  31444. default: true
  31445. },
  31446. back: {
  31447. height: math.unit(5 + 6 / 12, "feet"),
  31448. name: "Back",
  31449. image: {
  31450. source: "./media/characters/cat/back.svg",
  31451. extra: 1466/1301,
  31452. bottom: 19/1485
  31453. },
  31454. form: "cat"
  31455. },
  31456. taur: {
  31457. height: math.unit(7, "feet"),
  31458. name: "Taur",
  31459. image: {
  31460. source: "./media/characters/cat/taur.svg",
  31461. extra: 1389/1233,
  31462. bottom: 83/1472
  31463. },
  31464. form: "taur",
  31465. default: true
  31466. },
  31467. lucarioFront: {
  31468. height: math.unit(4, "feet"),
  31469. name: "Lucario (Front)",
  31470. image: {
  31471. source: "./media/characters/cat/lucario-front.svg",
  31472. extra: 1149/1019,
  31473. bottom: 84/1233
  31474. },
  31475. form: "lucario",
  31476. default: true
  31477. },
  31478. lucarioBack: {
  31479. height: math.unit(4, "feet"),
  31480. name: "Lucario (Back)",
  31481. image: {
  31482. source: "./media/characters/cat/lucario-back.svg",
  31483. extra: 1190/1059,
  31484. bottom: 33/1223
  31485. },
  31486. form: "lucario"
  31487. },
  31488. megaLucario: {
  31489. height: math.unit(4, "feet"),
  31490. name: "Mega Lucario",
  31491. image: {
  31492. source: "./media/characters/cat/mega-lucario.svg",
  31493. extra: 1515 / 1319,
  31494. bottom: 63 / 1578
  31495. },
  31496. form: "lucario"
  31497. },
  31498. nickit: {
  31499. height: math.unit(2, "feet"),
  31500. name: "Nickit",
  31501. image: {
  31502. source: "./media/characters/cat/nickit.svg",
  31503. extra: 1980 / 1585,
  31504. bottom: 102 / 2082
  31505. },
  31506. form: "nickit",
  31507. default: true
  31508. },
  31509. lopunnyFront: {
  31510. height: math.unit(5, "feet"),
  31511. name: "Lopunny (Front)",
  31512. image: {
  31513. source: "./media/characters/cat/lopunny-front.svg",
  31514. extra: 1782 / 1469,
  31515. bottom: 38 / 1820
  31516. },
  31517. form: "lopunny",
  31518. default: true
  31519. },
  31520. lopunnyBack: {
  31521. height: math.unit(5, "feet"),
  31522. name: "Lopunny (Back)",
  31523. image: {
  31524. source: "./media/characters/cat/lopunny-back.svg",
  31525. extra: 1660 / 1490,
  31526. bottom: 25 / 1685
  31527. },
  31528. form: "lopunny"
  31529. },
  31530. },
  31531. [
  31532. {
  31533. name: "Really small",
  31534. height: math.unit(1, "nm"),
  31535. allForms: true
  31536. },
  31537. {
  31538. name: "Micro",
  31539. height: math.unit(5, "inches"),
  31540. allForms: true
  31541. },
  31542. {
  31543. name: "Normal",
  31544. height: math.unit(5 + 6 / 12, "feet"),
  31545. default: true,
  31546. form: "cat"
  31547. },
  31548. {
  31549. name: "Normal",
  31550. height: math.unit(7, "feet"),
  31551. default: true,
  31552. form: "taur"
  31553. },
  31554. {
  31555. name: "Normal",
  31556. height: math.unit(4, "feet"),
  31557. default: true,
  31558. form: "lucario"
  31559. },
  31560. {
  31561. name: "Normal",
  31562. height: math.unit(2, "feet"),
  31563. default: true,
  31564. form: "nickit"
  31565. },
  31566. {
  31567. name: "Normal",
  31568. height: math.unit(5, "feet"),
  31569. default: true,
  31570. form: "lopunny"
  31571. },
  31572. {
  31573. name: "Macro",
  31574. height: math.unit(50, "feet"),
  31575. allForms: true
  31576. },
  31577. {
  31578. name: "Macro+",
  31579. height: math.unit(150, "feet"),
  31580. allForms: true
  31581. },
  31582. {
  31583. name: "Megamacro",
  31584. height: math.unit(100, "miles"),
  31585. allForms: true
  31586. },
  31587. ],
  31588. {
  31589. "cat": {
  31590. name: "Cat",
  31591. default: true
  31592. },
  31593. "taur": {
  31594. name: "Taur",
  31595. },
  31596. "lucario": {
  31597. name: "Lucario",
  31598. },
  31599. "nickit": {
  31600. name: "Nickit",
  31601. },
  31602. "lopunny": {
  31603. name: "Lopunny",
  31604. }
  31605. }
  31606. ))
  31607. characterMakers.push(() => makeCharacter(
  31608. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31609. {
  31610. front: {
  31611. height: math.unit(63.4, "meters"),
  31612. weight: math.unit(3.28349e+6, "kilograms"),
  31613. name: "Front",
  31614. image: {
  31615. source: "./media/characters/kirina-violet/front.svg",
  31616. extra: 2812 / 2725,
  31617. bottom: 0 / 2812
  31618. }
  31619. },
  31620. back: {
  31621. height: math.unit(63.4, "meters"),
  31622. weight: math.unit(3.28349e+6, "kilograms"),
  31623. name: "Back",
  31624. image: {
  31625. source: "./media/characters/kirina-violet/back.svg",
  31626. extra: 2812 / 2725,
  31627. bottom: 0 / 2812
  31628. }
  31629. },
  31630. mouth: {
  31631. height: math.unit(4.35, "meters"),
  31632. name: "Mouth",
  31633. image: {
  31634. source: "./media/characters/kirina-violet/mouth.svg"
  31635. }
  31636. },
  31637. paw: {
  31638. height: math.unit(5.6, "meters"),
  31639. name: "Paw",
  31640. image: {
  31641. source: "./media/characters/kirina-violet/paw.svg"
  31642. }
  31643. },
  31644. tail: {
  31645. height: math.unit(18, "meters"),
  31646. name: "Tail",
  31647. image: {
  31648. source: "./media/characters/kirina-violet/tail.svg"
  31649. }
  31650. },
  31651. },
  31652. [
  31653. {
  31654. name: "Macro",
  31655. height: math.unit(63.4, "meters"),
  31656. default: true
  31657. },
  31658. ]
  31659. ))
  31660. characterMakers.push(() => makeCharacter(
  31661. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31662. {
  31663. front: {
  31664. height: math.unit(75, "feet"),
  31665. name: "Front",
  31666. image: {
  31667. source: "./media/characters/cat-gigachu/front.svg",
  31668. extra: 1239/1027,
  31669. bottom: 32/1271
  31670. }
  31671. },
  31672. back: {
  31673. height: math.unit(75, "feet"),
  31674. name: "Back",
  31675. image: {
  31676. source: "./media/characters/cat-gigachu/back.svg",
  31677. extra: 1229/1030,
  31678. bottom: 9/1238
  31679. }
  31680. },
  31681. },
  31682. [
  31683. {
  31684. name: "Dynamax",
  31685. height: math.unit(75, "feet"),
  31686. default: true
  31687. },
  31688. ]
  31689. ))
  31690. characterMakers.push(() => makeCharacter(
  31691. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31692. {
  31693. front: {
  31694. height: math.unit(6, "feet"),
  31695. weight: math.unit(150, "lb"),
  31696. name: "Front",
  31697. image: {
  31698. source: "./media/characters/sfaiyan/front.svg",
  31699. extra: 999 / 978,
  31700. bottom: 5 / 1004
  31701. }
  31702. },
  31703. },
  31704. [
  31705. {
  31706. name: "Normal",
  31707. height: math.unit(1.82, "meters")
  31708. },
  31709. {
  31710. name: "Giant",
  31711. height: math.unit(2.27, "km"),
  31712. default: true
  31713. },
  31714. ]
  31715. ))
  31716. characterMakers.push(() => makeCharacter(
  31717. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31718. {
  31719. front: {
  31720. height: math.unit(179, "cm"),
  31721. weight: math.unit(100, "kg"),
  31722. name: "Front",
  31723. image: {
  31724. source: "./media/characters/raunehkeli/front.svg",
  31725. extra: 1934 / 1926,
  31726. bottom: 0 / 1934
  31727. }
  31728. },
  31729. },
  31730. [
  31731. {
  31732. name: "Normal",
  31733. height: math.unit(179, "cm")
  31734. },
  31735. {
  31736. name: "Maximum",
  31737. height: math.unit(575, "meters"),
  31738. default: true
  31739. },
  31740. ]
  31741. ))
  31742. characterMakers.push(() => makeCharacter(
  31743. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31744. {
  31745. front: {
  31746. height: math.unit(6, "feet"),
  31747. weight: math.unit(150, "lb"),
  31748. name: "Front",
  31749. image: {
  31750. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31751. extra: 2625 / 2518,
  31752. bottom: 60 / 2685
  31753. }
  31754. },
  31755. },
  31756. [
  31757. {
  31758. name: "Normal",
  31759. height: math.unit(6 + 2 / 12, "feet")
  31760. },
  31761. {
  31762. name: "Macro",
  31763. height: math.unit(1180, "feet"),
  31764. default: true
  31765. },
  31766. ]
  31767. ))
  31768. characterMakers.push(() => makeCharacter(
  31769. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31770. {
  31771. front: {
  31772. height: math.unit(5 + 6 / 12, "feet"),
  31773. weight: math.unit(108, "lb"),
  31774. name: "Front",
  31775. image: {
  31776. source: "./media/characters/lilith-zott/front.svg",
  31777. extra: 2510 / 2238,
  31778. bottom: 100 / 2610
  31779. }
  31780. },
  31781. frontDressed: {
  31782. height: math.unit(5 + 6 / 12, "feet"),
  31783. weight: math.unit(108, "lb"),
  31784. name: "Front (Dressed)",
  31785. image: {
  31786. source: "./media/characters/lilith-zott/front-dressed.svg",
  31787. extra: 2510 / 2238,
  31788. bottom: 100 / 2610
  31789. }
  31790. },
  31791. },
  31792. [
  31793. {
  31794. name: "Normal",
  31795. height: math.unit(5 + 6 / 12, "feet")
  31796. },
  31797. {
  31798. name: "Macro",
  31799. height: math.unit(1030, "feet"),
  31800. default: true
  31801. },
  31802. ]
  31803. ))
  31804. characterMakers.push(() => makeCharacter(
  31805. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31806. {
  31807. front: {
  31808. height: math.unit(6, "feet"),
  31809. weight: math.unit(150, "lb"),
  31810. name: "Front",
  31811. image: {
  31812. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31813. extra: 2567 / 2435,
  31814. bottom: 39 / 2606
  31815. }
  31816. },
  31817. frontSuper: {
  31818. height: math.unit(6, "feet"),
  31819. name: "Front (Super)",
  31820. image: {
  31821. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31822. extra: 2567 / 2435,
  31823. bottom: 39 / 2606
  31824. }
  31825. },
  31826. },
  31827. [
  31828. {
  31829. name: "Normal",
  31830. height: math.unit(5 + 10 / 12, "feet")
  31831. },
  31832. {
  31833. name: "Macro",
  31834. height: math.unit(1100, "feet"),
  31835. default: true
  31836. },
  31837. ]
  31838. ))
  31839. characterMakers.push(() => makeCharacter(
  31840. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31841. {
  31842. front: {
  31843. height: math.unit(100, "miles"),
  31844. name: "Front",
  31845. image: {
  31846. source: "./media/characters/sona/front.svg",
  31847. extra: 2433 / 2201,
  31848. bottom: 53 / 2486
  31849. }
  31850. },
  31851. foot: {
  31852. height: math.unit(16.1, "miles"),
  31853. name: "Foot",
  31854. image: {
  31855. source: "./media/characters/sona/foot.svg"
  31856. }
  31857. },
  31858. },
  31859. [
  31860. {
  31861. name: "Macro",
  31862. height: math.unit(100, "miles"),
  31863. default: true
  31864. },
  31865. ]
  31866. ))
  31867. characterMakers.push(() => makeCharacter(
  31868. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31869. {
  31870. front: {
  31871. height: math.unit(6, "feet"),
  31872. weight: math.unit(150, "lb"),
  31873. name: "Front",
  31874. image: {
  31875. source: "./media/characters/bailey/front.svg",
  31876. extra: 1778 / 1724,
  31877. bottom: 30 / 1808
  31878. }
  31879. },
  31880. },
  31881. [
  31882. {
  31883. name: "Micro",
  31884. height: math.unit(4, "inches")
  31885. },
  31886. {
  31887. name: "Normal",
  31888. height: math.unit(5 + 5 / 12, "feet"),
  31889. default: true
  31890. },
  31891. {
  31892. name: "Macro",
  31893. height: math.unit(250, "feet")
  31894. },
  31895. {
  31896. name: "Megamacro",
  31897. height: math.unit(100, "miles")
  31898. },
  31899. ]
  31900. ))
  31901. characterMakers.push(() => makeCharacter(
  31902. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31903. {
  31904. front: {
  31905. height: math.unit(5 + 2 / 12, "feet"),
  31906. weight: math.unit(120, "lb"),
  31907. name: "Front",
  31908. image: {
  31909. source: "./media/characters/snaps/front.svg",
  31910. extra: 2370 / 2177,
  31911. bottom: 48 / 2418
  31912. }
  31913. },
  31914. back: {
  31915. height: math.unit(5 + 2 / 12, "feet"),
  31916. weight: math.unit(120, "lb"),
  31917. name: "Back",
  31918. image: {
  31919. source: "./media/characters/snaps/back.svg",
  31920. extra: 2408 / 2258,
  31921. bottom: 15 / 2423
  31922. }
  31923. },
  31924. },
  31925. [
  31926. {
  31927. name: "Micro",
  31928. height: math.unit(9, "inches")
  31929. },
  31930. {
  31931. name: "Normal",
  31932. height: math.unit(5 + 2 / 12, "feet"),
  31933. default: true
  31934. },
  31935. {
  31936. name: "Mini Macro",
  31937. height: math.unit(10, "feet")
  31938. },
  31939. ]
  31940. ))
  31941. characterMakers.push(() => makeCharacter(
  31942. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31943. {
  31944. front: {
  31945. height: math.unit(1.8, "meters"),
  31946. weight: math.unit(85, "kg"),
  31947. name: "Front",
  31948. image: {
  31949. source: "./media/characters/azteck/front.svg",
  31950. extra: 2815 / 2625,
  31951. bottom: 89 / 2904
  31952. }
  31953. },
  31954. back: {
  31955. height: math.unit(1.8, "meters"),
  31956. weight: math.unit(85, "kg"),
  31957. name: "Back",
  31958. image: {
  31959. source: "./media/characters/azteck/back.svg",
  31960. extra: 2856 / 2648,
  31961. bottom: 85 / 2941
  31962. }
  31963. },
  31964. frontDressed: {
  31965. height: math.unit(1.8, "meters"),
  31966. weight: math.unit(85, "kg"),
  31967. name: "Front (Dressed)",
  31968. image: {
  31969. source: "./media/characters/azteck/front-dressed.svg",
  31970. extra: 2147 / 2003,
  31971. bottom: 68 / 2215
  31972. }
  31973. },
  31974. head: {
  31975. height: math.unit(0.47, "meters"),
  31976. weight: math.unit(85, "kg"),
  31977. name: "Head",
  31978. image: {
  31979. source: "./media/characters/azteck/head.svg"
  31980. }
  31981. },
  31982. },
  31983. [
  31984. {
  31985. name: "Bite sized",
  31986. height: math.unit(16, "cm")
  31987. },
  31988. {
  31989. name: "Normal",
  31990. height: math.unit(1.8, "meters"),
  31991. default: true
  31992. },
  31993. ]
  31994. ))
  31995. characterMakers.push(() => makeCharacter(
  31996. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31997. {
  31998. front: {
  31999. height: math.unit(6, "feet"),
  32000. weight: math.unit(150, "lb"),
  32001. name: "Front",
  32002. image: {
  32003. source: "./media/characters/pidge/front.svg",
  32004. extra: 1936/1820,
  32005. bottom: 0/1936
  32006. }
  32007. },
  32008. back: {
  32009. height: math.unit(6, "feet"),
  32010. weight: math.unit(150, "lb"),
  32011. name: "Back",
  32012. image: {
  32013. source: "./media/characters/pidge/back.svg",
  32014. extra: 1938/1843,
  32015. bottom: 0/1938
  32016. }
  32017. },
  32018. casual: {
  32019. height: math.unit(6, "feet"),
  32020. weight: math.unit(150, "lb"),
  32021. name: "Casual",
  32022. image: {
  32023. source: "./media/characters/pidge/casual.svg",
  32024. extra: 1936/1820,
  32025. bottom: 0/1936
  32026. }
  32027. },
  32028. tech: {
  32029. height: math.unit(6, "feet"),
  32030. weight: math.unit(150, "lb"),
  32031. name: "Tech",
  32032. image: {
  32033. source: "./media/characters/pidge/tech.svg",
  32034. extra: 1802/1682,
  32035. bottom: 0/1802
  32036. }
  32037. },
  32038. head: {
  32039. height: math.unit(1.61, "feet"),
  32040. name: "Head",
  32041. image: {
  32042. source: "./media/characters/pidge/head.svg"
  32043. }
  32044. },
  32045. collar: {
  32046. height: math.unit(0.82, "feet"),
  32047. name: "Collar",
  32048. image: {
  32049. source: "./media/characters/pidge/collar.svg"
  32050. }
  32051. },
  32052. },
  32053. [
  32054. {
  32055. name: "Macro",
  32056. height: math.unit(2, "mile"),
  32057. default: true
  32058. },
  32059. {
  32060. name: "PUPPY",
  32061. height: math.unit(20, "miles")
  32062. },
  32063. ]
  32064. ))
  32065. characterMakers.push(() => makeCharacter(
  32066. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32067. {
  32068. front: {
  32069. height: math.unit(6, "feet"),
  32070. weight: math.unit(150, "lb"),
  32071. name: "Front",
  32072. image: {
  32073. source: "./media/characters/en/front.svg",
  32074. extra: 1697 / 1563,
  32075. bottom: 103 / 1800
  32076. }
  32077. },
  32078. back: {
  32079. height: math.unit(6, "feet"),
  32080. weight: math.unit(150, "lb"),
  32081. name: "Back",
  32082. image: {
  32083. source: "./media/characters/en/back.svg",
  32084. extra: 1700 / 1570,
  32085. bottom: 51 / 1751
  32086. }
  32087. },
  32088. frontDressed: {
  32089. height: math.unit(6, "feet"),
  32090. weight: math.unit(150, "lb"),
  32091. name: "Front (Dressed)",
  32092. image: {
  32093. source: "./media/characters/en/front-dressed.svg",
  32094. extra: 1697 / 1563,
  32095. bottom: 103 / 1800
  32096. }
  32097. },
  32098. backDressed: {
  32099. height: math.unit(6, "feet"),
  32100. weight: math.unit(150, "lb"),
  32101. name: "Back (Dressed)",
  32102. image: {
  32103. source: "./media/characters/en/back-dressed.svg",
  32104. extra: 1700 / 1570,
  32105. bottom: 51 / 1751
  32106. }
  32107. },
  32108. },
  32109. [
  32110. {
  32111. name: "Macro",
  32112. height: math.unit(210, "feet"),
  32113. default: true
  32114. },
  32115. ]
  32116. ))
  32117. characterMakers.push(() => makeCharacter(
  32118. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32119. {
  32120. front: {
  32121. height: math.unit(6, "feet"),
  32122. weight: math.unit(150, "lb"),
  32123. name: "Front",
  32124. image: {
  32125. source: "./media/characters/haze-orris/front.svg",
  32126. extra: 3975 / 3525,
  32127. bottom: 137 / 4112
  32128. }
  32129. },
  32130. },
  32131. [
  32132. {
  32133. name: "Micro",
  32134. height: math.unit(150, "mm"),
  32135. default: true
  32136. },
  32137. ]
  32138. ))
  32139. characterMakers.push(() => makeCharacter(
  32140. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32141. {
  32142. front: {
  32143. height: math.unit(6, "feet"),
  32144. weight: math.unit(150, "lb"),
  32145. name: "Front",
  32146. image: {
  32147. source: "./media/characters/casselene-yaro/front.svg",
  32148. extra: 4721 / 4541,
  32149. bottom: 82 / 4803
  32150. }
  32151. },
  32152. back: {
  32153. height: math.unit(6, "feet"),
  32154. weight: math.unit(150, "lb"),
  32155. name: "Back",
  32156. image: {
  32157. source: "./media/characters/casselene-yaro/back.svg",
  32158. extra: 4569 / 4377,
  32159. bottom: 69 / 4638
  32160. }
  32161. },
  32162. dressed: {
  32163. height: math.unit(6, "feet"),
  32164. weight: math.unit(150, "lb"),
  32165. name: "Dressed",
  32166. image: {
  32167. source: "./media/characters/casselene-yaro/dressed.svg",
  32168. extra: 4721 / 4541,
  32169. bottom: 82 / 4803
  32170. }
  32171. },
  32172. maw: {
  32173. height: math.unit(1, "feet"),
  32174. name: "Maw",
  32175. image: {
  32176. source: "./media/characters/casselene-yaro/maw.svg"
  32177. }
  32178. },
  32179. },
  32180. [
  32181. {
  32182. name: "Macro",
  32183. height: math.unit(190, "feet"),
  32184. default: true
  32185. },
  32186. ]
  32187. ))
  32188. characterMakers.push(() => makeCharacter(
  32189. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32190. {
  32191. front: {
  32192. height: math.unit(10, "feet"),
  32193. weight: math.unit(15015, "lb"),
  32194. name: "Front",
  32195. image: {
  32196. source: "./media/characters/platine/front.svg",
  32197. extra: 1741/1650,
  32198. bottom: 84/1825
  32199. }
  32200. },
  32201. side: {
  32202. height: math.unit(10, "feet"),
  32203. weight: math.unit(15015, "lb"),
  32204. name: "Side",
  32205. image: {
  32206. source: "./media/characters/platine/side.svg",
  32207. extra: 1790/1705,
  32208. bottom: 29/1819
  32209. }
  32210. },
  32211. },
  32212. [
  32213. {
  32214. name: "Normal",
  32215. height: math.unit(10, "feet"),
  32216. default: true
  32217. },
  32218. {
  32219. name: "Macro",
  32220. height: math.unit(100, "feet")
  32221. },
  32222. {
  32223. name: "Megamacro",
  32224. height: math.unit(1000, "feet")
  32225. },
  32226. ]
  32227. ))
  32228. characterMakers.push(() => makeCharacter(
  32229. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32230. {
  32231. front: {
  32232. height: math.unit(15 + 5 / 12, "feet"),
  32233. weight: math.unit(4600, "lb"),
  32234. name: "Front",
  32235. image: {
  32236. source: "./media/characters/neapolitan-ananassa/front.svg",
  32237. extra: 2903 / 2736,
  32238. bottom: 0 / 2903
  32239. }
  32240. },
  32241. side: {
  32242. height: math.unit(15 + 5 / 12, "feet"),
  32243. weight: math.unit(4600, "lb"),
  32244. name: "Side",
  32245. image: {
  32246. source: "./media/characters/neapolitan-ananassa/side.svg",
  32247. extra: 2925 / 2719,
  32248. bottom: 0 / 2925
  32249. }
  32250. },
  32251. back: {
  32252. height: math.unit(15 + 5 / 12, "feet"),
  32253. weight: math.unit(4600, "lb"),
  32254. name: "Back",
  32255. image: {
  32256. source: "./media/characters/neapolitan-ananassa/back.svg",
  32257. extra: 2903 / 2736,
  32258. bottom: 0 / 2903
  32259. }
  32260. },
  32261. },
  32262. [
  32263. {
  32264. name: "Normal",
  32265. height: math.unit(15 + 5 / 12, "feet"),
  32266. default: true
  32267. },
  32268. {
  32269. name: "Post-Millenium",
  32270. height: math.unit(35 + 5 / 12, "feet")
  32271. },
  32272. {
  32273. name: "Post-Era",
  32274. height: math.unit(450 + 5 / 12, "feet")
  32275. },
  32276. ]
  32277. ))
  32278. characterMakers.push(() => makeCharacter(
  32279. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32280. {
  32281. front: {
  32282. height: math.unit(300, "meters"),
  32283. weight: math.unit(125000, "tonnes"),
  32284. name: "Front",
  32285. image: {
  32286. source: "./media/characters/pazuzu/front.svg",
  32287. extra: 877 / 794,
  32288. bottom: 47 / 924
  32289. }
  32290. },
  32291. },
  32292. [
  32293. {
  32294. name: "Macro",
  32295. height: math.unit(300, "meters"),
  32296. default: true
  32297. },
  32298. ]
  32299. ))
  32300. characterMakers.push(() => makeCharacter(
  32301. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32302. {
  32303. side: {
  32304. height: math.unit(10 + 7 / 12, "feet"),
  32305. weight: math.unit(2.5, "tons"),
  32306. name: "Side",
  32307. image: {
  32308. source: "./media/characters/aasha/side.svg",
  32309. extra: 1345 / 1245,
  32310. bottom: 111 / 1456
  32311. }
  32312. },
  32313. back: {
  32314. height: math.unit(10 + 7 / 12, "feet"),
  32315. weight: math.unit(2.5, "tons"),
  32316. name: "Back",
  32317. image: {
  32318. source: "./media/characters/aasha/back.svg",
  32319. extra: 1133 / 1057,
  32320. bottom: 257 / 1390
  32321. }
  32322. },
  32323. },
  32324. [
  32325. {
  32326. name: "Normal",
  32327. height: math.unit(10 + 7 / 12, "feet"),
  32328. default: true
  32329. },
  32330. ]
  32331. ))
  32332. characterMakers.push(() => makeCharacter(
  32333. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32334. {
  32335. front: {
  32336. height: math.unit(6 + 3 / 12, "feet"),
  32337. name: "Front",
  32338. image: {
  32339. source: "./media/characters/nevan/front.svg",
  32340. extra: 704 / 704,
  32341. bottom: 28 / 732
  32342. }
  32343. },
  32344. back: {
  32345. height: math.unit(6 + 3 / 12, "feet"),
  32346. name: "Back",
  32347. image: {
  32348. source: "./media/characters/nevan/back.svg",
  32349. extra: 714 / 714,
  32350. bottom: 21 / 735
  32351. }
  32352. },
  32353. frontFlaccid: {
  32354. height: math.unit(6 + 3 / 12, "feet"),
  32355. name: "Front (Flaccid)",
  32356. image: {
  32357. source: "./media/characters/nevan/front-flaccid.svg",
  32358. extra: 704 / 704,
  32359. bottom: 28 / 732
  32360. }
  32361. },
  32362. frontErect: {
  32363. height: math.unit(6 + 3 / 12, "feet"),
  32364. name: "Front (Erect)",
  32365. image: {
  32366. source: "./media/characters/nevan/front-erect.svg",
  32367. extra: 704 / 704,
  32368. bottom: 28 / 732
  32369. }
  32370. },
  32371. backFlaccid: {
  32372. height: math.unit(6 + 3 / 12, "feet"),
  32373. name: "Back (Flaccid)",
  32374. image: {
  32375. source: "./media/characters/nevan/back-flaccid.svg",
  32376. extra: 714 / 714,
  32377. bottom: 21 / 735
  32378. }
  32379. },
  32380. },
  32381. [
  32382. {
  32383. name: "Normal",
  32384. height: math.unit(6 + 3 / 12, "feet"),
  32385. default: true
  32386. },
  32387. ]
  32388. ))
  32389. characterMakers.push(() => makeCharacter(
  32390. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32391. {
  32392. front: {
  32393. height: math.unit(4, "feet"),
  32394. name: "Front",
  32395. image: {
  32396. source: "./media/characters/arhan/front.svg",
  32397. extra: 3368 / 3133,
  32398. bottom: 0 / 3368
  32399. }
  32400. },
  32401. side: {
  32402. height: math.unit(4, "feet"),
  32403. name: "Side",
  32404. image: {
  32405. source: "./media/characters/arhan/side.svg",
  32406. extra: 3347 / 3105,
  32407. bottom: 0 / 3347
  32408. }
  32409. },
  32410. tongue: {
  32411. height: math.unit(1.42, "feet"),
  32412. name: "Tongue",
  32413. image: {
  32414. source: "./media/characters/arhan/tongue.svg"
  32415. }
  32416. },
  32417. head: {
  32418. height: math.unit(0.85, "feet"),
  32419. name: "Head",
  32420. image: {
  32421. source: "./media/characters/arhan/head.svg"
  32422. }
  32423. },
  32424. },
  32425. [
  32426. {
  32427. name: "Normal",
  32428. height: math.unit(4, "feet"),
  32429. default: true
  32430. },
  32431. ]
  32432. ))
  32433. characterMakers.push(() => makeCharacter(
  32434. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32435. {
  32436. front: {
  32437. height: math.unit(5 + 7.5 / 12, "feet"),
  32438. weight: math.unit(120, "lb"),
  32439. name: "Front",
  32440. image: {
  32441. source: "./media/characters/digi-duncan/front.svg",
  32442. extra: 330 / 326,
  32443. bottom: 16 / 346
  32444. }
  32445. },
  32446. side: {
  32447. height: math.unit(5 + 7.5 / 12, "feet"),
  32448. weight: math.unit(120, "lb"),
  32449. name: "Side",
  32450. image: {
  32451. source: "./media/characters/digi-duncan/side.svg",
  32452. extra: 341 / 337,
  32453. bottom: 1 / 342
  32454. }
  32455. },
  32456. back: {
  32457. height: math.unit(5 + 7.5 / 12, "feet"),
  32458. weight: math.unit(120, "lb"),
  32459. name: "Back",
  32460. image: {
  32461. source: "./media/characters/digi-duncan/back.svg",
  32462. extra: 330 / 326,
  32463. bottom: 12 / 342
  32464. }
  32465. },
  32466. },
  32467. [
  32468. {
  32469. name: "Speck",
  32470. height: math.unit(0.25, "mm")
  32471. },
  32472. {
  32473. name: "Micro",
  32474. height: math.unit(5, "mm")
  32475. },
  32476. {
  32477. name: "Tiny",
  32478. height: math.unit(0.5, "inches"),
  32479. default: true
  32480. },
  32481. {
  32482. name: "Human",
  32483. height: math.unit(5 + 7.5 / 12, "feet")
  32484. },
  32485. {
  32486. name: "Minigiant",
  32487. height: math.unit(8 + 5.25, "feet")
  32488. },
  32489. {
  32490. name: "Giant",
  32491. height: math.unit(2000, "feet")
  32492. },
  32493. {
  32494. name: "Mega",
  32495. height: math.unit(371.1, "miles")
  32496. },
  32497. ]
  32498. ))
  32499. characterMakers.push(() => makeCharacter(
  32500. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32501. {
  32502. front: {
  32503. height: math.unit(2, "meters"),
  32504. weight: math.unit(350, "kg"),
  32505. name: "Front",
  32506. image: {
  32507. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32508. extra: 898 / 838,
  32509. bottom: 9 / 907
  32510. }
  32511. },
  32512. },
  32513. [
  32514. {
  32515. name: "Micro",
  32516. height: math.unit(8, "meters")
  32517. },
  32518. {
  32519. name: "Normal",
  32520. height: math.unit(50, "meters"),
  32521. default: true
  32522. },
  32523. {
  32524. name: "Macro",
  32525. height: math.unit(500, "meters")
  32526. },
  32527. ]
  32528. ))
  32529. characterMakers.push(() => makeCharacter(
  32530. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32531. {
  32532. front: {
  32533. height: math.unit(6 + 6 / 12, "feet"),
  32534. name: "Front",
  32535. image: {
  32536. source: "./media/characters/khardesh/front.svg",
  32537. extra: 1788/1596,
  32538. bottom: 66/1854
  32539. }
  32540. },
  32541. back: {
  32542. height: math.unit(6 + 6 / 12, "feet"),
  32543. name: "Back",
  32544. image: {
  32545. source: "./media/characters/khardesh/back.svg",
  32546. extra: 1781/1584,
  32547. bottom: 68/1849
  32548. }
  32549. },
  32550. },
  32551. [
  32552. {
  32553. name: "Normal",
  32554. height: math.unit(6 + 6 / 12, "feet"),
  32555. default: true
  32556. },
  32557. {
  32558. name: "Normal+",
  32559. height: math.unit(4, "meters")
  32560. },
  32561. {
  32562. name: "Macro",
  32563. height: math.unit(50, "meters")
  32564. },
  32565. {
  32566. name: "Macro+",
  32567. height: math.unit(100, "meters")
  32568. },
  32569. {
  32570. name: "Megamacro",
  32571. height: math.unit(20, "km")
  32572. },
  32573. ]
  32574. ))
  32575. characterMakers.push(() => makeCharacter(
  32576. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32577. {
  32578. front: {
  32579. height: math.unit(6, "feet"),
  32580. weight: math.unit(150, "lb"),
  32581. name: "Front",
  32582. image: {
  32583. source: "./media/characters/kosho/front.svg",
  32584. extra: 1847 / 1847,
  32585. bottom: 86 / 1933
  32586. }
  32587. },
  32588. },
  32589. [
  32590. {
  32591. name: "Second-stage micro",
  32592. height: math.unit(0.5, "inches")
  32593. },
  32594. {
  32595. name: "First-stage micro",
  32596. height: math.unit(6, "inches")
  32597. },
  32598. {
  32599. name: "Normal",
  32600. height: math.unit(6, "feet"),
  32601. default: true
  32602. },
  32603. {
  32604. name: "First-stage macro",
  32605. height: math.unit(72, "feet")
  32606. },
  32607. {
  32608. name: "Second-stage macro",
  32609. height: math.unit(864, "feet")
  32610. },
  32611. ]
  32612. ))
  32613. characterMakers.push(() => makeCharacter(
  32614. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32615. {
  32616. normal: {
  32617. height: math.unit(4 + 6 / 12, "feet"),
  32618. name: "Normal",
  32619. image: {
  32620. source: "./media/characters/hydra/normal.svg",
  32621. extra: 2833 / 2634,
  32622. bottom: 68 / 2901
  32623. }
  32624. },
  32625. smol: {
  32626. height: math.unit(0.705, "inches"),
  32627. name: "Smol",
  32628. image: {
  32629. source: "./media/characters/hydra/smol.svg",
  32630. extra: 2715 / 2540,
  32631. bottom: 0 / 2715
  32632. }
  32633. },
  32634. },
  32635. [
  32636. {
  32637. name: "Normal",
  32638. height: math.unit(4 + 6 / 12, "feet"),
  32639. default: true
  32640. }
  32641. ]
  32642. ))
  32643. characterMakers.push(() => makeCharacter(
  32644. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32645. {
  32646. front: {
  32647. height: math.unit(0.6, "cm"),
  32648. name: "Front",
  32649. image: {
  32650. source: "./media/characters/daz/front.svg",
  32651. extra: 1682 / 1164,
  32652. bottom: 42 / 1724
  32653. }
  32654. },
  32655. },
  32656. [
  32657. {
  32658. name: "Normal",
  32659. height: math.unit(0.6, "cm"),
  32660. default: true
  32661. },
  32662. ]
  32663. ))
  32664. characterMakers.push(() => makeCharacter(
  32665. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32666. {
  32667. front: {
  32668. height: math.unit(6, "feet"),
  32669. weight: math.unit(235, "lb"),
  32670. name: "Front",
  32671. image: {
  32672. source: "./media/characters/theo-pangolin/front.svg",
  32673. extra: 1996 / 1969,
  32674. bottom: 115 / 2111
  32675. }
  32676. },
  32677. back: {
  32678. height: math.unit(6, "feet"),
  32679. weight: math.unit(235, "lb"),
  32680. name: "Back",
  32681. image: {
  32682. source: "./media/characters/theo-pangolin/back.svg",
  32683. extra: 1979 / 1979,
  32684. bottom: 40 / 2019
  32685. }
  32686. },
  32687. feral: {
  32688. height: math.unit(2, "feet"),
  32689. weight: math.unit(30, "lb"),
  32690. name: "Feral",
  32691. image: {
  32692. source: "./media/characters/theo-pangolin/feral.svg",
  32693. extra: 803 / 791,
  32694. bottom: 181 / 984
  32695. }
  32696. },
  32697. footFive: {
  32698. height: math.unit(1.43, "feet"),
  32699. name: "Foot (Five Toes)",
  32700. image: {
  32701. source: "./media/characters/theo-pangolin/foot-five.svg"
  32702. }
  32703. },
  32704. footFour: {
  32705. height: math.unit(1.43, "feet"),
  32706. name: "Foot (Four Toes)",
  32707. image: {
  32708. source: "./media/characters/theo-pangolin/foot-four.svg"
  32709. }
  32710. },
  32711. handFour: {
  32712. height: math.unit(0.81, "feet"),
  32713. name: "Hand (Four Fingers)",
  32714. image: {
  32715. source: "./media/characters/theo-pangolin/hand-four.svg"
  32716. }
  32717. },
  32718. handThree: {
  32719. height: math.unit(0.81, "feet"),
  32720. name: "Hand (Three Fingers)",
  32721. image: {
  32722. source: "./media/characters/theo-pangolin/hand-three.svg"
  32723. }
  32724. },
  32725. headFront: {
  32726. height: math.unit(1.37, "feet"),
  32727. name: "Head (Front)",
  32728. image: {
  32729. source: "./media/characters/theo-pangolin/head-front.svg"
  32730. }
  32731. },
  32732. headSide: {
  32733. height: math.unit(1.43, "feet"),
  32734. name: "Head (Side)",
  32735. image: {
  32736. source: "./media/characters/theo-pangolin/head-side.svg"
  32737. }
  32738. },
  32739. tongue: {
  32740. height: math.unit(2.29, "feet"),
  32741. name: "Tongue",
  32742. image: {
  32743. source: "./media/characters/theo-pangolin/tongue.svg"
  32744. }
  32745. },
  32746. },
  32747. [
  32748. {
  32749. name: "Normal",
  32750. height: math.unit(6, "feet")
  32751. },
  32752. {
  32753. name: "Macro",
  32754. height: math.unit(400, "feet"),
  32755. default: true
  32756. },
  32757. ]
  32758. ))
  32759. characterMakers.push(() => makeCharacter(
  32760. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32761. {
  32762. front: {
  32763. height: math.unit(6, "inches"),
  32764. weight: math.unit(0.036, "kg"),
  32765. name: "Front",
  32766. image: {
  32767. source: "./media/characters/renée/front.svg",
  32768. extra: 900 / 886,
  32769. bottom: 8 / 908
  32770. }
  32771. },
  32772. },
  32773. [
  32774. {
  32775. name: "Nano",
  32776. height: math.unit(1, "nm")
  32777. },
  32778. {
  32779. name: "Micro",
  32780. height: math.unit(1, "mm")
  32781. },
  32782. {
  32783. name: "Normal",
  32784. height: math.unit(6, "inches")
  32785. },
  32786. {
  32787. name: "Macro",
  32788. height: math.unit(2000, "feet"),
  32789. default: true
  32790. },
  32791. {
  32792. name: "Megamacro",
  32793. height: math.unit(2, "km")
  32794. },
  32795. {
  32796. name: "Gigamacro",
  32797. height: math.unit(2000, "km")
  32798. },
  32799. {
  32800. name: "Teramacro",
  32801. height: math.unit(250000, "km")
  32802. },
  32803. ]
  32804. ))
  32805. characterMakers.push(() => makeCharacter(
  32806. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32807. {
  32808. front: {
  32809. height: math.unit(4, "meters"),
  32810. weight: math.unit(150, "kg"),
  32811. name: "Front",
  32812. image: {
  32813. source: "./media/characters/caledvwlch/front.svg",
  32814. extra: 1757/1537,
  32815. bottom: 31/1788
  32816. }
  32817. },
  32818. side: {
  32819. height: math.unit(4, "meters"),
  32820. weight: math.unit(150, "kg"),
  32821. name: "Side",
  32822. image: {
  32823. source: "./media/characters/caledvwlch/side.svg",
  32824. extra: 1605 / 1536,
  32825. bottom: 31 / 1636
  32826. }
  32827. },
  32828. back: {
  32829. height: math.unit(4, "meters"),
  32830. weight: math.unit(150, "kg"),
  32831. name: "Back",
  32832. image: {
  32833. source: "./media/characters/caledvwlch/back.svg",
  32834. extra: 1635 / 1565,
  32835. bottom: 27 / 1662
  32836. }
  32837. },
  32838. },
  32839. [
  32840. {
  32841. name: "\"Incognito\"",
  32842. height: math.unit(4, "meters")
  32843. },
  32844. {
  32845. name: "Small rampage",
  32846. height: math.unit(600, "meters")
  32847. },
  32848. {
  32849. name: "Mega",
  32850. height: math.unit(30, "km")
  32851. },
  32852. {
  32853. name: "Home-size",
  32854. height: math.unit(50, "km"),
  32855. default: true
  32856. },
  32857. {
  32858. name: "Giga",
  32859. height: math.unit(300, "km")
  32860. },
  32861. {
  32862. name: "Lounging",
  32863. height: math.unit(11000, "km")
  32864. },
  32865. {
  32866. name: "Planet snacking",
  32867. height: math.unit(2000000, "km")
  32868. },
  32869. ]
  32870. ))
  32871. characterMakers.push(() => makeCharacter(
  32872. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32873. {
  32874. front: {
  32875. height: math.unit(6, "feet"),
  32876. weight: math.unit(215, "lb"),
  32877. name: "Front",
  32878. image: {
  32879. source: "./media/characters/sapphire-svell/front.svg",
  32880. extra: 495 / 455,
  32881. bottom: 20 / 515
  32882. }
  32883. },
  32884. back: {
  32885. height: math.unit(6, "feet"),
  32886. weight: math.unit(216, "lb"),
  32887. name: "Back",
  32888. image: {
  32889. source: "./media/characters/sapphire-svell/back.svg",
  32890. extra: 497 / 477,
  32891. bottom: 7 / 504
  32892. }
  32893. },
  32894. maw: {
  32895. height: math.unit(1.57, "feet"),
  32896. name: "Maw",
  32897. image: {
  32898. source: "./media/characters/sapphire-svell/maw.svg"
  32899. }
  32900. },
  32901. foot: {
  32902. height: math.unit(1.07, "feet"),
  32903. name: "Foot",
  32904. image: {
  32905. source: "./media/characters/sapphire-svell/foot.svg"
  32906. }
  32907. },
  32908. toering: {
  32909. height: math.unit(1.7, "inch"),
  32910. name: "Toering",
  32911. image: {
  32912. source: "./media/characters/sapphire-svell/toering.svg"
  32913. }
  32914. },
  32915. },
  32916. [
  32917. {
  32918. name: "Normal",
  32919. height: math.unit(300, "feet"),
  32920. default: true
  32921. },
  32922. {
  32923. name: "Augmented",
  32924. height: math.unit(1250, "feet")
  32925. },
  32926. {
  32927. name: "Unleashed",
  32928. height: math.unit(3000, "feet")
  32929. },
  32930. ]
  32931. ))
  32932. characterMakers.push(() => makeCharacter(
  32933. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32934. {
  32935. side: {
  32936. height: math.unit(2 + 3 / 12, "feet"),
  32937. weight: math.unit(110, "lb"),
  32938. name: "Side",
  32939. image: {
  32940. source: "./media/characters/glitch-flux/side.svg",
  32941. extra: 997 / 805,
  32942. bottom: 20 / 1017
  32943. }
  32944. },
  32945. },
  32946. [
  32947. {
  32948. name: "Normal",
  32949. height: math.unit(2 + 3 / 12, "feet"),
  32950. default: true
  32951. },
  32952. ]
  32953. ))
  32954. characterMakers.push(() => makeCharacter(
  32955. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32956. {
  32957. front: {
  32958. height: math.unit(4, "meters"),
  32959. name: "Front",
  32960. image: {
  32961. source: "./media/characters/mid/front.svg",
  32962. extra: 507 / 476,
  32963. bottom: 17 / 524
  32964. }
  32965. },
  32966. back: {
  32967. height: math.unit(4, "meters"),
  32968. name: "Back",
  32969. image: {
  32970. source: "./media/characters/mid/back.svg",
  32971. extra: 519 / 487,
  32972. bottom: 7 / 526
  32973. }
  32974. },
  32975. stuck: {
  32976. height: math.unit(2.2, "meters"),
  32977. name: "Stuck",
  32978. image: {
  32979. source: "./media/characters/mid/stuck.svg",
  32980. extra: 1951 / 1869,
  32981. bottom: 88 / 2039
  32982. }
  32983. }
  32984. },
  32985. [
  32986. {
  32987. name: "Normal",
  32988. height: math.unit(4, "meters"),
  32989. default: true
  32990. },
  32991. {
  32992. name: "Big",
  32993. height: math.unit(10, "meters")
  32994. },
  32995. {
  32996. name: "Macro",
  32997. height: math.unit(800, "meters")
  32998. },
  32999. {
  33000. name: "Megamacro",
  33001. height: math.unit(100, "km")
  33002. },
  33003. {
  33004. name: "Overgrown",
  33005. height: math.unit(1, "parsec")
  33006. },
  33007. ]
  33008. ))
  33009. characterMakers.push(() => makeCharacter(
  33010. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33011. {
  33012. front: {
  33013. height: math.unit(2.5, "meters"),
  33014. weight: math.unit(225, "kg"),
  33015. name: "Front",
  33016. image: {
  33017. source: "./media/characters/iris/front.svg",
  33018. extra: 3348 / 3251,
  33019. bottom: 205 / 3553
  33020. }
  33021. },
  33022. maw: {
  33023. height: math.unit(0.56, "meter"),
  33024. name: "Maw",
  33025. image: {
  33026. source: "./media/characters/iris/maw.svg"
  33027. }
  33028. },
  33029. },
  33030. [
  33031. {
  33032. name: "Mewter cat",
  33033. height: math.unit(1.2, "meters")
  33034. },
  33035. {
  33036. name: "Normal",
  33037. height: math.unit(2.5, "meters"),
  33038. default: true
  33039. },
  33040. {
  33041. name: "Minimacro",
  33042. height: math.unit(18, "feet")
  33043. },
  33044. {
  33045. name: "Macro",
  33046. height: math.unit(140, "feet")
  33047. },
  33048. {
  33049. name: "Macro+",
  33050. height: math.unit(180, "meters")
  33051. },
  33052. {
  33053. name: "Megamacro",
  33054. height: math.unit(2746, "meters")
  33055. },
  33056. ]
  33057. ))
  33058. characterMakers.push(() => makeCharacter(
  33059. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33060. {
  33061. front: {
  33062. height: math.unit(6, "feet"),
  33063. weight: math.unit(135, "lb"),
  33064. name: "Front",
  33065. image: {
  33066. source: "./media/characters/axel/front.svg",
  33067. extra: 908 / 908,
  33068. bottom: 58 / 966
  33069. }
  33070. },
  33071. side: {
  33072. height: math.unit(6, "feet"),
  33073. weight: math.unit(135, "lb"),
  33074. name: "Side",
  33075. image: {
  33076. source: "./media/characters/axel/side.svg",
  33077. extra: 958 / 958,
  33078. bottom: 11 / 969
  33079. }
  33080. },
  33081. back: {
  33082. height: math.unit(6, "feet"),
  33083. weight: math.unit(135, "lb"),
  33084. name: "Back",
  33085. image: {
  33086. source: "./media/characters/axel/back.svg",
  33087. extra: 887 / 887,
  33088. bottom: 34 / 921
  33089. }
  33090. },
  33091. head: {
  33092. height: math.unit(1.07, "feet"),
  33093. name: "Head",
  33094. image: {
  33095. source: "./media/characters/axel/head.svg"
  33096. }
  33097. },
  33098. beak: {
  33099. height: math.unit(1.4, "feet"),
  33100. name: "Beak",
  33101. image: {
  33102. source: "./media/characters/axel/beak.svg"
  33103. }
  33104. },
  33105. beakSide: {
  33106. height: math.unit(1.4, "feet"),
  33107. name: "Beak Side",
  33108. image: {
  33109. source: "./media/characters/axel/beak-side.svg"
  33110. }
  33111. },
  33112. sheath: {
  33113. height: math.unit(0.5, "feet"),
  33114. name: "Sheath",
  33115. image: {
  33116. source: "./media/characters/axel/sheath.svg"
  33117. }
  33118. },
  33119. dick: {
  33120. height: math.unit(0.98, "feet"),
  33121. name: "Dick",
  33122. image: {
  33123. source: "./media/characters/axel/dick.svg"
  33124. }
  33125. },
  33126. },
  33127. [
  33128. {
  33129. name: "Macro",
  33130. height: math.unit(68, "meters"),
  33131. default: true
  33132. },
  33133. ]
  33134. ))
  33135. characterMakers.push(() => makeCharacter(
  33136. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33137. {
  33138. front: {
  33139. height: math.unit(3.5, "meters"),
  33140. weight: math.unit(1200, "kg"),
  33141. name: "Front",
  33142. image: {
  33143. source: "./media/characters/joanna/front.svg",
  33144. extra: 1596 / 1488,
  33145. bottom: 29 / 1625
  33146. }
  33147. },
  33148. back: {
  33149. height: math.unit(3.5, "meters"),
  33150. weight: math.unit(1200, "kg"),
  33151. name: "Back",
  33152. image: {
  33153. source: "./media/characters/joanna/back.svg",
  33154. extra: 1594 / 1495,
  33155. bottom: 26 / 1620
  33156. }
  33157. },
  33158. frontShorts: {
  33159. height: math.unit(3.5, "meters"),
  33160. weight: math.unit(1200, "kg"),
  33161. name: "Front (Shorts)",
  33162. image: {
  33163. source: "./media/characters/joanna/front-shorts.svg",
  33164. extra: 1596 / 1488,
  33165. bottom: 29 / 1625
  33166. }
  33167. },
  33168. frontBiker: {
  33169. height: math.unit(3.5, "meters"),
  33170. weight: math.unit(1200, "kg"),
  33171. name: "Front (Biker)",
  33172. image: {
  33173. source: "./media/characters/joanna/front-biker.svg",
  33174. extra: 1596 / 1488,
  33175. bottom: 29 / 1625
  33176. }
  33177. },
  33178. backBiker: {
  33179. height: math.unit(3.5, "meters"),
  33180. weight: math.unit(1200, "kg"),
  33181. name: "Back (Biker)",
  33182. image: {
  33183. source: "./media/characters/joanna/back-biker.svg",
  33184. extra: 1594 / 1495,
  33185. bottom: 88 / 1682
  33186. }
  33187. },
  33188. bikeLeft: {
  33189. height: math.unit(2.4, "meters"),
  33190. weight: math.unit(1600, "kg"),
  33191. name: "Bike (Left)",
  33192. image: {
  33193. source: "./media/characters/joanna/bike-left.svg",
  33194. extra: 720 / 720,
  33195. bottom: 8 / 728
  33196. }
  33197. },
  33198. bikeRight: {
  33199. height: math.unit(2.4, "meters"),
  33200. weight: math.unit(1600, "kg"),
  33201. name: "Bike (Right)",
  33202. image: {
  33203. source: "./media/characters/joanna/bike-right.svg",
  33204. extra: 720 / 720,
  33205. bottom: 8 / 728
  33206. }
  33207. },
  33208. },
  33209. [
  33210. {
  33211. name: "Incognito",
  33212. height: math.unit(3.5, "meters")
  33213. },
  33214. {
  33215. name: "Casual Big",
  33216. height: math.unit(200, "meters")
  33217. },
  33218. {
  33219. name: "Macro",
  33220. height: math.unit(600, "meters")
  33221. },
  33222. {
  33223. name: "Original",
  33224. height: math.unit(20, "km"),
  33225. default: true
  33226. },
  33227. {
  33228. name: "Giga",
  33229. height: math.unit(400, "km")
  33230. },
  33231. {
  33232. name: "Lounging",
  33233. height: math.unit(1500, "km")
  33234. },
  33235. {
  33236. name: "Planetary",
  33237. height: math.unit(200000, "km")
  33238. },
  33239. ]
  33240. ))
  33241. characterMakers.push(() => makeCharacter(
  33242. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33243. {
  33244. front: {
  33245. height: math.unit(6, "feet"),
  33246. weight: math.unit(150, "lb"),
  33247. name: "Front",
  33248. image: {
  33249. source: "./media/characters/hugo-sigil/front.svg",
  33250. extra: 522 / 500,
  33251. bottom: 2 / 524
  33252. }
  33253. },
  33254. back: {
  33255. height: math.unit(6, "feet"),
  33256. weight: math.unit(150, "lb"),
  33257. name: "Back",
  33258. image: {
  33259. source: "./media/characters/hugo-sigil/back.svg",
  33260. extra: 519 / 495,
  33261. bottom: 5 / 524
  33262. }
  33263. },
  33264. maw: {
  33265. height: math.unit(1.4, "feet"),
  33266. weight: math.unit(150, "lb"),
  33267. name: "Maw",
  33268. image: {
  33269. source: "./media/characters/hugo-sigil/maw.svg"
  33270. }
  33271. },
  33272. feet: {
  33273. height: math.unit(1.56, "feet"),
  33274. weight: math.unit(150, "lb"),
  33275. name: "Feet",
  33276. image: {
  33277. source: "./media/characters/hugo-sigil/feet.svg",
  33278. extra: 177 / 177,
  33279. bottom: 12 / 189
  33280. }
  33281. },
  33282. },
  33283. [
  33284. {
  33285. name: "Normal",
  33286. height: math.unit(6, "feet")
  33287. },
  33288. {
  33289. name: "Macro",
  33290. height: math.unit(200, "feet"),
  33291. default: true
  33292. },
  33293. ]
  33294. ))
  33295. characterMakers.push(() => makeCharacter(
  33296. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33297. {
  33298. front: {
  33299. height: math.unit(6, "feet"),
  33300. weight: math.unit(150, "lb"),
  33301. name: "Front",
  33302. image: {
  33303. source: "./media/characters/peri/front.svg",
  33304. extra: 2354 / 2233,
  33305. bottom: 49 / 2403
  33306. }
  33307. },
  33308. },
  33309. [
  33310. {
  33311. name: "Really Small",
  33312. height: math.unit(1, "nm")
  33313. },
  33314. {
  33315. name: "Micro",
  33316. height: math.unit(4, "inches")
  33317. },
  33318. {
  33319. name: "Normal",
  33320. height: math.unit(7, "inches"),
  33321. default: true
  33322. },
  33323. {
  33324. name: "Macro",
  33325. height: math.unit(400, "feet")
  33326. },
  33327. {
  33328. name: "Megamacro",
  33329. height: math.unit(100, "miles")
  33330. },
  33331. ]
  33332. ))
  33333. characterMakers.push(() => makeCharacter(
  33334. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33335. {
  33336. frontSlim: {
  33337. height: math.unit(7, "feet"),
  33338. name: "Front (Slim)",
  33339. image: {
  33340. source: "./media/characters/issilora/front-slim.svg",
  33341. extra: 529 / 449,
  33342. bottom: 53 / 582
  33343. }
  33344. },
  33345. sideSlim: {
  33346. height: math.unit(7, "feet"),
  33347. name: "Side (Slim)",
  33348. image: {
  33349. source: "./media/characters/issilora/side-slim.svg",
  33350. extra: 570 / 480,
  33351. bottom: 30 / 600
  33352. }
  33353. },
  33354. backSlim: {
  33355. height: math.unit(7, "feet"),
  33356. name: "Back (Slim)",
  33357. image: {
  33358. source: "./media/characters/issilora/back-slim.svg",
  33359. extra: 537 / 455,
  33360. bottom: 46 / 583
  33361. }
  33362. },
  33363. frontBuff: {
  33364. height: math.unit(7, "feet"),
  33365. name: "Front (Buff)",
  33366. image: {
  33367. source: "./media/characters/issilora/front-buff.svg",
  33368. extra: 2310 / 2035,
  33369. bottom: 335 / 2645
  33370. }
  33371. },
  33372. head: {
  33373. height: math.unit(1.94, "feet"),
  33374. name: "Head",
  33375. image: {
  33376. source: "./media/characters/issilora/head.svg"
  33377. }
  33378. },
  33379. },
  33380. [
  33381. {
  33382. name: "Minimum",
  33383. height: math.unit(7, "feet")
  33384. },
  33385. {
  33386. name: "Comfortable",
  33387. height: math.unit(17, "feet")
  33388. },
  33389. {
  33390. name: "Fun Size",
  33391. height: math.unit(47, "feet")
  33392. },
  33393. {
  33394. name: "Natural Macro",
  33395. height: math.unit(137, "feet"),
  33396. default: true
  33397. },
  33398. {
  33399. name: "Maximum Kaiju",
  33400. height: math.unit(397, "feet")
  33401. },
  33402. ]
  33403. ))
  33404. characterMakers.push(() => makeCharacter(
  33405. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33406. {
  33407. front: {
  33408. height: math.unit(50 + 9/12, "feet"),
  33409. weight: math.unit(32.8, "tons"),
  33410. name: "Front",
  33411. image: {
  33412. source: "./media/characters/irb'iiritaahn/front.svg",
  33413. extra: 1878/1826,
  33414. bottom: 326/2204
  33415. }
  33416. },
  33417. back: {
  33418. height: math.unit(50 + 9/12, "feet"),
  33419. weight: math.unit(32.8, "tons"),
  33420. name: "Back",
  33421. image: {
  33422. source: "./media/characters/irb'iiritaahn/back.svg",
  33423. extra: 2052/2018,
  33424. bottom: 152/2204
  33425. }
  33426. },
  33427. head: {
  33428. height: math.unit(12.86, "feet"),
  33429. name: "Head",
  33430. image: {
  33431. source: "./media/characters/irb'iiritaahn/head.svg"
  33432. }
  33433. },
  33434. maw: {
  33435. height: math.unit(9.66, "feet"),
  33436. name: "Maw",
  33437. image: {
  33438. source: "./media/characters/irb'iiritaahn/maw.svg"
  33439. }
  33440. },
  33441. frontDick: {
  33442. height: math.unit(8.78461, "feet"),
  33443. name: "Front Dick",
  33444. image: {
  33445. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33446. }
  33447. },
  33448. rearDick: {
  33449. height: math.unit(8.78461, "feet"),
  33450. name: "Rear Dick",
  33451. image: {
  33452. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33453. }
  33454. },
  33455. rearDickUnfolded: {
  33456. height: math.unit(8.78, "feet"),
  33457. name: "Rear Dick (Unfolded)",
  33458. image: {
  33459. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33460. }
  33461. },
  33462. wings: {
  33463. height: math.unit(43, "feet"),
  33464. name: "Wings",
  33465. image: {
  33466. source: "./media/characters/irb'iiritaahn/wings.svg"
  33467. }
  33468. },
  33469. },
  33470. [
  33471. {
  33472. name: "Macro",
  33473. height: math.unit(50 + 9/12, "feet"),
  33474. default: true
  33475. },
  33476. ]
  33477. ))
  33478. characterMakers.push(() => makeCharacter(
  33479. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33480. {
  33481. front: {
  33482. height: math.unit(205, "cm"),
  33483. weight: math.unit(102, "kg"),
  33484. name: "Front",
  33485. image: {
  33486. source: "./media/characters/irbisgreif/front.svg",
  33487. extra: 785/706,
  33488. bottom: 13/798
  33489. }
  33490. },
  33491. back: {
  33492. height: math.unit(205, "cm"),
  33493. weight: math.unit(102, "kg"),
  33494. name: "Back",
  33495. image: {
  33496. source: "./media/characters/irbisgreif/back.svg",
  33497. extra: 713/701,
  33498. bottom: 26/739
  33499. }
  33500. },
  33501. frontDressed: {
  33502. height: math.unit(216, "cm"),
  33503. weight: math.unit(102, "kg"),
  33504. name: "Front-dressed",
  33505. image: {
  33506. source: "./media/characters/irbisgreif/front-dressed.svg",
  33507. extra: 902/776,
  33508. bottom: 14/916
  33509. }
  33510. },
  33511. sideDressed: {
  33512. height: math.unit(195, "cm"),
  33513. weight: math.unit(102, "kg"),
  33514. name: "Side-dressed",
  33515. image: {
  33516. source: "./media/characters/irbisgreif/side-dressed.svg",
  33517. extra: 788/688,
  33518. bottom: 21/809
  33519. }
  33520. },
  33521. backDressed: {
  33522. height: math.unit(216, "cm"),
  33523. weight: math.unit(102, "kg"),
  33524. name: "Back-dressed",
  33525. image: {
  33526. source: "./media/characters/irbisgreif/back-dressed.svg",
  33527. extra: 901/783,
  33528. bottom: 10/911
  33529. }
  33530. },
  33531. dick: {
  33532. height: math.unit(0.49, "feet"),
  33533. name: "Dick",
  33534. image: {
  33535. source: "./media/characters/irbisgreif/dick.svg"
  33536. }
  33537. },
  33538. wingTop: {
  33539. height: math.unit(1.93 , "feet"),
  33540. name: "Wing-top",
  33541. image: {
  33542. source: "./media/characters/irbisgreif/wing-top.svg"
  33543. }
  33544. },
  33545. wingBottom: {
  33546. height: math.unit(1.93 , "feet"),
  33547. name: "Wing-bottom",
  33548. image: {
  33549. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33550. }
  33551. },
  33552. },
  33553. [
  33554. {
  33555. name: "Normal",
  33556. height: math.unit(216, "cm"),
  33557. default: true
  33558. },
  33559. ]
  33560. ))
  33561. characterMakers.push(() => makeCharacter(
  33562. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33563. {
  33564. front: {
  33565. height: math.unit(6, "feet"),
  33566. weight: math.unit(150, "lb"),
  33567. name: "Front",
  33568. image: {
  33569. source: "./media/characters/pride/front.svg",
  33570. extra: 1299/1230,
  33571. bottom: 18/1317
  33572. }
  33573. },
  33574. },
  33575. [
  33576. {
  33577. name: "Normal",
  33578. height: math.unit(7, "feet")
  33579. },
  33580. {
  33581. name: "Mini-macro",
  33582. height: math.unit(11, "feet")
  33583. },
  33584. {
  33585. name: "Macro",
  33586. height: math.unit(15, "meters"),
  33587. default: true
  33588. },
  33589. {
  33590. name: "Macro+",
  33591. height: math.unit(40, "meters")
  33592. },
  33593. ]
  33594. ))
  33595. characterMakers.push(() => makeCharacter(
  33596. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33597. {
  33598. front: {
  33599. height: math.unit(4 + 2 / 12, "feet"),
  33600. weight: math.unit(95, "lb"),
  33601. name: "Front",
  33602. image: {
  33603. source: "./media/characters/vaelophis-nyx/front.svg",
  33604. extra: 2532/2330,
  33605. bottom: 0/2532
  33606. }
  33607. },
  33608. back: {
  33609. height: math.unit(4 + 2 / 12, "feet"),
  33610. weight: math.unit(95, "lb"),
  33611. name: "Back",
  33612. image: {
  33613. source: "./media/characters/vaelophis-nyx/back.svg",
  33614. extra: 2484/2361,
  33615. bottom: 0/2484
  33616. }
  33617. },
  33618. feralSide: {
  33619. height: math.unit(2 + 1/12, "feet"),
  33620. weight: math.unit(20, "lb"),
  33621. name: "Feral (Side)",
  33622. image: {
  33623. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33624. extra: 1721/1581,
  33625. bottom: 70/1791
  33626. }
  33627. },
  33628. feralLazing: {
  33629. height: math.unit(1.08, "feet"),
  33630. weight: math.unit(20, "lb"),
  33631. name: "Feral (Lazing)",
  33632. image: {
  33633. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33634. extra: 822/822,
  33635. bottom: 248/1070
  33636. }
  33637. },
  33638. ear: {
  33639. height: math.unit(0.416, "feet"),
  33640. name: "Ear",
  33641. image: {
  33642. source: "./media/characters/vaelophis-nyx/ear.svg"
  33643. }
  33644. },
  33645. eye: {
  33646. height: math.unit(0.0748, "feet"),
  33647. name: "Eye",
  33648. image: {
  33649. source: "./media/characters/vaelophis-nyx/eye.svg"
  33650. }
  33651. },
  33652. mouth: {
  33653. height: math.unit(0.378, "feet"),
  33654. name: "Mouth",
  33655. image: {
  33656. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33657. }
  33658. },
  33659. spade: {
  33660. height: math.unit(0.55, "feet"),
  33661. name: "Spade",
  33662. image: {
  33663. source: "./media/characters/vaelophis-nyx/spade.svg"
  33664. }
  33665. },
  33666. },
  33667. [
  33668. {
  33669. name: "Normal",
  33670. height: math.unit(4 + 2/12, "feet"),
  33671. default: true
  33672. },
  33673. ]
  33674. ))
  33675. characterMakers.push(() => makeCharacter(
  33676. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33677. {
  33678. front: {
  33679. height: math.unit(7, "feet"),
  33680. weight: math.unit(231, "lb"),
  33681. name: "Front",
  33682. image: {
  33683. source: "./media/characters/flux/front.svg",
  33684. extra: 919/871,
  33685. bottom: 0/919
  33686. }
  33687. },
  33688. back: {
  33689. height: math.unit(7, "feet"),
  33690. weight: math.unit(231, "lb"),
  33691. name: "Back",
  33692. image: {
  33693. source: "./media/characters/flux/back.svg",
  33694. extra: 1040/992,
  33695. bottom: 0/1040
  33696. }
  33697. },
  33698. frontDressed: {
  33699. height: math.unit(7, "feet"),
  33700. weight: math.unit(231, "lb"),
  33701. name: "Front (Dressed)",
  33702. image: {
  33703. source: "./media/characters/flux/front-dressed.svg",
  33704. extra: 919/871,
  33705. bottom: 0/919
  33706. }
  33707. },
  33708. feralSide: {
  33709. height: math.unit(5, "feet"),
  33710. weight: math.unit(150, "lb"),
  33711. name: "Feral (Side)",
  33712. image: {
  33713. source: "./media/characters/flux/feral-side.svg",
  33714. extra: 598/528,
  33715. bottom: 28/626
  33716. }
  33717. },
  33718. head: {
  33719. height: math.unit(1.585, "feet"),
  33720. name: "Head",
  33721. image: {
  33722. source: "./media/characters/flux/head.svg"
  33723. }
  33724. },
  33725. headSide: {
  33726. height: math.unit(1.74, "feet"),
  33727. name: "Head (Side)",
  33728. image: {
  33729. source: "./media/characters/flux/head-side.svg"
  33730. }
  33731. },
  33732. headSideFire: {
  33733. height: math.unit(1.76, "feet"),
  33734. name: "Head (Side, Fire)",
  33735. image: {
  33736. source: "./media/characters/flux/head-side-fire.svg"
  33737. }
  33738. },
  33739. },
  33740. [
  33741. {
  33742. name: "Normal",
  33743. height: math.unit(7, "feet"),
  33744. default: true
  33745. },
  33746. ]
  33747. ))
  33748. characterMakers.push(() => makeCharacter(
  33749. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33750. {
  33751. front: {
  33752. height: math.unit(9, "feet"),
  33753. weight: math.unit(1012, "lb"),
  33754. name: "Front",
  33755. image: {
  33756. source: "./media/characters/ulfra-lupae/front.svg",
  33757. extra: 1083/1011,
  33758. bottom: 67/1150
  33759. }
  33760. },
  33761. },
  33762. [
  33763. {
  33764. name: "Micro",
  33765. height: math.unit(6, "inches")
  33766. },
  33767. {
  33768. name: "Socializing",
  33769. height: math.unit(6 + 5/12, "feet")
  33770. },
  33771. {
  33772. name: "Normal",
  33773. height: math.unit(9, "feet"),
  33774. default: true
  33775. },
  33776. {
  33777. name: "Macro",
  33778. height: math.unit(150, "feet")
  33779. },
  33780. ]
  33781. ))
  33782. characterMakers.push(() => makeCharacter(
  33783. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33784. {
  33785. front: {
  33786. height: math.unit(5 + 2/12, "feet"),
  33787. weight: math.unit(120, "lb"),
  33788. name: "Front",
  33789. image: {
  33790. source: "./media/characters/timber/front.svg",
  33791. extra: 2814/2705,
  33792. bottom: 181/2995
  33793. }
  33794. },
  33795. },
  33796. [
  33797. {
  33798. name: "Normal",
  33799. height: math.unit(5 + 2/12, "feet"),
  33800. default: true
  33801. },
  33802. ]
  33803. ))
  33804. characterMakers.push(() => makeCharacter(
  33805. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33806. {
  33807. front: {
  33808. height: math.unit(9, "feet"),
  33809. name: "Front",
  33810. image: {
  33811. source: "./media/characters/nicki/front.svg",
  33812. extra: 1240/990,
  33813. bottom: 45/1285
  33814. },
  33815. form: "anthro",
  33816. default: true
  33817. },
  33818. side: {
  33819. height: math.unit(9, "feet"),
  33820. name: "Side",
  33821. image: {
  33822. source: "./media/characters/nicki/side.svg",
  33823. extra: 1047/973,
  33824. bottom: 61/1108
  33825. },
  33826. form: "anthro"
  33827. },
  33828. back: {
  33829. height: math.unit(9, "feet"),
  33830. name: "Back",
  33831. image: {
  33832. source: "./media/characters/nicki/back.svg",
  33833. extra: 1006/965,
  33834. bottom: 39/1045
  33835. },
  33836. form: "anthro"
  33837. },
  33838. taur: {
  33839. height: math.unit(15, "feet"),
  33840. name: "Taur",
  33841. image: {
  33842. source: "./media/characters/nicki/taur.svg",
  33843. extra: 1592/1347,
  33844. bottom: 0/1592
  33845. },
  33846. form: "taur",
  33847. default: true
  33848. },
  33849. },
  33850. [
  33851. {
  33852. name: "Normal",
  33853. height: math.unit(9, "feet"),
  33854. form: "anthro",
  33855. default: true
  33856. },
  33857. {
  33858. name: "Normal",
  33859. height: math.unit(15, "feet"),
  33860. form: "taur",
  33861. default: true
  33862. }
  33863. ],
  33864. {
  33865. "anthro": {
  33866. name: "Anthro",
  33867. default: true
  33868. },
  33869. "taur": {
  33870. name: "Taur"
  33871. }
  33872. }
  33873. ))
  33874. characterMakers.push(() => makeCharacter(
  33875. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33876. {
  33877. front: {
  33878. height: math.unit(7 + 10/12, "feet"),
  33879. weight: math.unit(3.5, "tons"),
  33880. name: "Front",
  33881. image: {
  33882. source: "./media/characters/lee/front.svg",
  33883. extra: 1773/1615,
  33884. bottom: 86/1859
  33885. }
  33886. },
  33887. hand: {
  33888. height: math.unit(1.78, "feet"),
  33889. name: "Hand",
  33890. image: {
  33891. source: "./media/characters/lee/hand.svg"
  33892. }
  33893. },
  33894. maw: {
  33895. height: math.unit(1.18, "feet"),
  33896. name: "Maw",
  33897. image: {
  33898. source: "./media/characters/lee/maw.svg"
  33899. }
  33900. },
  33901. },
  33902. [
  33903. {
  33904. name: "Normal",
  33905. height: math.unit(7 + 10/12, "feet"),
  33906. default: true
  33907. },
  33908. ]
  33909. ))
  33910. characterMakers.push(() => makeCharacter(
  33911. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33912. {
  33913. front: {
  33914. height: math.unit(9, "feet"),
  33915. name: "Front",
  33916. image: {
  33917. source: "./media/characters/guti/front.svg",
  33918. extra: 4551/4355,
  33919. bottom: 123/4674
  33920. }
  33921. },
  33922. tongue: {
  33923. height: math.unit(1, "feet"),
  33924. name: "Tongue",
  33925. image: {
  33926. source: "./media/characters/guti/tongue.svg"
  33927. }
  33928. },
  33929. paw: {
  33930. height: math.unit(1.18, "feet"),
  33931. name: "Paw",
  33932. image: {
  33933. source: "./media/characters/guti/paw.svg"
  33934. }
  33935. },
  33936. },
  33937. [
  33938. {
  33939. name: "Normal",
  33940. height: math.unit(9, "feet"),
  33941. default: true
  33942. },
  33943. ]
  33944. ))
  33945. characterMakers.push(() => makeCharacter(
  33946. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33947. {
  33948. side: {
  33949. height: math.unit(5, "meters"),
  33950. name: "Side",
  33951. image: {
  33952. source: "./media/characters/vesper/side.svg",
  33953. extra: 1605/1518,
  33954. bottom: 0/1605
  33955. }
  33956. },
  33957. },
  33958. [
  33959. {
  33960. name: "Small",
  33961. height: math.unit(5, "meters")
  33962. },
  33963. {
  33964. name: "Sage",
  33965. height: math.unit(100, "meters"),
  33966. default: true
  33967. },
  33968. {
  33969. name: "Fun Size",
  33970. height: math.unit(600, "meters")
  33971. },
  33972. {
  33973. name: "Goddess",
  33974. height: math.unit(20000, "km")
  33975. },
  33976. {
  33977. name: "Maximum",
  33978. height: math.unit(5, "galaxies")
  33979. },
  33980. ]
  33981. ))
  33982. characterMakers.push(() => makeCharacter(
  33983. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33984. {
  33985. front: {
  33986. height: math.unit(6 + 3/12, "feet"),
  33987. weight: math.unit(190, "lb"),
  33988. name: "Front",
  33989. image: {
  33990. source: "./media/characters/gawain/front.svg",
  33991. extra: 2222/2139,
  33992. bottom: 90/2312
  33993. }
  33994. },
  33995. back: {
  33996. height: math.unit(6 + 3/12, "feet"),
  33997. weight: math.unit(190, "lb"),
  33998. name: "Back",
  33999. image: {
  34000. source: "./media/characters/gawain/back.svg",
  34001. extra: 2199/2111,
  34002. bottom: 73/2272
  34003. }
  34004. },
  34005. },
  34006. [
  34007. {
  34008. name: "Normal",
  34009. height: math.unit(6 + 3/12, "feet"),
  34010. default: true
  34011. },
  34012. ]
  34013. ))
  34014. characterMakers.push(() => makeCharacter(
  34015. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34016. {
  34017. side: {
  34018. height: math.unit(3.5, "meters"),
  34019. weight: math.unit(16000, "lb"),
  34020. name: "Side",
  34021. image: {
  34022. source: "./media/characters/dascalti/side.svg",
  34023. extra: 392/273,
  34024. bottom: 47/439
  34025. }
  34026. },
  34027. breath: {
  34028. height: math.unit(7.4, "feet"),
  34029. name: "Breath",
  34030. image: {
  34031. source: "./media/characters/dascalti/breath.svg"
  34032. }
  34033. },
  34034. fed: {
  34035. height: math.unit(3.6, "meters"),
  34036. weight: math.unit(16000, "lb"),
  34037. name: "Fed",
  34038. image: {
  34039. source: "./media/characters/dascalti/fed.svg",
  34040. extra: 1419/820,
  34041. bottom: 95/1514
  34042. }
  34043. },
  34044. },
  34045. [
  34046. {
  34047. name: "Normal",
  34048. height: math.unit(3.5, "meters"),
  34049. default: true
  34050. },
  34051. ]
  34052. ))
  34053. characterMakers.push(() => makeCharacter(
  34054. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34055. {
  34056. front: {
  34057. height: math.unit(3 + 5/12, "feet"),
  34058. name: "Front",
  34059. image: {
  34060. source: "./media/characters/mauve/front.svg",
  34061. extra: 1126/1033,
  34062. bottom: 65/1191
  34063. }
  34064. },
  34065. side: {
  34066. height: math.unit(3 + 5/12, "feet"),
  34067. name: "Side",
  34068. image: {
  34069. source: "./media/characters/mauve/side.svg",
  34070. extra: 1089/1001,
  34071. bottom: 29/1118
  34072. }
  34073. },
  34074. back: {
  34075. height: math.unit(3 + 5/12, "feet"),
  34076. name: "Back",
  34077. image: {
  34078. source: "./media/characters/mauve/back.svg",
  34079. extra: 1173/1053,
  34080. bottom: 109/1282
  34081. }
  34082. },
  34083. },
  34084. [
  34085. {
  34086. name: "Normal",
  34087. height: math.unit(3 + 5/12, "feet"),
  34088. default: true
  34089. },
  34090. ]
  34091. ))
  34092. characterMakers.push(() => makeCharacter(
  34093. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34094. {
  34095. front: {
  34096. height: math.unit(6 + 3/12, "feet"),
  34097. weight: math.unit(430, "lb"),
  34098. name: "Front",
  34099. image: {
  34100. source: "./media/characters/carlos/front.svg",
  34101. extra: 1964/1913,
  34102. bottom: 70/2034
  34103. }
  34104. },
  34105. },
  34106. [
  34107. {
  34108. name: "Normal",
  34109. height: math.unit(6 + 3/12, "feet"),
  34110. default: true
  34111. },
  34112. ]
  34113. ))
  34114. characterMakers.push(() => makeCharacter(
  34115. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34116. {
  34117. back: {
  34118. height: math.unit(5 + 10/12, "feet"),
  34119. weight: math.unit(200, "lb"),
  34120. name: "Back",
  34121. image: {
  34122. source: "./media/characters/jax/back.svg",
  34123. extra: 764/739,
  34124. bottom: 25/789
  34125. }
  34126. },
  34127. },
  34128. [
  34129. {
  34130. name: "Normal",
  34131. height: math.unit(5 + 10/12, "feet"),
  34132. default: true
  34133. },
  34134. ]
  34135. ))
  34136. characterMakers.push(() => makeCharacter(
  34137. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34138. {
  34139. front: {
  34140. height: math.unit(8, "feet"),
  34141. weight: math.unit(250, "lb"),
  34142. name: "Front",
  34143. image: {
  34144. source: "./media/characters/eikthynir/front.svg",
  34145. extra: 1332/1166,
  34146. bottom: 82/1414
  34147. }
  34148. },
  34149. back: {
  34150. height: math.unit(8, "feet"),
  34151. weight: math.unit(250, "lb"),
  34152. name: "Back",
  34153. image: {
  34154. source: "./media/characters/eikthynir/back.svg",
  34155. extra: 1342/1190,
  34156. bottom: 19/1361
  34157. }
  34158. },
  34159. dick: {
  34160. height: math.unit(2.35, "feet"),
  34161. name: "Dick",
  34162. image: {
  34163. source: "./media/characters/eikthynir/dick.svg"
  34164. }
  34165. },
  34166. },
  34167. [
  34168. {
  34169. name: "Normal",
  34170. height: math.unit(8, "feet"),
  34171. default: true
  34172. },
  34173. ]
  34174. ))
  34175. characterMakers.push(() => makeCharacter(
  34176. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34177. {
  34178. front: {
  34179. height: math.unit(99, "meters"),
  34180. weight: math.unit(13000, "tons"),
  34181. name: "Front",
  34182. image: {
  34183. source: "./media/characters/zlmos/front.svg",
  34184. extra: 2202/1992,
  34185. bottom: 315/2517
  34186. }
  34187. },
  34188. },
  34189. [
  34190. {
  34191. name: "Macro",
  34192. height: math.unit(99, "meters"),
  34193. default: true
  34194. },
  34195. ]
  34196. ))
  34197. characterMakers.push(() => makeCharacter(
  34198. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34199. {
  34200. front: {
  34201. height: math.unit(6 + 5/12, "feet"),
  34202. name: "Front",
  34203. image: {
  34204. source: "./media/characters/purri/front.svg",
  34205. extra: 1698/1610,
  34206. bottom: 32/1730
  34207. }
  34208. },
  34209. frontAlt: {
  34210. height: math.unit(6 + 5/12, "feet"),
  34211. name: "Front (Alt)",
  34212. image: {
  34213. source: "./media/characters/purri/front-alt.svg",
  34214. extra: 450/420,
  34215. bottom: 26/476
  34216. }
  34217. },
  34218. boots: {
  34219. height: math.unit(5.5, "feet"),
  34220. name: "Boots",
  34221. image: {
  34222. source: "./media/characters/purri/boots.svg",
  34223. extra: 905/853,
  34224. bottom: 18/923
  34225. },
  34226. extraAttributes: {
  34227. "shoeSize": {
  34228. name: "Shoe Size",
  34229. power: 1,
  34230. type: "length",
  34231. base: math.unit(12, "ShoeSizeMensUS")
  34232. },
  34233. "platformHeight": {
  34234. name: "Platform Height",
  34235. power: 1,
  34236. type: "length",
  34237. base: math.unit(2, "inches")
  34238. },
  34239. }
  34240. },
  34241. lying: {
  34242. height: math.unit(2, "feet"),
  34243. name: "Lying",
  34244. image: {
  34245. source: "./media/characters/purri/lying.svg",
  34246. extra: 940/843,
  34247. bottom: 146/1086
  34248. }
  34249. },
  34250. devious: {
  34251. height: math.unit(1.77, "feet"),
  34252. name: "Devious",
  34253. image: {
  34254. source: "./media/characters/purri/devious.svg",
  34255. extra: 1440/1155,
  34256. bottom: 147/1587
  34257. }
  34258. },
  34259. bean: {
  34260. height: math.unit(1.94, "feet"),
  34261. name: "Bean",
  34262. image: {
  34263. source: "./media/characters/purri/bean.svg"
  34264. }
  34265. },
  34266. },
  34267. [
  34268. {
  34269. name: "Micro",
  34270. height: math.unit(1, "mm")
  34271. },
  34272. {
  34273. name: "Normal",
  34274. height: math.unit(6 + 5/12, "feet"),
  34275. default: true
  34276. },
  34277. {
  34278. name: "Macro :3c",
  34279. height: math.unit(2, "miles")
  34280. },
  34281. ]
  34282. ))
  34283. characterMakers.push(() => makeCharacter(
  34284. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34285. {
  34286. front: {
  34287. height: math.unit(6 + 2/12, "feet"),
  34288. weight: math.unit(250, "lb"),
  34289. name: "Front",
  34290. image: {
  34291. source: "./media/characters/moonlight/front.svg",
  34292. extra: 1044/908,
  34293. bottom: 56/1100
  34294. }
  34295. },
  34296. feral: {
  34297. height: math.unit(3 + 1/12, "feet"),
  34298. weight: math.unit(50, "kg"),
  34299. name: "Feral",
  34300. image: {
  34301. source: "./media/characters/moonlight/feral.svg",
  34302. extra: 3705/2791,
  34303. bottom: 145/3850
  34304. }
  34305. },
  34306. paw: {
  34307. height: math.unit(1, "feet"),
  34308. name: "Paw",
  34309. image: {
  34310. source: "./media/characters/moonlight/paw.svg"
  34311. }
  34312. },
  34313. paws: {
  34314. height: math.unit(0.98, "feet"),
  34315. name: "Paws",
  34316. image: {
  34317. source: "./media/characters/moonlight/paws.svg",
  34318. extra: 939/939,
  34319. bottom: 50/989
  34320. }
  34321. },
  34322. mouth: {
  34323. height: math.unit(0.48, "feet"),
  34324. name: "Mouth",
  34325. image: {
  34326. source: "./media/characters/moonlight/mouth.svg"
  34327. }
  34328. },
  34329. dick: {
  34330. height: math.unit(1.46, "feet"),
  34331. name: "Dick",
  34332. image: {
  34333. source: "./media/characters/moonlight/dick.svg"
  34334. }
  34335. },
  34336. },
  34337. [
  34338. {
  34339. name: "Normal",
  34340. height: math.unit(6 + 2/12, "feet"),
  34341. default: true
  34342. },
  34343. {
  34344. name: "Macro",
  34345. height: math.unit(300, "feet")
  34346. },
  34347. {
  34348. name: "Macro+",
  34349. height: math.unit(1, "mile")
  34350. },
  34351. {
  34352. name: "Mt. Moon",
  34353. height: math.unit(5, "miles")
  34354. },
  34355. {
  34356. name: "Megamacro",
  34357. height: math.unit(15, "miles")
  34358. },
  34359. ]
  34360. ))
  34361. characterMakers.push(() => makeCharacter(
  34362. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34363. {
  34364. back: {
  34365. height: math.unit(6, "feet"),
  34366. weight: math.unit(150, "lb"),
  34367. name: "Back",
  34368. image: {
  34369. source: "./media/characters/sylen/back.svg",
  34370. extra: 1335/1273,
  34371. bottom: 107/1442
  34372. }
  34373. },
  34374. },
  34375. [
  34376. {
  34377. name: "Normal",
  34378. height: math.unit(5 + 5/12, "feet")
  34379. },
  34380. {
  34381. name: "Megamacro",
  34382. height: math.unit(3, "miles"),
  34383. default: true
  34384. },
  34385. ]
  34386. ))
  34387. characterMakers.push(() => makeCharacter(
  34388. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34389. {
  34390. front: {
  34391. height: math.unit(6, "feet"),
  34392. weight: math.unit(190, "lb"),
  34393. name: "Front",
  34394. image: {
  34395. source: "./media/characters/huttser/front.svg",
  34396. extra: 1152/1058,
  34397. bottom: 23/1175
  34398. }
  34399. },
  34400. side: {
  34401. height: math.unit(6, "feet"),
  34402. weight: math.unit(190, "lb"),
  34403. name: "Side",
  34404. image: {
  34405. source: "./media/characters/huttser/side.svg",
  34406. extra: 1174/1065,
  34407. bottom: 18/1192
  34408. }
  34409. },
  34410. back: {
  34411. height: math.unit(6, "feet"),
  34412. weight: math.unit(190, "lb"),
  34413. name: "Back",
  34414. image: {
  34415. source: "./media/characters/huttser/back.svg",
  34416. extra: 1158/1056,
  34417. bottom: 12/1170
  34418. }
  34419. },
  34420. },
  34421. [
  34422. ]
  34423. ))
  34424. characterMakers.push(() => makeCharacter(
  34425. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34426. {
  34427. side: {
  34428. height: math.unit(12 + 9/12, "feet"),
  34429. weight: math.unit(15000, "lb"),
  34430. name: "Side",
  34431. image: {
  34432. source: "./media/characters/faan/side.svg",
  34433. extra: 2747/2697,
  34434. bottom: 0/2747
  34435. }
  34436. },
  34437. front: {
  34438. height: math.unit(12 + 9/12, "feet"),
  34439. weight: math.unit(15000, "lb"),
  34440. name: "Front",
  34441. image: {
  34442. source: "./media/characters/faan/front.svg",
  34443. extra: 607/571,
  34444. bottom: 24/631
  34445. }
  34446. },
  34447. head: {
  34448. height: math.unit(2.85, "feet"),
  34449. name: "Head",
  34450. image: {
  34451. source: "./media/characters/faan/head.svg"
  34452. }
  34453. },
  34454. headAlt: {
  34455. height: math.unit(3.13, "feet"),
  34456. name: "Head-alt",
  34457. image: {
  34458. source: "./media/characters/faan/head-alt.svg"
  34459. }
  34460. },
  34461. },
  34462. [
  34463. {
  34464. name: "Normal",
  34465. height: math.unit(12 + 9/12, "feet"),
  34466. default: true
  34467. },
  34468. ]
  34469. ))
  34470. characterMakers.push(() => makeCharacter(
  34471. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34472. {
  34473. front: {
  34474. height: math.unit(6, "feet"),
  34475. weight: math.unit(300, "lb"),
  34476. name: "Front",
  34477. image: {
  34478. source: "./media/characters/tanio/front.svg",
  34479. extra: 711/673,
  34480. bottom: 25/736
  34481. }
  34482. },
  34483. },
  34484. [
  34485. {
  34486. name: "Normal",
  34487. height: math.unit(6, "feet"),
  34488. default: true
  34489. },
  34490. ]
  34491. ))
  34492. characterMakers.push(() => makeCharacter(
  34493. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34494. {
  34495. front: {
  34496. height: math.unit(3, "inches"),
  34497. name: "Front",
  34498. image: {
  34499. source: "./media/characters/noboru/front.svg",
  34500. extra: 1039/932,
  34501. bottom: 18/1057
  34502. }
  34503. },
  34504. },
  34505. [
  34506. {
  34507. name: "Micro",
  34508. height: math.unit(3, "inches"),
  34509. default: true
  34510. },
  34511. ]
  34512. ))
  34513. characterMakers.push(() => makeCharacter(
  34514. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34515. {
  34516. front: {
  34517. height: math.unit(1.85, "meters"),
  34518. weight: math.unit(80, "kg"),
  34519. name: "Front",
  34520. image: {
  34521. source: "./media/characters/daniel-barrett/front.svg",
  34522. extra: 355/337,
  34523. bottom: 9/364
  34524. }
  34525. },
  34526. },
  34527. [
  34528. {
  34529. name: "Pico",
  34530. height: math.unit(0.0433, "mm")
  34531. },
  34532. {
  34533. name: "Nano",
  34534. height: math.unit(1.5, "mm")
  34535. },
  34536. {
  34537. name: "Micro",
  34538. height: math.unit(5.3, "cm"),
  34539. default: true
  34540. },
  34541. {
  34542. name: "Normal",
  34543. height: math.unit(1.85, "meters")
  34544. },
  34545. {
  34546. name: "Macro",
  34547. height: math.unit(64.7, "meters")
  34548. },
  34549. {
  34550. name: "Megamacro",
  34551. height: math.unit(2.26, "km")
  34552. },
  34553. {
  34554. name: "Gigamacro",
  34555. height: math.unit(79, "km")
  34556. },
  34557. {
  34558. name: "Teramacro",
  34559. height: math.unit(2765, "km")
  34560. },
  34561. {
  34562. name: "Petamacro",
  34563. height: math.unit(96678, "km")
  34564. },
  34565. ]
  34566. ))
  34567. characterMakers.push(() => makeCharacter(
  34568. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34569. {
  34570. front: {
  34571. height: math.unit(30, "meters"),
  34572. weight: math.unit(400, "tons"),
  34573. name: "Front",
  34574. image: {
  34575. source: "./media/characters/zeel/front.svg",
  34576. extra: 2599/2599,
  34577. bottom: 226/2825
  34578. }
  34579. },
  34580. },
  34581. [
  34582. {
  34583. name: "Macro",
  34584. height: math.unit(30, "meters"),
  34585. default: true
  34586. },
  34587. ]
  34588. ))
  34589. characterMakers.push(() => makeCharacter(
  34590. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34591. {
  34592. front: {
  34593. height: math.unit(6 + 7/12, "feet"),
  34594. weight: math.unit(210, "lb"),
  34595. name: "Front",
  34596. image: {
  34597. source: "./media/characters/tarn/front.svg",
  34598. extra: 3517/3220,
  34599. bottom: 91/3608
  34600. }
  34601. },
  34602. back: {
  34603. height: math.unit(6 + 7/12, "feet"),
  34604. weight: math.unit(210, "lb"),
  34605. name: "Back",
  34606. image: {
  34607. source: "./media/characters/tarn/back.svg",
  34608. extra: 3566/3241,
  34609. bottom: 34/3600
  34610. }
  34611. },
  34612. dick: {
  34613. height: math.unit(1.65, "feet"),
  34614. name: "Dick",
  34615. image: {
  34616. source: "./media/characters/tarn/dick.svg"
  34617. }
  34618. },
  34619. paw: {
  34620. height: math.unit(1.80, "feet"),
  34621. name: "Paw",
  34622. image: {
  34623. source: "./media/characters/tarn/paw.svg"
  34624. }
  34625. },
  34626. tongue: {
  34627. height: math.unit(0.97, "feet"),
  34628. name: "Tongue",
  34629. image: {
  34630. source: "./media/characters/tarn/tongue.svg"
  34631. }
  34632. },
  34633. },
  34634. [
  34635. {
  34636. name: "Micro",
  34637. height: math.unit(4, "inches")
  34638. },
  34639. {
  34640. name: "Normal",
  34641. height: math.unit(6 + 7/12, "feet"),
  34642. default: true
  34643. },
  34644. {
  34645. name: "Macro",
  34646. height: math.unit(300, "feet")
  34647. },
  34648. ]
  34649. ))
  34650. characterMakers.push(() => makeCharacter(
  34651. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34652. {
  34653. front: {
  34654. height: math.unit(5 + 7/12, "feet"),
  34655. weight: math.unit(80, "kg"),
  34656. name: "Front",
  34657. image: {
  34658. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34659. extra: 3023/2865,
  34660. bottom: 33/3056
  34661. }
  34662. },
  34663. back: {
  34664. height: math.unit(5 + 7/12, "feet"),
  34665. weight: math.unit(80, "kg"),
  34666. name: "Back",
  34667. image: {
  34668. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34669. extra: 3020/2886,
  34670. bottom: 30/3050
  34671. }
  34672. },
  34673. dick: {
  34674. height: math.unit(0.98, "feet"),
  34675. name: "Dick",
  34676. image: {
  34677. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34678. }
  34679. },
  34680. anatomy: {
  34681. height: math.unit(2.86, "feet"),
  34682. name: "Anatomy",
  34683. image: {
  34684. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34685. }
  34686. },
  34687. },
  34688. [
  34689. {
  34690. name: "Really Small",
  34691. height: math.unit(2, "inches")
  34692. },
  34693. {
  34694. name: "Micro",
  34695. height: math.unit(5.583, "inches")
  34696. },
  34697. {
  34698. name: "Normal",
  34699. height: math.unit(5 + 7/12, "feet"),
  34700. default: true
  34701. },
  34702. {
  34703. name: "Macro",
  34704. height: math.unit(67, "feet")
  34705. },
  34706. {
  34707. name: "Megamacro",
  34708. height: math.unit(134, "feet")
  34709. },
  34710. ]
  34711. ))
  34712. characterMakers.push(() => makeCharacter(
  34713. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34714. {
  34715. front: {
  34716. height: math.unit(9, "feet"),
  34717. weight: math.unit(120, "lb"),
  34718. name: "Front",
  34719. image: {
  34720. source: "./media/characters/sally/front.svg",
  34721. extra: 1506/1349,
  34722. bottom: 66/1572
  34723. }
  34724. },
  34725. },
  34726. [
  34727. {
  34728. name: "Normal",
  34729. height: math.unit(9, "feet"),
  34730. default: true
  34731. },
  34732. ]
  34733. ))
  34734. characterMakers.push(() => makeCharacter(
  34735. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34736. {
  34737. front: {
  34738. height: math.unit(8, "feet"),
  34739. weight: math.unit(900, "lb"),
  34740. name: "Front",
  34741. image: {
  34742. source: "./media/characters/owen/front.svg",
  34743. extra: 1761/1657,
  34744. bottom: 74/1835
  34745. }
  34746. },
  34747. side: {
  34748. height: math.unit(8, "feet"),
  34749. weight: math.unit(900, "lb"),
  34750. name: "Side",
  34751. image: {
  34752. source: "./media/characters/owen/side.svg",
  34753. extra: 1797/1734,
  34754. bottom: 30/1827
  34755. }
  34756. },
  34757. back: {
  34758. height: math.unit(8, "feet"),
  34759. weight: math.unit(900, "lb"),
  34760. name: "Back",
  34761. image: {
  34762. source: "./media/characters/owen/back.svg",
  34763. extra: 1796/1706,
  34764. bottom: 59/1855
  34765. }
  34766. },
  34767. maw: {
  34768. height: math.unit(1.76, "feet"),
  34769. name: "Maw",
  34770. image: {
  34771. source: "./media/characters/owen/maw.svg"
  34772. }
  34773. },
  34774. },
  34775. [
  34776. {
  34777. name: "Normal",
  34778. height: math.unit(8, "feet"),
  34779. default: true
  34780. },
  34781. ]
  34782. ))
  34783. characterMakers.push(() => makeCharacter(
  34784. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34785. {
  34786. front: {
  34787. height: math.unit(4, "feet"),
  34788. weight: math.unit(400, "lb"),
  34789. name: "Front",
  34790. image: {
  34791. source: "./media/characters/ryth/front.svg",
  34792. extra: 1920/1748,
  34793. bottom: 42/1962
  34794. }
  34795. },
  34796. back: {
  34797. height: math.unit(4, "feet"),
  34798. weight: math.unit(400, "lb"),
  34799. name: "Back",
  34800. image: {
  34801. source: "./media/characters/ryth/back.svg",
  34802. extra: 1897/1690,
  34803. bottom: 89/1986
  34804. }
  34805. },
  34806. mouth: {
  34807. height: math.unit(1.39, "feet"),
  34808. name: "Mouth",
  34809. image: {
  34810. source: "./media/characters/ryth/mouth.svg"
  34811. }
  34812. },
  34813. tailmaw: {
  34814. height: math.unit(1.23, "feet"),
  34815. name: "Tailmaw",
  34816. image: {
  34817. source: "./media/characters/ryth/tailmaw.svg"
  34818. }
  34819. },
  34820. goia: {
  34821. height: math.unit(4, "meters"),
  34822. weight: math.unit(10800, "lb"),
  34823. name: "Goia",
  34824. image: {
  34825. source: "./media/characters/ryth/goia.svg",
  34826. extra: 745/640,
  34827. bottom: 107/852
  34828. }
  34829. },
  34830. goiaFront: {
  34831. height: math.unit(4, "meters"),
  34832. weight: math.unit(10800, "lb"),
  34833. name: "Goia (Front)",
  34834. image: {
  34835. source: "./media/characters/ryth/goia-front.svg",
  34836. extra: 750/586,
  34837. bottom: 114/864
  34838. }
  34839. },
  34840. goiaMaw: {
  34841. height: math.unit(5.55, "feet"),
  34842. name: "Goia Maw",
  34843. image: {
  34844. source: "./media/characters/ryth/goia-maw.svg"
  34845. }
  34846. },
  34847. goiaForepaw: {
  34848. height: math.unit(3.5, "feet"),
  34849. name: "Goia Forepaw",
  34850. image: {
  34851. source: "./media/characters/ryth/goia-forepaw.svg"
  34852. }
  34853. },
  34854. goiaHindpaw: {
  34855. height: math.unit(5.55, "feet"),
  34856. name: "Goia Hindpaw",
  34857. image: {
  34858. source: "./media/characters/ryth/goia-hindpaw.svg"
  34859. }
  34860. },
  34861. },
  34862. [
  34863. {
  34864. name: "Normal",
  34865. height: math.unit(4, "feet"),
  34866. default: true
  34867. },
  34868. ]
  34869. ))
  34870. characterMakers.push(() => makeCharacter(
  34871. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34872. {
  34873. front: {
  34874. height: math.unit(7, "feet"),
  34875. weight: math.unit(180, "lb"),
  34876. name: "Front",
  34877. image: {
  34878. source: "./media/characters/necrolance/front.svg",
  34879. extra: 1062/947,
  34880. bottom: 41/1103
  34881. }
  34882. },
  34883. back: {
  34884. height: math.unit(7, "feet"),
  34885. weight: math.unit(180, "lb"),
  34886. name: "Back",
  34887. image: {
  34888. source: "./media/characters/necrolance/back.svg",
  34889. extra: 1045/984,
  34890. bottom: 14/1059
  34891. }
  34892. },
  34893. wing: {
  34894. height: math.unit(2.67, "feet"),
  34895. name: "Wing",
  34896. image: {
  34897. source: "./media/characters/necrolance/wing.svg"
  34898. }
  34899. },
  34900. },
  34901. [
  34902. {
  34903. name: "Normal",
  34904. height: math.unit(7, "feet"),
  34905. default: true
  34906. },
  34907. ]
  34908. ))
  34909. characterMakers.push(() => makeCharacter(
  34910. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34911. {
  34912. front: {
  34913. height: math.unit(76, "meters"),
  34914. weight: math.unit(30000, "tons"),
  34915. name: "Front",
  34916. image: {
  34917. source: "./media/characters/tyler/front.svg",
  34918. extra: 1640/1640,
  34919. bottom: 114/1754
  34920. }
  34921. },
  34922. },
  34923. [
  34924. {
  34925. name: "Macro",
  34926. height: math.unit(76, "meters"),
  34927. default: true
  34928. },
  34929. ]
  34930. ))
  34931. characterMakers.push(() => makeCharacter(
  34932. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34933. {
  34934. front: {
  34935. height: math.unit(4 + 11/12, "feet"),
  34936. weight: math.unit(132, "lb"),
  34937. name: "Front",
  34938. image: {
  34939. source: "./media/characters/icey/front.svg",
  34940. extra: 2750/2550,
  34941. bottom: 33/2783
  34942. }
  34943. },
  34944. back: {
  34945. height: math.unit(4 + 11/12, "feet"),
  34946. weight: math.unit(132, "lb"),
  34947. name: "Back",
  34948. image: {
  34949. source: "./media/characters/icey/back.svg",
  34950. extra: 2624/2481,
  34951. bottom: 35/2659
  34952. }
  34953. },
  34954. },
  34955. [
  34956. {
  34957. name: "Normal",
  34958. height: math.unit(4 + 11/12, "feet"),
  34959. default: true
  34960. },
  34961. ]
  34962. ))
  34963. characterMakers.push(() => makeCharacter(
  34964. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34965. {
  34966. front: {
  34967. height: math.unit(100, "feet"),
  34968. weight: math.unit(0, "lb"),
  34969. name: "Front",
  34970. image: {
  34971. source: "./media/characters/smile/front.svg",
  34972. extra: 2983/2912,
  34973. bottom: 162/3145
  34974. }
  34975. },
  34976. back: {
  34977. height: math.unit(100, "feet"),
  34978. weight: math.unit(0, "lb"),
  34979. name: "Back",
  34980. image: {
  34981. source: "./media/characters/smile/back.svg",
  34982. extra: 3143/3031,
  34983. bottom: 91/3234
  34984. }
  34985. },
  34986. head: {
  34987. height: math.unit(26.3, "feet"),
  34988. weight: math.unit(0, "lb"),
  34989. name: "Head",
  34990. image: {
  34991. source: "./media/characters/smile/head.svg"
  34992. }
  34993. },
  34994. collar: {
  34995. height: math.unit(5.3, "feet"),
  34996. weight: math.unit(0, "lb"),
  34997. name: "Collar",
  34998. image: {
  34999. source: "./media/characters/smile/collar.svg"
  35000. }
  35001. },
  35002. },
  35003. [
  35004. {
  35005. name: "Macro",
  35006. height: math.unit(100, "feet"),
  35007. default: true
  35008. },
  35009. ]
  35010. ))
  35011. characterMakers.push(() => makeCharacter(
  35012. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35013. {
  35014. dragon: {
  35015. height: math.unit(26, "feet"),
  35016. weight: math.unit(36, "tons"),
  35017. name: "Dragon",
  35018. image: {
  35019. source: "./media/characters/arimphae/dragon.svg",
  35020. extra: 1574/983,
  35021. bottom: 357/1931
  35022. }
  35023. },
  35024. drake: {
  35025. height: math.unit(9, "feet"),
  35026. weight: math.unit(1.5, "tons"),
  35027. name: "Drake",
  35028. image: {
  35029. source: "./media/characters/arimphae/drake.svg",
  35030. extra: 1120/925,
  35031. bottom: 435/1555
  35032. }
  35033. },
  35034. },
  35035. [
  35036. {
  35037. name: "Small",
  35038. height: math.unit(26*5/9, "feet")
  35039. },
  35040. {
  35041. name: "Normal",
  35042. height: math.unit(26, "feet"),
  35043. default: true
  35044. },
  35045. ]
  35046. ))
  35047. characterMakers.push(() => makeCharacter(
  35048. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35049. {
  35050. front: {
  35051. height: math.unit(8 + 9/12, "feet"),
  35052. name: "Front",
  35053. image: {
  35054. source: "./media/characters/xander/front.svg",
  35055. extra: 1237/974,
  35056. bottom: 94/1331
  35057. }
  35058. },
  35059. },
  35060. [
  35061. {
  35062. name: "Normal",
  35063. height: math.unit(8 + 9/12, "feet"),
  35064. default: true
  35065. },
  35066. {
  35067. name: "Gaze Grabber",
  35068. height: math.unit(13 + 8/12, "feet")
  35069. },
  35070. {
  35071. name: "Jaw Dropper",
  35072. height: math.unit(27, "feet")
  35073. },
  35074. {
  35075. name: "Show Stopper",
  35076. height: math.unit(136, "feet")
  35077. },
  35078. {
  35079. name: "Superstar",
  35080. height: math.unit(1.9e6, "miles")
  35081. },
  35082. ]
  35083. ))
  35084. characterMakers.push(() => makeCharacter(
  35085. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35086. {
  35087. side: {
  35088. height: math.unit(2100, "feet"),
  35089. name: "Side",
  35090. image: {
  35091. source: "./media/characters/osiris/side.svg",
  35092. extra: 1105/939,
  35093. bottom: 167/1272
  35094. }
  35095. },
  35096. },
  35097. [
  35098. {
  35099. name: "Macro",
  35100. height: math.unit(2100, "feet"),
  35101. default: true
  35102. },
  35103. ]
  35104. ))
  35105. characterMakers.push(() => makeCharacter(
  35106. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35107. {
  35108. front: {
  35109. height: math.unit(6 + 8/12, "feet"),
  35110. weight: math.unit(225, "lb"),
  35111. name: "Front",
  35112. image: {
  35113. source: "./media/characters/rhys-londe/front.svg",
  35114. extra: 2258/2141,
  35115. bottom: 188/2446
  35116. }
  35117. },
  35118. back: {
  35119. height: math.unit(6 + 8/12, "feet"),
  35120. weight: math.unit(225, "lb"),
  35121. name: "Back",
  35122. image: {
  35123. source: "./media/characters/rhys-londe/back.svg",
  35124. extra: 2237/2137,
  35125. bottom: 63/2300
  35126. }
  35127. },
  35128. frontNsfw: {
  35129. height: math.unit(6 + 8/12, "feet"),
  35130. weight: math.unit(225, "lb"),
  35131. name: "Front (NSFW)",
  35132. image: {
  35133. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35134. extra: 2258/2141,
  35135. bottom: 188/2446
  35136. }
  35137. },
  35138. backNsfw: {
  35139. height: math.unit(6 + 8/12, "feet"),
  35140. weight: math.unit(225, "lb"),
  35141. name: "Back (NSFW)",
  35142. image: {
  35143. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35144. extra: 2237/2137,
  35145. bottom: 63/2300
  35146. }
  35147. },
  35148. dick: {
  35149. height: math.unit(30, "inches"),
  35150. name: "Dick",
  35151. image: {
  35152. source: "./media/characters/rhys-londe/dick.svg"
  35153. }
  35154. },
  35155. maw: {
  35156. height: math.unit(1.6, "feet"),
  35157. name: "Maw",
  35158. image: {
  35159. source: "./media/characters/rhys-londe/maw.svg"
  35160. }
  35161. },
  35162. },
  35163. [
  35164. {
  35165. name: "Normal",
  35166. height: math.unit(6 + 8/12, "feet"),
  35167. default: true
  35168. },
  35169. ]
  35170. ))
  35171. characterMakers.push(() => makeCharacter(
  35172. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35173. {
  35174. front: {
  35175. height: math.unit(3 + 10/12, "feet"),
  35176. weight: math.unit(90, "lb"),
  35177. name: "Front",
  35178. image: {
  35179. source: "./media/characters/taivas-ensim/front.svg",
  35180. extra: 1327/1216,
  35181. bottom: 96/1423
  35182. }
  35183. },
  35184. back: {
  35185. height: math.unit(3 + 10/12, "feet"),
  35186. weight: math.unit(90, "lb"),
  35187. name: "Back",
  35188. image: {
  35189. source: "./media/characters/taivas-ensim/back.svg",
  35190. extra: 1355/1247,
  35191. bottom: 11/1366
  35192. }
  35193. },
  35194. frontNsfw: {
  35195. height: math.unit(3 + 10/12, "feet"),
  35196. weight: math.unit(90, "lb"),
  35197. name: "Front (NSFW)",
  35198. image: {
  35199. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35200. extra: 1327/1216,
  35201. bottom: 96/1423
  35202. }
  35203. },
  35204. backNsfw: {
  35205. height: math.unit(3 + 10/12, "feet"),
  35206. weight: math.unit(90, "lb"),
  35207. name: "Back (NSFW)",
  35208. image: {
  35209. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35210. extra: 1355/1247,
  35211. bottom: 11/1366
  35212. }
  35213. },
  35214. },
  35215. [
  35216. {
  35217. name: "Normal",
  35218. height: math.unit(3 + 10/12, "feet"),
  35219. default: true
  35220. },
  35221. ]
  35222. ))
  35223. characterMakers.push(() => makeCharacter(
  35224. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35225. {
  35226. front: {
  35227. height: math.unit(9 + 6/12, "feet"),
  35228. weight: math.unit(940, "lb"),
  35229. name: "Front",
  35230. image: {
  35231. source: "./media/characters/byliss/front.svg",
  35232. extra: 1327/1290,
  35233. bottom: 82/1409
  35234. }
  35235. },
  35236. back: {
  35237. height: math.unit(9 + 6/12, "feet"),
  35238. weight: math.unit(940, "lb"),
  35239. name: "Back",
  35240. image: {
  35241. source: "./media/characters/byliss/back.svg",
  35242. extra: 1376/1349,
  35243. bottom: 9/1385
  35244. }
  35245. },
  35246. frontNsfw: {
  35247. height: math.unit(9 + 6/12, "feet"),
  35248. weight: math.unit(940, "lb"),
  35249. name: "Front (NSFW)",
  35250. image: {
  35251. source: "./media/characters/byliss/front-nsfw.svg",
  35252. extra: 1327/1290,
  35253. bottom: 82/1409
  35254. }
  35255. },
  35256. backNsfw: {
  35257. height: math.unit(9 + 6/12, "feet"),
  35258. weight: math.unit(940, "lb"),
  35259. name: "Back (NSFW)",
  35260. image: {
  35261. source: "./media/characters/byliss/back-nsfw.svg",
  35262. extra: 1376/1349,
  35263. bottom: 9/1385
  35264. }
  35265. },
  35266. },
  35267. [
  35268. {
  35269. name: "Normal",
  35270. height: math.unit(9 + 6/12, "feet"),
  35271. default: true
  35272. },
  35273. ]
  35274. ))
  35275. characterMakers.push(() => makeCharacter(
  35276. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35277. {
  35278. front: {
  35279. height: math.unit(5 + 2/12, "feet"),
  35280. weight: math.unit(200, "lb"),
  35281. name: "Front",
  35282. image: {
  35283. source: "./media/characters/noraly/front.svg",
  35284. extra: 4985/4773,
  35285. bottom: 150/5135
  35286. }
  35287. },
  35288. full: {
  35289. height: math.unit(5 + 2/12, "feet"),
  35290. weight: math.unit(164, "lb"),
  35291. name: "Full",
  35292. image: {
  35293. source: "./media/characters/noraly/full.svg",
  35294. extra: 1114/1059,
  35295. bottom: 35/1149
  35296. }
  35297. },
  35298. fuller: {
  35299. height: math.unit(5 + 2/12, "feet"),
  35300. weight: math.unit(230, "lb"),
  35301. name: "Fuller",
  35302. image: {
  35303. source: "./media/characters/noraly/fuller.svg",
  35304. extra: 1114/1059,
  35305. bottom: 35/1149
  35306. }
  35307. },
  35308. fullest: {
  35309. height: math.unit(5 + 2/12, "feet"),
  35310. weight: math.unit(300, "lb"),
  35311. name: "Fullest",
  35312. image: {
  35313. source: "./media/characters/noraly/fullest.svg",
  35314. extra: 1114/1059,
  35315. bottom: 35/1149
  35316. }
  35317. },
  35318. },
  35319. [
  35320. {
  35321. name: "Normal",
  35322. height: math.unit(5 + 2/12, "feet"),
  35323. default: true
  35324. },
  35325. ]
  35326. ))
  35327. characterMakers.push(() => makeCharacter(
  35328. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35329. {
  35330. front: {
  35331. height: math.unit(5 + 2/12, "feet"),
  35332. weight: math.unit(210, "lb"),
  35333. name: "Front",
  35334. image: {
  35335. source: "./media/characters/pera/front.svg",
  35336. extra: 1560/1531,
  35337. bottom: 165/1725
  35338. }
  35339. },
  35340. back: {
  35341. height: math.unit(5 + 2/12, "feet"),
  35342. weight: math.unit(210, "lb"),
  35343. name: "Back",
  35344. image: {
  35345. source: "./media/characters/pera/back.svg",
  35346. extra: 1523/1493,
  35347. bottom: 152/1675
  35348. }
  35349. },
  35350. dick: {
  35351. height: math.unit(2.4, "feet"),
  35352. name: "Dick",
  35353. image: {
  35354. source: "./media/characters/pera/dick.svg"
  35355. }
  35356. },
  35357. },
  35358. [
  35359. {
  35360. name: "Normal",
  35361. height: math.unit(5 + 2/12, "feet"),
  35362. default: true
  35363. },
  35364. ]
  35365. ))
  35366. characterMakers.push(() => makeCharacter(
  35367. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35368. {
  35369. front: {
  35370. height: math.unit(12, "feet"),
  35371. weight: math.unit(3200, "lb"),
  35372. name: "Front",
  35373. image: {
  35374. source: "./media/characters/julian/front.svg",
  35375. extra: 2962/2701,
  35376. bottom: 184/3146
  35377. }
  35378. },
  35379. maw: {
  35380. height: math.unit(5.35, "feet"),
  35381. name: "Maw",
  35382. image: {
  35383. source: "./media/characters/julian/maw.svg"
  35384. }
  35385. },
  35386. paw: {
  35387. height: math.unit(3.07, "feet"),
  35388. name: "Paw",
  35389. image: {
  35390. source: "./media/characters/julian/paw.svg"
  35391. }
  35392. },
  35393. },
  35394. [
  35395. {
  35396. name: "Default",
  35397. height: math.unit(12, "feet"),
  35398. default: true
  35399. },
  35400. {
  35401. name: "Big",
  35402. height: math.unit(50, "feet")
  35403. },
  35404. {
  35405. name: "Really Big",
  35406. height: math.unit(1, "mile")
  35407. },
  35408. {
  35409. name: "Extremely Big",
  35410. height: math.unit(100, "miles")
  35411. },
  35412. {
  35413. name: "Planet Hugger",
  35414. height: math.unit(200, "megameters")
  35415. },
  35416. {
  35417. name: "Unreasonably Big",
  35418. height: math.unit(1e300, "meters")
  35419. },
  35420. ]
  35421. ))
  35422. characterMakers.push(() => makeCharacter(
  35423. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35424. {
  35425. solgooleo: {
  35426. height: math.unit(4, "meters"),
  35427. weight: math.unit(6000*1.5, "kg"),
  35428. volume: math.unit(6000, "liters"),
  35429. name: "Solgooleo",
  35430. image: {
  35431. source: "./media/characters/pi/solgooleo.svg",
  35432. extra: 388/331,
  35433. bottom: 29/417
  35434. }
  35435. },
  35436. },
  35437. [
  35438. {
  35439. name: "Normal",
  35440. height: math.unit(4, "meters"),
  35441. default: true
  35442. },
  35443. ]
  35444. ))
  35445. characterMakers.push(() => makeCharacter(
  35446. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35447. {
  35448. front: {
  35449. height: math.unit(8, "feet"),
  35450. weight: math.unit(4, "tons"),
  35451. name: "Front",
  35452. image: {
  35453. source: "./media/characters/shaun/front.svg",
  35454. extra: 503/495,
  35455. bottom: 20/523
  35456. }
  35457. },
  35458. back: {
  35459. height: math.unit(8, "feet"),
  35460. weight: math.unit(4, "tons"),
  35461. name: "Back",
  35462. image: {
  35463. source: "./media/characters/shaun/back.svg",
  35464. extra: 487/480,
  35465. bottom: 20/507
  35466. }
  35467. },
  35468. },
  35469. [
  35470. {
  35471. name: "Lorg",
  35472. height: math.unit(8, "feet"),
  35473. default: true
  35474. },
  35475. ]
  35476. ))
  35477. characterMakers.push(() => makeCharacter(
  35478. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35479. {
  35480. frontAnthro: {
  35481. height: math.unit(7, "feet"),
  35482. name: "Front",
  35483. image: {
  35484. source: "./media/characters/sini/front-anthro.svg",
  35485. extra: 726/678,
  35486. bottom: 35/761
  35487. },
  35488. form: "anthro",
  35489. default: true
  35490. },
  35491. backAnthro: {
  35492. height: math.unit(7, "feet"),
  35493. name: "Back",
  35494. image: {
  35495. source: "./media/characters/sini/back-anthro.svg",
  35496. extra: 743/701,
  35497. bottom: 12/755
  35498. },
  35499. form: "anthro",
  35500. },
  35501. frontAnthroNsfw: {
  35502. height: math.unit(7, "feet"),
  35503. name: "Front (NSFW)",
  35504. image: {
  35505. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35506. extra: 726/678,
  35507. bottom: 35/761
  35508. },
  35509. form: "anthro"
  35510. },
  35511. backAnthroNsfw: {
  35512. height: math.unit(7, "feet"),
  35513. name: "Back (NSFW)",
  35514. image: {
  35515. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35516. extra: 743/701,
  35517. bottom: 12/755
  35518. },
  35519. form: "anthro",
  35520. },
  35521. mawAnthro: {
  35522. height: math.unit(2.14, "feet"),
  35523. name: "Maw",
  35524. image: {
  35525. source: "./media/characters/sini/maw-anthro.svg"
  35526. },
  35527. form: "anthro"
  35528. },
  35529. dick: {
  35530. height: math.unit(1.45, "feet"),
  35531. name: "Dick",
  35532. image: {
  35533. source: "./media/characters/sini/dick-anthro.svg"
  35534. },
  35535. form: "anthro"
  35536. },
  35537. feral: {
  35538. height: math.unit(16, "feet"),
  35539. name: "Feral",
  35540. image: {
  35541. source: "./media/characters/sini/feral.svg",
  35542. extra: 814/605,
  35543. bottom: 11/825
  35544. },
  35545. form: "feral",
  35546. default: true
  35547. },
  35548. feralNsfw: {
  35549. height: math.unit(16, "feet"),
  35550. name: "Feral (NSFW)",
  35551. image: {
  35552. source: "./media/characters/sini/feral-nsfw.svg",
  35553. extra: 814/605,
  35554. bottom: 11/825
  35555. },
  35556. form: "feral"
  35557. },
  35558. mawFeral: {
  35559. height: math.unit(5.66, "feet"),
  35560. name: "Maw",
  35561. image: {
  35562. source: "./media/characters/sini/maw-feral.svg"
  35563. },
  35564. form: "feral",
  35565. },
  35566. pawFeral: {
  35567. height: math.unit(5.17, "feet"),
  35568. name: "Paw",
  35569. image: {
  35570. source: "./media/characters/sini/paw-feral.svg"
  35571. },
  35572. form: "feral",
  35573. },
  35574. rumpFeral: {
  35575. height: math.unit(13.11, "feet"),
  35576. name: "Rump",
  35577. image: {
  35578. source: "./media/characters/sini/rump-feral.svg"
  35579. },
  35580. form: "feral",
  35581. },
  35582. dickFeral: {
  35583. height: math.unit(1, "feet"),
  35584. name: "Dick",
  35585. image: {
  35586. source: "./media/characters/sini/dick-feral.svg"
  35587. },
  35588. form: "feral",
  35589. },
  35590. eyeFeral: {
  35591. height: math.unit(1.23, "feet"),
  35592. name: "Eye",
  35593. image: {
  35594. source: "./media/characters/sini/eye-feral.svg"
  35595. },
  35596. form: "feral",
  35597. },
  35598. },
  35599. [
  35600. {
  35601. name: "Normal",
  35602. height: math.unit(7, "feet"),
  35603. default: true,
  35604. form: "anthro"
  35605. },
  35606. {
  35607. name: "Normal",
  35608. height: math.unit(16, "feet"),
  35609. default: true,
  35610. form: "feral"
  35611. },
  35612. ],
  35613. {
  35614. "anthro": {
  35615. name: "Anthro",
  35616. default: true
  35617. },
  35618. "feral": {
  35619. name: "Feral",
  35620. }
  35621. }
  35622. ))
  35623. characterMakers.push(() => makeCharacter(
  35624. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35625. {
  35626. side: {
  35627. height: math.unit(47.2, "meters"),
  35628. weight: math.unit(10000, "tons"),
  35629. name: "Side",
  35630. image: {
  35631. source: "./media/characters/raylldo/side.svg",
  35632. extra: 2363/642,
  35633. bottom: 221/2584
  35634. }
  35635. },
  35636. top: {
  35637. height: math.unit(240, "meters"),
  35638. weight: math.unit(10000, "tons"),
  35639. name: "Top",
  35640. image: {
  35641. source: "./media/characters/raylldo/top.svg"
  35642. }
  35643. },
  35644. bottom: {
  35645. height: math.unit(240, "meters"),
  35646. weight: math.unit(10000, "tons"),
  35647. name: "Bottom",
  35648. image: {
  35649. source: "./media/characters/raylldo/bottom.svg"
  35650. }
  35651. },
  35652. head: {
  35653. height: math.unit(38.6, "meters"),
  35654. name: "Head",
  35655. image: {
  35656. source: "./media/characters/raylldo/head.svg",
  35657. extra: 1335/1112,
  35658. bottom: 0/1335
  35659. }
  35660. },
  35661. maw: {
  35662. height: math.unit(16.37, "meters"),
  35663. name: "Maw",
  35664. image: {
  35665. source: "./media/characters/raylldo/maw.svg",
  35666. extra: 883/660,
  35667. bottom: 0/883
  35668. },
  35669. extraAttributes: {
  35670. preyCapacity: {
  35671. name: "Capacity",
  35672. power: 3,
  35673. type: "volume",
  35674. base: math.unit(1000, "people")
  35675. },
  35676. tongueSize: {
  35677. name: "Tongue Size",
  35678. power: 2,
  35679. type: "area",
  35680. base: math.unit(21, "m^2")
  35681. }
  35682. }
  35683. },
  35684. forepaw: {
  35685. height: math.unit(18, "meters"),
  35686. name: "Forepaw",
  35687. image: {
  35688. source: "./media/characters/raylldo/forepaw.svg"
  35689. }
  35690. },
  35691. hindpaw: {
  35692. height: math.unit(23, "meters"),
  35693. name: "Hindpaw",
  35694. image: {
  35695. source: "./media/characters/raylldo/hindpaw.svg"
  35696. }
  35697. },
  35698. genitals: {
  35699. height: math.unit(42, "meters"),
  35700. name: "Genitals",
  35701. image: {
  35702. source: "./media/characters/raylldo/genitals.svg"
  35703. }
  35704. },
  35705. },
  35706. [
  35707. {
  35708. name: "Normal",
  35709. height: math.unit(47.2, "meters"),
  35710. default: true
  35711. },
  35712. ]
  35713. ))
  35714. characterMakers.push(() => makeCharacter(
  35715. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35716. {
  35717. anthroFront: {
  35718. height: math.unit(9, "feet"),
  35719. weight: math.unit(600, "lb"),
  35720. name: "Anthro (Front)",
  35721. image: {
  35722. source: "./media/characters/glint/anthro-front.svg",
  35723. extra: 1097/1018,
  35724. bottom: 28/1125
  35725. }
  35726. },
  35727. anthroBack: {
  35728. height: math.unit(9, "feet"),
  35729. weight: math.unit(600, "lb"),
  35730. name: "Anthro (Back)",
  35731. image: {
  35732. source: "./media/characters/glint/anthro-back.svg",
  35733. extra: 1154/997,
  35734. bottom: 36/1190
  35735. }
  35736. },
  35737. feral: {
  35738. height: math.unit(11, "feet"),
  35739. weight: math.unit(50000, "lb"),
  35740. name: "Feral",
  35741. image: {
  35742. source: "./media/characters/glint/feral.svg",
  35743. extra: 3035/1585,
  35744. bottom: 1169/4204
  35745. }
  35746. },
  35747. dickAnthro: {
  35748. height: math.unit(0.7, "meters"),
  35749. name: "Dick (Anthro)",
  35750. image: {
  35751. source: "./media/characters/glint/dick-anthro.svg"
  35752. }
  35753. },
  35754. dickFeral: {
  35755. height: math.unit(2.65, "meters"),
  35756. name: "Dick (Feral)",
  35757. image: {
  35758. source: "./media/characters/glint/dick-feral.svg"
  35759. }
  35760. },
  35761. slitHidden: {
  35762. height: math.unit(5.85, "meters"),
  35763. name: "Slit (Hidden)",
  35764. image: {
  35765. source: "./media/characters/glint/slit-hidden.svg"
  35766. }
  35767. },
  35768. slitErect: {
  35769. height: math.unit(5.85, "meters"),
  35770. name: "Slit (Erect)",
  35771. image: {
  35772. source: "./media/characters/glint/slit-erect.svg"
  35773. }
  35774. },
  35775. mawAnthro: {
  35776. height: math.unit(0.63, "meters"),
  35777. name: "Maw (Anthro)",
  35778. image: {
  35779. source: "./media/characters/glint/maw.svg"
  35780. }
  35781. },
  35782. mawFeral: {
  35783. height: math.unit(2.89, "meters"),
  35784. name: "Maw (Feral)",
  35785. image: {
  35786. source: "./media/characters/glint/maw.svg"
  35787. }
  35788. },
  35789. },
  35790. [
  35791. {
  35792. name: "Normal",
  35793. height: math.unit(9, "feet"),
  35794. default: true
  35795. },
  35796. ]
  35797. ))
  35798. characterMakers.push(() => makeCharacter(
  35799. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35800. {
  35801. side: {
  35802. height: math.unit(15, "feet"),
  35803. weight: math.unit(5000, "kg"),
  35804. name: "Side",
  35805. image: {
  35806. source: "./media/characters/kairne/side.svg",
  35807. extra: 979/811,
  35808. bottom: 13/992
  35809. }
  35810. },
  35811. front: {
  35812. height: math.unit(15, "feet"),
  35813. weight: math.unit(5000, "kg"),
  35814. name: "Front",
  35815. image: {
  35816. source: "./media/characters/kairne/front.svg",
  35817. extra: 908/814,
  35818. bottom: 26/934
  35819. }
  35820. },
  35821. sideNsfw: {
  35822. height: math.unit(15, "feet"),
  35823. weight: math.unit(5000, "kg"),
  35824. name: "Side (NSFW)",
  35825. image: {
  35826. source: "./media/characters/kairne/side-nsfw.svg",
  35827. extra: 979/811,
  35828. bottom: 13/992
  35829. }
  35830. },
  35831. frontNsfw: {
  35832. height: math.unit(15, "feet"),
  35833. weight: math.unit(5000, "kg"),
  35834. name: "Front (NSFW)",
  35835. image: {
  35836. source: "./media/characters/kairne/front-nsfw.svg",
  35837. extra: 908/814,
  35838. bottom: 26/934
  35839. }
  35840. },
  35841. dickCaged: {
  35842. height: math.unit(0.65, "meters"),
  35843. name: "Dick-caged",
  35844. image: {
  35845. source: "./media/characters/kairne/dick-caged.svg"
  35846. }
  35847. },
  35848. dick: {
  35849. height: math.unit(0.79, "meters"),
  35850. name: "Dick",
  35851. image: {
  35852. source: "./media/characters/kairne/dick.svg"
  35853. }
  35854. },
  35855. genitals: {
  35856. height: math.unit(1.29, "meters"),
  35857. name: "Genitals",
  35858. image: {
  35859. source: "./media/characters/kairne/genitals.svg"
  35860. }
  35861. },
  35862. maw: {
  35863. height: math.unit(1.73, "meters"),
  35864. name: "Maw",
  35865. image: {
  35866. source: "./media/characters/kairne/maw.svg"
  35867. }
  35868. },
  35869. },
  35870. [
  35871. {
  35872. name: "Normal",
  35873. height: math.unit(15, "feet"),
  35874. default: true
  35875. },
  35876. ]
  35877. ))
  35878. characterMakers.push(() => makeCharacter(
  35879. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35880. {
  35881. front: {
  35882. height: math.unit(5 + 8/12, "feet"),
  35883. weight: math.unit(139, "lb"),
  35884. name: "Front",
  35885. image: {
  35886. source: "./media/characters/biscuit-jackal/front.svg",
  35887. extra: 2106/1961,
  35888. bottom: 58/2164
  35889. }
  35890. },
  35891. back: {
  35892. height: math.unit(5 + 8/12, "feet"),
  35893. weight: math.unit(139, "lb"),
  35894. name: "Back",
  35895. image: {
  35896. source: "./media/characters/biscuit-jackal/back.svg",
  35897. extra: 2132/1976,
  35898. bottom: 57/2189
  35899. }
  35900. },
  35901. werejackal: {
  35902. height: math.unit(6 + 3/12, "feet"),
  35903. weight: math.unit(188, "lb"),
  35904. name: "Werejackal",
  35905. image: {
  35906. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35907. extra: 2373/2178,
  35908. bottom: 53/2426
  35909. }
  35910. },
  35911. },
  35912. [
  35913. {
  35914. name: "Normal",
  35915. height: math.unit(5 + 8/12, "feet"),
  35916. default: true
  35917. },
  35918. ]
  35919. ))
  35920. characterMakers.push(() => makeCharacter(
  35921. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35922. {
  35923. front: {
  35924. height: math.unit(140, "cm"),
  35925. weight: math.unit(45, "kg"),
  35926. name: "Front",
  35927. image: {
  35928. source: "./media/characters/tayra-white/front.svg",
  35929. extra: 2229/2192,
  35930. bottom: 75/2304
  35931. }
  35932. },
  35933. },
  35934. [
  35935. {
  35936. name: "Normal",
  35937. height: math.unit(140, "cm"),
  35938. default: true
  35939. },
  35940. ]
  35941. ))
  35942. characterMakers.push(() => makeCharacter(
  35943. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35944. {
  35945. front: {
  35946. height: math.unit(4 + 5/12, "feet"),
  35947. name: "Front",
  35948. image: {
  35949. source: "./media/characters/scoop/front.svg",
  35950. extra: 1257/1136,
  35951. bottom: 69/1326
  35952. }
  35953. },
  35954. back: {
  35955. height: math.unit(4 + 5/12, "feet"),
  35956. name: "Back",
  35957. image: {
  35958. source: "./media/characters/scoop/back.svg",
  35959. extra: 1321/1152,
  35960. bottom: 32/1353
  35961. }
  35962. },
  35963. maw: {
  35964. height: math.unit(0.68, "feet"),
  35965. name: "Maw",
  35966. image: {
  35967. source: "./media/characters/scoop/maw.svg"
  35968. }
  35969. },
  35970. },
  35971. [
  35972. {
  35973. name: "Really Small",
  35974. height: math.unit(1, "mm")
  35975. },
  35976. {
  35977. name: "Micro",
  35978. height: math.unit(1, "inch")
  35979. },
  35980. {
  35981. name: "Normal",
  35982. height: math.unit(4 + 5/12, "feet"),
  35983. default: true
  35984. },
  35985. {
  35986. name: "Macro",
  35987. height: math.unit(200, "feet")
  35988. },
  35989. {
  35990. name: "Megamacro",
  35991. height: math.unit(3240, "feet")
  35992. },
  35993. {
  35994. name: "Teramacro",
  35995. height: math.unit(2500, "miles")
  35996. },
  35997. ]
  35998. ))
  35999. characterMakers.push(() => makeCharacter(
  36000. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36001. {
  36002. front: {
  36003. height: math.unit(15 + 7/12, "feet"),
  36004. weight: math.unit(1150, "tons"),
  36005. name: "Front",
  36006. image: {
  36007. source: "./media/characters/saphinara/front.svg",
  36008. extra: 1837/1643,
  36009. bottom: 84/1921
  36010. },
  36011. form: "normal",
  36012. default: true
  36013. },
  36014. side: {
  36015. height: math.unit(15 + 7/12, "feet"),
  36016. weight: math.unit(1150, "tons"),
  36017. name: "Side",
  36018. image: {
  36019. source: "./media/characters/saphinara/side.svg",
  36020. extra: 605/547,
  36021. bottom: 6/611
  36022. },
  36023. form: "normal"
  36024. },
  36025. back: {
  36026. height: math.unit(15 + 7/12, "feet"),
  36027. weight: math.unit(1150, "tons"),
  36028. name: "Back",
  36029. image: {
  36030. source: "./media/characters/saphinara/back.svg",
  36031. extra: 591/531,
  36032. bottom: 13/604
  36033. },
  36034. form: "normal"
  36035. },
  36036. frontTail: {
  36037. height: math.unit(15 + 7/12, "feet"),
  36038. weight: math.unit(1150, "tons"),
  36039. name: "Front (Full Tail)",
  36040. image: {
  36041. source: "./media/characters/saphinara/front-tail.svg",
  36042. extra: 2256/1630,
  36043. bottom: 261/2517
  36044. },
  36045. form: "normal"
  36046. },
  36047. insides: {
  36048. height: math.unit(11.92, "feet"),
  36049. name: "Insides",
  36050. image: {
  36051. source: "./media/characters/saphinara/insides.svg"
  36052. },
  36053. form: "normal"
  36054. },
  36055. head: {
  36056. height: math.unit(4.17, "feet"),
  36057. name: "Head",
  36058. image: {
  36059. source: "./media/characters/saphinara/head.svg"
  36060. },
  36061. form: "normal"
  36062. },
  36063. tongue: {
  36064. height: math.unit(4.60, "feet"),
  36065. name: "Tongue",
  36066. image: {
  36067. source: "./media/characters/saphinara/tongue.svg"
  36068. },
  36069. form: "normal"
  36070. },
  36071. headEnraged: {
  36072. height: math.unit(5.55, "feet"),
  36073. name: "Head (Enraged)",
  36074. image: {
  36075. source: "./media/characters/saphinara/head-enraged.svg"
  36076. },
  36077. form: "normal"
  36078. },
  36079. wings: {
  36080. height: math.unit(11.95, "feet"),
  36081. name: "Wings",
  36082. image: {
  36083. source: "./media/characters/saphinara/wings.svg"
  36084. },
  36085. form: "normal"
  36086. },
  36087. feathers: {
  36088. height: math.unit(8.92, "feet"),
  36089. name: "Feathers",
  36090. image: {
  36091. source: "./media/characters/saphinara/feathers.svg"
  36092. },
  36093. form: "normal"
  36094. },
  36095. shackles: {
  36096. height: math.unit(2, "feet"),
  36097. name: "Shackles",
  36098. image: {
  36099. source: "./media/characters/saphinara/shackles.svg"
  36100. },
  36101. form: "normal"
  36102. },
  36103. eyes: {
  36104. height: math.unit(1.331, "feet"),
  36105. name: "Eyes",
  36106. image: {
  36107. source: "./media/characters/saphinara/eyes.svg"
  36108. },
  36109. form: "normal"
  36110. },
  36111. eyesEnraged: {
  36112. height: math.unit(1.331, "feet"),
  36113. name: "Eyes (Enraged)",
  36114. image: {
  36115. source: "./media/characters/saphinara/eyes-enraged.svg"
  36116. },
  36117. form: "normal"
  36118. },
  36119. trueFormSide: {
  36120. height: math.unit(200, "feet"),
  36121. weight: math.unit(1e7, "tons"),
  36122. name: "Side",
  36123. image: {
  36124. source: "./media/characters/saphinara/true-form-side.svg",
  36125. extra: 1399/770,
  36126. bottom: 97/1496
  36127. },
  36128. form: "true-form",
  36129. default: true
  36130. },
  36131. trueFormMaw: {
  36132. height: math.unit(71.5, "feet"),
  36133. name: "Maw",
  36134. image: {
  36135. source: "./media/characters/saphinara/true-form-maw.svg",
  36136. extra: 2302/1453,
  36137. bottom: 0/2302
  36138. },
  36139. form: "true-form"
  36140. },
  36141. meowberusSide: {
  36142. height: math.unit(75, "feet"),
  36143. weight: math.unit(180000, "kg"),
  36144. preyCapacity: math.unit(50000, "people"),
  36145. name: "Side",
  36146. image: {
  36147. source: "./media/characters/saphinara/meowberus-side.svg",
  36148. extra: 1400/711,
  36149. bottom: 126/1526
  36150. },
  36151. form: "meowberus",
  36152. extraAttributes: {
  36153. "pawArea": {
  36154. name: "Paw Size",
  36155. power: 2,
  36156. type: "area",
  36157. base: math.unit(35, "m^2")
  36158. }
  36159. }
  36160. },
  36161. },
  36162. [
  36163. {
  36164. name: "Normal",
  36165. height: math.unit(15 + 7/12, "feet"),
  36166. default: true,
  36167. form: "normal"
  36168. },
  36169. {
  36170. name: "Angry",
  36171. height: math.unit(30 + 6/12, "feet"),
  36172. form: "normal"
  36173. },
  36174. {
  36175. name: "Enraged",
  36176. height: math.unit(102 + 1/12, "feet"),
  36177. form: "normal"
  36178. },
  36179. {
  36180. name: "True",
  36181. height: math.unit(200, "feet"),
  36182. default: true,
  36183. form: "true-form"
  36184. },
  36185. {
  36186. name: "Normal",
  36187. height: math.unit(75, "feet"),
  36188. default: true,
  36189. form: "meowberus"
  36190. },
  36191. ],
  36192. {
  36193. "normal": {
  36194. name: "Normal",
  36195. default: true
  36196. },
  36197. "true-form": {
  36198. name: "True Form"
  36199. },
  36200. "meowberus": {
  36201. name: "Meowberus",
  36202. },
  36203. }
  36204. ))
  36205. characterMakers.push(() => makeCharacter(
  36206. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36207. {
  36208. front: {
  36209. height: math.unit(6 + 8/12, "feet"),
  36210. weight: math.unit(300, "lb"),
  36211. name: "Front",
  36212. image: {
  36213. source: "./media/characters/jrain/front.svg",
  36214. extra: 3039/2865,
  36215. bottom: 399/3438
  36216. }
  36217. },
  36218. back: {
  36219. height: math.unit(6 + 8/12, "feet"),
  36220. weight: math.unit(300, "lb"),
  36221. name: "Back",
  36222. image: {
  36223. source: "./media/characters/jrain/back.svg",
  36224. extra: 3089/2938,
  36225. bottom: 172/3261
  36226. }
  36227. },
  36228. head: {
  36229. height: math.unit(2.14, "feet"),
  36230. name: "Head",
  36231. image: {
  36232. source: "./media/characters/jrain/head.svg"
  36233. }
  36234. },
  36235. maw: {
  36236. height: math.unit(1.77, "feet"),
  36237. name: "Maw",
  36238. image: {
  36239. source: "./media/characters/jrain/maw.svg"
  36240. }
  36241. },
  36242. leftHand: {
  36243. height: math.unit(1.1, "feet"),
  36244. name: "Left Hand",
  36245. image: {
  36246. source: "./media/characters/jrain/left-hand.svg"
  36247. }
  36248. },
  36249. rightHand: {
  36250. height: math.unit(1.1, "feet"),
  36251. name: "Right Hand",
  36252. image: {
  36253. source: "./media/characters/jrain/right-hand.svg"
  36254. }
  36255. },
  36256. eye: {
  36257. height: math.unit(0.35, "feet"),
  36258. name: "Eye",
  36259. image: {
  36260. source: "./media/characters/jrain/eye.svg"
  36261. }
  36262. },
  36263. },
  36264. [
  36265. {
  36266. name: "Normal",
  36267. height: math.unit(6 + 8/12, "feet"),
  36268. default: true
  36269. },
  36270. {
  36271. name: "Casually Large",
  36272. height: math.unit(25, "feet")
  36273. },
  36274. {
  36275. name: "Giant",
  36276. height: math.unit(100, "feet")
  36277. },
  36278. {
  36279. name: "Kaiju",
  36280. height: math.unit(300, "feet")
  36281. },
  36282. ]
  36283. ))
  36284. characterMakers.push(() => makeCharacter(
  36285. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36286. {
  36287. dragon: {
  36288. height: math.unit(5, "meters"),
  36289. name: "Dragon",
  36290. image: {
  36291. source: "./media/characters/sabrina/dragon.svg",
  36292. extra: 3670 / 2365,
  36293. bottom: 333 / 4003
  36294. }
  36295. },
  36296. gryphon: {
  36297. height: math.unit(3, "meters"),
  36298. name: "Gryphon",
  36299. image: {
  36300. source: "./media/characters/sabrina/gryphon.svg",
  36301. extra: 1576 / 945,
  36302. bottom: 71 / 1647
  36303. }
  36304. },
  36305. snake: {
  36306. height: math.unit(12, "meters"),
  36307. name: "Snake",
  36308. image: {
  36309. source: "./media/characters/sabrina/snake.svg",
  36310. extra: 1758 / 1320,
  36311. bottom: 186 / 1944
  36312. }
  36313. },
  36314. collar: {
  36315. height: math.unit(1.86, "meters"),
  36316. name: "Collar",
  36317. image: {
  36318. source: "./media/characters/sabrina/collar.svg"
  36319. }
  36320. },
  36321. eye: {
  36322. height: math.unit(0.53, "meters"),
  36323. name: "Eye",
  36324. image: {
  36325. source: "./media/characters/sabrina/eye.svg"
  36326. }
  36327. },
  36328. foot: {
  36329. height: math.unit(1.86, "meters"),
  36330. name: "Foot",
  36331. image: {
  36332. source: "./media/characters/sabrina/foot.svg"
  36333. }
  36334. },
  36335. hand: {
  36336. height: math.unit(1.32, "meters"),
  36337. name: "Hand",
  36338. image: {
  36339. source: "./media/characters/sabrina/hand.svg"
  36340. }
  36341. },
  36342. head: {
  36343. height: math.unit(2.44, "meters"),
  36344. name: "Head",
  36345. image: {
  36346. source: "./media/characters/sabrina/head.svg"
  36347. }
  36348. },
  36349. headAngry: {
  36350. height: math.unit(2.44, "meters"),
  36351. name: "Head (Angry))",
  36352. image: {
  36353. source: "./media/characters/sabrina/head-angry.svg"
  36354. }
  36355. },
  36356. maw: {
  36357. height: math.unit(1.65, "meters"),
  36358. name: "Maw",
  36359. image: {
  36360. source: "./media/characters/sabrina/maw.svg"
  36361. }
  36362. },
  36363. spikes: {
  36364. height: math.unit(1.69, "meters"),
  36365. name: "Spikes",
  36366. image: {
  36367. source: "./media/characters/sabrina/spikes.svg"
  36368. }
  36369. },
  36370. stomach: {
  36371. height: math.unit(1.15, "meters"),
  36372. name: "Stomach",
  36373. image: {
  36374. source: "./media/characters/sabrina/stomach.svg"
  36375. }
  36376. },
  36377. tongue: {
  36378. height: math.unit(1.27, "meters"),
  36379. name: "Tongue",
  36380. image: {
  36381. source: "./media/characters/sabrina/tongue.svg"
  36382. }
  36383. },
  36384. wingDorsal: {
  36385. height: math.unit(4.85, "meters"),
  36386. name: "Wing (Dorsal)",
  36387. image: {
  36388. source: "./media/characters/sabrina/wing-dorsal.svg"
  36389. }
  36390. },
  36391. wingVentral: {
  36392. height: math.unit(4.85, "meters"),
  36393. name: "Wing (Ventral)",
  36394. image: {
  36395. source: "./media/characters/sabrina/wing-ventral.svg"
  36396. }
  36397. },
  36398. },
  36399. [
  36400. {
  36401. name: "Normal",
  36402. height: math.unit(5, "meters"),
  36403. default: true
  36404. },
  36405. ]
  36406. ))
  36407. characterMakers.push(() => makeCharacter(
  36408. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36409. {
  36410. frontMaid: {
  36411. height: math.unit(5 + 5/12, "feet"),
  36412. weight: math.unit(130, "lb"),
  36413. name: "Front (Maid)",
  36414. image: {
  36415. source: "./media/characters/midnight-tales/front-maid.svg",
  36416. extra: 489/454,
  36417. bottom: 61/550
  36418. }
  36419. },
  36420. frontFormal: {
  36421. height: math.unit(5 + 5/12, "feet"),
  36422. weight: math.unit(130, "lb"),
  36423. name: "Front (Formal)",
  36424. image: {
  36425. source: "./media/characters/midnight-tales/front-formal.svg",
  36426. extra: 489/454,
  36427. bottom: 61/550
  36428. }
  36429. },
  36430. back: {
  36431. height: math.unit(5 + 5/12, "feet"),
  36432. weight: math.unit(130, "lb"),
  36433. name: "Back",
  36434. image: {
  36435. source: "./media/characters/midnight-tales/back.svg",
  36436. extra: 498/456,
  36437. bottom: 33/531
  36438. }
  36439. },
  36440. frontBeast: {
  36441. height: math.unit(40, "feet"),
  36442. weight: math.unit(64000, "lb"),
  36443. name: "Front (Beast)",
  36444. image: {
  36445. source: "./media/characters/midnight-tales/front-beast.svg",
  36446. extra: 927/860,
  36447. bottom: 53/980
  36448. }
  36449. },
  36450. backBeast: {
  36451. height: math.unit(40, "feet"),
  36452. weight: math.unit(64000, "lb"),
  36453. name: "Back (Beast)",
  36454. image: {
  36455. source: "./media/characters/midnight-tales/back-beast.svg",
  36456. extra: 929/855,
  36457. bottom: 16/945
  36458. }
  36459. },
  36460. footBeast: {
  36461. height: math.unit(6.7, "feet"),
  36462. name: "Foot (Beast)",
  36463. image: {
  36464. source: "./media/characters/midnight-tales/foot-beast.svg"
  36465. }
  36466. },
  36467. headBeast: {
  36468. height: math.unit(8, "feet"),
  36469. name: "Head (Beast)",
  36470. image: {
  36471. source: "./media/characters/midnight-tales/head-beast.svg"
  36472. }
  36473. },
  36474. },
  36475. [
  36476. {
  36477. name: "Normal",
  36478. height: math.unit(5 + 5 / 12, "feet"),
  36479. default: true
  36480. },
  36481. {
  36482. name: "Macro",
  36483. height: math.unit(25, "feet")
  36484. },
  36485. ]
  36486. ))
  36487. characterMakers.push(() => makeCharacter(
  36488. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36489. {
  36490. front: {
  36491. height: math.unit(5 + 10/12, "feet"),
  36492. name: "Front",
  36493. image: {
  36494. source: "./media/characters/argon/front.svg",
  36495. extra: 2009/1935,
  36496. bottom: 118/2127
  36497. }
  36498. },
  36499. back: {
  36500. height: math.unit(5 + 10/12, "feet"),
  36501. name: "Back",
  36502. image: {
  36503. source: "./media/characters/argon/back.svg",
  36504. extra: 2047/1992,
  36505. bottom: 20/2067
  36506. }
  36507. },
  36508. frontDressed: {
  36509. height: math.unit(5 + 10/12, "feet"),
  36510. name: "Front (Dressed)",
  36511. image: {
  36512. source: "./media/characters/argon/front-dressed.svg",
  36513. extra: 2009/1935,
  36514. bottom: 118/2127
  36515. }
  36516. },
  36517. },
  36518. [
  36519. {
  36520. name: "Normal",
  36521. height: math.unit(5 + 10/12, "feet"),
  36522. default: true
  36523. },
  36524. ]
  36525. ))
  36526. characterMakers.push(() => makeCharacter(
  36527. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36528. {
  36529. front: {
  36530. height: math.unit(8 + 6/12, "feet"),
  36531. weight: math.unit(1150, "lb"),
  36532. name: "Front",
  36533. image: {
  36534. source: "./media/characters/kichi/front.svg",
  36535. extra: 1267/1164,
  36536. bottom: 61/1328
  36537. }
  36538. },
  36539. back: {
  36540. height: math.unit(8 + 6/12, "feet"),
  36541. weight: math.unit(1150, "lb"),
  36542. name: "Back",
  36543. image: {
  36544. source: "./media/characters/kichi/back.svg",
  36545. extra: 1273/1166,
  36546. bottom: 33/1306
  36547. }
  36548. },
  36549. },
  36550. [
  36551. {
  36552. name: "Normal",
  36553. height: math.unit(8 + 6/12, "feet"),
  36554. default: true
  36555. },
  36556. ]
  36557. ))
  36558. characterMakers.push(() => makeCharacter(
  36559. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36560. {
  36561. front: {
  36562. height: math.unit(6, "feet"),
  36563. weight: math.unit(210, "lb"),
  36564. name: "Front",
  36565. image: {
  36566. source: "./media/characters/manetel-greyscale/front.svg",
  36567. extra: 350/312,
  36568. bottom: 8/358
  36569. }
  36570. },
  36571. },
  36572. [
  36573. {
  36574. name: "Micro",
  36575. height: math.unit(2, "inches")
  36576. },
  36577. {
  36578. name: "Normal",
  36579. height: math.unit(6, "feet"),
  36580. default: true
  36581. },
  36582. {
  36583. name: "Minimacro",
  36584. height: math.unit(17, "feet")
  36585. },
  36586. {
  36587. name: "Macro",
  36588. height: math.unit(117, "feet")
  36589. },
  36590. ]
  36591. ))
  36592. characterMakers.push(() => makeCharacter(
  36593. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36594. {
  36595. side: {
  36596. height: math.unit(5 + 1/12, "feet"),
  36597. weight: math.unit(418, "lb"),
  36598. name: "Side",
  36599. image: {
  36600. source: "./media/characters/softpurr/side.svg",
  36601. extra: 1993/1945,
  36602. bottom: 134/2127
  36603. }
  36604. },
  36605. front: {
  36606. height: math.unit(5 + 1/12, "feet"),
  36607. weight: math.unit(418, "lb"),
  36608. name: "Front",
  36609. image: {
  36610. source: "./media/characters/softpurr/front.svg",
  36611. extra: 1950/1856,
  36612. bottom: 174/2124
  36613. }
  36614. },
  36615. paw: {
  36616. height: math.unit(1, "feet"),
  36617. name: "Paw",
  36618. image: {
  36619. source: "./media/characters/softpurr/paw.svg"
  36620. }
  36621. },
  36622. },
  36623. [
  36624. {
  36625. name: "Normal",
  36626. height: math.unit(5 + 1/12, "feet"),
  36627. default: true
  36628. },
  36629. ]
  36630. ))
  36631. characterMakers.push(() => makeCharacter(
  36632. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36633. {
  36634. front: {
  36635. height: math.unit(260, "meters"),
  36636. name: "Front",
  36637. image: {
  36638. source: "./media/characters/anahita/front.svg",
  36639. extra: 665/635,
  36640. bottom: 89/754
  36641. }
  36642. },
  36643. },
  36644. [
  36645. {
  36646. name: "Macro",
  36647. height: math.unit(260, "meters"),
  36648. default: true
  36649. },
  36650. ]
  36651. ))
  36652. characterMakers.push(() => makeCharacter(
  36653. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36654. {
  36655. front: {
  36656. height: math.unit(4 + 10/12, "feet"),
  36657. weight: math.unit(160, "lb"),
  36658. name: "Front",
  36659. image: {
  36660. source: "./media/characters/chip-mouse/front.svg",
  36661. extra: 3528/3408,
  36662. bottom: 0/3528
  36663. }
  36664. },
  36665. frontNsfw: {
  36666. height: math.unit(4 + 10/12, "feet"),
  36667. weight: math.unit(160, "lb"),
  36668. name: "Front (NSFW)",
  36669. image: {
  36670. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36671. extra: 3528/3408,
  36672. bottom: 0/3528
  36673. }
  36674. },
  36675. },
  36676. [
  36677. {
  36678. name: "Normal",
  36679. height: math.unit(4 + 10/12, "feet"),
  36680. default: true
  36681. },
  36682. ]
  36683. ))
  36684. characterMakers.push(() => makeCharacter(
  36685. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36686. {
  36687. side: {
  36688. height: math.unit(10, "feet"),
  36689. weight: math.unit(14000, "lb"),
  36690. name: "Side",
  36691. image: {
  36692. source: "./media/characters/kremm/side.svg",
  36693. extra: 1390/1053,
  36694. bottom: 90/1480
  36695. }
  36696. },
  36697. gut: {
  36698. height: math.unit(5.8, "feet"),
  36699. name: "Gut",
  36700. image: {
  36701. source: "./media/characters/kremm/gut.svg"
  36702. }
  36703. },
  36704. ass: {
  36705. height: math.unit(6.1, "feet"),
  36706. name: "Ass",
  36707. image: {
  36708. source: "./media/characters/kremm/ass.svg"
  36709. }
  36710. },
  36711. jaws: {
  36712. height: math.unit(2.2, "feet"),
  36713. name: "Jaws",
  36714. image: {
  36715. source: "./media/characters/kremm/jaws.svg"
  36716. }
  36717. },
  36718. dick: {
  36719. height: math.unit(4.26, "feet"),
  36720. name: "Dick",
  36721. image: {
  36722. source: "./media/characters/kremm/dick.svg"
  36723. }
  36724. },
  36725. },
  36726. [
  36727. {
  36728. name: "Normal",
  36729. height: math.unit(10, "feet"),
  36730. default: true
  36731. },
  36732. ]
  36733. ))
  36734. characterMakers.push(() => makeCharacter(
  36735. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36736. {
  36737. front: {
  36738. height: math.unit(30, "stories"),
  36739. name: "Front",
  36740. image: {
  36741. source: "./media/characters/kai/front.svg",
  36742. extra: 1892/1718,
  36743. bottom: 162/2054
  36744. }
  36745. },
  36746. },
  36747. [
  36748. {
  36749. name: "Macro",
  36750. height: math.unit(30, "stories"),
  36751. default: true
  36752. },
  36753. ]
  36754. ))
  36755. characterMakers.push(() => makeCharacter(
  36756. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36757. {
  36758. front: {
  36759. height: math.unit(6 + 4/12, "feet"),
  36760. weight: math.unit(145, "lb"),
  36761. name: "Front",
  36762. image: {
  36763. source: "./media/characters/sykes/front.svg",
  36764. extra: 1321 / 1187,
  36765. bottom: 66 / 1387
  36766. }
  36767. },
  36768. back: {
  36769. height: math.unit(6 + 4/12, "feet"),
  36770. weight: math.unit(145, "lb"),
  36771. name: "Back",
  36772. image: {
  36773. source: "./media/characters/sykes/back.svg",
  36774. extra: 1326/1181,
  36775. bottom: 31/1357
  36776. }
  36777. },
  36778. traditionalOutfit: {
  36779. height: math.unit(6 + 4/12, "feet"),
  36780. weight: math.unit(145, "lb"),
  36781. name: "Traditional Outfit",
  36782. image: {
  36783. source: "./media/characters/sykes/traditional-outfit.svg",
  36784. extra: 1321 / 1187,
  36785. bottom: 66 / 1387
  36786. }
  36787. },
  36788. adventureOutfit: {
  36789. height: math.unit(6 + 4/12, "feet"),
  36790. weight: math.unit(145, "lb"),
  36791. name: "Adventure Outfit",
  36792. image: {
  36793. source: "./media/characters/sykes/adventure-outfit.svg",
  36794. extra: 1321 / 1187,
  36795. bottom: 66 / 1387
  36796. }
  36797. },
  36798. handLeft: {
  36799. height: math.unit(0.9, "feet"),
  36800. name: "Hand (Left)",
  36801. image: {
  36802. source: "./media/characters/sykes/hand-left.svg"
  36803. }
  36804. },
  36805. handRight: {
  36806. height: math.unit(0.839, "feet"),
  36807. name: "Hand (Right)",
  36808. image: {
  36809. source: "./media/characters/sykes/hand-right.svg"
  36810. }
  36811. },
  36812. leftFoot: {
  36813. height: math.unit(1.2, "feet"),
  36814. name: "Foot (Left)",
  36815. image: {
  36816. source: "./media/characters/sykes/foot-left.svg"
  36817. }
  36818. },
  36819. rightFoot: {
  36820. height: math.unit(1.2, "feet"),
  36821. name: "Foot (Right)",
  36822. image: {
  36823. source: "./media/characters/sykes/foot-right.svg"
  36824. }
  36825. },
  36826. maw: {
  36827. height: math.unit(1.93, "feet"),
  36828. name: "Maw",
  36829. image: {
  36830. source: "./media/characters/sykes/maw.svg"
  36831. }
  36832. },
  36833. teeth: {
  36834. height: math.unit(0.51, "feet"),
  36835. name: "Teeth",
  36836. image: {
  36837. source: "./media/characters/sykes/teeth.svg"
  36838. }
  36839. },
  36840. tongue: {
  36841. height: math.unit(2.13, "feet"),
  36842. name: "Tongue",
  36843. image: {
  36844. source: "./media/characters/sykes/tongue.svg"
  36845. }
  36846. },
  36847. uvula: {
  36848. height: math.unit(0.16, "feet"),
  36849. name: "Uvula",
  36850. image: {
  36851. source: "./media/characters/sykes/uvula.svg"
  36852. }
  36853. },
  36854. collar: {
  36855. height: math.unit(0.287, "feet"),
  36856. name: "Collar",
  36857. image: {
  36858. source: "./media/characters/sykes/collar.svg"
  36859. }
  36860. },
  36861. tail: {
  36862. height: math.unit(3.8, "feet"),
  36863. name: "Tail",
  36864. image: {
  36865. source: "./media/characters/sykes/tail.svg"
  36866. }
  36867. },
  36868. },
  36869. [
  36870. {
  36871. name: "Shrunken",
  36872. height: math.unit(5, "inches")
  36873. },
  36874. {
  36875. name: "Normal",
  36876. height: math.unit(6 + 4 / 12, "feet"),
  36877. default: true
  36878. },
  36879. {
  36880. name: "Big",
  36881. height: math.unit(15, "feet")
  36882. },
  36883. ]
  36884. ))
  36885. characterMakers.push(() => makeCharacter(
  36886. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36887. {
  36888. front: {
  36889. height: math.unit(5 + 8/12, "feet"),
  36890. weight: math.unit(190, "lb"),
  36891. name: "Front",
  36892. image: {
  36893. source: "./media/characters/oven-otter/front.svg",
  36894. extra: 1809/1740,
  36895. bottom: 181/1990
  36896. }
  36897. },
  36898. back: {
  36899. height: math.unit(5 + 8/12, "feet"),
  36900. weight: math.unit(190, "lb"),
  36901. name: "Back",
  36902. image: {
  36903. source: "./media/characters/oven-otter/back.svg",
  36904. extra: 1709/1635,
  36905. bottom: 118/1827
  36906. }
  36907. },
  36908. hand: {
  36909. height: math.unit(1.07, "feet"),
  36910. name: "Hand",
  36911. image: {
  36912. source: "./media/characters/oven-otter/hand.svg"
  36913. }
  36914. },
  36915. beans: {
  36916. height: math.unit(1.74, "feet"),
  36917. name: "Beans",
  36918. image: {
  36919. source: "./media/characters/oven-otter/beans.svg"
  36920. }
  36921. },
  36922. },
  36923. [
  36924. {
  36925. name: "Micro",
  36926. height: math.unit(0.5, "inches")
  36927. },
  36928. {
  36929. name: "Normal",
  36930. height: math.unit(5 + 8/12, "feet"),
  36931. default: true
  36932. },
  36933. {
  36934. name: "Macro",
  36935. height: math.unit(250, "feet")
  36936. },
  36937. {
  36938. name: "Really High",
  36939. height: math.unit(420, "feet")
  36940. },
  36941. ]
  36942. ))
  36943. characterMakers.push(() => makeCharacter(
  36944. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36945. {
  36946. front: {
  36947. height: math.unit(5, "meters"),
  36948. weight: math.unit(292000000000000, "kg"),
  36949. name: "Front",
  36950. image: {
  36951. source: "./media/characters/devourer/front.svg",
  36952. extra: 1800/1733,
  36953. bottom: 211/2011
  36954. }
  36955. },
  36956. maw: {
  36957. height: math.unit(1.1, "meter"),
  36958. name: "Maw",
  36959. image: {
  36960. source: "./media/characters/devourer/maw.svg"
  36961. }
  36962. },
  36963. },
  36964. [
  36965. {
  36966. name: "Small",
  36967. height: math.unit(3, "meters")
  36968. },
  36969. {
  36970. name: "Large",
  36971. height: math.unit(5, "meters"),
  36972. default: true
  36973. },
  36974. ]
  36975. ))
  36976. characterMakers.push(() => makeCharacter(
  36977. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36978. {
  36979. front: {
  36980. height: math.unit(6, "feet"),
  36981. weight: math.unit(400, "lb"),
  36982. name: "Front",
  36983. image: {
  36984. source: "./media/characters/ellarby/front.svg",
  36985. extra: 1909/1763,
  36986. bottom: 80/1989
  36987. }
  36988. },
  36989. back: {
  36990. height: math.unit(6, "feet"),
  36991. weight: math.unit(400, "lb"),
  36992. name: "Back",
  36993. image: {
  36994. source: "./media/characters/ellarby/back.svg",
  36995. extra: 1914/1784,
  36996. bottom: 172/2086
  36997. }
  36998. },
  36999. },
  37000. [
  37001. {
  37002. name: "Mischief",
  37003. height: math.unit(18, "inches")
  37004. },
  37005. {
  37006. name: "Trouble",
  37007. height: math.unit(12, "feet")
  37008. },
  37009. {
  37010. name: "Havoc",
  37011. height: math.unit(200, "feet"),
  37012. default: true
  37013. },
  37014. {
  37015. name: "Pandemonium",
  37016. height: math.unit(1, "mile")
  37017. },
  37018. {
  37019. name: "Catastrophe",
  37020. height: math.unit(100, "miles")
  37021. },
  37022. ]
  37023. ))
  37024. characterMakers.push(() => makeCharacter(
  37025. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37026. {
  37027. front: {
  37028. height: math.unit(4.7, "meters"),
  37029. weight: math.unit(6500, "kg"),
  37030. name: "Front",
  37031. image: {
  37032. source: "./media/characters/vex/front.svg",
  37033. extra: 1288/1140,
  37034. bottom: 100/1388
  37035. }
  37036. },
  37037. },
  37038. [
  37039. {
  37040. name: "Normal",
  37041. height: math.unit(4.7, "meters"),
  37042. default: true
  37043. },
  37044. ]
  37045. ))
  37046. characterMakers.push(() => makeCharacter(
  37047. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37048. {
  37049. normal: {
  37050. height: math.unit(6, "feet"),
  37051. weight: math.unit(350, "lb"),
  37052. name: "Normal",
  37053. image: {
  37054. source: "./media/characters/teshy/normal.svg",
  37055. extra: 1795/1735,
  37056. bottom: 16/1811
  37057. }
  37058. },
  37059. monsterFront: {
  37060. height: math.unit(12, "feet"),
  37061. weight: math.unit(4700, "lb"),
  37062. name: "Monster (Front)",
  37063. image: {
  37064. source: "./media/characters/teshy/monster-front.svg",
  37065. extra: 2042/2034,
  37066. bottom: 128/2170
  37067. }
  37068. },
  37069. monsterSide: {
  37070. height: math.unit(12, "feet"),
  37071. weight: math.unit(4700, "lb"),
  37072. name: "Monster (Side)",
  37073. image: {
  37074. source: "./media/characters/teshy/monster-side.svg",
  37075. extra: 2067/2056,
  37076. bottom: 70/2137
  37077. }
  37078. },
  37079. monsterBack: {
  37080. height: math.unit(12, "feet"),
  37081. weight: math.unit(4700, "lb"),
  37082. name: "Monster (Back)",
  37083. image: {
  37084. source: "./media/characters/teshy/monster-back.svg",
  37085. extra: 1921/1914,
  37086. bottom: 171/2092
  37087. }
  37088. },
  37089. },
  37090. [
  37091. {
  37092. name: "Normal",
  37093. height: math.unit(6, "feet"),
  37094. default: true
  37095. },
  37096. ]
  37097. ))
  37098. characterMakers.push(() => makeCharacter(
  37099. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37100. {
  37101. front: {
  37102. height: math.unit(6, "feet"),
  37103. name: "Front",
  37104. image: {
  37105. source: "./media/characters/ramey/front.svg",
  37106. extra: 790/787,
  37107. bottom: 27/817
  37108. }
  37109. },
  37110. },
  37111. [
  37112. {
  37113. name: "Normal",
  37114. height: math.unit(6, "feet"),
  37115. default: true
  37116. },
  37117. ]
  37118. ))
  37119. characterMakers.push(() => makeCharacter(
  37120. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37121. {
  37122. front: {
  37123. height: math.unit(5 + 5/12, "feet"),
  37124. weight: math.unit(120, "lb"),
  37125. name: "Front",
  37126. image: {
  37127. source: "./media/characters/phirae/front.svg",
  37128. extra: 2491/2436,
  37129. bottom: 38/2529
  37130. }
  37131. },
  37132. },
  37133. [
  37134. {
  37135. name: "Normal",
  37136. height: math.unit(5 + 5/12, "feet"),
  37137. default: true
  37138. },
  37139. ]
  37140. ))
  37141. characterMakers.push(() => makeCharacter(
  37142. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37143. {
  37144. front: {
  37145. height: math.unit(5 + 3/12, "feet"),
  37146. name: "Front",
  37147. image: {
  37148. source: "./media/characters/stagglas/front.svg",
  37149. extra: 962/882,
  37150. bottom: 53/1015
  37151. }
  37152. },
  37153. feral: {
  37154. height: math.unit(335, "cm"),
  37155. name: "Feral",
  37156. image: {
  37157. source: "./media/characters/stagglas/feral.svg",
  37158. extra: 1732/1090,
  37159. bottom: 48/1780
  37160. }
  37161. },
  37162. },
  37163. [
  37164. {
  37165. name: "Normal",
  37166. height: math.unit(5 + 3/12, "feet"),
  37167. default: true
  37168. },
  37169. ]
  37170. ))
  37171. characterMakers.push(() => makeCharacter(
  37172. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37173. {
  37174. front: {
  37175. height: math.unit(5 + 4/12, "feet"),
  37176. weight: math.unit(145, "lb"),
  37177. name: "Front",
  37178. image: {
  37179. source: "./media/characters/starra/front.svg",
  37180. extra: 1790/1691,
  37181. bottom: 91/1881
  37182. }
  37183. },
  37184. },
  37185. [
  37186. {
  37187. name: "Normal",
  37188. height: math.unit(5 + 4/12, "feet"),
  37189. default: true
  37190. },
  37191. ]
  37192. ))
  37193. characterMakers.push(() => makeCharacter(
  37194. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37195. {
  37196. front: {
  37197. height: math.unit(3.5, "meters"),
  37198. name: "Front",
  37199. image: {
  37200. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37201. extra: 1248/972,
  37202. bottom: 38/1286
  37203. }
  37204. },
  37205. },
  37206. [
  37207. {
  37208. name: "Normal",
  37209. height: math.unit(3.5, "meters"),
  37210. default: true
  37211. },
  37212. ]
  37213. ))
  37214. characterMakers.push(() => makeCharacter(
  37215. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37216. {
  37217. side: {
  37218. height: math.unit(8 + 2/12, "feet"),
  37219. weight: math.unit(1240, "lb"),
  37220. name: "Side",
  37221. image: {
  37222. source: "./media/characters/mika-valentine/side.svg",
  37223. extra: 2670/2501,
  37224. bottom: 250/2920
  37225. }
  37226. },
  37227. },
  37228. [
  37229. {
  37230. name: "Normal",
  37231. height: math.unit(8 + 2/12, "feet"),
  37232. default: true
  37233. },
  37234. ]
  37235. ))
  37236. characterMakers.push(() => makeCharacter(
  37237. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37238. {
  37239. front: {
  37240. height: math.unit(7 + 2/12, "feet"),
  37241. name: "Front",
  37242. image: {
  37243. source: "./media/characters/xoltol/front.svg",
  37244. extra: 2212/2124,
  37245. bottom: 84/2296
  37246. }
  37247. },
  37248. side: {
  37249. height: math.unit(7 + 2/12, "feet"),
  37250. name: "Side",
  37251. image: {
  37252. source: "./media/characters/xoltol/side.svg",
  37253. extra: 2273/2197,
  37254. bottom: 26/2299
  37255. }
  37256. },
  37257. hand: {
  37258. height: math.unit(2.5, "feet"),
  37259. name: "Hand",
  37260. image: {
  37261. source: "./media/characters/xoltol/hand.svg"
  37262. }
  37263. },
  37264. },
  37265. [
  37266. {
  37267. name: "Small-ish",
  37268. height: math.unit(5 + 11/12, "feet")
  37269. },
  37270. {
  37271. name: "Normal",
  37272. height: math.unit(7 + 2/12, "feet")
  37273. },
  37274. {
  37275. name: "\"Macro\"",
  37276. height: math.unit(14 + 9/12, "feet"),
  37277. default: true
  37278. },
  37279. {
  37280. name: "Alternate Height",
  37281. height: math.unit(20, "feet")
  37282. },
  37283. {
  37284. name: "Actually Macro",
  37285. height: math.unit(100, "feet")
  37286. },
  37287. ]
  37288. ))
  37289. characterMakers.push(() => makeCharacter(
  37290. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37291. {
  37292. front: {
  37293. height: math.unit(5 + 2/12, "feet"),
  37294. weight: math.unit(75, "kg"),
  37295. name: "Front",
  37296. image: {
  37297. source: "./media/characters/kotetsu-redwood/front.svg",
  37298. extra: 1053/942,
  37299. bottom: 60/1113
  37300. }
  37301. },
  37302. },
  37303. [
  37304. {
  37305. name: "Normal",
  37306. height: math.unit(5 + 2/12, "feet"),
  37307. default: true
  37308. },
  37309. ]
  37310. ))
  37311. characterMakers.push(() => makeCharacter(
  37312. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37313. {
  37314. front: {
  37315. height: math.unit(2.4, "meters"),
  37316. weight: math.unit(125, "kg"),
  37317. name: "Front",
  37318. image: {
  37319. source: "./media/characters/lilith/front.svg",
  37320. extra: 1590/1513,
  37321. bottom: 203/1793
  37322. }
  37323. },
  37324. },
  37325. [
  37326. {
  37327. name: "Humanoid",
  37328. height: math.unit(2.4, "meters")
  37329. },
  37330. {
  37331. name: "Normal",
  37332. height: math.unit(6, "meters"),
  37333. default: true
  37334. },
  37335. {
  37336. name: "Largest",
  37337. height: math.unit(55, "meters")
  37338. },
  37339. ]
  37340. ))
  37341. characterMakers.push(() => makeCharacter(
  37342. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37343. {
  37344. front: {
  37345. height: math.unit(8 + 4/12, "feet"),
  37346. weight: math.unit(535, "lb"),
  37347. name: "Front",
  37348. image: {
  37349. source: "./media/characters/beh'kah-bolger/front.svg",
  37350. extra: 1660/1603,
  37351. bottom: 37/1697
  37352. }
  37353. },
  37354. },
  37355. [
  37356. {
  37357. name: "Normal",
  37358. height: math.unit(8 + 4/12, "feet"),
  37359. default: true
  37360. },
  37361. {
  37362. name: "Kaiju",
  37363. height: math.unit(250, "feet")
  37364. },
  37365. {
  37366. name: "Still Growing",
  37367. height: math.unit(10, "miles")
  37368. },
  37369. {
  37370. name: "Continental",
  37371. height: math.unit(5000, "miles")
  37372. },
  37373. {
  37374. name: "Final Form",
  37375. height: math.unit(2500000, "miles")
  37376. },
  37377. ]
  37378. ))
  37379. characterMakers.push(() => makeCharacter(
  37380. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37381. {
  37382. front: {
  37383. height: math.unit(7 + 2/12, "feet"),
  37384. weight: math.unit(230, "kg"),
  37385. name: "Front",
  37386. image: {
  37387. source: "./media/characters/tatyana-milewska/front.svg",
  37388. extra: 1199/1150,
  37389. bottom: 86/1285
  37390. }
  37391. },
  37392. },
  37393. [
  37394. {
  37395. name: "Normal",
  37396. height: math.unit(7 + 2/12, "feet"),
  37397. default: true
  37398. },
  37399. {
  37400. name: "Big",
  37401. height: math.unit(12, "feet")
  37402. },
  37403. {
  37404. name: "Minimacro",
  37405. height: math.unit(20, "feet")
  37406. },
  37407. {
  37408. name: "Macro",
  37409. height: math.unit(120, "feet")
  37410. },
  37411. ]
  37412. ))
  37413. characterMakers.push(() => makeCharacter(
  37414. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37415. {
  37416. front: {
  37417. height: math.unit(7 + 8/12, "feet"),
  37418. weight: math.unit(152, "kg"),
  37419. name: "Front",
  37420. image: {
  37421. source: "./media/characters/helen-arri/front.svg",
  37422. extra: 440/423,
  37423. bottom: 14/454
  37424. }
  37425. },
  37426. back: {
  37427. height: math.unit(7 + 8/12, "feet"),
  37428. weight: math.unit(152, "kg"),
  37429. name: "Back",
  37430. image: {
  37431. source: "./media/characters/helen-arri/back.svg",
  37432. extra: 443/426,
  37433. bottom: 8/451
  37434. }
  37435. },
  37436. },
  37437. [
  37438. {
  37439. name: "Normal",
  37440. height: math.unit(7 + 8/12, "feet"),
  37441. default: true
  37442. },
  37443. {
  37444. name: "Big",
  37445. height: math.unit(14, "feet")
  37446. },
  37447. {
  37448. name: "Minimacro",
  37449. height: math.unit(24, "feet")
  37450. },
  37451. {
  37452. name: "Macro",
  37453. height: math.unit(140, "feet")
  37454. },
  37455. ]
  37456. ))
  37457. characterMakers.push(() => makeCharacter(
  37458. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37459. {
  37460. front: {
  37461. height: math.unit(6, "meters"),
  37462. name: "Front",
  37463. image: {
  37464. source: "./media/characters/ehanu-rehu/front.svg",
  37465. extra: 1800/1800,
  37466. bottom: 59/1859
  37467. }
  37468. },
  37469. },
  37470. [
  37471. {
  37472. name: "Normal",
  37473. height: math.unit(6, "meters"),
  37474. default: true
  37475. },
  37476. ]
  37477. ))
  37478. characterMakers.push(() => makeCharacter(
  37479. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37480. {
  37481. front: {
  37482. height: math.unit(7 + 3/12, "feet"),
  37483. name: "Front",
  37484. image: {
  37485. source: "./media/characters/renholder/front.svg",
  37486. extra: 3096/2960,
  37487. bottom: 250/3346
  37488. }
  37489. },
  37490. },
  37491. [
  37492. {
  37493. name: "Normal Bat",
  37494. height: math.unit(7 + 3/12, "feet"),
  37495. default: true
  37496. },
  37497. {
  37498. name: "Slightly Tall Bat",
  37499. height: math.unit(100, "feet")
  37500. },
  37501. {
  37502. name: "Big Bat",
  37503. height: math.unit(1000, "feet")
  37504. },
  37505. {
  37506. name: "City-Sized Bat",
  37507. height: math.unit(200000, "feet")
  37508. },
  37509. {
  37510. name: "Bigger Bat",
  37511. height: math.unit(10000, "miles")
  37512. },
  37513. {
  37514. name: "Solar Sized Bat",
  37515. height: math.unit(100, "AU")
  37516. },
  37517. {
  37518. name: "Galactic Bat",
  37519. height: math.unit(200000, "lightyears")
  37520. },
  37521. {
  37522. name: "Universally Known Bat",
  37523. height: math.unit(1, "universe")
  37524. },
  37525. ]
  37526. ))
  37527. characterMakers.push(() => makeCharacter(
  37528. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37529. {
  37530. front: {
  37531. height: math.unit(6 + 11/12, "feet"),
  37532. weight: math.unit(250, "lb"),
  37533. name: "Front",
  37534. image: {
  37535. source: "./media/characters/cookiecat/front.svg",
  37536. extra: 893/827,
  37537. bottom: 14/907
  37538. }
  37539. },
  37540. },
  37541. [
  37542. {
  37543. name: "Micro",
  37544. height: math.unit(3, "inches")
  37545. },
  37546. {
  37547. name: "Normal",
  37548. height: math.unit(6 + 11/12, "feet"),
  37549. default: true
  37550. },
  37551. {
  37552. name: "Macro",
  37553. height: math.unit(100, "feet")
  37554. },
  37555. {
  37556. name: "Macro+",
  37557. height: math.unit(404, "feet")
  37558. },
  37559. {
  37560. name: "Megamacro",
  37561. height: math.unit(165, "miles")
  37562. },
  37563. {
  37564. name: "Planetary",
  37565. height: math.unit(4600, "miles")
  37566. },
  37567. ]
  37568. ))
  37569. characterMakers.push(() => makeCharacter(
  37570. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37571. {
  37572. front: {
  37573. height: math.unit(10 + 3/12, "feet"),
  37574. weight: math.unit(1500, "lb"),
  37575. name: "Front",
  37576. image: {
  37577. source: "./media/characters/tux-kusanagi/front.svg",
  37578. extra: 944/840,
  37579. bottom: 39/983
  37580. }
  37581. },
  37582. back: {
  37583. height: math.unit(10 + 3/12, "feet"),
  37584. weight: math.unit(1500, "lb"),
  37585. name: "Back",
  37586. image: {
  37587. source: "./media/characters/tux-kusanagi/back.svg",
  37588. extra: 941/842,
  37589. bottom: 28/969
  37590. }
  37591. },
  37592. rump: {
  37593. height: math.unit(5.25, "feet"),
  37594. name: "Rump",
  37595. image: {
  37596. source: "./media/characters/tux-kusanagi/rump.svg"
  37597. }
  37598. },
  37599. beak: {
  37600. height: math.unit(1.54, "feet"),
  37601. name: "Beak",
  37602. image: {
  37603. source: "./media/characters/tux-kusanagi/beak.svg"
  37604. }
  37605. },
  37606. },
  37607. [
  37608. {
  37609. name: "Normal",
  37610. height: math.unit(10 + 3/12, "feet"),
  37611. default: true
  37612. },
  37613. ]
  37614. ))
  37615. characterMakers.push(() => makeCharacter(
  37616. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37617. {
  37618. front: {
  37619. height: math.unit(58, "feet"),
  37620. weight: math.unit(200, "tons"),
  37621. name: "Front",
  37622. image: {
  37623. source: "./media/characters/uzarmazari/front.svg",
  37624. extra: 1575/1455,
  37625. bottom: 152/1727
  37626. }
  37627. },
  37628. back: {
  37629. height: math.unit(58, "feet"),
  37630. weight: math.unit(200, "tons"),
  37631. name: "Back",
  37632. image: {
  37633. source: "./media/characters/uzarmazari/back.svg",
  37634. extra: 1585/1510,
  37635. bottom: 157/1742
  37636. }
  37637. },
  37638. head: {
  37639. height: math.unit(26, "feet"),
  37640. name: "Head",
  37641. image: {
  37642. source: "./media/characters/uzarmazari/head.svg"
  37643. }
  37644. },
  37645. },
  37646. [
  37647. {
  37648. name: "Normal",
  37649. height: math.unit(58, "feet"),
  37650. default: true
  37651. },
  37652. ]
  37653. ))
  37654. characterMakers.push(() => makeCharacter(
  37655. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37656. {
  37657. side: {
  37658. height: math.unit(15, "feet"),
  37659. name: "Side",
  37660. image: {
  37661. source: "./media/characters/akitu/side.svg",
  37662. extra: 1421/1321,
  37663. bottom: 157/1578
  37664. }
  37665. },
  37666. front: {
  37667. height: math.unit(15, "feet"),
  37668. name: "Front",
  37669. image: {
  37670. source: "./media/characters/akitu/front.svg",
  37671. extra: 1435/1326,
  37672. bottom: 232/1667
  37673. }
  37674. },
  37675. },
  37676. [
  37677. {
  37678. name: "Normal",
  37679. height: math.unit(15, "feet"),
  37680. default: true
  37681. },
  37682. ]
  37683. ))
  37684. characterMakers.push(() => makeCharacter(
  37685. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37686. {
  37687. front: {
  37688. height: math.unit(10 + 8/12, "feet"),
  37689. name: "Front",
  37690. image: {
  37691. source: "./media/characters/azalie-croixland/front.svg",
  37692. extra: 1972/1856,
  37693. bottom: 31/2003
  37694. }
  37695. },
  37696. },
  37697. [
  37698. {
  37699. name: "Original Height",
  37700. height: math.unit(5 + 4/12, "feet")
  37701. },
  37702. {
  37703. name: "Normal Height",
  37704. height: math.unit(10 + 8/12, "feet"),
  37705. default: true
  37706. },
  37707. ]
  37708. ))
  37709. characterMakers.push(() => makeCharacter(
  37710. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37711. {
  37712. side: {
  37713. height: math.unit(7 + 1/12, "feet"),
  37714. weight: math.unit(245, "lb"),
  37715. name: "Side",
  37716. image: {
  37717. source: "./media/characters/kavus-kazian/side.svg",
  37718. extra: 349/342,
  37719. bottom: 15/364
  37720. }
  37721. },
  37722. },
  37723. [
  37724. {
  37725. name: "Normal",
  37726. height: math.unit(7 + 1/12, "feet"),
  37727. default: true
  37728. },
  37729. ]
  37730. ))
  37731. characterMakers.push(() => makeCharacter(
  37732. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37733. {
  37734. normalFront: {
  37735. height: math.unit(5 + 11/12, "feet"),
  37736. name: "Front",
  37737. image: {
  37738. source: "./media/characters/moonlight-rose/normal-front.svg",
  37739. extra: 1980/1825,
  37740. bottom: 18/1998
  37741. },
  37742. form: "normal",
  37743. default: true
  37744. },
  37745. normalBack: {
  37746. height: math.unit(5 + 11/12, "feet"),
  37747. name: "Back",
  37748. image: {
  37749. source: "./media/characters/moonlight-rose/normal-back.svg",
  37750. extra: 2010/1839,
  37751. bottom: 10/2020
  37752. },
  37753. form: "normal"
  37754. },
  37755. demonFront: {
  37756. height: math.unit(1.5, "earths"),
  37757. name: "Front",
  37758. image: {
  37759. source: "./media/characters/moonlight-rose/demon.svg",
  37760. extra: 1400/1294,
  37761. bottom: 45/1445
  37762. },
  37763. form: "demon",
  37764. default: true
  37765. },
  37766. terraFront: {
  37767. height: math.unit(1.5, "earths"),
  37768. name: "Front",
  37769. image: {
  37770. source: "./media/characters/moonlight-rose/terra.svg"
  37771. },
  37772. form: "terra",
  37773. default: true
  37774. },
  37775. jupiterFront: {
  37776. height: math.unit(69911*2, "km"),
  37777. name: "Front",
  37778. image: {
  37779. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37780. extra: 1367/1286,
  37781. bottom: 55/1422
  37782. },
  37783. form: "jupiter",
  37784. default: true
  37785. },
  37786. neptuneFront: {
  37787. height: math.unit(24622*2, "feet"),
  37788. name: "Front",
  37789. image: {
  37790. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37791. extra: 1851/1712,
  37792. bottom: 0/1851
  37793. },
  37794. form: "neptune",
  37795. default: true
  37796. },
  37797. },
  37798. [
  37799. {
  37800. name: "\"Natural\" Height",
  37801. height: math.unit(5 + 11/12, "feet"),
  37802. form: "normal"
  37803. },
  37804. {
  37805. name: "Smallest comfortable size",
  37806. height: math.unit(40, "meters"),
  37807. form: "normal"
  37808. },
  37809. {
  37810. name: "Common size",
  37811. height: math.unit(50, "km"),
  37812. form: "normal",
  37813. default: true
  37814. },
  37815. {
  37816. name: "Normal",
  37817. height: math.unit(1.5, "earths"),
  37818. form: "demon",
  37819. default: true
  37820. },
  37821. {
  37822. name: "Universal",
  37823. height: math.unit(15, "universes"),
  37824. form: "demon"
  37825. },
  37826. {
  37827. name: "Earth",
  37828. height: math.unit(1.5, "earths"),
  37829. form: "terra",
  37830. default: true
  37831. },
  37832. {
  37833. name: "Super Earth",
  37834. height: math.unit(67.5, "earths"),
  37835. form: "terra"
  37836. },
  37837. {
  37838. name: "Doesn't fit in a solar system...",
  37839. height: math.unit(1, "galaxy"),
  37840. form: "terra"
  37841. },
  37842. {
  37843. name: "Saturn",
  37844. height: math.unit(58232*2, "km"),
  37845. form: "jupiter"
  37846. },
  37847. {
  37848. name: "Jupiter",
  37849. height: math.unit(69911*2, "km"),
  37850. form: "jupiter",
  37851. default: true
  37852. },
  37853. {
  37854. name: "HD 100546 b",
  37855. height: math.unit(482938, "km"),
  37856. form: "jupiter"
  37857. },
  37858. {
  37859. name: "Enceladus",
  37860. height: math.unit(513*2, "km"),
  37861. form: "neptune"
  37862. },
  37863. {
  37864. name: "Europe",
  37865. height: math.unit(1560*2, "km"),
  37866. form: "neptune"
  37867. },
  37868. {
  37869. name: "Neptune",
  37870. height: math.unit(24622*2, "km"),
  37871. form: "neptune",
  37872. default: true
  37873. },
  37874. {
  37875. name: "CoRoT-9b",
  37876. height: math.unit(75067*2, "km"),
  37877. form: "neptune"
  37878. },
  37879. ],
  37880. {
  37881. "normal": {
  37882. name: "Normal",
  37883. default: true
  37884. },
  37885. "demon": {
  37886. name: "Demon"
  37887. },
  37888. "terra": {
  37889. name: "Terra"
  37890. },
  37891. "jupiter": {
  37892. name: "Jupiter"
  37893. },
  37894. "neptune": {
  37895. name: "Neptune"
  37896. }
  37897. }
  37898. ))
  37899. characterMakers.push(() => makeCharacter(
  37900. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37901. {
  37902. front: {
  37903. height: math.unit(16, "feet"),
  37904. weight: math.unit(610, "kg"),
  37905. name: "Front",
  37906. image: {
  37907. source: "./media/characters/huckle/front.svg",
  37908. extra: 1731/1625,
  37909. bottom: 33/1764
  37910. }
  37911. },
  37912. back: {
  37913. height: math.unit(16, "feet"),
  37914. weight: math.unit(610, "kg"),
  37915. name: "Back",
  37916. image: {
  37917. source: "./media/characters/huckle/back.svg",
  37918. extra: 1738/1651,
  37919. bottom: 37/1775
  37920. }
  37921. },
  37922. laughing: {
  37923. height: math.unit(3.75, "feet"),
  37924. name: "Laughing",
  37925. image: {
  37926. source: "./media/characters/huckle/laughing.svg"
  37927. }
  37928. },
  37929. angry: {
  37930. height: math.unit(4.15, "feet"),
  37931. name: "Angry",
  37932. image: {
  37933. source: "./media/characters/huckle/angry.svg"
  37934. }
  37935. },
  37936. },
  37937. [
  37938. {
  37939. name: "Normal",
  37940. height: math.unit(16, "feet"),
  37941. default: true
  37942. },
  37943. {
  37944. name: "Mini Macro",
  37945. height: math.unit(463, "feet")
  37946. },
  37947. {
  37948. name: "Macro",
  37949. height: math.unit(1680, "meters")
  37950. },
  37951. {
  37952. name: "Mega Macro",
  37953. height: math.unit(175, "km")
  37954. },
  37955. {
  37956. name: "Terra Macro",
  37957. height: math.unit(32, "gigameters")
  37958. },
  37959. {
  37960. name: "Multiverse+",
  37961. height: math.unit(2.56e23, "yottameters")
  37962. },
  37963. ]
  37964. ))
  37965. characterMakers.push(() => makeCharacter(
  37966. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37967. {
  37968. front: {
  37969. height: math.unit(6 + 9/12, "feet"),
  37970. weight: math.unit(280, "lb"),
  37971. name: "Front",
  37972. image: {
  37973. source: "./media/characters/candy/front.svg",
  37974. extra: 234/217,
  37975. bottom: 11/245
  37976. }
  37977. },
  37978. },
  37979. [
  37980. {
  37981. name: "Really Small",
  37982. height: math.unit(0.1, "nm")
  37983. },
  37984. {
  37985. name: "Micro",
  37986. height: math.unit(2, "inches")
  37987. },
  37988. {
  37989. name: "Normal",
  37990. height: math.unit(6 + 9/12, "feet"),
  37991. default: true
  37992. },
  37993. {
  37994. name: "Small Macro",
  37995. height: math.unit(69, "feet")
  37996. },
  37997. {
  37998. name: "Macro",
  37999. height: math.unit(160, "feet")
  38000. },
  38001. {
  38002. name: "Megamacro",
  38003. height: math.unit(22000, "miles")
  38004. },
  38005. {
  38006. name: "Gigamacro",
  38007. height: math.unit(50000, "miles")
  38008. },
  38009. ]
  38010. ))
  38011. characterMakers.push(() => makeCharacter(
  38012. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38013. {
  38014. front: {
  38015. height: math.unit(4, "feet"),
  38016. weight: math.unit(90, "lb"),
  38017. name: "Front",
  38018. image: {
  38019. source: "./media/characters/joey-mcdonald/front.svg",
  38020. extra: 1059/852,
  38021. bottom: 33/1092
  38022. }
  38023. },
  38024. back: {
  38025. height: math.unit(4, "feet"),
  38026. weight: math.unit(90, "lb"),
  38027. name: "Back",
  38028. image: {
  38029. source: "./media/characters/joey-mcdonald/back.svg",
  38030. extra: 1077/879,
  38031. bottom: 5/1082
  38032. }
  38033. },
  38034. frontKobold: {
  38035. height: math.unit(4, "feet"),
  38036. weight: math.unit(100, "lb"),
  38037. name: "Front-kobold",
  38038. image: {
  38039. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38040. extra: 1480/1367,
  38041. bottom: 0/1480
  38042. }
  38043. },
  38044. backKobold: {
  38045. height: math.unit(4, "feet"),
  38046. weight: math.unit(100, "lb"),
  38047. name: "Back-kobold",
  38048. image: {
  38049. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38050. extra: 1449/1361,
  38051. bottom: 0/1449
  38052. }
  38053. },
  38054. },
  38055. [
  38056. {
  38057. name: "Normal",
  38058. height: math.unit(4, "feet"),
  38059. default: true
  38060. },
  38061. ]
  38062. ))
  38063. characterMakers.push(() => makeCharacter(
  38064. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38065. {
  38066. front: {
  38067. height: math.unit(12 + 6/12, "feet"),
  38068. name: "Front",
  38069. image: {
  38070. source: "./media/characters/kass-lockheed/front.svg",
  38071. extra: 354/343,
  38072. bottom: 9/363
  38073. }
  38074. },
  38075. back: {
  38076. height: math.unit(12 + 6/12, "feet"),
  38077. name: "Back",
  38078. image: {
  38079. source: "./media/characters/kass-lockheed/back.svg",
  38080. extra: 364/352,
  38081. bottom: 3/367
  38082. }
  38083. },
  38084. dick: {
  38085. height: math.unit(3.12, "feet"),
  38086. name: "Dick",
  38087. image: {
  38088. source: "./media/characters/kass-lockheed/dick.svg"
  38089. }
  38090. },
  38091. head: {
  38092. height: math.unit(2.6, "feet"),
  38093. name: "Head",
  38094. image: {
  38095. source: "./media/characters/kass-lockheed/head.svg"
  38096. }
  38097. },
  38098. bleh: {
  38099. height: math.unit(2.85, "feet"),
  38100. name: "Bleh",
  38101. image: {
  38102. source: "./media/characters/kass-lockheed/bleh.svg"
  38103. }
  38104. },
  38105. smug: {
  38106. height: math.unit(2.85, "feet"),
  38107. name: "Smug",
  38108. image: {
  38109. source: "./media/characters/kass-lockheed/smug.svg"
  38110. }
  38111. },
  38112. },
  38113. [
  38114. {
  38115. name: "Normal",
  38116. height: math.unit(12 + 6/12, "feet"),
  38117. default: true
  38118. },
  38119. ]
  38120. ))
  38121. characterMakers.push(() => makeCharacter(
  38122. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38123. {
  38124. front: {
  38125. height: math.unit(6 + 2/12, "feet"),
  38126. name: "Front",
  38127. image: {
  38128. source: "./media/characters/taylor/front.svg",
  38129. extra: 639/495,
  38130. bottom: 12/651
  38131. }
  38132. },
  38133. },
  38134. [
  38135. {
  38136. name: "Normal",
  38137. height: math.unit(6 + 2/12, "feet"),
  38138. default: true
  38139. },
  38140. {
  38141. name: "Big",
  38142. height: math.unit(15, "feet")
  38143. },
  38144. {
  38145. name: "Lorg",
  38146. height: math.unit(80, "feet")
  38147. },
  38148. {
  38149. name: "Too Lorg",
  38150. height: math.unit(120, "feet")
  38151. },
  38152. ]
  38153. ))
  38154. characterMakers.push(() => makeCharacter(
  38155. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38156. {
  38157. front: {
  38158. height: math.unit(15, "feet"),
  38159. name: "Front",
  38160. image: {
  38161. source: "./media/characters/kaizer/front.svg",
  38162. extra: 1612/1436,
  38163. bottom: 43/1655
  38164. }
  38165. },
  38166. },
  38167. [
  38168. {
  38169. name: "Normal",
  38170. height: math.unit(15, "feet"),
  38171. default: true
  38172. },
  38173. ]
  38174. ))
  38175. characterMakers.push(() => makeCharacter(
  38176. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38177. {
  38178. front: {
  38179. height: math.unit(2, "feet"),
  38180. weight: math.unit(30, "lb"),
  38181. name: "Front",
  38182. image: {
  38183. source: "./media/characters/sandy/front.svg",
  38184. extra: 1439/1307,
  38185. bottom: 194/1633
  38186. }
  38187. },
  38188. },
  38189. [
  38190. {
  38191. name: "Normal",
  38192. height: math.unit(2, "feet"),
  38193. default: true
  38194. },
  38195. ]
  38196. ))
  38197. characterMakers.push(() => makeCharacter(
  38198. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38199. {
  38200. front: {
  38201. height: math.unit(3, "feet"),
  38202. name: "Front",
  38203. image: {
  38204. source: "./media/characters/mellvi/front.svg",
  38205. extra: 1831/1630,
  38206. bottom: 58/1889
  38207. }
  38208. },
  38209. },
  38210. [
  38211. {
  38212. name: "Normal",
  38213. height: math.unit(3, "feet"),
  38214. default: true
  38215. },
  38216. ]
  38217. ))
  38218. characterMakers.push(() => makeCharacter(
  38219. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38220. {
  38221. front: {
  38222. height: math.unit(5 + 11/12, "feet"),
  38223. weight: math.unit(200, "lb"),
  38224. name: "Front",
  38225. image: {
  38226. source: "./media/characters/shirou/front.svg",
  38227. extra: 2491/2383,
  38228. bottom: 189/2680
  38229. }
  38230. },
  38231. back: {
  38232. height: math.unit(5 + 11/12, "feet"),
  38233. weight: math.unit(200, "lb"),
  38234. name: "Back",
  38235. image: {
  38236. source: "./media/characters/shirou/back.svg",
  38237. extra: 2554/2450,
  38238. bottom: 76/2630
  38239. }
  38240. },
  38241. },
  38242. [
  38243. {
  38244. name: "Normal",
  38245. height: math.unit(5 + 11/12, "feet"),
  38246. default: true
  38247. },
  38248. ]
  38249. ))
  38250. characterMakers.push(() => makeCharacter(
  38251. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38252. {
  38253. front: {
  38254. height: math.unit(6 + 3/12, "feet"),
  38255. weight: math.unit(177, "lb"),
  38256. name: "Front",
  38257. image: {
  38258. source: "./media/characters/noryu/front.svg",
  38259. extra: 973/885,
  38260. bottom: 10/983
  38261. }
  38262. },
  38263. },
  38264. [
  38265. {
  38266. name: "Normal",
  38267. height: math.unit(6 + 3/12, "feet"),
  38268. default: true
  38269. },
  38270. ]
  38271. ))
  38272. characterMakers.push(() => makeCharacter(
  38273. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38274. {
  38275. front: {
  38276. height: math.unit(5 + 6/12, "feet"),
  38277. weight: math.unit(170, "lb"),
  38278. name: "Front",
  38279. image: {
  38280. source: "./media/characters/mevolas-rubenido/front.svg",
  38281. extra: 2109/1901,
  38282. bottom: 96/2205
  38283. }
  38284. },
  38285. },
  38286. [
  38287. {
  38288. name: "Normal",
  38289. height: math.unit(5 + 6/12, "feet"),
  38290. default: true
  38291. },
  38292. ]
  38293. ))
  38294. characterMakers.push(() => makeCharacter(
  38295. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38296. {
  38297. front: {
  38298. height: math.unit(100, "feet"),
  38299. name: "Front",
  38300. image: {
  38301. source: "./media/characters/dee/front.svg",
  38302. extra: 2153/2036,
  38303. bottom: 59/2212
  38304. }
  38305. },
  38306. back: {
  38307. height: math.unit(100, "feet"),
  38308. name: "Back",
  38309. image: {
  38310. source: "./media/characters/dee/back.svg",
  38311. extra: 2183/2058,
  38312. bottom: 75/2258
  38313. }
  38314. },
  38315. foot: {
  38316. height: math.unit(19.43, "feet"),
  38317. name: "Foot",
  38318. image: {
  38319. source: "./media/characters/dee/foot.svg"
  38320. }
  38321. },
  38322. hoof: {
  38323. height: math.unit(20.6, "feet"),
  38324. name: "Hoof",
  38325. image: {
  38326. source: "./media/characters/dee/hoof.svg"
  38327. }
  38328. },
  38329. },
  38330. [
  38331. {
  38332. name: "Macro",
  38333. height: math.unit(100, "feet"),
  38334. default: true
  38335. },
  38336. ]
  38337. ))
  38338. characterMakers.push(() => makeCharacter(
  38339. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38340. {
  38341. front: {
  38342. height: math.unit(5 + 6/12, "feet"),
  38343. name: "Front",
  38344. image: {
  38345. source: "./media/characters/teh/front.svg",
  38346. extra: 1002/847,
  38347. bottom: 62/1064
  38348. }
  38349. },
  38350. },
  38351. [
  38352. {
  38353. name: "Normal",
  38354. height: math.unit(5 + 6/12, "feet"),
  38355. default: true
  38356. },
  38357. ]
  38358. ))
  38359. characterMakers.push(() => makeCharacter(
  38360. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38361. {
  38362. side: {
  38363. height: math.unit(6 + 1/12, "feet"),
  38364. weight: math.unit(204, "lb"),
  38365. name: "Side",
  38366. image: {
  38367. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38368. extra: 974/775,
  38369. bottom: 169/1143
  38370. }
  38371. },
  38372. sitting: {
  38373. height: math.unit(6 + 2/12, "feet"),
  38374. weight: math.unit(204, "lb"),
  38375. name: "Sitting",
  38376. image: {
  38377. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38378. extra: 1175/964,
  38379. bottom: 378/1553
  38380. }
  38381. },
  38382. },
  38383. [
  38384. {
  38385. name: "Normal",
  38386. height: math.unit(6 + 1/12, "feet"),
  38387. default: true
  38388. },
  38389. ]
  38390. ))
  38391. characterMakers.push(() => makeCharacter(
  38392. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38393. {
  38394. front: {
  38395. height: math.unit(6, "inches"),
  38396. name: "Front",
  38397. image: {
  38398. source: "./media/characters/tululi/front.svg",
  38399. extra: 1997/1876,
  38400. bottom: 20/2017
  38401. }
  38402. },
  38403. },
  38404. [
  38405. {
  38406. name: "Normal",
  38407. height: math.unit(6, "inches"),
  38408. default: true
  38409. },
  38410. ]
  38411. ))
  38412. characterMakers.push(() => makeCharacter(
  38413. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38414. {
  38415. front: {
  38416. height: math.unit(4 + 1/12, "feet"),
  38417. name: "Front",
  38418. image: {
  38419. source: "./media/characters/star/front.svg",
  38420. extra: 1493/1189,
  38421. bottom: 48/1541
  38422. }
  38423. },
  38424. },
  38425. [
  38426. {
  38427. name: "Normal",
  38428. height: math.unit(4 + 1/12, "feet"),
  38429. default: true
  38430. },
  38431. ]
  38432. ))
  38433. characterMakers.push(() => makeCharacter(
  38434. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38435. {
  38436. front: {
  38437. height: math.unit(6 + 3/12, "feet"),
  38438. name: "Front",
  38439. image: {
  38440. source: "./media/characters/comet/front.svg",
  38441. extra: 1681/1462,
  38442. bottom: 26/1707
  38443. }
  38444. },
  38445. },
  38446. [
  38447. {
  38448. name: "Normal",
  38449. height: math.unit(6 + 3/12, "feet"),
  38450. default: true
  38451. },
  38452. ]
  38453. ))
  38454. characterMakers.push(() => makeCharacter(
  38455. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38456. {
  38457. front: {
  38458. height: math.unit(950, "feet"),
  38459. name: "Front",
  38460. image: {
  38461. source: "./media/characters/vortex/front.svg",
  38462. extra: 1497/1434,
  38463. bottom: 56/1553
  38464. }
  38465. },
  38466. maw: {
  38467. height: math.unit(285, "feet"),
  38468. name: "Maw",
  38469. image: {
  38470. source: "./media/characters/vortex/maw.svg"
  38471. }
  38472. },
  38473. },
  38474. [
  38475. {
  38476. name: "Macro",
  38477. height: math.unit(950, "feet"),
  38478. default: true
  38479. },
  38480. ]
  38481. ))
  38482. characterMakers.push(() => makeCharacter(
  38483. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38484. {
  38485. front: {
  38486. height: math.unit(600, "feet"),
  38487. weight: math.unit(0.02, "grams"),
  38488. name: "Front",
  38489. image: {
  38490. source: "./media/characters/doodle/front.svg",
  38491. extra: 1578/1413,
  38492. bottom: 37/1615
  38493. }
  38494. },
  38495. },
  38496. [
  38497. {
  38498. name: "Macro",
  38499. height: math.unit(600, "feet"),
  38500. default: true
  38501. },
  38502. ]
  38503. ))
  38504. characterMakers.push(() => makeCharacter(
  38505. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38506. {
  38507. front: {
  38508. height: math.unit(6 + 6/12, "feet"),
  38509. name: "Front",
  38510. image: {
  38511. source: "./media/characters/jai/front.svg",
  38512. extra: 1645/1534,
  38513. bottom: 115/1760
  38514. }
  38515. },
  38516. },
  38517. [
  38518. {
  38519. name: "Normal",
  38520. height: math.unit(6 + 6/12, "feet"),
  38521. default: true
  38522. },
  38523. ]
  38524. ))
  38525. characterMakers.push(() => makeCharacter(
  38526. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38527. {
  38528. front: {
  38529. height: math.unit(6 + 8/12, "feet"),
  38530. name: "Front",
  38531. image: {
  38532. source: "./media/characters/pixel/front.svg",
  38533. extra: 1900/1735,
  38534. bottom: 63/1963
  38535. }
  38536. },
  38537. },
  38538. [
  38539. {
  38540. name: "Normal",
  38541. height: math.unit(6 + 8/12, "feet"),
  38542. default: true
  38543. },
  38544. ]
  38545. ))
  38546. characterMakers.push(() => makeCharacter(
  38547. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38548. {
  38549. back: {
  38550. height: math.unit(4 + 1/12, "feet"),
  38551. weight: math.unit(75, "lb"),
  38552. name: "Back",
  38553. image: {
  38554. source: "./media/characters/rhett/back.svg",
  38555. extra: 930/878,
  38556. bottom: 25/955
  38557. }
  38558. },
  38559. front: {
  38560. height: math.unit(4 + 1/12, "feet"),
  38561. weight: math.unit(75, "lb"),
  38562. name: "Front",
  38563. image: {
  38564. source: "./media/characters/rhett/front.svg",
  38565. extra: 1682/1586,
  38566. bottom: 92/1774
  38567. }
  38568. },
  38569. },
  38570. [
  38571. {
  38572. name: "Micro",
  38573. height: math.unit(8, "inches")
  38574. },
  38575. {
  38576. name: "Tiny",
  38577. height: math.unit(2, "feet")
  38578. },
  38579. {
  38580. name: "Normal",
  38581. height: math.unit(4 + 1/12, "feet"),
  38582. default: true
  38583. },
  38584. ]
  38585. ))
  38586. characterMakers.push(() => makeCharacter(
  38587. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38588. {
  38589. front: {
  38590. height: math.unit(3 + 3/12, "feet"),
  38591. name: "Front",
  38592. image: {
  38593. source: "./media/characters/penny/front.svg",
  38594. extra: 1406/1311,
  38595. bottom: 26/1432
  38596. }
  38597. },
  38598. },
  38599. [
  38600. {
  38601. name: "Normal",
  38602. height: math.unit(3 + 3/12, "feet"),
  38603. default: true
  38604. },
  38605. ]
  38606. ))
  38607. characterMakers.push(() => makeCharacter(
  38608. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38609. {
  38610. front: {
  38611. height: math.unit(4 + 11/12, "feet"),
  38612. name: "Front",
  38613. image: {
  38614. source: "./media/characters/monty/front.svg",
  38615. extra: 1479/1209,
  38616. bottom: 0/1479
  38617. }
  38618. },
  38619. },
  38620. [
  38621. {
  38622. name: "Normal",
  38623. height: math.unit(4 + 11/12, "feet"),
  38624. default: true
  38625. },
  38626. ]
  38627. ))
  38628. characterMakers.push(() => makeCharacter(
  38629. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38630. {
  38631. front: {
  38632. height: math.unit(8 + 4/12, "feet"),
  38633. name: "Front",
  38634. image: {
  38635. source: "./media/characters/sterling/front.svg",
  38636. extra: 1420/1236,
  38637. bottom: 27/1447
  38638. }
  38639. },
  38640. },
  38641. [
  38642. {
  38643. name: "Normal",
  38644. height: math.unit(8 + 4/12, "feet"),
  38645. default: true
  38646. },
  38647. ]
  38648. ))
  38649. characterMakers.push(() => makeCharacter(
  38650. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38651. {
  38652. front: {
  38653. height: math.unit(15, "feet"),
  38654. name: "Front",
  38655. image: {
  38656. source: "./media/characters/marble/front.svg",
  38657. extra: 973/937,
  38658. bottom: 32/1005
  38659. }
  38660. },
  38661. },
  38662. [
  38663. {
  38664. name: "Normal",
  38665. height: math.unit(15, "feet"),
  38666. default: true
  38667. },
  38668. ]
  38669. ))
  38670. characterMakers.push(() => makeCharacter(
  38671. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38672. {
  38673. front: {
  38674. height: math.unit(3, "inches"),
  38675. name: "Front",
  38676. image: {
  38677. source: "./media/characters/powder/front.svg",
  38678. extra: 1504/1334,
  38679. bottom: 518/2022
  38680. }
  38681. },
  38682. },
  38683. [
  38684. {
  38685. name: "Normal",
  38686. height: math.unit(3, "inches"),
  38687. default: true
  38688. },
  38689. ]
  38690. ))
  38691. characterMakers.push(() => makeCharacter(
  38692. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38693. {
  38694. front: {
  38695. height: math.unit(4 + 5/12, "feet"),
  38696. name: "Front",
  38697. image: {
  38698. source: "./media/characters/joey-raccoon/front.svg",
  38699. extra: 1273/1197,
  38700. bottom: 0/1273
  38701. }
  38702. },
  38703. },
  38704. [
  38705. {
  38706. name: "Normal",
  38707. height: math.unit(4 + 5/12, "feet"),
  38708. default: true
  38709. },
  38710. ]
  38711. ))
  38712. characterMakers.push(() => makeCharacter(
  38713. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38714. {
  38715. front: {
  38716. height: math.unit(8 + 4/12, "feet"),
  38717. name: "Front",
  38718. image: {
  38719. source: "./media/characters/vick/front.svg",
  38720. extra: 2187/2118,
  38721. bottom: 47/2234
  38722. }
  38723. },
  38724. },
  38725. [
  38726. {
  38727. name: "Normal",
  38728. height: math.unit(8 + 4/12, "feet"),
  38729. default: true
  38730. },
  38731. ]
  38732. ))
  38733. characterMakers.push(() => makeCharacter(
  38734. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38735. {
  38736. front: {
  38737. height: math.unit(5 + 5/12, "feet"),
  38738. name: "Front",
  38739. image: {
  38740. source: "./media/characters/mitsy/front.svg",
  38741. extra: 1842/1695,
  38742. bottom: 0/1842
  38743. }
  38744. },
  38745. },
  38746. [
  38747. {
  38748. name: "Normal",
  38749. height: math.unit(5 + 5/12, "feet"),
  38750. default: true
  38751. },
  38752. ]
  38753. ))
  38754. characterMakers.push(() => makeCharacter(
  38755. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38756. {
  38757. front: {
  38758. height: math.unit(6 + 3/12, "feet"),
  38759. name: "Front",
  38760. image: {
  38761. source: "./media/characters/silvy/front.svg",
  38762. extra: 1995/1836,
  38763. bottom: 225/2220
  38764. }
  38765. },
  38766. },
  38767. [
  38768. {
  38769. name: "Normal",
  38770. height: math.unit(6 + 3/12, "feet"),
  38771. default: true
  38772. },
  38773. ]
  38774. ))
  38775. characterMakers.push(() => makeCharacter(
  38776. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38777. {
  38778. front: {
  38779. height: math.unit(3 + 8/12, "feet"),
  38780. name: "Front",
  38781. image: {
  38782. source: "./media/characters/rodney/front.svg",
  38783. extra: 1956/1747,
  38784. bottom: 31/1987
  38785. }
  38786. },
  38787. frontDressed: {
  38788. height: math.unit(2.9, "feet"),
  38789. name: "Front (Dressed)",
  38790. image: {
  38791. source: "./media/characters/rodney/front-dressed.svg",
  38792. extra: 1382/1241,
  38793. bottom: 385/1767
  38794. }
  38795. },
  38796. },
  38797. [
  38798. {
  38799. name: "Normal",
  38800. height: math.unit(3 + 8/12, "feet"),
  38801. default: true
  38802. },
  38803. ]
  38804. ))
  38805. characterMakers.push(() => makeCharacter(
  38806. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38807. {
  38808. front: {
  38809. height: math.unit(5 + 9/12, "feet"),
  38810. weight: math.unit(194, "lbs"),
  38811. name: "Front",
  38812. image: {
  38813. source: "./media/characters/zakail-sudekai/front.svg",
  38814. extra: 2696/2533,
  38815. bottom: 248/2944
  38816. }
  38817. },
  38818. maw: {
  38819. height: math.unit(1.35, "feet"),
  38820. name: "Maw",
  38821. image: {
  38822. source: "./media/characters/zakail-sudekai/maw.svg"
  38823. }
  38824. },
  38825. },
  38826. [
  38827. {
  38828. name: "Normal",
  38829. height: math.unit(5 + 9/12, "feet"),
  38830. default: true
  38831. },
  38832. ]
  38833. ))
  38834. characterMakers.push(() => makeCharacter(
  38835. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38836. {
  38837. front: {
  38838. height: math.unit(8 + 4/12, "feet"),
  38839. weight: math.unit(1200, "lb"),
  38840. name: "Front",
  38841. image: {
  38842. source: "./media/characters/eleanor/front.svg",
  38843. extra: 1226/1192,
  38844. bottom: 52/1278
  38845. }
  38846. },
  38847. back: {
  38848. height: math.unit(8 + 4/12, "feet"),
  38849. weight: math.unit(1200, "lb"),
  38850. name: "Back",
  38851. image: {
  38852. source: "./media/characters/eleanor/back.svg",
  38853. extra: 1242/1184,
  38854. bottom: 60/1302
  38855. }
  38856. },
  38857. head: {
  38858. height: math.unit(2.62, "feet"),
  38859. name: "Head",
  38860. image: {
  38861. source: "./media/characters/eleanor/head.svg"
  38862. }
  38863. },
  38864. },
  38865. [
  38866. {
  38867. name: "Normal",
  38868. height: math.unit(8 + 4/12, "feet"),
  38869. default: true
  38870. },
  38871. ]
  38872. ))
  38873. characterMakers.push(() => makeCharacter(
  38874. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38875. {
  38876. front: {
  38877. height: math.unit(8 + 4/12, "feet"),
  38878. weight: math.unit(750, "lb"),
  38879. name: "Front",
  38880. image: {
  38881. source: "./media/characters/tanya/front.svg",
  38882. extra: 1749/1615,
  38883. bottom: 33/1782
  38884. }
  38885. },
  38886. },
  38887. [
  38888. {
  38889. name: "Normal",
  38890. height: math.unit(8 + 4/12, "feet"),
  38891. default: true
  38892. },
  38893. ]
  38894. ))
  38895. characterMakers.push(() => makeCharacter(
  38896. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38897. {
  38898. front: {
  38899. height: math.unit(5, "feet"),
  38900. weight: math.unit(225, "lb"),
  38901. name: "Front",
  38902. image: {
  38903. source: "./media/characters/cindy/front.svg",
  38904. extra: 1320/1250,
  38905. bottom: 42/1362
  38906. }
  38907. },
  38908. frontDressed: {
  38909. height: math.unit(5, "feet"),
  38910. weight: math.unit(225, "lb"),
  38911. name: "Front (Dressed)",
  38912. image: {
  38913. source: "./media/characters/cindy/front-dressed.svg",
  38914. extra: 1320/1250,
  38915. bottom: 42/1362
  38916. }
  38917. },
  38918. back: {
  38919. height: math.unit(5, "feet"),
  38920. weight: math.unit(225, "lb"),
  38921. name: "Back",
  38922. image: {
  38923. source: "./media/characters/cindy/back.svg",
  38924. extra: 1384/1346,
  38925. bottom: 14/1398
  38926. }
  38927. },
  38928. },
  38929. [
  38930. {
  38931. name: "Normal",
  38932. height: math.unit(5, "feet"),
  38933. default: true
  38934. },
  38935. ]
  38936. ))
  38937. characterMakers.push(() => makeCharacter(
  38938. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38939. {
  38940. front: {
  38941. height: math.unit(6 + 9/12, "feet"),
  38942. weight: math.unit(440, "lb"),
  38943. name: "Front",
  38944. image: {
  38945. source: "./media/characters/wilbur-owen/front.svg",
  38946. extra: 1575/1448,
  38947. bottom: 72/1647
  38948. }
  38949. },
  38950. back: {
  38951. height: math.unit(6 + 9/12, "feet"),
  38952. weight: math.unit(440, "lb"),
  38953. name: "Back",
  38954. image: {
  38955. source: "./media/characters/wilbur-owen/back.svg",
  38956. extra: 1578/1445,
  38957. bottom: 36/1614
  38958. }
  38959. },
  38960. },
  38961. [
  38962. {
  38963. name: "Normal",
  38964. height: math.unit(6 + 9/12, "feet"),
  38965. default: true
  38966. },
  38967. ]
  38968. ))
  38969. characterMakers.push(() => makeCharacter(
  38970. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38971. {
  38972. front: {
  38973. height: math.unit(6 + 5/12, "feet"),
  38974. weight: math.unit(650, "lb"),
  38975. name: "Front",
  38976. image: {
  38977. source: "./media/characters/keegan/front.svg",
  38978. extra: 2387/2198,
  38979. bottom: 33/2420
  38980. }
  38981. },
  38982. side: {
  38983. height: math.unit(6 + 5/12, "feet"),
  38984. weight: math.unit(650, "lb"),
  38985. name: "Side",
  38986. image: {
  38987. source: "./media/characters/keegan/side.svg",
  38988. extra: 2390/2202,
  38989. bottom: 47/2437
  38990. }
  38991. },
  38992. back: {
  38993. height: math.unit(6 + 5/12, "feet"),
  38994. weight: math.unit(650, "lb"),
  38995. name: "Back",
  38996. image: {
  38997. source: "./media/characters/keegan/back.svg",
  38998. extra: 2418/2268,
  38999. bottom: 15/2433
  39000. }
  39001. },
  39002. frontSfw: {
  39003. height: math.unit(6 + 5/12, "feet"),
  39004. weight: math.unit(650, "lb"),
  39005. name: "Front (SFW)",
  39006. image: {
  39007. source: "./media/characters/keegan/front-sfw.svg",
  39008. extra: 2387/2198,
  39009. bottom: 33/2420
  39010. }
  39011. },
  39012. beans: {
  39013. height: math.unit(1.85, "feet"),
  39014. name: "Beans",
  39015. image: {
  39016. source: "./media/characters/keegan/beans.svg"
  39017. }
  39018. },
  39019. },
  39020. [
  39021. {
  39022. name: "Normal",
  39023. height: math.unit(6 + 5/12, "feet"),
  39024. default: true
  39025. },
  39026. ]
  39027. ))
  39028. characterMakers.push(() => makeCharacter(
  39029. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39030. {
  39031. front: {
  39032. height: math.unit(9, "feet"),
  39033. name: "Front",
  39034. image: {
  39035. source: "./media/characters/colton/front.svg",
  39036. extra: 1589/1326,
  39037. bottom: 139/1728
  39038. }
  39039. },
  39040. },
  39041. [
  39042. {
  39043. name: "Normal",
  39044. height: math.unit(9, "feet"),
  39045. default: true
  39046. },
  39047. ]
  39048. ))
  39049. characterMakers.push(() => makeCharacter(
  39050. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39051. {
  39052. front: {
  39053. height: math.unit(2 + 9/12, "feet"),
  39054. name: "Front",
  39055. image: {
  39056. source: "./media/characters/bora/front.svg",
  39057. extra: 1265/1250,
  39058. bottom: 24/1289
  39059. }
  39060. },
  39061. },
  39062. [
  39063. {
  39064. name: "Normal",
  39065. height: math.unit(2 + 9/12, "feet"),
  39066. default: true
  39067. },
  39068. ]
  39069. ))
  39070. characterMakers.push(() => makeCharacter(
  39071. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39072. {
  39073. front: {
  39074. height: math.unit(8, "feet"),
  39075. name: "Front",
  39076. image: {
  39077. source: "./media/characters/myu-myu/front.svg",
  39078. extra: 1949/1857,
  39079. bottom: 90/2039
  39080. }
  39081. },
  39082. },
  39083. [
  39084. {
  39085. name: "Normal",
  39086. height: math.unit(8, "feet"),
  39087. default: true
  39088. },
  39089. {
  39090. name: "Big",
  39091. height: math.unit(15, "feet")
  39092. },
  39093. {
  39094. name: "BIG",
  39095. height: math.unit(25, "feet")
  39096. },
  39097. ]
  39098. ))
  39099. characterMakers.push(() => makeCharacter(
  39100. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39101. {
  39102. side: {
  39103. height: math.unit(7 + 5/12, "feet"),
  39104. weight: math.unit(2800, "lb"),
  39105. name: "Side",
  39106. image: {
  39107. source: "./media/characters/haloren/side.svg",
  39108. extra: 1793/409,
  39109. bottom: 59/1852
  39110. }
  39111. },
  39112. frontPaw: {
  39113. height: math.unit(2.36, "feet"),
  39114. name: "Front paw",
  39115. image: {
  39116. source: "./media/characters/haloren/front-paw.svg"
  39117. }
  39118. },
  39119. hindPaw: {
  39120. height: math.unit(3.18, "feet"),
  39121. name: "Hind paw",
  39122. image: {
  39123. source: "./media/characters/haloren/hind-paw.svg"
  39124. }
  39125. },
  39126. maw: {
  39127. height: math.unit(5.05, "feet"),
  39128. name: "Maw",
  39129. image: {
  39130. source: "./media/characters/haloren/maw.svg"
  39131. }
  39132. },
  39133. dick: {
  39134. height: math.unit(2.90, "feet"),
  39135. name: "Dick",
  39136. image: {
  39137. source: "./media/characters/haloren/dick.svg"
  39138. }
  39139. },
  39140. },
  39141. [
  39142. {
  39143. name: "Normal",
  39144. height: math.unit(7 + 5/12, "feet"),
  39145. default: true
  39146. },
  39147. {
  39148. name: "Enhanced",
  39149. height: math.unit(14 + 3/12, "feet")
  39150. },
  39151. ]
  39152. ))
  39153. characterMakers.push(() => makeCharacter(
  39154. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39155. {
  39156. front: {
  39157. height: math.unit(171, "cm"),
  39158. name: "Front",
  39159. image: {
  39160. source: "./media/characters/kimmy/front.svg",
  39161. extra: 1491/1435,
  39162. bottom: 53/1544
  39163. }
  39164. },
  39165. },
  39166. [
  39167. {
  39168. name: "Small",
  39169. height: math.unit(9, "cm")
  39170. },
  39171. {
  39172. name: "Normal",
  39173. height: math.unit(171, "cm"),
  39174. default: true
  39175. },
  39176. ]
  39177. ))
  39178. characterMakers.push(() => makeCharacter(
  39179. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39180. {
  39181. front: {
  39182. height: math.unit(8, "feet"),
  39183. weight: math.unit(300, "lb"),
  39184. name: "Front",
  39185. image: {
  39186. source: "./media/characters/galeboomer/front.svg",
  39187. extra: 4651/4415,
  39188. bottom: 162/4813
  39189. }
  39190. },
  39191. back: {
  39192. height: math.unit(8, "feet"),
  39193. weight: math.unit(300, "lb"),
  39194. name: "Back",
  39195. image: {
  39196. source: "./media/characters/galeboomer/back.svg",
  39197. extra: 4544/4314,
  39198. bottom: 16/4560
  39199. }
  39200. },
  39201. frontAlt: {
  39202. height: math.unit(8, "feet"),
  39203. weight: math.unit(300, "lb"),
  39204. name: "Front (Alt)",
  39205. image: {
  39206. source: "./media/characters/galeboomer/front-alt.svg",
  39207. extra: 4458/4228,
  39208. bottom: 68/4526
  39209. }
  39210. },
  39211. maw: {
  39212. height: math.unit(1.2, "feet"),
  39213. name: "Maw",
  39214. image: {
  39215. source: "./media/characters/galeboomer/maw.svg"
  39216. }
  39217. },
  39218. },
  39219. [
  39220. {
  39221. name: "Normal",
  39222. height: math.unit(8, "feet"),
  39223. default: true
  39224. },
  39225. ]
  39226. ))
  39227. characterMakers.push(() => makeCharacter(
  39228. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39229. {
  39230. front: {
  39231. height: math.unit(5 + 9/12, "feet"),
  39232. weight: math.unit(120, "lb"),
  39233. name: "Front",
  39234. image: {
  39235. source: "./media/characters/chyr/front.svg",
  39236. extra: 1323/1254,
  39237. bottom: 63/1386
  39238. }
  39239. },
  39240. back: {
  39241. height: math.unit(5 + 9/12, "feet"),
  39242. weight: math.unit(120, "lb"),
  39243. name: "Back",
  39244. image: {
  39245. source: "./media/characters/chyr/back.svg",
  39246. extra: 1323/1252,
  39247. bottom: 48/1371
  39248. }
  39249. },
  39250. },
  39251. [
  39252. {
  39253. name: "Normal",
  39254. height: math.unit(5 + 9/12, "feet"),
  39255. default: true
  39256. },
  39257. ]
  39258. ))
  39259. characterMakers.push(() => makeCharacter(
  39260. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39261. {
  39262. front: {
  39263. height: math.unit(7, "feet"),
  39264. weight: math.unit(310, "lb"),
  39265. name: "Front",
  39266. image: {
  39267. source: "./media/characters/solarus/front.svg",
  39268. extra: 2415/2021,
  39269. bottom: 103/2518
  39270. }
  39271. },
  39272. back: {
  39273. height: math.unit(7, "feet"),
  39274. weight: math.unit(310, "lb"),
  39275. name: "Back",
  39276. image: {
  39277. source: "./media/characters/solarus/back.svg",
  39278. extra: 2463/2089,
  39279. bottom: 79/2542
  39280. }
  39281. },
  39282. },
  39283. [
  39284. {
  39285. name: "Normal",
  39286. height: math.unit(7, "feet"),
  39287. default: true
  39288. },
  39289. ]
  39290. ))
  39291. characterMakers.push(() => makeCharacter(
  39292. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39293. {
  39294. front: {
  39295. height: math.unit(16, "feet"),
  39296. name: "Front",
  39297. image: {
  39298. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39299. extra: 1844/1780,
  39300. bottom: 58/1902
  39301. }
  39302. },
  39303. winterCoat: {
  39304. height: math.unit(16, "feet"),
  39305. name: "Winter Coat",
  39306. image: {
  39307. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39308. extra: 1807/1775,
  39309. bottom: 69/1876
  39310. }
  39311. },
  39312. },
  39313. [
  39314. {
  39315. name: "Normal",
  39316. height: math.unit(16, "feet"),
  39317. default: true
  39318. },
  39319. {
  39320. name: "Chicago Size",
  39321. height: math.unit(560, "feet")
  39322. },
  39323. ]
  39324. ))
  39325. characterMakers.push(() => makeCharacter(
  39326. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39327. {
  39328. front: {
  39329. height: math.unit(11 + 6/12, "feet"),
  39330. weight: math.unit(1366, "lb"),
  39331. name: "Front",
  39332. image: {
  39333. source: "./media/characters/lexor/front.svg",
  39334. extra: 1560/1481,
  39335. bottom: 211/1771
  39336. }
  39337. },
  39338. back: {
  39339. height: math.unit(11 + 6/12, "feet"),
  39340. weight: math.unit(1366, "lb"),
  39341. name: "Back",
  39342. image: {
  39343. source: "./media/characters/lexor/back.svg",
  39344. extra: 1614/1533,
  39345. bottom: 76/1690
  39346. }
  39347. },
  39348. maw: {
  39349. height: math.unit(3, "feet"),
  39350. name: "Maw",
  39351. image: {
  39352. source: "./media/characters/lexor/maw.svg"
  39353. }
  39354. },
  39355. dick: {
  39356. height: math.unit(2.59, "feet"),
  39357. name: "Dick",
  39358. image: {
  39359. source: "./media/characters/lexor/dick.svg"
  39360. }
  39361. },
  39362. },
  39363. [
  39364. {
  39365. name: "Normal",
  39366. height: math.unit(11 + 6/12, "feet"),
  39367. default: true
  39368. },
  39369. ]
  39370. ))
  39371. characterMakers.push(() => makeCharacter(
  39372. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39373. {
  39374. front: {
  39375. height: math.unit(5 + 8/12, "feet"),
  39376. name: "Front",
  39377. image: {
  39378. source: "./media/characters/magnum/front.svg",
  39379. extra: 942/855,
  39380. bottom: 26/968
  39381. }
  39382. },
  39383. },
  39384. [
  39385. {
  39386. name: "Normal",
  39387. height: math.unit(5 + 8/12, "feet"),
  39388. default: true
  39389. },
  39390. ]
  39391. ))
  39392. characterMakers.push(() => makeCharacter(
  39393. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39394. {
  39395. front: {
  39396. height: math.unit(18 + 4/12, "feet"),
  39397. weight: math.unit(1500, "kg"),
  39398. name: "Front",
  39399. image: {
  39400. source: "./media/characters/solas-sharpsman/front.svg",
  39401. extra: 1698/1589,
  39402. bottom: 0/1698
  39403. }
  39404. },
  39405. },
  39406. [
  39407. {
  39408. name: "Normal",
  39409. height: math.unit(18 + 4/12, "feet"),
  39410. default: true
  39411. },
  39412. ]
  39413. ))
  39414. characterMakers.push(() => makeCharacter(
  39415. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39416. {
  39417. front: {
  39418. height: math.unit(5 + 5/12, "feet"),
  39419. weight: math.unit(180, "lb"),
  39420. name: "Front",
  39421. image: {
  39422. source: "./media/characters/october/front.svg",
  39423. extra: 1800/1650,
  39424. bottom: 0/1800
  39425. }
  39426. },
  39427. frontNsfw: {
  39428. height: math.unit(5 + 5/12, "feet"),
  39429. weight: math.unit(180, "lb"),
  39430. name: "Front (NSFW)",
  39431. image: {
  39432. source: "./media/characters/october/front-nsfw.svg",
  39433. extra: 1392/1307,
  39434. bottom: 42/1434
  39435. }
  39436. },
  39437. },
  39438. [
  39439. {
  39440. name: "Normal",
  39441. height: math.unit(5 + 5/12, "feet"),
  39442. default: true
  39443. },
  39444. ]
  39445. ))
  39446. characterMakers.push(() => makeCharacter(
  39447. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39448. {
  39449. front: {
  39450. height: math.unit(8 + 6/12, "feet"),
  39451. name: "Front",
  39452. image: {
  39453. source: "./media/characters/essynkardi/front.svg",
  39454. extra: 1541/1457,
  39455. bottom: 47/1588
  39456. }
  39457. },
  39458. },
  39459. [
  39460. {
  39461. name: "Normal",
  39462. height: math.unit(8 + 6/12, "feet"),
  39463. default: true
  39464. },
  39465. ]
  39466. ))
  39467. characterMakers.push(() => makeCharacter(
  39468. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39469. {
  39470. front: {
  39471. height: math.unit(6 + 6/12, "feet"),
  39472. weight: math.unit(7, "lb"),
  39473. name: "Front",
  39474. image: {
  39475. source: "./media/characters/icky/front.svg",
  39476. extra: 813/782,
  39477. bottom: 66/879
  39478. }
  39479. },
  39480. back: {
  39481. height: math.unit(6 + 6/12, "feet"),
  39482. weight: math.unit(7, "lb"),
  39483. name: "Back",
  39484. image: {
  39485. source: "./media/characters/icky/back.svg",
  39486. extra: 754/735,
  39487. bottom: 56/810
  39488. }
  39489. },
  39490. },
  39491. [
  39492. {
  39493. name: "Normal",
  39494. height: math.unit(6 + 6/12, "feet"),
  39495. default: true
  39496. },
  39497. ]
  39498. ))
  39499. characterMakers.push(() => makeCharacter(
  39500. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39501. {
  39502. front: {
  39503. height: math.unit(15, "feet"),
  39504. name: "Front",
  39505. image: {
  39506. source: "./media/characters/rojas/front.svg",
  39507. extra: 1462/1408,
  39508. bottom: 95/1557
  39509. }
  39510. },
  39511. back: {
  39512. height: math.unit(15, "feet"),
  39513. name: "Back",
  39514. image: {
  39515. source: "./media/characters/rojas/back.svg",
  39516. extra: 1023/954,
  39517. bottom: 28/1051
  39518. }
  39519. },
  39520. },
  39521. [
  39522. {
  39523. name: "Normal",
  39524. height: math.unit(15, "feet"),
  39525. default: true
  39526. },
  39527. ]
  39528. ))
  39529. characterMakers.push(() => makeCharacter(
  39530. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39531. {
  39532. frontHuman: {
  39533. height: math.unit(5 + 7/12, "feet"),
  39534. name: "Front (Human)",
  39535. image: {
  39536. source: "./media/characters/alek-dryagan/front-human.svg",
  39537. extra: 1687/1667,
  39538. bottom: 69/1756
  39539. }
  39540. },
  39541. backHuman: {
  39542. height: math.unit(5 + 7/12, "feet"),
  39543. name: "Back (Human)",
  39544. image: {
  39545. source: "./media/characters/alek-dryagan/back-human.svg",
  39546. extra: 1670/1649,
  39547. bottom: 65/1735
  39548. }
  39549. },
  39550. frontDemi: {
  39551. height: math.unit(65, "feet"),
  39552. name: "Front (Demi)",
  39553. image: {
  39554. source: "./media/characters/alek-dryagan/front-demi.svg",
  39555. extra: 1669/1642,
  39556. bottom: 49/1718
  39557. }
  39558. },
  39559. backDemi: {
  39560. height: math.unit(65, "feet"),
  39561. name: "Back (Demi)",
  39562. image: {
  39563. source: "./media/characters/alek-dryagan/back-demi.svg",
  39564. extra: 1658/1637,
  39565. bottom: 40/1698
  39566. }
  39567. },
  39568. mawHuman: {
  39569. height: math.unit(0.3, "feet"),
  39570. name: "Maw (Human)",
  39571. image: {
  39572. source: "./media/characters/alek-dryagan/maw-human.svg"
  39573. }
  39574. },
  39575. mawDemi: {
  39576. height: math.unit(3.8, "feet"),
  39577. name: "Maw (Demi)",
  39578. image: {
  39579. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39580. }
  39581. },
  39582. },
  39583. [
  39584. {
  39585. name: "Normal",
  39586. height: math.unit(5 + 7/12, "feet"),
  39587. default: true
  39588. },
  39589. ]
  39590. ))
  39591. characterMakers.push(() => makeCharacter(
  39592. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39593. {
  39594. frontHuman: {
  39595. height: math.unit(5 + 2/12, "feet"),
  39596. name: "Front (Human)",
  39597. image: {
  39598. source: "./media/characters/gen/front-human.svg",
  39599. extra: 1627/1538,
  39600. bottom: 71/1698
  39601. }
  39602. },
  39603. backHuman: {
  39604. height: math.unit(5 + 2/12, "feet"),
  39605. name: "Back (Human)",
  39606. image: {
  39607. source: "./media/characters/gen/back-human.svg",
  39608. extra: 1638/1548,
  39609. bottom: 69/1707
  39610. }
  39611. },
  39612. frontDemi: {
  39613. height: math.unit(5 + 2/12, "feet"),
  39614. name: "Front (Demi)",
  39615. image: {
  39616. source: "./media/characters/gen/front-demi.svg",
  39617. extra: 1627/1538,
  39618. bottom: 71/1698
  39619. }
  39620. },
  39621. backDemi: {
  39622. height: math.unit(5 + 2/12, "feet"),
  39623. name: "Back (Demi)",
  39624. image: {
  39625. source: "./media/characters/gen/back-demi.svg",
  39626. extra: 1638/1548,
  39627. bottom: 69/1707
  39628. }
  39629. },
  39630. },
  39631. [
  39632. {
  39633. name: "Normal",
  39634. height: math.unit(5 + 2/12, "feet"),
  39635. default: true
  39636. },
  39637. ]
  39638. ))
  39639. characterMakers.push(() => makeCharacter(
  39640. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39641. {
  39642. frontImp: {
  39643. height: math.unit(1 + 11/12, "feet"),
  39644. name: "Front (Imp)",
  39645. image: {
  39646. source: "./media/characters/max-kobold/front-imp.svg",
  39647. extra: 1238/1134,
  39648. bottom: 81/1319
  39649. }
  39650. },
  39651. backImp: {
  39652. height: math.unit(1 + 11/12, "feet"),
  39653. name: "Back (Imp)",
  39654. image: {
  39655. source: "./media/characters/max-kobold/back-imp.svg",
  39656. extra: 1334/1175,
  39657. bottom: 34/1368
  39658. }
  39659. },
  39660. frontDemi: {
  39661. height: math.unit(5 + 9/12, "feet"),
  39662. name: "Front (Demi)",
  39663. image: {
  39664. source: "./media/characters/max-kobold/front-demi.svg",
  39665. extra: 1715/1685,
  39666. bottom: 54/1769
  39667. }
  39668. },
  39669. backDemi: {
  39670. height: math.unit(5 + 9/12, "feet"),
  39671. name: "Back (Demi)",
  39672. image: {
  39673. source: "./media/characters/max-kobold/back-demi.svg",
  39674. extra: 1752/1729,
  39675. bottom: 41/1793
  39676. }
  39677. },
  39678. handImp: {
  39679. height: math.unit(0.45, "feet"),
  39680. name: "Hand (Imp)",
  39681. image: {
  39682. source: "./media/characters/max-kobold/hand.svg"
  39683. }
  39684. },
  39685. pawImp: {
  39686. height: math.unit(0.46, "feet"),
  39687. name: "Paw (Imp)",
  39688. image: {
  39689. source: "./media/characters/max-kobold/paw.svg"
  39690. }
  39691. },
  39692. handDemi: {
  39693. height: math.unit(0.80, "feet"),
  39694. name: "Hand (Demi)",
  39695. image: {
  39696. source: "./media/characters/max-kobold/hand.svg"
  39697. }
  39698. },
  39699. pawDemi: {
  39700. height: math.unit(1.1, "feet"),
  39701. name: "Paw (Demi)",
  39702. image: {
  39703. source: "./media/characters/max-kobold/paw.svg"
  39704. }
  39705. },
  39706. headImp: {
  39707. height: math.unit(1.33, "feet"),
  39708. name: "Head (Imp)",
  39709. image: {
  39710. source: "./media/characters/max-kobold/head-imp.svg"
  39711. }
  39712. },
  39713. mawImp: {
  39714. height: math.unit(0.75, "feet"),
  39715. name: "Maw (Imp)",
  39716. image: {
  39717. source: "./media/characters/max-kobold/maw-imp.svg"
  39718. }
  39719. },
  39720. mawDemi: {
  39721. height: math.unit(0.42, "feet"),
  39722. name: "Maw (Demi)",
  39723. image: {
  39724. source: "./media/characters/max-kobold/maw-demi.svg"
  39725. }
  39726. },
  39727. },
  39728. [
  39729. {
  39730. name: "Normal",
  39731. height: math.unit(1 + 11/12, "feet"),
  39732. default: true
  39733. },
  39734. ]
  39735. ))
  39736. characterMakers.push(() => makeCharacter(
  39737. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39738. {
  39739. front: {
  39740. height: math.unit(7 + 5/12, "feet"),
  39741. name: "Front",
  39742. image: {
  39743. source: "./media/characters/carbon/front.svg",
  39744. extra: 1754/1689,
  39745. bottom: 65/1819
  39746. }
  39747. },
  39748. back: {
  39749. height: math.unit(7 + 5/12, "feet"),
  39750. name: "Back",
  39751. image: {
  39752. source: "./media/characters/carbon/back.svg",
  39753. extra: 1762/1695,
  39754. bottom: 24/1786
  39755. }
  39756. },
  39757. frontGigantamax: {
  39758. height: math.unit(150, "feet"),
  39759. name: "Front (Gigantamax)",
  39760. image: {
  39761. source: "./media/characters/carbon/front-gigantamax.svg",
  39762. extra: 1826/1669,
  39763. bottom: 59/1885
  39764. }
  39765. },
  39766. backGigantamax: {
  39767. height: math.unit(150, "feet"),
  39768. name: "Back (Gigantamax)",
  39769. image: {
  39770. source: "./media/characters/carbon/back-gigantamax.svg",
  39771. extra: 1796/1653,
  39772. bottom: 53/1849
  39773. }
  39774. },
  39775. maw: {
  39776. height: math.unit(0.48, "feet"),
  39777. name: "Maw",
  39778. image: {
  39779. source: "./media/characters/carbon/maw.svg"
  39780. }
  39781. },
  39782. mawGigantamax: {
  39783. height: math.unit(7.5, "feet"),
  39784. name: "Maw (Gigantamax)",
  39785. image: {
  39786. source: "./media/characters/carbon/maw-gigantamax.svg"
  39787. }
  39788. },
  39789. },
  39790. [
  39791. {
  39792. name: "Normal",
  39793. height: math.unit(7 + 5/12, "feet"),
  39794. default: true
  39795. },
  39796. ]
  39797. ))
  39798. characterMakers.push(() => makeCharacter(
  39799. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39800. {
  39801. front: {
  39802. height: math.unit(6, "feet"),
  39803. name: "Front",
  39804. image: {
  39805. source: "./media/characters/maverick/front.svg",
  39806. extra: 1672/1661,
  39807. bottom: 85/1757
  39808. }
  39809. },
  39810. back: {
  39811. height: math.unit(6, "feet"),
  39812. name: "Back",
  39813. image: {
  39814. source: "./media/characters/maverick/back.svg",
  39815. extra: 1642/1631,
  39816. bottom: 38/1680
  39817. }
  39818. },
  39819. },
  39820. [
  39821. {
  39822. name: "Normal",
  39823. height: math.unit(6, "feet"),
  39824. default: true
  39825. },
  39826. ]
  39827. ))
  39828. characterMakers.push(() => makeCharacter(
  39829. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39830. {
  39831. front: {
  39832. height: math.unit(15, "feet"),
  39833. weight: math.unit(615, "lb"),
  39834. name: "Front",
  39835. image: {
  39836. source: "./media/characters/grockle/front.svg",
  39837. extra: 1535/1427,
  39838. bottom: 56/1591
  39839. }
  39840. },
  39841. },
  39842. [
  39843. {
  39844. name: "Normal",
  39845. height: math.unit(15, "feet"),
  39846. default: true
  39847. },
  39848. {
  39849. name: "Large",
  39850. height: math.unit(150, "feet")
  39851. },
  39852. {
  39853. name: "Macro",
  39854. height: math.unit(1876, "feet")
  39855. },
  39856. {
  39857. name: "Mega Macro",
  39858. height: math.unit(121940, "feet")
  39859. },
  39860. {
  39861. name: "Giga Macro",
  39862. height: math.unit(750, "km")
  39863. },
  39864. {
  39865. name: "Tera Macro",
  39866. height: math.unit(750000, "km")
  39867. },
  39868. {
  39869. name: "Galactic",
  39870. height: math.unit(1.4e5, "km")
  39871. },
  39872. {
  39873. name: "Godlike",
  39874. height: math.unit(9.8e280, "galaxies")
  39875. },
  39876. ]
  39877. ))
  39878. characterMakers.push(() => makeCharacter(
  39879. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39880. {
  39881. front: {
  39882. height: math.unit(11, "meters"),
  39883. weight: math.unit(20, "tonnes"),
  39884. name: "Front",
  39885. image: {
  39886. source: "./media/characters/alistair/front.svg",
  39887. extra: 1265/1009,
  39888. bottom: 93/1358
  39889. }
  39890. },
  39891. },
  39892. [
  39893. {
  39894. name: "Normal",
  39895. height: math.unit(11, "meters"),
  39896. default: true
  39897. },
  39898. ]
  39899. ))
  39900. characterMakers.push(() => makeCharacter(
  39901. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39902. {
  39903. front: {
  39904. height: math.unit(5 + 8/12, "feet"),
  39905. name: "Front",
  39906. image: {
  39907. source: "./media/characters/haruka/front.svg",
  39908. extra: 2012/1952,
  39909. bottom: 0/2012
  39910. }
  39911. },
  39912. },
  39913. [
  39914. {
  39915. name: "Normal",
  39916. height: math.unit(5 + 8/12, "feet"),
  39917. default: true
  39918. },
  39919. ]
  39920. ))
  39921. characterMakers.push(() => makeCharacter(
  39922. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39923. {
  39924. back: {
  39925. height: math.unit(9, "feet"),
  39926. name: "Back",
  39927. image: {
  39928. source: "./media/characters/vivian-sylveon/back.svg",
  39929. extra: 1853/1714,
  39930. bottom: 0/1853
  39931. }
  39932. },
  39933. hyper: {
  39934. height: math.unit(5.58, "feet"),
  39935. name: "Hyper",
  39936. preyCapacity: math.unit(2.80616218797, "m^3"),
  39937. image: {
  39938. source: "./media/characters/vivian-sylveon/hyper.svg",
  39939. extra: 999/676,
  39940. bottom: 697/1696
  39941. },
  39942. },
  39943. paw: {
  39944. height: math.unit(1.8, "feet"),
  39945. name: "Paw",
  39946. image: {
  39947. source: "./media/characters/vivian-sylveon/paw.svg"
  39948. }
  39949. },
  39950. danger: {
  39951. height: math.unit(7.5, "feet"),
  39952. name: "DANGER",
  39953. image: {
  39954. source: "./media/characters/vivian-sylveon/danger.svg"
  39955. }
  39956. },
  39957. },
  39958. [
  39959. {
  39960. name: "Normal",
  39961. height: math.unit(9, "feet"),
  39962. default: true
  39963. },
  39964. {
  39965. name: "Macro",
  39966. height: math.unit(500, "feet")
  39967. },
  39968. {
  39969. name: "Megamacro",
  39970. height: math.unit(600, "miles")
  39971. },
  39972. {
  39973. name: "Gigamacro",
  39974. height: math.unit(30000, "miles")
  39975. },
  39976. ]
  39977. ))
  39978. characterMakers.push(() => makeCharacter(
  39979. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39980. {
  39981. anthro: {
  39982. height: math.unit(5 + 10/12, "feet"),
  39983. weight: math.unit(100, "lb"),
  39984. name: "Anthro",
  39985. image: {
  39986. source: "./media/characters/daiki/anthro.svg",
  39987. extra: 1115/1027,
  39988. bottom: 69/1184
  39989. }
  39990. },
  39991. feral: {
  39992. height: math.unit(200, "feet"),
  39993. name: "Feral",
  39994. image: {
  39995. source: "./media/characters/daiki/feral.svg",
  39996. extra: 1256/313,
  39997. bottom: 39/1295
  39998. }
  39999. },
  40000. feralHead: {
  40001. height: math.unit(171, "feet"),
  40002. name: "Feral Head",
  40003. image: {
  40004. source: "./media/characters/daiki/feral-head.svg"
  40005. }
  40006. },
  40007. manaDragon: {
  40008. height: math.unit(170, "meters"),
  40009. name: "Mana-dragon",
  40010. image: {
  40011. source: "./media/characters/daiki/mana-dragon.svg",
  40012. extra: 763/420,
  40013. bottom: 97/860
  40014. }
  40015. },
  40016. },
  40017. [
  40018. {
  40019. name: "Normal",
  40020. height: math.unit(5 + 10/12, "feet"),
  40021. default: true
  40022. },
  40023. ]
  40024. ))
  40025. characterMakers.push(() => makeCharacter(
  40026. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40027. {
  40028. fullyEquippedFront: {
  40029. height: math.unit(3 + 1/12, "feet"),
  40030. weight: math.unit(24, "lb"),
  40031. name: "Fully Equipped (Front)",
  40032. image: {
  40033. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40034. extra: 687/605,
  40035. bottom: 18/705
  40036. }
  40037. },
  40038. fullyEquippedBack: {
  40039. height: math.unit(3 + 1/12, "feet"),
  40040. weight: math.unit(24, "lb"),
  40041. name: "Fully Equipped (Back)",
  40042. image: {
  40043. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40044. extra: 689/590,
  40045. bottom: 18/707
  40046. }
  40047. },
  40048. dailyWear: {
  40049. height: math.unit(3 + 1/12, "feet"),
  40050. weight: math.unit(24, "lb"),
  40051. name: "Daily Wear",
  40052. image: {
  40053. source: "./media/characters/tea-spot/daily-wear.svg",
  40054. extra: 701/620,
  40055. bottom: 21/722
  40056. }
  40057. },
  40058. maidWork: {
  40059. height: math.unit(3 + 1/12, "feet"),
  40060. weight: math.unit(24, "lb"),
  40061. name: "Maid Work",
  40062. image: {
  40063. source: "./media/characters/tea-spot/maid-work.svg",
  40064. extra: 693/609,
  40065. bottom: 15/708
  40066. }
  40067. },
  40068. },
  40069. [
  40070. {
  40071. name: "Normal",
  40072. height: math.unit(3 + 1/12, "feet"),
  40073. default: true
  40074. },
  40075. ]
  40076. ))
  40077. characterMakers.push(() => makeCharacter(
  40078. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40079. {
  40080. front: {
  40081. height: math.unit(175, "cm"),
  40082. weight: math.unit(75, "kg"),
  40083. name: "Front",
  40084. image: {
  40085. source: "./media/characters/chee/front.svg",
  40086. extra: 1796/1740,
  40087. bottom: 40/1836
  40088. }
  40089. },
  40090. },
  40091. [
  40092. {
  40093. name: "Micro-Micro",
  40094. height: math.unit(1, "nm")
  40095. },
  40096. {
  40097. name: "Micro-erst",
  40098. height: math.unit(1, "micrometer")
  40099. },
  40100. {
  40101. name: "Micro-er",
  40102. height: math.unit(1, "cm")
  40103. },
  40104. {
  40105. name: "Normal",
  40106. height: math.unit(175, "cm"),
  40107. default: true
  40108. },
  40109. {
  40110. name: "Macro",
  40111. height: math.unit(100, "m")
  40112. },
  40113. {
  40114. name: "Macro-er",
  40115. height: math.unit(1, "km")
  40116. },
  40117. {
  40118. name: "Macro-erst",
  40119. height: math.unit(10, "km")
  40120. },
  40121. {
  40122. name: "Macro-Macro",
  40123. height: math.unit(100, "km")
  40124. },
  40125. ]
  40126. ))
  40127. characterMakers.push(() => makeCharacter(
  40128. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40129. {
  40130. front: {
  40131. height: math.unit(11 + 9/12, "feet"),
  40132. weight: math.unit(935, "lb"),
  40133. name: "Front",
  40134. image: {
  40135. source: "./media/characters/kingsley/front.svg",
  40136. extra: 1803/1674,
  40137. bottom: 127/1930
  40138. }
  40139. },
  40140. frontNude: {
  40141. height: math.unit(11 + 9/12, "feet"),
  40142. weight: math.unit(935, "lb"),
  40143. name: "Front (Nude)",
  40144. image: {
  40145. source: "./media/characters/kingsley/front-nude.svg",
  40146. extra: 1803/1674,
  40147. bottom: 127/1930
  40148. }
  40149. },
  40150. },
  40151. [
  40152. {
  40153. name: "Normal",
  40154. height: math.unit(11 + 9/12, "feet"),
  40155. default: true
  40156. },
  40157. ]
  40158. ))
  40159. characterMakers.push(() => makeCharacter(
  40160. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40161. {
  40162. side: {
  40163. height: math.unit(9, "feet"),
  40164. name: "Side",
  40165. image: {
  40166. source: "./media/characters/rymel/side.svg",
  40167. extra: 792/469,
  40168. bottom: 121/913
  40169. }
  40170. },
  40171. maw: {
  40172. height: math.unit(2.4, "meters"),
  40173. name: "Maw",
  40174. image: {
  40175. source: "./media/characters/rymel/maw.svg"
  40176. }
  40177. },
  40178. },
  40179. [
  40180. {
  40181. name: "House Drake",
  40182. height: math.unit(2, "feet")
  40183. },
  40184. {
  40185. name: "Reduced",
  40186. height: math.unit(4.5, "feet")
  40187. },
  40188. {
  40189. name: "Normal",
  40190. height: math.unit(9, "feet"),
  40191. default: true
  40192. },
  40193. ]
  40194. ))
  40195. characterMakers.push(() => makeCharacter(
  40196. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40197. {
  40198. front: {
  40199. height: math.unit(1.74, "meters"),
  40200. weight: math.unit(55, "kg"),
  40201. name: "Front",
  40202. image: {
  40203. source: "./media/characters/rubus/front.svg",
  40204. extra: 1894/1742,
  40205. bottom: 44/1938
  40206. }
  40207. },
  40208. },
  40209. [
  40210. {
  40211. name: "Normal",
  40212. height: math.unit(1.74, "meters"),
  40213. default: true
  40214. },
  40215. ]
  40216. ))
  40217. characterMakers.push(() => makeCharacter(
  40218. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40219. {
  40220. front: {
  40221. height: math.unit(5 + 2/12, "feet"),
  40222. weight: math.unit(112, "lb"),
  40223. name: "Front",
  40224. image: {
  40225. source: "./media/characters/cassie-kingston/front.svg",
  40226. extra: 1438/1390,
  40227. bottom: 47/1485
  40228. }
  40229. },
  40230. },
  40231. [
  40232. {
  40233. name: "Normal",
  40234. height: math.unit(5 + 2/12, "feet"),
  40235. default: true
  40236. },
  40237. {
  40238. name: "Macro",
  40239. height: math.unit(128, "feet")
  40240. },
  40241. {
  40242. name: "Megamacro",
  40243. height: math.unit(2.56, "miles")
  40244. },
  40245. ]
  40246. ))
  40247. characterMakers.push(() => makeCharacter(
  40248. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40249. {
  40250. front: {
  40251. height: math.unit(7, "feet"),
  40252. name: "Front",
  40253. image: {
  40254. source: "./media/characters/fox/front.svg",
  40255. extra: 1798/1703,
  40256. bottom: 55/1853
  40257. }
  40258. },
  40259. back: {
  40260. height: math.unit(7, "feet"),
  40261. name: "Back",
  40262. image: {
  40263. source: "./media/characters/fox/back.svg",
  40264. extra: 1748/1649,
  40265. bottom: 32/1780
  40266. }
  40267. },
  40268. head: {
  40269. height: math.unit(1.95, "feet"),
  40270. name: "Head",
  40271. image: {
  40272. source: "./media/characters/fox/head.svg"
  40273. }
  40274. },
  40275. dick: {
  40276. height: math.unit(1.33, "feet"),
  40277. name: "Dick",
  40278. image: {
  40279. source: "./media/characters/fox/dick.svg"
  40280. }
  40281. },
  40282. foot: {
  40283. height: math.unit(1, "feet"),
  40284. name: "Foot",
  40285. image: {
  40286. source: "./media/characters/fox/foot.svg"
  40287. }
  40288. },
  40289. paw: {
  40290. height: math.unit(0.92, "feet"),
  40291. name: "Paw",
  40292. image: {
  40293. source: "./media/characters/fox/paw.svg"
  40294. }
  40295. },
  40296. },
  40297. [
  40298. {
  40299. name: "Small",
  40300. height: math.unit(3, "inches")
  40301. },
  40302. {
  40303. name: "\"Realistic\"",
  40304. height: math.unit(7, "feet")
  40305. },
  40306. {
  40307. name: "Normal",
  40308. height: math.unit(150, "feet"),
  40309. default: true
  40310. },
  40311. {
  40312. name: "BIG",
  40313. height: math.unit(1200, "feet")
  40314. },
  40315. {
  40316. name: "👀",
  40317. height: math.unit(5, "miles")
  40318. },
  40319. {
  40320. name: "👀👀👀",
  40321. height: math.unit(64, "miles")
  40322. },
  40323. ]
  40324. ))
  40325. characterMakers.push(() => makeCharacter(
  40326. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40327. {
  40328. front: {
  40329. height: math.unit(625, "feet"),
  40330. name: "Front",
  40331. image: {
  40332. source: "./media/characters/asonja-rossa/front.svg",
  40333. extra: 1833/1686,
  40334. bottom: 24/1857
  40335. }
  40336. },
  40337. back: {
  40338. height: math.unit(625, "feet"),
  40339. name: "Back",
  40340. image: {
  40341. source: "./media/characters/asonja-rossa/back.svg",
  40342. extra: 1852/1753,
  40343. bottom: 26/1878
  40344. }
  40345. },
  40346. },
  40347. [
  40348. {
  40349. name: "Macro",
  40350. height: math.unit(625, "feet"),
  40351. default: true
  40352. },
  40353. ]
  40354. ))
  40355. characterMakers.push(() => makeCharacter(
  40356. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40357. {
  40358. side: {
  40359. height: math.unit(8, "feet"),
  40360. name: "Side",
  40361. image: {
  40362. source: "./media/characters/rezukii/side.svg",
  40363. extra: 979/542,
  40364. bottom: 87/1066
  40365. }
  40366. },
  40367. sitting: {
  40368. height: math.unit(14.6, "feet"),
  40369. name: "Sitting",
  40370. image: {
  40371. source: "./media/characters/rezukii/sitting.svg",
  40372. extra: 1023/813,
  40373. bottom: 45/1068
  40374. }
  40375. },
  40376. },
  40377. [
  40378. {
  40379. name: "Tiny",
  40380. height: math.unit(2, "feet")
  40381. },
  40382. {
  40383. name: "Smol",
  40384. height: math.unit(4, "feet")
  40385. },
  40386. {
  40387. name: "Normal",
  40388. height: math.unit(8, "feet"),
  40389. default: true
  40390. },
  40391. {
  40392. name: "Big",
  40393. height: math.unit(12, "feet")
  40394. },
  40395. {
  40396. name: "Macro",
  40397. height: math.unit(30, "feet")
  40398. },
  40399. ]
  40400. ))
  40401. characterMakers.push(() => makeCharacter(
  40402. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40403. {
  40404. front: {
  40405. height: math.unit(14, "feet"),
  40406. weight: math.unit(9.5, "tonnes"),
  40407. name: "Front",
  40408. image: {
  40409. source: "./media/characters/dawnheart/front.svg",
  40410. extra: 2792/2675,
  40411. bottom: 64/2856
  40412. }
  40413. },
  40414. },
  40415. [
  40416. {
  40417. name: "Normal",
  40418. height: math.unit(14, "feet"),
  40419. default: true
  40420. },
  40421. ]
  40422. ))
  40423. characterMakers.push(() => makeCharacter(
  40424. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40425. {
  40426. front: {
  40427. height: math.unit(1.7, "m"),
  40428. name: "Front",
  40429. image: {
  40430. source: "./media/characters/gladi/front.svg",
  40431. extra: 1460/1362,
  40432. bottom: 19/1479
  40433. }
  40434. },
  40435. back: {
  40436. height: math.unit(1.7, "m"),
  40437. name: "Back",
  40438. image: {
  40439. source: "./media/characters/gladi/back.svg",
  40440. extra: 1459/1357,
  40441. bottom: 12/1471
  40442. }
  40443. },
  40444. feral: {
  40445. height: math.unit(2.05, "m"),
  40446. name: "Feral",
  40447. image: {
  40448. source: "./media/characters/gladi/feral.svg",
  40449. extra: 821/557,
  40450. bottom: 91/912
  40451. }
  40452. },
  40453. },
  40454. [
  40455. {
  40456. name: "Shortest",
  40457. height: math.unit(70, "cm")
  40458. },
  40459. {
  40460. name: "Normal",
  40461. height: math.unit(1.7, "m")
  40462. },
  40463. {
  40464. name: "Macro",
  40465. height: math.unit(10, "m"),
  40466. default: true
  40467. },
  40468. {
  40469. name: "Tallest",
  40470. height: math.unit(200, "m")
  40471. },
  40472. ]
  40473. ))
  40474. characterMakers.push(() => makeCharacter(
  40475. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40476. {
  40477. front: {
  40478. height: math.unit(5 + 7/12, "feet"),
  40479. weight: math.unit(2, "tons"),
  40480. name: "Front",
  40481. image: {
  40482. source: "./media/characters/erdno/front.svg",
  40483. extra: 1234/1129,
  40484. bottom: 35/1269
  40485. }
  40486. },
  40487. angled: {
  40488. height: math.unit(5 + 7/12, "feet"),
  40489. weight: math.unit(2, "tons"),
  40490. name: "Angled",
  40491. image: {
  40492. source: "./media/characters/erdno/angled.svg",
  40493. extra: 1185/1139,
  40494. bottom: 36/1221
  40495. }
  40496. },
  40497. side: {
  40498. height: math.unit(5 + 7/12, "feet"),
  40499. weight: math.unit(2, "tons"),
  40500. name: "Side",
  40501. image: {
  40502. source: "./media/characters/erdno/side.svg",
  40503. extra: 1191/1144,
  40504. bottom: 40/1231
  40505. }
  40506. },
  40507. back: {
  40508. height: math.unit(5 + 7/12, "feet"),
  40509. weight: math.unit(2, "tons"),
  40510. name: "Back",
  40511. image: {
  40512. source: "./media/characters/erdno/back.svg",
  40513. extra: 1202/1146,
  40514. bottom: 17/1219
  40515. }
  40516. },
  40517. frontNsfw: {
  40518. height: math.unit(5 + 7/12, "feet"),
  40519. weight: math.unit(2, "tons"),
  40520. name: "Front (NSFW)",
  40521. image: {
  40522. source: "./media/characters/erdno/front-nsfw.svg",
  40523. extra: 1234/1129,
  40524. bottom: 35/1269
  40525. }
  40526. },
  40527. angledNsfw: {
  40528. height: math.unit(5 + 7/12, "feet"),
  40529. weight: math.unit(2, "tons"),
  40530. name: "Angled (NSFW)",
  40531. image: {
  40532. source: "./media/characters/erdno/angled-nsfw.svg",
  40533. extra: 1185/1139,
  40534. bottom: 36/1221
  40535. }
  40536. },
  40537. sideNsfw: {
  40538. height: math.unit(5 + 7/12, "feet"),
  40539. weight: math.unit(2, "tons"),
  40540. name: "Side (NSFW)",
  40541. image: {
  40542. source: "./media/characters/erdno/side-nsfw.svg",
  40543. extra: 1191/1144,
  40544. bottom: 40/1231
  40545. }
  40546. },
  40547. backNsfw: {
  40548. height: math.unit(5 + 7/12, "feet"),
  40549. weight: math.unit(2, "tons"),
  40550. name: "Back (NSFW)",
  40551. image: {
  40552. source: "./media/characters/erdno/back-nsfw.svg",
  40553. extra: 1202/1146,
  40554. bottom: 17/1219
  40555. }
  40556. },
  40557. frontHyper: {
  40558. height: math.unit(5 + 7/12, "feet"),
  40559. weight: math.unit(2, "tons"),
  40560. name: "Front (Hyper)",
  40561. image: {
  40562. source: "./media/characters/erdno/front-hyper.svg",
  40563. extra: 1298/1136,
  40564. bottom: 35/1333
  40565. }
  40566. },
  40567. },
  40568. [
  40569. {
  40570. name: "Normal",
  40571. height: math.unit(5 + 7/12, "feet"),
  40572. default: true
  40573. },
  40574. {
  40575. name: "Big",
  40576. height: math.unit(5.7, "meters")
  40577. },
  40578. {
  40579. name: "Macro",
  40580. height: math.unit(5.7, "kilometers")
  40581. },
  40582. {
  40583. name: "Megamacro",
  40584. height: math.unit(5.7, "earths")
  40585. },
  40586. ]
  40587. ))
  40588. characterMakers.push(() => makeCharacter(
  40589. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40590. {
  40591. front: {
  40592. height: math.unit(5 + 10/12, "feet"),
  40593. weight: math.unit(150, "lb"),
  40594. name: "Front",
  40595. image: {
  40596. source: "./media/characters/jamie/front.svg",
  40597. extra: 1908/1768,
  40598. bottom: 19/1927
  40599. }
  40600. },
  40601. },
  40602. [
  40603. {
  40604. name: "Minimum",
  40605. height: math.unit(2, "cm")
  40606. },
  40607. {
  40608. name: "Micro",
  40609. height: math.unit(3, "inches")
  40610. },
  40611. {
  40612. name: "Normal",
  40613. height: math.unit(5 + 10/12, "feet"),
  40614. default: true
  40615. },
  40616. {
  40617. name: "Macro",
  40618. height: math.unit(150, "feet")
  40619. },
  40620. {
  40621. name: "Megamacro",
  40622. height: math.unit(10000, "m")
  40623. },
  40624. ]
  40625. ))
  40626. characterMakers.push(() => makeCharacter(
  40627. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40628. {
  40629. front: {
  40630. height: math.unit(2, "meters"),
  40631. weight: math.unit(100, "kg"),
  40632. name: "Front",
  40633. image: {
  40634. source: "./media/characters/shiron/front.svg",
  40635. extra: 2103/1985,
  40636. bottom: 98/2201
  40637. }
  40638. },
  40639. back: {
  40640. height: math.unit(2, "meters"),
  40641. weight: math.unit(100, "kg"),
  40642. name: "Back",
  40643. image: {
  40644. source: "./media/characters/shiron/back.svg",
  40645. extra: 2110/2015,
  40646. bottom: 89/2199
  40647. }
  40648. },
  40649. hand: {
  40650. height: math.unit(0.96, "feet"),
  40651. name: "Hand",
  40652. image: {
  40653. source: "./media/characters/shiron/hand.svg"
  40654. }
  40655. },
  40656. foot: {
  40657. height: math.unit(1.464, "feet"),
  40658. name: "Foot",
  40659. image: {
  40660. source: "./media/characters/shiron/foot.svg"
  40661. }
  40662. },
  40663. },
  40664. [
  40665. {
  40666. name: "Normal",
  40667. height: math.unit(2, "meters")
  40668. },
  40669. {
  40670. name: "Macro",
  40671. height: math.unit(500, "meters"),
  40672. default: true
  40673. },
  40674. {
  40675. name: "Megamacro",
  40676. height: math.unit(20, "km")
  40677. },
  40678. ]
  40679. ))
  40680. characterMakers.push(() => makeCharacter(
  40681. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40682. {
  40683. front: {
  40684. height: math.unit(6, "feet"),
  40685. name: "Front",
  40686. image: {
  40687. source: "./media/characters/sam/front.svg",
  40688. extra: 849/826,
  40689. bottom: 19/868
  40690. }
  40691. },
  40692. },
  40693. [
  40694. {
  40695. name: "Normal",
  40696. height: math.unit(6, "feet"),
  40697. default: true
  40698. },
  40699. ]
  40700. ))
  40701. characterMakers.push(() => makeCharacter(
  40702. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40703. {
  40704. front: {
  40705. height: math.unit(8 + 4/12, "feet"),
  40706. weight: math.unit(122, "kg"),
  40707. name: "Front",
  40708. image: {
  40709. source: "./media/characters/namori-kurogawa/front.svg",
  40710. extra: 1894/1576,
  40711. bottom: 34/1928
  40712. }
  40713. },
  40714. },
  40715. [
  40716. {
  40717. name: "Normal",
  40718. height: math.unit(8 + 4/12, "feet"),
  40719. default: true
  40720. },
  40721. ]
  40722. ))
  40723. characterMakers.push(() => makeCharacter(
  40724. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40725. {
  40726. front: {
  40727. height: math.unit(9, "feet"),
  40728. weight: math.unit(621, "lb"),
  40729. name: "Front",
  40730. image: {
  40731. source: "./media/characters/unmru/front.svg",
  40732. extra: 1853/1747,
  40733. bottom: 73/1926
  40734. }
  40735. },
  40736. side: {
  40737. height: math.unit(9, "feet"),
  40738. weight: math.unit(621, "lb"),
  40739. name: "Side",
  40740. image: {
  40741. source: "./media/characters/unmru/side.svg",
  40742. extra: 1781/1671,
  40743. bottom: 127/1908
  40744. }
  40745. },
  40746. back: {
  40747. height: math.unit(9, "feet"),
  40748. weight: math.unit(621, "lb"),
  40749. name: "Back",
  40750. image: {
  40751. source: "./media/characters/unmru/back.svg",
  40752. extra: 1894/1765,
  40753. bottom: 75/1969
  40754. }
  40755. },
  40756. dick: {
  40757. height: math.unit(3, "feet"),
  40758. weight: math.unit(35, "lb"),
  40759. name: "Dick",
  40760. image: {
  40761. source: "./media/characters/unmru/dick.svg"
  40762. }
  40763. },
  40764. },
  40765. [
  40766. {
  40767. name: "Normal",
  40768. height: math.unit(9, "feet")
  40769. },
  40770. {
  40771. name: "Natural",
  40772. height: math.unit(27, "feet"),
  40773. default: true
  40774. },
  40775. {
  40776. name: "Giant",
  40777. height: math.unit(90, "feet")
  40778. },
  40779. {
  40780. name: "Kaiju",
  40781. height: math.unit(270, "feet")
  40782. },
  40783. {
  40784. name: "Macro",
  40785. height: math.unit(900, "feet")
  40786. },
  40787. {
  40788. name: "Macro+",
  40789. height: math.unit(2700, "feet")
  40790. },
  40791. {
  40792. name: "Megamacro",
  40793. height: math.unit(9000, "feet")
  40794. },
  40795. {
  40796. name: "City-Crushing",
  40797. height: math.unit(27000, "feet")
  40798. },
  40799. {
  40800. name: "Mountain-Mashing",
  40801. height: math.unit(90000, "feet")
  40802. },
  40803. {
  40804. name: "Earth-Eclipsing",
  40805. height: math.unit(2.7e8, "feet")
  40806. },
  40807. {
  40808. name: "Sol-Swallowing",
  40809. height: math.unit(9e10, "feet")
  40810. },
  40811. {
  40812. name: "Majoris-Munching",
  40813. height: math.unit(2.7e13, "feet")
  40814. },
  40815. ]
  40816. ))
  40817. characterMakers.push(() => makeCharacter(
  40818. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40819. {
  40820. front: {
  40821. height: math.unit(1, "inch"),
  40822. name: "Front",
  40823. image: {
  40824. source: "./media/characters/squeaks-mouse/front.svg",
  40825. extra: 352/308,
  40826. bottom: 25/377
  40827. }
  40828. },
  40829. },
  40830. [
  40831. {
  40832. name: "Micro",
  40833. height: math.unit(1, "inch"),
  40834. default: true
  40835. },
  40836. ]
  40837. ))
  40838. characterMakers.push(() => makeCharacter(
  40839. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40840. {
  40841. side: {
  40842. height: math.unit(35, "feet"),
  40843. name: "Side",
  40844. image: {
  40845. source: "./media/characters/sayko/side.svg",
  40846. extra: 1697/1021,
  40847. bottom: 82/1779
  40848. }
  40849. },
  40850. head: {
  40851. height: math.unit(16, "feet"),
  40852. name: "Head",
  40853. image: {
  40854. source: "./media/characters/sayko/head.svg"
  40855. }
  40856. },
  40857. forepaw: {
  40858. height: math.unit(7.85, "feet"),
  40859. name: "Forepaw",
  40860. image: {
  40861. source: "./media/characters/sayko/forepaw.svg"
  40862. }
  40863. },
  40864. hindpaw: {
  40865. height: math.unit(8.8, "feet"),
  40866. name: "Hindpaw",
  40867. image: {
  40868. source: "./media/characters/sayko/hindpaw.svg"
  40869. }
  40870. },
  40871. },
  40872. [
  40873. {
  40874. name: "Normal",
  40875. height: math.unit(35, "feet"),
  40876. default: true
  40877. },
  40878. {
  40879. name: "Colossus",
  40880. height: math.unit(100, "meters")
  40881. },
  40882. {
  40883. name: "\"Small\" Deity",
  40884. height: math.unit(1, "km")
  40885. },
  40886. {
  40887. name: "\"Large\" Deity",
  40888. height: math.unit(15, "km")
  40889. },
  40890. ]
  40891. ))
  40892. characterMakers.push(() => makeCharacter(
  40893. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40894. {
  40895. front: {
  40896. height: math.unit(6, "feet"),
  40897. weight: math.unit(250, "lb"),
  40898. name: "Front",
  40899. image: {
  40900. source: "./media/characters/mukiro/front.svg",
  40901. extra: 1368/1310,
  40902. bottom: 34/1402
  40903. }
  40904. },
  40905. },
  40906. [
  40907. {
  40908. name: "Normal",
  40909. height: math.unit(6, "feet"),
  40910. default: true
  40911. },
  40912. ]
  40913. ))
  40914. characterMakers.push(() => makeCharacter(
  40915. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40916. {
  40917. front: {
  40918. height: math.unit(12 + 4/12, "feet"),
  40919. name: "Front",
  40920. image: {
  40921. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40922. extra: 1346/1311,
  40923. bottom: 65/1411
  40924. }
  40925. },
  40926. },
  40927. [
  40928. {
  40929. name: "Base",
  40930. height: math.unit(12 + 4/12, "feet"),
  40931. default: true
  40932. },
  40933. {
  40934. name: "Macro",
  40935. height: math.unit(150, "feet")
  40936. },
  40937. {
  40938. name: "Mega",
  40939. height: math.unit(2, "miles")
  40940. },
  40941. {
  40942. name: "Demi God",
  40943. height: math.unit(4, "AU")
  40944. },
  40945. {
  40946. name: "God Size",
  40947. height: math.unit(1, "universe")
  40948. },
  40949. ]
  40950. ))
  40951. characterMakers.push(() => makeCharacter(
  40952. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40953. {
  40954. front: {
  40955. height: math.unit(3 + 3/12, "feet"),
  40956. weight: math.unit(88, "lb"),
  40957. name: "Front",
  40958. image: {
  40959. source: "./media/characters/trey/front.svg",
  40960. extra: 1815/1509,
  40961. bottom: 60/1875
  40962. }
  40963. },
  40964. },
  40965. [
  40966. {
  40967. name: "Normal",
  40968. height: math.unit(3 + 3/12, "feet"),
  40969. default: true
  40970. },
  40971. ]
  40972. ))
  40973. characterMakers.push(() => makeCharacter(
  40974. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40975. {
  40976. front: {
  40977. height: math.unit(4, "meters"),
  40978. name: "Front",
  40979. image: {
  40980. source: "./media/characters/adelonda/front.svg",
  40981. extra: 1077/982,
  40982. bottom: 39/1116
  40983. }
  40984. },
  40985. back: {
  40986. height: math.unit(4, "meters"),
  40987. name: "Back",
  40988. image: {
  40989. source: "./media/characters/adelonda/back.svg",
  40990. extra: 1105/1003,
  40991. bottom: 25/1130
  40992. }
  40993. },
  40994. feral: {
  40995. height: math.unit(40/1.5, "meters"),
  40996. name: "Feral",
  40997. image: {
  40998. source: "./media/characters/adelonda/feral.svg",
  40999. extra: 597/271,
  41000. bottom: 387/984
  41001. }
  41002. },
  41003. },
  41004. [
  41005. {
  41006. name: "Normal",
  41007. height: math.unit(4, "meters"),
  41008. default: true
  41009. },
  41010. ]
  41011. ))
  41012. characterMakers.push(() => makeCharacter(
  41013. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41014. {
  41015. front: {
  41016. height: math.unit(8 + 4/12, "feet"),
  41017. weight: math.unit(670, "lb"),
  41018. name: "Front",
  41019. image: {
  41020. source: "./media/characters/acadiel/front.svg",
  41021. extra: 1901/1595,
  41022. bottom: 142/2043
  41023. }
  41024. },
  41025. },
  41026. [
  41027. {
  41028. name: "Normal",
  41029. height: math.unit(8 + 4/12, "feet"),
  41030. default: true
  41031. },
  41032. {
  41033. name: "Macro",
  41034. height: math.unit(200, "feet")
  41035. },
  41036. ]
  41037. ))
  41038. characterMakers.push(() => makeCharacter(
  41039. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41040. {
  41041. front: {
  41042. height: math.unit(6 + 2/12, "feet"),
  41043. weight: math.unit(185, "lb"),
  41044. name: "Front",
  41045. image: {
  41046. source: "./media/characters/kayne-ein/front.svg",
  41047. extra: 1780/1560,
  41048. bottom: 81/1861
  41049. }
  41050. },
  41051. },
  41052. [
  41053. {
  41054. name: "Normal",
  41055. height: math.unit(6 + 2/12, "feet"),
  41056. default: true
  41057. },
  41058. {
  41059. name: "Transformation Stage",
  41060. height: math.unit(15, "feet")
  41061. },
  41062. {
  41063. name: "Macro",
  41064. height: math.unit(150, "feet")
  41065. },
  41066. {
  41067. name: "Earth's Shadow",
  41068. height: math.unit(6200, "miles")
  41069. },
  41070. {
  41071. name: "Universal Demon",
  41072. height: math.unit(28e9, "parsecs")
  41073. },
  41074. {
  41075. name: "Multiverse God",
  41076. height: math.unit(3, "multiverses")
  41077. },
  41078. ]
  41079. ))
  41080. characterMakers.push(() => makeCharacter(
  41081. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41082. {
  41083. front: {
  41084. height: math.unit(5 + 5/12, "feet"),
  41085. name: "Front",
  41086. image: {
  41087. source: "./media/characters/fawn/front.svg",
  41088. extra: 1873/1731,
  41089. bottom: 95/1968
  41090. }
  41091. },
  41092. back: {
  41093. height: math.unit(5 + 5/12, "feet"),
  41094. name: "Back",
  41095. image: {
  41096. source: "./media/characters/fawn/back.svg",
  41097. extra: 1813/1700,
  41098. bottom: 14/1827
  41099. }
  41100. },
  41101. hoof: {
  41102. height: math.unit(1.45, "feet"),
  41103. name: "Hoof",
  41104. image: {
  41105. source: "./media/characters/fawn/hoof.svg"
  41106. }
  41107. },
  41108. },
  41109. [
  41110. {
  41111. name: "Normal",
  41112. height: math.unit(5 + 5/12, "feet"),
  41113. default: true
  41114. },
  41115. ]
  41116. ))
  41117. characterMakers.push(() => makeCharacter(
  41118. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41119. {
  41120. front: {
  41121. height: math.unit(2 + 5/12, "feet"),
  41122. name: "Front",
  41123. image: {
  41124. source: "./media/characters/orion/front.svg",
  41125. extra: 1366/1304,
  41126. bottom: 43/1409
  41127. }
  41128. },
  41129. paw: {
  41130. height: math.unit(0.52, "feet"),
  41131. name: "Paw",
  41132. image: {
  41133. source: "./media/characters/orion/paw.svg"
  41134. }
  41135. },
  41136. },
  41137. [
  41138. {
  41139. name: "Normal",
  41140. height: math.unit(2 + 5/12, "feet"),
  41141. default: true
  41142. },
  41143. ]
  41144. ))
  41145. characterMakers.push(() => makeCharacter(
  41146. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41147. {
  41148. front: {
  41149. height: math.unit(5 + 10/12, "feet"),
  41150. name: "Front",
  41151. image: {
  41152. source: "./media/characters/vera/front.svg",
  41153. extra: 1680/1575,
  41154. bottom: 49/1729
  41155. }
  41156. },
  41157. back: {
  41158. height: math.unit(5 + 10/12, "feet"),
  41159. name: "Back",
  41160. image: {
  41161. source: "./media/characters/vera/back.svg",
  41162. extra: 1700/1588,
  41163. bottom: 18/1718
  41164. }
  41165. },
  41166. arcanine: {
  41167. height: math.unit(6 + 8/12, "feet"),
  41168. name: "Arcanine",
  41169. image: {
  41170. source: "./media/characters/vera/arcanine.svg",
  41171. extra: 1590/1511,
  41172. bottom: 71/1661
  41173. }
  41174. },
  41175. maw: {
  41176. height: math.unit(0.82, "feet"),
  41177. name: "Maw",
  41178. image: {
  41179. source: "./media/characters/vera/maw.svg"
  41180. }
  41181. },
  41182. mawArcanine: {
  41183. height: math.unit(0.97, "feet"),
  41184. name: "Maw (Arcanine)",
  41185. image: {
  41186. source: "./media/characters/vera/maw-arcanine.svg"
  41187. }
  41188. },
  41189. paw: {
  41190. height: math.unit(0.75, "feet"),
  41191. name: "Paw",
  41192. image: {
  41193. source: "./media/characters/vera/paw.svg"
  41194. }
  41195. },
  41196. pawprint: {
  41197. height: math.unit(0.52, "feet"),
  41198. name: "Pawprint",
  41199. image: {
  41200. source: "./media/characters/vera/pawprint.svg"
  41201. }
  41202. },
  41203. },
  41204. [
  41205. {
  41206. name: "Normal",
  41207. height: math.unit(5 + 10/12, "feet"),
  41208. default: true
  41209. },
  41210. {
  41211. name: "Macro",
  41212. height: math.unit(75, "feet")
  41213. },
  41214. ]
  41215. ))
  41216. characterMakers.push(() => makeCharacter(
  41217. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41218. {
  41219. front: {
  41220. height: math.unit(4, "feet"),
  41221. weight: math.unit(40, "lb"),
  41222. name: "Front",
  41223. image: {
  41224. source: "./media/characters/orvan-rabbit/front.svg",
  41225. extra: 1896/1642,
  41226. bottom: 29/1925
  41227. }
  41228. },
  41229. },
  41230. [
  41231. {
  41232. name: "Normal",
  41233. height: math.unit(4, "feet"),
  41234. default: true
  41235. },
  41236. ]
  41237. ))
  41238. characterMakers.push(() => makeCharacter(
  41239. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41240. {
  41241. front: {
  41242. height: math.unit(6, "feet"),
  41243. weight: math.unit(168, "lb"),
  41244. name: "Front",
  41245. image: {
  41246. source: "./media/characters/lisa/front.svg",
  41247. extra: 2065/1867,
  41248. bottom: 46/2111
  41249. }
  41250. },
  41251. back: {
  41252. height: math.unit(6, "feet"),
  41253. weight: math.unit(168, "lb"),
  41254. name: "Back",
  41255. image: {
  41256. source: "./media/characters/lisa/back.svg",
  41257. extra: 1982/1838,
  41258. bottom: 29/2011
  41259. }
  41260. },
  41261. maw: {
  41262. height: math.unit(0.81, "feet"),
  41263. name: "Maw",
  41264. image: {
  41265. source: "./media/characters/lisa/maw.svg"
  41266. }
  41267. },
  41268. paw: {
  41269. height: math.unit(0.9, "feet"),
  41270. name: "Paw",
  41271. image: {
  41272. source: "./media/characters/lisa/paw.svg"
  41273. }
  41274. },
  41275. caribousune: {
  41276. height: math.unit(7 + 2/12, "feet"),
  41277. weight: math.unit(268, "lb"),
  41278. name: "Caribousune",
  41279. image: {
  41280. source: "./media/characters/lisa/caribousune.svg",
  41281. extra: 1843/1633,
  41282. bottom: 29/1872
  41283. }
  41284. },
  41285. frontCaribousune: {
  41286. height: math.unit(7 + 2/12, "feet"),
  41287. weight: math.unit(268, "lb"),
  41288. name: "Front (Caribousune)",
  41289. image: {
  41290. source: "./media/characters/lisa/front-caribousune.svg",
  41291. extra: 1818/1638,
  41292. bottom: 52/1870
  41293. }
  41294. },
  41295. sideCaribousune: {
  41296. height: math.unit(7 + 2/12, "feet"),
  41297. weight: math.unit(268, "lb"),
  41298. name: "Side (Caribousune)",
  41299. image: {
  41300. source: "./media/characters/lisa/side-caribousune.svg",
  41301. extra: 1851/1635,
  41302. bottom: 16/1867
  41303. }
  41304. },
  41305. backCaribousune: {
  41306. height: math.unit(7 + 2/12, "feet"),
  41307. weight: math.unit(268, "lb"),
  41308. name: "Back (Caribousune)",
  41309. image: {
  41310. source: "./media/characters/lisa/back-caribousune.svg",
  41311. extra: 1801/1604,
  41312. bottom: 44/1845
  41313. }
  41314. },
  41315. caribou: {
  41316. height: math.unit(7 + 2/12, "feet"),
  41317. weight: math.unit(268, "lb"),
  41318. name: "Caribou",
  41319. image: {
  41320. source: "./media/characters/lisa/caribou.svg",
  41321. extra: 1843/1633,
  41322. bottom: 29/1872
  41323. }
  41324. },
  41325. frontCaribou: {
  41326. height: math.unit(7 + 2/12, "feet"),
  41327. weight: math.unit(268, "lb"),
  41328. name: "Front (Caribou)",
  41329. image: {
  41330. source: "./media/characters/lisa/front-caribou.svg",
  41331. extra: 1818/1638,
  41332. bottom: 52/1870
  41333. }
  41334. },
  41335. sideCaribou: {
  41336. height: math.unit(7 + 2/12, "feet"),
  41337. weight: math.unit(268, "lb"),
  41338. name: "Side (Caribou)",
  41339. image: {
  41340. source: "./media/characters/lisa/side-caribou.svg",
  41341. extra: 1851/1635,
  41342. bottom: 16/1867
  41343. }
  41344. },
  41345. backCaribou: {
  41346. height: math.unit(7 + 2/12, "feet"),
  41347. weight: math.unit(268, "lb"),
  41348. name: "Back (Caribou)",
  41349. image: {
  41350. source: "./media/characters/lisa/back-caribou.svg",
  41351. extra: 1801/1604,
  41352. bottom: 44/1845
  41353. }
  41354. },
  41355. mawCaribou: {
  41356. height: math.unit(1.45, "feet"),
  41357. name: "Maw (Caribou)",
  41358. image: {
  41359. source: "./media/characters/lisa/maw-caribou.svg"
  41360. }
  41361. },
  41362. mawCaribousune: {
  41363. height: math.unit(1.45, "feet"),
  41364. name: "Maw (Caribousune)",
  41365. image: {
  41366. source: "./media/characters/lisa/maw-caribousune.svg"
  41367. }
  41368. },
  41369. pawCaribousune: {
  41370. height: math.unit(1.61, "feet"),
  41371. name: "Paw (Caribou)",
  41372. image: {
  41373. source: "./media/characters/lisa/paw-caribousune.svg"
  41374. }
  41375. },
  41376. },
  41377. [
  41378. {
  41379. name: "Normal",
  41380. height: math.unit(6, "feet")
  41381. },
  41382. {
  41383. name: "God Size",
  41384. height: math.unit(72, "feet"),
  41385. default: true
  41386. },
  41387. {
  41388. name: "Towering",
  41389. height: math.unit(288, "feet")
  41390. },
  41391. {
  41392. name: "City Size",
  41393. height: math.unit(48384, "feet")
  41394. },
  41395. {
  41396. name: "Continental",
  41397. height: math.unit(4200, "miles")
  41398. },
  41399. {
  41400. name: "Planet Eater",
  41401. height: math.unit(42, "earths")
  41402. },
  41403. {
  41404. name: "Star Swallower",
  41405. height: math.unit(42, "solarradii")
  41406. },
  41407. {
  41408. name: "System Swallower",
  41409. height: math.unit(84000, "AU")
  41410. },
  41411. {
  41412. name: "Galaxy Gobbler",
  41413. height: math.unit(42, "galaxies")
  41414. },
  41415. {
  41416. name: "Universe Devourer",
  41417. height: math.unit(42, "universes")
  41418. },
  41419. {
  41420. name: "Multiverse Muncher",
  41421. height: math.unit(42, "multiverses")
  41422. },
  41423. ]
  41424. ))
  41425. characterMakers.push(() => makeCharacter(
  41426. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41427. {
  41428. front: {
  41429. height: math.unit(36, "feet"),
  41430. name: "Front",
  41431. image: {
  41432. source: "./media/characters/shadow-rat/front.svg",
  41433. extra: 1845/1758,
  41434. bottom: 83/1928
  41435. }
  41436. },
  41437. },
  41438. [
  41439. {
  41440. name: "Macro",
  41441. height: math.unit(36, "feet"),
  41442. default: true
  41443. },
  41444. ]
  41445. ))
  41446. characterMakers.push(() => makeCharacter(
  41447. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41448. {
  41449. side: {
  41450. height: math.unit(8, "feet"),
  41451. weight: math.unit(2630, "lb"),
  41452. name: "Side",
  41453. image: {
  41454. source: "./media/characters/torallia/side.svg",
  41455. extra: 2164/2021,
  41456. bottom: 371/2535
  41457. }
  41458. },
  41459. },
  41460. [
  41461. {
  41462. name: "Mortal Interaction",
  41463. height: math.unit(8, "feet")
  41464. },
  41465. {
  41466. name: "Natural",
  41467. height: math.unit(24, "feet"),
  41468. default: true
  41469. },
  41470. {
  41471. name: "Giant",
  41472. height: math.unit(80, "feet")
  41473. },
  41474. {
  41475. name: "Kaiju",
  41476. height: math.unit(240, "feet")
  41477. },
  41478. {
  41479. name: "Macro",
  41480. height: math.unit(800, "feet")
  41481. },
  41482. {
  41483. name: "Macro+",
  41484. height: math.unit(2400, "feet")
  41485. },
  41486. {
  41487. name: "Macro++",
  41488. height: math.unit(8000, "feet")
  41489. },
  41490. {
  41491. name: "City-Crushing",
  41492. height: math.unit(24000, "feet")
  41493. },
  41494. {
  41495. name: "Mountain-Mashing",
  41496. height: math.unit(80000, "feet")
  41497. },
  41498. {
  41499. name: "District Demolisher",
  41500. height: math.unit(240000, "feet")
  41501. },
  41502. {
  41503. name: "Tri-County Terror",
  41504. height: math.unit(800000, "feet")
  41505. },
  41506. {
  41507. name: "State Smasher",
  41508. height: math.unit(2.4e6, "feet")
  41509. },
  41510. {
  41511. name: "Nation Nemesis",
  41512. height: math.unit(8e6, "feet")
  41513. },
  41514. {
  41515. name: "Continent Cracker",
  41516. height: math.unit(2.4e7, "feet")
  41517. },
  41518. {
  41519. name: "Planet-Pillaging",
  41520. height: math.unit(8e7, "feet")
  41521. },
  41522. {
  41523. name: "Earth-Eclipsing",
  41524. height: math.unit(2.4e8, "feet")
  41525. },
  41526. {
  41527. name: "Jovian-Jostling",
  41528. height: math.unit(8e8, "feet")
  41529. },
  41530. {
  41531. name: "Gas Giant Gulper",
  41532. height: math.unit(2.4e9, "feet")
  41533. },
  41534. {
  41535. name: "Astral Annihilator",
  41536. height: math.unit(8e9, "feet")
  41537. },
  41538. {
  41539. name: "Celestial Conqueror",
  41540. height: math.unit(2.4e10, "feet")
  41541. },
  41542. {
  41543. name: "Sol-Swallowing",
  41544. height: math.unit(8e10, "feet")
  41545. },
  41546. {
  41547. name: "Hunter of the Heavens",
  41548. height: math.unit(2.4e13, "feet")
  41549. },
  41550. ]
  41551. ))
  41552. characterMakers.push(() => makeCharacter(
  41553. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41554. {
  41555. front: {
  41556. height: math.unit(10, "feet"),
  41557. weight: math.unit(844, "kilograms"),
  41558. name: "Front",
  41559. image: {
  41560. source: "./media/characters/rebecca-pawlson/front.svg",
  41561. extra: 1196/1099,
  41562. bottom: 81/1277
  41563. },
  41564. extraAttributes: {
  41565. "pawSize": {
  41566. name: "Paw Size",
  41567. power: 2,
  41568. type: "area",
  41569. base: math.unit(0.2 * 0.375, "meters^2")
  41570. },
  41571. "handSize": {
  41572. name: "Hand Size",
  41573. power: 2,
  41574. type: "area",
  41575. base: math.unit(0.2 * 0.35, "meters^2")
  41576. },
  41577. "breastDiameter": {
  41578. name: "Breast Diameter",
  41579. power: 1,
  41580. type: "length",
  41581. base: math.unit(0.5, "meters")
  41582. },
  41583. "breastVolume": {
  41584. name: "Breast Volume",
  41585. power: 3,
  41586. type: "volume",
  41587. base: math.unit(0.065, "m^3")
  41588. },
  41589. "breastMass": {
  41590. name: "Breast Mass",
  41591. power: 3,
  41592. type: "mass",
  41593. base: math.unit(65, "kg")
  41594. },
  41595. "nippleDiameter": {
  41596. name: "Nipple Diameter",
  41597. power: 1,
  41598. type: "length",
  41599. base: math.unit(0.1, "meters")
  41600. },
  41601. }
  41602. },
  41603. back: {
  41604. height: math.unit(10, "feet"),
  41605. weight: math.unit(844, "kilograms"),
  41606. name: "Back",
  41607. image: {
  41608. source: "./media/characters/rebecca-pawlson/back.svg",
  41609. extra: 879/776,
  41610. bottom: 43/922
  41611. },
  41612. extraAttributes: {
  41613. "pawSize": {
  41614. name: "Paw Size",
  41615. power: 2,
  41616. type: "area",
  41617. base: math.unit(0.2 * 0.375, "meters^2")
  41618. },
  41619. "handSize": {
  41620. name: "Hand Size",
  41621. power: 2,
  41622. type: "area",
  41623. base: math.unit(0.2 * 0.35, "meters^2")
  41624. },
  41625. "breastDiameter": {
  41626. name: "Breast Diameter",
  41627. power: 1,
  41628. type: "length",
  41629. base: math.unit(0.5, "meters")
  41630. },
  41631. "breastVolume": {
  41632. name: "Breast Volume",
  41633. power: 3,
  41634. type: "volume",
  41635. base: math.unit(0.065, "m^3")
  41636. },
  41637. "breastMass": {
  41638. name: "Breast Mass",
  41639. power: 3,
  41640. type: "mass",
  41641. base: math.unit(65, "kg")
  41642. },
  41643. "nippleDiameter": {
  41644. name: "Nipple Diameter",
  41645. power: 1,
  41646. type: "length",
  41647. base: math.unit(0.1, "meters")
  41648. },
  41649. }
  41650. },
  41651. },
  41652. [
  41653. {
  41654. name: "Normal",
  41655. height: math.unit(6 + 8/12, "feet")
  41656. },
  41657. {
  41658. name: "Mini Macro",
  41659. height: math.unit(10, "feet"),
  41660. default: true
  41661. },
  41662. {
  41663. name: "Macro",
  41664. height: math.unit(100, "feet")
  41665. },
  41666. {
  41667. name: "Mega Macro",
  41668. height: math.unit(2500, "feet")
  41669. },
  41670. {
  41671. name: "Giga Macro",
  41672. height: math.unit(50, "miles")
  41673. },
  41674. ]
  41675. ))
  41676. characterMakers.push(() => makeCharacter(
  41677. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41678. {
  41679. front: {
  41680. height: math.unit(7 + 6/12, "feet"),
  41681. weight: math.unit(600, "lb"),
  41682. name: "Front",
  41683. image: {
  41684. source: "./media/characters/moxie-nova/front.svg",
  41685. extra: 1734/1652,
  41686. bottom: 41/1775
  41687. }
  41688. },
  41689. },
  41690. [
  41691. {
  41692. name: "Normal",
  41693. height: math.unit(7 + 6/12, "feet"),
  41694. default: true
  41695. },
  41696. ]
  41697. ))
  41698. characterMakers.push(() => makeCharacter(
  41699. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41700. {
  41701. goat: {
  41702. height: math.unit(4, "feet"),
  41703. weight: math.unit(180, "lb"),
  41704. name: "Goat",
  41705. image: {
  41706. source: "./media/characters/tiffany/goat.svg",
  41707. extra: 1845/1595,
  41708. bottom: 106/1951
  41709. }
  41710. },
  41711. front: {
  41712. height: math.unit(5, "feet"),
  41713. weight: math.unit(150, "lb"),
  41714. name: "Foxcoon",
  41715. image: {
  41716. source: "./media/characters/tiffany/foxcoon.svg",
  41717. extra: 1941/1845,
  41718. bottom: 58/1999
  41719. }
  41720. },
  41721. },
  41722. [
  41723. {
  41724. name: "Normal",
  41725. height: math.unit(5, "feet"),
  41726. default: true
  41727. },
  41728. ]
  41729. ))
  41730. characterMakers.push(() => makeCharacter(
  41731. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41732. {
  41733. front: {
  41734. height: math.unit(8, "feet"),
  41735. weight: math.unit(300, "lb"),
  41736. name: "Front",
  41737. image: {
  41738. source: "./media/characters/raxinath/front.svg",
  41739. extra: 1407/1309,
  41740. bottom: 39/1446
  41741. }
  41742. },
  41743. back: {
  41744. height: math.unit(8, "feet"),
  41745. weight: math.unit(300, "lb"),
  41746. name: "Back",
  41747. image: {
  41748. source: "./media/characters/raxinath/back.svg",
  41749. extra: 1405/1315,
  41750. bottom: 9/1414
  41751. }
  41752. },
  41753. },
  41754. [
  41755. {
  41756. name: "Speck",
  41757. height: math.unit(0.5, "nm")
  41758. },
  41759. {
  41760. name: "Micro",
  41761. height: math.unit(3, "inches")
  41762. },
  41763. {
  41764. name: "Kobold",
  41765. height: math.unit(3, "feet")
  41766. },
  41767. {
  41768. name: "Normal",
  41769. height: math.unit(8, "feet"),
  41770. default: true
  41771. },
  41772. {
  41773. name: "Giant",
  41774. height: math.unit(50, "feet")
  41775. },
  41776. {
  41777. name: "Macro",
  41778. height: math.unit(1000, "feet")
  41779. },
  41780. {
  41781. name: "Megamacro",
  41782. height: math.unit(1, "mile")
  41783. },
  41784. ]
  41785. ))
  41786. characterMakers.push(() => makeCharacter(
  41787. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41788. {
  41789. front: {
  41790. height: math.unit(10, "feet"),
  41791. weight: math.unit(1442, "lb"),
  41792. name: "Front",
  41793. image: {
  41794. source: "./media/characters/mal-dragon/front.svg",
  41795. extra: 1515/1444,
  41796. bottom: 113/1628
  41797. }
  41798. },
  41799. back: {
  41800. height: math.unit(10, "feet"),
  41801. weight: math.unit(1442, "lb"),
  41802. name: "Back",
  41803. image: {
  41804. source: "./media/characters/mal-dragon/back.svg",
  41805. extra: 1527/1434,
  41806. bottom: 25/1552
  41807. }
  41808. },
  41809. },
  41810. [
  41811. {
  41812. name: "Mortal Interaction",
  41813. height: math.unit(10, "feet"),
  41814. default: true
  41815. },
  41816. {
  41817. name: "Large",
  41818. height: math.unit(30, "feet")
  41819. },
  41820. {
  41821. name: "Kaiju",
  41822. height: math.unit(300, "feet")
  41823. },
  41824. {
  41825. name: "Megamacro",
  41826. height: math.unit(10000, "feet")
  41827. },
  41828. {
  41829. name: "Continent Cracker",
  41830. height: math.unit(30000000, "feet")
  41831. },
  41832. {
  41833. name: "Sol-Swallowing",
  41834. height: math.unit(1e11, "feet")
  41835. },
  41836. {
  41837. name: "Light Universal",
  41838. height: math.unit(5, "universes")
  41839. },
  41840. {
  41841. name: "Universe Atoms",
  41842. height: math.unit(1.829e9, "universes")
  41843. },
  41844. {
  41845. name: "Light Multiversal",
  41846. height: math.unit(5, "multiverses")
  41847. },
  41848. {
  41849. name: "Multiverse Atoms",
  41850. height: math.unit(1.829e9, "multiverses")
  41851. },
  41852. {
  41853. name: "Fabric of Time",
  41854. height: math.unit(1e262, "multiverses")
  41855. },
  41856. ]
  41857. ))
  41858. characterMakers.push(() => makeCharacter(
  41859. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41860. {
  41861. front: {
  41862. height: math.unit(9, "feet"),
  41863. weight: math.unit(1050, "lb"),
  41864. name: "Front",
  41865. image: {
  41866. source: "./media/characters/tabitha/front.svg",
  41867. extra: 2083/1994,
  41868. bottom: 68/2151
  41869. }
  41870. },
  41871. },
  41872. [
  41873. {
  41874. name: "Baseline",
  41875. height: math.unit(9, "feet"),
  41876. default: true
  41877. },
  41878. {
  41879. name: "Giant",
  41880. height: math.unit(90, "feet")
  41881. },
  41882. {
  41883. name: "Macro",
  41884. height: math.unit(900, "feet")
  41885. },
  41886. {
  41887. name: "Megamacro",
  41888. height: math.unit(9000, "feet")
  41889. },
  41890. {
  41891. name: "City-Crushing",
  41892. height: math.unit(27000, "feet")
  41893. },
  41894. {
  41895. name: "Mountain-Mashing",
  41896. height: math.unit(90000, "feet")
  41897. },
  41898. {
  41899. name: "Nation Nemesis",
  41900. height: math.unit(9e6, "feet")
  41901. },
  41902. {
  41903. name: "Continent Cracker",
  41904. height: math.unit(27e6, "feet")
  41905. },
  41906. {
  41907. name: "Earth-Eclipsing",
  41908. height: math.unit(2.7e8, "feet")
  41909. },
  41910. {
  41911. name: "Gas Giant Gulper",
  41912. height: math.unit(2.7e9, "feet")
  41913. },
  41914. {
  41915. name: "Sol-Swallowing",
  41916. height: math.unit(9e10, "feet")
  41917. },
  41918. {
  41919. name: "Galaxy Gulper",
  41920. height: math.unit(9, "galaxies")
  41921. },
  41922. {
  41923. name: "Cosmos Churner",
  41924. height: math.unit(9, "universes")
  41925. },
  41926. ]
  41927. ))
  41928. characterMakers.push(() => makeCharacter(
  41929. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41930. {
  41931. front: {
  41932. height: math.unit(160, "cm"),
  41933. weight: math.unit(55, "kg"),
  41934. name: "Front",
  41935. image: {
  41936. source: "./media/characters/tow/front.svg",
  41937. extra: 1751/1722,
  41938. bottom: 74/1825
  41939. }
  41940. },
  41941. },
  41942. [
  41943. {
  41944. name: "Norm",
  41945. height: math.unit(160, "cm")
  41946. },
  41947. {
  41948. name: "Casual",
  41949. height: math.unit(3200, "m"),
  41950. default: true
  41951. },
  41952. {
  41953. name: "Show-Off",
  41954. height: math.unit(160, "km")
  41955. },
  41956. ]
  41957. ))
  41958. characterMakers.push(() => makeCharacter(
  41959. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41960. {
  41961. front: {
  41962. height: math.unit(7 + 11/12, "feet"),
  41963. weight: math.unit(342.8, "lb"),
  41964. name: "Front",
  41965. image: {
  41966. source: "./media/characters/vivian-orca-dragon/front.svg",
  41967. extra: 1890/1865,
  41968. bottom: 28/1918
  41969. }
  41970. },
  41971. },
  41972. [
  41973. {
  41974. name: "Micro",
  41975. height: math.unit(5, "inches")
  41976. },
  41977. {
  41978. name: "Normal",
  41979. height: math.unit(7 + 11/12, "feet"),
  41980. default: true
  41981. },
  41982. {
  41983. name: "Macro",
  41984. height: math.unit(395 + 7/12, "feet")
  41985. },
  41986. ]
  41987. ))
  41988. characterMakers.push(() => makeCharacter(
  41989. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41990. {
  41991. side: {
  41992. height: math.unit(10, "feet"),
  41993. weight: math.unit(1442, "lb"),
  41994. name: "Side",
  41995. image: {
  41996. source: "./media/characters/lotherakon/side.svg",
  41997. extra: 1604/1497,
  41998. bottom: 89/1693
  41999. }
  42000. },
  42001. },
  42002. [
  42003. {
  42004. name: "Mortal Interaction",
  42005. height: math.unit(10, "feet")
  42006. },
  42007. {
  42008. name: "Large",
  42009. height: math.unit(30, "feet"),
  42010. default: true
  42011. },
  42012. {
  42013. name: "Giant",
  42014. height: math.unit(100, "feet")
  42015. },
  42016. {
  42017. name: "Kaiju",
  42018. height: math.unit(300, "feet")
  42019. },
  42020. {
  42021. name: "Macro",
  42022. height: math.unit(1000, "feet")
  42023. },
  42024. {
  42025. name: "Macro+",
  42026. height: math.unit(3000, "feet")
  42027. },
  42028. {
  42029. name: "Megamacro",
  42030. height: math.unit(10000, "feet")
  42031. },
  42032. {
  42033. name: "City-Crushing",
  42034. height: math.unit(30000, "feet")
  42035. },
  42036. {
  42037. name: "Continent Cracker",
  42038. height: math.unit(30e6, "feet")
  42039. },
  42040. {
  42041. name: "Earth Eclipsing",
  42042. height: math.unit(3e8, "feet")
  42043. },
  42044. {
  42045. name: "Gas Giant Gulper",
  42046. height: math.unit(3e9, "feet")
  42047. },
  42048. {
  42049. name: "Sol-Swallowing",
  42050. height: math.unit(1e11, "feet")
  42051. },
  42052. {
  42053. name: "System Swallower",
  42054. height: math.unit(3e14, "feet")
  42055. },
  42056. {
  42057. name: "Galaxy Gulper",
  42058. height: math.unit(10, "galaxies")
  42059. },
  42060. {
  42061. name: "Light Universal",
  42062. height: math.unit(5, "universes")
  42063. },
  42064. {
  42065. name: "Universe Palm",
  42066. height: math.unit(20, "universes")
  42067. },
  42068. {
  42069. name: "Light Multiversal",
  42070. height: math.unit(5, "multiverses")
  42071. },
  42072. {
  42073. name: "Multiverse Palm",
  42074. height: math.unit(20, "multiverses")
  42075. },
  42076. {
  42077. name: "Inferno Incarnate",
  42078. height: math.unit(1e7, "multiverses")
  42079. },
  42080. ]
  42081. ))
  42082. characterMakers.push(() => makeCharacter(
  42083. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42084. {
  42085. front: {
  42086. height: math.unit(8, "feet"),
  42087. weight: math.unit(1200, "lb"),
  42088. name: "Front",
  42089. image: {
  42090. source: "./media/characters/malithee/front.svg",
  42091. extra: 1675/1640,
  42092. bottom: 162/1837
  42093. }
  42094. },
  42095. },
  42096. [
  42097. {
  42098. name: "Mortal Interaction",
  42099. height: math.unit(8, "feet"),
  42100. default: true
  42101. },
  42102. {
  42103. name: "Large",
  42104. height: math.unit(24, "feet")
  42105. },
  42106. {
  42107. name: "Kaiju",
  42108. height: math.unit(240, "feet")
  42109. },
  42110. {
  42111. name: "Megamacro",
  42112. height: math.unit(8000, "feet")
  42113. },
  42114. {
  42115. name: "Continent Cracker",
  42116. height: math.unit(24e6, "feet")
  42117. },
  42118. {
  42119. name: "Earth-Eclipsing",
  42120. height: math.unit(2.4e8, "feet")
  42121. },
  42122. {
  42123. name: "Sol-Swallowing",
  42124. height: math.unit(8e10, "feet")
  42125. },
  42126. {
  42127. name: "Galaxy Gulper",
  42128. height: math.unit(8, "galaxies")
  42129. },
  42130. {
  42131. name: "Light Universal",
  42132. height: math.unit(4, "universes")
  42133. },
  42134. {
  42135. name: "Universe Atoms",
  42136. height: math.unit(1.829e9, "universes")
  42137. },
  42138. {
  42139. name: "Light Multiversal",
  42140. height: math.unit(4, "multiverses")
  42141. },
  42142. {
  42143. name: "Multiverse Atoms",
  42144. height: math.unit(1.829e9, "multiverses")
  42145. },
  42146. {
  42147. name: "Nigh-Omnipresence",
  42148. height: math.unit(8e261, "multiverses")
  42149. },
  42150. ]
  42151. ))
  42152. characterMakers.push(() => makeCharacter(
  42153. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42154. {
  42155. front: {
  42156. height: math.unit(10, "feet"),
  42157. weight: math.unit(1500, "lb"),
  42158. name: "Front",
  42159. image: {
  42160. source: "./media/characters/miles-thestia/front.svg",
  42161. extra: 1812/1727,
  42162. bottom: 86/1898
  42163. }
  42164. },
  42165. back: {
  42166. height: math.unit(10, "feet"),
  42167. weight: math.unit(1500, "lb"),
  42168. name: "Back",
  42169. image: {
  42170. source: "./media/characters/miles-thestia/back.svg",
  42171. extra: 1799/1690,
  42172. bottom: 47/1846
  42173. }
  42174. },
  42175. frontNsfw: {
  42176. height: math.unit(10, "feet"),
  42177. weight: math.unit(1500, "lb"),
  42178. name: "Front (NSFW)",
  42179. image: {
  42180. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42181. extra: 1812/1727,
  42182. bottom: 86/1898
  42183. }
  42184. },
  42185. },
  42186. [
  42187. {
  42188. name: "Mini-Macro",
  42189. height: math.unit(10, "feet"),
  42190. default: true
  42191. },
  42192. ]
  42193. ))
  42194. characterMakers.push(() => makeCharacter(
  42195. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42196. {
  42197. front: {
  42198. height: math.unit(25, "feet"),
  42199. name: "Front",
  42200. image: {
  42201. source: "./media/characters/titan-s-wulf/front.svg",
  42202. extra: 1560/1484,
  42203. bottom: 76/1636
  42204. }
  42205. },
  42206. },
  42207. [
  42208. {
  42209. name: "Smallest",
  42210. height: math.unit(25, "feet"),
  42211. default: true
  42212. },
  42213. {
  42214. name: "Normal",
  42215. height: math.unit(200, "feet")
  42216. },
  42217. {
  42218. name: "Macro",
  42219. height: math.unit(200000, "feet")
  42220. },
  42221. {
  42222. name: "Multiversal Original",
  42223. height: math.unit(10000, "multiverses")
  42224. },
  42225. ]
  42226. ))
  42227. characterMakers.push(() => makeCharacter(
  42228. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42229. {
  42230. front: {
  42231. height: math.unit(8, "feet"),
  42232. weight: math.unit(553, "lb"),
  42233. name: "Front",
  42234. image: {
  42235. source: "./media/characters/tawendeh/front.svg",
  42236. extra: 2365/2268,
  42237. bottom: 83/2448
  42238. }
  42239. },
  42240. frontClothed: {
  42241. height: math.unit(8, "feet"),
  42242. weight: math.unit(553, "lb"),
  42243. name: "Front (Clothed)",
  42244. image: {
  42245. source: "./media/characters/tawendeh/front-clothed.svg",
  42246. extra: 2365/2268,
  42247. bottom: 83/2448
  42248. }
  42249. },
  42250. back: {
  42251. height: math.unit(8, "feet"),
  42252. weight: math.unit(553, "lb"),
  42253. name: "Back",
  42254. image: {
  42255. source: "./media/characters/tawendeh/back.svg",
  42256. extra: 2397/2294,
  42257. bottom: 42/2439
  42258. }
  42259. },
  42260. },
  42261. [
  42262. {
  42263. name: "Mortal Interaction",
  42264. height: math.unit(8, "feet"),
  42265. default: true
  42266. },
  42267. {
  42268. name: "Giant",
  42269. height: math.unit(80, "feet")
  42270. },
  42271. {
  42272. name: "Macro",
  42273. height: math.unit(800, "feet")
  42274. },
  42275. {
  42276. name: "Megamacro",
  42277. height: math.unit(8000, "feet")
  42278. },
  42279. {
  42280. name: "City-Crushing",
  42281. height: math.unit(24000, "feet")
  42282. },
  42283. {
  42284. name: "Mountain-Mashing",
  42285. height: math.unit(80000, "feet")
  42286. },
  42287. {
  42288. name: "Nation Nemesis",
  42289. height: math.unit(8e6, "feet")
  42290. },
  42291. {
  42292. name: "Continent Cracker",
  42293. height: math.unit(24e6, "feet")
  42294. },
  42295. {
  42296. name: "Earth-Eclipsing",
  42297. height: math.unit(2.4e8, "feet")
  42298. },
  42299. {
  42300. name: "Gas Giant Gulper",
  42301. height: math.unit(2.4e9, "feet")
  42302. },
  42303. {
  42304. name: "Sol-Swallowing",
  42305. height: math.unit(8e10, "feet")
  42306. },
  42307. {
  42308. name: "Galaxy Gulper",
  42309. height: math.unit(8, "galaxies")
  42310. },
  42311. {
  42312. name: "Cosmos Churner",
  42313. height: math.unit(8, "universes")
  42314. },
  42315. {
  42316. name: "Omnipotent Otter",
  42317. height: math.unit(80, "universes")
  42318. },
  42319. ]
  42320. ))
  42321. characterMakers.push(() => makeCharacter(
  42322. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42323. {
  42324. front: {
  42325. height: math.unit(2.6, "meters"),
  42326. weight: math.unit(900, "kg"),
  42327. name: "Front",
  42328. image: {
  42329. source: "./media/characters/neesha/front.svg",
  42330. extra: 1803/1653,
  42331. bottom: 128/1931
  42332. }
  42333. },
  42334. },
  42335. [
  42336. {
  42337. name: "Normal",
  42338. height: math.unit(2.6, "meters"),
  42339. default: true
  42340. },
  42341. {
  42342. name: "Macro",
  42343. height: math.unit(50, "meters")
  42344. },
  42345. ]
  42346. ))
  42347. characterMakers.push(() => makeCharacter(
  42348. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42349. {
  42350. front: {
  42351. height: math.unit(5, "feet"),
  42352. weight: math.unit(185, "lb"),
  42353. name: "Front",
  42354. image: {
  42355. source: "./media/characters/kyera/front.svg",
  42356. extra: 1875/1790,
  42357. bottom: 96/1971
  42358. }
  42359. },
  42360. },
  42361. [
  42362. {
  42363. name: "Normal",
  42364. height: math.unit(5, "feet"),
  42365. default: true
  42366. },
  42367. ]
  42368. ))
  42369. characterMakers.push(() => makeCharacter(
  42370. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42371. {
  42372. front: {
  42373. height: math.unit(7 + 6/12, "feet"),
  42374. weight: math.unit(540, "lb"),
  42375. name: "Front",
  42376. image: {
  42377. source: "./media/characters/yuko/front.svg",
  42378. extra: 1282/1222,
  42379. bottom: 101/1383
  42380. }
  42381. },
  42382. frontClothed: {
  42383. height: math.unit(7 + 6/12, "feet"),
  42384. weight: math.unit(540, "lb"),
  42385. name: "Front (Clothed)",
  42386. image: {
  42387. source: "./media/characters/yuko/front-clothed.svg",
  42388. extra: 1282/1222,
  42389. bottom: 101/1383
  42390. }
  42391. },
  42392. },
  42393. [
  42394. {
  42395. name: "Normal",
  42396. height: math.unit(7 + 6/12, "feet"),
  42397. default: true
  42398. },
  42399. {
  42400. name: "Macro",
  42401. height: math.unit(26 + 9/12, "feet")
  42402. },
  42403. {
  42404. name: "Megamacro",
  42405. height: math.unit(300, "feet")
  42406. },
  42407. {
  42408. name: "Gigamacro",
  42409. height: math.unit(5000, "feet")
  42410. },
  42411. {
  42412. name: "Planetary",
  42413. height: math.unit(10000, "miles")
  42414. },
  42415. ]
  42416. ))
  42417. characterMakers.push(() => makeCharacter(
  42418. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42419. {
  42420. front: {
  42421. height: math.unit(8 + 2/12, "feet"),
  42422. weight: math.unit(600, "lb"),
  42423. name: "Front",
  42424. image: {
  42425. source: "./media/characters/deam-nitrel/front.svg",
  42426. extra: 1308/1234,
  42427. bottom: 125/1433
  42428. }
  42429. },
  42430. },
  42431. [
  42432. {
  42433. name: "Normal",
  42434. height: math.unit(8 + 2/12, "feet"),
  42435. default: true
  42436. },
  42437. ]
  42438. ))
  42439. characterMakers.push(() => makeCharacter(
  42440. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42441. {
  42442. front: {
  42443. height: math.unit(6.1, "feet"),
  42444. weight: math.unit(180, "lb"),
  42445. name: "Front",
  42446. image: {
  42447. source: "./media/characters/skyress/front.svg",
  42448. extra: 1045/915,
  42449. bottom: 28/1073
  42450. }
  42451. },
  42452. maw: {
  42453. height: math.unit(1, "feet"),
  42454. name: "Maw",
  42455. image: {
  42456. source: "./media/characters/skyress/maw.svg"
  42457. }
  42458. },
  42459. },
  42460. [
  42461. {
  42462. name: "Normal",
  42463. height: math.unit(6.1, "feet"),
  42464. default: true
  42465. },
  42466. {
  42467. name: "Macro",
  42468. height: math.unit(200, "feet")
  42469. },
  42470. ]
  42471. ))
  42472. characterMakers.push(() => makeCharacter(
  42473. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42474. {
  42475. front: {
  42476. height: math.unit(4 + 2/12, "feet"),
  42477. weight: math.unit(40, "kg"),
  42478. name: "Front",
  42479. image: {
  42480. source: "./media/characters/amethyst-jones/front.svg",
  42481. extra: 1220/1150,
  42482. bottom: 101/1321
  42483. }
  42484. },
  42485. },
  42486. [
  42487. {
  42488. name: "Normal",
  42489. height: math.unit(4 + 2/12, "feet"),
  42490. default: true
  42491. },
  42492. ]
  42493. ))
  42494. characterMakers.push(() => makeCharacter(
  42495. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42496. {
  42497. front: {
  42498. height: math.unit(1.7, "m"),
  42499. weight: math.unit(135, "lb"),
  42500. name: "Front",
  42501. image: {
  42502. source: "./media/characters/jade/front.svg",
  42503. extra: 1818/1767,
  42504. bottom: 32/1850
  42505. }
  42506. },
  42507. back: {
  42508. height: math.unit(1.7, "m"),
  42509. weight: math.unit(135, "lb"),
  42510. name: "Back",
  42511. image: {
  42512. source: "./media/characters/jade/back.svg",
  42513. extra: 1869/1809,
  42514. bottom: 35/1904
  42515. }
  42516. },
  42517. hand: {
  42518. height: math.unit(0.24, "m"),
  42519. name: "Hand",
  42520. image: {
  42521. source: "./media/characters/jade/hand.svg"
  42522. }
  42523. },
  42524. foot: {
  42525. height: math.unit(0.263, "m"),
  42526. name: "Foot",
  42527. image: {
  42528. source: "./media/characters/jade/foot.svg"
  42529. }
  42530. },
  42531. dick: {
  42532. height: math.unit(0.47, "m"),
  42533. name: "Dick",
  42534. image: {
  42535. source: "./media/characters/jade/dick.svg"
  42536. }
  42537. },
  42538. },
  42539. [
  42540. {
  42541. name: "Micro",
  42542. height: math.unit(22, "cm")
  42543. },
  42544. {
  42545. name: "Normal",
  42546. height: math.unit(1.7, "m"),
  42547. default: true
  42548. },
  42549. {
  42550. name: "Macro",
  42551. height: math.unit(152, "m")
  42552. },
  42553. ]
  42554. ))
  42555. characterMakers.push(() => makeCharacter(
  42556. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42557. {
  42558. front: {
  42559. height: math.unit(100, "miles"),
  42560. weight: math.unit(20000, "tons"),
  42561. name: "Front",
  42562. image: {
  42563. source: "./media/characters/cookie/front.svg",
  42564. extra: 1125/1070,
  42565. bottom: 30/1155
  42566. }
  42567. },
  42568. },
  42569. [
  42570. {
  42571. name: "Big",
  42572. height: math.unit(50, "feet")
  42573. },
  42574. {
  42575. name: "Macro",
  42576. height: math.unit(100, "miles"),
  42577. default: true
  42578. },
  42579. {
  42580. name: "Megamacro",
  42581. height: math.unit(90000, "miles")
  42582. },
  42583. ]
  42584. ))
  42585. characterMakers.push(() => makeCharacter(
  42586. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42587. {
  42588. front: {
  42589. height: math.unit(6, "feet"),
  42590. weight: math.unit(145, "lb"),
  42591. name: "Front",
  42592. image: {
  42593. source: "./media/characters/farzian/front.svg",
  42594. extra: 1902/1693,
  42595. bottom: 108/2010
  42596. }
  42597. },
  42598. },
  42599. [
  42600. {
  42601. name: "Macro",
  42602. height: math.unit(500, "feet"),
  42603. default: true
  42604. },
  42605. ]
  42606. ))
  42607. characterMakers.push(() => makeCharacter(
  42608. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42609. {
  42610. front: {
  42611. height: math.unit(3 + 6/12, "feet"),
  42612. weight: math.unit(50, "lb"),
  42613. name: "Front",
  42614. image: {
  42615. source: "./media/characters/kimberly-tilson/front.svg",
  42616. extra: 1400/1322,
  42617. bottom: 36/1436
  42618. }
  42619. },
  42620. back: {
  42621. height: math.unit(3 + 6/12, "feet"),
  42622. weight: math.unit(50, "lb"),
  42623. name: "Back",
  42624. image: {
  42625. source: "./media/characters/kimberly-tilson/back.svg",
  42626. extra: 1370/1307,
  42627. bottom: 20/1390
  42628. }
  42629. },
  42630. },
  42631. [
  42632. {
  42633. name: "Normal",
  42634. height: math.unit(3 + 6/12, "feet"),
  42635. default: true
  42636. },
  42637. ]
  42638. ))
  42639. characterMakers.push(() => makeCharacter(
  42640. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42641. {
  42642. front: {
  42643. height: math.unit(350, "meters"),
  42644. weight: math.unit(7.57059e+8, "lb"),
  42645. name: "Front",
  42646. image: {
  42647. source: "./media/characters/harthos/front.svg",
  42648. extra: 455/446,
  42649. bottom: 15/470
  42650. },
  42651. form: "peacekeeper",
  42652. default: true
  42653. },
  42654. allusus_front: {
  42655. height: math.unit(270, "meters"),
  42656. weight: math.unit(3.47550e+8, "lb"),
  42657. name: "Front",
  42658. image: {
  42659. source: "./media/characters/harthos/allusus-front.svg",
  42660. extra: 455/446,
  42661. bottom: 15/470
  42662. },
  42663. form: "allusus",
  42664. },
  42665. },
  42666. [
  42667. {
  42668. name: "Macro",
  42669. height: math.unit(350, "meters"),
  42670. default: true,
  42671. form: "peacekeeper"
  42672. },
  42673. {
  42674. name: "Macro",
  42675. height: math.unit(270, "meters"),
  42676. default: true,
  42677. form: "allusus"
  42678. },
  42679. ],
  42680. {
  42681. "peacekeeper": {
  42682. name: "Peacekeeper",
  42683. default: true
  42684. },
  42685. "allusus": {
  42686. name: "Allusus",
  42687. },
  42688. }
  42689. ))
  42690. characterMakers.push(() => makeCharacter(
  42691. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42692. {
  42693. front: {
  42694. height: math.unit(15, "feet"),
  42695. name: "Front",
  42696. image: {
  42697. source: "./media/characters/hypatia/front.svg",
  42698. extra: 1653/1591,
  42699. bottom: 79/1732
  42700. }
  42701. },
  42702. },
  42703. [
  42704. {
  42705. name: "Normal",
  42706. height: math.unit(15, "feet")
  42707. },
  42708. {
  42709. name: "Small",
  42710. height: math.unit(300, "feet")
  42711. },
  42712. {
  42713. name: "Macro",
  42714. height: math.unit(2500, "feet"),
  42715. default: true
  42716. },
  42717. {
  42718. name: "Mega Macro",
  42719. height: math.unit(1500, "miles")
  42720. },
  42721. {
  42722. name: "Giga Macro",
  42723. height: math.unit(1.5e6, "miles")
  42724. },
  42725. ]
  42726. ))
  42727. characterMakers.push(() => makeCharacter(
  42728. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42729. {
  42730. front: {
  42731. height: math.unit(6, "feet"),
  42732. weight: math.unit(200, "lb"),
  42733. name: "Front",
  42734. image: {
  42735. source: "./media/characters/wulver/front.svg",
  42736. extra: 1724/1632,
  42737. bottom: 130/1854
  42738. }
  42739. },
  42740. frontNsfw: {
  42741. height: math.unit(6, "feet"),
  42742. weight: math.unit(200, "lb"),
  42743. name: "Front (NSFW)",
  42744. image: {
  42745. source: "./media/characters/wulver/front-nsfw.svg",
  42746. extra: 1724/1632,
  42747. bottom: 130/1854
  42748. }
  42749. },
  42750. },
  42751. [
  42752. {
  42753. name: "Human-Sized",
  42754. height: math.unit(6, "feet")
  42755. },
  42756. {
  42757. name: "Normal",
  42758. height: math.unit(4, "meters"),
  42759. default: true
  42760. },
  42761. {
  42762. name: "Large",
  42763. height: math.unit(6, "m")
  42764. },
  42765. ]
  42766. ))
  42767. characterMakers.push(() => makeCharacter(
  42768. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42769. {
  42770. front: {
  42771. height: math.unit(7, "feet"),
  42772. name: "Front",
  42773. image: {
  42774. source: "./media/characters/maru/front.svg",
  42775. extra: 1595/1570,
  42776. bottom: 0/1595
  42777. }
  42778. },
  42779. },
  42780. [
  42781. {
  42782. name: "Normal",
  42783. height: math.unit(7, "feet"),
  42784. default: true
  42785. },
  42786. {
  42787. name: "Macro",
  42788. height: math.unit(700, "feet")
  42789. },
  42790. {
  42791. name: "Mega Macro",
  42792. height: math.unit(25, "miles")
  42793. },
  42794. ]
  42795. ))
  42796. characterMakers.push(() => makeCharacter(
  42797. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42798. {
  42799. front: {
  42800. height: math.unit(6, "feet"),
  42801. weight: math.unit(170, "lb"),
  42802. name: "Front",
  42803. image: {
  42804. source: "./media/characters/xenon/front.svg",
  42805. extra: 1376/1305,
  42806. bottom: 56/1432
  42807. }
  42808. },
  42809. back: {
  42810. height: math.unit(6, "feet"),
  42811. weight: math.unit(170, "lb"),
  42812. name: "Back",
  42813. image: {
  42814. source: "./media/characters/xenon/back.svg",
  42815. extra: 1328/1259,
  42816. bottom: 95/1423
  42817. }
  42818. },
  42819. maw: {
  42820. height: math.unit(0.52, "feet"),
  42821. name: "Maw",
  42822. image: {
  42823. source: "./media/characters/xenon/maw.svg"
  42824. }
  42825. },
  42826. handLeft: {
  42827. height: math.unit(0.82 * 169 / 153, "feet"),
  42828. name: "Hand (Left)",
  42829. image: {
  42830. source: "./media/characters/xenon/hand-left.svg"
  42831. }
  42832. },
  42833. handRight: {
  42834. height: math.unit(0.82, "feet"),
  42835. name: "Hand (Right)",
  42836. image: {
  42837. source: "./media/characters/xenon/hand-right.svg"
  42838. }
  42839. },
  42840. footLeft: {
  42841. height: math.unit(1.13, "feet"),
  42842. name: "Foot (Left)",
  42843. image: {
  42844. source: "./media/characters/xenon/foot-left.svg"
  42845. }
  42846. },
  42847. footRight: {
  42848. height: math.unit(1.13 * 194 / 196, "feet"),
  42849. name: "Foot (Right)",
  42850. image: {
  42851. source: "./media/characters/xenon/foot-right.svg"
  42852. }
  42853. },
  42854. },
  42855. [
  42856. {
  42857. name: "Micro",
  42858. height: math.unit(0.8, "inches")
  42859. },
  42860. {
  42861. name: "Normal",
  42862. height: math.unit(6, "feet")
  42863. },
  42864. {
  42865. name: "Macro",
  42866. height: math.unit(50, "feet"),
  42867. default: true
  42868. },
  42869. {
  42870. name: "Macro+",
  42871. height: math.unit(250, "feet")
  42872. },
  42873. {
  42874. name: "Megamacro",
  42875. height: math.unit(1500, "feet")
  42876. },
  42877. ]
  42878. ))
  42879. characterMakers.push(() => makeCharacter(
  42880. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42881. {
  42882. front: {
  42883. height: math.unit(7 + 5/12, "feet"),
  42884. name: "Front",
  42885. image: {
  42886. source: "./media/characters/zane/front.svg",
  42887. extra: 1260/1203,
  42888. bottom: 94/1354
  42889. }
  42890. },
  42891. back: {
  42892. height: math.unit(5.05, "feet"),
  42893. name: "Back",
  42894. image: {
  42895. source: "./media/characters/zane/back.svg",
  42896. extra: 893/829,
  42897. bottom: 30/923
  42898. }
  42899. },
  42900. werewolf: {
  42901. height: math.unit(11, "feet"),
  42902. name: "Werewolf",
  42903. image: {
  42904. source: "./media/characters/zane/werewolf.svg",
  42905. extra: 1383/1323,
  42906. bottom: 89/1472
  42907. }
  42908. },
  42909. foot: {
  42910. height: math.unit(1.46, "feet"),
  42911. name: "Foot",
  42912. image: {
  42913. source: "./media/characters/zane/foot.svg"
  42914. }
  42915. },
  42916. footFront: {
  42917. height: math.unit(0.784, "feet"),
  42918. name: "Foot (Front)",
  42919. image: {
  42920. source: "./media/characters/zane/foot-front.svg"
  42921. }
  42922. },
  42923. dick: {
  42924. height: math.unit(1.95, "feet"),
  42925. name: "Dick",
  42926. image: {
  42927. source: "./media/characters/zane/dick.svg"
  42928. }
  42929. },
  42930. dickWerewolf: {
  42931. height: math.unit(3.77, "feet"),
  42932. name: "Dick (Werewolf)",
  42933. image: {
  42934. source: "./media/characters/zane/dick.svg"
  42935. }
  42936. },
  42937. },
  42938. [
  42939. {
  42940. name: "Normal",
  42941. height: math.unit(7 + 5/12, "feet"),
  42942. default: true
  42943. },
  42944. ]
  42945. ))
  42946. characterMakers.push(() => makeCharacter(
  42947. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42948. {
  42949. front: {
  42950. height: math.unit(6 + 2/12, "feet"),
  42951. weight: math.unit(284, "lb"),
  42952. name: "Front",
  42953. image: {
  42954. source: "./media/characters/benni-desparque/front.svg",
  42955. extra: 1353/1126,
  42956. bottom: 69/1422
  42957. }
  42958. },
  42959. },
  42960. [
  42961. {
  42962. name: "Civilian",
  42963. height: math.unit(6 + 2/12, "feet")
  42964. },
  42965. {
  42966. name: "Normal",
  42967. height: math.unit(98, "feet"),
  42968. default: true
  42969. },
  42970. {
  42971. name: "Kaiju Fighter",
  42972. height: math.unit(268, "feet")
  42973. },
  42974. ]
  42975. ))
  42976. characterMakers.push(() => makeCharacter(
  42977. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42978. {
  42979. front: {
  42980. height: math.unit(5, "feet"),
  42981. weight: math.unit(105, "lb"),
  42982. name: "Front",
  42983. image: {
  42984. source: "./media/characters/maxine/front.svg",
  42985. extra: 1386/1250,
  42986. bottom: 71/1457
  42987. }
  42988. },
  42989. },
  42990. [
  42991. {
  42992. name: "Normal",
  42993. height: math.unit(5, "feet"),
  42994. default: true
  42995. },
  42996. ]
  42997. ))
  42998. characterMakers.push(() => makeCharacter(
  42999. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43000. {
  43001. front: {
  43002. height: math.unit(11 + 7/12, "feet"),
  43003. weight: math.unit(9576, "lb"),
  43004. name: "Front",
  43005. image: {
  43006. source: "./media/characters/scaly/front.svg",
  43007. extra: 888/867,
  43008. bottom: 36/924
  43009. }
  43010. },
  43011. },
  43012. [
  43013. {
  43014. name: "Normal",
  43015. height: math.unit(11 + 7/12, "feet"),
  43016. default: true
  43017. },
  43018. ]
  43019. ))
  43020. characterMakers.push(() => makeCharacter(
  43021. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43022. {
  43023. front: {
  43024. height: math.unit(6 + 3/12, "feet"),
  43025. name: "Front",
  43026. image: {
  43027. source: "./media/characters/saelria/front.svg",
  43028. extra: 1243/1138,
  43029. bottom: 46/1289
  43030. }
  43031. },
  43032. },
  43033. [
  43034. {
  43035. name: "Micro",
  43036. height: math.unit(6, "inches"),
  43037. },
  43038. {
  43039. name: "Normal",
  43040. height: math.unit(6 + 3/12, "feet"),
  43041. default: true
  43042. },
  43043. {
  43044. name: "Macro",
  43045. height: math.unit(25, "feet")
  43046. },
  43047. ]
  43048. ))
  43049. characterMakers.push(() => makeCharacter(
  43050. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43051. {
  43052. front: {
  43053. height: math.unit(80, "meters"),
  43054. weight: math.unit(7000, "tonnes"),
  43055. name: "Front",
  43056. image: {
  43057. source: "./media/characters/tef/front.svg",
  43058. extra: 2036/1991,
  43059. bottom: 54/2090
  43060. }
  43061. },
  43062. back: {
  43063. height: math.unit(80, "meters"),
  43064. weight: math.unit(7000, "tonnes"),
  43065. name: "Back",
  43066. image: {
  43067. source: "./media/characters/tef/back.svg",
  43068. extra: 2036/1991,
  43069. bottom: 54/2090
  43070. }
  43071. },
  43072. },
  43073. [
  43074. {
  43075. name: "Macro",
  43076. height: math.unit(80, "meters"),
  43077. default: true
  43078. },
  43079. ]
  43080. ))
  43081. characterMakers.push(() => makeCharacter(
  43082. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43083. {
  43084. front: {
  43085. height: math.unit(13, "feet"),
  43086. weight: math.unit(6, "tons"),
  43087. name: "Front",
  43088. image: {
  43089. source: "./media/characters/rover/front.svg",
  43090. extra: 1233/1156,
  43091. bottom: 50/1283
  43092. }
  43093. },
  43094. back: {
  43095. height: math.unit(13, "feet"),
  43096. weight: math.unit(6, "tons"),
  43097. name: "Back",
  43098. image: {
  43099. source: "./media/characters/rover/back.svg",
  43100. extra: 1327/1258,
  43101. bottom: 39/1366
  43102. }
  43103. },
  43104. },
  43105. [
  43106. {
  43107. name: "Normal",
  43108. height: math.unit(13, "feet"),
  43109. default: true
  43110. },
  43111. {
  43112. name: "Macro",
  43113. height: math.unit(1300, "feet")
  43114. },
  43115. {
  43116. name: "Megamacro",
  43117. height: math.unit(1300, "miles")
  43118. },
  43119. {
  43120. name: "Gigamacro",
  43121. height: math.unit(1300000, "miles")
  43122. },
  43123. ]
  43124. ))
  43125. characterMakers.push(() => makeCharacter(
  43126. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43127. {
  43128. front: {
  43129. height: math.unit(10, "feet"),
  43130. weight: math.unit(500, "lb"),
  43131. name: "Front",
  43132. image: {
  43133. source: "./media/characters/ariz/front.svg",
  43134. extra: 461/450,
  43135. bottom: 16/477
  43136. }
  43137. },
  43138. },
  43139. [
  43140. {
  43141. name: "MiniMacro",
  43142. height: math.unit(10, "feet"),
  43143. default: true
  43144. },
  43145. ]
  43146. ))
  43147. characterMakers.push(() => makeCharacter(
  43148. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43149. {
  43150. front: {
  43151. height: math.unit(6, "feet"),
  43152. weight: math.unit(140, "lb"),
  43153. name: "Front",
  43154. image: {
  43155. source: "./media/characters/sigrun/front.svg",
  43156. extra: 1418/1359,
  43157. bottom: 27/1445
  43158. }
  43159. },
  43160. },
  43161. [
  43162. {
  43163. name: "Macro",
  43164. height: math.unit(35, "feet"),
  43165. default: true
  43166. },
  43167. ]
  43168. ))
  43169. characterMakers.push(() => makeCharacter(
  43170. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43171. {
  43172. front: {
  43173. height: math.unit(6, "feet"),
  43174. weight: math.unit(150, "lb"),
  43175. name: "Front",
  43176. image: {
  43177. source: "./media/characters/numin/front.svg",
  43178. extra: 1433/1388,
  43179. bottom: 12/1445
  43180. }
  43181. },
  43182. },
  43183. [
  43184. {
  43185. name: "Macro",
  43186. height: math.unit(21.5, "km"),
  43187. default: true
  43188. },
  43189. ]
  43190. ))
  43191. characterMakers.push(() => makeCharacter(
  43192. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43193. {
  43194. front: {
  43195. height: math.unit(6, "feet"),
  43196. weight: math.unit(463, "lb"),
  43197. name: "Front",
  43198. image: {
  43199. source: "./media/characters/melwa/front.svg",
  43200. extra: 1307/1248,
  43201. bottom: 93/1400
  43202. }
  43203. },
  43204. },
  43205. [
  43206. {
  43207. name: "Macro",
  43208. height: math.unit(50, "meters"),
  43209. default: true
  43210. },
  43211. ]
  43212. ))
  43213. characterMakers.push(() => makeCharacter(
  43214. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43215. {
  43216. front: {
  43217. height: math.unit(325, "feet"),
  43218. name: "Front",
  43219. image: {
  43220. source: "./media/characters/zorkaiju/front.svg",
  43221. extra: 1955/1814,
  43222. bottom: 40/1995
  43223. }
  43224. },
  43225. frontExtended: {
  43226. height: math.unit(325, "feet"),
  43227. name: "Front (Extended)",
  43228. image: {
  43229. source: "./media/characters/zorkaiju/front-extended.svg",
  43230. extra: 1955/1814,
  43231. bottom: 40/1995
  43232. }
  43233. },
  43234. side: {
  43235. height: math.unit(325, "feet"),
  43236. name: "Side",
  43237. image: {
  43238. source: "./media/characters/zorkaiju/side.svg",
  43239. extra: 1495/1396,
  43240. bottom: 17/1512
  43241. }
  43242. },
  43243. sideExtended: {
  43244. height: math.unit(325, "feet"),
  43245. name: "Side (Extended)",
  43246. image: {
  43247. source: "./media/characters/zorkaiju/side-extended.svg",
  43248. extra: 1495/1396,
  43249. bottom: 17/1512
  43250. }
  43251. },
  43252. back: {
  43253. height: math.unit(325, "feet"),
  43254. name: "Back",
  43255. image: {
  43256. source: "./media/characters/zorkaiju/back.svg",
  43257. extra: 1959/1821,
  43258. bottom: 31/1990
  43259. }
  43260. },
  43261. backExtended: {
  43262. height: math.unit(325, "feet"),
  43263. name: "Back (Extended)",
  43264. image: {
  43265. source: "./media/characters/zorkaiju/back-extended.svg",
  43266. extra: 1959/1821,
  43267. bottom: 31/1990
  43268. }
  43269. },
  43270. hand: {
  43271. height: math.unit(58.4, "feet"),
  43272. name: "Hand",
  43273. image: {
  43274. source: "./media/characters/zorkaiju/hand.svg"
  43275. }
  43276. },
  43277. handExtended: {
  43278. height: math.unit(61.4, "feet"),
  43279. name: "Hand (Extended)",
  43280. image: {
  43281. source: "./media/characters/zorkaiju/hand-extended.svg"
  43282. }
  43283. },
  43284. foot: {
  43285. height: math.unit(95, "feet"),
  43286. name: "Foot",
  43287. image: {
  43288. source: "./media/characters/zorkaiju/foot.svg"
  43289. }
  43290. },
  43291. leftArm: {
  43292. height: math.unit(59, "feet"),
  43293. name: "Left Arm",
  43294. image: {
  43295. source: "./media/characters/zorkaiju/left-arm.svg"
  43296. }
  43297. },
  43298. rightArm: {
  43299. height: math.unit(59, "feet"),
  43300. name: "Right Arm",
  43301. image: {
  43302. source: "./media/characters/zorkaiju/right-arm.svg"
  43303. }
  43304. },
  43305. leftArmExtended: {
  43306. height: math.unit(59 * 1.033546, "feet"),
  43307. name: "Left Arm (Extended)",
  43308. image: {
  43309. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43310. }
  43311. },
  43312. rightArmExtended: {
  43313. height: math.unit(59 * 1.0496, "feet"),
  43314. name: "Right Arm (Extended)",
  43315. image: {
  43316. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43317. }
  43318. },
  43319. tail: {
  43320. height: math.unit(104, "feet"),
  43321. name: "Tail",
  43322. image: {
  43323. source: "./media/characters/zorkaiju/tail.svg"
  43324. }
  43325. },
  43326. tailExtended: {
  43327. height: math.unit(104, "feet"),
  43328. name: "Tail (Extended)",
  43329. image: {
  43330. source: "./media/characters/zorkaiju/tail-extended.svg"
  43331. }
  43332. },
  43333. tailBottom: {
  43334. height: math.unit(104, "feet"),
  43335. name: "Tail Bottom",
  43336. image: {
  43337. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43338. }
  43339. },
  43340. crystal: {
  43341. height: math.unit(27.54, "feet"),
  43342. name: "Crystal",
  43343. image: {
  43344. source: "./media/characters/zorkaiju/crystal.svg"
  43345. }
  43346. },
  43347. },
  43348. [
  43349. {
  43350. name: "Kaiju",
  43351. height: math.unit(325, "feet"),
  43352. default: true
  43353. },
  43354. ]
  43355. ))
  43356. characterMakers.push(() => makeCharacter(
  43357. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43358. {
  43359. front: {
  43360. height: math.unit(6 + 1/12, "feet"),
  43361. weight: math.unit(115, "lb"),
  43362. name: "Front",
  43363. image: {
  43364. source: "./media/characters/bailey-belfry/front.svg",
  43365. extra: 1240/1121,
  43366. bottom: 101/1341
  43367. }
  43368. },
  43369. },
  43370. [
  43371. {
  43372. name: "Normal",
  43373. height: math.unit(6 + 1/12, "feet"),
  43374. default: true
  43375. },
  43376. ]
  43377. ))
  43378. characterMakers.push(() => makeCharacter(
  43379. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43380. {
  43381. side: {
  43382. height: math.unit(4, "meters"),
  43383. weight: math.unit(250, "kg"),
  43384. name: "Side",
  43385. image: {
  43386. source: "./media/characters/blacky/side.svg",
  43387. extra: 1027/919,
  43388. bottom: 43/1070
  43389. }
  43390. },
  43391. maw: {
  43392. height: math.unit(1, "meters"),
  43393. name: "Maw",
  43394. image: {
  43395. source: "./media/characters/blacky/maw.svg"
  43396. }
  43397. },
  43398. paw: {
  43399. height: math.unit(1, "meters"),
  43400. name: "Paw",
  43401. image: {
  43402. source: "./media/characters/blacky/paw.svg"
  43403. }
  43404. },
  43405. },
  43406. [
  43407. {
  43408. name: "Normal",
  43409. height: math.unit(4, "meters"),
  43410. default: true
  43411. },
  43412. ]
  43413. ))
  43414. characterMakers.push(() => makeCharacter(
  43415. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43416. {
  43417. front: {
  43418. height: math.unit(170, "cm"),
  43419. weight: math.unit(66, "kg"),
  43420. name: "Front",
  43421. image: {
  43422. source: "./media/characters/thux-ei/front.svg",
  43423. extra: 1109/1011,
  43424. bottom: 8/1117
  43425. }
  43426. },
  43427. },
  43428. [
  43429. {
  43430. name: "Normal",
  43431. height: math.unit(170, "cm"),
  43432. default: true
  43433. },
  43434. ]
  43435. ))
  43436. characterMakers.push(() => makeCharacter(
  43437. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43438. {
  43439. front: {
  43440. height: math.unit(5, "feet"),
  43441. weight: math.unit(120, "lb"),
  43442. name: "Front",
  43443. image: {
  43444. source: "./media/characters/roxanne-voltaire/front.svg",
  43445. extra: 1901/1779,
  43446. bottom: 53/1954
  43447. }
  43448. },
  43449. },
  43450. [
  43451. {
  43452. name: "Normal",
  43453. height: math.unit(5, "feet"),
  43454. default: true
  43455. },
  43456. {
  43457. name: "Giant",
  43458. height: math.unit(50, "feet")
  43459. },
  43460. {
  43461. name: "Titan",
  43462. height: math.unit(500, "feet")
  43463. },
  43464. {
  43465. name: "Macro",
  43466. height: math.unit(5000, "feet")
  43467. },
  43468. {
  43469. name: "Megamacro",
  43470. height: math.unit(50000, "feet")
  43471. },
  43472. {
  43473. name: "Gigamacro",
  43474. height: math.unit(500000, "feet")
  43475. },
  43476. {
  43477. name: "Teramacro",
  43478. height: math.unit(5e6, "feet")
  43479. },
  43480. ]
  43481. ))
  43482. characterMakers.push(() => makeCharacter(
  43483. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43484. {
  43485. front: {
  43486. height: math.unit(6 + 2/12, "feet"),
  43487. name: "Front",
  43488. image: {
  43489. source: "./media/characters/squeaks/front.svg",
  43490. extra: 1823/1768,
  43491. bottom: 138/1961
  43492. }
  43493. },
  43494. },
  43495. [
  43496. {
  43497. name: "Micro",
  43498. height: math.unit(0.5, "inches")
  43499. },
  43500. {
  43501. name: "Normal",
  43502. height: math.unit(6 + 2/12, "feet"),
  43503. default: true
  43504. },
  43505. {
  43506. name: "Macro",
  43507. height: math.unit(600, "feet")
  43508. },
  43509. ]
  43510. ))
  43511. characterMakers.push(() => makeCharacter(
  43512. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43513. {
  43514. front: {
  43515. height: math.unit(1.72, "meters"),
  43516. name: "Front",
  43517. image: {
  43518. source: "./media/characters/archinger/front.svg",
  43519. extra: 1861/1675,
  43520. bottom: 125/1986
  43521. }
  43522. },
  43523. back: {
  43524. height: math.unit(1.72, "meters"),
  43525. name: "Back",
  43526. image: {
  43527. source: "./media/characters/archinger/back.svg",
  43528. extra: 1844/1701,
  43529. bottom: 104/1948
  43530. }
  43531. },
  43532. cock: {
  43533. height: math.unit(0.59, "feet"),
  43534. name: "Cock",
  43535. image: {
  43536. source: "./media/characters/archinger/cock.svg"
  43537. }
  43538. },
  43539. },
  43540. [
  43541. {
  43542. name: "Normal",
  43543. height: math.unit(1.72, "meters"),
  43544. default: true
  43545. },
  43546. {
  43547. name: "Macro",
  43548. height: math.unit(84, "meters")
  43549. },
  43550. {
  43551. name: "Macro+",
  43552. height: math.unit(112, "meters")
  43553. },
  43554. {
  43555. name: "Macro++",
  43556. height: math.unit(960, "meters")
  43557. },
  43558. {
  43559. name: "Macro+++",
  43560. height: math.unit(4, "km")
  43561. },
  43562. {
  43563. name: "Macro++++",
  43564. height: math.unit(48, "km")
  43565. },
  43566. {
  43567. name: "Macro+++++",
  43568. height: math.unit(4500, "km")
  43569. },
  43570. ]
  43571. ))
  43572. characterMakers.push(() => makeCharacter(
  43573. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43574. {
  43575. front: {
  43576. height: math.unit(5 + 5/12, "feet"),
  43577. name: "Front",
  43578. image: {
  43579. source: "./media/characters/alsnapz/front.svg",
  43580. extra: 1157/1065,
  43581. bottom: 42/1199
  43582. }
  43583. },
  43584. },
  43585. [
  43586. {
  43587. name: "Normal",
  43588. height: math.unit(5 + 5/12, "feet"),
  43589. default: true
  43590. },
  43591. ]
  43592. ))
  43593. characterMakers.push(() => makeCharacter(
  43594. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43595. {
  43596. side: {
  43597. height: math.unit(3.2, "earths"),
  43598. name: "Side",
  43599. image: {
  43600. source: "./media/characters/mag/side.svg",
  43601. extra: 1331/1008,
  43602. bottom: 52/1383
  43603. }
  43604. },
  43605. wing: {
  43606. height: math.unit(1.94, "earths"),
  43607. name: "Wing",
  43608. image: {
  43609. source: "./media/characters/mag/wing.svg"
  43610. }
  43611. },
  43612. dick: {
  43613. height: math.unit(1.8, "earths"),
  43614. name: "Dick",
  43615. image: {
  43616. source: "./media/characters/mag/dick.svg"
  43617. }
  43618. },
  43619. ass: {
  43620. height: math.unit(1.33, "earths"),
  43621. name: "Ass",
  43622. image: {
  43623. source: "./media/characters/mag/ass.svg"
  43624. }
  43625. },
  43626. head: {
  43627. height: math.unit(1.1, "earths"),
  43628. name: "Head",
  43629. image: {
  43630. source: "./media/characters/mag/head.svg"
  43631. }
  43632. },
  43633. maw: {
  43634. height: math.unit(1.62, "earths"),
  43635. name: "Maw",
  43636. image: {
  43637. source: "./media/characters/mag/maw.svg"
  43638. }
  43639. },
  43640. },
  43641. [
  43642. {
  43643. name: "Small",
  43644. height: math.unit(162, "feet")
  43645. },
  43646. {
  43647. name: "Normal",
  43648. height: math.unit(3.2, "earths"),
  43649. default: true
  43650. },
  43651. ]
  43652. ))
  43653. characterMakers.push(() => makeCharacter(
  43654. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43655. {
  43656. front: {
  43657. height: math.unit(512, "feet"),
  43658. weight: math.unit(63509, "tonnes"),
  43659. name: "Front",
  43660. image: {
  43661. source: "./media/characters/vorrel-harroc/front.svg",
  43662. extra: 1075/1063,
  43663. bottom: 62/1137
  43664. }
  43665. },
  43666. },
  43667. [
  43668. {
  43669. name: "Normal",
  43670. height: math.unit(10, "feet")
  43671. },
  43672. {
  43673. name: "Macro",
  43674. height: math.unit(512, "feet"),
  43675. default: true
  43676. },
  43677. {
  43678. name: "Megamacro",
  43679. height: math.unit(256, "miles")
  43680. },
  43681. {
  43682. name: "Gigamacro",
  43683. height: math.unit(4096, "miles")
  43684. },
  43685. ]
  43686. ))
  43687. characterMakers.push(() => makeCharacter(
  43688. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43689. {
  43690. side: {
  43691. height: math.unit(50, "feet"),
  43692. name: "Side",
  43693. image: {
  43694. source: "./media/characters/froimar/side.svg",
  43695. extra: 855/638,
  43696. bottom: 99/954
  43697. }
  43698. },
  43699. },
  43700. [
  43701. {
  43702. name: "Macro",
  43703. height: math.unit(50, "feet"),
  43704. default: true
  43705. },
  43706. ]
  43707. ))
  43708. characterMakers.push(() => makeCharacter(
  43709. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43710. {
  43711. front: {
  43712. height: math.unit(210, "miles"),
  43713. name: "Front",
  43714. image: {
  43715. source: "./media/characters/timothy/front.svg",
  43716. extra: 1007/943,
  43717. bottom: 62/1069
  43718. }
  43719. },
  43720. frontSkirt: {
  43721. height: math.unit(210, "miles"),
  43722. name: "Front (Skirt)",
  43723. image: {
  43724. source: "./media/characters/timothy/front-skirt.svg",
  43725. extra: 1007/943,
  43726. bottom: 62/1069
  43727. }
  43728. },
  43729. frontCoat: {
  43730. height: math.unit(210, "miles"),
  43731. name: "Front (Coat)",
  43732. image: {
  43733. source: "./media/characters/timothy/front-coat.svg",
  43734. extra: 1007/943,
  43735. bottom: 62/1069
  43736. }
  43737. },
  43738. },
  43739. [
  43740. {
  43741. name: "Macro",
  43742. height: math.unit(210, "miles"),
  43743. default: true
  43744. },
  43745. {
  43746. name: "Megamacro",
  43747. height: math.unit(210000, "miles")
  43748. },
  43749. ]
  43750. ))
  43751. characterMakers.push(() => makeCharacter(
  43752. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43753. {
  43754. front: {
  43755. height: math.unit(188, "feet"),
  43756. name: "Front",
  43757. image: {
  43758. source: "./media/characters/pyotr/front.svg",
  43759. extra: 1912/1826,
  43760. bottom: 18/1930
  43761. }
  43762. },
  43763. },
  43764. [
  43765. {
  43766. name: "Macro",
  43767. height: math.unit(188, "feet"),
  43768. default: true
  43769. },
  43770. {
  43771. name: "Megamacro",
  43772. height: math.unit(8, "miles")
  43773. },
  43774. ]
  43775. ))
  43776. characterMakers.push(() => makeCharacter(
  43777. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43778. {
  43779. side: {
  43780. height: math.unit(10, "feet"),
  43781. weight: math.unit(4500, "lb"),
  43782. name: "Side",
  43783. image: {
  43784. source: "./media/characters/ackart/side.svg",
  43785. extra: 1776/1668,
  43786. bottom: 116/1892
  43787. }
  43788. },
  43789. },
  43790. [
  43791. {
  43792. name: "Normal",
  43793. height: math.unit(10, "feet"),
  43794. default: true
  43795. },
  43796. ]
  43797. ))
  43798. characterMakers.push(() => makeCharacter(
  43799. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43800. {
  43801. side: {
  43802. height: math.unit(21, "feet"),
  43803. name: "Side",
  43804. image: {
  43805. source: "./media/characters/nolow/side.svg",
  43806. extra: 1484/1434,
  43807. bottom: 85/1569
  43808. }
  43809. },
  43810. sideErect: {
  43811. height: math.unit(21, "feet"),
  43812. name: "Side-erect",
  43813. image: {
  43814. source: "./media/characters/nolow/side-erect.svg",
  43815. extra: 1484/1434,
  43816. bottom: 85/1569
  43817. }
  43818. },
  43819. },
  43820. [
  43821. {
  43822. name: "Regular",
  43823. height: math.unit(12, "feet")
  43824. },
  43825. {
  43826. name: "Big Chee",
  43827. height: math.unit(21, "feet"),
  43828. default: true
  43829. },
  43830. ]
  43831. ))
  43832. characterMakers.push(() => makeCharacter(
  43833. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43834. {
  43835. front: {
  43836. height: math.unit(7, "feet"),
  43837. weight: math.unit(250, "lb"),
  43838. name: "Front",
  43839. image: {
  43840. source: "./media/characters/nines/front.svg",
  43841. extra: 1741/1607,
  43842. bottom: 41/1782
  43843. }
  43844. },
  43845. side: {
  43846. height: math.unit(7, "feet"),
  43847. weight: math.unit(250, "lb"),
  43848. name: "Side",
  43849. image: {
  43850. source: "./media/characters/nines/side.svg",
  43851. extra: 1854/1735,
  43852. bottom: 93/1947
  43853. }
  43854. },
  43855. back: {
  43856. height: math.unit(7, "feet"),
  43857. weight: math.unit(250, "lb"),
  43858. name: "Back",
  43859. image: {
  43860. source: "./media/characters/nines/back.svg",
  43861. extra: 1748/1615,
  43862. bottom: 20/1768
  43863. }
  43864. },
  43865. },
  43866. [
  43867. {
  43868. name: "Megamacro",
  43869. height: math.unit(99, "km"),
  43870. default: true
  43871. },
  43872. ]
  43873. ))
  43874. characterMakers.push(() => makeCharacter(
  43875. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43876. {
  43877. front: {
  43878. height: math.unit(5 + 10/12, "feet"),
  43879. weight: math.unit(210, "lb"),
  43880. name: "Front",
  43881. image: {
  43882. source: "./media/characters/zenith/front.svg",
  43883. extra: 1531/1452,
  43884. bottom: 198/1729
  43885. }
  43886. },
  43887. back: {
  43888. height: math.unit(5 + 10/12, "feet"),
  43889. weight: math.unit(210, "lb"),
  43890. name: "Back",
  43891. image: {
  43892. source: "./media/characters/zenith/back.svg",
  43893. extra: 1571/1487,
  43894. bottom: 75/1646
  43895. }
  43896. },
  43897. },
  43898. [
  43899. {
  43900. name: "Normal",
  43901. height: math.unit(5 + 10/12, "feet"),
  43902. default: true
  43903. }
  43904. ]
  43905. ))
  43906. characterMakers.push(() => makeCharacter(
  43907. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43908. {
  43909. front: {
  43910. height: math.unit(4, "feet"),
  43911. weight: math.unit(60, "lb"),
  43912. name: "Front",
  43913. image: {
  43914. source: "./media/characters/jasper/front.svg",
  43915. extra: 1450/1379,
  43916. bottom: 19/1469
  43917. }
  43918. },
  43919. },
  43920. [
  43921. {
  43922. name: "Normal",
  43923. height: math.unit(4, "feet"),
  43924. default: true
  43925. },
  43926. ]
  43927. ))
  43928. characterMakers.push(() => makeCharacter(
  43929. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43930. {
  43931. front: {
  43932. height: math.unit(6 + 5/12, "feet"),
  43933. weight: math.unit(290, "lb"),
  43934. name: "Front",
  43935. image: {
  43936. source: "./media/characters/tiberius-thyben/front.svg",
  43937. extra: 757/739,
  43938. bottom: 39/796
  43939. }
  43940. },
  43941. },
  43942. [
  43943. {
  43944. name: "Micro",
  43945. height: math.unit(1.5, "inches")
  43946. },
  43947. {
  43948. name: "Normal",
  43949. height: math.unit(6 + 5/12, "feet"),
  43950. default: true
  43951. },
  43952. {
  43953. name: "Macro",
  43954. height: math.unit(300, "feet")
  43955. },
  43956. ]
  43957. ))
  43958. characterMakers.push(() => makeCharacter(
  43959. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43960. {
  43961. front: {
  43962. height: math.unit(5 + 6/12, "feet"),
  43963. weight: math.unit(60, "kg"),
  43964. name: "Front",
  43965. image: {
  43966. source: "./media/characters/sabre/front.svg",
  43967. extra: 738/671,
  43968. bottom: 27/765
  43969. }
  43970. },
  43971. },
  43972. [
  43973. {
  43974. name: "Teeny",
  43975. height: math.unit(2, "inches")
  43976. },
  43977. {
  43978. name: "Smol",
  43979. height: math.unit(8, "inches")
  43980. },
  43981. {
  43982. name: "Normal",
  43983. height: math.unit(5 + 6/12, "feet"),
  43984. default: true
  43985. },
  43986. {
  43987. name: "Mini-Macro",
  43988. height: math.unit(15, "feet")
  43989. },
  43990. {
  43991. name: "Macro",
  43992. height: math.unit(50, "feet")
  43993. },
  43994. ]
  43995. ))
  43996. characterMakers.push(() => makeCharacter(
  43997. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43998. {
  43999. front: {
  44000. height: math.unit(6 + 4/12, "feet"),
  44001. weight: math.unit(170, "lb"),
  44002. name: "Front",
  44003. image: {
  44004. source: "./media/characters/charlie/front.svg",
  44005. extra: 1348/1228,
  44006. bottom: 15/1363
  44007. }
  44008. },
  44009. },
  44010. [
  44011. {
  44012. name: "Macro",
  44013. height: math.unit(1700, "meters"),
  44014. default: true
  44015. },
  44016. {
  44017. name: "MegaMacro",
  44018. height: math.unit(20400, "meters")
  44019. },
  44020. ]
  44021. ))
  44022. characterMakers.push(() => makeCharacter(
  44023. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44024. {
  44025. front: {
  44026. height: math.unit(1.96, "meters"),
  44027. weight: math.unit(220, "lb"),
  44028. name: "Front",
  44029. image: {
  44030. source: "./media/characters/susan-grant/front.svg",
  44031. extra: 482/478,
  44032. bottom: 7/489
  44033. }
  44034. },
  44035. },
  44036. [
  44037. {
  44038. name: "Normal",
  44039. height: math.unit(1.96, "meters"),
  44040. default: true
  44041. },
  44042. {
  44043. name: "Macro",
  44044. height: math.unit(76.2, "meters")
  44045. },
  44046. {
  44047. name: "MegaMacro",
  44048. height: math.unit(305, "meters")
  44049. },
  44050. {
  44051. name: "GigaMacro",
  44052. height: math.unit(1220, "meters")
  44053. },
  44054. {
  44055. name: "SuperMacro",
  44056. height: math.unit(4878, "meters")
  44057. },
  44058. ]
  44059. ))
  44060. characterMakers.push(() => makeCharacter(
  44061. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44062. {
  44063. front: {
  44064. height: math.unit(5 + 4/12, "feet"),
  44065. weight: math.unit(110, "lb"),
  44066. name: "Front",
  44067. image: {
  44068. source: "./media/characters/axel-isanov/front.svg",
  44069. extra: 1096/1065,
  44070. bottom: 13/1109
  44071. }
  44072. },
  44073. },
  44074. [
  44075. {
  44076. name: "Normal",
  44077. height: math.unit(5 + 4/12, "feet"),
  44078. default: true
  44079. },
  44080. ]
  44081. ))
  44082. characterMakers.push(() => makeCharacter(
  44083. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44084. {
  44085. front: {
  44086. height: math.unit(9, "feet"),
  44087. weight: math.unit(467, "lb"),
  44088. name: "Front",
  44089. image: {
  44090. source: "./media/characters/necahual/front.svg",
  44091. extra: 920/873,
  44092. bottom: 26/946
  44093. }
  44094. },
  44095. back: {
  44096. height: math.unit(9, "feet"),
  44097. weight: math.unit(467, "lb"),
  44098. name: "Back",
  44099. image: {
  44100. source: "./media/characters/necahual/back.svg",
  44101. extra: 930/884,
  44102. bottom: 16/946
  44103. }
  44104. },
  44105. frontUnderwear: {
  44106. height: math.unit(9, "feet"),
  44107. weight: math.unit(467, "lb"),
  44108. name: "Front (Underwear)",
  44109. image: {
  44110. source: "./media/characters/necahual/front-underwear.svg",
  44111. extra: 920/873,
  44112. bottom: 26/946
  44113. }
  44114. },
  44115. frontDressed: {
  44116. height: math.unit(9, "feet"),
  44117. weight: math.unit(467, "lb"),
  44118. name: "Front (Dressed)",
  44119. image: {
  44120. source: "./media/characters/necahual/front-dressed.svg",
  44121. extra: 920/873,
  44122. bottom: 26/946
  44123. }
  44124. },
  44125. },
  44126. [
  44127. {
  44128. name: "Comprsesed",
  44129. height: math.unit(9, "feet")
  44130. },
  44131. {
  44132. name: "Natural",
  44133. height: math.unit(15, "feet"),
  44134. default: true
  44135. },
  44136. {
  44137. name: "Boosted",
  44138. height: math.unit(50, "feet")
  44139. },
  44140. {
  44141. name: "Boosted+",
  44142. height: math.unit(150, "feet")
  44143. },
  44144. {
  44145. name: "Max",
  44146. height: math.unit(500, "feet")
  44147. },
  44148. ]
  44149. ))
  44150. characterMakers.push(() => makeCharacter(
  44151. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44152. {
  44153. front: {
  44154. height: math.unit(22 + 1/12, "feet"),
  44155. weight: math.unit(3200, "lb"),
  44156. name: "Front",
  44157. image: {
  44158. source: "./media/characters/theo-acacia/front.svg",
  44159. extra: 1796/1741,
  44160. bottom: 83/1879
  44161. }
  44162. },
  44163. frontUnderwear: {
  44164. height: math.unit(22 + 1/12, "feet"),
  44165. weight: math.unit(3200, "lb"),
  44166. name: "Front (Underwear)",
  44167. image: {
  44168. source: "./media/characters/theo-acacia/front-underwear.svg",
  44169. extra: 1796/1741,
  44170. bottom: 83/1879
  44171. }
  44172. },
  44173. frontNude: {
  44174. height: math.unit(22 + 1/12, "feet"),
  44175. weight: math.unit(3200, "lb"),
  44176. name: "Front (Nude)",
  44177. image: {
  44178. source: "./media/characters/theo-acacia/front-nude.svg",
  44179. extra: 1796/1741,
  44180. bottom: 83/1879
  44181. }
  44182. },
  44183. },
  44184. [
  44185. {
  44186. name: "Normal",
  44187. height: math.unit(22 + 1/12, "feet"),
  44188. default: true
  44189. },
  44190. ]
  44191. ))
  44192. characterMakers.push(() => makeCharacter(
  44193. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44194. {
  44195. front: {
  44196. height: math.unit(20, "feet"),
  44197. name: "Front",
  44198. image: {
  44199. source: "./media/characters/astra/front.svg",
  44200. extra: 1850/1714,
  44201. bottom: 106/1956
  44202. }
  44203. },
  44204. frontUndressed: {
  44205. height: math.unit(20, "feet"),
  44206. name: "Front (Undressed)",
  44207. image: {
  44208. source: "./media/characters/astra/front-undressed.svg",
  44209. extra: 1926/1749,
  44210. bottom: 0/1926
  44211. }
  44212. },
  44213. hand: {
  44214. height: math.unit(1.53, "feet"),
  44215. name: "Hand",
  44216. image: {
  44217. source: "./media/characters/astra/hand.svg"
  44218. }
  44219. },
  44220. paw: {
  44221. height: math.unit(1.53, "feet"),
  44222. name: "Paw",
  44223. image: {
  44224. source: "./media/characters/astra/paw.svg"
  44225. }
  44226. },
  44227. },
  44228. [
  44229. {
  44230. name: "Smallest",
  44231. height: math.unit(20, "feet")
  44232. },
  44233. {
  44234. name: "Normal",
  44235. height: math.unit(1e9, "miles"),
  44236. default: true
  44237. },
  44238. {
  44239. name: "Larger",
  44240. height: math.unit(5, "multiverses")
  44241. },
  44242. {
  44243. name: "Largest",
  44244. height: math.unit(1e9, "multiverses")
  44245. },
  44246. ]
  44247. ))
  44248. characterMakers.push(() => makeCharacter(
  44249. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44250. {
  44251. front: {
  44252. height: math.unit(8, "feet"),
  44253. name: "Front",
  44254. image: {
  44255. source: "./media/characters/breanna/front.svg",
  44256. extra: 1912/1632,
  44257. bottom: 33/1945
  44258. }
  44259. },
  44260. },
  44261. [
  44262. {
  44263. name: "Smallest",
  44264. height: math.unit(8, "feet")
  44265. },
  44266. {
  44267. name: "Normal",
  44268. height: math.unit(1, "mile"),
  44269. default: true
  44270. },
  44271. {
  44272. name: "Maximum",
  44273. height: math.unit(1500000000000, "lightyears")
  44274. },
  44275. ]
  44276. ))
  44277. characterMakers.push(() => makeCharacter(
  44278. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44279. {
  44280. front: {
  44281. height: math.unit(5 + 11/12, "feet"),
  44282. weight: math.unit(155, "lb"),
  44283. name: "Front",
  44284. image: {
  44285. source: "./media/characters/cai/front.svg",
  44286. extra: 1823/1702,
  44287. bottom: 32/1855
  44288. }
  44289. },
  44290. back: {
  44291. height: math.unit(5 + 11/12, "feet"),
  44292. weight: math.unit(155, "lb"),
  44293. name: "Back",
  44294. image: {
  44295. source: "./media/characters/cai/back.svg",
  44296. extra: 1809/1708,
  44297. bottom: 31/1840
  44298. }
  44299. },
  44300. },
  44301. [
  44302. {
  44303. name: "Normal",
  44304. height: math.unit(5 + 11/12, "feet"),
  44305. default: true
  44306. },
  44307. {
  44308. name: "Big",
  44309. height: math.unit(15, "feet")
  44310. },
  44311. {
  44312. name: "Macro",
  44313. height: math.unit(200, "feet")
  44314. },
  44315. ]
  44316. ))
  44317. characterMakers.push(() => makeCharacter(
  44318. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44319. {
  44320. front: {
  44321. height: math.unit(5 + 6/12, "feet"),
  44322. weight: math.unit(160, "lb"),
  44323. name: "Front",
  44324. image: {
  44325. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44326. extra: 1227/1174,
  44327. bottom: 37/1264
  44328. }
  44329. },
  44330. },
  44331. [
  44332. {
  44333. name: "Macro",
  44334. height: math.unit(444, "meters"),
  44335. default: true
  44336. },
  44337. ]
  44338. ))
  44339. characterMakers.push(() => makeCharacter(
  44340. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44341. {
  44342. front: {
  44343. height: math.unit(18 + 7/12, "feet"),
  44344. name: "Front",
  44345. image: {
  44346. source: "./media/characters/rex/front.svg",
  44347. extra: 1941/1807,
  44348. bottom: 66/2007
  44349. }
  44350. },
  44351. back: {
  44352. height: math.unit(18 + 7/12, "feet"),
  44353. name: "Back",
  44354. image: {
  44355. source: "./media/characters/rex/back.svg",
  44356. extra: 1937/1822,
  44357. bottom: 42/1979
  44358. }
  44359. },
  44360. boot: {
  44361. height: math.unit(3.45, "feet"),
  44362. name: "Boot",
  44363. image: {
  44364. source: "./media/characters/rex/boot.svg"
  44365. }
  44366. },
  44367. paw: {
  44368. height: math.unit(4.17, "feet"),
  44369. name: "Paw",
  44370. image: {
  44371. source: "./media/characters/rex/paw.svg"
  44372. }
  44373. },
  44374. head: {
  44375. height: math.unit(6.728, "feet"),
  44376. name: "Head",
  44377. image: {
  44378. source: "./media/characters/rex/head.svg"
  44379. }
  44380. },
  44381. },
  44382. [
  44383. {
  44384. name: "Nano",
  44385. height: math.unit(18 + 7/12, "feet")
  44386. },
  44387. {
  44388. name: "Micro",
  44389. height: math.unit(1.5, "megameters")
  44390. },
  44391. {
  44392. name: "Normal",
  44393. height: math.unit(440, "megameters"),
  44394. default: true
  44395. },
  44396. {
  44397. name: "Macro",
  44398. height: math.unit(2.5, "gigameters")
  44399. },
  44400. {
  44401. name: "Gigamacro",
  44402. height: math.unit(2, "galaxies")
  44403. },
  44404. ]
  44405. ))
  44406. characterMakers.push(() => makeCharacter(
  44407. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44408. {
  44409. side: {
  44410. height: math.unit(32, "feet"),
  44411. weight: math.unit(250000, "lb"),
  44412. name: "Side",
  44413. image: {
  44414. source: "./media/characters/silverwing/side.svg",
  44415. extra: 1100/1019,
  44416. bottom: 204/1304
  44417. }
  44418. },
  44419. },
  44420. [
  44421. {
  44422. name: "Normal",
  44423. height: math.unit(32, "feet"),
  44424. default: true
  44425. },
  44426. ]
  44427. ))
  44428. characterMakers.push(() => makeCharacter(
  44429. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44430. {
  44431. front: {
  44432. height: math.unit(6 + 6/12, "feet"),
  44433. weight: math.unit(350, "lb"),
  44434. name: "Front",
  44435. image: {
  44436. source: "./media/characters/tristan-hawthorne/front.svg",
  44437. extra: 1159/1124,
  44438. bottom: 37/1196
  44439. },
  44440. form: "labrador",
  44441. default: true
  44442. },
  44443. skunkFront: {
  44444. height: math.unit(4 + 6/12, "feet"),
  44445. weight: math.unit(120, "lb"),
  44446. name: "Front",
  44447. image: {
  44448. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44449. extra: 1609/1551,
  44450. bottom: 169/1778
  44451. },
  44452. form: "skunk",
  44453. default: true
  44454. },
  44455. },
  44456. [
  44457. {
  44458. name: "Normal",
  44459. height: math.unit(6 + 6/12, "feet"),
  44460. form: "labrador",
  44461. default: true
  44462. },
  44463. {
  44464. name: "Normal",
  44465. height: math.unit(4 + 6/12, "feet"),
  44466. form: "skunk",
  44467. default: true
  44468. },
  44469. ],
  44470. {
  44471. "labrador": {
  44472. name: "Labrador",
  44473. default: true
  44474. },
  44475. "skunk": {
  44476. name: "Skunk"
  44477. }
  44478. }
  44479. ))
  44480. characterMakers.push(() => makeCharacter(
  44481. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44482. {
  44483. front: {
  44484. height: math.unit(5 + 11/12, "feet"),
  44485. weight: math.unit(190, "lb"),
  44486. name: "Front",
  44487. image: {
  44488. source: "./media/characters/mizu/front.svg",
  44489. extra: 1988/1788,
  44490. bottom: 14/2002
  44491. }
  44492. },
  44493. },
  44494. [
  44495. {
  44496. name: "Normal",
  44497. height: math.unit(5 + 11/12, "feet"),
  44498. default: true
  44499. },
  44500. ]
  44501. ))
  44502. characterMakers.push(() => makeCharacter(
  44503. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44504. {
  44505. front: {
  44506. height: math.unit(1.7, "feet"),
  44507. weight: math.unit(50, "lb"),
  44508. name: "Front",
  44509. image: {
  44510. source: "./media/characters/dechroma/front.svg",
  44511. extra: 1095/859,
  44512. bottom: 64/1159
  44513. }
  44514. },
  44515. },
  44516. [
  44517. {
  44518. name: "Normal",
  44519. height: math.unit(1.7, "feet"),
  44520. default: true
  44521. },
  44522. ]
  44523. ))
  44524. characterMakers.push(() => makeCharacter(
  44525. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44526. {
  44527. side: {
  44528. height: math.unit(30, "feet"),
  44529. name: "Side",
  44530. image: {
  44531. source: "./media/characters/veluren-thanazel/side.svg",
  44532. extra: 1611/633,
  44533. bottom: 118/1729
  44534. }
  44535. },
  44536. front: {
  44537. height: math.unit(30, "feet"),
  44538. name: "Front",
  44539. image: {
  44540. source: "./media/characters/veluren-thanazel/front.svg",
  44541. extra: 1486/636,
  44542. bottom: 238/1724
  44543. }
  44544. },
  44545. head: {
  44546. height: math.unit(21.4, "feet"),
  44547. name: "Head",
  44548. image: {
  44549. source: "./media/characters/veluren-thanazel/head.svg"
  44550. }
  44551. },
  44552. genitals: {
  44553. height: math.unit(19.4, "feet"),
  44554. name: "Genitals",
  44555. image: {
  44556. source: "./media/characters/veluren-thanazel/genitals.svg"
  44557. }
  44558. },
  44559. },
  44560. [
  44561. {
  44562. name: "Social",
  44563. height: math.unit(6, "feet")
  44564. },
  44565. {
  44566. name: "Play",
  44567. height: math.unit(12, "feet")
  44568. },
  44569. {
  44570. name: "True",
  44571. height: math.unit(30, "feet"),
  44572. default: true
  44573. },
  44574. ]
  44575. ))
  44576. characterMakers.push(() => makeCharacter(
  44577. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44578. {
  44579. front: {
  44580. height: math.unit(7 + 6/12, "feet"),
  44581. weight: math.unit(500, "kg"),
  44582. name: "Front",
  44583. image: {
  44584. source: "./media/characters/arcturas/front.svg",
  44585. extra: 1700/1500,
  44586. bottom: 145/1845
  44587. }
  44588. },
  44589. },
  44590. [
  44591. {
  44592. name: "Normal",
  44593. height: math.unit(7 + 6/12, "feet"),
  44594. default: true
  44595. },
  44596. ]
  44597. ))
  44598. characterMakers.push(() => makeCharacter(
  44599. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44600. {
  44601. side: {
  44602. height: math.unit(6, "feet"),
  44603. weight: math.unit(2, "tons"),
  44604. name: "Side",
  44605. image: {
  44606. source: "./media/characters/vitaen/side.svg",
  44607. extra: 1157/617,
  44608. bottom: 122/1279
  44609. }
  44610. },
  44611. },
  44612. [
  44613. {
  44614. name: "Normal",
  44615. height: math.unit(6, "feet"),
  44616. default: true
  44617. },
  44618. ]
  44619. ))
  44620. characterMakers.push(() => makeCharacter(
  44621. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44622. {
  44623. front: {
  44624. height: math.unit(19, "feet"),
  44625. name: "Front",
  44626. image: {
  44627. source: "./media/characters/fia-dreamweaver/front.svg",
  44628. extra: 1630/1504,
  44629. bottom: 25/1655
  44630. }
  44631. },
  44632. },
  44633. [
  44634. {
  44635. name: "Normal",
  44636. height: math.unit(19, "feet"),
  44637. default: true
  44638. },
  44639. ]
  44640. ))
  44641. characterMakers.push(() => makeCharacter(
  44642. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44643. {
  44644. front: {
  44645. height: math.unit(5 + 4/12, "feet"),
  44646. name: "Front",
  44647. image: {
  44648. source: "./media/characters/artan/front.svg",
  44649. extra: 1618/1535,
  44650. bottom: 46/1664
  44651. }
  44652. },
  44653. back: {
  44654. height: math.unit(5 + 4/12, "feet"),
  44655. name: "Back",
  44656. image: {
  44657. source: "./media/characters/artan/back.svg",
  44658. extra: 1618/1543,
  44659. bottom: 31/1649
  44660. }
  44661. },
  44662. },
  44663. [
  44664. {
  44665. name: "Normal",
  44666. height: math.unit(5 + 4/12, "feet"),
  44667. default: true
  44668. },
  44669. ]
  44670. ))
  44671. characterMakers.push(() => makeCharacter(
  44672. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44673. {
  44674. side: {
  44675. height: math.unit(182, "cm"),
  44676. weight: math.unit(1000, "lb"),
  44677. name: "Side",
  44678. image: {
  44679. source: "./media/characters/silver-dragon/side.svg",
  44680. extra: 710/287,
  44681. bottom: 88/798
  44682. }
  44683. },
  44684. },
  44685. [
  44686. {
  44687. name: "Normal",
  44688. height: math.unit(182, "cm"),
  44689. default: true
  44690. },
  44691. ]
  44692. ))
  44693. characterMakers.push(() => makeCharacter(
  44694. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44695. {
  44696. side: {
  44697. height: math.unit(6 + 6/12, "feet"),
  44698. weight: math.unit(1.5, "tons"),
  44699. name: "Side",
  44700. image: {
  44701. source: "./media/characters/zephyr/side.svg",
  44702. extra: 1433/586,
  44703. bottom: 109/1542
  44704. }
  44705. },
  44706. },
  44707. [
  44708. {
  44709. name: "Normal",
  44710. height: math.unit(6 + 6/12, "feet"),
  44711. default: true
  44712. },
  44713. ]
  44714. ))
  44715. characterMakers.push(() => makeCharacter(
  44716. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44717. {
  44718. side: {
  44719. height: math.unit(1, "feet"),
  44720. name: "Side",
  44721. image: {
  44722. source: "./media/characters/vixye/side.svg",
  44723. extra: 632/541,
  44724. bottom: 0/632
  44725. }
  44726. },
  44727. },
  44728. [
  44729. {
  44730. name: "Normal",
  44731. height: math.unit(1, "feet"),
  44732. default: true
  44733. },
  44734. {
  44735. name: "True",
  44736. height: math.unit(1e15, "multiverses")
  44737. },
  44738. ]
  44739. ))
  44740. characterMakers.push(() => makeCharacter(
  44741. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44742. {
  44743. front: {
  44744. height: math.unit(8 + 2/12, "feet"),
  44745. weight: math.unit(650, "lb"),
  44746. name: "Front",
  44747. image: {
  44748. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44749. extra: 1174/1137,
  44750. bottom: 82/1256
  44751. }
  44752. },
  44753. back: {
  44754. height: math.unit(8 + 2/12, "feet"),
  44755. weight: math.unit(650, "lb"),
  44756. name: "Back",
  44757. image: {
  44758. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44759. extra: 1204/1157,
  44760. bottom: 46/1250
  44761. }
  44762. },
  44763. },
  44764. [
  44765. {
  44766. name: "Wildform",
  44767. height: math.unit(8 + 2/12, "feet"),
  44768. default: true
  44769. },
  44770. ]
  44771. ))
  44772. characterMakers.push(() => makeCharacter(
  44773. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44774. {
  44775. front: {
  44776. height: math.unit(18, "feet"),
  44777. name: "Front",
  44778. image: {
  44779. source: "./media/characters/cyphin/front.svg",
  44780. extra: 970/886,
  44781. bottom: 42/1012
  44782. }
  44783. },
  44784. back: {
  44785. height: math.unit(18, "feet"),
  44786. name: "Back",
  44787. image: {
  44788. source: "./media/characters/cyphin/back.svg",
  44789. extra: 1009/894,
  44790. bottom: 24/1033
  44791. }
  44792. },
  44793. head: {
  44794. height: math.unit(5.05, "feet"),
  44795. name: "Head",
  44796. image: {
  44797. source: "./media/characters/cyphin/head.svg"
  44798. }
  44799. },
  44800. tailbud: {
  44801. height: math.unit(5, "feet"),
  44802. name: "Tailbud",
  44803. image: {
  44804. source: "./media/characters/cyphin/tailbud.svg"
  44805. }
  44806. },
  44807. },
  44808. [
  44809. ]
  44810. ))
  44811. characterMakers.push(() => makeCharacter(
  44812. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44813. {
  44814. side: {
  44815. height: math.unit(10, "feet"),
  44816. weight: math.unit(6, "tons"),
  44817. name: "Side",
  44818. image: {
  44819. source: "./media/characters/raijin/side.svg",
  44820. extra: 1529/613,
  44821. bottom: 337/1866
  44822. }
  44823. },
  44824. },
  44825. [
  44826. {
  44827. name: "Normal",
  44828. height: math.unit(10, "feet"),
  44829. default: true
  44830. },
  44831. ]
  44832. ))
  44833. characterMakers.push(() => makeCharacter(
  44834. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44835. {
  44836. side: {
  44837. height: math.unit(9, "feet"),
  44838. name: "Side",
  44839. image: {
  44840. source: "./media/characters/nilghais/side.svg",
  44841. extra: 1047/744,
  44842. bottom: 91/1138
  44843. }
  44844. },
  44845. head: {
  44846. height: math.unit(3.14, "feet"),
  44847. name: "Head",
  44848. image: {
  44849. source: "./media/characters/nilghais/head.svg"
  44850. }
  44851. },
  44852. mouth: {
  44853. height: math.unit(4.6, "feet"),
  44854. name: "Mouth",
  44855. image: {
  44856. source: "./media/characters/nilghais/mouth.svg"
  44857. }
  44858. },
  44859. wings: {
  44860. height: math.unit(24, "feet"),
  44861. name: "Wings",
  44862. image: {
  44863. source: "./media/characters/nilghais/wings.svg"
  44864. }
  44865. },
  44866. ass: {
  44867. height: math.unit(6.12, "feet"),
  44868. name: "Ass",
  44869. image: {
  44870. source: "./media/characters/nilghais/ass.svg"
  44871. }
  44872. },
  44873. },
  44874. [
  44875. {
  44876. name: "Normal",
  44877. height: math.unit(9, "feet"),
  44878. default: true
  44879. },
  44880. ]
  44881. ))
  44882. characterMakers.push(() => makeCharacter(
  44883. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44884. {
  44885. regular: {
  44886. height: math.unit(16 + 2/12, "feet"),
  44887. weight: math.unit(2300, "lb"),
  44888. name: "Regular",
  44889. image: {
  44890. source: "./media/characters/zolgar/regular.svg",
  44891. extra: 1246/1004,
  44892. bottom: 124/1370
  44893. }
  44894. },
  44895. boxers: {
  44896. height: math.unit(16 + 2/12, "feet"),
  44897. weight: math.unit(2300, "lb"),
  44898. name: "Boxers",
  44899. image: {
  44900. source: "./media/characters/zolgar/boxers.svg",
  44901. extra: 1246/1004,
  44902. bottom: 124/1370
  44903. }
  44904. },
  44905. armored: {
  44906. height: math.unit(16 + 2/12, "feet"),
  44907. weight: math.unit(2300, "lb"),
  44908. name: "Armored",
  44909. image: {
  44910. source: "./media/characters/zolgar/armored.svg",
  44911. extra: 1246/1004,
  44912. bottom: 124/1370
  44913. }
  44914. },
  44915. goth: {
  44916. height: math.unit(16 + 2/12, "feet"),
  44917. weight: math.unit(2300, "lb"),
  44918. name: "Goth",
  44919. image: {
  44920. source: "./media/characters/zolgar/goth.svg",
  44921. extra: 1246/1004,
  44922. bottom: 124/1370
  44923. }
  44924. },
  44925. },
  44926. [
  44927. {
  44928. name: "Shrunken Down",
  44929. height: math.unit(9 + 2/12, "feet")
  44930. },
  44931. {
  44932. name: "Normal",
  44933. height: math.unit(16 + 2/12, "feet"),
  44934. default: true
  44935. },
  44936. ]
  44937. ))
  44938. characterMakers.push(() => makeCharacter(
  44939. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44940. {
  44941. front: {
  44942. height: math.unit(6, "feet"),
  44943. weight: math.unit(168, "lb"),
  44944. name: "Front",
  44945. image: {
  44946. source: "./media/characters/luca/front.svg",
  44947. extra: 841/667,
  44948. bottom: 102/943
  44949. }
  44950. },
  44951. },
  44952. [
  44953. {
  44954. name: "Normal",
  44955. height: math.unit(6, "feet"),
  44956. default: true
  44957. },
  44958. ]
  44959. ))
  44960. characterMakers.push(() => makeCharacter(
  44961. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44962. {
  44963. side: {
  44964. height: math.unit(7 + 3/12, "feet"),
  44965. weight: math.unit(312, "lb"),
  44966. name: "Side",
  44967. image: {
  44968. source: "./media/characters/zezo/side.svg",
  44969. extra: 1192/1067,
  44970. bottom: 63/1255
  44971. }
  44972. },
  44973. },
  44974. [
  44975. {
  44976. name: "Normal",
  44977. height: math.unit(7 + 3/12, "feet"),
  44978. default: true
  44979. },
  44980. ]
  44981. ))
  44982. characterMakers.push(() => makeCharacter(
  44983. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44984. {
  44985. front: {
  44986. height: math.unit(5 + 5/12, "feet"),
  44987. weight: math.unit(170, "lb"),
  44988. name: "Front",
  44989. image: {
  44990. source: "./media/characters/mayso/front.svg",
  44991. extra: 1215/1108,
  44992. bottom: 16/1231
  44993. }
  44994. },
  44995. },
  44996. [
  44997. {
  44998. name: "Normal",
  44999. height: math.unit(5 + 5/12, "feet"),
  45000. default: true
  45001. },
  45002. ]
  45003. ))
  45004. characterMakers.push(() => makeCharacter(
  45005. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45006. {
  45007. front: {
  45008. height: math.unit(4 + 3/12, "feet"),
  45009. weight: math.unit(80, "lb"),
  45010. name: "Front",
  45011. image: {
  45012. source: "./media/characters/hess/front.svg",
  45013. extra: 1200/1123,
  45014. bottom: 16/1216
  45015. }
  45016. },
  45017. },
  45018. [
  45019. {
  45020. name: "Normal",
  45021. height: math.unit(4 + 3/12, "feet"),
  45022. default: true
  45023. },
  45024. ]
  45025. ))
  45026. characterMakers.push(() => makeCharacter(
  45027. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45028. {
  45029. front: {
  45030. height: math.unit(1.9, "meters"),
  45031. name: "Front",
  45032. image: {
  45033. source: "./media/characters/ashgar/front.svg",
  45034. extra: 1177/1146,
  45035. bottom: 99/1276
  45036. }
  45037. },
  45038. back: {
  45039. height: math.unit(1.9, "meters"),
  45040. name: "Back",
  45041. image: {
  45042. source: "./media/characters/ashgar/back.svg",
  45043. extra: 1201/1183,
  45044. bottom: 53/1254
  45045. }
  45046. },
  45047. feral: {
  45048. height: math.unit(1.4, "meters"),
  45049. name: "Feral",
  45050. image: {
  45051. source: "./media/characters/ashgar/feral.svg",
  45052. extra: 370/345,
  45053. bottom: 45/415
  45054. }
  45055. },
  45056. },
  45057. [
  45058. {
  45059. name: "Normal",
  45060. height: math.unit(1.9, "meters"),
  45061. default: true
  45062. },
  45063. ]
  45064. ))
  45065. characterMakers.push(() => makeCharacter(
  45066. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45067. {
  45068. regular: {
  45069. height: math.unit(6, "feet"),
  45070. weight: math.unit(220, "lb"),
  45071. name: "Regular",
  45072. image: {
  45073. source: "./media/characters/phillip/regular.svg",
  45074. extra: 1373/1277,
  45075. bottom: 75/1448
  45076. }
  45077. },
  45078. dressed: {
  45079. height: math.unit(6, "feet"),
  45080. weight: math.unit(220, "lb"),
  45081. name: "Dressed",
  45082. image: {
  45083. source: "./media/characters/phillip/dressed.svg",
  45084. extra: 1373/1277,
  45085. bottom: 75/1448
  45086. }
  45087. },
  45088. paw: {
  45089. height: math.unit(1.44, "feet"),
  45090. name: "Paw",
  45091. image: {
  45092. source: "./media/characters/phillip/paw.svg"
  45093. }
  45094. },
  45095. },
  45096. [
  45097. {
  45098. name: "Normal",
  45099. height: math.unit(6, "feet"),
  45100. default: true
  45101. },
  45102. ]
  45103. ))
  45104. characterMakers.push(() => makeCharacter(
  45105. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45106. {
  45107. side: {
  45108. height: math.unit(42, "feet"),
  45109. name: "Side",
  45110. image: {
  45111. source: "./media/characters/uvula/side.svg",
  45112. extra: 683/586,
  45113. bottom: 60/743
  45114. }
  45115. },
  45116. front: {
  45117. height: math.unit(42, "feet"),
  45118. name: "Front",
  45119. image: {
  45120. source: "./media/characters/uvula/front.svg",
  45121. extra: 705/613,
  45122. bottom: 54/759
  45123. }
  45124. },
  45125. maw: {
  45126. height: math.unit(23.5, "feet"),
  45127. name: "Maw",
  45128. image: {
  45129. source: "./media/characters/uvula/maw.svg"
  45130. }
  45131. },
  45132. },
  45133. [
  45134. {
  45135. name: "Original Size",
  45136. height: math.unit(14, "inches")
  45137. },
  45138. {
  45139. name: "Human Size",
  45140. height: math.unit(6, "feet")
  45141. },
  45142. {
  45143. name: "Big",
  45144. height: math.unit(42, "feet"),
  45145. default: true
  45146. },
  45147. {
  45148. name: "Bigger",
  45149. height: math.unit(100, "feet")
  45150. },
  45151. ]
  45152. ))
  45153. characterMakers.push(() => makeCharacter(
  45154. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45155. {
  45156. front: {
  45157. height: math.unit(5 + 11/12, "feet"),
  45158. name: "Front",
  45159. image: {
  45160. source: "./media/characters/lannah/front.svg",
  45161. extra: 1208/1113,
  45162. bottom: 97/1305
  45163. }
  45164. },
  45165. },
  45166. [
  45167. {
  45168. name: "Normal",
  45169. height: math.unit(5 + 11/12, "feet"),
  45170. default: true
  45171. },
  45172. ]
  45173. ))
  45174. characterMakers.push(() => makeCharacter(
  45175. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45176. {
  45177. front: {
  45178. height: math.unit(6 + 3/12, "feet"),
  45179. weight: math.unit(3.5, "tons"),
  45180. name: "Front",
  45181. image: {
  45182. source: "./media/characters/emberflame/front.svg",
  45183. extra: 1198/672,
  45184. bottom: 82/1280
  45185. }
  45186. },
  45187. side: {
  45188. height: math.unit(6 + 3/12, "feet"),
  45189. weight: math.unit(3.5, "tons"),
  45190. name: "Side",
  45191. image: {
  45192. source: "./media/characters/emberflame/side.svg",
  45193. extra: 938/527,
  45194. bottom: 56/994
  45195. }
  45196. },
  45197. },
  45198. [
  45199. {
  45200. name: "Normal",
  45201. height: math.unit(6 + 3/12, "feet"),
  45202. default: true
  45203. },
  45204. ]
  45205. ))
  45206. characterMakers.push(() => makeCharacter(
  45207. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45208. {
  45209. side: {
  45210. height: math.unit(17.5, "feet"),
  45211. weight: math.unit(35, "tons"),
  45212. name: "Side",
  45213. image: {
  45214. source: "./media/characters/sophie-ambrose/side.svg",
  45215. extra: 1573/1242,
  45216. bottom: 71/1644
  45217. }
  45218. },
  45219. maw: {
  45220. height: math.unit(7.4, "feet"),
  45221. name: "Maw",
  45222. image: {
  45223. source: "./media/characters/sophie-ambrose/maw.svg"
  45224. }
  45225. },
  45226. },
  45227. [
  45228. {
  45229. name: "Normal",
  45230. height: math.unit(17.5, "feet"),
  45231. default: true
  45232. },
  45233. ]
  45234. ))
  45235. characterMakers.push(() => makeCharacter(
  45236. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45237. {
  45238. front: {
  45239. height: math.unit(280, "feet"),
  45240. weight: math.unit(550, "tons"),
  45241. name: "Front",
  45242. image: {
  45243. source: "./media/characters/king-mugi/front.svg",
  45244. extra: 1102/947,
  45245. bottom: 104/1206
  45246. }
  45247. },
  45248. },
  45249. [
  45250. {
  45251. name: "King Mugi",
  45252. height: math.unit(280, "feet"),
  45253. default: true
  45254. },
  45255. ]
  45256. ))
  45257. characterMakers.push(() => makeCharacter(
  45258. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45259. {
  45260. female: {
  45261. height: math.unit(300, "meters"),
  45262. name: "Front",
  45263. image: {
  45264. source: "./media/characters/nova-fox/female.svg",
  45265. extra: 664/632,
  45266. bottom: 51/715
  45267. },
  45268. form: "female",
  45269. default: true
  45270. },
  45271. male: {
  45272. height: math.unit(300, "meters"),
  45273. name: "Front",
  45274. image: {
  45275. source: "./media/characters/nova-fox/male.svg",
  45276. extra: 663/631,
  45277. bottom: 30/693
  45278. },
  45279. form: "male",
  45280. default: true
  45281. },
  45282. },
  45283. [
  45284. {
  45285. name: "Macro",
  45286. height: math.unit(300, "meters"),
  45287. default: true,
  45288. allForms: true
  45289. },
  45290. ],
  45291. {
  45292. "female": {
  45293. name: "Female",
  45294. default: true
  45295. },
  45296. "male": {
  45297. name: "Male",
  45298. },
  45299. }
  45300. ))
  45301. characterMakers.push(() => makeCharacter(
  45302. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45303. {
  45304. front: {
  45305. height: math.unit(6 + 3/12, "feet"),
  45306. weight: math.unit(170, "lb"),
  45307. name: "Front",
  45308. image: {
  45309. source: "./media/characters/sam-bat/front.svg",
  45310. extra: 1601/1411,
  45311. bottom: 125/1726
  45312. }
  45313. },
  45314. back: {
  45315. height: math.unit(6 + 3/12, "feet"),
  45316. weight: math.unit(170, "lb"),
  45317. name: "Back",
  45318. image: {
  45319. source: "./media/characters/sam-bat/back.svg",
  45320. extra: 1577/1405,
  45321. bottom: 58/1635
  45322. }
  45323. },
  45324. },
  45325. [
  45326. {
  45327. name: "Normal",
  45328. height: math.unit(6 + 3/12, "feet"),
  45329. default: true
  45330. },
  45331. ]
  45332. ))
  45333. characterMakers.push(() => makeCharacter(
  45334. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45335. {
  45336. front: {
  45337. height: math.unit(59, "feet"),
  45338. weight: math.unit(40000, "lb"),
  45339. name: "Front",
  45340. image: {
  45341. source: "./media/characters/inari/front.svg",
  45342. extra: 1884/1350,
  45343. bottom: 95/1979
  45344. }
  45345. },
  45346. },
  45347. [
  45348. {
  45349. name: "Gigantamax",
  45350. height: math.unit(59, "feet"),
  45351. default: true
  45352. },
  45353. ]
  45354. ))
  45355. characterMakers.push(() => makeCharacter(
  45356. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45357. {
  45358. front: {
  45359. height: math.unit(5 + 8/12, "feet"),
  45360. name: "Front",
  45361. image: {
  45362. source: "./media/characters/elizabeth/front.svg",
  45363. extra: 1395/1298,
  45364. bottom: 54/1449
  45365. }
  45366. },
  45367. mouth: {
  45368. height: math.unit(1.97, "feet"),
  45369. name: "Mouth",
  45370. image: {
  45371. source: "./media/characters/elizabeth/mouth.svg"
  45372. }
  45373. },
  45374. foot: {
  45375. height: math.unit(1.17, "feet"),
  45376. name: "Foot",
  45377. image: {
  45378. source: "./media/characters/elizabeth/foot.svg"
  45379. }
  45380. },
  45381. },
  45382. [
  45383. {
  45384. name: "Normal",
  45385. height: math.unit(5 + 8/12, "feet"),
  45386. default: true
  45387. },
  45388. {
  45389. name: "Minimacro",
  45390. height: math.unit(18, "feet")
  45391. },
  45392. {
  45393. name: "Macro",
  45394. height: math.unit(180, "feet")
  45395. },
  45396. ]
  45397. ))
  45398. characterMakers.push(() => makeCharacter(
  45399. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45400. {
  45401. front: {
  45402. height: math.unit(5 + 2/12, "feet"),
  45403. name: "Front",
  45404. image: {
  45405. source: "./media/characters/october-gossamer/front.svg",
  45406. extra: 505/454,
  45407. bottom: 7/512
  45408. }
  45409. },
  45410. back: {
  45411. height: math.unit(5 + 2/12, "feet"),
  45412. name: "Back",
  45413. image: {
  45414. source: "./media/characters/october-gossamer/back.svg",
  45415. extra: 501/454,
  45416. bottom: 11/512
  45417. }
  45418. },
  45419. },
  45420. [
  45421. {
  45422. name: "Normal",
  45423. height: math.unit(5 + 2/12, "feet"),
  45424. default: true
  45425. },
  45426. ]
  45427. ))
  45428. characterMakers.push(() => makeCharacter(
  45429. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45430. {
  45431. front: {
  45432. height: math.unit(5, "feet"),
  45433. name: "Front",
  45434. image: {
  45435. source: "./media/characters/epiglottis/front.svg",
  45436. extra: 923/849,
  45437. bottom: 17/940
  45438. }
  45439. },
  45440. },
  45441. [
  45442. {
  45443. name: "Original Size",
  45444. height: math.unit(10, "inches")
  45445. },
  45446. {
  45447. name: "Human Size",
  45448. height: math.unit(5, "feet"),
  45449. default: true
  45450. },
  45451. {
  45452. name: "Big",
  45453. height: math.unit(25, "feet")
  45454. },
  45455. {
  45456. name: "Bigger",
  45457. height: math.unit(50, "feet")
  45458. },
  45459. {
  45460. name: "oh lawd",
  45461. height: math.unit(75, "feet")
  45462. },
  45463. ]
  45464. ))
  45465. characterMakers.push(() => makeCharacter(
  45466. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45467. {
  45468. front: {
  45469. height: math.unit(2 + 4/12, "feet"),
  45470. weight: math.unit(60, "lb"),
  45471. name: "Front",
  45472. image: {
  45473. source: "./media/characters/lerm/front.svg",
  45474. extra: 796/790,
  45475. bottom: 79/875
  45476. }
  45477. },
  45478. },
  45479. [
  45480. {
  45481. name: "Normal",
  45482. height: math.unit(2 + 4/12, "feet"),
  45483. default: true
  45484. },
  45485. ]
  45486. ))
  45487. characterMakers.push(() => makeCharacter(
  45488. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45489. {
  45490. front: {
  45491. height: math.unit(5.5, "feet"),
  45492. weight: math.unit(130, "lb"),
  45493. name: "Front",
  45494. image: {
  45495. source: "./media/characters/xena-nebadon/front.svg",
  45496. extra: 1828/1730,
  45497. bottom: 79/1907
  45498. }
  45499. },
  45500. },
  45501. [
  45502. {
  45503. name: "Tiny Puppy",
  45504. height: math.unit(3, "inches")
  45505. },
  45506. {
  45507. name: "Normal",
  45508. height: math.unit(5.5, "feet"),
  45509. default: true
  45510. },
  45511. {
  45512. name: "Lotta Lady",
  45513. height: math.unit(12, "feet")
  45514. },
  45515. {
  45516. name: "Pretty Big",
  45517. height: math.unit(100, "feet")
  45518. },
  45519. {
  45520. name: "Big",
  45521. height: math.unit(500, "feet")
  45522. },
  45523. {
  45524. name: "Skyscraper Toys",
  45525. height: math.unit(2500, "feet")
  45526. },
  45527. {
  45528. name: "Plane Catcher",
  45529. height: math.unit(8, "miles")
  45530. },
  45531. {
  45532. name: "Planet Toys",
  45533. height: math.unit(15, "earths")
  45534. },
  45535. {
  45536. name: "Stardust",
  45537. height: math.unit(0.25, "galaxies")
  45538. },
  45539. {
  45540. name: "Snacks",
  45541. height: math.unit(70, "universes")
  45542. },
  45543. ]
  45544. ))
  45545. characterMakers.push(() => makeCharacter(
  45546. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45547. {
  45548. front: {
  45549. height: math.unit(1.6, "meters"),
  45550. weight: math.unit(60, "kg"),
  45551. name: "Front",
  45552. image: {
  45553. source: "./media/characters/bounty/front.svg",
  45554. extra: 1426/1308,
  45555. bottom: 15/1441
  45556. }
  45557. },
  45558. back: {
  45559. height: math.unit(1.6, "meters"),
  45560. weight: math.unit(60, "kg"),
  45561. name: "Back",
  45562. image: {
  45563. source: "./media/characters/bounty/back.svg",
  45564. extra: 1417/1307,
  45565. bottom: 8/1425
  45566. }
  45567. },
  45568. },
  45569. [
  45570. {
  45571. name: "Normal",
  45572. height: math.unit(1.6, "meters"),
  45573. default: true
  45574. },
  45575. {
  45576. name: "Macro",
  45577. height: math.unit(300, "meters")
  45578. },
  45579. ]
  45580. ))
  45581. characterMakers.push(() => makeCharacter(
  45582. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45583. {
  45584. front: {
  45585. height: math.unit(2 + 8/12, "feet"),
  45586. weight: math.unit(15, "lb"),
  45587. name: "Front",
  45588. image: {
  45589. source: "./media/characters/mochi/front.svg",
  45590. extra: 1022/852,
  45591. bottom: 435/1457
  45592. }
  45593. },
  45594. back: {
  45595. height: math.unit(2 + 8/12, "feet"),
  45596. weight: math.unit(15, "lb"),
  45597. name: "Back",
  45598. image: {
  45599. source: "./media/characters/mochi/back.svg",
  45600. extra: 1335/1119,
  45601. bottom: 39/1374
  45602. }
  45603. },
  45604. bird: {
  45605. height: math.unit(2 + 8/12, "feet"),
  45606. weight: math.unit(15, "lb"),
  45607. name: "Bird",
  45608. image: {
  45609. source: "./media/characters/mochi/bird.svg",
  45610. extra: 1251/1113,
  45611. bottom: 178/1429
  45612. }
  45613. },
  45614. kaiju: {
  45615. height: math.unit(154, "feet"),
  45616. weight: math.unit(1e7, "lb"),
  45617. name: "Kaiju",
  45618. image: {
  45619. source: "./media/characters/mochi/kaiju.svg",
  45620. extra: 460/324,
  45621. bottom: 40/500
  45622. }
  45623. },
  45624. head: {
  45625. height: math.unit(1.21, "feet"),
  45626. name: "Head",
  45627. image: {
  45628. source: "./media/characters/mochi/head.svg"
  45629. }
  45630. },
  45631. alternateTail: {
  45632. height: math.unit(2 + 8/12, "feet"),
  45633. weight: math.unit(45, "lb"),
  45634. name: "Alternate Tail",
  45635. image: {
  45636. source: "./media/characters/mochi/alternate-tail.svg",
  45637. extra: 139/76,
  45638. bottom: 45/184
  45639. }
  45640. },
  45641. },
  45642. [
  45643. {
  45644. name: "Micro",
  45645. height: math.unit(2, "inches")
  45646. },
  45647. {
  45648. name: "Normal",
  45649. height: math.unit(2 + 8/12, "feet"),
  45650. default: true
  45651. },
  45652. {
  45653. name: "Macro",
  45654. height: math.unit(106, "feet")
  45655. },
  45656. ]
  45657. ))
  45658. characterMakers.push(() => makeCharacter(
  45659. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45660. {
  45661. front: {
  45662. height: math.unit(5.67, "feet"),
  45663. weight: math.unit(135, "lb"),
  45664. name: "Front",
  45665. image: {
  45666. source: "./media/characters/sarel/front.svg",
  45667. extra: 865/788,
  45668. bottom: 97/962
  45669. }
  45670. },
  45671. back: {
  45672. height: math.unit(5.67, "feet"),
  45673. weight: math.unit(135, "lb"),
  45674. name: "Back",
  45675. image: {
  45676. source: "./media/characters/sarel/back.svg",
  45677. extra: 857/777,
  45678. bottom: 32/889
  45679. }
  45680. },
  45681. chozoan: {
  45682. height: math.unit(5.67, "feet"),
  45683. weight: math.unit(135, "lb"),
  45684. name: "Chozoan",
  45685. image: {
  45686. source: "./media/characters/sarel/chozoan.svg",
  45687. extra: 865/788,
  45688. bottom: 97/962
  45689. }
  45690. },
  45691. current: {
  45692. height: math.unit(5.67, "feet"),
  45693. weight: math.unit(135, "lb"),
  45694. name: "Current",
  45695. image: {
  45696. source: "./media/characters/sarel/current.svg",
  45697. extra: 865/788,
  45698. bottom: 97/962
  45699. }
  45700. },
  45701. head: {
  45702. height: math.unit(1.77, "feet"),
  45703. name: "Head",
  45704. image: {
  45705. source: "./media/characters/sarel/head.svg"
  45706. }
  45707. },
  45708. claws: {
  45709. height: math.unit(1.8, "feet"),
  45710. name: "Claws",
  45711. image: {
  45712. source: "./media/characters/sarel/claws.svg"
  45713. }
  45714. },
  45715. clawsAlt: {
  45716. height: math.unit(1.8, "feet"),
  45717. name: "Claws-alt",
  45718. image: {
  45719. source: "./media/characters/sarel/claws-alt.svg"
  45720. }
  45721. },
  45722. },
  45723. [
  45724. {
  45725. name: "Normal",
  45726. height: math.unit(5.67, "feet"),
  45727. default: true
  45728. },
  45729. ]
  45730. ))
  45731. characterMakers.push(() => makeCharacter(
  45732. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45733. {
  45734. front: {
  45735. height: math.unit(5500, "feet"),
  45736. name: "Front",
  45737. image: {
  45738. source: "./media/characters/alyonia/front.svg",
  45739. extra: 1200/1135,
  45740. bottom: 29/1229
  45741. }
  45742. },
  45743. back: {
  45744. height: math.unit(5500, "feet"),
  45745. name: "Back",
  45746. image: {
  45747. source: "./media/characters/alyonia/back.svg",
  45748. extra: 1205/1138,
  45749. bottom: 10/1215
  45750. }
  45751. },
  45752. },
  45753. [
  45754. {
  45755. name: "Small",
  45756. height: math.unit(10, "feet")
  45757. },
  45758. {
  45759. name: "Macro",
  45760. height: math.unit(500, "feet")
  45761. },
  45762. {
  45763. name: "Mega Macro",
  45764. height: math.unit(5500, "feet"),
  45765. default: true
  45766. },
  45767. {
  45768. name: "Mega Macro+",
  45769. height: math.unit(500000, "feet")
  45770. },
  45771. {
  45772. name: "Giga Macro",
  45773. height: math.unit(3000, "miles")
  45774. },
  45775. {
  45776. name: "Tera Macro",
  45777. height: math.unit(2.8e6, "miles")
  45778. },
  45779. {
  45780. name: "Galactic",
  45781. height: math.unit(120000, "lightyears")
  45782. },
  45783. ]
  45784. ))
  45785. characterMakers.push(() => makeCharacter(
  45786. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45787. {
  45788. werewolf: {
  45789. height: math.unit(8, "feet"),
  45790. weight: math.unit(425, "lb"),
  45791. name: "Werewolf",
  45792. image: {
  45793. source: "./media/characters/autumn/werewolf.svg",
  45794. extra: 2154/2031,
  45795. bottom: 160/2314
  45796. }
  45797. },
  45798. human: {
  45799. height: math.unit(5 + 8/12, "feet"),
  45800. weight: math.unit(150, "lb"),
  45801. name: "Human",
  45802. image: {
  45803. source: "./media/characters/autumn/human.svg",
  45804. extra: 1200/1149,
  45805. bottom: 30/1230
  45806. }
  45807. },
  45808. },
  45809. [
  45810. {
  45811. name: "Normal",
  45812. height: math.unit(8, "feet"),
  45813. default: true
  45814. },
  45815. ]
  45816. ))
  45817. characterMakers.push(() => makeCharacter(
  45818. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45819. {
  45820. front: {
  45821. height: math.unit(8 + 5/12, "feet"),
  45822. weight: math.unit(825, "lb"),
  45823. name: "Front",
  45824. image: {
  45825. source: "./media/characters/cobalt-charizard/front.svg",
  45826. extra: 1268/1155,
  45827. bottom: 122/1390
  45828. }
  45829. },
  45830. side: {
  45831. height: math.unit(8 + 5/12, "feet"),
  45832. weight: math.unit(825, "lb"),
  45833. name: "Side",
  45834. image: {
  45835. source: "./media/characters/cobalt-charizard/side.svg",
  45836. extra: 1348/1257,
  45837. bottom: 58/1406
  45838. }
  45839. },
  45840. gMax: {
  45841. height: math.unit(134 + 11/12, "feet"),
  45842. name: "G-Max",
  45843. image: {
  45844. source: "./media/characters/cobalt-charizard/g-max.svg",
  45845. extra: 1835/1541,
  45846. bottom: 151/1986
  45847. }
  45848. },
  45849. },
  45850. [
  45851. {
  45852. name: "Normal",
  45853. height: math.unit(8 + 5/12, "feet"),
  45854. default: true
  45855. },
  45856. ]
  45857. ))
  45858. characterMakers.push(() => makeCharacter(
  45859. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45860. {
  45861. front: {
  45862. height: math.unit(6 + 3/12, "feet"),
  45863. weight: math.unit(210, "lb"),
  45864. name: "Front",
  45865. image: {
  45866. source: "./media/characters/stella/front.svg",
  45867. extra: 3549/3335,
  45868. bottom: 51/3600
  45869. }
  45870. },
  45871. },
  45872. [
  45873. {
  45874. name: "Normal",
  45875. height: math.unit(6 + 3/12, "feet"),
  45876. default: true
  45877. },
  45878. ]
  45879. ))
  45880. characterMakers.push(() => makeCharacter(
  45881. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45882. {
  45883. front: {
  45884. height: math.unit(5, "feet"),
  45885. weight: math.unit(90, "lb"),
  45886. name: "Front",
  45887. image: {
  45888. source: "./media/characters/riley-bishop/front.svg",
  45889. extra: 1450/1428,
  45890. bottom: 152/1602
  45891. }
  45892. },
  45893. },
  45894. [
  45895. {
  45896. name: "Normal",
  45897. height: math.unit(5, "feet"),
  45898. default: true
  45899. },
  45900. ]
  45901. ))
  45902. characterMakers.push(() => makeCharacter(
  45903. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45904. {
  45905. side: {
  45906. height: math.unit(8 + 2/12, "feet"),
  45907. weight: math.unit(500, "kg"),
  45908. name: "Side",
  45909. image: {
  45910. source: "./media/characters/theo-arcanine/side.svg",
  45911. extra: 1342/1074,
  45912. bottom: 111/1453
  45913. }
  45914. },
  45915. },
  45916. [
  45917. {
  45918. name: "Normal",
  45919. height: math.unit(8 + 2/12, "feet"),
  45920. default: true
  45921. },
  45922. ]
  45923. ))
  45924. characterMakers.push(() => makeCharacter(
  45925. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45926. {
  45927. front: {
  45928. height: math.unit(4, "feet"),
  45929. name: "Front",
  45930. image: {
  45931. source: "./media/characters/kali/front.svg",
  45932. extra: 1074/867,
  45933. bottom: 34/1108
  45934. }
  45935. },
  45936. back: {
  45937. height: math.unit(4, "feet"),
  45938. name: "Back",
  45939. image: {
  45940. source: "./media/characters/kali/back.svg",
  45941. extra: 1068/863,
  45942. bottom: 26/1094
  45943. }
  45944. },
  45945. frontAlt: {
  45946. height: math.unit(4, "feet"),
  45947. name: "Front (Alt)",
  45948. image: {
  45949. source: "./media/characters/kali/front-alt.svg",
  45950. extra: 1921/1357,
  45951. bottom: 70/1991
  45952. }
  45953. },
  45954. },
  45955. [
  45956. {
  45957. name: "Normal",
  45958. height: math.unit(4, "feet"),
  45959. default: true
  45960. },
  45961. {
  45962. name: "Big'vali",
  45963. height: math.unit(11, "feet")
  45964. },
  45965. {
  45966. name: "Macro",
  45967. height: math.unit(32, "meters")
  45968. },
  45969. {
  45970. name: "Macro+",
  45971. height: math.unit(150, "meters")
  45972. },
  45973. {
  45974. name: "Megamacro",
  45975. height: math.unit(7500, "meters")
  45976. },
  45977. {
  45978. name: "Megamacro+",
  45979. height: math.unit(80, "kilometers")
  45980. },
  45981. ]
  45982. ))
  45983. characterMakers.push(() => makeCharacter(
  45984. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45985. {
  45986. side: {
  45987. height: math.unit(5 + 11/12, "feet"),
  45988. weight: math.unit(236, "lb"),
  45989. name: "Side",
  45990. image: {
  45991. source: "./media/characters/gapp/side.svg",
  45992. extra: 775/340,
  45993. bottom: 58/833
  45994. }
  45995. },
  45996. mouth: {
  45997. height: math.unit(2.98, "feet"),
  45998. name: "Mouth",
  45999. image: {
  46000. source: "./media/characters/gapp/mouth.svg"
  46001. }
  46002. },
  46003. },
  46004. [
  46005. {
  46006. name: "Normal",
  46007. height: math.unit(5 + 1/12, "feet"),
  46008. default: true
  46009. },
  46010. ]
  46011. ))
  46012. characterMakers.push(() => makeCharacter(
  46013. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46014. {
  46015. front: {
  46016. height: math.unit(6, "feet"),
  46017. name: "Front",
  46018. image: {
  46019. source: "./media/characters/persephone/front.svg",
  46020. extra: 1895/1717,
  46021. bottom: 96/1991
  46022. }
  46023. },
  46024. back: {
  46025. height: math.unit(6, "feet"),
  46026. name: "Back",
  46027. image: {
  46028. source: "./media/characters/persephone/back.svg",
  46029. extra: 1868/1679,
  46030. bottom: 26/1894
  46031. }
  46032. },
  46033. casual: {
  46034. height: math.unit(6, "feet"),
  46035. name: "Casual",
  46036. image: {
  46037. source: "./media/characters/persephone/casual.svg",
  46038. extra: 1713/1541,
  46039. bottom: 76/1789
  46040. }
  46041. },
  46042. gaming: {
  46043. height: math.unit(3.55, "feet"),
  46044. name: "Gaming",
  46045. image: {
  46046. source: "./media/characters/persephone/gaming.svg",
  46047. extra: 1242/1038,
  46048. bottom: 66/1308
  46049. }
  46050. },
  46051. head: {
  46052. height: math.unit(2.15, "feet"),
  46053. name: "😐",
  46054. image: {
  46055. source: "./media/characters/persephone/head.svg"
  46056. }
  46057. },
  46058. talking: {
  46059. height: math.unit(2.5, "feet"),
  46060. name: "💬",
  46061. image: {
  46062. source: "./media/characters/persephone/talking.svg"
  46063. }
  46064. },
  46065. hmm: {
  46066. height: math.unit(2.28, "feet"),
  46067. name: "🤨",
  46068. image: {
  46069. source: "./media/characters/persephone/hmm.svg"
  46070. }
  46071. },
  46072. },
  46073. [
  46074. {
  46075. name: "Human Size",
  46076. height: math.unit(6, "feet")
  46077. },
  46078. {
  46079. name: "Big Steppy",
  46080. height: math.unit(600, "meters"),
  46081. default: true
  46082. },
  46083. {
  46084. name: "Galaxy Brain",
  46085. height: math.unit(1, "zettameter")
  46086. },
  46087. ]
  46088. ))
  46089. characterMakers.push(() => makeCharacter(
  46090. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46091. {
  46092. front: {
  46093. height: math.unit(1.85, "meters"),
  46094. name: "Front",
  46095. image: {
  46096. source: "./media/characters/riley-foxthing/front.svg",
  46097. extra: 1495/1354,
  46098. bottom: 122/1617
  46099. }
  46100. },
  46101. frontAlt: {
  46102. height: math.unit(1.85, "meters"),
  46103. name: "Front (Alt)",
  46104. image: {
  46105. source: "./media/characters/riley-foxthing/front-alt.svg",
  46106. extra: 1572/1389,
  46107. bottom: 116/1688
  46108. }
  46109. },
  46110. },
  46111. [
  46112. {
  46113. name: "Normal Sized",
  46114. height: math.unit(1.85, "meters"),
  46115. default: true
  46116. },
  46117. {
  46118. name: "Quite Sizable",
  46119. height: math.unit(5, "meters")
  46120. },
  46121. {
  46122. name: "Rather Large",
  46123. height: math.unit(20, "meters")
  46124. },
  46125. {
  46126. name: "Macro",
  46127. height: math.unit(450, "meters")
  46128. },
  46129. {
  46130. name: "Giga",
  46131. height: math.unit(5, "km")
  46132. },
  46133. ]
  46134. ))
  46135. characterMakers.push(() => makeCharacter(
  46136. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46137. {
  46138. front: {
  46139. height: math.unit(6, "feet"),
  46140. weight: math.unit(200, "lb"),
  46141. name: "Front",
  46142. image: {
  46143. source: "./media/characters/blizzard/front.svg",
  46144. extra: 1136/990,
  46145. bottom: 136/1272
  46146. }
  46147. },
  46148. back: {
  46149. height: math.unit(6, "feet"),
  46150. weight: math.unit(200, "lb"),
  46151. name: "Back",
  46152. image: {
  46153. source: "./media/characters/blizzard/back.svg",
  46154. extra: 1175/1034,
  46155. bottom: 97/1272
  46156. }
  46157. },
  46158. sitting: {
  46159. height: math.unit(3.725, "feet"),
  46160. weight: math.unit(200, "lb"),
  46161. name: "Sitting",
  46162. image: {
  46163. source: "./media/characters/blizzard/sitting.svg",
  46164. extra: 581/485,
  46165. bottom: 90/671
  46166. }
  46167. },
  46168. frontWizard: {
  46169. height: math.unit(7.9, "feet"),
  46170. weight: math.unit(200, "lb"),
  46171. name: "Front (Wizard)",
  46172. image: {
  46173. source: "./media/characters/blizzard/front-wizard.svg"
  46174. }
  46175. },
  46176. backWizard: {
  46177. height: math.unit(7.9, "feet"),
  46178. weight: math.unit(200, "lb"),
  46179. name: "Back (Wizard)",
  46180. image: {
  46181. source: "./media/characters/blizzard/back-wizard.svg"
  46182. }
  46183. },
  46184. frontNsfw: {
  46185. height: math.unit(6, "feet"),
  46186. weight: math.unit(200, "lb"),
  46187. name: "Front (NSFW)",
  46188. image: {
  46189. source: "./media/characters/blizzard/front-nsfw.svg",
  46190. extra: 1136/990,
  46191. bottom: 136/1272
  46192. }
  46193. },
  46194. backNsfw: {
  46195. height: math.unit(6, "feet"),
  46196. weight: math.unit(200, "lb"),
  46197. name: "Back (NSFW)",
  46198. image: {
  46199. source: "./media/characters/blizzard/back-nsfw.svg",
  46200. extra: 1175/1034,
  46201. bottom: 97/1272
  46202. }
  46203. },
  46204. sittingNsfw: {
  46205. height: math.unit(3.725, "feet"),
  46206. weight: math.unit(200, "lb"),
  46207. name: "Sitting (NSFW)",
  46208. image: {
  46209. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46210. extra: 581/485,
  46211. bottom: 90/671
  46212. }
  46213. },
  46214. wizardFrontNsfw: {
  46215. height: math.unit(7.9, "feet"),
  46216. weight: math.unit(200, "lb"),
  46217. name: "Wizard (Front, NSFW)",
  46218. image: {
  46219. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46220. }
  46221. },
  46222. },
  46223. [
  46224. {
  46225. name: "Normal",
  46226. height: math.unit(6, "feet"),
  46227. default: true
  46228. },
  46229. ]
  46230. ))
  46231. characterMakers.push(() => makeCharacter(
  46232. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46233. {
  46234. front: {
  46235. height: math.unit(5 + 2/12, "feet"),
  46236. name: "Front",
  46237. image: {
  46238. source: "./media/characters/lumi/front.svg",
  46239. extra: 1328/1268,
  46240. bottom: 103/1431
  46241. }
  46242. },
  46243. back: {
  46244. height: math.unit(5 + 2/12, "feet"),
  46245. name: "Back",
  46246. image: {
  46247. source: "./media/characters/lumi/back.svg",
  46248. extra: 1381/1327,
  46249. bottom: 43/1424
  46250. }
  46251. },
  46252. },
  46253. [
  46254. {
  46255. name: "Normal",
  46256. height: math.unit(5 + 2/12, "feet"),
  46257. default: true
  46258. },
  46259. ]
  46260. ))
  46261. characterMakers.push(() => makeCharacter(
  46262. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46263. {
  46264. front: {
  46265. height: math.unit(5 + 9/12, "feet"),
  46266. name: "Front",
  46267. image: {
  46268. source: "./media/characters/aliya-cotton/front.svg",
  46269. extra: 577/564,
  46270. bottom: 29/606
  46271. }
  46272. },
  46273. },
  46274. [
  46275. {
  46276. name: "Normal",
  46277. height: math.unit(5 + 9/12, "feet"),
  46278. default: true
  46279. },
  46280. ]
  46281. ))
  46282. characterMakers.push(() => makeCharacter(
  46283. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46284. {
  46285. front: {
  46286. height: math.unit(2.7, "meters"),
  46287. weight: math.unit(25000, "lb"),
  46288. name: "Front",
  46289. image: {
  46290. source: "./media/characters/noah-luxray/front.svg",
  46291. extra: 1644/825,
  46292. bottom: 339/1983
  46293. }
  46294. },
  46295. side: {
  46296. height: math.unit(2.97, "meters"),
  46297. weight: math.unit(25000, "lb"),
  46298. name: "Side",
  46299. image: {
  46300. source: "./media/characters/noah-luxray/side.svg",
  46301. extra: 1319/650,
  46302. bottom: 163/1482
  46303. }
  46304. },
  46305. dick: {
  46306. height: math.unit(7.4, "feet"),
  46307. weight: math.unit(2500, "lb"),
  46308. name: "Dick",
  46309. image: {
  46310. source: "./media/characters/noah-luxray/dick.svg"
  46311. }
  46312. },
  46313. dickAlt: {
  46314. height: math.unit(10.83, "feet"),
  46315. weight: math.unit(2500, "lb"),
  46316. name: "Dick-alt",
  46317. image: {
  46318. source: "./media/characters/noah-luxray/dick-alt.svg"
  46319. }
  46320. },
  46321. },
  46322. [
  46323. {
  46324. name: "BIG",
  46325. height: math.unit(2.7, "meters"),
  46326. default: true
  46327. },
  46328. ]
  46329. ))
  46330. characterMakers.push(() => makeCharacter(
  46331. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46332. {
  46333. standing: {
  46334. height: math.unit(183, "cm"),
  46335. weight: math.unit(68, "kg"),
  46336. name: "Standing",
  46337. image: {
  46338. source: "./media/characters/arion/standing.svg",
  46339. extra: 1869/1807,
  46340. bottom: 93/1962
  46341. }
  46342. },
  46343. reclining: {
  46344. height: math.unit(70.5, "cm"),
  46345. weight: math.unit(68, "lb"),
  46346. name: "Reclining",
  46347. image: {
  46348. source: "./media/characters/arion/reclining.svg",
  46349. extra: 937/870,
  46350. bottom: 63/1000
  46351. }
  46352. },
  46353. },
  46354. [
  46355. {
  46356. name: "Colossus Size, Low",
  46357. height: math.unit(33, "meters"),
  46358. default: true
  46359. },
  46360. {
  46361. name: "Colossus Size, Mid",
  46362. height: math.unit(52, "meters")
  46363. },
  46364. {
  46365. name: "Colossus Size, High",
  46366. height: math.unit(60, "meters")
  46367. },
  46368. {
  46369. name: "Titan Size, Low",
  46370. height: math.unit(91, "meters"),
  46371. },
  46372. {
  46373. name: "Titan Size, Mid",
  46374. height: math.unit(122, "meters")
  46375. },
  46376. {
  46377. name: "Titan Size, High",
  46378. height: math.unit(162, "meters")
  46379. },
  46380. ]
  46381. ))
  46382. characterMakers.push(() => makeCharacter(
  46383. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46384. {
  46385. front: {
  46386. height: math.unit(53, "meters"),
  46387. name: "Front",
  46388. image: {
  46389. source: "./media/characters/stellar-marbey/front.svg",
  46390. extra: 1913/1805,
  46391. bottom: 92/2005
  46392. }
  46393. },
  46394. back: {
  46395. height: math.unit(53, "meters"),
  46396. name: "Back",
  46397. image: {
  46398. source: "./media/characters/stellar-marbey/back.svg",
  46399. extra: 1960/1851,
  46400. bottom: 28/1988
  46401. }
  46402. },
  46403. mouth: {
  46404. height: math.unit(3.5, "meters"),
  46405. name: "Mouth",
  46406. image: {
  46407. source: "./media/characters/stellar-marbey/mouth.svg"
  46408. }
  46409. },
  46410. },
  46411. [
  46412. {
  46413. name: "Macro",
  46414. height: math.unit(53, "meters"),
  46415. default: true
  46416. },
  46417. ]
  46418. ))
  46419. characterMakers.push(() => makeCharacter(
  46420. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46421. {
  46422. front: {
  46423. height: math.unit(8 + 1/12, "feet"),
  46424. weight: math.unit(233, "lb"),
  46425. name: "Front",
  46426. image: {
  46427. source: "./media/characters/matsu/front.svg",
  46428. extra: 832/772,
  46429. bottom: 40/872
  46430. }
  46431. },
  46432. back: {
  46433. height: math.unit(8 + 1/12, "feet"),
  46434. weight: math.unit(233, "lb"),
  46435. name: "Back",
  46436. image: {
  46437. source: "./media/characters/matsu/back.svg",
  46438. extra: 839/780,
  46439. bottom: 47/886
  46440. }
  46441. },
  46442. },
  46443. [
  46444. {
  46445. name: "Normal",
  46446. height: math.unit(8 + 1/12, "feet"),
  46447. default: true
  46448. },
  46449. ]
  46450. ))
  46451. characterMakers.push(() => makeCharacter(
  46452. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46453. {
  46454. front: {
  46455. height: math.unit(4, "feet"),
  46456. weight: math.unit(148, "lb"),
  46457. name: "Front",
  46458. image: {
  46459. source: "./media/characters/thiz/front.svg",
  46460. extra: 1913/1748,
  46461. bottom: 62/1975
  46462. }
  46463. },
  46464. },
  46465. [
  46466. {
  46467. name: "Normal",
  46468. height: math.unit(4, "feet"),
  46469. default: true
  46470. },
  46471. ]
  46472. ))
  46473. characterMakers.push(() => makeCharacter(
  46474. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46475. {
  46476. front: {
  46477. height: math.unit(7 + 6/12, "feet"),
  46478. weight: math.unit(267, "lb"),
  46479. name: "Front",
  46480. image: {
  46481. source: "./media/characters/marcel/front.svg",
  46482. extra: 1221/1096,
  46483. bottom: 76/1297
  46484. }
  46485. },
  46486. },
  46487. [
  46488. {
  46489. name: "Normal",
  46490. height: math.unit(7 + 6/12, "feet"),
  46491. default: true
  46492. },
  46493. ]
  46494. ))
  46495. characterMakers.push(() => makeCharacter(
  46496. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46497. {
  46498. side: {
  46499. height: math.unit(42, "meters"),
  46500. name: "Side",
  46501. image: {
  46502. source: "./media/characters/flake/side.svg",
  46503. extra: 1525/1306,
  46504. bottom: 209/1734
  46505. }
  46506. },
  46507. },
  46508. [
  46509. {
  46510. name: "Normal",
  46511. height: math.unit(42, "meters"),
  46512. default: true
  46513. },
  46514. ]
  46515. ))
  46516. characterMakers.push(() => makeCharacter(
  46517. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46518. {
  46519. dressed: {
  46520. height: math.unit(6 + 4/12, "feet"),
  46521. weight: math.unit(520, "lb"),
  46522. name: "Dressed",
  46523. image: {
  46524. source: "./media/characters/someonne/dressed.svg",
  46525. extra: 1020/1010,
  46526. bottom: 178/1198
  46527. }
  46528. },
  46529. undressed: {
  46530. height: math.unit(6 + 4/12, "feet"),
  46531. weight: math.unit(520, "lb"),
  46532. name: "Undressed",
  46533. image: {
  46534. source: "./media/characters/someonne/undressed.svg",
  46535. extra: 1019/1014,
  46536. bottom: 169/1188
  46537. }
  46538. },
  46539. },
  46540. [
  46541. {
  46542. name: "Normal",
  46543. height: math.unit(6 + 4/12, "feet"),
  46544. default: true
  46545. },
  46546. ]
  46547. ))
  46548. characterMakers.push(() => makeCharacter(
  46549. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46550. {
  46551. front: {
  46552. height: math.unit(3, "feet"),
  46553. weight: math.unit(30, "lb"),
  46554. name: "Front",
  46555. image: {
  46556. source: "./media/characters/till/front.svg",
  46557. extra: 892/823,
  46558. bottom: 55/947
  46559. }
  46560. },
  46561. },
  46562. [
  46563. {
  46564. name: "Normal",
  46565. height: math.unit(3, "feet"),
  46566. default: true
  46567. },
  46568. ]
  46569. ))
  46570. characterMakers.push(() => makeCharacter(
  46571. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46572. {
  46573. front: {
  46574. height: math.unit(9 + 8/12, "feet"),
  46575. weight: math.unit(800, "lb"),
  46576. name: "Front",
  46577. image: {
  46578. source: "./media/characters/sydney-heki/front.svg",
  46579. extra: 1360/1300,
  46580. bottom: 22/1382
  46581. }
  46582. },
  46583. back: {
  46584. height: math.unit(9 + 8/12, "feet"),
  46585. weight: math.unit(800, "lb"),
  46586. name: "Back",
  46587. image: {
  46588. source: "./media/characters/sydney-heki/back.svg",
  46589. extra: 1356/1293,
  46590. bottom: 12/1368
  46591. }
  46592. },
  46593. frontDressed: {
  46594. height: math.unit(9 + 8/12, "feet"),
  46595. weight: math.unit(800, "lb"),
  46596. name: "Front-dressed",
  46597. image: {
  46598. source: "./media/characters/sydney-heki/front-dressed.svg",
  46599. extra: 1360/1300,
  46600. bottom: 22/1382
  46601. }
  46602. },
  46603. },
  46604. [
  46605. {
  46606. name: "Normal",
  46607. height: math.unit(9 + 8/12, "feet"),
  46608. default: true
  46609. },
  46610. {
  46611. name: "Macro",
  46612. height: math.unit(500, "feet")
  46613. },
  46614. {
  46615. name: "Megamacro",
  46616. height: math.unit(3.6, "miles")
  46617. },
  46618. ]
  46619. ))
  46620. characterMakers.push(() => makeCharacter(
  46621. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46622. {
  46623. front: {
  46624. height: math.unit(200, "cm"),
  46625. weight: math.unit(250, "lb"),
  46626. name: "Front",
  46627. image: {
  46628. source: "./media/characters/fowler-karlsson/front.svg",
  46629. extra: 897/845,
  46630. bottom: 123/1020
  46631. }
  46632. },
  46633. back: {
  46634. height: math.unit(200, "cm"),
  46635. weight: math.unit(250, "lb"),
  46636. name: "Back",
  46637. image: {
  46638. source: "./media/characters/fowler-karlsson/back.svg",
  46639. extra: 999/944,
  46640. bottom: 26/1025
  46641. }
  46642. },
  46643. dick: {
  46644. height: math.unit(1.92, "feet"),
  46645. weight: math.unit(150, "lb"),
  46646. name: "Dick",
  46647. image: {
  46648. source: "./media/characters/fowler-karlsson/dick.svg"
  46649. }
  46650. },
  46651. },
  46652. [
  46653. {
  46654. name: "Normal",
  46655. height: math.unit(200, "cm"),
  46656. default: true
  46657. },
  46658. {
  46659. name: "Smaller Macro",
  46660. height: math.unit(90, "m")
  46661. },
  46662. {
  46663. name: "Macro",
  46664. height: math.unit(150, "m")
  46665. },
  46666. {
  46667. name: "Bigger Macro",
  46668. height: math.unit(300, "m")
  46669. },
  46670. ]
  46671. ))
  46672. characterMakers.push(() => makeCharacter(
  46673. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46674. {
  46675. side: {
  46676. height: math.unit(8 + 2/12, "feet"),
  46677. weight: math.unit(1, "tonne"),
  46678. name: "Side",
  46679. image: {
  46680. source: "./media/characters/rylide/side.svg",
  46681. extra: 1318/1034,
  46682. bottom: 106/1424
  46683. }
  46684. },
  46685. sitting: {
  46686. height: math.unit(303, "cm"),
  46687. weight: math.unit(1, "tonne"),
  46688. name: "Sitting",
  46689. image: {
  46690. source: "./media/characters/rylide/sitting.svg",
  46691. extra: 1303/1103,
  46692. bottom: 36/1339
  46693. }
  46694. },
  46695. },
  46696. [
  46697. {
  46698. name: "Normal",
  46699. height: math.unit(8 + 2/12, "feet"),
  46700. default: true
  46701. },
  46702. ]
  46703. ))
  46704. characterMakers.push(() => makeCharacter(
  46705. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46706. {
  46707. front: {
  46708. height: math.unit(5 + 10/12, "feet"),
  46709. weight: math.unit(160, "lb"),
  46710. name: "Front",
  46711. image: {
  46712. source: "./media/characters/pudask/front.svg",
  46713. extra: 1616/1590,
  46714. bottom: 161/1777
  46715. }
  46716. },
  46717. },
  46718. [
  46719. {
  46720. name: "Ferret Height",
  46721. height: math.unit(2 + 5/12, "feet")
  46722. },
  46723. {
  46724. name: "Canon Height",
  46725. height: math.unit(5 + 10/12, "feet"),
  46726. default: true
  46727. },
  46728. ]
  46729. ))
  46730. characterMakers.push(() => makeCharacter(
  46731. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46732. {
  46733. front: {
  46734. height: math.unit(3 + 6/12, "feet"),
  46735. weight: math.unit(60, "lb"),
  46736. name: "Front",
  46737. image: {
  46738. source: "./media/characters/ramita/front.svg",
  46739. extra: 1402/1232,
  46740. bottom: 62/1464
  46741. }
  46742. },
  46743. dressed: {
  46744. height: math.unit(3 + 6/12, "feet"),
  46745. weight: math.unit(60, "lb"),
  46746. name: "Dressed",
  46747. image: {
  46748. source: "./media/characters/ramita/dressed.svg",
  46749. extra: 1534/1249,
  46750. bottom: 50/1584
  46751. }
  46752. },
  46753. },
  46754. [
  46755. {
  46756. name: "Normal",
  46757. height: math.unit(3 + 6/12, "feet"),
  46758. default: true
  46759. },
  46760. ]
  46761. ))
  46762. characterMakers.push(() => makeCharacter(
  46763. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46764. {
  46765. front: {
  46766. height: math.unit(8, "feet"),
  46767. name: "Front",
  46768. image: {
  46769. source: "./media/characters/ark/front.svg",
  46770. extra: 772/693,
  46771. bottom: 45/817
  46772. }
  46773. },
  46774. },
  46775. [
  46776. {
  46777. name: "Normal",
  46778. height: math.unit(8, "feet"),
  46779. default: true
  46780. },
  46781. ]
  46782. ))
  46783. characterMakers.push(() => makeCharacter(
  46784. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46785. {
  46786. front: {
  46787. height: math.unit(6, "feet"),
  46788. weight: math.unit(250, "lb"),
  46789. volume: math.unit(5/8, "gallons"),
  46790. name: "Front",
  46791. image: {
  46792. source: "./media/characters/ludwig-horn/front.svg",
  46793. extra: 1782/1635,
  46794. bottom: 96/1878
  46795. }
  46796. },
  46797. back: {
  46798. height: math.unit(6, "feet"),
  46799. weight: math.unit(250, "lb"),
  46800. volume: math.unit(5/8, "gallons"),
  46801. name: "Back",
  46802. image: {
  46803. source: "./media/characters/ludwig-horn/back.svg",
  46804. extra: 1874/1729,
  46805. bottom: 27/1901
  46806. }
  46807. },
  46808. dick: {
  46809. height: math.unit(1.05, "feet"),
  46810. weight: math.unit(15, "lb"),
  46811. volume: math.unit(5/8, "gallons"),
  46812. name: "Dick",
  46813. image: {
  46814. source: "./media/characters/ludwig-horn/dick.svg"
  46815. }
  46816. },
  46817. },
  46818. [
  46819. {
  46820. name: "Small",
  46821. height: math.unit(6, "feet")
  46822. },
  46823. {
  46824. name: "Typical",
  46825. height: math.unit(12, "feet"),
  46826. default: true
  46827. },
  46828. {
  46829. name: "Building",
  46830. height: math.unit(80, "feet")
  46831. },
  46832. {
  46833. name: "Town",
  46834. height: math.unit(800, "feet")
  46835. },
  46836. {
  46837. name: "Kingdom",
  46838. height: math.unit(80000, "feet")
  46839. },
  46840. {
  46841. name: "Planet",
  46842. height: math.unit(8000000, "feet")
  46843. },
  46844. {
  46845. name: "Universe",
  46846. height: math.unit(8000000000, "feet")
  46847. },
  46848. {
  46849. name: "Transcended",
  46850. height: math.unit(8e27, "feet")
  46851. },
  46852. ]
  46853. ))
  46854. characterMakers.push(() => makeCharacter(
  46855. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46856. {
  46857. front: {
  46858. height: math.unit(5, "feet"),
  46859. weight: math.unit(50, "kg"),
  46860. name: "Front",
  46861. image: {
  46862. source: "./media/characters/biot-avery/front.svg",
  46863. extra: 1295/1232,
  46864. bottom: 86/1381
  46865. }
  46866. },
  46867. },
  46868. [
  46869. {
  46870. name: "Normal",
  46871. height: math.unit(5, "feet"),
  46872. default: true
  46873. },
  46874. ]
  46875. ))
  46876. characterMakers.push(() => makeCharacter(
  46877. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46878. {
  46879. front: {
  46880. height: math.unit(6, "feet"),
  46881. name: "Front",
  46882. image: {
  46883. source: "./media/characters/kitsune-kiro/front.svg",
  46884. extra: 1270/1158,
  46885. bottom: 42/1312
  46886. }
  46887. },
  46888. frontAlt: {
  46889. height: math.unit(6, "feet"),
  46890. name: "Front-alt",
  46891. image: {
  46892. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46893. extra: 1130/1081,
  46894. bottom: 36/1166
  46895. }
  46896. },
  46897. },
  46898. [
  46899. {
  46900. name: "Smol",
  46901. height: math.unit(3, "feet")
  46902. },
  46903. {
  46904. name: "Normal",
  46905. height: math.unit(6, "feet"),
  46906. default: true
  46907. },
  46908. ]
  46909. ))
  46910. characterMakers.push(() => makeCharacter(
  46911. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46912. {
  46913. front: {
  46914. height: math.unit(6, "feet"),
  46915. weight: math.unit(125, "lb"),
  46916. name: "Front",
  46917. image: {
  46918. source: "./media/characters/jack-thatcher/front.svg",
  46919. extra: 1474/1370,
  46920. bottom: 26/1500
  46921. }
  46922. },
  46923. back: {
  46924. height: math.unit(6, "feet"),
  46925. weight: math.unit(125, "lb"),
  46926. name: "Back",
  46927. image: {
  46928. source: "./media/characters/jack-thatcher/back.svg",
  46929. extra: 1489/1384,
  46930. bottom: 18/1507
  46931. }
  46932. },
  46933. },
  46934. [
  46935. {
  46936. name: "Normal",
  46937. height: math.unit(6, "feet"),
  46938. default: true
  46939. },
  46940. {
  46941. name: "Macro",
  46942. height: math.unit(75, "feet")
  46943. },
  46944. {
  46945. name: "Macro-er",
  46946. height: math.unit(250, "feet")
  46947. },
  46948. ]
  46949. ))
  46950. characterMakers.push(() => makeCharacter(
  46951. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46952. {
  46953. front: {
  46954. height: math.unit(7, "feet"),
  46955. weight: math.unit(110, "kg"),
  46956. name: "Front",
  46957. image: {
  46958. source: "./media/characters/max-hyper/front.svg",
  46959. extra: 1969/1881,
  46960. bottom: 49/2018
  46961. }
  46962. },
  46963. },
  46964. [
  46965. {
  46966. name: "Normal",
  46967. height: math.unit(7, "feet"),
  46968. default: true
  46969. },
  46970. ]
  46971. ))
  46972. characterMakers.push(() => makeCharacter(
  46973. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46974. {
  46975. front: {
  46976. height: math.unit(5 + 5/12, "feet"),
  46977. weight: math.unit(160, "lb"),
  46978. name: "Front",
  46979. image: {
  46980. source: "./media/characters/spook/front.svg",
  46981. extra: 794/791,
  46982. bottom: 54/848
  46983. }
  46984. },
  46985. back: {
  46986. height: math.unit(5 + 5/12, "feet"),
  46987. weight: math.unit(160, "lb"),
  46988. name: "Back",
  46989. image: {
  46990. source: "./media/characters/spook/back.svg",
  46991. extra: 812/798,
  46992. bottom: 32/844
  46993. }
  46994. },
  46995. },
  46996. [
  46997. {
  46998. name: "Normal",
  46999. height: math.unit(5 + 5/12, "feet"),
  47000. default: true
  47001. },
  47002. ]
  47003. ))
  47004. characterMakers.push(() => makeCharacter(
  47005. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47006. {
  47007. front: {
  47008. height: math.unit(18, "feet"),
  47009. name: "Front",
  47010. image: {
  47011. source: "./media/characters/xeaduulix/front.svg",
  47012. extra: 1380/1166,
  47013. bottom: 110/1490
  47014. }
  47015. },
  47016. back: {
  47017. height: math.unit(18, "feet"),
  47018. name: "Back",
  47019. image: {
  47020. source: "./media/characters/xeaduulix/back.svg",
  47021. extra: 1592/1170,
  47022. bottom: 128/1720
  47023. }
  47024. },
  47025. frontNsfw: {
  47026. height: math.unit(18, "feet"),
  47027. name: "Front (NSFW)",
  47028. image: {
  47029. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47030. extra: 1380/1166,
  47031. bottom: 110/1490
  47032. }
  47033. },
  47034. backNsfw: {
  47035. height: math.unit(18, "feet"),
  47036. name: "Back (NSFW)",
  47037. image: {
  47038. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47039. extra: 1592/1170,
  47040. bottom: 128/1720
  47041. }
  47042. },
  47043. },
  47044. [
  47045. {
  47046. name: "Normal",
  47047. height: math.unit(18, "feet"),
  47048. default: true
  47049. },
  47050. ]
  47051. ))
  47052. characterMakers.push(() => makeCharacter(
  47053. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47054. {
  47055. spreadWings: {
  47056. height: math.unit(20, "feet"),
  47057. name: "Spread Wings",
  47058. image: {
  47059. source: "./media/characters/fledge/spread-wings.svg",
  47060. extra: 693/635,
  47061. bottom: 26/719
  47062. }
  47063. },
  47064. front: {
  47065. height: math.unit(20, "feet"),
  47066. name: "Front",
  47067. image: {
  47068. source: "./media/characters/fledge/front.svg",
  47069. extra: 684/637,
  47070. bottom: 18/702
  47071. }
  47072. },
  47073. frontAlt: {
  47074. height: math.unit(20, "feet"),
  47075. name: "Front (Alt)",
  47076. image: {
  47077. source: "./media/characters/fledge/front-alt.svg",
  47078. extra: 708/664,
  47079. bottom: 13/721
  47080. }
  47081. },
  47082. back: {
  47083. height: math.unit(20, "feet"),
  47084. name: "Back",
  47085. image: {
  47086. source: "./media/characters/fledge/back.svg",
  47087. extra: 718/634,
  47088. bottom: 22/740
  47089. }
  47090. },
  47091. head: {
  47092. height: math.unit(5.55, "feet"),
  47093. name: "Head",
  47094. image: {
  47095. source: "./media/characters/fledge/head.svg"
  47096. }
  47097. },
  47098. headAlt: {
  47099. height: math.unit(5.1, "feet"),
  47100. name: "Head (Alt)",
  47101. image: {
  47102. source: "./media/characters/fledge/head-alt.svg"
  47103. }
  47104. },
  47105. },
  47106. [
  47107. {
  47108. name: "Small",
  47109. height: math.unit(6 + 2/12, "feet")
  47110. },
  47111. {
  47112. name: "Big",
  47113. height: math.unit(20, "feet"),
  47114. default: true
  47115. },
  47116. {
  47117. name: "Giant",
  47118. height: math.unit(100, "feet")
  47119. },
  47120. {
  47121. name: "Macro",
  47122. height: math.unit(200, "feet")
  47123. },
  47124. ]
  47125. ))
  47126. characterMakers.push(() => makeCharacter(
  47127. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47128. {
  47129. front: {
  47130. height: math.unit(1, "meter"),
  47131. name: "Front",
  47132. image: {
  47133. source: "./media/characters/atlas-morenai/front.svg",
  47134. extra: 1275/1043,
  47135. bottom: 19/1294
  47136. }
  47137. },
  47138. back: {
  47139. height: math.unit(1, "meter"),
  47140. name: "Back",
  47141. image: {
  47142. source: "./media/characters/atlas-morenai/back.svg",
  47143. extra: 1141/1001,
  47144. bottom: 25/1166
  47145. }
  47146. },
  47147. },
  47148. [
  47149. {
  47150. name: "Normal",
  47151. height: math.unit(1, "meter"),
  47152. default: true
  47153. },
  47154. {
  47155. name: "Magic-Infused",
  47156. height: math.unit(5, "meters")
  47157. },
  47158. ]
  47159. ))
  47160. characterMakers.push(() => makeCharacter(
  47161. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47162. {
  47163. front: {
  47164. height: math.unit(5, "meters"),
  47165. name: "Front",
  47166. image: {
  47167. source: "./media/characters/cintia/front.svg",
  47168. extra: 1312/1228,
  47169. bottom: 38/1350
  47170. }
  47171. },
  47172. back: {
  47173. height: math.unit(5, "meters"),
  47174. name: "Back",
  47175. image: {
  47176. source: "./media/characters/cintia/back.svg",
  47177. extra: 1260/1166,
  47178. bottom: 98/1358
  47179. }
  47180. },
  47181. frontDick: {
  47182. height: math.unit(5, "meters"),
  47183. name: "Front (Dick)",
  47184. image: {
  47185. source: "./media/characters/cintia/front-dick.svg",
  47186. extra: 1312/1228,
  47187. bottom: 38/1350
  47188. }
  47189. },
  47190. backDick: {
  47191. height: math.unit(5, "meters"),
  47192. name: "Back (Dick)",
  47193. image: {
  47194. source: "./media/characters/cintia/back-dick.svg",
  47195. extra: 1260/1166,
  47196. bottom: 98/1358
  47197. }
  47198. },
  47199. bust: {
  47200. height: math.unit(1.97, "meters"),
  47201. name: "Bust",
  47202. image: {
  47203. source: "./media/characters/cintia/bust.svg",
  47204. extra: 617/565,
  47205. bottom: 0/617
  47206. }
  47207. },
  47208. },
  47209. [
  47210. {
  47211. name: "Normal",
  47212. height: math.unit(5, "meters"),
  47213. default: true
  47214. },
  47215. ]
  47216. ))
  47217. characterMakers.push(() => makeCharacter(
  47218. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47219. {
  47220. side: {
  47221. height: math.unit(100, "feet"),
  47222. name: "Side",
  47223. image: {
  47224. source: "./media/characters/denora/side.svg",
  47225. extra: 875/803,
  47226. bottom: 9/884
  47227. }
  47228. },
  47229. },
  47230. [
  47231. {
  47232. name: "Standard",
  47233. height: math.unit(100, "feet"),
  47234. default: true
  47235. },
  47236. {
  47237. name: "Grand",
  47238. height: math.unit(1000, "feet")
  47239. },
  47240. {
  47241. name: "Conquering",
  47242. height: math.unit(10000, "feet")
  47243. },
  47244. ]
  47245. ))
  47246. characterMakers.push(() => makeCharacter(
  47247. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47248. {
  47249. dressed: {
  47250. height: math.unit(8 + 5/12, "feet"),
  47251. weight: math.unit(700, "lb"),
  47252. name: "Dressed",
  47253. image: {
  47254. source: "./media/characters/kiva/dressed.svg",
  47255. extra: 1102/1055,
  47256. bottom: 60/1162
  47257. }
  47258. },
  47259. nude: {
  47260. height: math.unit(8 + 5/12, "feet"),
  47261. weight: math.unit(700, "lb"),
  47262. name: "Nude",
  47263. image: {
  47264. source: "./media/characters/kiva/nude.svg",
  47265. extra: 1102/1055,
  47266. bottom: 60/1162
  47267. }
  47268. },
  47269. },
  47270. [
  47271. {
  47272. name: "Base Height",
  47273. height: math.unit(8 + 5/12, "feet"),
  47274. default: true
  47275. },
  47276. {
  47277. name: "Macro",
  47278. height: math.unit(100, "feet")
  47279. },
  47280. {
  47281. name: "Max",
  47282. height: math.unit(3280, "feet")
  47283. },
  47284. ]
  47285. ))
  47286. characterMakers.push(() => makeCharacter(
  47287. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47288. {
  47289. front: {
  47290. height: math.unit(6 + 8/12, "feet"),
  47291. weight: math.unit(250, "lb"),
  47292. name: "Front",
  47293. image: {
  47294. source: "./media/characters/ztragon/front.svg",
  47295. extra: 1825/1684,
  47296. bottom: 98/1923
  47297. }
  47298. },
  47299. },
  47300. [
  47301. {
  47302. name: "Normal",
  47303. height: math.unit(6 + 8/12, "feet"),
  47304. default: true
  47305. },
  47306. {
  47307. name: "Macro",
  47308. height: math.unit(80, "feet")
  47309. },
  47310. ]
  47311. ))
  47312. characterMakers.push(() => makeCharacter(
  47313. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47314. {
  47315. front: {
  47316. height: math.unit(10.4, "feet"),
  47317. weight: math.unit(2, "tons"),
  47318. name: "Front",
  47319. image: {
  47320. source: "./media/characters/yesenia/front.svg",
  47321. extra: 1479/1474,
  47322. bottom: 233/1712
  47323. }
  47324. },
  47325. },
  47326. [
  47327. {
  47328. name: "Normal",
  47329. height: math.unit(10.4, "feet"),
  47330. default: true
  47331. },
  47332. ]
  47333. ))
  47334. characterMakers.push(() => makeCharacter(
  47335. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47336. {
  47337. normal: {
  47338. height: math.unit(6 + 1/12, "feet"),
  47339. weight: math.unit(180, "lb"),
  47340. name: "Normal",
  47341. image: {
  47342. source: "./media/characters/leanne-lycheborne/normal.svg",
  47343. extra: 1748/1660,
  47344. bottom: 98/1846
  47345. }
  47346. },
  47347. were: {
  47348. height: math.unit(12, "feet"),
  47349. weight: math.unit(1600, "lb"),
  47350. name: "Were",
  47351. image: {
  47352. source: "./media/characters/leanne-lycheborne/were.svg",
  47353. extra: 1485/1432,
  47354. bottom: 66/1551
  47355. }
  47356. },
  47357. },
  47358. [
  47359. {
  47360. name: "Normal",
  47361. height: math.unit(6 + 1/12, "feet"),
  47362. default: true
  47363. },
  47364. ]
  47365. ))
  47366. characterMakers.push(() => makeCharacter(
  47367. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47368. {
  47369. side: {
  47370. height: math.unit(13, "feet"),
  47371. name: "Side",
  47372. image: {
  47373. source: "./media/characters/kira-tyler/side.svg",
  47374. extra: 693/393,
  47375. bottom: 58/751
  47376. }
  47377. },
  47378. },
  47379. [
  47380. {
  47381. name: "Normal",
  47382. height: math.unit(13, "feet"),
  47383. default: true
  47384. },
  47385. ]
  47386. ))
  47387. characterMakers.push(() => makeCharacter(
  47388. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47389. {
  47390. front: {
  47391. height: math.unit(10.3, "feet"),
  47392. weight: math.unit(150, "lb"),
  47393. name: "Front",
  47394. image: {
  47395. source: "./media/characters/blaze/front.svg",
  47396. extra: 1378/1286,
  47397. bottom: 172/1550
  47398. }
  47399. },
  47400. },
  47401. [
  47402. {
  47403. name: "Normal",
  47404. height: math.unit(10.3, "feet"),
  47405. default: true
  47406. },
  47407. ]
  47408. ))
  47409. characterMakers.push(() => makeCharacter(
  47410. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47411. {
  47412. side: {
  47413. height: math.unit(2, "meters"),
  47414. weight: math.unit(400, "kg"),
  47415. name: "Side",
  47416. image: {
  47417. source: "./media/characters/anu/side.svg",
  47418. extra: 506/394,
  47419. bottom: 18/524
  47420. }
  47421. },
  47422. },
  47423. [
  47424. {
  47425. name: "Humanoid",
  47426. height: math.unit(2, "meters")
  47427. },
  47428. {
  47429. name: "Normal",
  47430. height: math.unit(5, "meters"),
  47431. default: true
  47432. },
  47433. ]
  47434. ))
  47435. characterMakers.push(() => makeCharacter(
  47436. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47437. {
  47438. front: {
  47439. height: math.unit(5 + 5/12, "feet"),
  47440. weight: math.unit(170, "lb"),
  47441. name: "Front",
  47442. image: {
  47443. source: "./media/characters/synx-the-lynx/front.svg",
  47444. extra: 1893/1745,
  47445. bottom: 17/1910
  47446. }
  47447. },
  47448. side: {
  47449. height: math.unit(5 + 5/12, "feet"),
  47450. weight: math.unit(170, "lb"),
  47451. name: "Side",
  47452. image: {
  47453. source: "./media/characters/synx-the-lynx/side.svg",
  47454. extra: 1884/1740,
  47455. bottom: 39/1923
  47456. }
  47457. },
  47458. back: {
  47459. height: math.unit(5 + 5/12, "feet"),
  47460. weight: math.unit(170, "lb"),
  47461. name: "Back",
  47462. image: {
  47463. source: "./media/characters/synx-the-lynx/back.svg",
  47464. extra: 1903/1755,
  47465. bottom: 14/1917
  47466. }
  47467. },
  47468. },
  47469. [
  47470. {
  47471. name: "Normal",
  47472. height: math.unit(5 + 5/12, "feet"),
  47473. default: true
  47474. },
  47475. ]
  47476. ))
  47477. characterMakers.push(() => makeCharacter(
  47478. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47479. {
  47480. back: {
  47481. height: math.unit(15, "feet"),
  47482. name: "Back",
  47483. image: {
  47484. source: "./media/characters/nadezda-fex/back.svg",
  47485. extra: 1695/1481,
  47486. bottom: 25/1720
  47487. }
  47488. },
  47489. },
  47490. [
  47491. {
  47492. name: "Normal",
  47493. height: math.unit(15, "feet"),
  47494. default: true
  47495. },
  47496. {
  47497. name: "Macro",
  47498. height: math.unit(2.5, "miles")
  47499. },
  47500. {
  47501. name: "Goddess",
  47502. height: math.unit(2, "multiverses")
  47503. },
  47504. ]
  47505. ))
  47506. characterMakers.push(() => makeCharacter(
  47507. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47508. {
  47509. front: {
  47510. height: math.unit(216, "cm"),
  47511. name: "Front",
  47512. image: {
  47513. source: "./media/characters/lev/front.svg",
  47514. extra: 1728/1670,
  47515. bottom: 82/1810
  47516. }
  47517. },
  47518. back: {
  47519. height: math.unit(216, "cm"),
  47520. name: "Back",
  47521. image: {
  47522. source: "./media/characters/lev/back.svg",
  47523. extra: 1738/1675,
  47524. bottom: 24/1762
  47525. }
  47526. },
  47527. dressed: {
  47528. height: math.unit(216, "cm"),
  47529. name: "Dressed",
  47530. image: {
  47531. source: "./media/characters/lev/dressed.svg",
  47532. extra: 1397/1351,
  47533. bottom: 73/1470
  47534. }
  47535. },
  47536. head: {
  47537. height: math.unit(0.51, "meter"),
  47538. name: "Head",
  47539. image: {
  47540. source: "./media/characters/lev/head.svg"
  47541. }
  47542. },
  47543. },
  47544. [
  47545. {
  47546. name: "Normal",
  47547. height: math.unit(216, "cm"),
  47548. default: true
  47549. },
  47550. {
  47551. name: "Relatively Macro",
  47552. height: math.unit(80, "meters")
  47553. },
  47554. {
  47555. name: "Megamacro",
  47556. height: math.unit(21600, "meters")
  47557. },
  47558. {
  47559. name: "Megamacro+",
  47560. height: math.unit(64800, "meters")
  47561. },
  47562. ]
  47563. ))
  47564. characterMakers.push(() => makeCharacter(
  47565. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47566. {
  47567. front: {
  47568. height: math.unit(2, "meters"),
  47569. weight: math.unit(80, "kg"),
  47570. name: "Front",
  47571. image: {
  47572. source: "./media/characters/moka/front.svg",
  47573. extra: 1337/1255,
  47574. bottom: 58/1395
  47575. }
  47576. },
  47577. },
  47578. [
  47579. {
  47580. name: "Micro",
  47581. height: math.unit(15, "cm")
  47582. },
  47583. {
  47584. name: "Normal",
  47585. height: math.unit(2, "meters"),
  47586. default: true
  47587. },
  47588. {
  47589. name: "Macro",
  47590. height: math.unit(20, "meters"),
  47591. },
  47592. ]
  47593. ))
  47594. characterMakers.push(() => makeCharacter(
  47595. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47596. {
  47597. front: {
  47598. height: math.unit(9, "feet"),
  47599. weight: math.unit(240, "lb"),
  47600. name: "Front",
  47601. image: {
  47602. source: "./media/characters/kuzco/front.svg",
  47603. extra: 1593/1487,
  47604. bottom: 32/1625
  47605. }
  47606. },
  47607. side: {
  47608. height: math.unit(9, "feet"),
  47609. weight: math.unit(240, "lb"),
  47610. name: "Side",
  47611. image: {
  47612. source: "./media/characters/kuzco/side.svg",
  47613. extra: 1575/1485,
  47614. bottom: 30/1605
  47615. }
  47616. },
  47617. back: {
  47618. height: math.unit(9, "feet"),
  47619. weight: math.unit(240, "lb"),
  47620. name: "Back",
  47621. image: {
  47622. source: "./media/characters/kuzco/back.svg",
  47623. extra: 1603/1514,
  47624. bottom: 14/1617
  47625. }
  47626. },
  47627. },
  47628. [
  47629. {
  47630. name: "Normal",
  47631. height: math.unit(9, "feet"),
  47632. default: true
  47633. },
  47634. ]
  47635. ))
  47636. characterMakers.push(() => makeCharacter(
  47637. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47638. {
  47639. side: {
  47640. height: math.unit(2, "meters"),
  47641. weight: math.unit(300, "kg"),
  47642. name: "Side",
  47643. image: {
  47644. source: "./media/characters/ceruleus/side.svg",
  47645. extra: 1068/974,
  47646. bottom: 126/1194
  47647. }
  47648. },
  47649. maw: {
  47650. height: math.unit(0.8125, "meter"),
  47651. name: "Maw",
  47652. image: {
  47653. source: "./media/characters/ceruleus/maw.svg"
  47654. }
  47655. },
  47656. },
  47657. [
  47658. {
  47659. name: "Normal",
  47660. height: math.unit(16, "meters"),
  47661. default: true
  47662. },
  47663. ]
  47664. ))
  47665. characterMakers.push(() => makeCharacter(
  47666. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47667. {
  47668. front: {
  47669. height: math.unit(9, "feet"),
  47670. weight: math.unit(500, "kg"),
  47671. name: "Front",
  47672. image: {
  47673. source: "./media/characters/acouya/front.svg",
  47674. extra: 1660/1473,
  47675. bottom: 28/1688
  47676. }
  47677. },
  47678. },
  47679. [
  47680. {
  47681. name: "Normal",
  47682. height: math.unit(9, "feet"),
  47683. default: true
  47684. },
  47685. ]
  47686. ))
  47687. characterMakers.push(() => makeCharacter(
  47688. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47689. {
  47690. front: {
  47691. height: math.unit(5 + 6/12, "feet"),
  47692. weight: math.unit(195, "lb"),
  47693. name: "Front",
  47694. image: {
  47695. source: "./media/characters/vant/front.svg",
  47696. extra: 1396/1320,
  47697. bottom: 20/1416
  47698. }
  47699. },
  47700. back: {
  47701. height: math.unit(5 + 6/12, "feet"),
  47702. weight: math.unit(195, "lb"),
  47703. name: "Back",
  47704. image: {
  47705. source: "./media/characters/vant/back.svg",
  47706. extra: 1396/1320,
  47707. bottom: 20/1416
  47708. }
  47709. },
  47710. maw: {
  47711. height: math.unit(0.75, "feet"),
  47712. name: "Maw",
  47713. image: {
  47714. source: "./media/characters/vant/maw.svg"
  47715. }
  47716. },
  47717. paw: {
  47718. height: math.unit(1.07, "feet"),
  47719. name: "Paw",
  47720. image: {
  47721. source: "./media/characters/vant/paw.svg"
  47722. }
  47723. },
  47724. },
  47725. [
  47726. {
  47727. name: "Micro",
  47728. height: math.unit(0.25, "inches")
  47729. },
  47730. {
  47731. name: "Normal",
  47732. height: math.unit(5 + 6/12, "feet"),
  47733. default: true
  47734. },
  47735. {
  47736. name: "Macro",
  47737. height: math.unit(75, "feet")
  47738. },
  47739. ]
  47740. ))
  47741. characterMakers.push(() => makeCharacter(
  47742. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47743. {
  47744. front: {
  47745. height: math.unit(30, "meters"),
  47746. weight: math.unit(363, "tons"),
  47747. name: "Front",
  47748. image: {
  47749. source: "./media/characters/ahra/front.svg",
  47750. extra: 1914/1814,
  47751. bottom: 46/1960
  47752. }
  47753. },
  47754. },
  47755. [
  47756. {
  47757. name: "Macro",
  47758. height: math.unit(30, "meters"),
  47759. default: true
  47760. },
  47761. ]
  47762. ))
  47763. characterMakers.push(() => makeCharacter(
  47764. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47765. {
  47766. undressed: {
  47767. height: math.unit(2, "m"),
  47768. weight: math.unit(250, "kg"),
  47769. name: "Undressed",
  47770. image: {
  47771. source: "./media/characters/coriander/undressed.svg",
  47772. extra: 1757/1606,
  47773. bottom: 107/1864
  47774. }
  47775. },
  47776. dressed: {
  47777. height: math.unit(2, "m"),
  47778. weight: math.unit(250, "kg"),
  47779. name: "Dressed",
  47780. image: {
  47781. source: "./media/characters/coriander/dressed.svg",
  47782. extra: 1757/1606,
  47783. bottom: 107/1864
  47784. }
  47785. },
  47786. },
  47787. [
  47788. {
  47789. name: "Normal",
  47790. height: math.unit(4, "meters"),
  47791. default: true
  47792. },
  47793. {
  47794. name: "XL",
  47795. height: math.unit(6, "meters")
  47796. },
  47797. {
  47798. name: "XXL",
  47799. height: math.unit(8, "meters")
  47800. },
  47801. ]
  47802. ))
  47803. characterMakers.push(() => makeCharacter(
  47804. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47805. {
  47806. front: {
  47807. height: math.unit(6, "feet"),
  47808. name: "Front",
  47809. image: {
  47810. source: "./media/characters/syrinx/front.svg",
  47811. extra: 1557/1259,
  47812. bottom: 171/1728
  47813. }
  47814. },
  47815. },
  47816. [
  47817. {
  47818. name: "Normal",
  47819. height: math.unit(6 + 3/12, "feet"),
  47820. default: true
  47821. },
  47822. ]
  47823. ))
  47824. characterMakers.push(() => makeCharacter(
  47825. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47826. {
  47827. front: {
  47828. height: math.unit(11 + 6/12, "feet"),
  47829. weight: math.unit(1.5, "tons"),
  47830. name: "Front",
  47831. image: {
  47832. source: "./media/characters/bor/front.svg",
  47833. extra: 1189/1109,
  47834. bottom: 170/1359
  47835. }
  47836. },
  47837. },
  47838. [
  47839. {
  47840. name: "Normal",
  47841. height: math.unit(11 + 6/12, "feet"),
  47842. default: true
  47843. },
  47844. {
  47845. name: "Macro",
  47846. height: math.unit(32 + 9/12, "feet")
  47847. },
  47848. ]
  47849. ))
  47850. characterMakers.push(() => makeCharacter(
  47851. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47852. {
  47853. anthro: {
  47854. height: math.unit(9, "feet"),
  47855. weight: math.unit(2076, "lb"),
  47856. name: "Anthro",
  47857. image: {
  47858. source: "./media/characters/abacus/anthro.svg",
  47859. extra: 1540/1494,
  47860. bottom: 233/1773
  47861. }
  47862. },
  47863. pigeon: {
  47864. height: math.unit(1, "feet"),
  47865. name: "Pigeon",
  47866. image: {
  47867. source: "./media/characters/abacus/pigeon.svg",
  47868. extra: 528/525,
  47869. bottom: 46/574
  47870. }
  47871. },
  47872. },
  47873. [
  47874. {
  47875. name: "Normal",
  47876. height: math.unit(9, "feet"),
  47877. default: true
  47878. },
  47879. ]
  47880. ))
  47881. characterMakers.push(() => makeCharacter(
  47882. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47883. {
  47884. side: {
  47885. height: math.unit(6, "feet"),
  47886. name: "Side",
  47887. image: {
  47888. source: "./media/characters/delkhan/side.svg",
  47889. extra: 1884/1786,
  47890. bottom: 308/2192
  47891. }
  47892. },
  47893. head: {
  47894. height: math.unit(3.38, "feet"),
  47895. name: "Head",
  47896. image: {
  47897. source: "./media/characters/delkhan/head.svg"
  47898. }
  47899. },
  47900. },
  47901. [
  47902. {
  47903. name: "Normal",
  47904. height: math.unit(72, "feet"),
  47905. default: true
  47906. },
  47907. {
  47908. name: "Giant",
  47909. height: math.unit(172, "feet")
  47910. },
  47911. ]
  47912. ))
  47913. characterMakers.push(() => makeCharacter(
  47914. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47915. {
  47916. standing: {
  47917. height: math.unit(6, "feet"),
  47918. name: "Standing",
  47919. image: {
  47920. source: "./media/characters/euchidat/standing.svg",
  47921. extra: 1612/1553,
  47922. bottom: 116/1728
  47923. }
  47924. },
  47925. leaning: {
  47926. height: math.unit(6, "feet"),
  47927. name: "Leaning",
  47928. image: {
  47929. source: "./media/characters/euchidat/leaning.svg",
  47930. extra: 1719/1674,
  47931. bottom: 27/1746
  47932. }
  47933. },
  47934. },
  47935. [
  47936. {
  47937. name: "Normal",
  47938. height: math.unit(175, "feet"),
  47939. default: true
  47940. },
  47941. {
  47942. name: "Megamacro",
  47943. height: math.unit(190, "miles")
  47944. },
  47945. {
  47946. name: "Gigamacro",
  47947. height: math.unit(190000, "miles")
  47948. },
  47949. ]
  47950. ))
  47951. characterMakers.push(() => makeCharacter(
  47952. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47953. {
  47954. front: {
  47955. height: math.unit(6, "feet"),
  47956. weight: math.unit(150, "lb"),
  47957. name: "Front",
  47958. image: {
  47959. source: "./media/characters/rebecca-stack/front.svg",
  47960. extra: 1256/1201,
  47961. bottom: 18/1274
  47962. }
  47963. },
  47964. },
  47965. [
  47966. {
  47967. name: "Normal",
  47968. height: math.unit(5 + 8/12, "feet"),
  47969. default: true
  47970. },
  47971. {
  47972. name: "Demolitionist",
  47973. height: math.unit(200, "feet")
  47974. },
  47975. {
  47976. name: "Out of Control",
  47977. height: math.unit(2, "miles")
  47978. },
  47979. {
  47980. name: "Giga",
  47981. height: math.unit(7200, "miles")
  47982. },
  47983. ]
  47984. ))
  47985. characterMakers.push(() => makeCharacter(
  47986. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47987. {
  47988. front: {
  47989. height: math.unit(6, "feet"),
  47990. weight: math.unit(150, "lb"),
  47991. name: "Front",
  47992. image: {
  47993. source: "./media/characters/jenny-cartwright/front.svg",
  47994. extra: 1384/1376,
  47995. bottom: 58/1442
  47996. }
  47997. },
  47998. },
  47999. [
  48000. {
  48001. name: "Normal",
  48002. height: math.unit(6 + 7/12, "feet"),
  48003. default: true
  48004. },
  48005. {
  48006. name: "Librarian",
  48007. height: math.unit(55, "feet")
  48008. },
  48009. {
  48010. name: "Sightseer",
  48011. height: math.unit(50, "miles")
  48012. },
  48013. {
  48014. name: "Giga",
  48015. height: math.unit(30000, "miles")
  48016. },
  48017. ]
  48018. ))
  48019. characterMakers.push(() => makeCharacter(
  48020. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48021. {
  48022. nude: {
  48023. height: math.unit(8, "feet"),
  48024. weight: math.unit(225, "lb"),
  48025. name: "Nude",
  48026. image: {
  48027. source: "./media/characters/marvy/nude.svg",
  48028. extra: 1900/1683,
  48029. bottom: 89/1989
  48030. }
  48031. },
  48032. dressed: {
  48033. height: math.unit(8, "feet"),
  48034. weight: math.unit(225, "lb"),
  48035. name: "Dressed",
  48036. image: {
  48037. source: "./media/characters/marvy/dressed.svg",
  48038. extra: 1900/1683,
  48039. bottom: 89/1989
  48040. }
  48041. },
  48042. head: {
  48043. height: math.unit(2.85, "feet"),
  48044. name: "Head",
  48045. image: {
  48046. source: "./media/characters/marvy/head.svg"
  48047. }
  48048. },
  48049. },
  48050. [
  48051. {
  48052. name: "Normal",
  48053. height: math.unit(8, "feet"),
  48054. default: true
  48055. },
  48056. ]
  48057. ))
  48058. characterMakers.push(() => makeCharacter(
  48059. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48060. {
  48061. front: {
  48062. height: math.unit(8, "feet"),
  48063. weight: math.unit(250, "lb"),
  48064. name: "Front",
  48065. image: {
  48066. source: "./media/characters/leah/front.svg",
  48067. extra: 1257/1149,
  48068. bottom: 109/1366
  48069. }
  48070. },
  48071. },
  48072. [
  48073. {
  48074. name: "Normal",
  48075. height: math.unit(8, "feet"),
  48076. default: true
  48077. },
  48078. {
  48079. name: "Minimacro",
  48080. height: math.unit(40, "feet")
  48081. },
  48082. {
  48083. name: "Macro",
  48084. height: math.unit(124, "feet")
  48085. },
  48086. {
  48087. name: "Megamacro",
  48088. height: math.unit(850, "feet")
  48089. },
  48090. ]
  48091. ))
  48092. characterMakers.push(() => makeCharacter(
  48093. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48094. {
  48095. side: {
  48096. height: math.unit(13 + 6/12, "feet"),
  48097. weight: math.unit(3200, "lb"),
  48098. name: "Side",
  48099. image: {
  48100. source: "./media/characters/alvir/side.svg",
  48101. extra: 896/589,
  48102. bottom: 26/922
  48103. }
  48104. },
  48105. },
  48106. [
  48107. {
  48108. name: "Normal",
  48109. height: math.unit(13 + 6/12, "feet"),
  48110. default: true
  48111. },
  48112. ]
  48113. ))
  48114. characterMakers.push(() => makeCharacter(
  48115. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48116. {
  48117. front: {
  48118. height: math.unit(5 + 4/12, "feet"),
  48119. weight: math.unit(236, "lb"),
  48120. name: "Front",
  48121. image: {
  48122. source: "./media/characters/zaina-khalil/front.svg",
  48123. extra: 1533/1485,
  48124. bottom: 94/1627
  48125. }
  48126. },
  48127. side: {
  48128. height: math.unit(5 + 4/12, "feet"),
  48129. weight: math.unit(236, "lb"),
  48130. name: "Side",
  48131. image: {
  48132. source: "./media/characters/zaina-khalil/side.svg",
  48133. extra: 1537/1498,
  48134. bottom: 66/1603
  48135. }
  48136. },
  48137. back: {
  48138. height: math.unit(5 + 4/12, "feet"),
  48139. weight: math.unit(236, "lb"),
  48140. name: "Back",
  48141. image: {
  48142. source: "./media/characters/zaina-khalil/back.svg",
  48143. extra: 1546/1494,
  48144. bottom: 89/1635
  48145. }
  48146. },
  48147. },
  48148. [
  48149. {
  48150. name: "Normal",
  48151. height: math.unit(5 + 4/12, "feet"),
  48152. default: true
  48153. },
  48154. ]
  48155. ))
  48156. characterMakers.push(() => makeCharacter(
  48157. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48158. {
  48159. side: {
  48160. height: math.unit(12, "feet"),
  48161. weight: math.unit(4000, "lb"),
  48162. name: "Side",
  48163. image: {
  48164. source: "./media/characters/terry/side.svg",
  48165. extra: 1518/1439,
  48166. bottom: 149/1667
  48167. }
  48168. },
  48169. },
  48170. [
  48171. {
  48172. name: "Normal",
  48173. height: math.unit(12, "feet"),
  48174. default: true
  48175. },
  48176. ]
  48177. ))
  48178. characterMakers.push(() => makeCharacter(
  48179. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48180. {
  48181. front: {
  48182. height: math.unit(12, "feet"),
  48183. weight: math.unit(1500, "lb"),
  48184. name: "Front",
  48185. image: {
  48186. source: "./media/characters/kahea/front.svg",
  48187. extra: 1722/1617,
  48188. bottom: 179/1901
  48189. }
  48190. },
  48191. },
  48192. [
  48193. {
  48194. name: "Normal",
  48195. height: math.unit(12, "feet"),
  48196. default: true
  48197. },
  48198. ]
  48199. ))
  48200. characterMakers.push(() => makeCharacter(
  48201. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48202. {
  48203. demonFront: {
  48204. height: math.unit(36, "feet"),
  48205. name: "Front",
  48206. image: {
  48207. source: "./media/characters/alex-xuria/demon-front.svg",
  48208. extra: 1705/1673,
  48209. bottom: 198/1903
  48210. },
  48211. form: "demon",
  48212. default: true
  48213. },
  48214. demonBack: {
  48215. height: math.unit(36, "feet"),
  48216. name: "Back",
  48217. image: {
  48218. source: "./media/characters/alex-xuria/demon-back.svg",
  48219. extra: 1725/1693,
  48220. bottom: 70/1795
  48221. },
  48222. form: "demon"
  48223. },
  48224. demonHead: {
  48225. height: math.unit(2.14, "meters"),
  48226. name: "Head",
  48227. image: {
  48228. source: "./media/characters/alex-xuria/demon-head.svg"
  48229. },
  48230. form: "demon"
  48231. },
  48232. demonHand: {
  48233. height: math.unit(1.61, "meters"),
  48234. name: "Hand",
  48235. image: {
  48236. source: "./media/characters/alex-xuria/demon-hand.svg"
  48237. },
  48238. form: "demon"
  48239. },
  48240. demonPaw: {
  48241. height: math.unit(1.35, "meters"),
  48242. name: "Paw",
  48243. image: {
  48244. source: "./media/characters/alex-xuria/demon-paw.svg"
  48245. },
  48246. form: "demon"
  48247. },
  48248. demonFoot: {
  48249. height: math.unit(2.2, "meters"),
  48250. name: "Foot",
  48251. image: {
  48252. source: "./media/characters/alex-xuria/demon-foot.svg"
  48253. },
  48254. form: "demon"
  48255. },
  48256. demonCock: {
  48257. height: math.unit(1.74, "meters"),
  48258. name: "Cock",
  48259. image: {
  48260. source: "./media/characters/alex-xuria/demon-cock.svg"
  48261. },
  48262. form: "demon"
  48263. },
  48264. demonTailClosed: {
  48265. height: math.unit(1.47, "meters"),
  48266. name: "Tail (Closed)",
  48267. image: {
  48268. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48269. },
  48270. form: "demon"
  48271. },
  48272. demonTailOpen: {
  48273. height: math.unit(2.85, "meters"),
  48274. name: "Tail (Open)",
  48275. image: {
  48276. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48277. },
  48278. form: "demon"
  48279. },
  48280. incubusFront: {
  48281. height: math.unit(12, "feet"),
  48282. name: "Front",
  48283. image: {
  48284. source: "./media/characters/alex-xuria/incubus-front.svg",
  48285. extra: 1754/1677,
  48286. bottom: 125/1879
  48287. },
  48288. form: "incubus",
  48289. default: true
  48290. },
  48291. incubusBack: {
  48292. height: math.unit(12, "feet"),
  48293. name: "Back",
  48294. image: {
  48295. source: "./media/characters/alex-xuria/incubus-back.svg",
  48296. extra: 1702/1647,
  48297. bottom: 30/1732
  48298. },
  48299. form: "incubus"
  48300. },
  48301. incubusHead: {
  48302. height: math.unit(3.45, "feet"),
  48303. name: "Head",
  48304. image: {
  48305. source: "./media/characters/alex-xuria/incubus-head.svg"
  48306. },
  48307. form: "incubus"
  48308. },
  48309. rabbitFront: {
  48310. height: math.unit(6, "feet"),
  48311. name: "Front",
  48312. image: {
  48313. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48314. extra: 1369/1349,
  48315. bottom: 45/1414
  48316. },
  48317. form: "rabbit",
  48318. default: true
  48319. },
  48320. rabbitSide: {
  48321. height: math.unit(6, "feet"),
  48322. name: "Side",
  48323. image: {
  48324. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48325. extra: 1370/1356,
  48326. bottom: 37/1407
  48327. },
  48328. form: "rabbit"
  48329. },
  48330. rabbitBack: {
  48331. height: math.unit(6, "feet"),
  48332. name: "Back",
  48333. image: {
  48334. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48335. extra: 1375/1358,
  48336. bottom: 43/1418
  48337. },
  48338. form: "rabbit"
  48339. },
  48340. },
  48341. [
  48342. {
  48343. name: "Normal",
  48344. height: math.unit(6, "feet"),
  48345. default: true,
  48346. form: "rabbit"
  48347. },
  48348. {
  48349. name: "Incubus",
  48350. height: math.unit(12, "feet"),
  48351. default: true,
  48352. form: "incubus"
  48353. },
  48354. {
  48355. name: "Demon",
  48356. height: math.unit(36, "feet"),
  48357. default: true,
  48358. form: "demon"
  48359. }
  48360. ],
  48361. {
  48362. "demon": {
  48363. name: "Demon",
  48364. default: true
  48365. },
  48366. "incubus": {
  48367. name: "Incubus",
  48368. },
  48369. "rabbit": {
  48370. name: "Rabbit"
  48371. }
  48372. }
  48373. ))
  48374. characterMakers.push(() => makeCharacter(
  48375. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48376. {
  48377. front: {
  48378. height: math.unit(7 + 5/12, "feet"),
  48379. weight: math.unit(510, "lb"),
  48380. name: "Front",
  48381. image: {
  48382. source: "./media/characters/syrup/front.svg",
  48383. extra: 932/916,
  48384. bottom: 26/958
  48385. }
  48386. },
  48387. },
  48388. [
  48389. {
  48390. name: "Normal",
  48391. height: math.unit(7 + 5/12, "feet"),
  48392. default: true
  48393. },
  48394. {
  48395. name: "Big",
  48396. height: math.unit(50, "feet")
  48397. },
  48398. {
  48399. name: "Macro",
  48400. height: math.unit(300, "feet")
  48401. },
  48402. {
  48403. name: "Megamacro",
  48404. height: math.unit(1, "mile")
  48405. },
  48406. ]
  48407. ))
  48408. characterMakers.push(() => makeCharacter(
  48409. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48410. {
  48411. front: {
  48412. height: math.unit(6 + 9/12, "feet"),
  48413. name: "Front",
  48414. image: {
  48415. source: "./media/characters/zeimne/front.svg",
  48416. extra: 1969/1806,
  48417. bottom: 53/2022
  48418. }
  48419. },
  48420. },
  48421. [
  48422. {
  48423. name: "Normal",
  48424. height: math.unit(6 + 9/12, "feet"),
  48425. default: true
  48426. },
  48427. {
  48428. name: "Giant",
  48429. height: math.unit(550, "feet")
  48430. },
  48431. {
  48432. name: "Mega",
  48433. height: math.unit(3, "miles")
  48434. },
  48435. {
  48436. name: "Giga",
  48437. height: math.unit(250, "miles")
  48438. },
  48439. {
  48440. name: "Tera",
  48441. height: math.unit(1, "AU")
  48442. },
  48443. ]
  48444. ))
  48445. characterMakers.push(() => makeCharacter(
  48446. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48447. {
  48448. front: {
  48449. height: math.unit(5 + 2/12, "feet"),
  48450. name: "Front",
  48451. image: {
  48452. source: "./media/characters/grar/front.svg",
  48453. extra: 1331/1119,
  48454. bottom: 60/1391
  48455. }
  48456. },
  48457. back: {
  48458. height: math.unit(5 + 2/12, "feet"),
  48459. name: "Back",
  48460. image: {
  48461. source: "./media/characters/grar/back.svg",
  48462. extra: 1385/1169,
  48463. bottom: 23/1408
  48464. }
  48465. },
  48466. },
  48467. [
  48468. {
  48469. name: "Normal",
  48470. height: math.unit(5 + 2/12, "feet"),
  48471. default: true
  48472. },
  48473. ]
  48474. ))
  48475. characterMakers.push(() => makeCharacter(
  48476. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48477. {
  48478. front: {
  48479. height: math.unit(13 + 7/12, "feet"),
  48480. weight: math.unit(2200, "lb"),
  48481. name: "Front",
  48482. image: {
  48483. source: "./media/characters/endraya/front.svg",
  48484. extra: 1289/1215,
  48485. bottom: 50/1339
  48486. }
  48487. },
  48488. nude: {
  48489. height: math.unit(13 + 7/12, "feet"),
  48490. weight: math.unit(2200, "lb"),
  48491. name: "Nude",
  48492. image: {
  48493. source: "./media/characters/endraya/nude.svg",
  48494. extra: 1247/1171,
  48495. bottom: 40/1287
  48496. }
  48497. },
  48498. head: {
  48499. height: math.unit(2.6, "feet"),
  48500. name: "Head",
  48501. image: {
  48502. source: "./media/characters/endraya/head.svg"
  48503. }
  48504. },
  48505. slit: {
  48506. height: math.unit(3.4, "feet"),
  48507. name: "Slit",
  48508. image: {
  48509. source: "./media/characters/endraya/slit.svg"
  48510. }
  48511. },
  48512. },
  48513. [
  48514. {
  48515. name: "Normal",
  48516. height: math.unit(13 + 7/12, "feet"),
  48517. default: true
  48518. },
  48519. {
  48520. name: "Macro",
  48521. height: math.unit(200, "feet")
  48522. },
  48523. ]
  48524. ))
  48525. characterMakers.push(() => makeCharacter(
  48526. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48527. {
  48528. front: {
  48529. height: math.unit(1.81, "meters"),
  48530. weight: math.unit(69, "kg"),
  48531. name: "Front",
  48532. image: {
  48533. source: "./media/characters/rodryana/front.svg",
  48534. extra: 2002/1921,
  48535. bottom: 53/2055
  48536. }
  48537. },
  48538. back: {
  48539. height: math.unit(1.81, "meters"),
  48540. weight: math.unit(69, "kg"),
  48541. name: "Back",
  48542. image: {
  48543. source: "./media/characters/rodryana/back.svg",
  48544. extra: 1993/1926,
  48545. bottom: 48/2041
  48546. }
  48547. },
  48548. maw: {
  48549. height: math.unit(0.19769417475, "meters"),
  48550. name: "Maw",
  48551. image: {
  48552. source: "./media/characters/rodryana/maw.svg"
  48553. }
  48554. },
  48555. slit: {
  48556. height: math.unit(0.31631067961, "meters"),
  48557. name: "Slit",
  48558. image: {
  48559. source: "./media/characters/rodryana/slit.svg"
  48560. }
  48561. },
  48562. },
  48563. [
  48564. {
  48565. name: "Normal",
  48566. height: math.unit(1.81, "meters")
  48567. },
  48568. {
  48569. name: "Mini Macro",
  48570. height: math.unit(181, "meters")
  48571. },
  48572. {
  48573. name: "Macro",
  48574. height: math.unit(452, "meters"),
  48575. default: true
  48576. },
  48577. {
  48578. name: "Mega Macro",
  48579. height: math.unit(1.375, "km")
  48580. },
  48581. {
  48582. name: "Giga Macro",
  48583. height: math.unit(13.575, "km")
  48584. },
  48585. ]
  48586. ))
  48587. characterMakers.push(() => makeCharacter(
  48588. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48589. {
  48590. front: {
  48591. height: math.unit(6, "feet"),
  48592. weight: math.unit(1000, "lb"),
  48593. name: "Front",
  48594. image: {
  48595. source: "./media/characters/asaya/front.svg",
  48596. extra: 1460/1200,
  48597. bottom: 71/1531
  48598. }
  48599. },
  48600. },
  48601. [
  48602. {
  48603. name: "Normal",
  48604. height: math.unit(8, "km"),
  48605. default: true
  48606. },
  48607. ]
  48608. ))
  48609. characterMakers.push(() => makeCharacter(
  48610. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48611. {
  48612. front: {
  48613. height: math.unit(3.5, "meters"),
  48614. name: "Front",
  48615. image: {
  48616. source: "./media/characters/sarzu-and-israz/front.svg",
  48617. extra: 1570/1558,
  48618. bottom: 150/1720
  48619. },
  48620. },
  48621. back: {
  48622. height: math.unit(3.5, "meters"),
  48623. name: "Back",
  48624. image: {
  48625. source: "./media/characters/sarzu-and-israz/back.svg",
  48626. extra: 1523/1509,
  48627. bottom: 132/1655
  48628. },
  48629. },
  48630. frontFemale: {
  48631. height: math.unit(3.5, "meters"),
  48632. name: "Front (Female)",
  48633. image: {
  48634. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48635. extra: 1570/1558,
  48636. bottom: 150/1720
  48637. },
  48638. },
  48639. frontHerm: {
  48640. height: math.unit(3.5, "meters"),
  48641. name: "Front (Herm)",
  48642. image: {
  48643. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48644. extra: 1570/1558,
  48645. bottom: 150/1720
  48646. },
  48647. },
  48648. },
  48649. [
  48650. {
  48651. name: "Normal",
  48652. height: math.unit(3.5, "meters"),
  48653. default: true,
  48654. },
  48655. {
  48656. name: "Macro",
  48657. height: math.unit(65.5, "meters"),
  48658. },
  48659. ],
  48660. ))
  48661. characterMakers.push(() => makeCharacter(
  48662. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48663. {
  48664. front: {
  48665. height: math.unit(6, "feet"),
  48666. weight: math.unit(250, "lb"),
  48667. name: "Front",
  48668. image: {
  48669. source: "./media/characters/zenimma/front.svg",
  48670. extra: 1346/1320,
  48671. bottom: 58/1404
  48672. }
  48673. },
  48674. back: {
  48675. height: math.unit(6, "feet"),
  48676. weight: math.unit(250, "lb"),
  48677. name: "Back",
  48678. image: {
  48679. source: "./media/characters/zenimma/back.svg",
  48680. extra: 1324/1308,
  48681. bottom: 44/1368
  48682. }
  48683. },
  48684. dick: {
  48685. height: math.unit(1.44, "feet"),
  48686. name: "Dick",
  48687. image: {
  48688. source: "./media/characters/zenimma/dick.svg"
  48689. }
  48690. },
  48691. },
  48692. [
  48693. {
  48694. name: "Canon Height",
  48695. height: math.unit(66, "miles"),
  48696. default: true
  48697. },
  48698. ]
  48699. ))
  48700. characterMakers.push(() => makeCharacter(
  48701. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48702. {
  48703. nude: {
  48704. height: math.unit(6, "feet"),
  48705. weight: math.unit(150, "lb"),
  48706. name: "Nude",
  48707. image: {
  48708. source: "./media/characters/shavon/nude.svg",
  48709. extra: 1242/1096,
  48710. bottom: 98/1340
  48711. }
  48712. },
  48713. dressed: {
  48714. height: math.unit(6, "feet"),
  48715. weight: math.unit(150, "lb"),
  48716. name: "Dressed",
  48717. image: {
  48718. source: "./media/characters/shavon/dressed.svg",
  48719. extra: 1242/1096,
  48720. bottom: 98/1340
  48721. }
  48722. },
  48723. },
  48724. [
  48725. {
  48726. name: "Macro",
  48727. height: math.unit(255, "feet"),
  48728. default: true
  48729. },
  48730. ]
  48731. ))
  48732. characterMakers.push(() => makeCharacter(
  48733. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48734. {
  48735. front: {
  48736. height: math.unit(6, "feet"),
  48737. name: "Front",
  48738. image: {
  48739. source: "./media/characters/steph/front.svg",
  48740. extra: 1430/1330,
  48741. bottom: 54/1484
  48742. }
  48743. },
  48744. },
  48745. [
  48746. {
  48747. name: "Normal",
  48748. height: math.unit(6, "feet"),
  48749. default: true
  48750. },
  48751. ]
  48752. ))
  48753. characterMakers.push(() => makeCharacter(
  48754. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48755. {
  48756. front: {
  48757. height: math.unit(9, "feet"),
  48758. weight: math.unit(400, "lb"),
  48759. name: "Front",
  48760. image: {
  48761. source: "./media/characters/kil'aman/front.svg",
  48762. extra: 1210/1159,
  48763. bottom: 109/1319
  48764. }
  48765. },
  48766. head: {
  48767. height: math.unit(2.14, "feet"),
  48768. name: "Head",
  48769. image: {
  48770. source: "./media/characters/kil'aman/head.svg"
  48771. }
  48772. },
  48773. maw: {
  48774. height: math.unit(1.21, "feet"),
  48775. name: "Maw",
  48776. image: {
  48777. source: "./media/characters/kil'aman/maw.svg"
  48778. }
  48779. },
  48780. foot: {
  48781. height: math.unit(1.7, "feet"),
  48782. name: "Foot",
  48783. image: {
  48784. source: "./media/characters/kil'aman/foot.svg"
  48785. }
  48786. },
  48787. dick: {
  48788. height: math.unit(2.1, "feet"),
  48789. name: "Dick",
  48790. image: {
  48791. source: "./media/characters/kil'aman/dick.svg"
  48792. }
  48793. },
  48794. },
  48795. [
  48796. {
  48797. name: "Normal",
  48798. height: math.unit(9, "feet")
  48799. },
  48800. {
  48801. name: "Canon Height",
  48802. height: math.unit(10, "miles"),
  48803. default: true
  48804. },
  48805. {
  48806. name: "Maximum",
  48807. height: math.unit(6e9, "miles")
  48808. },
  48809. ]
  48810. ))
  48811. characterMakers.push(() => makeCharacter(
  48812. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48813. {
  48814. front: {
  48815. height: math.unit(90, "feet"),
  48816. weight: math.unit(675000, "lb"),
  48817. name: "Front",
  48818. image: {
  48819. source: "./media/characters/qadan/front.svg",
  48820. extra: 1012/1004,
  48821. bottom: 78/1090
  48822. }
  48823. },
  48824. back: {
  48825. height: math.unit(90, "feet"),
  48826. weight: math.unit(675000, "lb"),
  48827. name: "Back",
  48828. image: {
  48829. source: "./media/characters/qadan/back.svg",
  48830. extra: 1042/1031,
  48831. bottom: 55/1097
  48832. }
  48833. },
  48834. armored: {
  48835. height: math.unit(90, "feet"),
  48836. weight: math.unit(675000, "lb"),
  48837. name: "Armored",
  48838. image: {
  48839. source: "./media/characters/qadan/armored.svg",
  48840. extra: 1047/1037,
  48841. bottom: 48/1095
  48842. }
  48843. },
  48844. },
  48845. [
  48846. {
  48847. name: "Normal",
  48848. height: math.unit(90, "feet"),
  48849. default: true
  48850. },
  48851. ]
  48852. ))
  48853. characterMakers.push(() => makeCharacter(
  48854. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48855. {
  48856. front: {
  48857. height: math.unit(6, "feet"),
  48858. weight: math.unit(225, "lb"),
  48859. name: "Front",
  48860. image: {
  48861. source: "./media/characters/brooke/front.svg",
  48862. extra: 1050/1010,
  48863. bottom: 66/1116
  48864. }
  48865. },
  48866. back: {
  48867. height: math.unit(6, "feet"),
  48868. weight: math.unit(225, "lb"),
  48869. name: "Back",
  48870. image: {
  48871. source: "./media/characters/brooke/back.svg",
  48872. extra: 1053/1013,
  48873. bottom: 41/1094
  48874. }
  48875. },
  48876. dressed: {
  48877. height: math.unit(6, "feet"),
  48878. weight: math.unit(225, "lb"),
  48879. name: "Dressed",
  48880. image: {
  48881. source: "./media/characters/brooke/dressed.svg",
  48882. extra: 1050/1010,
  48883. bottom: 66/1116
  48884. }
  48885. },
  48886. },
  48887. [
  48888. {
  48889. name: "Canon Height",
  48890. height: math.unit(500, "miles"),
  48891. default: true
  48892. },
  48893. ]
  48894. ))
  48895. characterMakers.push(() => makeCharacter(
  48896. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48897. {
  48898. front: {
  48899. height: math.unit(6 + 2/12, "feet"),
  48900. weight: math.unit(210, "lb"),
  48901. name: "Front",
  48902. image: {
  48903. source: "./media/characters/wubs/front.svg",
  48904. extra: 1345/1325,
  48905. bottom: 70/1415
  48906. }
  48907. },
  48908. back: {
  48909. height: math.unit(6 + 2/12, "feet"),
  48910. weight: math.unit(210, "lb"),
  48911. name: "Back",
  48912. image: {
  48913. source: "./media/characters/wubs/back.svg",
  48914. extra: 1296/1275,
  48915. bottom: 58/1354
  48916. }
  48917. },
  48918. },
  48919. [
  48920. {
  48921. name: "Normal",
  48922. height: math.unit(6 + 2/12, "feet"),
  48923. default: true
  48924. },
  48925. {
  48926. name: "Macro",
  48927. height: math.unit(1000, "feet")
  48928. },
  48929. {
  48930. name: "Megamacro",
  48931. height: math.unit(1, "mile")
  48932. },
  48933. ]
  48934. ))
  48935. characterMakers.push(() => makeCharacter(
  48936. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48937. {
  48938. front: {
  48939. height: math.unit(4, "feet"),
  48940. weight: math.unit(120, "lb"),
  48941. name: "Front",
  48942. image: {
  48943. source: "./media/characters/blue/front.svg",
  48944. extra: 1636/1525,
  48945. bottom: 43/1679
  48946. }
  48947. },
  48948. back: {
  48949. height: math.unit(4, "feet"),
  48950. weight: math.unit(120, "lb"),
  48951. name: "Back",
  48952. image: {
  48953. source: "./media/characters/blue/back.svg",
  48954. extra: 1660/1560,
  48955. bottom: 57/1717
  48956. }
  48957. },
  48958. paws: {
  48959. height: math.unit(0.826, "feet"),
  48960. name: "Paws",
  48961. image: {
  48962. source: "./media/characters/blue/paws.svg"
  48963. }
  48964. },
  48965. },
  48966. [
  48967. {
  48968. name: "Micro",
  48969. height: math.unit(3, "inches")
  48970. },
  48971. {
  48972. name: "Normal",
  48973. height: math.unit(4, "feet"),
  48974. default: true
  48975. },
  48976. {
  48977. name: "Femenine Form",
  48978. height: math.unit(14, "feet")
  48979. },
  48980. {
  48981. name: "Werebat Form",
  48982. height: math.unit(18, "feet")
  48983. },
  48984. ]
  48985. ))
  48986. characterMakers.push(() => makeCharacter(
  48987. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48988. {
  48989. female: {
  48990. height: math.unit(7 + 4/12, "feet"),
  48991. weight: math.unit(243, "lb"),
  48992. name: "Female",
  48993. image: {
  48994. source: "./media/characters/kaya/female.svg",
  48995. extra: 975/898,
  48996. bottom: 34/1009
  48997. }
  48998. },
  48999. herm: {
  49000. height: math.unit(7 + 4/12, "feet"),
  49001. weight: math.unit(243, "lb"),
  49002. name: "Herm",
  49003. image: {
  49004. source: "./media/characters/kaya/herm.svg",
  49005. extra: 975/898,
  49006. bottom: 34/1009
  49007. }
  49008. },
  49009. },
  49010. [
  49011. {
  49012. name: "Normal",
  49013. height: math.unit(7 + 4/12, "feet"),
  49014. default: true
  49015. },
  49016. ]
  49017. ))
  49018. characterMakers.push(() => makeCharacter(
  49019. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49020. {
  49021. female: {
  49022. height: math.unit(9 + 4/12, "feet"),
  49023. weight: math.unit(398, "lb"),
  49024. name: "Female",
  49025. image: {
  49026. source: "./media/characters/kassandra/female.svg",
  49027. extra: 908/839,
  49028. bottom: 61/969
  49029. }
  49030. },
  49031. intersex: {
  49032. height: math.unit(9 + 4/12, "feet"),
  49033. weight: math.unit(398, "lb"),
  49034. name: "Intersex",
  49035. image: {
  49036. source: "./media/characters/kassandra/intersex.svg",
  49037. extra: 908/839,
  49038. bottom: 61/969
  49039. }
  49040. },
  49041. },
  49042. [
  49043. {
  49044. name: "Normal",
  49045. height: math.unit(9 + 4/12, "feet"),
  49046. default: true
  49047. },
  49048. ]
  49049. ))
  49050. characterMakers.push(() => makeCharacter(
  49051. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49052. {
  49053. front: {
  49054. height: math.unit(3, "meters"),
  49055. name: "Front",
  49056. image: {
  49057. source: "./media/characters/amy/front.svg",
  49058. extra: 1380/1343,
  49059. bottom: 70/1450
  49060. }
  49061. },
  49062. back: {
  49063. height: math.unit(3, "meters"),
  49064. name: "Back",
  49065. image: {
  49066. source: "./media/characters/amy/back.svg",
  49067. extra: 1380/1347,
  49068. bottom: 66/1446
  49069. }
  49070. },
  49071. },
  49072. [
  49073. {
  49074. name: "Normal",
  49075. height: math.unit(3, "meters"),
  49076. default: true
  49077. },
  49078. ]
  49079. ))
  49080. characterMakers.push(() => makeCharacter(
  49081. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49082. {
  49083. side: {
  49084. height: math.unit(47, "cm"),
  49085. weight: math.unit(10.8, "kg"),
  49086. name: "Side",
  49087. image: {
  49088. source: "./media/characters/alphaschakal/side.svg",
  49089. extra: 1058/568,
  49090. bottom: 62/1120
  49091. }
  49092. },
  49093. back: {
  49094. height: math.unit(78, "cm"),
  49095. weight: math.unit(10.8, "kg"),
  49096. name: "Back",
  49097. image: {
  49098. source: "./media/characters/alphaschakal/back.svg",
  49099. extra: 1102/942,
  49100. bottom: 185/1287
  49101. }
  49102. },
  49103. head: {
  49104. height: math.unit(28, "cm"),
  49105. name: "Head",
  49106. image: {
  49107. source: "./media/characters/alphaschakal/head.svg",
  49108. extra: 696/508,
  49109. bottom: 0/696
  49110. }
  49111. },
  49112. paw: {
  49113. height: math.unit(16, "cm"),
  49114. name: "Paw",
  49115. image: {
  49116. source: "./media/characters/alphaschakal/paw.svg"
  49117. }
  49118. },
  49119. },
  49120. [
  49121. {
  49122. name: "Normal",
  49123. height: math.unit(47, "cm"),
  49124. default: true
  49125. },
  49126. {
  49127. name: "Macro",
  49128. height: math.unit(340, "cm")
  49129. },
  49130. ]
  49131. ))
  49132. characterMakers.push(() => makeCharacter(
  49133. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49134. {
  49135. front: {
  49136. height: math.unit(36, "earths"),
  49137. name: "Front",
  49138. image: {
  49139. source: "./media/characters/ecobyss/front.svg",
  49140. extra: 1282/1215,
  49141. bottom: 11/1293
  49142. }
  49143. },
  49144. back: {
  49145. height: math.unit(36, "earths"),
  49146. name: "Back",
  49147. image: {
  49148. source: "./media/characters/ecobyss/back.svg",
  49149. extra: 1291/1222,
  49150. bottom: 8/1299
  49151. }
  49152. },
  49153. },
  49154. [
  49155. {
  49156. name: "Normal",
  49157. height: math.unit(36, "earths"),
  49158. default: true
  49159. },
  49160. ]
  49161. ))
  49162. characterMakers.push(() => makeCharacter(
  49163. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49164. {
  49165. front: {
  49166. height: math.unit(12, "feet"),
  49167. name: "Front",
  49168. image: {
  49169. source: "./media/characters/vasuk/front.svg",
  49170. extra: 1326/1207,
  49171. bottom: 64/1390
  49172. }
  49173. },
  49174. },
  49175. [
  49176. {
  49177. name: "Normal",
  49178. height: math.unit(12, "feet"),
  49179. default: true
  49180. },
  49181. ]
  49182. ))
  49183. characterMakers.push(() => makeCharacter(
  49184. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49185. {
  49186. side: {
  49187. height: math.unit(100, "feet"),
  49188. name: "Side",
  49189. image: {
  49190. source: "./media/characters/linneaus/side.svg",
  49191. extra: 987/807,
  49192. bottom: 47/1034
  49193. }
  49194. },
  49195. },
  49196. [
  49197. {
  49198. name: "Macro",
  49199. height: math.unit(100, "feet"),
  49200. default: true
  49201. },
  49202. ]
  49203. ))
  49204. characterMakers.push(() => makeCharacter(
  49205. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49206. {
  49207. front: {
  49208. height: math.unit(8, "feet"),
  49209. weight: math.unit(1200, "lb"),
  49210. name: "Front",
  49211. image: {
  49212. source: "./media/characters/nyterious-daligdig/front.svg",
  49213. extra: 1284/1094,
  49214. bottom: 84/1368
  49215. }
  49216. },
  49217. back: {
  49218. height: math.unit(8, "feet"),
  49219. weight: math.unit(1200, "lb"),
  49220. name: "Back",
  49221. image: {
  49222. source: "./media/characters/nyterious-daligdig/back.svg",
  49223. extra: 1301/1121,
  49224. bottom: 129/1430
  49225. }
  49226. },
  49227. mouth: {
  49228. height: math.unit(1.464, "feet"),
  49229. name: "Mouth",
  49230. image: {
  49231. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49232. }
  49233. },
  49234. },
  49235. [
  49236. {
  49237. name: "Small",
  49238. height: math.unit(8, "feet"),
  49239. default: true
  49240. },
  49241. {
  49242. name: "Normal",
  49243. height: math.unit(15, "feet")
  49244. },
  49245. {
  49246. name: "Macro",
  49247. height: math.unit(90, "feet")
  49248. },
  49249. ]
  49250. ))
  49251. characterMakers.push(() => makeCharacter(
  49252. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49253. {
  49254. front: {
  49255. height: math.unit(7 + 4/12, "feet"),
  49256. weight: math.unit(252, "lb"),
  49257. name: "Front",
  49258. image: {
  49259. source: "./media/characters/bandel/front.svg",
  49260. extra: 1946/1775,
  49261. bottom: 26/1972
  49262. }
  49263. },
  49264. back: {
  49265. height: math.unit(7 + 4/12, "feet"),
  49266. weight: math.unit(252, "lb"),
  49267. name: "Back",
  49268. image: {
  49269. source: "./media/characters/bandel/back.svg",
  49270. extra: 1940/1770,
  49271. bottom: 25/1965
  49272. }
  49273. },
  49274. maw: {
  49275. height: math.unit(2.15, "feet"),
  49276. name: "Maw",
  49277. image: {
  49278. source: "./media/characters/bandel/maw.svg"
  49279. }
  49280. },
  49281. stomach: {
  49282. height: math.unit(1.95, "feet"),
  49283. name: "Stomach",
  49284. image: {
  49285. source: "./media/characters/bandel/stomach.svg"
  49286. }
  49287. },
  49288. },
  49289. [
  49290. {
  49291. name: "Normal",
  49292. height: math.unit(7 + 4/12, "feet"),
  49293. default: true
  49294. },
  49295. ]
  49296. ))
  49297. characterMakers.push(() => makeCharacter(
  49298. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49299. {
  49300. front: {
  49301. height: math.unit(10 + 5/12, "feet"),
  49302. weight: math.unit(773.5, "kg"),
  49303. name: "Front",
  49304. image: {
  49305. source: "./media/characters/zed/front.svg",
  49306. extra: 987/941,
  49307. bottom: 52/1039
  49308. }
  49309. },
  49310. },
  49311. [
  49312. {
  49313. name: "Short",
  49314. height: math.unit(5 + 4/12, "feet")
  49315. },
  49316. {
  49317. name: "Average",
  49318. height: math.unit(10 + 5/12, "feet"),
  49319. default: true
  49320. },
  49321. {
  49322. name: "Mini-Macro",
  49323. height: math.unit(24 + 9/12, "feet")
  49324. },
  49325. {
  49326. name: "Macro",
  49327. height: math.unit(249, "feet")
  49328. },
  49329. {
  49330. name: "Mega-Macro",
  49331. height: math.unit(12490, "feet")
  49332. },
  49333. {
  49334. name: "Giga-Macro",
  49335. height: math.unit(24.9, "miles")
  49336. },
  49337. {
  49338. name: "Tera-Macro",
  49339. height: math.unit(24900, "miles")
  49340. },
  49341. {
  49342. name: "Cosmic Scale",
  49343. height: math.unit(38.9, "lightyears")
  49344. },
  49345. {
  49346. name: "Universal Scale",
  49347. height: math.unit(138e12, "lightyears")
  49348. },
  49349. ]
  49350. ))
  49351. characterMakers.push(() => makeCharacter(
  49352. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49353. {
  49354. front: {
  49355. height: math.unit(1561, "inches"),
  49356. name: "Front",
  49357. image: {
  49358. source: "./media/characters/ivan/front.svg",
  49359. extra: 1126/1071,
  49360. bottom: 26/1152
  49361. }
  49362. },
  49363. back: {
  49364. height: math.unit(1561, "inches"),
  49365. name: "Back",
  49366. image: {
  49367. source: "./media/characters/ivan/back.svg",
  49368. extra: 1134/1079,
  49369. bottom: 30/1164
  49370. }
  49371. },
  49372. },
  49373. [
  49374. {
  49375. name: "Normal",
  49376. height: math.unit(1561, "inches"),
  49377. default: true
  49378. },
  49379. ]
  49380. ))
  49381. characterMakers.push(() => makeCharacter(
  49382. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49383. {
  49384. front: {
  49385. height: math.unit(5 + 7/12, "feet"),
  49386. weight: math.unit(150, "lb"),
  49387. name: "Front",
  49388. image: {
  49389. source: "./media/characters/robin-arctic-hare/front.svg",
  49390. extra: 1148/974,
  49391. bottom: 20/1168
  49392. }
  49393. },
  49394. },
  49395. [
  49396. {
  49397. name: "Normal",
  49398. height: math.unit(5 + 7/12, "feet"),
  49399. default: true
  49400. },
  49401. ]
  49402. ))
  49403. characterMakers.push(() => makeCharacter(
  49404. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49405. {
  49406. side: {
  49407. height: math.unit(5, "feet"),
  49408. name: "Side",
  49409. image: {
  49410. source: "./media/characters/birch/side.svg",
  49411. extra: 985/796,
  49412. bottom: 111/1096
  49413. }
  49414. },
  49415. },
  49416. [
  49417. {
  49418. name: "Normal",
  49419. height: math.unit(5, "feet"),
  49420. default: true
  49421. },
  49422. ]
  49423. ))
  49424. characterMakers.push(() => makeCharacter(
  49425. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49426. {
  49427. front: {
  49428. height: math.unit(4, "feet"),
  49429. name: "Front",
  49430. image: {
  49431. source: "./media/characters/rasp/front.svg",
  49432. extra: 561/478,
  49433. bottom: 74/635
  49434. }
  49435. },
  49436. },
  49437. [
  49438. {
  49439. name: "Normal",
  49440. height: math.unit(4, "feet"),
  49441. default: true
  49442. },
  49443. ]
  49444. ))
  49445. characterMakers.push(() => makeCharacter(
  49446. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49447. {
  49448. front: {
  49449. height: math.unit(4 + 6/12, "feet"),
  49450. name: "Front",
  49451. image: {
  49452. source: "./media/characters/agatha/front.svg",
  49453. extra: 947/933,
  49454. bottom: 42/989
  49455. }
  49456. },
  49457. back: {
  49458. height: math.unit(4 + 6/12, "feet"),
  49459. name: "Back",
  49460. image: {
  49461. source: "./media/characters/agatha/back.svg",
  49462. extra: 935/922,
  49463. bottom: 48/983
  49464. }
  49465. },
  49466. },
  49467. [
  49468. {
  49469. name: "Normal",
  49470. height: math.unit(4 + 6 /12, "feet"),
  49471. default: true
  49472. },
  49473. {
  49474. name: "Max Size",
  49475. height: math.unit(500, "feet")
  49476. },
  49477. ]
  49478. ))
  49479. characterMakers.push(() => makeCharacter(
  49480. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49481. {
  49482. side: {
  49483. height: math.unit(30, "feet"),
  49484. name: "Side",
  49485. image: {
  49486. source: "./media/characters/roggy/side.svg",
  49487. extra: 909/643,
  49488. bottom: 63/972
  49489. }
  49490. },
  49491. lounging: {
  49492. height: math.unit(20, "feet"),
  49493. name: "Lounging",
  49494. image: {
  49495. source: "./media/characters/roggy/lounging.svg",
  49496. extra: 643/479,
  49497. bottom: 145/788
  49498. }
  49499. },
  49500. handpaw: {
  49501. height: math.unit(13.1, "feet"),
  49502. name: "Handpaw",
  49503. image: {
  49504. source: "./media/characters/roggy/handpaw.svg"
  49505. }
  49506. },
  49507. footpaw: {
  49508. height: math.unit(15.8, "feet"),
  49509. name: "Footpaw",
  49510. image: {
  49511. source: "./media/characters/roggy/footpaw.svg"
  49512. }
  49513. },
  49514. },
  49515. [
  49516. {
  49517. name: "Menacing",
  49518. height: math.unit(30, "feet"),
  49519. default: true
  49520. },
  49521. ]
  49522. ))
  49523. characterMakers.push(() => makeCharacter(
  49524. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49525. {
  49526. front: {
  49527. height: math.unit(5 + 7/12, "feet"),
  49528. weight: math.unit(135, "lb"),
  49529. name: "Front",
  49530. image: {
  49531. source: "./media/characters/naomi/front.svg",
  49532. extra: 1209/1154,
  49533. bottom: 129/1338
  49534. }
  49535. },
  49536. back: {
  49537. height: math.unit(5 + 7/12, "feet"),
  49538. weight: math.unit(135, "lb"),
  49539. name: "Back",
  49540. image: {
  49541. source: "./media/characters/naomi/back.svg",
  49542. extra: 1252/1190,
  49543. bottom: 23/1275
  49544. }
  49545. },
  49546. },
  49547. [
  49548. {
  49549. name: "Normal",
  49550. height: math.unit(5 + 7 /12, "feet"),
  49551. default: true
  49552. },
  49553. ]
  49554. ))
  49555. characterMakers.push(() => makeCharacter(
  49556. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49557. {
  49558. side: {
  49559. height: math.unit(35, "meters"),
  49560. name: "Side",
  49561. image: {
  49562. source: "./media/characters/kimpi/side.svg",
  49563. extra: 419/382,
  49564. bottom: 63/482
  49565. }
  49566. },
  49567. hand: {
  49568. height: math.unit(8.96, "meters"),
  49569. name: "Hand",
  49570. image: {
  49571. source: "./media/characters/kimpi/hand.svg"
  49572. }
  49573. },
  49574. },
  49575. [
  49576. {
  49577. name: "Normal",
  49578. height: math.unit(35, "meters"),
  49579. default: true
  49580. },
  49581. ]
  49582. ))
  49583. characterMakers.push(() => makeCharacter(
  49584. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49585. {
  49586. front: {
  49587. height: math.unit(4 + 4/12, "feet"),
  49588. name: "Front",
  49589. image: {
  49590. source: "./media/characters/pepper-purrloin/front.svg",
  49591. extra: 1141/1024,
  49592. bottom: 21/1162
  49593. }
  49594. },
  49595. },
  49596. [
  49597. {
  49598. name: "Normal",
  49599. height: math.unit(4 + 4/12, "feet"),
  49600. default: true
  49601. },
  49602. ]
  49603. ))
  49604. characterMakers.push(() => makeCharacter(
  49605. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49606. {
  49607. front: {
  49608. height: math.unit(6 + 2/12, "feet"),
  49609. name: "Front",
  49610. image: {
  49611. source: "./media/characters/raphael/front.svg",
  49612. extra: 1101/962,
  49613. bottom: 59/1160
  49614. }
  49615. },
  49616. },
  49617. [
  49618. {
  49619. name: "Normal",
  49620. height: math.unit(6 + 2/12, "feet"),
  49621. default: true
  49622. },
  49623. ]
  49624. ))
  49625. characterMakers.push(() => makeCharacter(
  49626. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49627. {
  49628. front: {
  49629. height: math.unit(6, "feet"),
  49630. weight: math.unit(150, "lb"),
  49631. name: "Front",
  49632. image: {
  49633. source: "./media/characters/victor-williams/front.svg",
  49634. extra: 1894/1825,
  49635. bottom: 67/1961
  49636. }
  49637. },
  49638. },
  49639. [
  49640. {
  49641. name: "Normal",
  49642. height: math.unit(6, "feet"),
  49643. default: true
  49644. },
  49645. ]
  49646. ))
  49647. characterMakers.push(() => makeCharacter(
  49648. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49649. {
  49650. front: {
  49651. height: math.unit(5 + 8/12, "feet"),
  49652. weight: math.unit(150, "lb"),
  49653. name: "Front",
  49654. image: {
  49655. source: "./media/characters/rachel/front.svg",
  49656. extra: 1902/1787,
  49657. bottom: 46/1948
  49658. }
  49659. },
  49660. },
  49661. [
  49662. {
  49663. name: "Base Height",
  49664. height: math.unit(5 + 8/12, "feet"),
  49665. default: true
  49666. },
  49667. {
  49668. name: "Macro",
  49669. height: math.unit(200, "feet")
  49670. },
  49671. {
  49672. name: "Mega Macro",
  49673. height: math.unit(1, "mile")
  49674. },
  49675. {
  49676. name: "Giga Macro",
  49677. height: math.unit(1500, "miles")
  49678. },
  49679. {
  49680. name: "Tera Macro",
  49681. height: math.unit(8000, "miles")
  49682. },
  49683. {
  49684. name: "Tera Macro+",
  49685. height: math.unit(2e5, "miles")
  49686. },
  49687. ]
  49688. ))
  49689. characterMakers.push(() => makeCharacter(
  49690. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49691. {
  49692. front: {
  49693. height: math.unit(6.5, "feet"),
  49694. name: "Front",
  49695. image: {
  49696. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49697. extra: 860/819,
  49698. bottom: 307/1167
  49699. }
  49700. },
  49701. back: {
  49702. height: math.unit(6.5, "feet"),
  49703. name: "Back",
  49704. image: {
  49705. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49706. extra: 880/837,
  49707. bottom: 395/1275
  49708. }
  49709. },
  49710. sleeping: {
  49711. height: math.unit(2.79, "feet"),
  49712. name: "Sleeping",
  49713. image: {
  49714. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49715. extra: 465/383,
  49716. bottom: 263/728
  49717. }
  49718. },
  49719. maw: {
  49720. height: math.unit(2.52, "feet"),
  49721. name: "Maw",
  49722. image: {
  49723. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49724. }
  49725. },
  49726. },
  49727. [
  49728. {
  49729. name: "Normal",
  49730. height: math.unit(6.5, "feet"),
  49731. default: true
  49732. },
  49733. ]
  49734. ))
  49735. characterMakers.push(() => makeCharacter(
  49736. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49737. {
  49738. front: {
  49739. height: math.unit(5, "feet"),
  49740. name: "Front",
  49741. image: {
  49742. source: "./media/characters/nova-nerium/front.svg",
  49743. extra: 1548/1392,
  49744. bottom: 374/1922
  49745. }
  49746. },
  49747. back: {
  49748. height: math.unit(5, "feet"),
  49749. name: "Back",
  49750. image: {
  49751. source: "./media/characters/nova-nerium/back.svg",
  49752. extra: 1658/1468,
  49753. bottom: 257/1915
  49754. }
  49755. },
  49756. },
  49757. [
  49758. {
  49759. name: "Normal",
  49760. height: math.unit(5, "feet"),
  49761. default: true
  49762. },
  49763. ]
  49764. ))
  49765. characterMakers.push(() => makeCharacter(
  49766. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49767. {
  49768. front: {
  49769. height: math.unit(5 + 4/12, "feet"),
  49770. name: "Front",
  49771. image: {
  49772. source: "./media/characters/ashe-pyriph/front.svg",
  49773. extra: 1935/1747,
  49774. bottom: 60/1995
  49775. }
  49776. },
  49777. },
  49778. [
  49779. {
  49780. name: "Normal",
  49781. height: math.unit(5 + 4/12, "feet"),
  49782. default: true
  49783. },
  49784. ]
  49785. ))
  49786. characterMakers.push(() => makeCharacter(
  49787. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49788. {
  49789. front: {
  49790. height: math.unit(8.7, "feet"),
  49791. name: "Front",
  49792. image: {
  49793. source: "./media/characters/flicker-wisp/front.svg",
  49794. extra: 1835/1613,
  49795. bottom: 449/2284
  49796. }
  49797. },
  49798. side: {
  49799. height: math.unit(8.7, "feet"),
  49800. name: "Side",
  49801. image: {
  49802. source: "./media/characters/flicker-wisp/side.svg",
  49803. extra: 1841/1642,
  49804. bottom: 336/2177
  49805. },
  49806. default: true
  49807. },
  49808. maw: {
  49809. height: math.unit(3.35, "feet"),
  49810. name: "Maw",
  49811. image: {
  49812. source: "./media/characters/flicker-wisp/maw.svg",
  49813. extra: 2338/1506,
  49814. bottom: 0/2338
  49815. }
  49816. },
  49817. ovipositor: {
  49818. height: math.unit(4.95, "feet"),
  49819. name: "Ovipositor",
  49820. image: {
  49821. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49822. }
  49823. },
  49824. egg: {
  49825. height: math.unit(0.385, "feet"),
  49826. weight: math.unit(2, "lb"),
  49827. name: "Egg",
  49828. image: {
  49829. source: "./media/characters/flicker-wisp/egg.svg"
  49830. }
  49831. },
  49832. },
  49833. [
  49834. {
  49835. name: "Normal",
  49836. height: math.unit(8.7, "feet"),
  49837. default: true
  49838. },
  49839. ]
  49840. ))
  49841. characterMakers.push(() => makeCharacter(
  49842. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49843. {
  49844. side: {
  49845. height: math.unit(11, "feet"),
  49846. name: "Side",
  49847. image: {
  49848. source: "./media/characters/faefnul/side.svg",
  49849. extra: 1100/1007,
  49850. bottom: 0/1100
  49851. }
  49852. },
  49853. },
  49854. [
  49855. {
  49856. name: "Normal",
  49857. height: math.unit(11, "feet"),
  49858. default: true
  49859. },
  49860. ]
  49861. ))
  49862. characterMakers.push(() => makeCharacter(
  49863. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49864. {
  49865. front: {
  49866. height: math.unit(6 + 2/12, "feet"),
  49867. name: "Front",
  49868. image: {
  49869. source: "./media/characters/shady/front.svg",
  49870. extra: 502/461,
  49871. bottom: 9/511
  49872. }
  49873. },
  49874. kneeling: {
  49875. height: math.unit(4.6, "feet"),
  49876. name: "Kneeling",
  49877. image: {
  49878. source: "./media/characters/shady/kneeling.svg",
  49879. extra: 1328/1219,
  49880. bottom: 117/1445
  49881. }
  49882. },
  49883. maw: {
  49884. height: math.unit(2, "feet"),
  49885. name: "Maw",
  49886. image: {
  49887. source: "./media/characters/shady/maw.svg"
  49888. }
  49889. },
  49890. },
  49891. [
  49892. {
  49893. name: "Nano",
  49894. height: math.unit(1, "mm")
  49895. },
  49896. {
  49897. name: "Micro",
  49898. height: math.unit(12, "mm")
  49899. },
  49900. {
  49901. name: "Tiny",
  49902. height: math.unit(3, "inches")
  49903. },
  49904. {
  49905. name: "Normal",
  49906. height: math.unit(6 + 2/12, "feet"),
  49907. default: true
  49908. },
  49909. {
  49910. name: "Big",
  49911. height: math.unit(15, "feet")
  49912. },
  49913. {
  49914. name: "Macro",
  49915. height: math.unit(150, "feet")
  49916. },
  49917. {
  49918. name: "Titanic",
  49919. height: math.unit(500, "feet")
  49920. },
  49921. ]
  49922. ))
  49923. characterMakers.push(() => makeCharacter(
  49924. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49925. {
  49926. front: {
  49927. height: math.unit(12, "feet"),
  49928. name: "Front",
  49929. image: {
  49930. source: "./media/characters/fenrir/front.svg",
  49931. extra: 968/875,
  49932. bottom: 22/990
  49933. }
  49934. },
  49935. },
  49936. [
  49937. {
  49938. name: "Big",
  49939. height: math.unit(12, "feet"),
  49940. default: true
  49941. },
  49942. ]
  49943. ))
  49944. characterMakers.push(() => makeCharacter(
  49945. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49946. {
  49947. front: {
  49948. height: math.unit(5 + 4/12, "feet"),
  49949. name: "Front",
  49950. image: {
  49951. source: "./media/characters/makar/front.svg",
  49952. extra: 1181/1112,
  49953. bottom: 78/1259
  49954. }
  49955. },
  49956. },
  49957. [
  49958. {
  49959. name: "Normal",
  49960. height: math.unit(5 + 4/12, "feet"),
  49961. default: true
  49962. },
  49963. ]
  49964. ))
  49965. characterMakers.push(() => makeCharacter(
  49966. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49967. {
  49968. front: {
  49969. height: math.unit(5 + 7/12, "feet"),
  49970. name: "Front",
  49971. image: {
  49972. source: "./media/characters/callow/front.svg",
  49973. extra: 1482/1304,
  49974. bottom: 23/1505
  49975. }
  49976. },
  49977. back: {
  49978. height: math.unit(5 + 7/12, "feet"),
  49979. name: "Back",
  49980. image: {
  49981. source: "./media/characters/callow/back.svg",
  49982. extra: 1484/1296,
  49983. bottom: 25/1509
  49984. }
  49985. },
  49986. },
  49987. [
  49988. {
  49989. name: "Micro",
  49990. height: math.unit(3, "inches"),
  49991. default: true
  49992. },
  49993. {
  49994. name: "Normal",
  49995. height: math.unit(5 + 7/12, "feet")
  49996. },
  49997. ]
  49998. ))
  49999. characterMakers.push(() => makeCharacter(
  50000. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50001. {
  50002. front: {
  50003. height: math.unit(6 + 2/12, "feet"),
  50004. name: "Front",
  50005. image: {
  50006. source: "./media/characters/natel/front.svg",
  50007. extra: 1833/1692,
  50008. bottom: 166/1999
  50009. }
  50010. },
  50011. },
  50012. [
  50013. {
  50014. name: "Normal",
  50015. height: math.unit(6 + 2/12, "feet"),
  50016. default: true
  50017. },
  50018. ]
  50019. ))
  50020. characterMakers.push(() => makeCharacter(
  50021. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50022. {
  50023. front: {
  50024. height: math.unit(1.75, "meters"),
  50025. name: "Front",
  50026. image: {
  50027. source: "./media/characters/misu/front.svg",
  50028. extra: 1690/1558,
  50029. bottom: 234/1924
  50030. }
  50031. },
  50032. back: {
  50033. height: math.unit(1.75, "meters"),
  50034. name: "Back",
  50035. image: {
  50036. source: "./media/characters/misu/back.svg",
  50037. extra: 1762/1618,
  50038. bottom: 146/1908
  50039. }
  50040. },
  50041. frontNude: {
  50042. height: math.unit(1.75, "meters"),
  50043. name: "Front (Nude)",
  50044. image: {
  50045. source: "./media/characters/misu/front-nude.svg",
  50046. extra: 1690/1558,
  50047. bottom: 234/1924
  50048. }
  50049. },
  50050. backNude: {
  50051. height: math.unit(1.75, "meters"),
  50052. name: "Back (Nude)",
  50053. image: {
  50054. source: "./media/characters/misu/back-nude.svg",
  50055. extra: 1762/1618,
  50056. bottom: 146/1908
  50057. }
  50058. },
  50059. frontErect: {
  50060. height: math.unit(1.75, "meters"),
  50061. name: "Front (Erect)",
  50062. image: {
  50063. source: "./media/characters/misu/front-erect.svg",
  50064. extra: 1690/1558,
  50065. bottom: 234/1924
  50066. }
  50067. },
  50068. maw: {
  50069. height: math.unit(0.47, "meters"),
  50070. name: "Maw",
  50071. image: {
  50072. source: "./media/characters/misu/maw.svg"
  50073. }
  50074. },
  50075. head: {
  50076. height: math.unit(0.35, "meters"),
  50077. name: "Head",
  50078. image: {
  50079. source: "./media/characters/misu/head.svg"
  50080. }
  50081. },
  50082. rear: {
  50083. height: math.unit(0.47, "meters"),
  50084. name: "Rear",
  50085. image: {
  50086. source: "./media/characters/misu/rear.svg"
  50087. }
  50088. },
  50089. },
  50090. [
  50091. {
  50092. name: "Normal",
  50093. height: math.unit(1.75, "meters")
  50094. },
  50095. {
  50096. name: "Not good for the people",
  50097. height: math.unit(42, "meters")
  50098. },
  50099. {
  50100. name: "Not good for the neighborhood",
  50101. height: math.unit(135, "meters")
  50102. },
  50103. {
  50104. name: "Bit bigger problem",
  50105. height: math.unit(380, "meters"),
  50106. default: true
  50107. },
  50108. {
  50109. name: "Not good for the city",
  50110. height: math.unit(1.5, "km")
  50111. },
  50112. {
  50113. name: "Not good for the county",
  50114. height: math.unit(5.5, "km")
  50115. },
  50116. {
  50117. name: "Not good for the state",
  50118. height: math.unit(25, "km")
  50119. },
  50120. {
  50121. name: "Not good for the country",
  50122. height: math.unit(125, "km")
  50123. },
  50124. {
  50125. name: "Not good for the continent",
  50126. height: math.unit(2100, "km")
  50127. },
  50128. {
  50129. name: "Not good for the planet",
  50130. height: math.unit(35000, "km")
  50131. },
  50132. {
  50133. name: "Just no",
  50134. height: math.unit(8.5e18, "km")
  50135. },
  50136. ]
  50137. ))
  50138. characterMakers.push(() => makeCharacter(
  50139. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50140. {
  50141. front: {
  50142. height: math.unit(6.5, "feet"),
  50143. name: "Front",
  50144. image: {
  50145. source: "./media/characters/poppy/front.svg",
  50146. extra: 1878/1812,
  50147. bottom: 43/1921
  50148. }
  50149. },
  50150. feet: {
  50151. height: math.unit(1.06, "feet"),
  50152. name: "Feet",
  50153. image: {
  50154. source: "./media/characters/poppy/feet.svg",
  50155. extra: 1083/1083,
  50156. bottom: 87/1170
  50157. }
  50158. },
  50159. },
  50160. [
  50161. {
  50162. name: "Human",
  50163. height: math.unit(6.5, "feet")
  50164. },
  50165. {
  50166. name: "Default",
  50167. height: math.unit(300, "feet"),
  50168. default: true
  50169. },
  50170. {
  50171. name: "Huge",
  50172. height: math.unit(850, "feet")
  50173. },
  50174. {
  50175. name: "Mega",
  50176. height: math.unit(8000, "feet")
  50177. },
  50178. {
  50179. name: "Giga",
  50180. height: math.unit(300, "miles")
  50181. },
  50182. ]
  50183. ))
  50184. characterMakers.push(() => makeCharacter(
  50185. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50186. {
  50187. bipedal: {
  50188. height: math.unit(7, "feet"),
  50189. name: "Bipedal",
  50190. image: {
  50191. source: "./media/characters/zener/bipedal.svg",
  50192. extra: 874/805,
  50193. bottom: 109/983
  50194. }
  50195. },
  50196. quadrupedal: {
  50197. height: math.unit(4.64, "feet"),
  50198. name: "Quadrupedal",
  50199. image: {
  50200. source: "./media/characters/zener/quadrupedal.svg",
  50201. extra: 638/507,
  50202. bottom: 190/828
  50203. }
  50204. },
  50205. cock: {
  50206. height: math.unit(18, "inches"),
  50207. name: "Cock",
  50208. image: {
  50209. source: "./media/characters/zener/cock.svg"
  50210. }
  50211. },
  50212. },
  50213. [
  50214. {
  50215. name: "Normal",
  50216. height: math.unit(7, "feet"),
  50217. default: true
  50218. },
  50219. ]
  50220. ))
  50221. characterMakers.push(() => makeCharacter(
  50222. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50223. {
  50224. nude: {
  50225. height: math.unit(5 + 6/12, "feet"),
  50226. name: "Nude",
  50227. image: {
  50228. source: "./media/characters/charlie-dog/nude.svg",
  50229. extra: 768/734,
  50230. bottom: 26/794
  50231. }
  50232. },
  50233. dressed: {
  50234. height: math.unit(5 + 6/12, "feet"),
  50235. name: "Dressed",
  50236. image: {
  50237. source: "./media/characters/charlie-dog/dressed.svg",
  50238. extra: 768/734,
  50239. bottom: 26/794
  50240. }
  50241. },
  50242. },
  50243. [
  50244. {
  50245. name: "Normal",
  50246. height: math.unit(5 + 6/12, "feet"),
  50247. default: true
  50248. },
  50249. ]
  50250. ))
  50251. characterMakers.push(() => makeCharacter(
  50252. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50253. {
  50254. front: {
  50255. height: math.unit(6 + 4/12, "feet"),
  50256. name: "Front",
  50257. image: {
  50258. source: "./media/characters/ir'istrasz/front.svg",
  50259. extra: 1014/977,
  50260. bottom: 65/1079
  50261. }
  50262. },
  50263. back: {
  50264. height: math.unit(6 + 4/12, "feet"),
  50265. name: "Back",
  50266. image: {
  50267. source: "./media/characters/ir'istrasz/back.svg",
  50268. extra: 1024/992,
  50269. bottom: 34/1058
  50270. }
  50271. },
  50272. },
  50273. [
  50274. {
  50275. name: "Normal",
  50276. height: math.unit(6 + 4/12, "feet"),
  50277. default: true
  50278. },
  50279. ]
  50280. ))
  50281. characterMakers.push(() => makeCharacter(
  50282. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50283. {
  50284. front: {
  50285. height: math.unit(5 + 8/12, "feet"),
  50286. name: "Front",
  50287. image: {
  50288. source: "./media/characters/dee-ditto/front.svg",
  50289. extra: 1874/1785,
  50290. bottom: 68/1942
  50291. }
  50292. },
  50293. back: {
  50294. height: math.unit(5 + 8/12, "feet"),
  50295. name: "Back",
  50296. image: {
  50297. source: "./media/characters/dee-ditto/back.svg",
  50298. extra: 1870/1783,
  50299. bottom: 77/1947
  50300. }
  50301. },
  50302. },
  50303. [
  50304. {
  50305. name: "Normal",
  50306. height: math.unit(5 + 8/12, "feet"),
  50307. default: true
  50308. },
  50309. ]
  50310. ))
  50311. characterMakers.push(() => makeCharacter(
  50312. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50313. {
  50314. front: {
  50315. height: math.unit(7 + 6/12, "feet"),
  50316. name: "Front",
  50317. image: {
  50318. source: "./media/characters/fey/front.svg",
  50319. extra: 995/979,
  50320. bottom: 30/1025
  50321. }
  50322. },
  50323. back: {
  50324. height: math.unit(7 + 6/12, "feet"),
  50325. name: "Back",
  50326. image: {
  50327. source: "./media/characters/fey/back.svg",
  50328. extra: 1079/1008,
  50329. bottom: 5/1084
  50330. }
  50331. },
  50332. dressed: {
  50333. height: math.unit(7 + 6/12, "feet"),
  50334. name: "Dressed",
  50335. image: {
  50336. source: "./media/characters/fey/dressed.svg",
  50337. extra: 995/979,
  50338. bottom: 30/1025
  50339. }
  50340. },
  50341. },
  50342. [
  50343. {
  50344. name: "Normal",
  50345. height: math.unit(7 + 6/12, "feet"),
  50346. default: true
  50347. },
  50348. ]
  50349. ))
  50350. characterMakers.push(() => makeCharacter(
  50351. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50352. {
  50353. standing: {
  50354. height: math.unit(17, "feet"),
  50355. name: "Standing",
  50356. image: {
  50357. source: "./media/characters/aster/standing.svg",
  50358. extra: 1798/1598,
  50359. bottom: 117/1915
  50360. }
  50361. },
  50362. },
  50363. [
  50364. {
  50365. name: "Normal",
  50366. height: math.unit(17, "feet"),
  50367. default: true
  50368. },
  50369. {
  50370. name: "Homewrecker",
  50371. height: math.unit(95, "feet")
  50372. },
  50373. {
  50374. name: "Planet Devourer",
  50375. height: math.unit(1008000, "miles")
  50376. },
  50377. ]
  50378. ))
  50379. characterMakers.push(() => makeCharacter(
  50380. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50381. {
  50382. front: {
  50383. height: math.unit(6 + 5/12, "feet"),
  50384. weight: math.unit(265, "lb"),
  50385. name: "Front",
  50386. image: {
  50387. source: "./media/characters/devon-childs/front.svg",
  50388. extra: 1795/1721,
  50389. bottom: 41/1836
  50390. }
  50391. },
  50392. side: {
  50393. height: math.unit(6 + 5/12, "feet"),
  50394. weight: math.unit(265, "lb"),
  50395. name: "Side",
  50396. image: {
  50397. source: "./media/characters/devon-childs/side.svg",
  50398. extra: 1812/1738,
  50399. bottom: 30/1842
  50400. }
  50401. },
  50402. back: {
  50403. height: math.unit(6 + 5/12, "feet"),
  50404. weight: math.unit(265, "lb"),
  50405. name: "Back",
  50406. image: {
  50407. source: "./media/characters/devon-childs/back.svg",
  50408. extra: 1808/1735,
  50409. bottom: 23/1831
  50410. }
  50411. },
  50412. hand: {
  50413. height: math.unit(1.464, "feet"),
  50414. name: "Hand",
  50415. image: {
  50416. source: "./media/characters/devon-childs/hand.svg"
  50417. }
  50418. },
  50419. foot: {
  50420. height: math.unit(1.6, "feet"),
  50421. name: "Foot",
  50422. image: {
  50423. source: "./media/characters/devon-childs/foot.svg"
  50424. }
  50425. },
  50426. },
  50427. [
  50428. {
  50429. name: "Micro",
  50430. height: math.unit(7, "cm")
  50431. },
  50432. {
  50433. name: "Normal",
  50434. height: math.unit(6 + 5/12, "feet"),
  50435. default: true
  50436. },
  50437. {
  50438. name: "Macro",
  50439. height: math.unit(154, "feet")
  50440. },
  50441. ]
  50442. ))
  50443. characterMakers.push(() => makeCharacter(
  50444. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50445. {
  50446. front: {
  50447. height: math.unit(6, "feet"),
  50448. weight: math.unit(180, "lb"),
  50449. name: "Front",
  50450. image: {
  50451. source: "./media/characters/lydemox-vir/front.svg",
  50452. extra: 1632/1435,
  50453. bottom: 58/1690
  50454. }
  50455. },
  50456. frontSFW: {
  50457. height: math.unit(6, "feet"),
  50458. weight: math.unit(180, "lb"),
  50459. name: "Front (SFW)",
  50460. image: {
  50461. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50462. extra: 1632/1435,
  50463. bottom: 58/1690
  50464. }
  50465. },
  50466. back: {
  50467. height: math.unit(6, "feet"),
  50468. weight: math.unit(180, "lb"),
  50469. name: "Back",
  50470. image: {
  50471. source: "./media/characters/lydemox-vir/back.svg",
  50472. extra: 1593/1408,
  50473. bottom: 31/1624
  50474. }
  50475. },
  50476. paw: {
  50477. height: math.unit(1.85, "feet"),
  50478. name: "Paw",
  50479. image: {
  50480. source: "./media/characters/lydemox-vir/paw.svg"
  50481. }
  50482. },
  50483. dick: {
  50484. height: math.unit(1.8, "feet"),
  50485. name: "Dick",
  50486. image: {
  50487. source: "./media/characters/lydemox-vir/dick.svg"
  50488. }
  50489. },
  50490. },
  50491. [
  50492. {
  50493. name: "Macro",
  50494. height: math.unit(100, "feet"),
  50495. default: true
  50496. },
  50497. {
  50498. name: "Teramacro",
  50499. height: math.unit(1, "earth")
  50500. },
  50501. {
  50502. name: "Planetary",
  50503. height: math.unit(20, "earths")
  50504. },
  50505. ]
  50506. ))
  50507. characterMakers.push(() => makeCharacter(
  50508. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50509. {
  50510. front: {
  50511. height: math.unit(15 + 8/12, "feet"),
  50512. weight: math.unit(1237, "kg"),
  50513. name: "Front",
  50514. image: {
  50515. source: "./media/characters/mia/front.svg",
  50516. extra: 1573/1446,
  50517. bottom: 58/1631
  50518. }
  50519. },
  50520. },
  50521. [
  50522. {
  50523. name: "Small",
  50524. height: math.unit(9 + 5/12, "feet")
  50525. },
  50526. {
  50527. name: "Normal",
  50528. height: math.unit(15 + 8/12, "feet"),
  50529. default: true
  50530. },
  50531. ]
  50532. ))
  50533. characterMakers.push(() => makeCharacter(
  50534. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50535. {
  50536. front: {
  50537. height: math.unit(10 + 6/12, "feet"),
  50538. weight: math.unit(1.3, "tons"),
  50539. name: "Front",
  50540. image: {
  50541. source: "./media/characters/mr-graves/front.svg",
  50542. extra: 1779/1695,
  50543. bottom: 198/1977
  50544. }
  50545. },
  50546. },
  50547. [
  50548. {
  50549. name: "Normal",
  50550. height: math.unit(10 + 6 /12, "feet"),
  50551. default: true
  50552. },
  50553. ]
  50554. ))
  50555. characterMakers.push(() => makeCharacter(
  50556. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50557. {
  50558. dressedFront: {
  50559. height: math.unit(5 + 8/12, "feet"),
  50560. weight: math.unit(125, "lb"),
  50561. name: "Dressed (Front)",
  50562. image: {
  50563. source: "./media/characters/jess/dressed-front.svg",
  50564. extra: 1176/1152,
  50565. bottom: 42/1218
  50566. }
  50567. },
  50568. dressedSide: {
  50569. height: math.unit(5 + 8/12, "feet"),
  50570. weight: math.unit(125, "lb"),
  50571. name: "Dressed (Side)",
  50572. image: {
  50573. source: "./media/characters/jess/dressed-side.svg",
  50574. extra: 1204/1190,
  50575. bottom: 6/1210
  50576. }
  50577. },
  50578. nudeFront: {
  50579. height: math.unit(5 + 8/12, "feet"),
  50580. weight: math.unit(125, "lb"),
  50581. name: "Nude (Front)",
  50582. image: {
  50583. source: "./media/characters/jess/nude-front.svg",
  50584. extra: 1176/1152,
  50585. bottom: 42/1218
  50586. }
  50587. },
  50588. nudeSide: {
  50589. height: math.unit(5 + 8/12, "feet"),
  50590. weight: math.unit(125, "lb"),
  50591. name: "Nude (Side)",
  50592. image: {
  50593. source: "./media/characters/jess/nude-side.svg",
  50594. extra: 1204/1190,
  50595. bottom: 6/1210
  50596. }
  50597. },
  50598. organsFront: {
  50599. height: math.unit(2.83799342105, "feet"),
  50600. name: "Organs (Front)",
  50601. image: {
  50602. source: "./media/characters/jess/organs-front.svg"
  50603. }
  50604. },
  50605. organsSide: {
  50606. height: math.unit(2.64225290474, "feet"),
  50607. name: "Organs (Side)",
  50608. image: {
  50609. source: "./media/characters/jess/organs-side.svg"
  50610. }
  50611. },
  50612. digestiveTractFront: {
  50613. height: math.unit(2.8106580871, "feet"),
  50614. name: "Digestive Tract (Front)",
  50615. image: {
  50616. source: "./media/characters/jess/digestive-tract-front.svg"
  50617. }
  50618. },
  50619. digestiveTractSide: {
  50620. height: math.unit(2.54365045014, "feet"),
  50621. name: "Digestive Tract (Side)",
  50622. image: {
  50623. source: "./media/characters/jess/digestive-tract-side.svg"
  50624. }
  50625. },
  50626. respiratorySystemFront: {
  50627. height: math.unit(1.11196233456, "feet"),
  50628. name: "Respiratory System (Front)",
  50629. image: {
  50630. source: "./media/characters/jess/respiratory-system-front.svg"
  50631. }
  50632. },
  50633. respiratorySystemSide: {
  50634. height: math.unit(0.89327966297, "feet"),
  50635. name: "Respiratory System (Side)",
  50636. image: {
  50637. source: "./media/characters/jess/respiratory-system-side.svg"
  50638. }
  50639. },
  50640. urinaryTractFront: {
  50641. height: math.unit(1.16126356186, "feet"),
  50642. name: "Urinary Tract (Front)",
  50643. image: {
  50644. source: "./media/characters/jess/urinary-tract-front.svg"
  50645. }
  50646. },
  50647. urinaryTractSide: {
  50648. height: math.unit(1.20910039627, "feet"),
  50649. name: "Urinary Tract (Side)",
  50650. image: {
  50651. source: "./media/characters/jess/urinary-tract-side.svg"
  50652. }
  50653. },
  50654. reproductiveOrgansFront: {
  50655. height: math.unit(0.48422591566, "feet"),
  50656. name: "Reproductive Organs (Front)",
  50657. image: {
  50658. source: "./media/characters/jess/reproductive-organs-front.svg"
  50659. }
  50660. },
  50661. reproductiveOrgansSide: {
  50662. height: math.unit(0.61553314481, "feet"),
  50663. name: "Reproductive Organs (Side)",
  50664. image: {
  50665. source: "./media/characters/jess/reproductive-organs-side.svg"
  50666. }
  50667. },
  50668. breastsFront: {
  50669. height: math.unit(0.47690395121, "feet"),
  50670. name: "Breasts (Front)",
  50671. image: {
  50672. source: "./media/characters/jess/breasts-front.svg"
  50673. }
  50674. },
  50675. breastsSide: {
  50676. height: math.unit(0.30556998307, "feet"),
  50677. name: "Breasts (Side)",
  50678. image: {
  50679. source: "./media/characters/jess/breasts-side.svg"
  50680. }
  50681. },
  50682. heartFront: {
  50683. height: math.unit(0.53011022622, "feet"),
  50684. name: "Heart (Front)",
  50685. image: {
  50686. source: "./media/characters/jess/heart-front.svg"
  50687. }
  50688. },
  50689. heartSide: {
  50690. height: math.unit(0.51790695213, "feet"),
  50691. name: "Heart (Side)",
  50692. image: {
  50693. source: "./media/characters/jess/heart-side.svg"
  50694. }
  50695. },
  50696. earsAndNoseFront: {
  50697. height: math.unit(0.29385483995, "feet"),
  50698. name: "Ears and Nose (Front)",
  50699. image: {
  50700. source: "./media/characters/jess/ears-and-nose-front.svg"
  50701. }
  50702. },
  50703. earsAndNoseSide: {
  50704. height: math.unit(0.18109658741, "feet"),
  50705. name: "Ears and Nose (Side)",
  50706. image: {
  50707. source: "./media/characters/jess/ears-and-nose-side.svg"
  50708. }
  50709. },
  50710. },
  50711. [
  50712. {
  50713. name: "Normal",
  50714. height: math.unit(5 + 8/12, "feet"),
  50715. default: true
  50716. },
  50717. ]
  50718. ))
  50719. characterMakers.push(() => makeCharacter(
  50720. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50721. {
  50722. front: {
  50723. height: math.unit(6, "feet"),
  50724. weight: math.unit(6.64467e-7, "grams"),
  50725. name: "Front",
  50726. image: {
  50727. source: "./media/characters/wimpering/front.svg",
  50728. extra: 597/587,
  50729. bottom: 34/631
  50730. }
  50731. },
  50732. },
  50733. [
  50734. {
  50735. name: "Micro",
  50736. height: math.unit(0.4, "mm"),
  50737. default: true
  50738. },
  50739. ]
  50740. ))
  50741. characterMakers.push(() => makeCharacter(
  50742. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50743. {
  50744. front: {
  50745. height: math.unit(5 + 2/12, "feet"),
  50746. weight: math.unit(110, "lb"),
  50747. name: "Front",
  50748. image: {
  50749. source: "./media/characters/keltre/front.svg",
  50750. extra: 1099/1057,
  50751. bottom: 22/1121
  50752. }
  50753. },
  50754. back: {
  50755. height: math.unit(5 + 2/12, "feet"),
  50756. weight: math.unit(110, "lb"),
  50757. name: "Back",
  50758. image: {
  50759. source: "./media/characters/keltre/back.svg",
  50760. extra: 1095/1053,
  50761. bottom: 17/1112
  50762. }
  50763. },
  50764. dressed: {
  50765. height: math.unit(5 + 2/12, "feet"),
  50766. weight: math.unit(110, "lb"),
  50767. name: "Dressed",
  50768. image: {
  50769. source: "./media/characters/keltre/dressed.svg",
  50770. extra: 1099/1057,
  50771. bottom: 22/1121
  50772. }
  50773. },
  50774. winter: {
  50775. height: math.unit(5 + 2/12, "feet"),
  50776. weight: math.unit(110, "lb"),
  50777. name: "Winter",
  50778. image: {
  50779. source: "./media/characters/keltre/winter.svg",
  50780. extra: 1099/1057,
  50781. bottom: 22/1121
  50782. }
  50783. },
  50784. head: {
  50785. height: math.unit(1.61 * 0.86, "feet"),
  50786. name: "Head",
  50787. image: {
  50788. source: "./media/characters/keltre/head.svg",
  50789. extra: 534/421,
  50790. bottom: 0/534
  50791. }
  50792. },
  50793. hand: {
  50794. height: math.unit(1.3 * 0.86, "feet"),
  50795. name: "Hand",
  50796. image: {
  50797. source: "./media/characters/keltre/hand.svg"
  50798. }
  50799. },
  50800. foot: {
  50801. height: math.unit(1.8 * 0.86, "feet"),
  50802. name: "Foot",
  50803. image: {
  50804. source: "./media/characters/keltre/foot.svg"
  50805. }
  50806. },
  50807. },
  50808. [
  50809. {
  50810. name: "Fine",
  50811. height: math.unit(1, "inch")
  50812. },
  50813. {
  50814. name: "Dimnutive",
  50815. height: math.unit(4, "inches")
  50816. },
  50817. {
  50818. name: "Tiny",
  50819. height: math.unit(1, "foot")
  50820. },
  50821. {
  50822. name: "Small",
  50823. height: math.unit(3, "feet")
  50824. },
  50825. {
  50826. name: "Normal",
  50827. height: math.unit(5 + 2/12, "feet"),
  50828. default: true
  50829. },
  50830. ]
  50831. ))
  50832. characterMakers.push(() => makeCharacter(
  50833. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50834. {
  50835. front: {
  50836. height: math.unit(6 + 2/12, "feet"),
  50837. name: "Front",
  50838. image: {
  50839. source: "./media/characters/nox/front.svg",
  50840. extra: 1917/1830,
  50841. bottom: 74/1991
  50842. }
  50843. },
  50844. back: {
  50845. height: math.unit(6 + 2/12, "feet"),
  50846. name: "Back",
  50847. image: {
  50848. source: "./media/characters/nox/back.svg",
  50849. extra: 1896/1815,
  50850. bottom: 21/1917
  50851. }
  50852. },
  50853. head: {
  50854. height: math.unit(1.1, "feet"),
  50855. name: "Head",
  50856. image: {
  50857. source: "./media/characters/nox/head.svg",
  50858. extra: 874/704,
  50859. bottom: 0/874
  50860. }
  50861. },
  50862. tattoo: {
  50863. height: math.unit(0.729, "feet"),
  50864. name: "Tattoo",
  50865. image: {
  50866. source: "./media/characters/nox/tattoo.svg"
  50867. }
  50868. },
  50869. },
  50870. [
  50871. {
  50872. name: "Normal",
  50873. height: math.unit(6 + 2/12, "feet")
  50874. },
  50875. {
  50876. name: "Gigamacro",
  50877. height: math.unit(2, "earths"),
  50878. default: true
  50879. },
  50880. {
  50881. name: "Cosmic",
  50882. height: math.unit(867, "yottameters")
  50883. },
  50884. ]
  50885. ))
  50886. characterMakers.push(() => makeCharacter(
  50887. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50888. {
  50889. front: {
  50890. height: math.unit(6, "feet"),
  50891. weight: math.unit(150, "lb"),
  50892. name: "Front",
  50893. image: {
  50894. source: "./media/characters/caspian/front.svg",
  50895. extra: 1443/1359,
  50896. bottom: 0/1443
  50897. }
  50898. },
  50899. back: {
  50900. height: math.unit(6, "feet"),
  50901. weight: math.unit(150, "lb"),
  50902. name: "Back",
  50903. image: {
  50904. source: "./media/characters/caspian/back.svg",
  50905. extra: 1379/1309,
  50906. bottom: 0/1379
  50907. }
  50908. },
  50909. head: {
  50910. height: math.unit(0.9, "feet"),
  50911. name: "Head",
  50912. image: {
  50913. source: "./media/characters/caspian/head.svg",
  50914. extra: 692/492,
  50915. bottom: 0/692
  50916. }
  50917. },
  50918. headAlt: {
  50919. height: math.unit(0.95, "feet"),
  50920. name: "Head (Alt)",
  50921. image: {
  50922. source: "./media/characters/caspian/head-alt.svg",
  50923. extra: 668/508,
  50924. bottom: 0/668
  50925. }
  50926. },
  50927. hand: {
  50928. height: math.unit(0.8, "feet"),
  50929. name: "Hand",
  50930. image: {
  50931. source: "./media/characters/caspian/hand.svg"
  50932. }
  50933. },
  50934. paw: {
  50935. height: math.unit(0.95, "feet"),
  50936. name: "Paw",
  50937. image: {
  50938. source: "./media/characters/caspian/paw.svg"
  50939. }
  50940. },
  50941. },
  50942. [
  50943. {
  50944. name: "Normal",
  50945. height: math.unit(162, "feet"),
  50946. default: true
  50947. },
  50948. ]
  50949. ))
  50950. characterMakers.push(() => makeCharacter(
  50951. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50952. {
  50953. front: {
  50954. height: math.unit(6, "feet"),
  50955. name: "Front",
  50956. image: {
  50957. source: "./media/characters/myra-aisling/front.svg",
  50958. extra: 1268/1166,
  50959. bottom: 73/1341
  50960. }
  50961. },
  50962. back: {
  50963. height: math.unit(6, "feet"),
  50964. name: "Back",
  50965. image: {
  50966. source: "./media/characters/myra-aisling/back.svg",
  50967. extra: 1249/1149,
  50968. bottom: 79/1328
  50969. }
  50970. },
  50971. dressed: {
  50972. height: math.unit(6, "feet"),
  50973. name: "Dressed",
  50974. image: {
  50975. source: "./media/characters/myra-aisling/dressed.svg",
  50976. extra: 1290/1189,
  50977. bottom: 47/1337
  50978. }
  50979. },
  50980. hand: {
  50981. height: math.unit(1.1, "feet"),
  50982. name: "Hand",
  50983. image: {
  50984. source: "./media/characters/myra-aisling/hand.svg"
  50985. }
  50986. },
  50987. paw: {
  50988. height: math.unit(1.23, "feet"),
  50989. name: "Paw",
  50990. image: {
  50991. source: "./media/characters/myra-aisling/paw.svg"
  50992. }
  50993. },
  50994. },
  50995. [
  50996. {
  50997. name: "Normal",
  50998. height: math.unit(160, "feet"),
  50999. default: true
  51000. },
  51001. ]
  51002. ))
  51003. characterMakers.push(() => makeCharacter(
  51004. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51005. {
  51006. front: {
  51007. height: math.unit(6, "feet"),
  51008. name: "Front",
  51009. image: {
  51010. source: "./media/characters/tenley-sidero/front.svg",
  51011. extra: 1365/1276,
  51012. bottom: 47/1412
  51013. }
  51014. },
  51015. back: {
  51016. height: math.unit(6, "feet"),
  51017. name: "Back",
  51018. image: {
  51019. source: "./media/characters/tenley-sidero/back.svg",
  51020. extra: 1383/1283,
  51021. bottom: 35/1418
  51022. }
  51023. },
  51024. dressed: {
  51025. height: math.unit(6, "feet"),
  51026. name: "Dressed",
  51027. image: {
  51028. source: "./media/characters/tenley-sidero/dressed.svg",
  51029. extra: 1364/1275,
  51030. bottom: 42/1406
  51031. }
  51032. },
  51033. head: {
  51034. height: math.unit(1.47, "feet"),
  51035. name: "Head",
  51036. image: {
  51037. source: "./media/characters/tenley-sidero/head.svg",
  51038. extra: 610/490,
  51039. bottom: 0/610
  51040. }
  51041. },
  51042. },
  51043. [
  51044. {
  51045. name: "Normal",
  51046. height: math.unit(154, "feet"),
  51047. default: true
  51048. },
  51049. ]
  51050. ))
  51051. characterMakers.push(() => makeCharacter(
  51052. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51053. {
  51054. front: {
  51055. height: math.unit(5, "inches"),
  51056. name: "Front",
  51057. image: {
  51058. source: "./media/characters/mallory/front.svg",
  51059. extra: 1919/1678,
  51060. bottom: 29/1948
  51061. }
  51062. },
  51063. hand: {
  51064. height: math.unit(0.73, "inches"),
  51065. name: "Hand",
  51066. image: {
  51067. source: "./media/characters/mallory/hand.svg"
  51068. }
  51069. },
  51070. paw: {
  51071. height: math.unit(0.68, "inches"),
  51072. name: "Paw",
  51073. image: {
  51074. source: "./media/characters/mallory/paw.svg"
  51075. }
  51076. },
  51077. },
  51078. [
  51079. {
  51080. name: "Small",
  51081. height: math.unit(5, "inches"),
  51082. default: true
  51083. },
  51084. ]
  51085. ))
  51086. characterMakers.push(() => makeCharacter(
  51087. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51088. {
  51089. naked: {
  51090. height: math.unit(6, "feet"),
  51091. name: "Naked",
  51092. image: {
  51093. source: "./media/characters/mab/naked.svg",
  51094. extra: 1855/1757,
  51095. bottom: 208/2063
  51096. }
  51097. },
  51098. outside: {
  51099. height: math.unit(6, "feet"),
  51100. name: "Outside",
  51101. image: {
  51102. source: "./media/characters/mab/outside.svg",
  51103. extra: 1855/1757,
  51104. bottom: 208/2063
  51105. }
  51106. },
  51107. party: {
  51108. height: math.unit(6, "feet"),
  51109. name: "Party",
  51110. image: {
  51111. source: "./media/characters/mab/party.svg",
  51112. extra: 1855/1757,
  51113. bottom: 208/2063
  51114. }
  51115. },
  51116. },
  51117. [
  51118. {
  51119. name: "Normal",
  51120. height: math.unit(165, "feet"),
  51121. default: true
  51122. },
  51123. ]
  51124. ))
  51125. characterMakers.push(() => makeCharacter(
  51126. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51127. {
  51128. feral: {
  51129. height: math.unit(12, "feet"),
  51130. weight: math.unit(20000, "lb"),
  51131. name: "Side",
  51132. image: {
  51133. source: "./media/characters/winter/feral.svg",
  51134. extra: 1286/943,
  51135. bottom: 112/1398
  51136. },
  51137. form: "feral",
  51138. default: true
  51139. },
  51140. feralNsfw: {
  51141. height: math.unit(12, "feet"),
  51142. weight: math.unit(20000, "lb"),
  51143. name: "Side (NSFW)",
  51144. image: {
  51145. source: "./media/characters/winter/feral-nsfw.svg",
  51146. extra: 1286/943,
  51147. bottom: 112/1398
  51148. },
  51149. form: "feral"
  51150. },
  51151. dick: {
  51152. height: math.unit(3.79, "feet"),
  51153. name: "Dick",
  51154. image: {
  51155. source: "./media/characters/winter/dick.svg"
  51156. },
  51157. form: "feral"
  51158. },
  51159. anthro: {
  51160. height: math.unit(12, "feet"),
  51161. weight: math.unit(10, "tons"),
  51162. name: "Anthro",
  51163. image: {
  51164. source: "./media/characters/winter/anthro.svg",
  51165. extra: 1701/1553,
  51166. bottom: 64/1765
  51167. },
  51168. form: "anthro",
  51169. default: true
  51170. },
  51171. },
  51172. [
  51173. {
  51174. name: "Big",
  51175. height: math.unit(12, "feet"),
  51176. default: true,
  51177. form: "feral"
  51178. },
  51179. {
  51180. name: "Big",
  51181. height: math.unit(12, "feet"),
  51182. default: true,
  51183. form: "anthro"
  51184. },
  51185. ],
  51186. {
  51187. "feral": {
  51188. name: "Feral",
  51189. default: true
  51190. },
  51191. "anthro": {
  51192. name: "Anthro"
  51193. }
  51194. }
  51195. ))
  51196. characterMakers.push(() => makeCharacter(
  51197. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51198. {
  51199. front: {
  51200. height: math.unit(4.1, "inches"),
  51201. name: "Front",
  51202. image: {
  51203. source: "./media/characters/alto/front.svg",
  51204. extra: 736/627,
  51205. bottom: 90/826
  51206. }
  51207. },
  51208. },
  51209. [
  51210. {
  51211. name: "Normal",
  51212. height: math.unit(4.1, "inches"),
  51213. default: true
  51214. },
  51215. ]
  51216. ))
  51217. characterMakers.push(() => makeCharacter(
  51218. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51219. {
  51220. sitting: {
  51221. height: math.unit(3, "feet"),
  51222. name: "Sitting",
  51223. image: {
  51224. source: "./media/characters/ratstrid-v/sitting.svg",
  51225. extra: 355/310,
  51226. bottom: 136/491
  51227. }
  51228. },
  51229. },
  51230. [
  51231. {
  51232. name: "Normal",
  51233. height: math.unit(3, "feet"),
  51234. default: true
  51235. },
  51236. ]
  51237. ))
  51238. characterMakers.push(() => makeCharacter(
  51239. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51240. {
  51241. back: {
  51242. height: math.unit(6, "feet"),
  51243. weight: math.unit(450, "lb"),
  51244. name: "Back",
  51245. image: {
  51246. source: "./media/characters/siz/back.svg",
  51247. extra: 1449/1274,
  51248. bottom: 13/1462
  51249. }
  51250. },
  51251. },
  51252. [
  51253. {
  51254. name: "Smallest",
  51255. height: math.unit(18 + 3/12, "feet")
  51256. },
  51257. {
  51258. name: "Modest",
  51259. height: math.unit(56 + 8/12, "feet"),
  51260. default: true
  51261. },
  51262. {
  51263. name: "Largest",
  51264. height: math.unit(3590, "feet")
  51265. },
  51266. ]
  51267. ))
  51268. characterMakers.push(() => makeCharacter(
  51269. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51270. {
  51271. front: {
  51272. height: math.unit(5 + 9/12, "feet"),
  51273. weight: math.unit(150, "lb"),
  51274. name: "Front",
  51275. image: {
  51276. source: "./media/characters/ven/front.svg",
  51277. extra: 1372/1320,
  51278. bottom: 73/1445
  51279. }
  51280. },
  51281. side: {
  51282. height: math.unit(5 + 9/12, "feet"),
  51283. weight: math.unit(1150, "lb"),
  51284. name: "Side",
  51285. image: {
  51286. source: "./media/characters/ven/side.svg",
  51287. extra: 1119/1070,
  51288. bottom: 42/1161
  51289. },
  51290. default: true
  51291. },
  51292. },
  51293. [
  51294. {
  51295. name: "Normal",
  51296. height: math.unit(5 + 9/12, "feet"),
  51297. default: true
  51298. },
  51299. ]
  51300. ))
  51301. characterMakers.push(() => makeCharacter(
  51302. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51303. {
  51304. front: {
  51305. height: math.unit(12, "feet"),
  51306. weight: math.unit(1000, "kg"),
  51307. name: "Front",
  51308. image: {
  51309. source: "./media/characters/maple/front.svg",
  51310. extra: 1193/1081,
  51311. bottom: 22/1215
  51312. }
  51313. },
  51314. },
  51315. [
  51316. {
  51317. name: "Compressed",
  51318. height: math.unit(7, "feet")
  51319. },
  51320. {
  51321. name: "Normal",
  51322. height: math.unit(12, "feet"),
  51323. default: true
  51324. },
  51325. ]
  51326. ))
  51327. characterMakers.push(() => makeCharacter(
  51328. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51329. {
  51330. front: {
  51331. height: math.unit(9, "feet"),
  51332. weight: math.unit(1500, "lb"),
  51333. name: "Front",
  51334. image: {
  51335. source: "./media/characters/nora/front.svg",
  51336. extra: 1348/1286,
  51337. bottom: 218/1566
  51338. }
  51339. },
  51340. erect: {
  51341. height: math.unit(9, "feet"),
  51342. weight: math.unit(11500, "lb"),
  51343. name: "Erect",
  51344. image: {
  51345. source: "./media/characters/nora/erect.svg",
  51346. extra: 1488/1433,
  51347. bottom: 133/1621
  51348. }
  51349. },
  51350. },
  51351. [
  51352. {
  51353. name: "Normal",
  51354. height: math.unit(9, "feet"),
  51355. default: true
  51356. },
  51357. ]
  51358. ))
  51359. characterMakers.push(() => makeCharacter(
  51360. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51361. {
  51362. front: {
  51363. height: math.unit(25, "feet"),
  51364. weight: math.unit(27500, "lb"),
  51365. name: "Front",
  51366. image: {
  51367. source: "./media/characters/north-caudin/front.svg",
  51368. extra: 1184/1082,
  51369. bottom: 23/1207
  51370. }
  51371. },
  51372. },
  51373. [
  51374. {
  51375. name: "Compressed",
  51376. height: math.unit(10, "feet")
  51377. },
  51378. {
  51379. name: "Normal",
  51380. height: math.unit(25, "feet"),
  51381. default: true
  51382. },
  51383. ]
  51384. ))
  51385. characterMakers.push(() => makeCharacter(
  51386. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51387. {
  51388. front: {
  51389. height: math.unit(9, "feet"),
  51390. weight: math.unit(1250, "lb"),
  51391. name: "Front",
  51392. image: {
  51393. source: "./media/characters/merrian/front.svg",
  51394. extra: 2393/2304,
  51395. bottom: 40/2433
  51396. }
  51397. },
  51398. },
  51399. [
  51400. {
  51401. name: "Normal",
  51402. height: math.unit(9, "feet"),
  51403. default: true
  51404. },
  51405. ]
  51406. ))
  51407. characterMakers.push(() => makeCharacter(
  51408. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51409. {
  51410. front: {
  51411. height: math.unit(9, "feet"),
  51412. weight: math.unit(1000, "lb"),
  51413. name: "Front",
  51414. image: {
  51415. source: "./media/characters/hazel/front.svg",
  51416. extra: 2351/2298,
  51417. bottom: 38/2389
  51418. }
  51419. },
  51420. },
  51421. [
  51422. {
  51423. name: "Normal",
  51424. height: math.unit(9, "feet"),
  51425. default: true
  51426. },
  51427. ]
  51428. ))
  51429. characterMakers.push(() => makeCharacter(
  51430. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51431. {
  51432. front: {
  51433. height: math.unit(13, "feet"),
  51434. weight: math.unit(3200, "lb"),
  51435. name: "Front",
  51436. image: {
  51437. source: "./media/characters/emma/front.svg",
  51438. extra: 2263/2029,
  51439. bottom: 68/2331
  51440. }
  51441. },
  51442. },
  51443. [
  51444. {
  51445. name: "Normal",
  51446. height: math.unit(13, "feet"),
  51447. default: true
  51448. },
  51449. ]
  51450. ))
  51451. characterMakers.push(() => makeCharacter(
  51452. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51453. {
  51454. front: {
  51455. height: math.unit(11 + 9/12, "feet"),
  51456. weight: math.unit(2500, "lb"),
  51457. name: "Front",
  51458. image: {
  51459. source: "./media/characters/ilumina/front.svg",
  51460. extra: 2248/2209,
  51461. bottom: 164/2412
  51462. }
  51463. },
  51464. },
  51465. [
  51466. {
  51467. name: "Normal",
  51468. height: math.unit(11 + 9/12, "feet"),
  51469. default: true
  51470. },
  51471. ]
  51472. ))
  51473. characterMakers.push(() => makeCharacter(
  51474. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51475. {
  51476. front: {
  51477. height: math.unit(8 + 10/12, "feet"),
  51478. weight: math.unit(1350, "lb"),
  51479. name: "Front",
  51480. image: {
  51481. source: "./media/characters/moonshine/front.svg",
  51482. extra: 2395/2288,
  51483. bottom: 40/2435
  51484. }
  51485. },
  51486. },
  51487. [
  51488. {
  51489. name: "Normal",
  51490. height: math.unit(8 + 10/12, "feet"),
  51491. default: true
  51492. },
  51493. ]
  51494. ))
  51495. characterMakers.push(() => makeCharacter(
  51496. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51497. {
  51498. front: {
  51499. height: math.unit(14, "feet"),
  51500. weight: math.unit(3400, "lb"),
  51501. name: "Front",
  51502. image: {
  51503. source: "./media/characters/aletia/front.svg",
  51504. extra: 1185/1052,
  51505. bottom: 21/1206
  51506. }
  51507. },
  51508. },
  51509. [
  51510. {
  51511. name: "Compressed",
  51512. height: math.unit(8, "feet")
  51513. },
  51514. {
  51515. name: "Normal",
  51516. height: math.unit(14, "feet"),
  51517. default: true
  51518. },
  51519. ]
  51520. ))
  51521. characterMakers.push(() => makeCharacter(
  51522. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51523. {
  51524. front: {
  51525. height: math.unit(17, "feet"),
  51526. weight: math.unit(6500, "lb"),
  51527. name: "Front",
  51528. image: {
  51529. source: "./media/characters/deidra/front.svg",
  51530. extra: 1201/1081,
  51531. bottom: 16/1217
  51532. }
  51533. },
  51534. },
  51535. [
  51536. {
  51537. name: "Compressed",
  51538. height: math.unit(9 + 6/12, "feet")
  51539. },
  51540. {
  51541. name: "Normal",
  51542. height: math.unit(17, "feet"),
  51543. default: true
  51544. },
  51545. ]
  51546. ))
  51547. characterMakers.push(() => makeCharacter(
  51548. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51549. {
  51550. front: {
  51551. height: math.unit(7 + 4/12, "feet"),
  51552. weight: math.unit(280, "lb"),
  51553. name: "Front",
  51554. image: {
  51555. source: "./media/characters/freki-yrmori/front.svg",
  51556. extra: 1286/1182,
  51557. bottom: 29/1315
  51558. }
  51559. },
  51560. maw: {
  51561. height: math.unit(0.9, "feet"),
  51562. name: "Maw",
  51563. image: {
  51564. source: "./media/characters/freki-yrmori/maw.svg"
  51565. }
  51566. },
  51567. },
  51568. [
  51569. {
  51570. name: "Normal",
  51571. height: math.unit(7 + 4/12, "feet"),
  51572. default: true
  51573. },
  51574. {
  51575. name: "Macro",
  51576. height: math.unit(38.5, "meters")
  51577. },
  51578. ]
  51579. ))
  51580. characterMakers.push(() => makeCharacter(
  51581. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51582. {
  51583. side: {
  51584. height: math.unit(47.2, "meters"),
  51585. weight: math.unit(10000, "tons"),
  51586. name: "Side",
  51587. image: {
  51588. source: "./media/characters/aetherios/side.svg",
  51589. extra: 2363/642,
  51590. bottom: 221/2584
  51591. }
  51592. },
  51593. top: {
  51594. height: math.unit(240, "meters"),
  51595. weight: math.unit(10000, "tons"),
  51596. name: "Top",
  51597. image: {
  51598. source: "./media/characters/aetherios/top.svg"
  51599. }
  51600. },
  51601. bottom: {
  51602. height: math.unit(240, "meters"),
  51603. weight: math.unit(10000, "tons"),
  51604. name: "Bottom",
  51605. image: {
  51606. source: "./media/characters/aetherios/bottom.svg"
  51607. }
  51608. },
  51609. head: {
  51610. height: math.unit(38.6, "meters"),
  51611. name: "Head",
  51612. image: {
  51613. source: "./media/characters/aetherios/head.svg",
  51614. extra: 1335/1112,
  51615. bottom: 0/1335
  51616. }
  51617. },
  51618. front: {
  51619. height: math.unit(29, "meters"),
  51620. name: "Front",
  51621. image: {
  51622. source: "./media/characters/aetherios/front.svg",
  51623. extra: 1266/953,
  51624. bottom: 158/1424
  51625. }
  51626. },
  51627. maw: {
  51628. height: math.unit(16.37, "meters"),
  51629. name: "Maw",
  51630. image: {
  51631. source: "./media/characters/aetherios/maw.svg",
  51632. extra: 748/637,
  51633. bottom: 0/748
  51634. },
  51635. extraAttributes: {
  51636. preyCapacity: {
  51637. name: "Capacity",
  51638. power: 3,
  51639. type: "volume",
  51640. base: math.unit(1000, "people")
  51641. },
  51642. tongueSize: {
  51643. name: "Tongue Size",
  51644. power: 2,
  51645. type: "area",
  51646. base: math.unit(21, "m^2")
  51647. }
  51648. }
  51649. },
  51650. forepaw: {
  51651. height: math.unit(18, "meters"),
  51652. name: "Forepaw",
  51653. image: {
  51654. source: "./media/characters/aetherios/forepaw.svg"
  51655. }
  51656. },
  51657. hindpaw: {
  51658. height: math.unit(23, "meters"),
  51659. name: "Hindpaw",
  51660. image: {
  51661. source: "./media/characters/aetherios/hindpaw.svg"
  51662. }
  51663. },
  51664. genitals: {
  51665. height: math.unit(42, "meters"),
  51666. name: "Genitals",
  51667. image: {
  51668. source: "./media/characters/aetherios/genitals.svg"
  51669. }
  51670. },
  51671. },
  51672. [
  51673. {
  51674. name: "Normal",
  51675. height: math.unit(47.2, "meters"),
  51676. default: true
  51677. },
  51678. {
  51679. name: "Macro",
  51680. height: math.unit(160, "meters")
  51681. },
  51682. {
  51683. name: "Mega",
  51684. height: math.unit(1.87, "km")
  51685. },
  51686. {
  51687. name: "Giga",
  51688. height: math.unit(40000, "km")
  51689. },
  51690. {
  51691. name: "Stellar",
  51692. height: math.unit(158000000, "km")
  51693. },
  51694. {
  51695. name: "Cosmic",
  51696. height: math.unit(9.46e12, "km")
  51697. },
  51698. ]
  51699. ))
  51700. characterMakers.push(() => makeCharacter(
  51701. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51702. {
  51703. front: {
  51704. height: math.unit(5 + 4/12, "feet"),
  51705. weight: math.unit(80, "lb"),
  51706. name: "Front",
  51707. image: {
  51708. source: "./media/characters/mizu-gieeg/front.svg",
  51709. extra: 850/709,
  51710. bottom: 52/902
  51711. }
  51712. },
  51713. back: {
  51714. height: math.unit(5 + 4/12, "feet"),
  51715. weight: math.unit(80, "lb"),
  51716. name: "Back",
  51717. image: {
  51718. source: "./media/characters/mizu-gieeg/back.svg",
  51719. extra: 882/745,
  51720. bottom: 25/907
  51721. }
  51722. },
  51723. },
  51724. [
  51725. {
  51726. name: "Normal",
  51727. height: math.unit(5 + 4/12, "feet"),
  51728. default: true
  51729. },
  51730. ]
  51731. ))
  51732. characterMakers.push(() => makeCharacter(
  51733. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51734. {
  51735. front: {
  51736. height: math.unit(6, "feet"),
  51737. name: "Front",
  51738. image: {
  51739. source: "./media/characters/roselle-st-papier/front.svg",
  51740. extra: 1430/1280,
  51741. bottom: 37/1467
  51742. }
  51743. },
  51744. back: {
  51745. height: math.unit(6, "feet"),
  51746. name: "Back",
  51747. image: {
  51748. source: "./media/characters/roselle-st-papier/back.svg",
  51749. extra: 1491/1296,
  51750. bottom: 23/1514
  51751. }
  51752. },
  51753. ear: {
  51754. height: math.unit(1.26, "feet"),
  51755. name: "Ear",
  51756. image: {
  51757. source: "./media/characters/roselle-st-papier/ear.svg"
  51758. }
  51759. },
  51760. },
  51761. [
  51762. {
  51763. name: "Normal",
  51764. height: math.unit(150, "feet"),
  51765. default: true
  51766. },
  51767. ]
  51768. ))
  51769. characterMakers.push(() => makeCharacter(
  51770. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51771. {
  51772. front: {
  51773. height: math.unit(1, "inches"),
  51774. name: "Front",
  51775. image: {
  51776. source: "./media/characters/valargent/front.svg",
  51777. extra: 1825/1694,
  51778. bottom: 62/1887
  51779. }
  51780. },
  51781. back: {
  51782. height: math.unit(1, "inches"),
  51783. name: "Back",
  51784. image: {
  51785. source: "./media/characters/valargent/back.svg",
  51786. extra: 1775/1682,
  51787. bottom: 88/1863
  51788. }
  51789. },
  51790. },
  51791. [
  51792. {
  51793. name: "Micro",
  51794. height: math.unit(1, "inch"),
  51795. default: true
  51796. },
  51797. ]
  51798. ))
  51799. characterMakers.push(() => makeCharacter(
  51800. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51801. {
  51802. front: {
  51803. height: math.unit(3.4, "meters"),
  51804. name: "Front",
  51805. image: {
  51806. source: "./media/characters/zarina/front.svg",
  51807. extra: 1733/1425,
  51808. bottom: 93/1826
  51809. }
  51810. },
  51811. squatting: {
  51812. height: math.unit(2.14, "meters"),
  51813. name: "Squatting",
  51814. image: {
  51815. source: "./media/characters/zarina/squatting.svg",
  51816. extra: 1073/788,
  51817. bottom: 63/1136
  51818. }
  51819. },
  51820. back: {
  51821. height: math.unit(2.14, "meters"),
  51822. name: "Back",
  51823. image: {
  51824. source: "./media/characters/zarina/back.svg",
  51825. extra: 1128/885,
  51826. bottom: 0/1128
  51827. }
  51828. },
  51829. },
  51830. [
  51831. {
  51832. name: "Normal",
  51833. height: math.unit(3.4, "meters"),
  51834. default: true
  51835. },
  51836. {
  51837. name: "Big",
  51838. height: math.unit(5, "meters")
  51839. },
  51840. {
  51841. name: "Macro",
  51842. height: math.unit(110, "meters")
  51843. },
  51844. ]
  51845. ))
  51846. characterMakers.push(() => makeCharacter(
  51847. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51848. {
  51849. front: {
  51850. height: math.unit(7, "feet"),
  51851. name: "Front",
  51852. image: {
  51853. source: "./media/characters/ventus-astro-fox/front.svg",
  51854. extra: 1792/1623,
  51855. bottom: 28/1820
  51856. }
  51857. },
  51858. back: {
  51859. height: math.unit(7, "feet"),
  51860. name: "Back",
  51861. image: {
  51862. source: "./media/characters/ventus-astro-fox/back.svg",
  51863. extra: 1789/1620,
  51864. bottom: 31/1820
  51865. }
  51866. },
  51867. outfit: {
  51868. height: math.unit(7, "feet"),
  51869. name: "Outfit",
  51870. image: {
  51871. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51872. extra: 1054/925,
  51873. bottom: 15/1069
  51874. }
  51875. },
  51876. head: {
  51877. height: math.unit(1.12, "feet"),
  51878. name: "Head",
  51879. image: {
  51880. source: "./media/characters/ventus-astro-fox/head.svg",
  51881. extra: 866/504,
  51882. bottom: 0/866
  51883. }
  51884. },
  51885. hand: {
  51886. height: math.unit(1, "feet"),
  51887. name: "Hand",
  51888. image: {
  51889. source: "./media/characters/ventus-astro-fox/hand.svg"
  51890. }
  51891. },
  51892. paw: {
  51893. height: math.unit(1.5, "feet"),
  51894. name: "Paw",
  51895. image: {
  51896. source: "./media/characters/ventus-astro-fox/paw.svg"
  51897. }
  51898. },
  51899. },
  51900. [
  51901. {
  51902. name: "Normal",
  51903. height: math.unit(7, "feet"),
  51904. default: true
  51905. },
  51906. {
  51907. name: "Macro",
  51908. height: math.unit(200, "feet")
  51909. },
  51910. {
  51911. name: "Cosmic",
  51912. height: math.unit(3, "universes")
  51913. },
  51914. ]
  51915. ))
  51916. characterMakers.push(() => makeCharacter(
  51917. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51918. {
  51919. front: {
  51920. height: math.unit(3, "meters"),
  51921. weight: math.unit(7000, "lb"),
  51922. name: "Front",
  51923. image: {
  51924. source: "./media/characters/core-t/front.svg",
  51925. extra: 5729/4941,
  51926. bottom: 1129/6858
  51927. }
  51928. },
  51929. },
  51930. [
  51931. {
  51932. name: "Big",
  51933. height: math.unit(3, "meters"),
  51934. default: true
  51935. },
  51936. ]
  51937. ))
  51938. characterMakers.push(() => makeCharacter(
  51939. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51940. {
  51941. normal: {
  51942. height: math.unit(6 + 6/12, "feet"),
  51943. weight: math.unit(275, "lb"),
  51944. name: "Front",
  51945. image: {
  51946. source: "./media/characters/cadbunny/normal.svg",
  51947. extra: 1129/947,
  51948. bottom: 93/1222
  51949. },
  51950. default: true,
  51951. form: "normal"
  51952. },
  51953. gigantamax: {
  51954. height: math.unit(26, "feet"),
  51955. weight: math.unit(16000, "lb"),
  51956. name: "Front",
  51957. image: {
  51958. source: "./media/characters/cadbunny/gigantamax.svg",
  51959. extra: 1133/944,
  51960. bottom: 90/1223
  51961. },
  51962. default: true,
  51963. form: "gigantamax"
  51964. },
  51965. },
  51966. [
  51967. {
  51968. name: "Normal",
  51969. height: math.unit(6 + 6/12, "feet"),
  51970. default: true,
  51971. form: "normal"
  51972. },
  51973. {
  51974. name: "Small",
  51975. height: math.unit(26, "feet"),
  51976. default: true,
  51977. form: "gigantamax"
  51978. },
  51979. {
  51980. name: "Large",
  51981. height: math.unit(78, "feet"),
  51982. form: "gigantamax"
  51983. },
  51984. ],
  51985. {
  51986. "normal": {
  51987. name: "Normal",
  51988. default: true
  51989. },
  51990. "gigantamax": {
  51991. name: "Gigantamax"
  51992. }
  51993. }
  51994. ))
  51995. characterMakers.push(() => makeCharacter(
  51996. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51997. {
  51998. anthroFront: {
  51999. height: math.unit(8, "feet"),
  52000. weight: math.unit(300, "lb"),
  52001. name: "Front",
  52002. image: {
  52003. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52004. extra: 1272/1176,
  52005. bottom: 53/1325
  52006. },
  52007. form: "anthro",
  52008. default: true
  52009. },
  52010. feralSide: {
  52011. height: math.unit(4, "feet"),
  52012. weight: math.unit(250, "lb"),
  52013. name: "Side",
  52014. image: {
  52015. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52016. extra: 731/621,
  52017. bottom: 0/731
  52018. },
  52019. form: "feral",
  52020. default: true
  52021. },
  52022. },
  52023. [
  52024. {
  52025. name: "Regular",
  52026. height: math.unit(8, "feet"),
  52027. form: "anthro"
  52028. },
  52029. {
  52030. name: "Macro",
  52031. height: math.unit(250, "feet"),
  52032. form: "anthro",
  52033. default: true
  52034. },
  52035. {
  52036. name: "Regular",
  52037. height: math.unit(4, "feet"),
  52038. form: "feral"
  52039. },
  52040. {
  52041. name: "Macro",
  52042. height: math.unit(125, "feet"),
  52043. form: "feral",
  52044. default: true
  52045. },
  52046. ],
  52047. {
  52048. "anthro": {
  52049. name: "Anthro",
  52050. default: true
  52051. },
  52052. "feral": {
  52053. name: "Feral",
  52054. },
  52055. }
  52056. ))
  52057. characterMakers.push(() => makeCharacter(
  52058. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52059. {
  52060. front: {
  52061. height: math.unit(11 + 10/12, "feet"),
  52062. weight: math.unit(1587, "kg"),
  52063. name: "Front",
  52064. image: {
  52065. source: "./media/characters/maple-javira-dragon/front.svg",
  52066. extra: 1136/744,
  52067. bottom: 73/1209
  52068. }
  52069. },
  52070. side: {
  52071. height: math.unit(11 + 10/12, "feet"),
  52072. weight: math.unit(1587, "kg"),
  52073. name: "Side",
  52074. image: {
  52075. source: "./media/characters/maple-javira-dragon/side.svg",
  52076. extra: 712/505,
  52077. bottom: 17/729
  52078. }
  52079. },
  52080. head: {
  52081. height: math.unit(8.05, "feet"),
  52082. name: "Head",
  52083. image: {
  52084. source: "./media/characters/maple-javira-dragon/head.svg",
  52085. extra: 1420/1344,
  52086. bottom: 0/1420
  52087. }
  52088. },
  52089. },
  52090. [
  52091. {
  52092. name: "Normal",
  52093. height: math.unit(11 + 10/12, "feet"),
  52094. default: true
  52095. },
  52096. ]
  52097. ))
  52098. characterMakers.push(() => makeCharacter(
  52099. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52100. {
  52101. front: {
  52102. height: math.unit(117, "cm"),
  52103. weight: math.unit(50, "kg"),
  52104. name: "Front",
  52105. image: {
  52106. source: "./media/characters/sonia-wyverntail/front.svg",
  52107. extra: 708/592,
  52108. bottom: 25/733
  52109. }
  52110. },
  52111. },
  52112. [
  52113. {
  52114. name: "Normal",
  52115. height: math.unit(117, "cm"),
  52116. default: true
  52117. },
  52118. ]
  52119. ))
  52120. characterMakers.push(() => makeCharacter(
  52121. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52122. {
  52123. front: {
  52124. height: math.unit(6 + 5/12, "feet"),
  52125. name: "Front",
  52126. image: {
  52127. source: "./media/characters/micah/front.svg",
  52128. extra: 1758/1546,
  52129. bottom: 214/1972
  52130. }
  52131. },
  52132. },
  52133. [
  52134. {
  52135. name: "Normal",
  52136. height: math.unit(6 + 5/12, "feet"),
  52137. default: true
  52138. },
  52139. ]
  52140. ))
  52141. characterMakers.push(() => makeCharacter(
  52142. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52143. {
  52144. front: {
  52145. height: math.unit(1.75, "meters"),
  52146. weight: math.unit(100, "kg"),
  52147. name: "Front",
  52148. image: {
  52149. source: "./media/characters/zarya/front.svg",
  52150. extra: 741/735,
  52151. bottom: 44/785
  52152. },
  52153. extraAttributes: {
  52154. "tailLength": {
  52155. name: "Tail Length",
  52156. power: 1,
  52157. type: "length",
  52158. base: math.unit(180, "cm")
  52159. },
  52160. "pawLength": {
  52161. name: "Paw Length",
  52162. power: 1,
  52163. type: "length",
  52164. base: math.unit(31, "cm")
  52165. },
  52166. }
  52167. },
  52168. side: {
  52169. height: math.unit(1.75, "meters"),
  52170. weight: math.unit(100, "kg"),
  52171. name: "Side",
  52172. image: {
  52173. source: "./media/characters/zarya/side.svg",
  52174. extra: 776/770,
  52175. bottom: 17/793
  52176. },
  52177. extraAttributes: {
  52178. "tailLength": {
  52179. name: "Tail Length",
  52180. power: 1,
  52181. type: "length",
  52182. base: math.unit(180, "cm")
  52183. },
  52184. "pawLength": {
  52185. name: "Paw Length",
  52186. power: 1,
  52187. type: "length",
  52188. base: math.unit(31, "cm")
  52189. },
  52190. }
  52191. },
  52192. back: {
  52193. height: math.unit(1.75, "meters"),
  52194. weight: math.unit(100, "kg"),
  52195. name: "Back",
  52196. image: {
  52197. source: "./media/characters/zarya/back.svg",
  52198. extra: 741/735,
  52199. bottom: 44/785
  52200. },
  52201. extraAttributes: {
  52202. "tailLength": {
  52203. name: "Tail Length",
  52204. power: 1,
  52205. type: "length",
  52206. base: math.unit(180, "cm")
  52207. },
  52208. "pawLength": {
  52209. name: "Paw Length",
  52210. power: 1,
  52211. type: "length",
  52212. base: math.unit(31, "cm")
  52213. },
  52214. }
  52215. },
  52216. frontNoTail: {
  52217. height: math.unit(1.75, "meters"),
  52218. weight: math.unit(100, "kg"),
  52219. name: "Front (No Tail)",
  52220. image: {
  52221. source: "./media/characters/zarya/front-no-tail.svg",
  52222. extra: 741/735,
  52223. bottom: 44/785
  52224. },
  52225. extraAttributes: {
  52226. "tailLength": {
  52227. name: "Tail Length",
  52228. power: 1,
  52229. type: "length",
  52230. base: math.unit(180, "cm")
  52231. },
  52232. "pawLength": {
  52233. name: "Paw Length",
  52234. power: 1,
  52235. type: "length",
  52236. base: math.unit(31, "cm")
  52237. },
  52238. }
  52239. },
  52240. dressed: {
  52241. height: math.unit(1.75, "meters"),
  52242. weight: math.unit(100, "kg"),
  52243. name: "Dressed",
  52244. image: {
  52245. source: "./media/characters/zarya/dressed.svg",
  52246. extra: 683/672,
  52247. bottom: 79/762
  52248. },
  52249. extraAttributes: {
  52250. "tailLength": {
  52251. name: "Tail Length",
  52252. power: 1,
  52253. type: "length",
  52254. base: math.unit(180, "cm")
  52255. },
  52256. "pawLength": {
  52257. name: "Paw Length",
  52258. power: 1,
  52259. type: "length",
  52260. base: math.unit(31, "cm")
  52261. },
  52262. }
  52263. },
  52264. },
  52265. [
  52266. {
  52267. name: "Micro",
  52268. height: math.unit(5, "cm")
  52269. },
  52270. {
  52271. name: "Normal",
  52272. height: math.unit(1.75, "meters"),
  52273. default: true
  52274. },
  52275. {
  52276. name: "Macro",
  52277. height: math.unit(122, "meters")
  52278. },
  52279. ]
  52280. ))
  52281. characterMakers.push(() => makeCharacter(
  52282. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52283. {
  52284. front: {
  52285. height: math.unit(7.5, "feet"),
  52286. name: "Front",
  52287. image: {
  52288. source: "./media/characters/sven-hatisson/front.svg",
  52289. extra: 917/857,
  52290. bottom: 42/959
  52291. }
  52292. },
  52293. back: {
  52294. height: math.unit(7.5, "feet"),
  52295. name: "Back",
  52296. image: {
  52297. source: "./media/characters/sven-hatisson/back.svg",
  52298. extra: 903/856,
  52299. bottom: 15/918
  52300. }
  52301. },
  52302. },
  52303. [
  52304. {
  52305. name: "Base Height",
  52306. height: math.unit(7.5, "feet")
  52307. },
  52308. {
  52309. name: "Usual Height",
  52310. height: math.unit(13.5, "feet"),
  52311. default: true
  52312. },
  52313. {
  52314. name: "Smaller Macro",
  52315. height: math.unit(85, "feet")
  52316. },
  52317. {
  52318. name: "Moderate Macro",
  52319. height: math.unit(320, "feet")
  52320. },
  52321. {
  52322. name: "Large Macro",
  52323. height: math.unit(1000, "feet")
  52324. },
  52325. {
  52326. name: "Largest Size",
  52327. height: math.unit(2, "miles")
  52328. },
  52329. ]
  52330. ))
  52331. characterMakers.push(() => makeCharacter(
  52332. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52333. {
  52334. side: {
  52335. height: math.unit(1.8, "meters"),
  52336. weight: math.unit(275, "kg"),
  52337. name: "Side",
  52338. image: {
  52339. source: "./media/characters/terra/side.svg",
  52340. extra: 1273/1147,
  52341. bottom: 0/1273
  52342. }
  52343. },
  52344. },
  52345. [
  52346. {
  52347. name: "Normal",
  52348. height: math.unit(16.2, "meters"),
  52349. default: true
  52350. },
  52351. ]
  52352. ))
  52353. characterMakers.push(() => makeCharacter(
  52354. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52355. {
  52356. borzoiFront: {
  52357. height: math.unit(6 + 9/12, "feet"),
  52358. name: "Front",
  52359. image: {
  52360. source: "./media/characters/rae/borzoi-front.svg",
  52361. extra: 1161/1098,
  52362. bottom: 31/1192
  52363. },
  52364. form: "borzoi",
  52365. default: true
  52366. },
  52367. werewolfFront: {
  52368. height: math.unit(8 + 7/12, "feet"),
  52369. name: "Front",
  52370. image: {
  52371. source: "./media/characters/rae/werewolf-front.svg",
  52372. extra: 1411/1334,
  52373. bottom: 127/1538
  52374. },
  52375. form: "werewolf",
  52376. default: true
  52377. },
  52378. },
  52379. [
  52380. {
  52381. name: "Normal",
  52382. height: math.unit(6 + 9/12, "feet"),
  52383. default: true,
  52384. form: "borzoi"
  52385. },
  52386. {
  52387. name: "Normal",
  52388. height: math.unit(8 + 7/12, "feet"),
  52389. default: true,
  52390. form: "werewolf"
  52391. },
  52392. ],
  52393. {
  52394. "borzoi": {
  52395. name: "Borzoi",
  52396. default: true
  52397. },
  52398. "werewolf": {
  52399. name: "Werewolf",
  52400. },
  52401. }
  52402. ))
  52403. characterMakers.push(() => makeCharacter(
  52404. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52405. {
  52406. front: {
  52407. height: math.unit(8 + 7/12, "feet"),
  52408. weight: math.unit(482, "lb"),
  52409. name: "Front",
  52410. image: {
  52411. source: "./media/characters/kit/front.svg",
  52412. extra: 1247/1103,
  52413. bottom: 41/1288
  52414. }
  52415. },
  52416. back: {
  52417. height: math.unit(8 + 7/12, "feet"),
  52418. weight: math.unit(482, "lb"),
  52419. name: "Back",
  52420. image: {
  52421. source: "./media/characters/kit/back.svg",
  52422. extra: 1252/1123,
  52423. bottom: 21/1273
  52424. }
  52425. },
  52426. paw: {
  52427. height: math.unit(1.46, "feet"),
  52428. name: "Paw",
  52429. image: {
  52430. source: "./media/characters/kit/paw.svg"
  52431. }
  52432. },
  52433. },
  52434. [
  52435. {
  52436. name: "Normal",
  52437. height: math.unit(2.61, "meters"),
  52438. default: true
  52439. },
  52440. {
  52441. name: "\"Tall\"",
  52442. height: math.unit(8.21, "meters")
  52443. },
  52444. {
  52445. name: "Tall",
  52446. height: math.unit(19.6, "meters")
  52447. },
  52448. {
  52449. name: "Very Tall",
  52450. height: math.unit(57.91, "meters")
  52451. },
  52452. {
  52453. name: "Semi-Macro",
  52454. height: math.unit(138.64, "meters")
  52455. },
  52456. {
  52457. name: "Macro",
  52458. height: math.unit(831.99, "meters")
  52459. },
  52460. {
  52461. name: "EX-Macro",
  52462. height: math.unit(96451121, "meters")
  52463. },
  52464. {
  52465. name: "S1-Omnipotent",
  52466. height: math.unit(4.42074e+9, "meters")
  52467. },
  52468. {
  52469. name: "S2-Omnipotent",
  52470. height: math.unit(9.42074e+17, "meters")
  52471. },
  52472. {
  52473. name: "Omnipotent",
  52474. height: math.unit(4.23112e+24, "meters")
  52475. },
  52476. {
  52477. name: "Hypergod",
  52478. height: math.unit(5.05176e+27, "meters")
  52479. },
  52480. {
  52481. name: "Hypergod-EX",
  52482. height: math.unit(9.45532e+49, "meters")
  52483. },
  52484. {
  52485. name: "Hypergod-SP",
  52486. height: math.unit(9.45532e+195, "meters")
  52487. },
  52488. ]
  52489. ))
  52490. characterMakers.push(() => makeCharacter(
  52491. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52492. {
  52493. side: {
  52494. height: math.unit(0.6, "meters"),
  52495. weight: math.unit(24, "kg"),
  52496. name: "Side",
  52497. image: {
  52498. source: "./media/characters/celeste/side.svg",
  52499. extra: 810/517,
  52500. bottom: 53/863
  52501. }
  52502. },
  52503. },
  52504. [
  52505. {
  52506. name: "Velociraptor",
  52507. height: math.unit(0.6, "meters"),
  52508. default: true
  52509. },
  52510. {
  52511. name: "Utahraptor",
  52512. height: math.unit(1.8, "meters")
  52513. },
  52514. {
  52515. name: "Gallimimus",
  52516. height: math.unit(4.0, "meters")
  52517. },
  52518. {
  52519. name: "Large",
  52520. height: math.unit(20, "meters")
  52521. },
  52522. {
  52523. name: "Planetary",
  52524. height: math.unit(50, "megameters")
  52525. },
  52526. {
  52527. name: "Stellar",
  52528. height: math.unit(1.5, "gigameters")
  52529. },
  52530. {
  52531. name: "Galactic",
  52532. height: math.unit(100, "exameters")
  52533. },
  52534. ]
  52535. ))
  52536. characterMakers.push(() => makeCharacter(
  52537. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52538. {
  52539. front: {
  52540. height: math.unit(6, "feet"),
  52541. weight: math.unit(210, "lb"),
  52542. name: "Front",
  52543. image: {
  52544. source: "./media/characters/glacia/front.svg",
  52545. extra: 958/901,
  52546. bottom: 45/1003
  52547. }
  52548. },
  52549. },
  52550. [
  52551. {
  52552. name: "Macro",
  52553. height: math.unit(1000, "meters"),
  52554. default: true
  52555. },
  52556. ]
  52557. ))
  52558. characterMakers.push(() => makeCharacter(
  52559. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52560. {
  52561. front: {
  52562. height: math.unit(4, "meters"),
  52563. name: "Front",
  52564. image: {
  52565. source: "./media/characters/giri/front.svg",
  52566. extra: 966/894,
  52567. bottom: 21/987
  52568. }
  52569. },
  52570. },
  52571. [
  52572. {
  52573. name: "Normal",
  52574. height: math.unit(4, "meters"),
  52575. default: true
  52576. },
  52577. ]
  52578. ))
  52579. characterMakers.push(() => makeCharacter(
  52580. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52581. {
  52582. back: {
  52583. height: math.unit(4, "feet"),
  52584. weight: math.unit(37, "lb"),
  52585. name: "Back",
  52586. image: {
  52587. source: "./media/characters/tin/back.svg",
  52588. extra: 845/780,
  52589. bottom: 28/873
  52590. }
  52591. },
  52592. },
  52593. [
  52594. {
  52595. name: "Normal",
  52596. height: math.unit(4, "feet"),
  52597. default: true
  52598. },
  52599. ]
  52600. ))
  52601. characterMakers.push(() => makeCharacter(
  52602. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52603. {
  52604. front: {
  52605. height: math.unit(25, "feet"),
  52606. name: "Front",
  52607. image: {
  52608. source: "./media/characters/cadenza-vivace/front.svg",
  52609. extra: 1842/1578,
  52610. bottom: 30/1872
  52611. }
  52612. },
  52613. },
  52614. [
  52615. {
  52616. name: "Macro",
  52617. height: math.unit(25, "feet"),
  52618. default: true
  52619. },
  52620. ]
  52621. ))
  52622. characterMakers.push(() => makeCharacter(
  52623. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52624. {
  52625. front: {
  52626. height: math.unit(10, "feet"),
  52627. weight: math.unit(625, "kg"),
  52628. name: "Front",
  52629. image: {
  52630. source: "./media/characters/zain/front.svg",
  52631. extra: 1682/1498,
  52632. bottom: 223/1905
  52633. }
  52634. },
  52635. back: {
  52636. height: math.unit(10, "feet"),
  52637. weight: math.unit(625, "kg"),
  52638. name: "Back",
  52639. image: {
  52640. source: "./media/characters/zain/back.svg",
  52641. extra: 1814/1657,
  52642. bottom: 152/1966
  52643. }
  52644. },
  52645. head: {
  52646. height: math.unit(10, "feet"),
  52647. weight: math.unit(625, "kg"),
  52648. name: "Head",
  52649. image: {
  52650. source: "./media/characters/zain/head.svg",
  52651. extra: 1059/762,
  52652. bottom: 0/1059
  52653. }
  52654. },
  52655. },
  52656. [
  52657. {
  52658. name: "Normal",
  52659. height: math.unit(10, "feet"),
  52660. default: true
  52661. },
  52662. ]
  52663. ))
  52664. characterMakers.push(() => makeCharacter(
  52665. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52666. {
  52667. front: {
  52668. height: math.unit(6 + 5/12, "feet"),
  52669. weight: math.unit(750, "lb"),
  52670. name: "Front",
  52671. image: {
  52672. source: "./media/characters/ruchex/front.svg",
  52673. extra: 877/820,
  52674. bottom: 17/894
  52675. },
  52676. extraAttributes: {
  52677. "width": {
  52678. name: "Width",
  52679. power: 1,
  52680. type: "length",
  52681. base: math.unit(4.757, "feet")
  52682. },
  52683. }
  52684. },
  52685. },
  52686. [
  52687. {
  52688. name: "Normal",
  52689. height: math.unit(6 + 5/12, "feet"),
  52690. default: true
  52691. },
  52692. ]
  52693. ))
  52694. characterMakers.push(() => makeCharacter(
  52695. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52696. {
  52697. dressedFront: {
  52698. height: math.unit(191, "cm"),
  52699. weight: math.unit(80, "kg"),
  52700. name: "Front",
  52701. image: {
  52702. source: "./media/characters/buster/dressed-front.svg",
  52703. extra: 1022/973,
  52704. bottom: 69/1091
  52705. }
  52706. },
  52707. dressedBack: {
  52708. height: math.unit(191, "cm"),
  52709. weight: math.unit(80, "kg"),
  52710. name: "Back",
  52711. image: {
  52712. source: "./media/characters/buster/dressed-back.svg",
  52713. extra: 1018/970,
  52714. bottom: 55/1073
  52715. }
  52716. },
  52717. nudeFront: {
  52718. height: math.unit(191, "cm"),
  52719. weight: math.unit(80, "kg"),
  52720. name: "Front (Nude)",
  52721. image: {
  52722. source: "./media/characters/buster/nude-front.svg",
  52723. extra: 1022/973,
  52724. bottom: 69/1091
  52725. }
  52726. },
  52727. nudeBack: {
  52728. height: math.unit(191, "cm"),
  52729. weight: math.unit(80, "kg"),
  52730. name: "Back (Nude)",
  52731. image: {
  52732. source: "./media/characters/buster/nude-back.svg",
  52733. extra: 1018/970,
  52734. bottom: 55/1073
  52735. }
  52736. },
  52737. dick: {
  52738. height: math.unit(2.59, "feet"),
  52739. name: "Dick",
  52740. image: {
  52741. source: "./media/characters/buster/dick.svg"
  52742. }
  52743. },
  52744. ass: {
  52745. height: math.unit(1.2, "feet"),
  52746. name: "Ass",
  52747. image: {
  52748. source: "./media/characters/buster/ass.svg"
  52749. }
  52750. },
  52751. },
  52752. [
  52753. {
  52754. name: "Normal",
  52755. height: math.unit(191, "cm"),
  52756. default: true
  52757. },
  52758. ]
  52759. ))
  52760. characterMakers.push(() => makeCharacter(
  52761. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52762. {
  52763. side: {
  52764. height: math.unit(8.1, "feet"),
  52765. weight: math.unit(3500, "lb"),
  52766. name: "Side",
  52767. image: {
  52768. source: "./media/characters/sonya/side.svg",
  52769. extra: 1730/1317,
  52770. bottom: 86/1816
  52771. }
  52772. },
  52773. },
  52774. [
  52775. {
  52776. name: "Normal",
  52777. height: math.unit(8.1, "feet"),
  52778. default: true
  52779. },
  52780. ]
  52781. ))
  52782. characterMakers.push(() => makeCharacter(
  52783. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52784. {
  52785. front: {
  52786. height: math.unit(6, "feet"),
  52787. weight: math.unit(150, "lb"),
  52788. name: "Front",
  52789. image: {
  52790. source: "./media/characters/cadence-andrysiak/front.svg",
  52791. extra: 1164/1121,
  52792. bottom: 60/1224
  52793. }
  52794. },
  52795. back: {
  52796. height: math.unit(6, "feet"),
  52797. weight: math.unit(150, "lb"),
  52798. name: "Back",
  52799. image: {
  52800. source: "./media/characters/cadence-andrysiak/back.svg",
  52801. extra: 1200/1165,
  52802. bottom: 9/1209
  52803. }
  52804. },
  52805. dressed: {
  52806. height: math.unit(6, "feet"),
  52807. weight: math.unit(150, "lb"),
  52808. name: "Dressed",
  52809. image: {
  52810. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52811. extra: 1164/1121,
  52812. bottom: 60/1224
  52813. }
  52814. },
  52815. },
  52816. [
  52817. {
  52818. name: "Micro",
  52819. height: math.unit(1, "mm")
  52820. },
  52821. {
  52822. name: "Normal",
  52823. height: math.unit(6, "feet"),
  52824. default: true
  52825. },
  52826. ]
  52827. ))
  52828. characterMakers.push(() => makeCharacter(
  52829. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52830. {
  52831. front: {
  52832. height: math.unit(60, "inches"),
  52833. weight: math.unit(16, "lb"),
  52834. preyCapacity: math.unit(80, "liters"),
  52835. name: "Front",
  52836. image: {
  52837. source: "./media/characters/penny-lynx/front.svg",
  52838. extra: 1959/1769,
  52839. bottom: 49/2008
  52840. }
  52841. },
  52842. },
  52843. [
  52844. {
  52845. name: "Nokia",
  52846. height: math.unit(2, "inches")
  52847. },
  52848. {
  52849. name: "Desktop",
  52850. height: math.unit(24, "inches")
  52851. },
  52852. {
  52853. name: "TV",
  52854. height: math.unit(60, "inches")
  52855. },
  52856. {
  52857. name: "Jumbotron",
  52858. height: math.unit(12, "feet")
  52859. },
  52860. {
  52861. name: "Billboard",
  52862. height: math.unit(48, "feet"),
  52863. default: true
  52864. },
  52865. {
  52866. name: "IMAX",
  52867. height: math.unit(96, "feet")
  52868. },
  52869. {
  52870. name: "SINGULARITY",
  52871. height: math.unit(864938, "miles")
  52872. },
  52873. ]
  52874. ))
  52875. characterMakers.push(() => makeCharacter(
  52876. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52877. {
  52878. front: {
  52879. height: math.unit(5 + 4/12, "feet"),
  52880. weight: math.unit(230, "lb"),
  52881. name: "Front",
  52882. image: {
  52883. source: "./media/characters/sukebe/front.svg",
  52884. extra: 2130/2038,
  52885. bottom: 90/2220
  52886. }
  52887. },
  52888. back: {
  52889. height: math.unit(3.48, "feet"),
  52890. weight: math.unit(230, "lb"),
  52891. name: "Back",
  52892. image: {
  52893. source: "./media/characters/sukebe/back.svg",
  52894. extra: 1670/1604,
  52895. bottom: 0/1670
  52896. }
  52897. },
  52898. },
  52899. [
  52900. {
  52901. name: "Normal",
  52902. height: math.unit(5 + 4/12, "feet"),
  52903. default: true
  52904. },
  52905. ]
  52906. ))
  52907. characterMakers.push(() => makeCharacter(
  52908. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52909. {
  52910. front: {
  52911. height: math.unit(6, "feet"),
  52912. name: "Front",
  52913. image: {
  52914. source: "./media/characters/nylla/front.svg",
  52915. extra: 1868/1699,
  52916. bottom: 97/1965
  52917. }
  52918. },
  52919. back: {
  52920. height: math.unit(6, "feet"),
  52921. name: "Back",
  52922. image: {
  52923. source: "./media/characters/nylla/back.svg",
  52924. extra: 1889/1712,
  52925. bottom: 93/1982
  52926. }
  52927. },
  52928. frontNsfw: {
  52929. height: math.unit(6, "feet"),
  52930. name: "Front (NSFW)",
  52931. image: {
  52932. source: "./media/characters/nylla/front-nsfw.svg",
  52933. extra: 1868/1699,
  52934. bottom: 97/1965
  52935. },
  52936. extraAttributes: {
  52937. "dickLength": {
  52938. name: "Dick Length",
  52939. power: 1,
  52940. type: "length",
  52941. base: math.unit(1.4, "feet")
  52942. },
  52943. "cumVolume": {
  52944. name: "Cum Volume",
  52945. power: 3,
  52946. type: "volume",
  52947. base: math.unit(100, "mL")
  52948. },
  52949. }
  52950. },
  52951. backNsfw: {
  52952. height: math.unit(6, "feet"),
  52953. name: "Back (NSFW)",
  52954. image: {
  52955. source: "./media/characters/nylla/back-nsfw.svg",
  52956. extra: 1889/1712,
  52957. bottom: 93/1982
  52958. }
  52959. },
  52960. maw: {
  52961. height: math.unit(2.10, "feet"),
  52962. name: "Maw",
  52963. image: {
  52964. source: "./media/characters/nylla/maw.svg"
  52965. }
  52966. },
  52967. paws: {
  52968. height: math.unit(2.06, "feet"),
  52969. name: "Paws",
  52970. image: {
  52971. source: "./media/characters/nylla/paws.svg"
  52972. }
  52973. },
  52974. muzzle: {
  52975. height: math.unit(0.61, "feet"),
  52976. name: "Muzzle",
  52977. image: {
  52978. source: "./media/characters/nylla/muzzle.svg"
  52979. }
  52980. },
  52981. sheath: {
  52982. height: math.unit(1.305, "feet"),
  52983. name: "Sheath",
  52984. image: {
  52985. source: "./media/characters/nylla/sheath.svg"
  52986. }
  52987. },
  52988. },
  52989. [
  52990. {
  52991. name: "Micro",
  52992. height: math.unit(7.5, "inches")
  52993. },
  52994. {
  52995. name: "Normal",
  52996. height: math.unit(7, "feet"),
  52997. default: true
  52998. },
  52999. {
  53000. name: "Macro",
  53001. height: math.unit(60, "feet")
  53002. },
  53003. {
  53004. name: "Mega",
  53005. height: math.unit(200, "feet")
  53006. },
  53007. ]
  53008. ))
  53009. characterMakers.push(() => makeCharacter(
  53010. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53011. {
  53012. front: {
  53013. height: math.unit(10, "feet"),
  53014. weight: math.unit(2300, "lb"),
  53015. name: "Front",
  53016. image: {
  53017. source: "./media/characters/hunt3r/front.svg",
  53018. extra: 1909/1742,
  53019. bottom: 46/1955
  53020. }
  53021. },
  53022. },
  53023. [
  53024. {
  53025. name: "Normal",
  53026. height: math.unit(10, "feet"),
  53027. default: true
  53028. },
  53029. ]
  53030. ))
  53031. characterMakers.push(() => makeCharacter(
  53032. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53033. {
  53034. dressed: {
  53035. height: math.unit(11, "feet"),
  53036. weight: math.unit(18500, "lb"),
  53037. preyCapacity: math.unit(9, "people"),
  53038. name: "Dressed",
  53039. image: {
  53040. source: "./media/characters/cylphis/dressed.svg",
  53041. extra: 1028/1003,
  53042. bottom: 75/1103
  53043. },
  53044. },
  53045. undressed: {
  53046. height: math.unit(11, "feet"),
  53047. weight: math.unit(18500, "lb"),
  53048. preyCapacity: math.unit(9, "people"),
  53049. name: "Undressed",
  53050. image: {
  53051. source: "./media/characters/cylphis/undressed.svg",
  53052. extra: 1028/1003,
  53053. bottom: 75/1103
  53054. }
  53055. },
  53056. full: {
  53057. height: math.unit(11, "feet"),
  53058. weight: math.unit(18500 + 150*9, "lb"),
  53059. preyCapacity: math.unit(9, "people"),
  53060. name: "Full",
  53061. image: {
  53062. source: "./media/characters/cylphis/full.svg",
  53063. extra: 1028/1003,
  53064. bottom: 75/1103
  53065. }
  53066. },
  53067. },
  53068. [
  53069. {
  53070. name: "Small",
  53071. height: math.unit(8, "feet")
  53072. },
  53073. {
  53074. name: "Normal",
  53075. height: math.unit(11, "feet"),
  53076. default: true
  53077. },
  53078. ]
  53079. ))
  53080. characterMakers.push(() => makeCharacter(
  53081. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53082. {
  53083. front: {
  53084. height: math.unit(2 + 7/12, "feet"),
  53085. name: "Front",
  53086. image: {
  53087. source: "./media/characters/orishan/front.svg",
  53088. extra: 1058/1023,
  53089. bottom: 23/1081
  53090. }
  53091. },
  53092. back: {
  53093. height: math.unit(2 + 7/12, "feet"),
  53094. name: "Back",
  53095. image: {
  53096. source: "./media/characters/orishan/back.svg",
  53097. extra: 1058/1023,
  53098. bottom: 23/1081
  53099. }
  53100. },
  53101. },
  53102. [
  53103. {
  53104. name: "Micro",
  53105. height: math.unit(2, "cm")
  53106. },
  53107. {
  53108. name: "Normal",
  53109. height: math.unit(2 + 7/12, "feet"),
  53110. default: true
  53111. },
  53112. ]
  53113. ))
  53114. characterMakers.push(() => makeCharacter(
  53115. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53116. {
  53117. front: {
  53118. height: math.unit(3, "meters"),
  53119. weight: math.unit(508, "kg"),
  53120. name: "Front",
  53121. image: {
  53122. source: "./media/characters/seranis/front.svg",
  53123. extra: 1478/1454,
  53124. bottom: 41/1519
  53125. }
  53126. },
  53127. },
  53128. [
  53129. {
  53130. name: "Normal",
  53131. height: math.unit(3, "meters"),
  53132. default: true
  53133. },
  53134. {
  53135. name: "Macro",
  53136. height: math.unit(108, "meters")
  53137. },
  53138. {
  53139. name: "Megamacro",
  53140. height: math.unit(1250, "meters")
  53141. },
  53142. ]
  53143. ))
  53144. characterMakers.push(() => makeCharacter(
  53145. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53146. {
  53147. undressed: {
  53148. height: math.unit(5 + 3/12, "feet"),
  53149. name: "Undressed",
  53150. image: {
  53151. source: "./media/characters/ankou/undressed.svg",
  53152. extra: 1301/1213,
  53153. bottom: 87/1388
  53154. }
  53155. },
  53156. dressed: {
  53157. height: math.unit(5 + 3/12, "feet"),
  53158. name: "Dressed",
  53159. image: {
  53160. source: "./media/characters/ankou/dressed.svg",
  53161. extra: 1301/1213,
  53162. bottom: 87/1388
  53163. }
  53164. },
  53165. head: {
  53166. height: math.unit(1.61, "feet"),
  53167. name: "Head",
  53168. image: {
  53169. source: "./media/characters/ankou/head.svg"
  53170. }
  53171. },
  53172. },
  53173. [
  53174. {
  53175. name: "Normal",
  53176. height: math.unit(5 + 3/12, "feet"),
  53177. default: true
  53178. },
  53179. ]
  53180. ))
  53181. characterMakers.push(() => makeCharacter(
  53182. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53183. {
  53184. side: {
  53185. height: math.unit(6 + 3/12, "feet"),
  53186. weight: math.unit(200, "kg"),
  53187. name: "Side",
  53188. image: {
  53189. source: "./media/characters/juniper-skunktaur/side.svg",
  53190. extra: 1574/1229,
  53191. bottom: 38/1612
  53192. }
  53193. },
  53194. front: {
  53195. height: math.unit(6 + 3/12, "feet"),
  53196. weight: math.unit(200, "kg"),
  53197. name: "Front",
  53198. image: {
  53199. source: "./media/characters/juniper-skunktaur/front.svg",
  53200. extra: 1337/1278,
  53201. bottom: 22/1359
  53202. }
  53203. },
  53204. back: {
  53205. height: math.unit(6 + 3/12, "feet"),
  53206. weight: math.unit(200, "kg"),
  53207. name: "Back",
  53208. image: {
  53209. source: "./media/characters/juniper-skunktaur/back.svg",
  53210. extra: 1618/1273,
  53211. bottom: 13/1631
  53212. }
  53213. },
  53214. top: {
  53215. height: math.unit(2.62, "feet"),
  53216. weight: math.unit(200, "kg"),
  53217. name: "Top",
  53218. image: {
  53219. source: "./media/characters/juniper-skunktaur/top.svg"
  53220. }
  53221. },
  53222. },
  53223. [
  53224. {
  53225. name: "Normal",
  53226. height: math.unit(6 + 3/12, "feet"),
  53227. default: true
  53228. },
  53229. ]
  53230. ))
  53231. characterMakers.push(() => makeCharacter(
  53232. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53233. {
  53234. front: {
  53235. height: math.unit(20.5, "feet"),
  53236. name: "Front",
  53237. image: {
  53238. source: "./media/characters/rei/front.svg",
  53239. extra: 1349/1195,
  53240. bottom: 31/1380
  53241. }
  53242. },
  53243. back: {
  53244. height: math.unit(20.5, "feet"),
  53245. name: "Back",
  53246. image: {
  53247. source: "./media/characters/rei/back.svg",
  53248. extra: 1358/1204,
  53249. bottom: 22/1380
  53250. }
  53251. },
  53252. pawsDigi: {
  53253. height: math.unit(3.45, "feet"),
  53254. name: "Paws (Digi)",
  53255. image: {
  53256. source: "./media/characters/rei/paws-digi.svg"
  53257. }
  53258. },
  53259. pawsPlanti: {
  53260. height: math.unit(3.45, "feet"),
  53261. name: "Paws (Planti)",
  53262. image: {
  53263. source: "./media/characters/rei/paws-planti.svg"
  53264. }
  53265. },
  53266. },
  53267. [
  53268. {
  53269. name: "Normal",
  53270. height: math.unit(20.5, "feet"),
  53271. default: true
  53272. },
  53273. ]
  53274. ))
  53275. characterMakers.push(() => makeCharacter(
  53276. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53277. {
  53278. front: {
  53279. height: math.unit(5 + 11/12, "feet"),
  53280. name: "Front",
  53281. image: {
  53282. source: "./media/characters/carina/front.svg",
  53283. extra: 1720/1449,
  53284. bottom: 14/1734
  53285. }
  53286. },
  53287. back: {
  53288. height: math.unit(5 + 11/12, "feet"),
  53289. name: "Back",
  53290. image: {
  53291. source: "./media/characters/carina/back.svg",
  53292. extra: 1493/1445,
  53293. bottom: 17/1510
  53294. }
  53295. },
  53296. paw: {
  53297. height: math.unit(0.92, "feet"),
  53298. name: "Paw",
  53299. image: {
  53300. source: "./media/characters/carina/paw.svg"
  53301. }
  53302. },
  53303. },
  53304. [
  53305. {
  53306. name: "Normal",
  53307. height: math.unit(5 + 11/12, "feet"),
  53308. default: true
  53309. },
  53310. ]
  53311. ))
  53312. characterMakers.push(() => makeCharacter(
  53313. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53314. {
  53315. normal_front: {
  53316. height: math.unit(4.88, "meters"),
  53317. name: "Front",
  53318. image: {
  53319. source: "./media/characters/maya/normal-front.svg",
  53320. extra: 1222/1145,
  53321. bottom: 57/1279
  53322. },
  53323. form: "normal",
  53324. default: true
  53325. },
  53326. monstrous_front: {
  53327. height: math.unit(10, "meters"),
  53328. name: "Front",
  53329. image: {
  53330. source: "./media/characters/maya/monstrous-front.svg",
  53331. extra: 1523/1109,
  53332. bottom: 113/1636
  53333. },
  53334. form: "monstrous",
  53335. extraAttributes: {
  53336. "swallowSize": {
  53337. name: "Tailmaw Bite Size",
  53338. power: 3,
  53339. type: "volume",
  53340. base: math.unit(43000, "liters")
  53341. },
  53342. }
  53343. },
  53344. taur_front: {
  53345. height: math.unit(10, "meters"),
  53346. name: "Front",
  53347. image: {
  53348. source: "./media/characters/maya/taur-front.svg",
  53349. extra: 743/506,
  53350. bottom: 101/844
  53351. },
  53352. form: "taur",
  53353. },
  53354. },
  53355. [
  53356. {
  53357. name: "Normal",
  53358. height: math.unit(4.88, "meters"),
  53359. default: true,
  53360. form: "normal"
  53361. },
  53362. {
  53363. name: "Macro",
  53364. height: math.unit(38.1, "meters"),
  53365. form: "normal"
  53366. },
  53367. {
  53368. name: "Macro+",
  53369. height: math.unit(152.4, "meters"),
  53370. form: "normal"
  53371. },
  53372. {
  53373. name: "Macro++",
  53374. height: math.unit(16.09, "km"),
  53375. form: "normal"
  53376. },
  53377. {
  53378. name: "Mega-macro",
  53379. height: math.unit(700, "megameters"),
  53380. form: "normal"
  53381. },
  53382. {
  53383. name: "Satiated",
  53384. height: math.unit(10, "meters"),
  53385. default: true,
  53386. form: "monstrous"
  53387. },
  53388. {
  53389. name: "Hungry",
  53390. height: math.unit(75, "meters"),
  53391. form: "monstrous"
  53392. },
  53393. {
  53394. name: "Ravenous",
  53395. height: math.unit(500, "meters"),
  53396. form: "monstrous"
  53397. },
  53398. {
  53399. name: "\"Normal\"",
  53400. height: math.unit(10, "meters"),
  53401. form: "taur"
  53402. },
  53403. {
  53404. name: "Macro",
  53405. height: math.unit(50, "meters"),
  53406. form: "taur"
  53407. },
  53408. ],
  53409. {
  53410. "normal": {
  53411. name: "Normal",
  53412. default: true
  53413. },
  53414. "monstrous": {
  53415. name: "Monstrous",
  53416. },
  53417. "taur": {
  53418. name: "Taur",
  53419. },
  53420. }
  53421. ))
  53422. characterMakers.push(() => makeCharacter(
  53423. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53424. {
  53425. front: {
  53426. height: math.unit(6 + 2/12, "feet"),
  53427. weight: math.unit(500, "lb"),
  53428. preyCapacity: math.unit(4, "people"),
  53429. name: "Front",
  53430. image: {
  53431. source: "./media/characters/yepir/front.svg"
  53432. }
  53433. },
  53434. side: {
  53435. height: math.unit(6 + 2/12, "feet"),
  53436. weight: math.unit(500, "lb"),
  53437. preyCapacity: math.unit(4, "people"),
  53438. name: "Side",
  53439. image: {
  53440. source: "./media/characters/yepir/side.svg"
  53441. }
  53442. },
  53443. paw: {
  53444. height: math.unit(1.05, "feet"),
  53445. name: "Paw",
  53446. image: {
  53447. source: "./media/characters/yepir/paw.svg"
  53448. }
  53449. },
  53450. },
  53451. [
  53452. {
  53453. name: "Normal",
  53454. height: math.unit(6 + 2/12, "feet"),
  53455. default: true
  53456. },
  53457. ]
  53458. ))
  53459. characterMakers.push(() => makeCharacter(
  53460. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53461. {
  53462. front: {
  53463. height: math.unit(5 + 4/12, "feet"),
  53464. name: "Front",
  53465. image: {
  53466. source: "./media/characters/russec/front.svg",
  53467. extra: 1926/1626,
  53468. bottom: 72/1998
  53469. }
  53470. },
  53471. back: {
  53472. height: math.unit(5 + 4/12, "feet"),
  53473. name: "Back",
  53474. image: {
  53475. source: "./media/characters/russec/back.svg",
  53476. extra: 1910/1591,
  53477. bottom: 48/1958
  53478. }
  53479. },
  53480. },
  53481. [
  53482. {
  53483. name: "Small",
  53484. height: math.unit(5 + 4/12, "feet")
  53485. },
  53486. {
  53487. name: "Normal",
  53488. height: math.unit(72, "feet"),
  53489. default: true
  53490. },
  53491. ]
  53492. ))
  53493. characterMakers.push(() => makeCharacter(
  53494. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53495. {
  53496. side: {
  53497. height: math.unit(12, "feet"),
  53498. name: "Side",
  53499. image: {
  53500. source: "./media/characters/cianus/side.svg",
  53501. extra: 808/526,
  53502. bottom: 61/869
  53503. }
  53504. },
  53505. },
  53506. [
  53507. {
  53508. name: "Normal",
  53509. height: math.unit(12, "feet"),
  53510. default: true
  53511. },
  53512. ]
  53513. ))
  53514. characterMakers.push(() => makeCharacter(
  53515. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53516. {
  53517. front: {
  53518. height: math.unit(9 + 6/12, "feet"),
  53519. weight: math.unit(300, "lb"),
  53520. name: "Front",
  53521. image: {
  53522. source: "./media/characters/ahab/front.svg",
  53523. extra: 1897/1868,
  53524. bottom: 121/2018
  53525. }
  53526. },
  53527. frontNsfw: {
  53528. height: math.unit(9 + 6/12, "feet"),
  53529. weight: math.unit(300, "lb"),
  53530. name: "Front-nsfw",
  53531. image: {
  53532. source: "./media/characters/ahab/front-nsfw.svg",
  53533. extra: 1897/1868,
  53534. bottom: 121/2018
  53535. }
  53536. },
  53537. },
  53538. [
  53539. {
  53540. name: "Normal",
  53541. height: math.unit(9 + 6/12, "feet")
  53542. },
  53543. {
  53544. name: "Macro",
  53545. height: math.unit(657, "feet"),
  53546. default: true
  53547. },
  53548. ]
  53549. ))
  53550. characterMakers.push(() => makeCharacter(
  53551. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53552. {
  53553. front: {
  53554. height: math.unit(2.69, "meters"),
  53555. weight: math.unit(132, "kg"),
  53556. name: "Front",
  53557. image: {
  53558. source: "./media/characters/aarkus/front.svg",
  53559. extra: 1400/1231,
  53560. bottom: 34/1434
  53561. }
  53562. },
  53563. back: {
  53564. height: math.unit(2.69, "meters"),
  53565. weight: math.unit(132, "kg"),
  53566. name: "Back",
  53567. image: {
  53568. source: "./media/characters/aarkus/back.svg",
  53569. extra: 1381/1218,
  53570. bottom: 30/1411
  53571. }
  53572. },
  53573. frontNsfw: {
  53574. height: math.unit(2.69, "meters"),
  53575. weight: math.unit(132, "kg"),
  53576. name: "Front (NSFW)",
  53577. image: {
  53578. source: "./media/characters/aarkus/front-nsfw.svg",
  53579. extra: 1400/1231,
  53580. bottom: 34/1434
  53581. }
  53582. },
  53583. foot: {
  53584. height: math.unit(1.45, "feet"),
  53585. name: "Foot",
  53586. image: {
  53587. source: "./media/characters/aarkus/foot.svg"
  53588. }
  53589. },
  53590. head: {
  53591. height: math.unit(2.85, "feet"),
  53592. name: "Head",
  53593. image: {
  53594. source: "./media/characters/aarkus/head.svg"
  53595. }
  53596. },
  53597. headAlt: {
  53598. height: math.unit(3.07, "feet"),
  53599. name: "Head (Alt)",
  53600. image: {
  53601. source: "./media/characters/aarkus/head-alt.svg"
  53602. }
  53603. },
  53604. mouth: {
  53605. height: math.unit(1.25, "feet"),
  53606. name: "Mouth",
  53607. image: {
  53608. source: "./media/characters/aarkus/mouth.svg"
  53609. }
  53610. },
  53611. dick: {
  53612. height: math.unit(1.77, "feet"),
  53613. name: "Dick",
  53614. image: {
  53615. source: "./media/characters/aarkus/dick.svg"
  53616. }
  53617. },
  53618. },
  53619. [
  53620. {
  53621. name: "Normal",
  53622. height: math.unit(2.69, "meters"),
  53623. default: true
  53624. },
  53625. {
  53626. name: "Macro",
  53627. height: math.unit(269, "meters")
  53628. },
  53629. {
  53630. name: "Macro+",
  53631. height: math.unit(672.5, "meters")
  53632. },
  53633. {
  53634. name: "Megamacro",
  53635. height: math.unit(2.017, "km")
  53636. },
  53637. ]
  53638. ))
  53639. characterMakers.push(() => makeCharacter(
  53640. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53641. {
  53642. front: {
  53643. height: math.unit(23.47, "cm"),
  53644. weight: math.unit(600, "grams"),
  53645. name: "Front",
  53646. image: {
  53647. source: "./media/characters/diode/front.svg",
  53648. extra: 1778/1396,
  53649. bottom: 95/1873
  53650. }
  53651. },
  53652. side: {
  53653. height: math.unit(23.47, "cm"),
  53654. weight: math.unit(600, "grams"),
  53655. name: "Side",
  53656. image: {
  53657. source: "./media/characters/diode/side.svg",
  53658. extra: 1831/1404,
  53659. bottom: 86/1917
  53660. }
  53661. },
  53662. wings: {
  53663. height: math.unit(0.683, "feet"),
  53664. name: "Wings",
  53665. image: {
  53666. source: "./media/characters/diode/wings.svg"
  53667. }
  53668. },
  53669. },
  53670. [
  53671. {
  53672. name: "Normal",
  53673. height: math.unit(23.47, "cm"),
  53674. default: true
  53675. },
  53676. ]
  53677. ))
  53678. characterMakers.push(() => makeCharacter(
  53679. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53680. {
  53681. front: {
  53682. height: math.unit(6 + 3/12, "feet"),
  53683. weight: math.unit(250, "lb"),
  53684. name: "Front",
  53685. image: {
  53686. source: "./media/characters/reika/front.svg",
  53687. extra: 1120/1078,
  53688. bottom: 86/1206
  53689. }
  53690. },
  53691. },
  53692. [
  53693. {
  53694. name: "Normal",
  53695. height: math.unit(6 + 3/12, "feet"),
  53696. default: true
  53697. },
  53698. ]
  53699. ))
  53700. characterMakers.push(() => makeCharacter(
  53701. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53702. {
  53703. front: {
  53704. height: math.unit(16 + 8/12, "feet"),
  53705. weight: math.unit(9000, "lb"),
  53706. name: "Front",
  53707. image: {
  53708. source: "./media/characters/lokuto-takama/front.svg",
  53709. extra: 1774/1632,
  53710. bottom: 147/1921
  53711. },
  53712. extraAttributes: {
  53713. "bustWidth": {
  53714. name: "Bust Width",
  53715. power: 1,
  53716. type: "length",
  53717. base: math.unit(2.4, "meters")
  53718. },
  53719. "breastWeight": {
  53720. name: "Breast Weight",
  53721. power: 3,
  53722. type: "mass",
  53723. base: math.unit(1000, "kg")
  53724. },
  53725. }
  53726. },
  53727. },
  53728. [
  53729. {
  53730. name: "Normal",
  53731. height: math.unit(16 + 8/12, "feet"),
  53732. default: true
  53733. },
  53734. ]
  53735. ))
  53736. characterMakers.push(() => makeCharacter(
  53737. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53738. {
  53739. front: {
  53740. height: math.unit(10, "cm"),
  53741. weight: math.unit(850, "grams"),
  53742. name: "Front",
  53743. image: {
  53744. source: "./media/characters/owak-bone/front.svg",
  53745. extra: 1965/1801,
  53746. bottom: 31/1996
  53747. }
  53748. },
  53749. },
  53750. [
  53751. {
  53752. name: "Normal",
  53753. height: math.unit(10, "cm"),
  53754. default: true
  53755. },
  53756. ]
  53757. ))
  53758. characterMakers.push(() => makeCharacter(
  53759. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53760. {
  53761. front: {
  53762. height: math.unit(2 + 6/12, "feet"),
  53763. weight: math.unit(9, "lb"),
  53764. name: "Front",
  53765. image: {
  53766. source: "./media/characters/muffin/front.svg",
  53767. extra: 1220/1195,
  53768. bottom: 84/1304
  53769. }
  53770. },
  53771. },
  53772. [
  53773. {
  53774. name: "Normal",
  53775. height: math.unit(2 + 6/12, "feet"),
  53776. default: true
  53777. },
  53778. ]
  53779. ))
  53780. characterMakers.push(() => makeCharacter(
  53781. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53782. {
  53783. front: {
  53784. height: math.unit(7, "feet"),
  53785. name: "Front",
  53786. image: {
  53787. source: "./media/characters/chimera/front.svg",
  53788. extra: 1752/1614,
  53789. bottom: 68/1820
  53790. }
  53791. },
  53792. },
  53793. [
  53794. {
  53795. name: "Normal",
  53796. height: math.unit(7, "feet")
  53797. },
  53798. {
  53799. name: "Gigamacro",
  53800. height: math.unit(2.9, "gigameters"),
  53801. default: true
  53802. },
  53803. {
  53804. name: "Universal",
  53805. height: math.unit(1.56e26, "yottameters")
  53806. },
  53807. ]
  53808. ))
  53809. characterMakers.push(() => makeCharacter(
  53810. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53811. {
  53812. front: {
  53813. height: math.unit(3, "feet"),
  53814. weight: math.unit(20, "lb"),
  53815. name: "Front",
  53816. image: {
  53817. source: "./media/characters/kit-fennec-fox/front.svg",
  53818. extra: 1027/932,
  53819. bottom: 16/1043
  53820. }
  53821. },
  53822. back: {
  53823. height: math.unit(3, "feet"),
  53824. weight: math.unit(20, "lb"),
  53825. name: "Back",
  53826. image: {
  53827. source: "./media/characters/kit-fennec-fox/back.svg",
  53828. extra: 1027/932,
  53829. bottom: 16/1043
  53830. }
  53831. },
  53832. },
  53833. [
  53834. {
  53835. name: "Normal",
  53836. height: math.unit(3, "feet"),
  53837. default: true
  53838. },
  53839. ]
  53840. ))
  53841. characterMakers.push(() => makeCharacter(
  53842. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53843. {
  53844. front: {
  53845. height: math.unit(167, "cm"),
  53846. name: "Front",
  53847. image: {
  53848. source: "./media/characters/blue-otter/front.svg",
  53849. extra: 1951/1920,
  53850. bottom: 31/1982
  53851. }
  53852. },
  53853. },
  53854. [
  53855. {
  53856. name: "Otter-Sized",
  53857. height: math.unit(100, "cm")
  53858. },
  53859. {
  53860. name: "Normal",
  53861. height: math.unit(167, "cm"),
  53862. default: true
  53863. },
  53864. ]
  53865. ))
  53866. characterMakers.push(() => makeCharacter(
  53867. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53868. {
  53869. front: {
  53870. height: math.unit(4 + 4/12, "feet"),
  53871. name: "Front",
  53872. image: {
  53873. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53874. extra: 1072/1067,
  53875. bottom: 117/1189
  53876. }
  53877. },
  53878. back: {
  53879. height: math.unit(4 + 4/12, "feet"),
  53880. name: "Back",
  53881. image: {
  53882. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53883. extra: 1135/1129,
  53884. bottom: 57/1192
  53885. }
  53886. },
  53887. head: {
  53888. height: math.unit(1.77, "feet"),
  53889. name: "Head",
  53890. image: {
  53891. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53892. }
  53893. },
  53894. },
  53895. [
  53896. {
  53897. name: "Normal",
  53898. height: math.unit(4 + 4/12, "feet"),
  53899. default: true
  53900. },
  53901. ]
  53902. ))
  53903. characterMakers.push(() => makeCharacter(
  53904. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53905. {
  53906. front: {
  53907. height: math.unit(2, "inches"),
  53908. name: "Front",
  53909. image: {
  53910. source: "./media/characters/carley-hartford/front.svg",
  53911. extra: 1035/988,
  53912. bottom: 23/1058
  53913. }
  53914. },
  53915. back: {
  53916. height: math.unit(2, "inches"),
  53917. name: "Back",
  53918. image: {
  53919. source: "./media/characters/carley-hartford/back.svg",
  53920. extra: 1035/988,
  53921. bottom: 23/1058
  53922. }
  53923. },
  53924. dressed: {
  53925. height: math.unit(2, "inches"),
  53926. name: "Dressed",
  53927. image: {
  53928. source: "./media/characters/carley-hartford/dressed.svg",
  53929. extra: 651/620,
  53930. bottom: 0/651
  53931. }
  53932. },
  53933. },
  53934. [
  53935. {
  53936. name: "Micro",
  53937. height: math.unit(2, "inches"),
  53938. default: true
  53939. },
  53940. {
  53941. name: "Macro",
  53942. height: math.unit(6 + 3/12, "feet")
  53943. },
  53944. ]
  53945. ))
  53946. characterMakers.push(() => makeCharacter(
  53947. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53948. {
  53949. front: {
  53950. height: math.unit(2 + 3/12, "feet"),
  53951. weight: math.unit(15 + 7/16, "lb"),
  53952. name: "Front",
  53953. image: {
  53954. source: "./media/characters/duke/front.svg",
  53955. extra: 910/815,
  53956. bottom: 30/940
  53957. }
  53958. },
  53959. },
  53960. [
  53961. {
  53962. name: "Normal",
  53963. height: math.unit(2 + 3/12, "feet"),
  53964. default: true
  53965. },
  53966. ]
  53967. ))
  53968. characterMakers.push(() => makeCharacter(
  53969. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53970. {
  53971. front: {
  53972. height: math.unit(5 + 4/12, "feet"),
  53973. weight: math.unit(156, "lb"),
  53974. name: "Front",
  53975. image: {
  53976. source: "./media/characters/dein/front.svg",
  53977. extra: 855/815,
  53978. bottom: 48/903
  53979. }
  53980. },
  53981. side: {
  53982. height: math.unit(5 + 4/12, "feet"),
  53983. weight: math.unit(156, "lb"),
  53984. name: "side",
  53985. image: {
  53986. source: "./media/characters/dein/side.svg",
  53987. extra: 846/803,
  53988. bottom: 25/871
  53989. }
  53990. },
  53991. maw: {
  53992. height: math.unit(1.45, "feet"),
  53993. name: "Maw",
  53994. image: {
  53995. source: "./media/characters/dein/maw.svg"
  53996. }
  53997. },
  53998. },
  53999. [
  54000. {
  54001. name: "Ferret Sized",
  54002. height: math.unit(2 + 5/12, "feet")
  54003. },
  54004. {
  54005. name: "Normal",
  54006. height: math.unit(5 + 4/12, "feet"),
  54007. default: true
  54008. },
  54009. ]
  54010. ))
  54011. characterMakers.push(() => makeCharacter(
  54012. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54013. {
  54014. front: {
  54015. height: math.unit(84 + 8/12, "feet"),
  54016. weight: math.unit(942180, "lb"),
  54017. name: "Front",
  54018. image: {
  54019. source: "./media/characters/daurine-arima/front.svg",
  54020. extra: 1989/1782,
  54021. bottom: 37/2026
  54022. }
  54023. },
  54024. side: {
  54025. height: math.unit(84 + 8/12, "feet"),
  54026. weight: math.unit(942180, "lb"),
  54027. name: "Side",
  54028. image: {
  54029. source: "./media/characters/daurine-arima/side.svg",
  54030. extra: 1997/1790,
  54031. bottom: 21/2018
  54032. }
  54033. },
  54034. back: {
  54035. height: math.unit(84 + 8/12, "feet"),
  54036. weight: math.unit(942180, "lb"),
  54037. name: "Back",
  54038. image: {
  54039. source: "./media/characters/daurine-arima/back.svg",
  54040. extra: 1992/1800,
  54041. bottom: 12/2004
  54042. }
  54043. },
  54044. head: {
  54045. height: math.unit(15.5, "feet"),
  54046. name: "Head",
  54047. image: {
  54048. source: "./media/characters/daurine-arima/head.svg"
  54049. }
  54050. },
  54051. headAlt: {
  54052. height: math.unit(19.19, "feet"),
  54053. name: "Head (Alt)",
  54054. image: {
  54055. source: "./media/characters/daurine-arima/head-alt.svg"
  54056. }
  54057. },
  54058. },
  54059. [
  54060. {
  54061. name: "Minimum height",
  54062. height: math.unit(8 + 10/12, "feet")
  54063. },
  54064. {
  54065. name: "Comfort height",
  54066. height: math.unit(19 + 6 /12, "feet")
  54067. },
  54068. {
  54069. name: "\"Normal\" height",
  54070. height: math.unit(28 + 10/12, "feet")
  54071. },
  54072. {
  54073. name: "Base height",
  54074. height: math.unit(84 + 8/12, "feet"),
  54075. default: true
  54076. },
  54077. {
  54078. name: "Mini-macro",
  54079. height: math.unit(2360, "feet")
  54080. },
  54081. {
  54082. name: "Macro",
  54083. height: math.unit(10, "miles")
  54084. },
  54085. {
  54086. name: "Goddess",
  54087. height: math.unit(9.99e40, "yottameters")
  54088. },
  54089. ]
  54090. ))
  54091. characterMakers.push(() => makeCharacter(
  54092. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54093. {
  54094. front: {
  54095. height: math.unit(2.3, "meters"),
  54096. name: "Front",
  54097. image: {
  54098. source: "./media/characters/cilenomon/front.svg",
  54099. extra: 1963/1778,
  54100. bottom: 54/2017
  54101. }
  54102. },
  54103. },
  54104. [
  54105. {
  54106. name: "Normal",
  54107. height: math.unit(2.3, "meters"),
  54108. default: true
  54109. },
  54110. {
  54111. name: "Big",
  54112. height: math.unit(5, "meters")
  54113. },
  54114. {
  54115. name: "Macro",
  54116. height: math.unit(30, "meters")
  54117. },
  54118. {
  54119. name: "True",
  54120. height: math.unit(1, "universe")
  54121. },
  54122. ]
  54123. ))
  54124. characterMakers.push(() => makeCharacter(
  54125. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54126. {
  54127. front: {
  54128. height: math.unit(5, "feet"),
  54129. name: "Front",
  54130. image: {
  54131. source: "./media/characters/sen-mink/front.svg",
  54132. extra: 1727/1675,
  54133. bottom: 35/1762
  54134. }
  54135. },
  54136. },
  54137. [
  54138. {
  54139. name: "Normal",
  54140. height: math.unit(5, "feet"),
  54141. default: true
  54142. },
  54143. ]
  54144. ))
  54145. characterMakers.push(() => makeCharacter(
  54146. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54147. {
  54148. front: {
  54149. height: math.unit(5.42999, "feet"),
  54150. weight: math.unit(100, "lb"),
  54151. name: "Front",
  54152. image: {
  54153. source: "./media/characters/ophois/front.svg",
  54154. extra: 1429/1286,
  54155. bottom: 60/1489
  54156. }
  54157. },
  54158. },
  54159. [
  54160. {
  54161. name: "Normal",
  54162. height: math.unit(5.42999, "feet"),
  54163. default: true
  54164. },
  54165. ]
  54166. ))
  54167. characterMakers.push(() => makeCharacter(
  54168. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54169. {
  54170. front: {
  54171. height: math.unit(2, "meters"),
  54172. name: "Front",
  54173. image: {
  54174. source: "./media/characters/riley/front.svg",
  54175. extra: 1779/1754,
  54176. bottom: 139/1918
  54177. }
  54178. },
  54179. },
  54180. [
  54181. {
  54182. name: "Normal",
  54183. height: math.unit(2, "meters"),
  54184. default: true
  54185. },
  54186. ]
  54187. ))
  54188. characterMakers.push(() => makeCharacter(
  54189. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54190. {
  54191. front: {
  54192. height: math.unit(6 + 2/12, "feet"),
  54193. weight: math.unit(195, "lb"),
  54194. preyCapacity: math.unit(6, "people"),
  54195. name: "Front",
  54196. image: {
  54197. source: "./media/characters/shuken-flash/front.svg",
  54198. extra: 1905/1739,
  54199. bottom: 65/1970
  54200. }
  54201. },
  54202. back: {
  54203. height: math.unit(6 + 2/12, "feet"),
  54204. weight: math.unit(195, "lb"),
  54205. preyCapacity: math.unit(6, "people"),
  54206. name: "Back",
  54207. image: {
  54208. source: "./media/characters/shuken-flash/back.svg",
  54209. extra: 1912/1751,
  54210. bottom: 13/1925
  54211. }
  54212. },
  54213. },
  54214. [
  54215. {
  54216. name: "Normal",
  54217. height: math.unit(6 + 2/12, "feet"),
  54218. default: true
  54219. },
  54220. ]
  54221. ))
  54222. characterMakers.push(() => makeCharacter(
  54223. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54224. {
  54225. front: {
  54226. height: math.unit(5 + 9/12, "feet"),
  54227. weight: math.unit(150, "lb"),
  54228. name: "Front",
  54229. image: {
  54230. source: "./media/characters/plat/front.svg",
  54231. extra: 1816/1703,
  54232. bottom: 43/1859
  54233. }
  54234. },
  54235. side: {
  54236. height: math.unit(5 + 9/12, "feet"),
  54237. weight: math.unit(300, "lb"),
  54238. name: "Side",
  54239. image: {
  54240. source: "./media/characters/plat/side.svg",
  54241. extra: 1824/1699,
  54242. bottom: 18/1842
  54243. }
  54244. },
  54245. },
  54246. [
  54247. {
  54248. name: "Normal",
  54249. height: math.unit(5 + 9/12, "feet"),
  54250. default: true
  54251. },
  54252. ]
  54253. ))
  54254. characterMakers.push(() => makeCharacter(
  54255. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54256. {
  54257. front: {
  54258. height: math.unit(9, "feet"),
  54259. weight: math.unit(1800, "lb"),
  54260. name: "Front",
  54261. image: {
  54262. source: "./media/characters/elaine/front.svg",
  54263. extra: 1833/1354,
  54264. bottom: 25/1858
  54265. }
  54266. },
  54267. back: {
  54268. height: math.unit(8.8, "feet"),
  54269. weight: math.unit(1800, "lb"),
  54270. name: "Back",
  54271. image: {
  54272. source: "./media/characters/elaine/back.svg",
  54273. extra: 1641/1233,
  54274. bottom: 53/1694
  54275. }
  54276. },
  54277. },
  54278. [
  54279. {
  54280. name: "Normal",
  54281. height: math.unit(9, "feet"),
  54282. default: true
  54283. },
  54284. ]
  54285. ))
  54286. characterMakers.push(() => makeCharacter(
  54287. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54288. {
  54289. front: {
  54290. height: math.unit(17 + 9/12, "feet"),
  54291. weight: math.unit(8000, "lb"),
  54292. name: "Front",
  54293. image: {
  54294. source: "./media/characters/vera-raven/front.svg",
  54295. extra: 1457/1412,
  54296. bottom: 121/1578
  54297. }
  54298. },
  54299. side: {
  54300. height: math.unit(17 + 9/12, "feet"),
  54301. weight: math.unit(8000, "lb"),
  54302. name: "Side",
  54303. image: {
  54304. source: "./media/characters/vera-raven/side.svg",
  54305. extra: 1510/1464,
  54306. bottom: 54/1564
  54307. }
  54308. },
  54309. },
  54310. [
  54311. {
  54312. name: "Normal",
  54313. height: math.unit(17 + 9/12, "feet"),
  54314. default: true
  54315. },
  54316. ]
  54317. ))
  54318. characterMakers.push(() => makeCharacter(
  54319. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54320. {
  54321. dressed: {
  54322. height: math.unit(6 + 9/12, "feet"),
  54323. name: "Dressed",
  54324. image: {
  54325. source: "./media/characters/nakisha/dressed.svg",
  54326. extra: 1909/1757,
  54327. bottom: 48/1957
  54328. }
  54329. },
  54330. nude: {
  54331. height: math.unit(6 + 9/12, "feet"),
  54332. name: "Nude",
  54333. image: {
  54334. source: "./media/characters/nakisha/nude.svg",
  54335. extra: 1917/1765,
  54336. bottom: 34/1951
  54337. }
  54338. },
  54339. },
  54340. [
  54341. {
  54342. name: "Normal",
  54343. height: math.unit(6 + 9/12, "feet"),
  54344. default: true
  54345. },
  54346. ]
  54347. ))
  54348. characterMakers.push(() => makeCharacter(
  54349. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54350. {
  54351. front: {
  54352. height: math.unit(87, "meters"),
  54353. name: "Front",
  54354. image: {
  54355. source: "./media/characters/serafin/front.svg",
  54356. extra: 1919/1776,
  54357. bottom: 65/1984
  54358. }
  54359. },
  54360. },
  54361. [
  54362. {
  54363. name: "Normal",
  54364. height: math.unit(87, "meters"),
  54365. default: true
  54366. },
  54367. ]
  54368. ))
  54369. characterMakers.push(() => makeCharacter(
  54370. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54371. {
  54372. front: {
  54373. height: math.unit(6, "feet"),
  54374. weight: math.unit(200, "lb"),
  54375. name: "Front",
  54376. image: {
  54377. source: "./media/characters/poptart/front.svg",
  54378. extra: 615/583,
  54379. bottom: 23/638
  54380. }
  54381. },
  54382. back: {
  54383. height: math.unit(6, "feet"),
  54384. weight: math.unit(200, "lb"),
  54385. name: "Back",
  54386. image: {
  54387. source: "./media/characters/poptart/back.svg",
  54388. extra: 617/584,
  54389. bottom: 22/639
  54390. }
  54391. },
  54392. frontNsfw: {
  54393. height: math.unit(6, "feet"),
  54394. weight: math.unit(200, "lb"),
  54395. name: "Front (NSFW)",
  54396. image: {
  54397. source: "./media/characters/poptart/front-nsfw.svg",
  54398. extra: 615/583,
  54399. bottom: 23/638
  54400. }
  54401. },
  54402. backNsfw: {
  54403. height: math.unit(6, "feet"),
  54404. weight: math.unit(200, "lb"),
  54405. name: "Back (NSFW)",
  54406. image: {
  54407. source: "./media/characters/poptart/back-nsfw.svg",
  54408. extra: 617/584,
  54409. bottom: 22/639
  54410. }
  54411. },
  54412. hand: {
  54413. height: math.unit(1.14, "feet"),
  54414. name: "Hand",
  54415. image: {
  54416. source: "./media/characters/poptart/hand.svg"
  54417. }
  54418. },
  54419. foot: {
  54420. height: math.unit(1.5, "feet"),
  54421. name: "Foot",
  54422. image: {
  54423. source: "./media/characters/poptart/foot.svg"
  54424. }
  54425. },
  54426. },
  54427. [
  54428. {
  54429. name: "Normal",
  54430. height: math.unit(6, "feet"),
  54431. default: true
  54432. },
  54433. {
  54434. name: "Grande",
  54435. height: math.unit(350, "feet")
  54436. },
  54437. {
  54438. name: "Massif",
  54439. height: math.unit(967, "feet")
  54440. },
  54441. ]
  54442. ))
  54443. characterMakers.push(() => makeCharacter(
  54444. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54445. {
  54446. hyenaSide: {
  54447. height: math.unit(120, "cm"),
  54448. weight: math.unit(120, "lb"),
  54449. name: "Side",
  54450. image: {
  54451. source: "./media/characters/trance/hyena-side.svg",
  54452. extra: 998/904,
  54453. bottom: 76/1074
  54454. }
  54455. },
  54456. },
  54457. [
  54458. {
  54459. name: "Normal",
  54460. height: math.unit(120, "cm"),
  54461. default: true
  54462. },
  54463. {
  54464. name: "Dire",
  54465. height: math.unit(230, "cm")
  54466. },
  54467. {
  54468. name: "Macro",
  54469. height: math.unit(37, "feet")
  54470. },
  54471. ]
  54472. ))
  54473. characterMakers.push(() => makeCharacter(
  54474. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54475. {
  54476. front: {
  54477. height: math.unit(6 + 3/12, "feet"),
  54478. name: "Front",
  54479. image: {
  54480. source: "./media/characters/michael-berretta/front.svg",
  54481. extra: 515/494,
  54482. bottom: 20/535
  54483. }
  54484. },
  54485. back: {
  54486. height: math.unit(6 + 3/12, "feet"),
  54487. name: "Back",
  54488. image: {
  54489. source: "./media/characters/michael-berretta/back.svg",
  54490. extra: 520/497,
  54491. bottom: 21/541
  54492. }
  54493. },
  54494. frontNsfw: {
  54495. height: math.unit(6 + 3/12, "feet"),
  54496. name: "Front (NSFW)",
  54497. image: {
  54498. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54499. extra: 515/494,
  54500. bottom: 20/535
  54501. }
  54502. },
  54503. dick: {
  54504. height: math.unit(1, "feet"),
  54505. name: "Dick",
  54506. image: {
  54507. source: "./media/characters/michael-berretta/dick.svg"
  54508. }
  54509. },
  54510. },
  54511. [
  54512. {
  54513. name: "Normal",
  54514. height: math.unit(6 + 3/12, "feet"),
  54515. default: true
  54516. },
  54517. {
  54518. name: "Big",
  54519. height: math.unit(12, "feet")
  54520. },
  54521. {
  54522. name: "Macro",
  54523. height: math.unit(187.5, "feet")
  54524. },
  54525. ]
  54526. ))
  54527. characterMakers.push(() => makeCharacter(
  54528. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54529. {
  54530. front: {
  54531. height: math.unit(9 + 9/12, "feet"),
  54532. weight: math.unit(1244, "lb"),
  54533. name: "Front",
  54534. image: {
  54535. source: "./media/characters/stella-edgecomb/front.svg",
  54536. extra: 1835/1706,
  54537. bottom: 49/1884
  54538. }
  54539. },
  54540. pen: {
  54541. height: math.unit(0.95, "feet"),
  54542. name: "Pen",
  54543. image: {
  54544. source: "./media/characters/stella-edgecomb/pen.svg"
  54545. }
  54546. },
  54547. },
  54548. [
  54549. {
  54550. name: "Cozy Bear",
  54551. height: math.unit(0.5, "inches")
  54552. },
  54553. {
  54554. name: "Normal",
  54555. height: math.unit(9 + 9/12, "feet"),
  54556. default: true
  54557. },
  54558. {
  54559. name: "Giga Bear",
  54560. height: math.unit(1, "mile")
  54561. },
  54562. {
  54563. name: "Great Bear",
  54564. height: math.unit(53, "miles")
  54565. },
  54566. {
  54567. name: "Goddess Bear",
  54568. height: math.unit(40000, "miles")
  54569. },
  54570. {
  54571. name: "Sun Bear",
  54572. height: math.unit(900000, "miles")
  54573. },
  54574. ]
  54575. ))
  54576. characterMakers.push(() => makeCharacter(
  54577. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54578. {
  54579. anthroFront: {
  54580. height: math.unit(556, "cm"),
  54581. weight: math.unit(2650, "kg"),
  54582. preyCapacity: math.unit(3, "people"),
  54583. name: "Front",
  54584. image: {
  54585. source: "./media/characters/ash´iika/front.svg",
  54586. extra: 710/673,
  54587. bottom: 15/725
  54588. },
  54589. form: "anthro",
  54590. default: true
  54591. },
  54592. anthroSide: {
  54593. height: math.unit(556, "cm"),
  54594. weight: math.unit(2650, "kg"),
  54595. preyCapacity: math.unit(3, "people"),
  54596. name: "Side",
  54597. image: {
  54598. source: "./media/characters/ash´iika/side.svg",
  54599. extra: 696/676,
  54600. bottom: 13/709
  54601. },
  54602. form: "anthro"
  54603. },
  54604. anthroDressed: {
  54605. height: math.unit(556, "cm"),
  54606. weight: math.unit(2650, "kg"),
  54607. preyCapacity: math.unit(3, "people"),
  54608. name: "Dressed",
  54609. image: {
  54610. source: "./media/characters/ash´iika/dressed.svg",
  54611. extra: 710/673,
  54612. bottom: 15/725
  54613. },
  54614. form: "anthro"
  54615. },
  54616. anthroHead: {
  54617. height: math.unit(3.5, "feet"),
  54618. name: "Head",
  54619. image: {
  54620. source: "./media/characters/ash´iika/head.svg",
  54621. extra: 348/291,
  54622. bottom: 45/393
  54623. },
  54624. form: "anthro"
  54625. },
  54626. feralSide: {
  54627. height: math.unit(870, "cm"),
  54628. weight: math.unit(17500, "kg"),
  54629. preyCapacity: math.unit(15, "people"),
  54630. name: "Side",
  54631. image: {
  54632. source: "./media/characters/ash´iika/feral.svg",
  54633. extra: 595/199,
  54634. bottom: 7/602
  54635. },
  54636. form: "feral",
  54637. default: true,
  54638. },
  54639. },
  54640. [
  54641. {
  54642. name: "Normal",
  54643. height: math.unit(556, "cm"),
  54644. default: true,
  54645. form: "anthro"
  54646. },
  54647. {
  54648. name: "Macro",
  54649. height: math.unit(88, "meters"),
  54650. form: "anthro"
  54651. },
  54652. {
  54653. name: "Normal",
  54654. height: math.unit(870, "cm"),
  54655. default: true,
  54656. form: "feral"
  54657. },
  54658. {
  54659. name: "Large",
  54660. height: math.unit(25, "meters"),
  54661. form: "feral"
  54662. },
  54663. ],
  54664. {
  54665. "anthro": {
  54666. name: "Anthro",
  54667. default: true
  54668. },
  54669. "feral": {
  54670. name: "Feral",
  54671. },
  54672. }
  54673. ))
  54674. characterMakers.push(() => makeCharacter(
  54675. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54676. {
  54677. front: {
  54678. height: math.unit(10, "feet"),
  54679. weight: math.unit(800, "lb"),
  54680. name: "Front",
  54681. image: {
  54682. source: "./media/characters/yen/front.svg",
  54683. extra: 443/411,
  54684. bottom: 6/449
  54685. }
  54686. },
  54687. sleeping: {
  54688. height: math.unit(10, "feet"),
  54689. weight: math.unit(800, "lb"),
  54690. name: "Sleeping",
  54691. image: {
  54692. source: "./media/characters/yen/sleeping.svg",
  54693. extra: 470/422,
  54694. bottom: 0/470
  54695. }
  54696. },
  54697. head: {
  54698. height: math.unit(2.2, "feet"),
  54699. name: "Head",
  54700. image: {
  54701. source: "./media/characters/yen/head.svg"
  54702. }
  54703. },
  54704. headAlt: {
  54705. height: math.unit(2.1, "feet"),
  54706. name: "Head (Alt)",
  54707. image: {
  54708. source: "./media/characters/yen/head-alt.svg"
  54709. }
  54710. },
  54711. },
  54712. [
  54713. {
  54714. name: "Normal",
  54715. height: math.unit(10, "feet"),
  54716. default: true
  54717. },
  54718. ]
  54719. ))
  54720. characterMakers.push(() => makeCharacter(
  54721. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54722. {
  54723. front: {
  54724. height: math.unit(12, "feet"),
  54725. name: "Front",
  54726. image: {
  54727. source: "./media/characters/citra/front.svg",
  54728. extra: 1950/1710,
  54729. bottom: 47/1997
  54730. }
  54731. },
  54732. },
  54733. [
  54734. {
  54735. name: "Normal",
  54736. height: math.unit(12, "feet"),
  54737. default: true
  54738. },
  54739. ]
  54740. ))
  54741. characterMakers.push(() => makeCharacter(
  54742. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54743. {
  54744. side: {
  54745. height: math.unit(7 + 10/12, "feet"),
  54746. name: "Side",
  54747. image: {
  54748. source: "./media/characters/sholstim/side.svg",
  54749. extra: 786/682,
  54750. bottom: 40/826
  54751. }
  54752. },
  54753. },
  54754. [
  54755. {
  54756. name: "Normal",
  54757. height: math.unit(7 + 10/12, "feet"),
  54758. default: true
  54759. },
  54760. ]
  54761. ))
  54762. characterMakers.push(() => makeCharacter(
  54763. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54764. {
  54765. front: {
  54766. height: math.unit(3.10, "meters"),
  54767. name: "Front",
  54768. image: {
  54769. source: "./media/characters/aggyn/front.svg",
  54770. extra: 1188/963,
  54771. bottom: 24/1212
  54772. }
  54773. },
  54774. },
  54775. [
  54776. {
  54777. name: "Normal",
  54778. height: math.unit(3.10, "meters"),
  54779. default: true
  54780. },
  54781. ]
  54782. ))
  54783. characterMakers.push(() => makeCharacter(
  54784. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54785. {
  54786. front: {
  54787. height: math.unit(7 + 5/12, "feet"),
  54788. weight: math.unit(687, "lb"),
  54789. name: "Front",
  54790. image: {
  54791. source: "./media/characters/alsandair-hergenroether/front.svg",
  54792. extra: 1251/1186,
  54793. bottom: 75/1326
  54794. }
  54795. },
  54796. back: {
  54797. height: math.unit(7 + 5/12, "feet"),
  54798. weight: math.unit(687, "lb"),
  54799. name: "Back",
  54800. image: {
  54801. source: "./media/characters/alsandair-hergenroether/back.svg",
  54802. extra: 1290/1229,
  54803. bottom: 17/1307
  54804. }
  54805. },
  54806. },
  54807. [
  54808. {
  54809. name: "Max Compression",
  54810. height: math.unit(7 + 5/12, "feet"),
  54811. default: true
  54812. },
  54813. {
  54814. name: "\"Normal\"",
  54815. height: math.unit(2, "universes")
  54816. },
  54817. ]
  54818. ))
  54819. characterMakers.push(() => makeCharacter(
  54820. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54821. {
  54822. front: {
  54823. height: math.unit(4 + 1/12, "feet"),
  54824. weight: math.unit(92, "lb"),
  54825. name: "Front",
  54826. image: {
  54827. source: "./media/characters/ie/front.svg",
  54828. extra: 1585/1352,
  54829. bottom: 91/1676
  54830. }
  54831. },
  54832. },
  54833. [
  54834. {
  54835. name: "Normal",
  54836. height: math.unit(4 + 1/12, "feet"),
  54837. default: true
  54838. },
  54839. ]
  54840. ))
  54841. characterMakers.push(() => makeCharacter(
  54842. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54843. {
  54844. anthro: {
  54845. height: math.unit(6, "feet"),
  54846. weight: math.unit(150, "lb"),
  54847. name: "Front",
  54848. image: {
  54849. source: "./media/characters/willow/anthro.svg",
  54850. extra: 1073/986,
  54851. bottom: 34/1107
  54852. },
  54853. form: "anthro",
  54854. default: true
  54855. },
  54856. taur: {
  54857. height: math.unit(6, "feet"),
  54858. weight: math.unit(150, "lb"),
  54859. name: "Side",
  54860. image: {
  54861. source: "./media/characters/willow/taur.svg",
  54862. extra: 647/512,
  54863. bottom: 136/783
  54864. },
  54865. form: "taur",
  54866. default: true
  54867. },
  54868. },
  54869. [
  54870. {
  54871. name: "Humanoid",
  54872. height: math.unit(2.7, "meters"),
  54873. form: "anthro"
  54874. },
  54875. {
  54876. name: "Normal",
  54877. height: math.unit(9, "meters"),
  54878. form: "anthro",
  54879. default: true
  54880. },
  54881. {
  54882. name: "Humanoid",
  54883. height: math.unit(2.1, "meters"),
  54884. form: "taur"
  54885. },
  54886. {
  54887. name: "Normal",
  54888. height: math.unit(7, "meters"),
  54889. form: "taur",
  54890. default: true
  54891. },
  54892. ],
  54893. {
  54894. "anthro": {
  54895. name: "Anthro",
  54896. default: true
  54897. },
  54898. "taur": {
  54899. name: "Taur",
  54900. },
  54901. }
  54902. ))
  54903. characterMakers.push(() => makeCharacter(
  54904. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54905. {
  54906. front: {
  54907. height: math.unit(2 + 5/12, "feet"),
  54908. name: "Front",
  54909. image: {
  54910. source: "./media/characters/kyan/front.svg",
  54911. extra: 460/334,
  54912. bottom: 23/483
  54913. },
  54914. extraAttributes: {
  54915. "toeLength": {
  54916. name: "Toe Length",
  54917. power: 1,
  54918. type: "length",
  54919. base: math.unit(7, "cm")
  54920. },
  54921. "toeclawLength": {
  54922. name: "Toeclaw Length",
  54923. power: 1,
  54924. type: "length",
  54925. base: math.unit(4.7, "cm")
  54926. },
  54927. "earHeight": {
  54928. name: "Ear Height",
  54929. power: 1,
  54930. type: "length",
  54931. base: math.unit(14.1, "cm")
  54932. },
  54933. }
  54934. },
  54935. paws: {
  54936. height: math.unit(0.45, "feet"),
  54937. name: "Paws",
  54938. image: {
  54939. source: "./media/characters/kyan/paws.svg",
  54940. extra: 581/581,
  54941. bottom: 114/695
  54942. }
  54943. },
  54944. },
  54945. [
  54946. {
  54947. name: "Normal",
  54948. height: math.unit(2 + 5/12, "feet"),
  54949. default: true
  54950. },
  54951. ]
  54952. ))
  54953. characterMakers.push(() => makeCharacter(
  54954. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54955. {
  54956. front: {
  54957. height: math.unit(2 + 2/3, "feet"),
  54958. name: "Front",
  54959. image: {
  54960. source: "./media/characters/xazzon/front.svg",
  54961. extra: 1109/984,
  54962. bottom: 42/1151
  54963. }
  54964. },
  54965. back: {
  54966. height: math.unit(2 + 2/3, "feet"),
  54967. name: "Back",
  54968. image: {
  54969. source: "./media/characters/xazzon/back.svg",
  54970. extra: 1095/971,
  54971. bottom: 23/1118
  54972. }
  54973. },
  54974. },
  54975. [
  54976. {
  54977. name: "Normal",
  54978. height: math.unit(2 + 2/3, "feet"),
  54979. default: true
  54980. },
  54981. ]
  54982. ))
  54983. characterMakers.push(() => makeCharacter(
  54984. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54985. {
  54986. front: {
  54987. height: math.unit(8, "feet"),
  54988. weight: math.unit(300, "lb"),
  54989. name: "Front",
  54990. image: {
  54991. source: "./media/characters/khyla-shadowsong/front.svg",
  54992. extra: 861/798,
  54993. bottom: 32/893
  54994. }
  54995. },
  54996. side: {
  54997. height: math.unit(8, "feet"),
  54998. weight: math.unit(300, "lb"),
  54999. name: "Side",
  55000. image: {
  55001. source: "./media/characters/khyla-shadowsong/side.svg",
  55002. extra: 790/750,
  55003. bottom: 87/877
  55004. }
  55005. },
  55006. back: {
  55007. height: math.unit(8, "feet"),
  55008. weight: math.unit(300, "lb"),
  55009. name: "Back",
  55010. image: {
  55011. source: "./media/characters/khyla-shadowsong/back.svg",
  55012. extra: 855/808,
  55013. bottom: 14/869
  55014. }
  55015. },
  55016. head: {
  55017. height: math.unit(2.7, "feet"),
  55018. name: "Head",
  55019. image: {
  55020. source: "./media/characters/khyla-shadowsong/head.svg"
  55021. }
  55022. },
  55023. },
  55024. [
  55025. {
  55026. name: "Micro",
  55027. height: math.unit(6, "inches")
  55028. },
  55029. {
  55030. name: "Normal",
  55031. height: math.unit(8, "feet"),
  55032. default: true
  55033. },
  55034. ]
  55035. ))
  55036. characterMakers.push(() => makeCharacter(
  55037. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55038. {
  55039. hyperFront: {
  55040. height: math.unit(9 + 4/12, "feet"),
  55041. weight: math.unit(2000, "lb"),
  55042. name: "Front",
  55043. image: {
  55044. source: "./media/characters/tiden/hyper-front.svg",
  55045. extra: 400/382,
  55046. bottom: 6/406
  55047. },
  55048. form: "hyper",
  55049. },
  55050. regularFront: {
  55051. height: math.unit(7 + 10/12, "feet"),
  55052. weight: math.unit(470, "lb"),
  55053. name: "Front",
  55054. image: {
  55055. source: "./media/characters/tiden/regular-front.svg",
  55056. extra: 468/442,
  55057. bottom: 6/474
  55058. },
  55059. form: "regular",
  55060. },
  55061. },
  55062. [
  55063. {
  55064. name: "Normal",
  55065. height: math.unit(9 + 4/12, "feet"),
  55066. default: true,
  55067. form: "hyper"
  55068. },
  55069. {
  55070. name: "Normal",
  55071. height: math.unit(7 + 10/12, "feet"),
  55072. default: true,
  55073. form: "regular"
  55074. },
  55075. ],
  55076. {
  55077. "hyper": {
  55078. name: "Hyper",
  55079. default: true
  55080. },
  55081. "regular": {
  55082. name: "Regular",
  55083. },
  55084. }
  55085. ))
  55086. characterMakers.push(() => makeCharacter(
  55087. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55088. {
  55089. side: {
  55090. height: math.unit(6, "feet"),
  55091. weight: math.unit(150, "lb"),
  55092. name: "Side",
  55093. image: {
  55094. source: "./media/characters/jason-crowe/side.svg",
  55095. extra: 1771/766,
  55096. bottom: 219/1990
  55097. }
  55098. },
  55099. },
  55100. [
  55101. {
  55102. name: "Pocket Gryphon",
  55103. height: math.unit(6, "cm")
  55104. },
  55105. {
  55106. name: "Raven",
  55107. height: math.unit(60, "cm")
  55108. },
  55109. {
  55110. name: "Normal",
  55111. height: math.unit(1, "meter"),
  55112. default: true
  55113. },
  55114. ]
  55115. ))
  55116. characterMakers.push(() => makeCharacter(
  55117. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55118. {
  55119. front: {
  55120. height: math.unit(9 + 6/12, "feet"),
  55121. weight: math.unit(1100, "lb"),
  55122. name: "Front",
  55123. image: {
  55124. source: "./media/characters/django/front.svg",
  55125. extra: 1231/1136,
  55126. bottom: 34/1265
  55127. }
  55128. },
  55129. side: {
  55130. height: math.unit(9 + 6/12, "feet"),
  55131. weight: math.unit(1100, "lb"),
  55132. name: "Side",
  55133. image: {
  55134. source: "./media/characters/django/side.svg",
  55135. extra: 1267/1174,
  55136. bottom: 9/1276
  55137. }
  55138. },
  55139. },
  55140. [
  55141. {
  55142. name: "Normal",
  55143. height: math.unit(9 + 6/12, "feet"),
  55144. default: true
  55145. },
  55146. {
  55147. name: "Macro 1",
  55148. height: math.unit(50, "feet")
  55149. },
  55150. {
  55151. name: "Macro 2",
  55152. height: math.unit(500, "feet")
  55153. },
  55154. {
  55155. name: "Mega Macro",
  55156. height: math.unit(5300, "feet")
  55157. },
  55158. ]
  55159. ))
  55160. characterMakers.push(() => makeCharacter(
  55161. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55162. {
  55163. frontSfw: {
  55164. height: math.unit(120, "cm"),
  55165. weight: math.unit(15, "kg"),
  55166. name: "Front (SFW)",
  55167. image: {
  55168. source: "./media/characters/eri/front-sfw.svg",
  55169. extra: 1014/939,
  55170. bottom: 37/1051
  55171. },
  55172. form: "moth",
  55173. },
  55174. frontNsfw: {
  55175. height: math.unit(120, "cm"),
  55176. weight: math.unit(15, "kg"),
  55177. name: "Front (NSFW)",
  55178. image: {
  55179. source: "./media/characters/eri/front-nsfw.svg",
  55180. extra: 1014/939,
  55181. bottom: 37/1051
  55182. },
  55183. form: "moth",
  55184. default: true
  55185. },
  55186. egg: {
  55187. height: math.unit(10, "cm"),
  55188. name: "Egg",
  55189. image: {
  55190. source: "./media/characters/eri/egg.svg"
  55191. },
  55192. form: "egg",
  55193. default: true
  55194. },
  55195. },
  55196. [
  55197. {
  55198. name: "Normal",
  55199. height: math.unit(120, "cm"),
  55200. default: true,
  55201. form: "moth"
  55202. },
  55203. {
  55204. name: "Normal",
  55205. height: math.unit(10, "cm"),
  55206. default: true,
  55207. form: "egg"
  55208. },
  55209. ],
  55210. {
  55211. "moth": {
  55212. name: "Moth",
  55213. default: true
  55214. },
  55215. "egg": {
  55216. name: "Egg",
  55217. },
  55218. }
  55219. ))
  55220. characterMakers.push(() => makeCharacter(
  55221. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55222. {
  55223. front: {
  55224. height: math.unit(200, "feet"),
  55225. name: "Front",
  55226. image: {
  55227. source: "./media/characters/bishop-dowser/front.svg",
  55228. extra: 933/868,
  55229. bottom: 106/1039
  55230. }
  55231. },
  55232. },
  55233. [
  55234. {
  55235. name: "Giant",
  55236. height: math.unit(200, "feet"),
  55237. default: true
  55238. },
  55239. ]
  55240. ))
  55241. characterMakers.push(() => makeCharacter(
  55242. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55243. {
  55244. front: {
  55245. height: math.unit(2, "meters"),
  55246. preyCapacity: math.unit(3, "people"),
  55247. name: "Front",
  55248. image: {
  55249. source: "./media/characters/fryra/front.svg",
  55250. extra: 1025/948,
  55251. bottom: 30/1055
  55252. },
  55253. extraAttributes: {
  55254. "breastVolume": {
  55255. name: "Breast Volume",
  55256. power: 3,
  55257. type: "volume",
  55258. base: math.unit(8, "liters")
  55259. },
  55260. }
  55261. },
  55262. back: {
  55263. height: math.unit(2, "meters"),
  55264. preyCapacity: math.unit(3, "people"),
  55265. name: "Back",
  55266. image: {
  55267. source: "./media/characters/fryra/back.svg",
  55268. extra: 993/938,
  55269. bottom: 38/1031
  55270. },
  55271. extraAttributes: {
  55272. "breastVolume": {
  55273. name: "Breast Volume",
  55274. power: 3,
  55275. type: "volume",
  55276. base: math.unit(8, "liters")
  55277. },
  55278. }
  55279. },
  55280. head: {
  55281. height: math.unit(1.33, "feet"),
  55282. name: "Head",
  55283. image: {
  55284. source: "./media/characters/fryra/head.svg"
  55285. }
  55286. },
  55287. maw: {
  55288. height: math.unit(0.56, "feet"),
  55289. name: "Maw",
  55290. image: {
  55291. source: "./media/characters/fryra/maw.svg"
  55292. }
  55293. },
  55294. },
  55295. [
  55296. {
  55297. name: "Micro",
  55298. height: math.unit(5, "cm")
  55299. },
  55300. {
  55301. name: "Normal",
  55302. height: math.unit(2, "meters"),
  55303. default: true
  55304. },
  55305. {
  55306. name: "Small Macro",
  55307. height: math.unit(8, "meters")
  55308. },
  55309. {
  55310. name: "Macro",
  55311. height: math.unit(50, "meters")
  55312. },
  55313. {
  55314. name: "Megamacro",
  55315. height: math.unit(1, "km")
  55316. },
  55317. {
  55318. name: "Planetary",
  55319. height: math.unit(300000, "km")
  55320. },
  55321. {
  55322. name: "Universal",
  55323. height: math.unit(250, "lightyears")
  55324. },
  55325. {
  55326. name: "Fabric of Reality",
  55327. height: math.unit(1000, "multiverses")
  55328. },
  55329. ]
  55330. ))
  55331. characterMakers.push(() => makeCharacter(
  55332. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55333. {
  55334. frontDressed: {
  55335. height: math.unit(6 + 2/12, "feet"),
  55336. name: "Front (Dressed)",
  55337. image: {
  55338. source: "./media/characters/fiera/front-dressed.svg",
  55339. extra: 1883/1793,
  55340. bottom: 70/1953
  55341. }
  55342. },
  55343. backDressed: {
  55344. height: math.unit(6 + 2/12, "feet"),
  55345. name: "Back (Dressed)",
  55346. image: {
  55347. source: "./media/characters/fiera/back-dressed.svg",
  55348. extra: 1847/1780,
  55349. bottom: 70/1917
  55350. }
  55351. },
  55352. frontNude: {
  55353. height: math.unit(6 + 2/12, "feet"),
  55354. name: "Front (Nude)",
  55355. image: {
  55356. source: "./media/characters/fiera/front-nude.svg",
  55357. extra: 1875/1785,
  55358. bottom: 66/1941
  55359. }
  55360. },
  55361. backNude: {
  55362. height: math.unit(6 + 2/12, "feet"),
  55363. name: "Back (Nude)",
  55364. image: {
  55365. source: "./media/characters/fiera/back-nude.svg",
  55366. extra: 1855/1788,
  55367. bottom: 44/1899
  55368. }
  55369. },
  55370. maw: {
  55371. height: math.unit(1.3, "feet"),
  55372. name: "Maw",
  55373. image: {
  55374. source: "./media/characters/fiera/maw.svg"
  55375. }
  55376. },
  55377. paw: {
  55378. height: math.unit(1, "feet"),
  55379. name: "Paw",
  55380. image: {
  55381. source: "./media/characters/fiera/paw.svg"
  55382. }
  55383. },
  55384. shoe: {
  55385. height: math.unit(1.05, "feet"),
  55386. name: "Shoe",
  55387. image: {
  55388. source: "./media/characters/fiera/shoe.svg"
  55389. }
  55390. },
  55391. },
  55392. [
  55393. {
  55394. name: "Normal",
  55395. height: math.unit(6 + 2/12, "feet"),
  55396. default: true
  55397. },
  55398. {
  55399. name: "Size Difference",
  55400. height: math.unit(13, "feet")
  55401. },
  55402. {
  55403. name: "Macro",
  55404. height: math.unit(60, "feet")
  55405. },
  55406. {
  55407. name: "Mega Macro",
  55408. height: math.unit(200, "feet")
  55409. },
  55410. ]
  55411. ))
  55412. characterMakers.push(() => makeCharacter(
  55413. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55414. {
  55415. back: {
  55416. height: math.unit(6, "feet"),
  55417. name: "Back",
  55418. image: {
  55419. source: "./media/characters/flare/back.svg",
  55420. extra: 1883/1765,
  55421. bottom: 32/1915
  55422. }
  55423. },
  55424. },
  55425. [
  55426. {
  55427. name: "Normal",
  55428. height: math.unit(6 + 2/12, "feet"),
  55429. default: true
  55430. },
  55431. {
  55432. name: "Size Difference",
  55433. height: math.unit(13, "feet")
  55434. },
  55435. {
  55436. name: "Macro",
  55437. height: math.unit(60, "feet")
  55438. },
  55439. {
  55440. name: "Macro 2",
  55441. height: math.unit(100, "feet")
  55442. },
  55443. {
  55444. name: "Mega Macro",
  55445. height: math.unit(200, "feet")
  55446. },
  55447. ]
  55448. ))
  55449. characterMakers.push(() => makeCharacter(
  55450. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55451. {
  55452. front: {
  55453. height: math.unit(2.2, "m"),
  55454. weight: math.unit(300, "kg"),
  55455. name: "Front",
  55456. image: {
  55457. source: "./media/characters/hanna/front.svg",
  55458. extra: 1696/1502,
  55459. bottom: 206/1902
  55460. }
  55461. },
  55462. },
  55463. [
  55464. {
  55465. name: "Humanoid",
  55466. height: math.unit(2.2, "meters")
  55467. },
  55468. {
  55469. name: "Normal",
  55470. height: math.unit(4.8, "meters"),
  55471. default: true
  55472. },
  55473. ]
  55474. ))
  55475. characterMakers.push(() => makeCharacter(
  55476. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55477. {
  55478. front: {
  55479. height: math.unit(2.8, "meters"),
  55480. name: "Front",
  55481. image: {
  55482. source: "./media/characters/argo/front.svg",
  55483. extra: 731/518,
  55484. bottom: 84/815
  55485. }
  55486. },
  55487. },
  55488. [
  55489. {
  55490. name: "Normal",
  55491. height: math.unit(3, "meters"),
  55492. default: true
  55493. },
  55494. ]
  55495. ))
  55496. characterMakers.push(() => makeCharacter(
  55497. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55498. {
  55499. side: {
  55500. height: math.unit(3.8, "meters"),
  55501. name: "Side",
  55502. image: {
  55503. source: "./media/characters/sybil/side.svg",
  55504. extra: 382/361,
  55505. bottom: 25/407
  55506. }
  55507. },
  55508. },
  55509. [
  55510. {
  55511. name: "Normal",
  55512. height: math.unit(3.8, "meters"),
  55513. default: true
  55514. },
  55515. ]
  55516. ))
  55517. characterMakers.push(() => makeCharacter(
  55518. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55519. {
  55520. side: {
  55521. height: math.unit(6, "meters"),
  55522. name: "Side",
  55523. image: {
  55524. source: "./media/characters/plum/side.svg",
  55525. extra: 858/755,
  55526. bottom: 45/903
  55527. },
  55528. form: "taur",
  55529. default: true
  55530. },
  55531. back: {
  55532. height: math.unit(6.3, "meters"),
  55533. name: "Back",
  55534. image: {
  55535. source: "./media/characters/plum/back.svg",
  55536. extra: 887/813,
  55537. bottom: 32/919
  55538. },
  55539. form: "taur",
  55540. },
  55541. feral: {
  55542. height: math.unit(5.5, "meter"),
  55543. name: "Front",
  55544. image: {
  55545. source: "./media/characters/plum/feral.svg",
  55546. extra: 568/403,
  55547. bottom: 51/619
  55548. },
  55549. form: "feral",
  55550. default: true
  55551. },
  55552. head: {
  55553. height: math.unit(1.46, "meter"),
  55554. name: "Head",
  55555. image: {
  55556. source: "./media/characters/plum/head.svg"
  55557. },
  55558. form: "taur"
  55559. },
  55560. tailTop: {
  55561. height: math.unit(5.6, "meter"),
  55562. name: "Tail (Top)",
  55563. image: {
  55564. source: "./media/characters/plum/tail-top.svg"
  55565. },
  55566. form: "taur",
  55567. },
  55568. tailBottom: {
  55569. height: math.unit(5.6, "meter"),
  55570. name: "Tail (Bottom)",
  55571. image: {
  55572. source: "./media/characters/plum/tail-bottom.svg"
  55573. },
  55574. form: "taur",
  55575. },
  55576. feralHead: {
  55577. height: math.unit(2.56549521, "meter"),
  55578. name: "Head",
  55579. image: {
  55580. source: "./media/characters/plum/head.svg"
  55581. },
  55582. form: "feral"
  55583. },
  55584. feralTailTop: {
  55585. height: math.unit(5.44728435, "meter"),
  55586. name: "Tail (Top)",
  55587. image: {
  55588. source: "./media/characters/plum/tail-top.svg"
  55589. },
  55590. form: "feral",
  55591. },
  55592. feralTailBottom: {
  55593. height: math.unit(5.44728435, "meter"),
  55594. name: "Tail (Bottom)",
  55595. image: {
  55596. source: "./media/characters/plum/tail-bottom.svg"
  55597. },
  55598. form: "feral",
  55599. },
  55600. },
  55601. [
  55602. {
  55603. name: "Normal",
  55604. height: math.unit(6, "meters"),
  55605. default: true,
  55606. form: "taur"
  55607. },
  55608. {
  55609. name: "Normal",
  55610. height: math.unit(5.5, "meters"),
  55611. default: true,
  55612. form: "feral"
  55613. },
  55614. ],
  55615. {
  55616. "taur": {
  55617. name: "Taur",
  55618. default: true
  55619. },
  55620. "feral": {
  55621. name: "Feral",
  55622. },
  55623. }
  55624. ))
  55625. characterMakers.push(() => makeCharacter(
  55626. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55627. {
  55628. front: {
  55629. height: math.unit(6, "feet"),
  55630. weight: math.unit(115, "lb"),
  55631. name: "Front",
  55632. image: {
  55633. source: "./media/characters/celeste-kitsune/front.svg",
  55634. extra: 393/366,
  55635. bottom: 7/400
  55636. }
  55637. },
  55638. side: {
  55639. height: math.unit(6, "feet"),
  55640. weight: math.unit(115, "lb"),
  55641. name: "Side",
  55642. image: {
  55643. source: "./media/characters/celeste-kitsune/side.svg",
  55644. extra: 818/765,
  55645. bottom: 40/858
  55646. }
  55647. },
  55648. },
  55649. [
  55650. {
  55651. name: "Megamacro",
  55652. height: math.unit(1500, "miles"),
  55653. default: true
  55654. },
  55655. ]
  55656. ))
  55657. characterMakers.push(() => makeCharacter(
  55658. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55659. {
  55660. front: {
  55661. height: math.unit(8, "meters"),
  55662. name: "Front",
  55663. image: {
  55664. source: "./media/characters/io/front.svg",
  55665. extra: 865/722,
  55666. bottom: 58/923
  55667. }
  55668. },
  55669. back: {
  55670. height: math.unit(8, "meters"),
  55671. name: "Back",
  55672. image: {
  55673. source: "./media/characters/io/back.svg",
  55674. extra: 920/776,
  55675. bottom: 42/962
  55676. }
  55677. },
  55678. head: {
  55679. height: math.unit(5.09, "meters"),
  55680. name: "Head",
  55681. image: {
  55682. source: "./media/characters/io/head.svg"
  55683. }
  55684. },
  55685. hand: {
  55686. height: math.unit(1.6, "meters"),
  55687. name: "Hand",
  55688. image: {
  55689. source: "./media/characters/io/hand.svg"
  55690. }
  55691. },
  55692. foot: {
  55693. height: math.unit(2.4, "meters"),
  55694. name: "Foot",
  55695. image: {
  55696. source: "./media/characters/io/foot.svg"
  55697. }
  55698. },
  55699. },
  55700. [
  55701. {
  55702. name: "Normal",
  55703. height: math.unit(8, "meters"),
  55704. default: true
  55705. },
  55706. ]
  55707. ))
  55708. characterMakers.push(() => makeCharacter(
  55709. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55710. {
  55711. side: {
  55712. height: math.unit(6 + 3/12, "feet"),
  55713. weight: math.unit(225, "lb"),
  55714. name: "Side",
  55715. image: {
  55716. source: "./media/characters/silas/side.svg",
  55717. extra: 703/653,
  55718. bottom: 23/726
  55719. },
  55720. extraAttributes: {
  55721. "pawLength": {
  55722. name: "Paw Length",
  55723. power: 1,
  55724. type: "length",
  55725. base: math.unit(12, "inches")
  55726. },
  55727. "pawWidth": {
  55728. name: "Paw Width",
  55729. power: 1,
  55730. type: "length",
  55731. base: math.unit(4.5, "inches")
  55732. },
  55733. "pawArea": {
  55734. name: "Paw Area",
  55735. power: 2,
  55736. type: "area",
  55737. base: math.unit(12 * 4.5, "inches^2")
  55738. },
  55739. }
  55740. },
  55741. },
  55742. [
  55743. {
  55744. name: "Normal",
  55745. height: math.unit(6 + 3/12, "feet"),
  55746. default: true
  55747. },
  55748. ]
  55749. ))
  55750. characterMakers.push(() => makeCharacter(
  55751. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55752. {
  55753. back: {
  55754. height: math.unit(1.6, "meters"),
  55755. weight: math.unit(150, "lb"),
  55756. name: "Back",
  55757. image: {
  55758. source: "./media/characters/zari/back.svg",
  55759. extra: 424/411,
  55760. bottom: 32/456
  55761. },
  55762. extraAttributes: {
  55763. "bladderCapacity": {
  55764. name: "Bladder Size",
  55765. power: 3,
  55766. type: "volume",
  55767. base: math.unit(500, "mL")
  55768. },
  55769. "bladderFlow": {
  55770. name: "Flow Rate",
  55771. power: 3,
  55772. type: "volume",
  55773. base: math.unit(25, "mL")
  55774. },
  55775. }
  55776. },
  55777. },
  55778. [
  55779. {
  55780. name: "Normal",
  55781. height: math.unit(1.6, "meters"),
  55782. default: true
  55783. },
  55784. ]
  55785. ))
  55786. characterMakers.push(() => makeCharacter(
  55787. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55788. {
  55789. front: {
  55790. height: math.unit(25, "feet"),
  55791. weight: math.unit(5, "tons"),
  55792. name: "Front",
  55793. image: {
  55794. source: "./media/characters/charlie-human/front.svg",
  55795. extra: 1870/1740,
  55796. bottom: 102/1972
  55797. },
  55798. extraAttributes: {
  55799. "dickLength": {
  55800. name: "Dick Length",
  55801. power: 1,
  55802. type: "length",
  55803. base: math.unit(9, "feet")
  55804. },
  55805. }
  55806. },
  55807. back: {
  55808. height: math.unit(25, "feet"),
  55809. weight: math.unit(5, "tons"),
  55810. name: "Back",
  55811. image: {
  55812. source: "./media/characters/charlie-human/back.svg",
  55813. extra: 1858/1733,
  55814. bottom: 105/1963
  55815. },
  55816. extraAttributes: {
  55817. "dickLength": {
  55818. name: "Dick Length",
  55819. power: 1,
  55820. type: "length",
  55821. base: math.unit(9, "feet")
  55822. },
  55823. }
  55824. },
  55825. },
  55826. [
  55827. {
  55828. name: "\"Normal\"",
  55829. height: math.unit(6 + 4/12, "feet")
  55830. },
  55831. {
  55832. name: "Big",
  55833. height: math.unit(25, "feet"),
  55834. default: true
  55835. },
  55836. ]
  55837. ))
  55838. characterMakers.push(() => makeCharacter(
  55839. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55840. {
  55841. front: {
  55842. height: math.unit(6 + 4/12, "feet"),
  55843. weight: math.unit(320, "lb"),
  55844. name: "Front",
  55845. image: {
  55846. source: "./media/characters/ookitsu/front.svg",
  55847. extra: 1160/976,
  55848. bottom: 38/1198
  55849. }
  55850. },
  55851. frontNsfw: {
  55852. height: math.unit(6 + 4/12, "feet"),
  55853. weight: math.unit(320, "lb"),
  55854. name: "Front (NSFW)",
  55855. image: {
  55856. source: "./media/characters/ookitsu/front-nsfw.svg",
  55857. extra: 1160/976,
  55858. bottom: 38/1198
  55859. }
  55860. },
  55861. back: {
  55862. height: math.unit(6 + 4/12, "feet"),
  55863. weight: math.unit(320, "lb"),
  55864. name: "Back",
  55865. image: {
  55866. source: "./media/characters/ookitsu/back.svg",
  55867. extra: 1030/975,
  55868. bottom: 70/1100
  55869. }
  55870. },
  55871. head: {
  55872. height: math.unit(1.79, "feet"),
  55873. name: "Head",
  55874. image: {
  55875. source: "./media/characters/ookitsu/head.svg"
  55876. }
  55877. },
  55878. hand: {
  55879. height: math.unit(0.92, "feet"),
  55880. name: "Hand",
  55881. image: {
  55882. source: "./media/characters/ookitsu/hand.svg"
  55883. }
  55884. },
  55885. tails: {
  55886. height: math.unit(3.3, "feet"),
  55887. name: "Tails",
  55888. image: {
  55889. source: "./media/characters/ookitsu/tails.svg"
  55890. }
  55891. },
  55892. dick: {
  55893. height: math.unit(1.10833, "feet"),
  55894. name: "Dick",
  55895. image: {
  55896. source: "./media/characters/ookitsu/dick.svg"
  55897. }
  55898. },
  55899. },
  55900. [
  55901. {
  55902. name: "Normal",
  55903. height: math.unit(6 + 4/12, "feet"),
  55904. default: true
  55905. },
  55906. {
  55907. name: "Macro",
  55908. height: math.unit(30, "feet")
  55909. },
  55910. ]
  55911. ))
  55912. characterMakers.push(() => makeCharacter(
  55913. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55914. {
  55915. anthroFront: {
  55916. height: math.unit(6, "feet"),
  55917. weight: math.unit(250, "lb"),
  55918. name: "Front",
  55919. image: {
  55920. source: "./media/characters/jhusky/anthro-front.svg",
  55921. extra: 474/439,
  55922. bottom: 7/481
  55923. },
  55924. form: "anthro",
  55925. default: true
  55926. },
  55927. taurSideSfw: {
  55928. height: math.unit(6 + 4/12, "feet"),
  55929. weight: math.unit(500, "lb"),
  55930. name: "Side (SFW)",
  55931. image: {
  55932. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55933. extra: 1741/1629,
  55934. bottom: 196/1937
  55935. },
  55936. form: "taur",
  55937. default: true
  55938. },
  55939. taurSideNsfw: {
  55940. height: math.unit(6 + 4/12, "feet"),
  55941. weight: math.unit(500, "lb"),
  55942. name: "Taur (NSFW)",
  55943. image: {
  55944. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55945. extra: 1741/1629,
  55946. bottom: 196/1937
  55947. },
  55948. form: "taur",
  55949. },
  55950. },
  55951. [
  55952. {
  55953. name: "Huge",
  55954. height: math.unit(500, "feet"),
  55955. form: "anthro"
  55956. },
  55957. {
  55958. name: "Macro",
  55959. height: math.unit(1000, "feet"),
  55960. default: true,
  55961. form: "anthro"
  55962. },
  55963. {
  55964. name: "Megamacro",
  55965. height: math.unit(10000, "feet"),
  55966. form: "anthro"
  55967. },
  55968. {
  55969. name: "Huge",
  55970. height: math.unit(528, "feet"),
  55971. form: "taur"
  55972. },
  55973. {
  55974. name: "Macro",
  55975. height: math.unit(1056, "feet"),
  55976. default: true,
  55977. form: "taur"
  55978. },
  55979. {
  55980. name: "Megamacro",
  55981. height: math.unit(10556, "feet"),
  55982. form: "taur"
  55983. },
  55984. ],
  55985. {
  55986. "anthro": {
  55987. name: "Anthro",
  55988. default: true
  55989. },
  55990. "taur": {
  55991. name: "Taur",
  55992. },
  55993. }
  55994. ))
  55995. characterMakers.push(() => makeCharacter(
  55996. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55997. {
  55998. front: {
  55999. height: math.unit(8, "feet"),
  56000. weight: math.unit(500, "lb"),
  56001. name: "Front",
  56002. image: {
  56003. source: "./media/characters/armail/front.svg",
  56004. extra: 1753/1669,
  56005. bottom: 155/1908
  56006. }
  56007. },
  56008. back: {
  56009. height: math.unit(8, "feet"),
  56010. weight: math.unit(500, "lb"),
  56011. name: "Back",
  56012. image: {
  56013. source: "./media/characters/armail/back.svg",
  56014. extra: 1872/1803,
  56015. bottom: 63/1935
  56016. }
  56017. },
  56018. },
  56019. [
  56020. {
  56021. name: "Micro",
  56022. height: math.unit(0.25, "feet")
  56023. },
  56024. {
  56025. name: "Normal",
  56026. height: math.unit(8, "feet"),
  56027. default: true
  56028. },
  56029. {
  56030. name: "Mini-macro",
  56031. height: math.unit(30, "feet")
  56032. },
  56033. {
  56034. name: "Macro",
  56035. height: math.unit(400, "feet")
  56036. },
  56037. {
  56038. name: "Mega-macro",
  56039. height: math.unit(6000, "feet")
  56040. },
  56041. ]
  56042. ))
  56043. characterMakers.push(() => makeCharacter(
  56044. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56045. {
  56046. front: {
  56047. height: math.unit(6 + 7/12, "feet"),
  56048. weight: math.unit(210, "lb"),
  56049. name: "Front",
  56050. image: {
  56051. source: "./media/characters/wilfred-t-buxton/front.svg",
  56052. extra: 1068/882,
  56053. bottom: 28/1096
  56054. }
  56055. },
  56056. },
  56057. [
  56058. {
  56059. name: "Normal",
  56060. height: math.unit(6 + 7/12, "feet"),
  56061. default: true
  56062. },
  56063. ]
  56064. ))
  56065. characterMakers.push(() => makeCharacter(
  56066. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56067. {
  56068. front: {
  56069. height: math.unit(5 + 2/12, "feet"),
  56070. weight: math.unit(120, "lb"),
  56071. name: "Front",
  56072. image: {
  56073. source: "./media/characters/leighton-marrow/front.svg",
  56074. extra: 441/409,
  56075. bottom: 37/478
  56076. }
  56077. },
  56078. },
  56079. [
  56080. {
  56081. name: "Normal",
  56082. height: math.unit(5 + 2/12, "feet"),
  56083. default: true
  56084. },
  56085. ]
  56086. ))
  56087. characterMakers.push(() => makeCharacter(
  56088. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56089. {
  56090. front: {
  56091. height: math.unit(4, "meters"),
  56092. weight: math.unit(1200, "kg"),
  56093. name: "Front",
  56094. image: {
  56095. source: "./media/characters/licos/front.svg",
  56096. extra: 1727/1604,
  56097. bottom: 101/1828
  56098. },
  56099. form: "anthro",
  56100. default: true
  56101. },
  56102. taur_side: {
  56103. height: math.unit(20, "meters"),
  56104. weight: math.unit(1100000, "kg"),
  56105. name: "Side",
  56106. image: {
  56107. source: "./media/characters/licos/taur.svg",
  56108. extra: 1158/1091,
  56109. bottom: 80/1238
  56110. },
  56111. form: "taur",
  56112. default: true
  56113. },
  56114. },
  56115. [
  56116. {
  56117. name: "Normal",
  56118. height: math.unit(4, "meters"),
  56119. default: true,
  56120. form: "anthro"
  56121. },
  56122. {
  56123. name: "Normal",
  56124. height: math.unit(20, "meters"),
  56125. default: true,
  56126. form: "taur"
  56127. },
  56128. ],
  56129. {
  56130. "anthro": {
  56131. name: "Anthro",
  56132. default: true
  56133. },
  56134. "taur": {
  56135. name: "Taur",
  56136. },
  56137. }
  56138. ))
  56139. characterMakers.push(() => makeCharacter(
  56140. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56141. {
  56142. front: {
  56143. height: math.unit(10 + 3/12, "feet"),
  56144. name: "Front",
  56145. image: {
  56146. source: "./media/characters/theo-monkey/front.svg",
  56147. extra: 1735/1658,
  56148. bottom: 73/1808
  56149. }
  56150. },
  56151. back: {
  56152. height: math.unit(10 + 3/12, "feet"),
  56153. name: "Back",
  56154. image: {
  56155. source: "./media/characters/theo-monkey/back.svg",
  56156. extra: 1742/1664,
  56157. bottom: 33/1775
  56158. }
  56159. },
  56160. head: {
  56161. height: math.unit(2.29, "feet"),
  56162. name: "Head",
  56163. image: {
  56164. source: "./media/characters/theo-monkey/head.svg"
  56165. }
  56166. },
  56167. handPalm: {
  56168. height: math.unit(1.73, "feet"),
  56169. name: "Hand (Palm)",
  56170. image: {
  56171. source: "./media/characters/theo-monkey/hand-palm.svg"
  56172. }
  56173. },
  56174. handBack: {
  56175. height: math.unit(1.63, "feet"),
  56176. name: "Hand (Back)",
  56177. image: {
  56178. source: "./media/characters/theo-monkey/hand-back.svg"
  56179. }
  56180. },
  56181. footSole: {
  56182. height: math.unit(2.15, "feet"),
  56183. name: "Foot (Sole)",
  56184. image: {
  56185. source: "./media/characters/theo-monkey/foot-sole.svg"
  56186. }
  56187. },
  56188. footSide: {
  56189. height: math.unit(1.6, "feet"),
  56190. name: "Foot (Side)",
  56191. image: {
  56192. source: "./media/characters/theo-monkey/foot-side.svg"
  56193. }
  56194. },
  56195. },
  56196. [
  56197. {
  56198. name: "Normal",
  56199. height: math.unit(10 + 3/12, "feet"),
  56200. default: true
  56201. },
  56202. ]
  56203. ))
  56204. characterMakers.push(() => makeCharacter(
  56205. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56206. {
  56207. front: {
  56208. height: math.unit(11, "feet"),
  56209. weight: math.unit(3000, "lb"),
  56210. preyCapacity: math.unit(10, "people"),
  56211. name: "Front",
  56212. image: {
  56213. source: "./media/characters/brook/front.svg",
  56214. extra: 909/835,
  56215. bottom: 108/1017
  56216. }
  56217. },
  56218. back: {
  56219. height: math.unit(11, "feet"),
  56220. weight: math.unit(3000, "lb"),
  56221. preyCapacity: math.unit(10, "people"),
  56222. name: "Back",
  56223. image: {
  56224. source: "./media/characters/brook/back.svg",
  56225. extra: 976/916,
  56226. bottom: 34/1010
  56227. }
  56228. },
  56229. backAlt: {
  56230. height: math.unit(11, "feet"),
  56231. weight: math.unit(3000, "lb"),
  56232. preyCapacity: math.unit(10, "people"),
  56233. name: "Back (Alt)",
  56234. image: {
  56235. source: "./media/characters/brook/back-alt.svg",
  56236. extra: 1283/1213,
  56237. bottom: 35/1318
  56238. }
  56239. },
  56240. bust: {
  56241. height: math.unit(9.0859030837, "feet"),
  56242. weight: math.unit(3000, "lb"),
  56243. preyCapacity: math.unit(10, "people"),
  56244. name: "Bust",
  56245. image: {
  56246. source: "./media/characters/brook/bust.svg",
  56247. extra: 2043/1923,
  56248. bottom: 0/2043
  56249. }
  56250. },
  56251. },
  56252. [
  56253. {
  56254. name: "Small",
  56255. height: math.unit(11, "feet"),
  56256. default: true
  56257. },
  56258. {
  56259. name: "Towering",
  56260. height: math.unit(5, "km")
  56261. },
  56262. {
  56263. name: "Enormous",
  56264. height: math.unit(25, "earths")
  56265. },
  56266. ]
  56267. ))
  56268. characterMakers.push(() => makeCharacter(
  56269. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56270. {
  56271. front: {
  56272. height: math.unit(4, "feet"),
  56273. weight: math.unit(150, "lb"),
  56274. name: "Front",
  56275. image: {
  56276. source: "./media/characters/squishi/front.svg",
  56277. extra: 1428/1271,
  56278. bottom: 30/1458
  56279. },
  56280. extraAttributes: {
  56281. "pawSize": {
  56282. name: "Paw Size",
  56283. power: 1,
  56284. type: "length",
  56285. base: math.unit(14, "ShoeSizeMensUS"),
  56286. defaultUnit: "ShoeSizeMensUS"
  56287. },
  56288. }
  56289. },
  56290. side: {
  56291. height: math.unit(4, "feet"),
  56292. weight: math.unit(150, "lb"),
  56293. name: "Side",
  56294. image: {
  56295. source: "./media/characters/squishi/side.svg",
  56296. extra: 1428/1271,
  56297. bottom: 30/1458
  56298. },
  56299. extraAttributes: {
  56300. "pawSize": {
  56301. name: "Paw Size",
  56302. power: 1,
  56303. type: "length",
  56304. base: math.unit(14, "ShoeSizeMensUS"),
  56305. defaultUnit: "ShoeSizeMensUS"
  56306. },
  56307. }
  56308. },
  56309. back: {
  56310. height: math.unit(4, "feet"),
  56311. weight: math.unit(150, "lb"),
  56312. name: "Back",
  56313. image: {
  56314. source: "./media/characters/squishi/back.svg",
  56315. extra: 1428/1271,
  56316. bottom: 30/1458
  56317. },
  56318. extraAttributes: {
  56319. "pawSize": {
  56320. name: "Paw Size",
  56321. power: 1,
  56322. type: "length",
  56323. base: math.unit(14, "ShoeSizeMensUS"),
  56324. defaultUnit: "ShoeSizeMensUS"
  56325. },
  56326. }
  56327. },
  56328. },
  56329. [
  56330. {
  56331. name: "Normal",
  56332. height: math.unit(4, "feet"),
  56333. default: true
  56334. },
  56335. ]
  56336. ))
  56337. characterMakers.push(() => makeCharacter(
  56338. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56339. {
  56340. front: {
  56341. height: math.unit(7 + 8/12, "feet"),
  56342. weight: math.unit(333, "lb"),
  56343. name: "Front",
  56344. image: {
  56345. source: "./media/characters/vincent-vasroc/front.svg",
  56346. extra: 1962/1860,
  56347. bottom: 41/2003
  56348. }
  56349. },
  56350. back: {
  56351. height: math.unit(7 + 8/12, "feet"),
  56352. weight: math.unit(333, "lb"),
  56353. name: "Back",
  56354. image: {
  56355. source: "./media/characters/vincent-vasroc/back.svg",
  56356. extra: 1952/1815,
  56357. bottom: 33/1985
  56358. }
  56359. },
  56360. paw: {
  56361. height: math.unit(1.24, "feet"),
  56362. name: "Paw",
  56363. image: {
  56364. source: "./media/characters/vincent-vasroc/paw.svg"
  56365. }
  56366. },
  56367. ear: {
  56368. height: math.unit(0.75, "feet"),
  56369. name: "Ear",
  56370. image: {
  56371. source: "./media/characters/vincent-vasroc/ear.svg"
  56372. }
  56373. },
  56374. },
  56375. [
  56376. {
  56377. name: "Nano",
  56378. height: math.unit(92, "micrometers")
  56379. },
  56380. {
  56381. name: "Normal",
  56382. height: math.unit(7 + 8/12, "feet"),
  56383. default: true
  56384. },
  56385. ]
  56386. ))
  56387. characterMakers.push(() => makeCharacter(
  56388. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56389. {
  56390. frontNsfw: {
  56391. height: math.unit(40, "feet"),
  56392. weight: math.unit(58, "tons"),
  56393. name: "Front (NSFW)",
  56394. image: {
  56395. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56396. extra: 1265/965,
  56397. bottom: 155/1420
  56398. }
  56399. },
  56400. frontSfw: {
  56401. height: math.unit(40, "feet"),
  56402. weight: math.unit(58, "tons"),
  56403. name: "Front (SFW)",
  56404. image: {
  56405. source: "./media/characters/ru-kahn/front-sfw.svg",
  56406. extra: 1265/965,
  56407. bottom: 80/1345
  56408. }
  56409. },
  56410. },
  56411. [
  56412. {
  56413. name: "Small",
  56414. height: math.unit(4, "feet")
  56415. },
  56416. {
  56417. name: "Normal",
  56418. height: math.unit(40, "feet"),
  56419. default: true
  56420. },
  56421. {
  56422. name: "Macro",
  56423. height: math.unit(400, "feet")
  56424. },
  56425. ]
  56426. ))
  56427. characterMakers.push(() => makeCharacter(
  56428. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56429. {
  56430. frontNude: {
  56431. height: math.unit(6 + 5/12, "feet"),
  56432. name: "Front (Nude)",
  56433. image: {
  56434. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56435. extra: 1369/1366,
  56436. bottom: 68/1437
  56437. }
  56438. },
  56439. frontDressed: {
  56440. height: math.unit(6 + 5/12, "feet"),
  56441. name: "Front (Dressed)",
  56442. image: {
  56443. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56444. extra: 1369/1366,
  56445. bottom: 68/1437
  56446. }
  56447. },
  56448. },
  56449. [
  56450. {
  56451. name: "Normal",
  56452. height: math.unit(6 + 5/12, "feet"),
  56453. default: true
  56454. },
  56455. {
  56456. name: "Maximum",
  56457. height: math.unit(1930, "feet")
  56458. },
  56459. ]
  56460. ))
  56461. characterMakers.push(() => makeCharacter(
  56462. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56463. {
  56464. front: {
  56465. height: math.unit(5 + 6/12, "feet"),
  56466. name: "Front",
  56467. image: {
  56468. source: "./media/characters/kaja/front.svg",
  56469. extra: 1874/1514,
  56470. bottom: 117/1991
  56471. }
  56472. },
  56473. },
  56474. [
  56475. {
  56476. name: "Normal",
  56477. height: math.unit(5 + 6/12, "feet"),
  56478. default: true
  56479. },
  56480. ]
  56481. ))
  56482. characterMakers.push(() => makeCharacter(
  56483. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56484. {
  56485. front: {
  56486. height: math.unit(5 + 9/12, "feet"),
  56487. weight: math.unit(200, "lb"),
  56488. name: "Front",
  56489. image: {
  56490. source: "./media/characters/mark-smith/front.svg",
  56491. extra: 1004/943,
  56492. bottom: 58/1062
  56493. }
  56494. },
  56495. back: {
  56496. height: math.unit(5 + 9/12, "feet"),
  56497. weight: math.unit(200, "lb"),
  56498. name: "Back",
  56499. image: {
  56500. source: "./media/characters/mark-smith/back.svg",
  56501. extra: 1023/953,
  56502. bottom: 24/1047
  56503. }
  56504. },
  56505. head: {
  56506. height: math.unit(1.82, "feet"),
  56507. name: "Head",
  56508. image: {
  56509. source: "./media/characters/mark-smith/head.svg"
  56510. }
  56511. },
  56512. hand: {
  56513. height: math.unit(1.4, "feet"),
  56514. name: "Hand",
  56515. image: {
  56516. source: "./media/characters/mark-smith/hand.svg"
  56517. }
  56518. },
  56519. paw: {
  56520. height: math.unit(1.69, "feet"),
  56521. name: "Paw",
  56522. image: {
  56523. source: "./media/characters/mark-smith/paw.svg"
  56524. }
  56525. },
  56526. },
  56527. [
  56528. {
  56529. name: "Micro",
  56530. height: math.unit(0.25, "inches")
  56531. },
  56532. {
  56533. name: "Normal",
  56534. height: math.unit(5 + 9/12, "feet"),
  56535. default: true
  56536. },
  56537. {
  56538. name: "Macro",
  56539. height: math.unit(500, "feet")
  56540. },
  56541. ]
  56542. ))
  56543. characterMakers.push(() => makeCharacter(
  56544. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56545. {
  56546. frontNude: {
  56547. height: math.unit(6, "feet"),
  56548. name: "Front (Nude)",
  56549. image: {
  56550. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56551. extra: 1384/1321,
  56552. bottom: 57/1441
  56553. }
  56554. },
  56555. frontDressed: {
  56556. height: math.unit(6, "feet"),
  56557. name: "Front (Dressed)",
  56558. image: {
  56559. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56560. extra: 1384/1321,
  56561. bottom: 57/1441
  56562. }
  56563. },
  56564. },
  56565. [
  56566. {
  56567. name: "Normal",
  56568. height: math.unit(6, "feet"),
  56569. default: true
  56570. },
  56571. {
  56572. name: "Maximum",
  56573. height: math.unit(1776, "feet")
  56574. },
  56575. ]
  56576. ))
  56577. characterMakers.push(() => makeCharacter(
  56578. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56579. {
  56580. front: {
  56581. height: math.unit(2 + 4/12, "feet"),
  56582. weight: math.unit(350, "lb"),
  56583. name: "Front",
  56584. image: {
  56585. source: "./media/characters/devos/front.svg",
  56586. extra: 958/852,
  56587. bottom: 143/1101
  56588. }
  56589. },
  56590. },
  56591. [
  56592. {
  56593. name: "Base",
  56594. height: math.unit(2 + 4/12, "feet"),
  56595. default: true
  56596. },
  56597. ]
  56598. ))
  56599. characterMakers.push(() => makeCharacter(
  56600. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56601. {
  56602. front: {
  56603. height: math.unit(9 + 2/12, "feet"),
  56604. name: "Front",
  56605. image: {
  56606. source: "./media/characters/hiveheart/front.svg",
  56607. extra: 394/364,
  56608. bottom: 65/459
  56609. }
  56610. },
  56611. back: {
  56612. height: math.unit(9 + 2/12, "feet"),
  56613. name: "Back",
  56614. image: {
  56615. source: "./media/characters/hiveheart/back.svg",
  56616. extra: 374/357,
  56617. bottom: 63/437
  56618. }
  56619. },
  56620. },
  56621. [
  56622. {
  56623. name: "Base",
  56624. height: math.unit(9 + 2/12, "feet"),
  56625. default: true
  56626. },
  56627. ]
  56628. ))
  56629. characterMakers.push(() => makeCharacter(
  56630. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56631. {
  56632. front: {
  56633. height: math.unit(2.5, "inches"),
  56634. weight: math.unit(0.6, "oz"),
  56635. name: "Front",
  56636. image: {
  56637. source: "./media/characters/bryn/front.svg",
  56638. extra: 1480/1205,
  56639. bottom: 27/1507
  56640. }
  56641. },
  56642. back: {
  56643. height: math.unit(2.5, "inches"),
  56644. weight: math.unit(0.6, "oz"),
  56645. name: "Back",
  56646. image: {
  56647. source: "./media/characters/bryn/back.svg",
  56648. extra: 1475/1201,
  56649. bottom: 39/1514
  56650. }
  56651. },
  56652. foot: {
  56653. height: math.unit(0.4, "inches"),
  56654. name: "Foot",
  56655. image: {
  56656. source: "./media/characters/bryn/foot.svg"
  56657. }
  56658. },
  56659. },
  56660. [
  56661. {
  56662. name: "Normal",
  56663. height: math.unit(2.5, "inches"),
  56664. default: true
  56665. },
  56666. ]
  56667. ))
  56668. characterMakers.push(() => makeCharacter(
  56669. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56670. {
  56671. side: {
  56672. height: math.unit(7, "feet"),
  56673. weight: math.unit(657, "kg"),
  56674. name: "Side",
  56675. image: {
  56676. source: "./media/characters/delta/side.svg",
  56677. extra: 781/212,
  56678. bottom: 7/788
  56679. },
  56680. extraAttributes: {
  56681. "wingspan": {
  56682. name: "Wingspan",
  56683. power: 1,
  56684. type: "length",
  56685. base: math.unit(48, "feet")
  56686. },
  56687. "length": {
  56688. name: "Length",
  56689. power: 1,
  56690. type: "length",
  56691. base: math.unit(21, "feet")
  56692. },
  56693. "pawSize": {
  56694. name: "Paw Size",
  56695. power: 2,
  56696. type: "area",
  56697. base: math.unit(1.5*1.4, "feet^2")
  56698. },
  56699. }
  56700. },
  56701. },
  56702. [
  56703. {
  56704. name: "Normal",
  56705. height: math.unit(6, "feet"),
  56706. default: true
  56707. },
  56708. ]
  56709. ))
  56710. characterMakers.push(() => makeCharacter(
  56711. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56712. {
  56713. front: {
  56714. height: math.unit(6, "feet"),
  56715. name: "Front",
  56716. image: {
  56717. source: "./media/characters/pyrow/front.svg",
  56718. extra: 513/486,
  56719. bottom: 14/527
  56720. }
  56721. },
  56722. frontWing: {
  56723. height: math.unit(6, "feet"),
  56724. name: "Front (Wing)",
  56725. image: {
  56726. source: "./media/characters/pyrow/front-wing.svg",
  56727. extra: 539/383,
  56728. bottom: 20/559
  56729. }
  56730. },
  56731. back: {
  56732. height: math.unit(6, "feet"),
  56733. name: "Back",
  56734. image: {
  56735. source: "./media/characters/pyrow/back.svg",
  56736. extra: 500/473,
  56737. bottom: 9/509
  56738. }
  56739. },
  56740. },
  56741. [
  56742. {
  56743. name: "Normal",
  56744. height: math.unit(6, "feet"),
  56745. default: true
  56746. },
  56747. ]
  56748. ))
  56749. characterMakers.push(() => makeCharacter(
  56750. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56751. {
  56752. front: {
  56753. height: math.unit(5, "meters"),
  56754. weight: math.unit(3, "tonnes"),
  56755. name: "Front",
  56756. image: {
  56757. source: "./media/characters/velikan/front.svg",
  56758. extra: 867/744,
  56759. bottom: 71/938
  56760. },
  56761. extraAttributes: {
  56762. "shoeSize": {
  56763. name: "Shoe Size",
  56764. power: 1,
  56765. type: "length",
  56766. base: math.unit(135, "ShoeSizeUK"),
  56767. defaultUnit: "ShoeSizeUK"
  56768. },
  56769. }
  56770. },
  56771. },
  56772. [
  56773. {
  56774. name: "Normal",
  56775. height: math.unit(5, "meters"),
  56776. default: true
  56777. },
  56778. {
  56779. name: "Macro",
  56780. height: math.unit(1, "km")
  56781. },
  56782. {
  56783. name: "Mega Macro",
  56784. height: math.unit(100, "km")
  56785. },
  56786. {
  56787. name: "Giga Macro",
  56788. height: math.unit(2, "megameters")
  56789. },
  56790. {
  56791. name: "Planetary",
  56792. height: math.unit(22, "megameters")
  56793. },
  56794. {
  56795. name: "Solar",
  56796. height: math.unit(8, "gigameters")
  56797. },
  56798. {
  56799. name: "Cosmic",
  56800. height: math.unit(10, "zettameters")
  56801. },
  56802. {
  56803. name: "Omni",
  56804. height: math.unit(9e260, "multiverses")
  56805. },
  56806. ]
  56807. ))
  56808. characterMakers.push(() => makeCharacter(
  56809. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56810. {
  56811. front: {
  56812. height: math.unit(4 + 3/12, "feet"),
  56813. weight: math.unit(90, "lb"),
  56814. name: "Front",
  56815. image: {
  56816. source: "./media/characters/sabiki/front.svg",
  56817. extra: 1662/1423,
  56818. bottom: 65/1727
  56819. }
  56820. },
  56821. },
  56822. [
  56823. {
  56824. name: "Normal",
  56825. height: math.unit(4 + 3/12, "feet"),
  56826. default: true
  56827. },
  56828. ]
  56829. ))
  56830. characterMakers.push(() => makeCharacter(
  56831. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56832. {
  56833. frontSfw: {
  56834. height: math.unit(2, "mm"),
  56835. name: "Front (SFW)",
  56836. image: {
  56837. source: "./media/characters/carmel/front-sfw.svg",
  56838. extra: 1131/1006,
  56839. bottom: 66/1197
  56840. }
  56841. },
  56842. frontNsfw: {
  56843. height: math.unit(2, "mm"),
  56844. name: "Front (NSFW)",
  56845. image: {
  56846. source: "./media/characters/carmel/front-nsfw.svg",
  56847. extra: 1131/1006,
  56848. bottom: 66/1197
  56849. }
  56850. },
  56851. foot: {
  56852. height: math.unit(0.3, "mm"),
  56853. name: "Foot",
  56854. image: {
  56855. source: "./media/characters/carmel/foot.svg"
  56856. }
  56857. },
  56858. tongue: {
  56859. height: math.unit(0.71, "mm"),
  56860. name: "Tongue",
  56861. image: {
  56862. source: "./media/characters/carmel/tongue.svg"
  56863. }
  56864. },
  56865. dick: {
  56866. height: math.unit(0.085, "mm"),
  56867. name: "Dick",
  56868. image: {
  56869. source: "./media/characters/carmel/dick.svg"
  56870. }
  56871. },
  56872. },
  56873. [
  56874. {
  56875. name: "Micro",
  56876. height: math.unit(2, "mm"),
  56877. default: true
  56878. },
  56879. {
  56880. name: "Normal",
  56881. height: math.unit(4 + 8/12, "feet")
  56882. },
  56883. {
  56884. name: "Mega Macro",
  56885. height: math.unit(250, "feet")
  56886. },
  56887. {
  56888. name: "BIGGER",
  56889. height: math.unit(1000, "feet")
  56890. },
  56891. {
  56892. name: "BIGGEST",
  56893. height: math.unit(2, "miles")
  56894. },
  56895. ]
  56896. ))
  56897. characterMakers.push(() => makeCharacter(
  56898. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56899. {
  56900. front: {
  56901. height: math.unit(6.5, "feet"),
  56902. weight: math.unit(198, "lb"),
  56903. name: "Front",
  56904. image: {
  56905. source: "./media/characters/tamani/anthro.svg",
  56906. extra: 930/890,
  56907. bottom: 34/964
  56908. },
  56909. form: "anthro",
  56910. default: true
  56911. },
  56912. side: {
  56913. height: math.unit(6, "feet"),
  56914. weight: math.unit(198*2, "lb"),
  56915. name: "Side",
  56916. image: {
  56917. source: "./media/characters/tamani/feral.svg",
  56918. extra: 559/519,
  56919. bottom: 43/602
  56920. },
  56921. form: "feral"
  56922. },
  56923. },
  56924. [
  56925. {
  56926. name: "Normal",
  56927. height: math.unit(6.5, "feet"),
  56928. default: true,
  56929. form: "anthro"
  56930. },
  56931. {
  56932. name: "Normal",
  56933. height: math.unit(6, "feet"),
  56934. default: true,
  56935. form: "feral"
  56936. },
  56937. ],
  56938. {
  56939. "anthro": {
  56940. name: "Anthro",
  56941. default: true
  56942. },
  56943. "feral": {
  56944. name: "Feral",
  56945. },
  56946. }
  56947. ))
  56948. characterMakers.push(() => makeCharacter(
  56949. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56950. {
  56951. front: {
  56952. height: math.unit(4 + 1/12, "feet"),
  56953. weight: math.unit(114, "lb"),
  56954. name: "Front",
  56955. image: {
  56956. source: "./media/characters/dex/front.svg",
  56957. extra: 787/680,
  56958. bottom: 18/805
  56959. }
  56960. },
  56961. side: {
  56962. height: math.unit(4 + 1/12, "feet"),
  56963. weight: math.unit(114, "lb"),
  56964. name: "Side",
  56965. image: {
  56966. source: "./media/characters/dex/side.svg",
  56967. extra: 785/680,
  56968. bottom: 12/797
  56969. }
  56970. },
  56971. back: {
  56972. height: math.unit(4 + 1/12, "feet"),
  56973. weight: math.unit(114, "lb"),
  56974. name: "Back",
  56975. image: {
  56976. source: "./media/characters/dex/back.svg",
  56977. extra: 785/681,
  56978. bottom: 17/802
  56979. }
  56980. },
  56981. loungewear: {
  56982. height: math.unit(4 + 1/12, "feet"),
  56983. weight: math.unit(114, "lb"),
  56984. name: "Loungewear",
  56985. image: {
  56986. source: "./media/characters/dex/loungewear.svg",
  56987. extra: 787/680,
  56988. bottom: 18/805
  56989. }
  56990. },
  56991. workout: {
  56992. height: math.unit(4 + 1/12, "feet"),
  56993. weight: math.unit(114, "lb"),
  56994. name: "Workout",
  56995. image: {
  56996. source: "./media/characters/dex/workout.svg",
  56997. extra: 787/680,
  56998. bottom: 18/805
  56999. }
  57000. },
  57001. schoolUniform: {
  57002. height: math.unit(4 + 1/12, "feet"),
  57003. weight: math.unit(114, "lb"),
  57004. name: "School-uniform",
  57005. image: {
  57006. source: "./media/characters/dex/school-uniform.svg",
  57007. extra: 787/680,
  57008. bottom: 18/805
  57009. }
  57010. },
  57011. maw: {
  57012. height: math.unit(0.55, "feet"),
  57013. name: "Maw",
  57014. image: {
  57015. source: "./media/characters/dex/maw.svg"
  57016. }
  57017. },
  57018. paw: {
  57019. height: math.unit(0.87, "feet"),
  57020. name: "Paw",
  57021. image: {
  57022. source: "./media/characters/dex/paw.svg"
  57023. }
  57024. },
  57025. bust: {
  57026. height: math.unit(1.67, "feet"),
  57027. name: "Bust",
  57028. image: {
  57029. source: "./media/characters/dex/bust.svg"
  57030. }
  57031. },
  57032. },
  57033. [
  57034. {
  57035. name: "Normal",
  57036. height: math.unit(4 + 1/12, "feet"),
  57037. default: true
  57038. },
  57039. ]
  57040. ))
  57041. characterMakers.push(() => makeCharacter(
  57042. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57043. {
  57044. front: {
  57045. height: math.unit(4 + 3/12, "feet"),
  57046. weight: math.unit(60, "lb"),
  57047. name: "Front",
  57048. image: {
  57049. source: "./media/characters/silke/front.svg",
  57050. extra: 1334/1122,
  57051. bottom: 21/1355
  57052. }
  57053. },
  57054. back: {
  57055. height: math.unit(4 + 3/12, "feet"),
  57056. weight: math.unit(60, "lb"),
  57057. name: "Back",
  57058. image: {
  57059. source: "./media/characters/silke/back.svg",
  57060. extra: 1328/1092,
  57061. bottom: 16/1344
  57062. }
  57063. },
  57064. dressed: {
  57065. height: math.unit(4 + 3/12, "feet"),
  57066. weight: math.unit(60, "lb"),
  57067. name: "Dressed",
  57068. image: {
  57069. source: "./media/characters/silke/dressed.svg",
  57070. extra: 1334/1122,
  57071. bottom: 43/1377
  57072. }
  57073. },
  57074. },
  57075. [
  57076. {
  57077. name: "Normal",
  57078. height: math.unit(4 + 3/12, "feet"),
  57079. default: true
  57080. },
  57081. ]
  57082. ))
  57083. characterMakers.push(() => makeCharacter(
  57084. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57085. {
  57086. front: {
  57087. height: math.unit(1.58, "meters"),
  57088. weight: math.unit(47, "kg"),
  57089. name: "Front",
  57090. image: {
  57091. source: "./media/characters/wireshark/front.svg",
  57092. extra: 883/838,
  57093. bottom: 66/949
  57094. }
  57095. },
  57096. },
  57097. [
  57098. {
  57099. name: "Normal",
  57100. height: math.unit(1.58, "meters"),
  57101. default: true
  57102. },
  57103. ]
  57104. ))
  57105. characterMakers.push(() => makeCharacter(
  57106. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57107. {
  57108. front: {
  57109. height: math.unit(6, "meters"),
  57110. weight: math.unit(15000, "kg"),
  57111. name: "Front",
  57112. image: {
  57113. source: "./media/characters/gallagher/front.svg",
  57114. extra: 532/493,
  57115. bottom: 0/532
  57116. }
  57117. },
  57118. },
  57119. [
  57120. {
  57121. name: "Normal",
  57122. height: math.unit(6, "meters"),
  57123. default: true
  57124. },
  57125. ]
  57126. ))
  57127. characterMakers.push(() => makeCharacter(
  57128. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57129. {
  57130. front: {
  57131. height: math.unit(2.4, "meters"),
  57132. weight: math.unit(270, "kg"),
  57133. name: "Front",
  57134. image: {
  57135. source: "./media/characters/alice/front.svg",
  57136. extra: 950/900,
  57137. bottom: 36/986
  57138. }
  57139. },
  57140. side: {
  57141. height: math.unit(2.4, "meters"),
  57142. weight: math.unit(270, "kg"),
  57143. name: "Side",
  57144. image: {
  57145. source: "./media/characters/alice/side.svg",
  57146. extra: 921/876,
  57147. bottom: 19/940
  57148. }
  57149. },
  57150. dressed: {
  57151. height: math.unit(2.4, "meters"),
  57152. weight: math.unit(270, "kg"),
  57153. name: "Dressed",
  57154. image: {
  57155. source: "./media/characters/alice/dressed.svg",
  57156. extra: 905/850,
  57157. bottom: 81/986
  57158. }
  57159. },
  57160. fishnet: {
  57161. height: math.unit(2.4, "meters"),
  57162. weight: math.unit(270, "kg"),
  57163. name: "Fishnet",
  57164. image: {
  57165. source: "./media/characters/alice/fishnet.svg",
  57166. extra: 905/850,
  57167. bottom: 81/986
  57168. }
  57169. },
  57170. },
  57171. [
  57172. {
  57173. name: "Normal",
  57174. height: math.unit(2.4, "meters"),
  57175. default: true
  57176. },
  57177. ]
  57178. ))
  57179. characterMakers.push(() => makeCharacter(
  57180. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57181. {
  57182. front: {
  57183. height: math.unit(175.25, "feet"),
  57184. name: "Front",
  57185. image: {
  57186. source: "./media/characters/fio/front.svg",
  57187. extra: 1883/1591,
  57188. bottom: 34/1917
  57189. }
  57190. },
  57191. },
  57192. [
  57193. {
  57194. name: "Normal",
  57195. height: math.unit(175.25, "cm"),
  57196. default: true
  57197. },
  57198. ]
  57199. ))
  57200. characterMakers.push(() => makeCharacter(
  57201. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57202. {
  57203. side: {
  57204. height: math.unit(6, "meters"),
  57205. weight: math.unit(3400, "kg"),
  57206. preyCapacity: math.unit(1700, "liters"),
  57207. name: "Side",
  57208. image: {
  57209. source: "./media/characters/hass/side.svg",
  57210. extra: 1058/997,
  57211. bottom: 177/1235
  57212. }
  57213. },
  57214. feeding: {
  57215. height: math.unit(6*0.63, "meters"),
  57216. weight: math.unit(3400, "kg"),
  57217. preyCapacity: math.unit(1700, "liters"),
  57218. name: "Feeding",
  57219. image: {
  57220. source: "./media/characters/hass/feeding.svg",
  57221. extra: 689/579,
  57222. bottom: 146/835
  57223. }
  57224. },
  57225. guts: {
  57226. height: math.unit(6, "meters"),
  57227. weight: math.unit(3400, "kg"),
  57228. name: "Guts",
  57229. image: {
  57230. source: "./media/characters/hass/guts.svg",
  57231. extra: 1223/1198,
  57232. bottom: 182/1405
  57233. }
  57234. },
  57235. dickFront: {
  57236. height: math.unit(1.4, "meters"),
  57237. name: "Dick (Front)",
  57238. image: {
  57239. source: "./media/characters/hass/dick-front.svg"
  57240. }
  57241. },
  57242. dickSide: {
  57243. height: math.unit(1.3, "meters"),
  57244. name: "Dick (Side)",
  57245. image: {
  57246. source: "./media/characters/hass/dick-side.svg"
  57247. }
  57248. },
  57249. dickBack: {
  57250. height: math.unit(1.4, "meters"),
  57251. name: "Dick (Back)",
  57252. image: {
  57253. source: "./media/characters/hass/dick-back.svg"
  57254. }
  57255. },
  57256. },
  57257. [
  57258. {
  57259. name: "Normal",
  57260. height: math.unit(6, "meters"),
  57261. default: true
  57262. },
  57263. ]
  57264. ))
  57265. characterMakers.push(() => makeCharacter(
  57266. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57267. {
  57268. front: {
  57269. height: math.unit(4, "feet"),
  57270. weight: math.unit(60, "lb"),
  57271. name: "Front",
  57272. image: {
  57273. source: "./media/characters/hickory-finnegan/front.svg",
  57274. extra: 444/411,
  57275. bottom: 10/454
  57276. }
  57277. },
  57278. side: {
  57279. height: math.unit(4, "feet"),
  57280. weight: math.unit(60, "lb"),
  57281. name: "Side",
  57282. image: {
  57283. source: "./media/characters/hickory-finnegan/side.svg",
  57284. extra: 444/411,
  57285. bottom: 10/454
  57286. }
  57287. },
  57288. back: {
  57289. height: math.unit(4, "feet"),
  57290. weight: math.unit(60, "lb"),
  57291. name: "Back",
  57292. image: {
  57293. source: "./media/characters/hickory-finnegan/back.svg",
  57294. extra: 444/411,
  57295. bottom: 10/454
  57296. }
  57297. },
  57298. },
  57299. [
  57300. {
  57301. name: "Normal",
  57302. height: math.unit(4, "feet"),
  57303. default: true
  57304. },
  57305. ]
  57306. ))
  57307. characterMakers.push(() => makeCharacter(
  57308. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57309. {
  57310. snivy_front: {
  57311. height: math.unit(2, "feet"),
  57312. weight: math.unit(17.9, "lb"),
  57313. name: "Front",
  57314. image: {
  57315. source: "./media/characters/robin-phox/snivy-front.svg",
  57316. extra: 569/504,
  57317. bottom: 33/602
  57318. },
  57319. form: "snivy",
  57320. default: true
  57321. },
  57322. snivy_frontNsfw: {
  57323. height: math.unit(2, "feet"),
  57324. weight: math.unit(17.9, "lb"),
  57325. name: "Front (NSFW)",
  57326. image: {
  57327. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57328. extra: 569/504,
  57329. bottom: 33/602
  57330. },
  57331. form: "snivy",
  57332. },
  57333. snivy_back: {
  57334. height: math.unit(2, "feet"),
  57335. weight: math.unit(17.9, "lb"),
  57336. name: "Back",
  57337. image: {
  57338. source: "./media/characters/robin-phox/snivy-back.svg",
  57339. extra: 577/508,
  57340. bottom: 21/598
  57341. },
  57342. form: "snivy",
  57343. },
  57344. snivy_foot: {
  57345. height: math.unit(0.68, "feet"),
  57346. name: "Foot",
  57347. image: {
  57348. source: "./media/characters/robin-phox/snivy-foot.svg"
  57349. },
  57350. form: "snivy",
  57351. },
  57352. snivy_sole: {
  57353. height: math.unit(0.68, "feet"),
  57354. name: "Sole",
  57355. image: {
  57356. source: "./media/characters/robin-phox/snivy-sole.svg"
  57357. },
  57358. form: "snivy",
  57359. },
  57360. yoshi_front: {
  57361. height: math.unit(6, "feet"),
  57362. weight: math.unit(150, "lb"),
  57363. name: "Front",
  57364. image: {
  57365. source: "./media/characters/robin-phox/yoshi-front.svg",
  57366. extra: 890/792,
  57367. bottom: 29/919
  57368. },
  57369. form: "yoshi",
  57370. default: true
  57371. },
  57372. yoshi_frontNsfw: {
  57373. height: math.unit(6, "feet"),
  57374. weight: math.unit(150, "lb"),
  57375. name: "Front (NSFW)",
  57376. image: {
  57377. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57378. extra: 890/792,
  57379. bottom: 29/919
  57380. },
  57381. form: "yoshi",
  57382. },
  57383. yoshi_back: {
  57384. height: math.unit(6, "feet"),
  57385. weight: math.unit(150, "lb"),
  57386. name: "Back",
  57387. image: {
  57388. source: "./media/characters/robin-phox/yoshi-back.svg",
  57389. extra: 890/792,
  57390. bottom: 29/919
  57391. },
  57392. form: "yoshi",
  57393. },
  57394. yoshi_foot: {
  57395. height: math.unit(1.5, "feet"),
  57396. name: "Foot",
  57397. image: {
  57398. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57399. },
  57400. form: "yoshi",
  57401. },
  57402. delphox_front: {
  57403. height: math.unit(4 + 11/12, "feet"),
  57404. weight: math.unit(86, "lb"),
  57405. name: "Front",
  57406. image: {
  57407. source: "./media/characters/robin-phox/delphox-front.svg",
  57408. extra: 1266/1069,
  57409. bottom: 32/1298
  57410. },
  57411. form: "delphox",
  57412. default: true
  57413. },
  57414. delphox_frontNsfw: {
  57415. height: math.unit(4 + 11/12, "feet"),
  57416. weight: math.unit(86, "lb"),
  57417. name: "Front (NSFW)",
  57418. image: {
  57419. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57420. extra: 1266/1069,
  57421. bottom: 32/1298
  57422. },
  57423. form: "delphox",
  57424. },
  57425. delphox_back: {
  57426. height: math.unit(4 + 11/12, "feet"),
  57427. weight: math.unit(86, "lb"),
  57428. name: "Back",
  57429. image: {
  57430. source: "./media/characters/robin-phox/delphox-back.svg",
  57431. extra: 1269/1083,
  57432. bottom: 15/1284
  57433. },
  57434. form: "delphox",
  57435. },
  57436. mienshao_front: {
  57437. height: math.unit(4 + 7/12, "feet"),
  57438. weight: math.unit(78.3, "lb"),
  57439. name: "Front",
  57440. image: {
  57441. source: "./media/characters/robin-phox/mienshao-front.svg",
  57442. extra: 1052/970,
  57443. bottom: 108/1160
  57444. },
  57445. form: "mienshao",
  57446. default: true
  57447. },
  57448. mienshao_frontNsfw: {
  57449. height: math.unit(4 + 7/12, "feet"),
  57450. weight: math.unit(78.3, "lb"),
  57451. name: "Front (NSFW)",
  57452. image: {
  57453. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57454. extra: 1052/970,
  57455. bottom: 108/1160
  57456. },
  57457. form: "mienshao",
  57458. },
  57459. mienshao_back: {
  57460. height: math.unit(4 + 7/12, "feet"),
  57461. weight: math.unit(78.3, "lb"),
  57462. name: "Back",
  57463. image: {
  57464. source: "./media/characters/robin-phox/mienshao-back.svg",
  57465. extra: 1102/982,
  57466. bottom: 32/1134
  57467. },
  57468. form: "mienshao",
  57469. },
  57470. inteleon_front: {
  57471. height: math.unit(6 + 3/12, "feet"),
  57472. weight: math.unit(99.6, "lb"),
  57473. name: "Front",
  57474. image: {
  57475. source: "./media/characters/robin-phox/inteleon-front.svg",
  57476. extra: 910/799,
  57477. bottom: 76/986
  57478. },
  57479. form: "inteleon",
  57480. default: true
  57481. },
  57482. inteleon_frontNsfw: {
  57483. height: math.unit(6 + 3/12, "feet"),
  57484. weight: math.unit(99.6, "lb"),
  57485. name: "Front (NSFW)",
  57486. image: {
  57487. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57488. extra: 910/799,
  57489. bottom: 76/986
  57490. },
  57491. form: "inteleon",
  57492. },
  57493. inteleon_back: {
  57494. height: math.unit(6 + 3/12, "feet"),
  57495. weight: math.unit(99.6, "lb"),
  57496. name: "Back",
  57497. image: {
  57498. source: "./media/characters/robin-phox/inteleon-back.svg",
  57499. extra: 907/796,
  57500. bottom: 25/932
  57501. },
  57502. form: "inteleon",
  57503. },
  57504. reshiram_front: {
  57505. height: math.unit(10 + 6/12, "feet"),
  57506. weight: math.unit(727.5, "lb"),
  57507. name: "Front",
  57508. image: {
  57509. source: "./media/characters/robin-phox/reshiram-front.svg",
  57510. extra: 1198/940,
  57511. bottom: 123/1321
  57512. },
  57513. form: "reshiram",
  57514. },
  57515. reshiram_frontNsfw: {
  57516. height: math.unit(10 + 6/12, "feet"),
  57517. weight: math.unit(727.5, "lb"),
  57518. name: "Front-nsfw",
  57519. image: {
  57520. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57521. extra: 1198/940,
  57522. bottom: 123/1321
  57523. },
  57524. form: "reshiram",
  57525. },
  57526. reshiram_back: {
  57527. height: math.unit(10 + 6/12, "feet"),
  57528. weight: math.unit(727.5, "lb"),
  57529. name: "Back",
  57530. image: {
  57531. source: "./media/characters/robin-phox/reshiram-back.svg",
  57532. extra: 1024/904,
  57533. bottom: 85/1109
  57534. },
  57535. form: "reshiram",
  57536. },
  57537. samurott_front: {
  57538. height: math.unit(8, "feet"),
  57539. weight: math.unit(208.6, "lb"),
  57540. name: "Front",
  57541. image: {
  57542. source: "./media/characters/robin-phox/samurott-front.svg",
  57543. extra: 1048/984,
  57544. bottom: 100/1148
  57545. },
  57546. form: "samurott",
  57547. },
  57548. samurott_frontNsfw: {
  57549. height: math.unit(8, "feet"),
  57550. weight: math.unit(208.6, "lb"),
  57551. name: "Front-nsfw",
  57552. image: {
  57553. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57554. extra: 1048/984,
  57555. bottom: 100/1148
  57556. },
  57557. form: "samurott",
  57558. },
  57559. samurott_back: {
  57560. height: math.unit(8, "feet"),
  57561. weight: math.unit(208.6, "lb"),
  57562. name: "Back",
  57563. image: {
  57564. source: "./media/characters/robin-phox/samurott-back.svg",
  57565. extra: 1110/1042,
  57566. bottom: 12/1122
  57567. },
  57568. form: "samurott",
  57569. },
  57570. samurott_feral: {
  57571. height: math.unit(4 + 11/12, "feet"),
  57572. weight: math.unit(208.6, "lb"),
  57573. name: "Feral",
  57574. image: {
  57575. source: "./media/characters/robin-phox/samurott-feral.svg",
  57576. extra: 766/681,
  57577. bottom: 108/874
  57578. },
  57579. form: "samurott",
  57580. },
  57581. },
  57582. [
  57583. {
  57584. name: "Normal",
  57585. height: math.unit(2, "feet"),
  57586. default: true,
  57587. form: "snivy"
  57588. },
  57589. {
  57590. name: "Normal",
  57591. height: math.unit(6, "feet"),
  57592. default: true,
  57593. form: "yoshi"
  57594. },
  57595. {
  57596. name: "Normal",
  57597. height: math.unit(4 + 11/12, "feet"),
  57598. default: true,
  57599. form: "delphox"
  57600. },
  57601. {
  57602. name: "Normal",
  57603. height: math.unit(4 + 7/12, "feet"),
  57604. default: true,
  57605. form: "mienshao"
  57606. },
  57607. {
  57608. name: "Normal",
  57609. height: math.unit(6 + 3/12, "feet"),
  57610. default: true,
  57611. form: "inteleon"
  57612. },
  57613. {
  57614. name: "Normal",
  57615. height: math.unit(10 + 6/12, "feet"),
  57616. default: true,
  57617. form: "reshiram"
  57618. },
  57619. {
  57620. name: "Normal",
  57621. height: math.unit(8, "feet"),
  57622. default: true,
  57623. form: "samurott"
  57624. },
  57625. {
  57626. name: "Macro",
  57627. height: math.unit(500, "feet"),
  57628. allForms: true
  57629. },
  57630. {
  57631. name: "Mega Macro",
  57632. height: math.unit(10, "earths"),
  57633. allForms: true
  57634. },
  57635. {
  57636. name: "Giga Macro",
  57637. height: math.unit(1, "galaxy"),
  57638. allForms: true
  57639. },
  57640. {
  57641. name: "Godly Macro",
  57642. height: math.unit(1e10, "multiverses"),
  57643. allForms: true
  57644. },
  57645. ],
  57646. {
  57647. "snivy": {
  57648. name: "Snivy",
  57649. default: true
  57650. },
  57651. "yoshi": {
  57652. name: "Yoshi",
  57653. },
  57654. "delphox": {
  57655. name: "Delphox",
  57656. },
  57657. "mienshao": {
  57658. name: "Mienshao",
  57659. },
  57660. "inteleon": {
  57661. name: "Inteleon",
  57662. },
  57663. "reshiram": {
  57664. name: "Reshiram",
  57665. },
  57666. "samurott": {
  57667. name: "Samurott",
  57668. },
  57669. }
  57670. ))
  57671. characterMakers.push(() => makeCharacter(
  57672. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57673. {
  57674. front: {
  57675. height: math.unit(4, "feet"),
  57676. name: "Front",
  57677. image: {
  57678. source: "./media/characters/ash-leung/front.svg",
  57679. extra: 1916/1792,
  57680. bottom: 50/1966
  57681. }
  57682. },
  57683. },
  57684. [
  57685. {
  57686. name: "Atomic",
  57687. height: math.unit(1, "angstrom")
  57688. },
  57689. {
  57690. name: "Microscopic",
  57691. height: math.unit(4000, "angstroms")
  57692. },
  57693. {
  57694. name: "Speck",
  57695. height: math.unit(1, "mm")
  57696. },
  57697. {
  57698. name: "Small",
  57699. height: math.unit(1, "inch")
  57700. },
  57701. {
  57702. name: "Normal",
  57703. height: math.unit(4, "feet"),
  57704. default: true
  57705. },
  57706. ]
  57707. ))
  57708. characterMakers.push(() => makeCharacter(
  57709. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57710. {
  57711. frontDressed: {
  57712. height: math.unit(2.08, "meters"),
  57713. weight: math.unit(175, "lb"),
  57714. name: "Front (Dressed)",
  57715. image: {
  57716. source: "./media/characters/carie/front-dressed.svg",
  57717. extra: 456/417,
  57718. bottom: 7/463
  57719. }
  57720. },
  57721. backDressed: {
  57722. height: math.unit(2.08, "meters"),
  57723. weight: math.unit(175, "lb"),
  57724. name: "Back (Dressed)",
  57725. image: {
  57726. source: "./media/characters/carie/back-dressed.svg",
  57727. extra: 455/414,
  57728. bottom: 11/466
  57729. }
  57730. },
  57731. front: {
  57732. height: math.unit(2, "meters"),
  57733. weight: math.unit(175, "lb"),
  57734. name: "Front",
  57735. image: {
  57736. source: "./media/characters/carie/front.svg",
  57737. extra: 438/399,
  57738. bottom: 12/450
  57739. }
  57740. },
  57741. back: {
  57742. height: math.unit(2, "meters"),
  57743. weight: math.unit(175, "lb"),
  57744. name: "Back",
  57745. image: {
  57746. source: "./media/characters/carie/back.svg",
  57747. extra: 438/397,
  57748. bottom: 7/445
  57749. }
  57750. },
  57751. },
  57752. [
  57753. {
  57754. name: "Normal",
  57755. height: math.unit(2.08, "meters"),
  57756. default: true
  57757. },
  57758. {
  57759. name: "Macro",
  57760. height: math.unit(2.08e3, "meters")
  57761. },
  57762. {
  57763. name: "Mega Macro",
  57764. height: math.unit(2.08e6, "meters")
  57765. },
  57766. {
  57767. name: "Giga Macro",
  57768. height: math.unit(2.08e9, "meters")
  57769. },
  57770. {
  57771. name: "Tera Macro",
  57772. height: math.unit(2.08e12, "meters")
  57773. },
  57774. {
  57775. name: "Peta Macro",
  57776. height: math.unit(2.08e15, "meters")
  57777. },
  57778. {
  57779. name: "Exa Macro",
  57780. height: math.unit(2.08e18, "meters")
  57781. },
  57782. {
  57783. name: "Zetta Macro",
  57784. height: math.unit(2.08e21, "meters")
  57785. },
  57786. {
  57787. name: "Yotta Macro",
  57788. height: math.unit(2.08e24, "meters")
  57789. },
  57790. ]
  57791. ))
  57792. characterMakers.push(() => makeCharacter(
  57793. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57794. {
  57795. front: {
  57796. height: math.unit(5 + 2/12, "feet"),
  57797. weight: math.unit(120, "lb"),
  57798. name: "Front",
  57799. image: {
  57800. source: "./media/characters/sai-bree/front.svg",
  57801. extra: 1843/1702,
  57802. bottom: 91/1934
  57803. }
  57804. },
  57805. back: {
  57806. height: math.unit(5 + 2/12, "feet"),
  57807. weight: math.unit(120, "lb"),
  57808. name: "Back",
  57809. image: {
  57810. source: "./media/characters/sai-bree/back.svg",
  57811. extra: 1809/1637,
  57812. bottom: 56/1865
  57813. }
  57814. },
  57815. },
  57816. [
  57817. {
  57818. name: "Normal",
  57819. height: math.unit(5 + 2/12, "feet"),
  57820. default: true
  57821. },
  57822. {
  57823. name: "Macro",
  57824. height: math.unit(500, "feet")
  57825. },
  57826. ]
  57827. ))
  57828. characterMakers.push(() => makeCharacter(
  57829. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57830. {
  57831. side: {
  57832. height: math.unit(0.77, "meters"),
  57833. weight: math.unit(120, "lb"),
  57834. name: "Side",
  57835. image: {
  57836. source: "./media/characters/davwyn/side.svg",
  57837. extra: 1557/1225,
  57838. bottom: 131/1688
  57839. }
  57840. },
  57841. front: {
  57842. height: math.unit(0.835410, "meters"),
  57843. weight: math.unit(120, "lb"),
  57844. name: "Front",
  57845. image: {
  57846. source: "./media/characters/davwyn/front.svg",
  57847. extra: 870/843,
  57848. bottom: 175/1045
  57849. }
  57850. },
  57851. },
  57852. [
  57853. {
  57854. name: "Minidrake",
  57855. height: math.unit(0.77/4, "meters")
  57856. },
  57857. {
  57858. name: "Normal",
  57859. height: math.unit(0.77, "meters"),
  57860. default: true
  57861. },
  57862. ]
  57863. ))
  57864. characterMakers.push(() => makeCharacter(
  57865. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57866. {
  57867. front: {
  57868. height: math.unit(10 + 3/12, "feet"),
  57869. weight: math.unit(2857, "lb"),
  57870. name: "Front",
  57871. image: {
  57872. source: "./media/characters/balans/front.svg",
  57873. extra: 427/402,
  57874. bottom: 26/453
  57875. }
  57876. },
  57877. side: {
  57878. height: math.unit(10 + 3/12, "feet"),
  57879. weight: math.unit(2857, "lb"),
  57880. name: "Side",
  57881. image: {
  57882. source: "./media/characters/balans/side.svg",
  57883. extra: 397/371,
  57884. bottom: 17/414
  57885. }
  57886. },
  57887. back: {
  57888. height: math.unit(10 + 3/12, "feet"),
  57889. weight: math.unit(2857, "lb"),
  57890. name: "Back",
  57891. image: {
  57892. source: "./media/characters/balans/back.svg",
  57893. extra: 408/381,
  57894. bottom: 14/422
  57895. }
  57896. },
  57897. hand: {
  57898. height: math.unit(1.15, "feet"),
  57899. name: "Hand",
  57900. image: {
  57901. source: "./media/characters/balans/hand.svg"
  57902. }
  57903. },
  57904. footRest: {
  57905. height: math.unit(3.1, "feet"),
  57906. name: "Foot (Rest)",
  57907. image: {
  57908. source: "./media/characters/balans/foot-rest.svg"
  57909. }
  57910. },
  57911. footActive: {
  57912. height: math.unit(3.5, "feet"),
  57913. name: "Foot (Active)",
  57914. image: {
  57915. source: "./media/characters/balans/foot-active.svg"
  57916. }
  57917. },
  57918. },
  57919. [
  57920. {
  57921. name: "Normal",
  57922. height: math.unit(10 + 3/12, "feet"),
  57923. default: true
  57924. },
  57925. ]
  57926. ))
  57927. characterMakers.push(() => makeCharacter(
  57928. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57929. {
  57930. side: {
  57931. height: math.unit(9, "meters"),
  57932. weight: math.unit(114, "tonnes"),
  57933. name: "Side",
  57934. image: {
  57935. source: "./media/characters/eldkveikir/side.svg",
  57936. extra: 1927/338,
  57937. bottom: 42/1969
  57938. }
  57939. },
  57940. sitting: {
  57941. height: math.unit(13.4, "meters"),
  57942. weight: math.unit(114, "tonnes"),
  57943. name: "Sitting",
  57944. image: {
  57945. source: "./media/characters/eldkveikir/sitting.svg",
  57946. extra: 1108/963,
  57947. bottom: 610/1718
  57948. }
  57949. },
  57950. maw: {
  57951. height: math.unit(8.36, "meters"),
  57952. name: "Maw",
  57953. image: {
  57954. source: "./media/characters/eldkveikir/maw.svg"
  57955. }
  57956. },
  57957. hand: {
  57958. height: math.unit(4.84, "meters"),
  57959. name: "Hand",
  57960. image: {
  57961. source: "./media/characters/eldkveikir/hand.svg"
  57962. }
  57963. },
  57964. foot: {
  57965. height: math.unit(6.9, "meters"),
  57966. name: "Foot",
  57967. image: {
  57968. source: "./media/characters/eldkveikir/foot.svg"
  57969. }
  57970. },
  57971. genitals: {
  57972. height: math.unit(9.6, "meters"),
  57973. name: "Genitals",
  57974. image: {
  57975. source: "./media/characters/eldkveikir/genitals.svg"
  57976. }
  57977. },
  57978. },
  57979. [
  57980. {
  57981. name: "Normal",
  57982. height: math.unit(9, "meters"),
  57983. default: true
  57984. },
  57985. ]
  57986. ))
  57987. characterMakers.push(() => makeCharacter(
  57988. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57989. {
  57990. front: {
  57991. height: math.unit(14, "feet"),
  57992. weight: math.unit(4100, "lb"),
  57993. name: "Front",
  57994. image: {
  57995. source: "./media/characters/arrow/front.svg",
  57996. extra: 330/318,
  57997. bottom: 56/386
  57998. }
  57999. },
  58000. },
  58001. [
  58002. {
  58003. name: "Normal",
  58004. height: math.unit(14, "feet"),
  58005. default: true
  58006. },
  58007. {
  58008. name: "Minimacro",
  58009. height: math.unit(63, "feet")
  58010. },
  58011. {
  58012. name: "Macro",
  58013. height: math.unit(630, "feet")
  58014. },
  58015. {
  58016. name: "Megamacro",
  58017. height: math.unit(12600, "feet")
  58018. },
  58019. {
  58020. name: "Gigamacro",
  58021. height: math.unit(18000, "miles")
  58022. },
  58023. ]
  58024. ))
  58025. characterMakers.push(() => makeCharacter(
  58026. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58027. {
  58028. front: {
  58029. height: math.unit(10, "feet"),
  58030. weight: math.unit(2.4, "tons"),
  58031. name: "Front",
  58032. image: {
  58033. source: "./media/characters/3yk-k0-unit/front.svg",
  58034. extra: 573/561,
  58035. bottom: 33/606
  58036. }
  58037. },
  58038. back: {
  58039. height: math.unit(10, "feet"),
  58040. weight: math.unit(2.4, "tons"),
  58041. name: "Back",
  58042. image: {
  58043. source: "./media/characters/3yk-k0-unit/back.svg",
  58044. extra: 614/573,
  58045. bottom: 32/646
  58046. }
  58047. },
  58048. maw: {
  58049. height: math.unit(2.15, "feet"),
  58050. name: "Maw",
  58051. image: {
  58052. source: "./media/characters/3yk-k0-unit/maw.svg"
  58053. }
  58054. },
  58055. },
  58056. [
  58057. {
  58058. name: "Normal",
  58059. height: math.unit(10, "feet"),
  58060. default: true
  58061. },
  58062. ]
  58063. ))
  58064. characterMakers.push(() => makeCharacter(
  58065. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58066. {
  58067. front: {
  58068. height: math.unit(8 + 8/12, "feet"),
  58069. name: "Front",
  58070. image: {
  58071. source: "./media/characters/nemo/front.svg",
  58072. extra: 1308/1217,
  58073. bottom: 57/1365
  58074. }
  58075. },
  58076. },
  58077. [
  58078. {
  58079. name: "Normal",
  58080. height: math.unit(8 + 8/12, "feet"),
  58081. default: true
  58082. },
  58083. ]
  58084. ))
  58085. characterMakers.push(() => makeCharacter(
  58086. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58087. {
  58088. front: {
  58089. height: math.unit(8, "feet"),
  58090. weight: math.unit(760, "lb"),
  58091. name: "Front",
  58092. image: {
  58093. source: "./media/characters/rexx/front.svg",
  58094. extra: 786/750,
  58095. bottom: 17/803
  58096. },
  58097. extraAttributes: {
  58098. "pawLength": {
  58099. name: "Paw Length",
  58100. power: 1,
  58101. type: "length",
  58102. base: math.unit(27, "inches")
  58103. },
  58104. }
  58105. },
  58106. },
  58107. [
  58108. {
  58109. name: "Micro",
  58110. height: math.unit(2, "inches")
  58111. },
  58112. {
  58113. name: "Normal",
  58114. height: math.unit(8, "feet"),
  58115. default: true
  58116. },
  58117. {
  58118. name: "Macro",
  58119. height: math.unit(150, "feet")
  58120. },
  58121. ]
  58122. ))
  58123. characterMakers.push(() => makeCharacter(
  58124. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58125. {
  58126. front: {
  58127. height: math.unit(18, "feet"),
  58128. weight: math.unit(1975, "lb"),
  58129. name: "Front",
  58130. image: {
  58131. source: "./media/characters/draco/front.svg",
  58132. extra: 1325/1241,
  58133. bottom: 83/1408
  58134. }
  58135. },
  58136. back: {
  58137. height: math.unit(18, "feet"),
  58138. weight: math.unit(1975, "lb"),
  58139. name: "Back",
  58140. image: {
  58141. source: "./media/characters/draco/back.svg",
  58142. extra: 1332/1250,
  58143. bottom: 43/1375
  58144. }
  58145. },
  58146. dick: {
  58147. height: math.unit(7.5, "feet"),
  58148. name: "Dick",
  58149. image: {
  58150. source: "./media/characters/draco/dick.svg"
  58151. }
  58152. },
  58153. },
  58154. [
  58155. {
  58156. name: "Normal",
  58157. height: math.unit(18, "feet"),
  58158. default: true
  58159. },
  58160. ]
  58161. ))
  58162. characterMakers.push(() => makeCharacter(
  58163. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58164. {
  58165. front: {
  58166. height: math.unit(3.2, "meters"),
  58167. name: "Front",
  58168. image: {
  58169. source: "./media/characters/harriett/front.svg",
  58170. extra: 1966/1915,
  58171. bottom: 9/1975
  58172. }
  58173. },
  58174. },
  58175. [
  58176. {
  58177. name: "Normal",
  58178. height: math.unit(3.2, "meters"),
  58179. default: true
  58180. },
  58181. ]
  58182. ))
  58183. characterMakers.push(() => makeCharacter(
  58184. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58185. {
  58186. sitting: {
  58187. height: math.unit(0.8, "meter"),
  58188. name: "Sitting",
  58189. image: {
  58190. source: "./media/characters/serpentus/sitting.svg",
  58191. extra: 293/290,
  58192. bottom: 140/433
  58193. }
  58194. },
  58195. },
  58196. [
  58197. {
  58198. name: "Normal",
  58199. height: math.unit(0.8, "meter"),
  58200. default: true
  58201. },
  58202. ]
  58203. ))
  58204. characterMakers.push(() => makeCharacter(
  58205. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58206. {
  58207. front: {
  58208. height: math.unit(5.7174385736, "feet"),
  58209. name: "Front",
  58210. image: {
  58211. source: "./media/characters/nova-polecat/front.svg",
  58212. extra: 1317/1216,
  58213. bottom: 92/1409
  58214. }
  58215. },
  58216. },
  58217. [
  58218. {
  58219. name: "Normal",
  58220. height: math.unit(5.7174385736, "feet"),
  58221. default: true
  58222. },
  58223. ]
  58224. ))
  58225. characterMakers.push(() => makeCharacter(
  58226. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58227. {
  58228. front: {
  58229. height: math.unit(5 + 4/12, "feet"),
  58230. weight: math.unit(250, "lb"),
  58231. name: "Front",
  58232. image: {
  58233. source: "./media/characters/mook/front.svg",
  58234. extra: 1088/1037,
  58235. bottom: 132/1220
  58236. }
  58237. },
  58238. back: {
  58239. height: math.unit(5 + 1/12, "feet"),
  58240. weight: math.unit(250, "lb"),
  58241. name: "Back",
  58242. image: {
  58243. source: "./media/characters/mook/back.svg",
  58244. extra: 1184/905,
  58245. bottom: 96/1280
  58246. }
  58247. },
  58248. head: {
  58249. height: math.unit(1.85, "feet"),
  58250. name: "Head",
  58251. image: {
  58252. source: "./media/characters/mook/head.svg"
  58253. }
  58254. },
  58255. hand: {
  58256. height: math.unit(1.9, "feet"),
  58257. name: "Hand",
  58258. image: {
  58259. source: "./media/characters/mook/hand.svg"
  58260. }
  58261. },
  58262. palm: {
  58263. height: math.unit(1.84, "feet"),
  58264. name: "Palm",
  58265. image: {
  58266. source: "./media/characters/mook/palm.svg"
  58267. }
  58268. },
  58269. foot: {
  58270. height: math.unit(1.44, "feet"),
  58271. name: "Foot",
  58272. image: {
  58273. source: "./media/characters/mook/foot.svg"
  58274. }
  58275. },
  58276. sole: {
  58277. height: math.unit(1.44, "feet"),
  58278. name: "Sole",
  58279. image: {
  58280. source: "./media/characters/mook/sole.svg"
  58281. }
  58282. },
  58283. },
  58284. [
  58285. {
  58286. name: "Normal",
  58287. height: math.unit(5 + 4/12, "feet"),
  58288. default: true
  58289. },
  58290. {
  58291. name: "Big",
  58292. height: math.unit(12, "feet")
  58293. },
  58294. ]
  58295. ))
  58296. characterMakers.push(() => makeCharacter(
  58297. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58298. {
  58299. front: {
  58300. height: math.unit(6 + 10/12, "feet"),
  58301. weight: math.unit(233, "lb"),
  58302. name: "Front",
  58303. image: {
  58304. source: "./media/characters/kayla/front.svg",
  58305. extra: 1850/1775,
  58306. bottom: 65/1915
  58307. }
  58308. },
  58309. },
  58310. [
  58311. {
  58312. name: "Normal",
  58313. height: math.unit(6 + 10/12, "feet"),
  58314. default: true
  58315. },
  58316. {
  58317. name: "Amazonian",
  58318. height: math.unit(12 + 5/12, "feet")
  58319. },
  58320. {
  58321. name: "Mini Giantess",
  58322. height: math.unit(26, "feet")
  58323. },
  58324. {
  58325. name: "Giantess",
  58326. height: math.unit(200, "feet")
  58327. },
  58328. {
  58329. name: "Mega Giantess",
  58330. height: math.unit(2500, "feet")
  58331. },
  58332. {
  58333. name: "City Sized",
  58334. height: math.unit(50, "miles")
  58335. },
  58336. {
  58337. name: "Country Sized",
  58338. height: math.unit(500, "miles")
  58339. },
  58340. {
  58341. name: "Continent Sized",
  58342. height: math.unit(2500, "miles")
  58343. },
  58344. {
  58345. name: "Planet Sized",
  58346. height: math.unit(10000, "miles")
  58347. },
  58348. {
  58349. name: "Star Sized",
  58350. height: math.unit(5e6, "miles")
  58351. },
  58352. {
  58353. name: "Solar System Sized",
  58354. height: math.unit(125, "AU")
  58355. },
  58356. {
  58357. name: "Galaxy Sized",
  58358. height: math.unit(300e3, "lightyears")
  58359. },
  58360. {
  58361. name: "Universe Sized",
  58362. height: math.unit(200e9, "lightyears")
  58363. },
  58364. {
  58365. name: "Multiverse Sized",
  58366. height: math.unit(20, "exauniverses")
  58367. },
  58368. {
  58369. name: "Mother of Existence",
  58370. height: math.unit(1e6, "yottauniverses")
  58371. },
  58372. ]
  58373. ))
  58374. characterMakers.push(() => makeCharacter(
  58375. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58376. {
  58377. side: {
  58378. height: math.unit(9.5, "meters"),
  58379. name: "Side",
  58380. image: {
  58381. source: "./media/characters/kulve-ragnarok/side.svg",
  58382. extra: 364/326,
  58383. bottom: 50/414
  58384. }
  58385. },
  58386. },
  58387. [
  58388. {
  58389. name: "Normal",
  58390. height: math.unit(9.5, "meters"),
  58391. default: true
  58392. },
  58393. ]
  58394. ))
  58395. characterMakers.push(() => makeCharacter(
  58396. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58397. {
  58398. front: {
  58399. height: math.unit(8 + 9/12, "feet"),
  58400. name: "Front",
  58401. image: {
  58402. source: "./media/characters/atlas-goat/front.svg",
  58403. extra: 1462/1323,
  58404. bottom: 12/1474
  58405. }
  58406. },
  58407. },
  58408. [
  58409. {
  58410. name: "Normal",
  58411. height: math.unit(8 + 9/12, "feet"),
  58412. default: true
  58413. },
  58414. {
  58415. name: "Skyline",
  58416. height: math.unit(845, "feet")
  58417. },
  58418. {
  58419. name: "Orbital",
  58420. height: math.unit(93000, "miles")
  58421. },
  58422. {
  58423. name: "Constellation",
  58424. height: math.unit(27000, "lightyears")
  58425. },
  58426. ]
  58427. ))
  58428. characterMakers.push(() => makeCharacter(
  58429. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58430. {
  58431. side: {
  58432. height: math.unit(1.8, "meters"),
  58433. weight: math.unit(120, "kg"),
  58434. name: "Side",
  58435. image: {
  58436. source: "./media/characters/xie-ling/side.svg",
  58437. extra: 646/574,
  58438. bottom: 44/690
  58439. }
  58440. },
  58441. },
  58442. [
  58443. {
  58444. name: "Tiny",
  58445. height: math.unit(1.80, "meters")
  58446. },
  58447. {
  58448. name: "Small",
  58449. height: math.unit(6, "meters")
  58450. },
  58451. {
  58452. name: "Medium",
  58453. height: math.unit(15, "meters")
  58454. },
  58455. {
  58456. name: "Normal",
  58457. height: math.unit(30, "meters"),
  58458. default: true
  58459. },
  58460. {
  58461. name: "Above Normal",
  58462. height: math.unit(60, "meters")
  58463. },
  58464. {
  58465. name: "Big",
  58466. height: math.unit(220, "meters")
  58467. },
  58468. {
  58469. name: "Giant",
  58470. height: math.unit(2.2, "km")
  58471. },
  58472. {
  58473. name: "Macro",
  58474. height: math.unit(25, "km")
  58475. },
  58476. {
  58477. name: "Mega Macro",
  58478. height: math.unit(350, "km")
  58479. },
  58480. {
  58481. name: "Mega Macro+",
  58482. height: math.unit(5000, "km")
  58483. },
  58484. {
  58485. name: "Goddess",
  58486. height: math.unit(3, "multiverses")
  58487. },
  58488. ]
  58489. ))
  58490. characterMakers.push(() => makeCharacter(
  58491. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58492. {
  58493. frontSfw: {
  58494. height: math.unit(5 + 11/12, "feet"),
  58495. weight: math.unit(210, "lb"),
  58496. name: "Front",
  58497. image: {
  58498. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58499. extra: 1928/1821,
  58500. bottom: 45/1973
  58501. }
  58502. },
  58503. backSfw: {
  58504. height: math.unit(5 + 11/12, "feet"),
  58505. weight: math.unit(210, "lb"),
  58506. name: "Back",
  58507. image: {
  58508. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58509. extra: 1920/1813,
  58510. bottom: 34/1954
  58511. }
  58512. },
  58513. frontNsfw: {
  58514. height: math.unit(5 + 11/12, "feet"),
  58515. weight: math.unit(210, "lb"),
  58516. name: "Front (NSFW)",
  58517. image: {
  58518. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58519. extra: 1928/1821,
  58520. bottom: 45/1973
  58521. }
  58522. },
  58523. backNsfw: {
  58524. height: math.unit(5 + 11/12, "feet"),
  58525. weight: math.unit(210, "lb"),
  58526. name: "Back (NSFW)",
  58527. image: {
  58528. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58529. extra: 1920/1813,
  58530. bottom: 34/1954
  58531. }
  58532. },
  58533. },
  58534. [
  58535. {
  58536. name: "Normal",
  58537. height: math.unit(5 + 11/12, "feet"),
  58538. default: true
  58539. },
  58540. {
  58541. name: "Goddess",
  58542. height: math.unit(20 + 3/12, "feet")
  58543. },
  58544. {
  58545. name: "Breaker of Man",
  58546. height: math.unit(329 + 9/12, "feet")
  58547. },
  58548. {
  58549. name: "Solar Justice",
  58550. height: math.unit(0.6, "solarradii")
  58551. },
  58552. {
  58553. name: "She Who Judges",
  58554. height: math.unit(1, "universe")
  58555. },
  58556. ]
  58557. ))
  58558. characterMakers.push(() => makeCharacter(
  58559. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58560. {
  58561. casual_front: {
  58562. height: math.unit(6 + 1/12, "feet"),
  58563. weight: math.unit(190, "lb"),
  58564. preyCapacity: math.unit(1, "people"),
  58565. name: "Front",
  58566. image: {
  58567. source: "./media/characters/managarmr/casual-front.svg",
  58568. extra: 411/381,
  58569. bottom: 15/426
  58570. },
  58571. extraAttributes: {
  58572. "pawSize": {
  58573. name: "Paw Size",
  58574. power: 1,
  58575. type: "length",
  58576. base: math.unit(0.2, "meters")
  58577. },
  58578. },
  58579. form: "casual",
  58580. },
  58581. casual_back: {
  58582. height: math.unit(6 + 1/12, "feet"),
  58583. weight: math.unit(190, "lb"),
  58584. preyCapacity: math.unit(1, "people"),
  58585. name: "Back",
  58586. image: {
  58587. source: "./media/characters/managarmr/casual-back.svg",
  58588. extra: 413/383,
  58589. bottom: 13/426
  58590. },
  58591. extraAttributes: {
  58592. "pawSize": {
  58593. name: "Paw Size",
  58594. power: 1,
  58595. type: "length",
  58596. base: math.unit(0.2, "meters")
  58597. },
  58598. },
  58599. form: "casual",
  58600. },
  58601. base_front: {
  58602. height: math.unit(7, "feet"),
  58603. weight: math.unit(210, "lb"),
  58604. preyCapacity: math.unit(2, "people"),
  58605. name: "Front",
  58606. image: {
  58607. source: "./media/characters/managarmr/base-front.svg",
  58608. extra: 580/485,
  58609. bottom: 32/612
  58610. },
  58611. extraAttributes: {
  58612. "wingspan": {
  58613. name: "Wingspan",
  58614. power: 1,
  58615. type: "length",
  58616. base: math.unit(4, "meters")
  58617. },
  58618. "pawSize": {
  58619. name: "Paw Size",
  58620. power: 1,
  58621. type: "length",
  58622. base: math.unit(0.2, "meters")
  58623. },
  58624. },
  58625. form: "base",
  58626. },
  58627. "true-divine_front": {
  58628. height: math.unit(40, "feet"),
  58629. weight: math.unit(39000, "lb"),
  58630. preyCapacity: math.unit(375, "people"),
  58631. name: "Front",
  58632. image: {
  58633. source: "./media/characters/managarmr/true-divine-front.svg",
  58634. extra: 725/573,
  58635. bottom: 120/845
  58636. },
  58637. extraAttributes: {
  58638. "wingspan": {
  58639. name: "Wingspan",
  58640. power: 1,
  58641. type: "length",
  58642. base: math.unit(20, "meters")
  58643. },
  58644. "pawSize": {
  58645. name: "Paw Size",
  58646. power: 1,
  58647. type: "length",
  58648. base: math.unit(1.5, "meters")
  58649. },
  58650. },
  58651. form: "true-divine",
  58652. },
  58653. },
  58654. [
  58655. {
  58656. name: "Normal",
  58657. height: math.unit(6 + 1/12, "feet"),
  58658. form: "casual",
  58659. default: true
  58660. },
  58661. {
  58662. name: "Normal",
  58663. height: math.unit(7, "feet"),
  58664. form: "base",
  58665. default: true
  58666. },
  58667. ],
  58668. {
  58669. "casual": {
  58670. name: "Casual",
  58671. default: true
  58672. },
  58673. "base": {
  58674. name: "Base",
  58675. },
  58676. "true-divine": {
  58677. name: "True Divine",
  58678. },
  58679. }
  58680. ))
  58681. characterMakers.push(() => makeCharacter(
  58682. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58683. {
  58684. front: {
  58685. height: math.unit(1.8, "meters"),
  58686. weight: math.unit(110, "kg"),
  58687. name: "Front",
  58688. image: {
  58689. source: "./media/characters/mystra/front.svg",
  58690. extra: 529/442,
  58691. bottom: 31/560
  58692. }
  58693. },
  58694. frontLewd: {
  58695. height: math.unit(1.8, "meters"),
  58696. weight: math.unit(110, "kg"),
  58697. name: "Front (Lewd)",
  58698. image: {
  58699. source: "./media/characters/mystra/front-lewd.svg",
  58700. extra: 529/442,
  58701. bottom: 31/560
  58702. }
  58703. },
  58704. head: {
  58705. height: math.unit(1.63, "feet"),
  58706. name: "Head",
  58707. image: {
  58708. source: "./media/characters/mystra/head.svg"
  58709. }
  58710. },
  58711. paw: {
  58712. height: math.unit(1.9, "feet"),
  58713. name: "Paw",
  58714. image: {
  58715. source: "./media/characters/mystra/paw.svg"
  58716. }
  58717. },
  58718. },
  58719. [
  58720. {
  58721. name: "Incognito",
  58722. height: math.unit(2.3, "meters")
  58723. },
  58724. {
  58725. name: "Small Macro",
  58726. height: math.unit(300, "meters")
  58727. },
  58728. {
  58729. name: "Small Mega",
  58730. height: math.unit(2, "km")
  58731. },
  58732. {
  58733. name: "Mega",
  58734. height: math.unit(30, "km")
  58735. },
  58736. {
  58737. name: "Small Giga",
  58738. height: math.unit(100, "km")
  58739. },
  58740. {
  58741. name: "Giga",
  58742. height: math.unit(1000, "km"),
  58743. default: true
  58744. },
  58745. {
  58746. name: "Continental",
  58747. height: math.unit(5000, "km")
  58748. },
  58749. {
  58750. name: "Terra",
  58751. height: math.unit(20000, "km")
  58752. },
  58753. {
  58754. name: "Solar",
  58755. height: math.unit(2e6, "km")
  58756. },
  58757. {
  58758. name: "Galactic",
  58759. height: math.unit(528502, "lightyears")
  58760. },
  58761. {
  58762. name: "Universal",
  58763. height: math.unit(20, "universes")
  58764. },
  58765. ]
  58766. ))
  58767. characterMakers.push(() => makeCharacter(
  58768. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58769. {
  58770. front: {
  58771. height: math.unit(2, "meters"),
  58772. weight: math.unit(140, "kg"),
  58773. name: "Front",
  58774. image: {
  58775. source: "./media/characters/caleb/front.svg",
  58776. extra: 873/817,
  58777. bottom: 47/920
  58778. }
  58779. },
  58780. back: {
  58781. height: math.unit(2, "meters"),
  58782. weight: math.unit(140, "kg"),
  58783. name: "Back",
  58784. image: {
  58785. source: "./media/characters/caleb/back.svg",
  58786. extra: 877/828,
  58787. bottom: 24/901
  58788. }
  58789. },
  58790. snakeTail: {
  58791. height: math.unit(1.44, "feet"),
  58792. name: "Snake Tail",
  58793. image: {
  58794. source: "./media/characters/caleb/snake-tail.svg"
  58795. }
  58796. },
  58797. dick: {
  58798. height: math.unit(2.6, "feet"),
  58799. name: "Dick",
  58800. image: {
  58801. source: "./media/characters/caleb/dick.svg"
  58802. }
  58803. },
  58804. },
  58805. [
  58806. {
  58807. name: "Incognito",
  58808. height: math.unit(3, "meters")
  58809. },
  58810. {
  58811. name: "Home Size",
  58812. height: math.unit(200, "meters"),
  58813. default: true
  58814. },
  58815. {
  58816. name: "Macro",
  58817. height: math.unit(500, "meters")
  58818. },
  58819. {
  58820. name: "Big Macro",
  58821. height: math.unit(5, "km")
  58822. },
  58823. {
  58824. name: "Giga",
  58825. height: math.unit(250, "km")
  58826. },
  58827. {
  58828. name: "Giga+",
  58829. height: math.unit(5000, "km")
  58830. },
  58831. {
  58832. name: "Small Terra",
  58833. height: math.unit(35e3, "km")
  58834. },
  58835. {
  58836. name: "Terra",
  58837. height: math.unit(2e6, "km")
  58838. },
  58839. {
  58840. name: "Terra+",
  58841. height: math.unit(1.5e6, "km")
  58842. },
  58843. ]
  58844. ))
  58845. characterMakers.push(() => makeCharacter(
  58846. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58847. {
  58848. front: {
  58849. height: math.unit(2, "meters"),
  58850. weight: math.unit(120, "kg"),
  58851. name: "Front",
  58852. image: {
  58853. source: "./media/characters/gilirian/front.svg",
  58854. extra: 805/737,
  58855. bottom: 13/818
  58856. }
  58857. },
  58858. side: {
  58859. height: math.unit(2, "meters"),
  58860. weight: math.unit(120, "kg"),
  58861. name: "Side",
  58862. image: {
  58863. source: "./media/characters/gilirian/side.svg",
  58864. extra: 810/746,
  58865. bottom: 6/816
  58866. }
  58867. },
  58868. back: {
  58869. height: math.unit(2, "meters"),
  58870. weight: math.unit(120, "kg"),
  58871. name: "Back",
  58872. image: {
  58873. source: "./media/characters/gilirian/back.svg",
  58874. extra: 815/745,
  58875. bottom: 15/830
  58876. }
  58877. },
  58878. frontNsfw: {
  58879. height: math.unit(2, "meters"),
  58880. weight: math.unit(120, "kg"),
  58881. name: "Front (NSFW)",
  58882. image: {
  58883. source: "./media/characters/gilirian/front-nsfw.svg",
  58884. extra: 805/737,
  58885. bottom: 13/818
  58886. }
  58887. },
  58888. sideNsfw: {
  58889. height: math.unit(2, "meters"),
  58890. weight: math.unit(120, "kg"),
  58891. name: "Side (NSFW)",
  58892. image: {
  58893. source: "./media/characters/gilirian/side-nsfw.svg",
  58894. extra: 810/746,
  58895. bottom: 6/816
  58896. }
  58897. },
  58898. },
  58899. [
  58900. {
  58901. name: "Incognito",
  58902. height: math.unit(2, "meters"),
  58903. default: true
  58904. },
  58905. {
  58906. name: "Macro",
  58907. height: math.unit(250, "meters")
  58908. },
  58909. {
  58910. name: "Big Macro",
  58911. height: math.unit(1500, "meters")
  58912. },
  58913. {
  58914. name: "Mega",
  58915. height: math.unit(40, "km")
  58916. },
  58917. {
  58918. name: "Giga",
  58919. height: math.unit(300, "km")
  58920. },
  58921. {
  58922. name: "Extra Giga",
  58923. height: math.unit(5000, "km")
  58924. },
  58925. {
  58926. name: "Small Terra",
  58927. height: math.unit(10e3, "km")
  58928. },
  58929. {
  58930. name: "Terra",
  58931. height: math.unit(3e5, "km")
  58932. },
  58933. {
  58934. name: "Galactic",
  58935. height: math.unit(369950, "lightyears")
  58936. },
  58937. ]
  58938. ))
  58939. characterMakers.push(() => makeCharacter(
  58940. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58941. {
  58942. front: {
  58943. height: math.unit(2.5, "meters"),
  58944. weight: math.unit(230, "lb"),
  58945. name: "Front",
  58946. image: {
  58947. source: "./media/characters/tarken/front.svg",
  58948. extra: 764/720,
  58949. bottom: 49/813
  58950. }
  58951. },
  58952. back: {
  58953. height: math.unit(2.5, "meters"),
  58954. weight: math.unit(230, "lb"),
  58955. name: "Back",
  58956. image: {
  58957. source: "./media/characters/tarken/back.svg",
  58958. extra: 756/720,
  58959. bottom: 35/791
  58960. }
  58961. },
  58962. frontNsfw: {
  58963. height: math.unit(2.5, "meters"),
  58964. weight: math.unit(230, "lb"),
  58965. name: "Front (NSFW)",
  58966. image: {
  58967. source: "./media/characters/tarken/front-nsfw.svg",
  58968. extra: 764/720,
  58969. bottom: 49/813
  58970. }
  58971. },
  58972. backNsfw: {
  58973. height: math.unit(2.5, "meters"),
  58974. weight: math.unit(230, "lb"),
  58975. name: "Back (NSFW)",
  58976. image: {
  58977. source: "./media/characters/tarken/back-nsfw.svg",
  58978. extra: 756/720,
  58979. bottom: 35/791
  58980. }
  58981. },
  58982. head: {
  58983. height: math.unit(2.22, "feet"),
  58984. name: "Head",
  58985. image: {
  58986. source: "./media/characters/tarken/head.svg"
  58987. }
  58988. },
  58989. tail: {
  58990. height: math.unit(5.25, "feet"),
  58991. name: "Tail",
  58992. image: {
  58993. source: "./media/characters/tarken/tail.svg"
  58994. }
  58995. },
  58996. dick: {
  58997. height: math.unit(1.95, "feet"),
  58998. name: "Dick",
  58999. image: {
  59000. source: "./media/characters/tarken/dick.svg"
  59001. }
  59002. },
  59003. hand: {
  59004. height: math.unit(1.78, "feet"),
  59005. name: "Hand",
  59006. image: {
  59007. source: "./media/characters/tarken/hand.svg"
  59008. }
  59009. },
  59010. beam: {
  59011. height: math.unit(1.5, "feet"),
  59012. name: "Beam",
  59013. image: {
  59014. source: "./media/characters/tarken/beam.svg"
  59015. }
  59016. },
  59017. },
  59018. [
  59019. {
  59020. name: "Original Size",
  59021. height: math.unit(2.5, "meters")
  59022. },
  59023. {
  59024. name: "Macro",
  59025. height: math.unit(150, "meters"),
  59026. default: true
  59027. },
  59028. {
  59029. name: "Macro+",
  59030. height: math.unit(300, "meters")
  59031. },
  59032. {
  59033. name: "Mega",
  59034. height: math.unit(2, "km")
  59035. },
  59036. {
  59037. name: "Mega+",
  59038. height: math.unit(35, "km")
  59039. },
  59040.  {
  59041. name: "Mega++",
  59042. height: math.unit(60, "km")
  59043. },
  59044. {
  59045. name: "Giga",
  59046. height: math.unit(200, "km")
  59047. },
  59048. {
  59049. name: "Giga+",
  59050. height: math.unit(2500, "km")
  59051. },
  59052. {
  59053. name: "Giga++",
  59054. height: math.unit(6600, "km")
  59055. },
  59056. {
  59057. name: "Terra",
  59058. height: math.unit(20000, "km")
  59059. },
  59060. {
  59061. name: "Terra+",
  59062. height: math.unit(300000, "km")
  59063. },
  59064. ]
  59065. ))
  59066. characterMakers.push(() => makeCharacter(
  59067. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59068. {
  59069. magpie_dressed: {
  59070. height: math.unit(1.7, "meters"),
  59071. weight: math.unit(70, "kg"),
  59072. name: "Dressed",
  59073. image: {
  59074. source: "./media/characters/otreus/magpie-dressed.svg",
  59075. extra: 691/672,
  59076. bottom: 116/807
  59077. },
  59078. form: "magpie",
  59079. default: true
  59080. },
  59081. magpie_nude: {
  59082. height: math.unit(1.7, "meters"),
  59083. weight: math.unit(70, "kg"),
  59084. name: "Nude",
  59085. image: {
  59086. source: "./media/characters/otreus/magpie-nude.svg",
  59087. extra: 691/672,
  59088. bottom: 116/807
  59089. },
  59090. form: "magpie",
  59091. },
  59092. magpie_dressedLewd: {
  59093. height: math.unit(1.7, "meters"),
  59094. weight: math.unit(70, "kg"),
  59095. name: "Dressed (Lewd)",
  59096. image: {
  59097. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59098. extra: 691/672,
  59099. bottom: 116/807
  59100. },
  59101. form: "magpie",
  59102. },
  59103. magpie_nudeLewd: {
  59104. height: math.unit(1.7, "meters"),
  59105. weight: math.unit(70, "kg"),
  59106. name: "Nude (Lewd)",
  59107. image: {
  59108. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59109. extra: 691/672,
  59110. bottom: 116/807
  59111. },
  59112. form: "magpie",
  59113. },
  59114. magpie_leftFoot: {
  59115. height: math.unit(1.58, "feet"),
  59116. name: "Left Foot",
  59117. image: {
  59118. source: "./media/characters/otreus/magpie-left-foot.svg"
  59119. },
  59120. form: "magpie",
  59121. },
  59122. magpie_rightFoot: {
  59123. height: math.unit(1.58, "feet"),
  59124. name: "Right Foot",
  59125. image: {
  59126. source: "./media/characters/otreus/magpie-right-foot.svg"
  59127. },
  59128. form: "magpie",
  59129. },
  59130. magpie_wingspan: {
  59131. height: math.unit(2, "meters"),
  59132. weight: math.unit(70, "kg"),
  59133. name: "Wingspan",
  59134. image: {
  59135. source: "./media/characters/otreus/magpie-wingspan.svg"
  59136. },
  59137. extraAttributes: {
  59138. "wingspan": {
  59139. name: "Wingspan",
  59140. power: 1,
  59141. type: "length",
  59142. base: math.unit(3.35, "meters")
  59143. },
  59144. },
  59145. form: "magpie",
  59146. },
  59147. hippogriff_dressed: {
  59148. height: math.unit(1.7, "meters"),
  59149. weight: math.unit(70, "kg"),
  59150. name: "Dressed",
  59151. image: {
  59152. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59153. extra: 710/689,
  59154. bottom: 67/777
  59155. },
  59156. form: "hippogriff",
  59157. default: true
  59158. },
  59159. hippogriff_nude: {
  59160. height: math.unit(1.7, "meters"),
  59161. weight: math.unit(70, "kg"),
  59162. name: "Nude",
  59163. image: {
  59164. source: "./media/characters/otreus/hippogriff-nude.svg",
  59165. extra: 710/689,
  59166. bottom: 67/777
  59167. },
  59168. form: "hippogriff",
  59169. },
  59170. hippogriff_dressedLewd: {
  59171. height: math.unit(1.7, "meters"),
  59172. weight: math.unit(70, "kg"),
  59173. name: "Dressed (Lewd)",
  59174. image: {
  59175. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59176. extra: 710/689,
  59177. bottom: 67/777
  59178. },
  59179. form: "hippogriff",
  59180. },
  59181. hippogriff_nudeLewd: {
  59182. height: math.unit(1.7, "meters"),
  59183. weight: math.unit(70, "kg"),
  59184. name: "Nude (Lewd)",
  59185. image: {
  59186. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59187. extra: 710/689,
  59188. bottom: 67/777
  59189. },
  59190. form: "hippogriff",
  59191. },
  59192. },
  59193. [
  59194. {
  59195. name: "Original Size",
  59196. height: math.unit(1.7, "meters"),
  59197. allForms: true
  59198. },
  59199. {
  59200. name: "Incognito Size",
  59201. height: math.unit(2, "meters"),
  59202. allForms: true
  59203. },
  59204. {
  59205. name: "Mega",
  59206. height: math.unit(2, "km"),
  59207. allForms: true
  59208. },
  59209. {
  59210. name: "Mega+",
  59211. height: math.unit(40, "km"),
  59212. allForms: true
  59213. },
  59214. {
  59215. name: "Giga",
  59216. height: math.unit(250, "km"),
  59217. allForms: true
  59218. },
  59219. {
  59220. name: "Giga+",
  59221. height: math.unit(3000, "km"),
  59222. allForms: true
  59223. },
  59224. {
  59225. name: "Terra",
  59226. height: math.unit(20000, "km"),
  59227. allForms: true
  59228. },
  59229. {
  59230. name: "Solar (Home Size)",
  59231. height: math.unit(3e6, "km"),
  59232. allForms: true,
  59233. default: true
  59234. },
  59235. ],
  59236. {
  59237. "magpie": {
  59238. name: "Magpie",
  59239. default: true
  59240. },
  59241. "hippogriff": {
  59242. name: "Hippogriff",
  59243. },
  59244. }
  59245. ))
  59246. characterMakers.push(() => makeCharacter(
  59247. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59248. {
  59249. frontDressed: {
  59250. height: math.unit(1.8, "meters"),
  59251. weight: math.unit(90, "kg"),
  59252. name: "Front (Dressed)",
  59253. image: {
  59254. source: "./media/characters/thalia/front-dressed.svg",
  59255. extra: 478/402,
  59256. bottom: 55/533
  59257. }
  59258. },
  59259. backDressed: {
  59260. height: math.unit(1.8, "meters"),
  59261. weight: math.unit(90, "kg"),
  59262. name: "Back (Dressed)",
  59263. image: {
  59264. source: "./media/characters/thalia/back-dressed.svg",
  59265. extra: 500/424,
  59266. bottom: 15/515
  59267. }
  59268. },
  59269. frontNude: {
  59270. height: math.unit(1.8, "meters"),
  59271. weight: math.unit(90, "kg"),
  59272. name: "Front (Nude)",
  59273. image: {
  59274. source: "./media/characters/thalia/front-nude.svg",
  59275. extra: 478/402,
  59276. bottom: 55/533
  59277. }
  59278. },
  59279. backNude: {
  59280. height: math.unit(1.8, "meters"),
  59281. weight: math.unit(90, "kg"),
  59282. name: "Back (Nude)",
  59283. image: {
  59284. source: "./media/characters/thalia/back-nude.svg",
  59285. extra: 500/424,
  59286. bottom: 15/515
  59287. }
  59288. },
  59289. },
  59290. [
  59291. {
  59292. name: "Incognito",
  59293. height: math.unit(3, "meters")
  59294. },
  59295. {
  59296. name: "Macro",
  59297. height: math.unit(500, "meters")
  59298. },
  59299. {
  59300. name: "Mega",
  59301. height: math.unit(5, "km")
  59302. },
  59303. {
  59304. name: "Mega+",
  59305. height: math.unit(30, "km")
  59306. },
  59307. {
  59308. name: "Giga",
  59309. height: math.unit(350, "km")
  59310. },
  59311. {
  59312. name: "Giga+",
  59313. height: math.unit(4000, "km")
  59314. },
  59315. {
  59316. name: "Terra",
  59317. height: math.unit(35000, "km")
  59318. },
  59319. {
  59320. name: "Original Size",
  59321. height: math.unit(130000, "km")
  59322. },
  59323. {
  59324. name: "Solar (Home Size)",
  59325. height: math.unit(4e6, "km"),
  59326. default: true
  59327. },
  59328. ]
  59329. ))
  59330. characterMakers.push(() => makeCharacter(
  59331. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59332. {
  59333. front: {
  59334. height: math.unit(1.8, "meters"),
  59335. weight: math.unit(95, "kg"),
  59336. name: "Front",
  59337. image: {
  59338. source: "./media/characters/shango/front.svg",
  59339. extra: 1925/1774,
  59340. bottom: 67/1992
  59341. }
  59342. },
  59343. back: {
  59344. height: math.unit(1.8, "meters"),
  59345. weight: math.unit(95, "kg"),
  59346. name: "Back",
  59347. image: {
  59348. source: "./media/characters/shango/back.svg",
  59349. extra: 1915/1766,
  59350. bottom: 52/1967
  59351. }
  59352. },
  59353. frontLewd: {
  59354. height: math.unit(1.8, "meters"),
  59355. weight: math.unit(95, "kg"),
  59356. name: "Front (Lewd)",
  59357. image: {
  59358. source: "./media/characters/shango/front-lewd.svg",
  59359. extra: 1925/1774,
  59360. bottom: 67/1992
  59361. }
  59362. },
  59363. backLewd: {
  59364. height: math.unit(1.8, "meters"),
  59365. weight: math.unit(95, "kg"),
  59366. name: "Back (Lewd)",
  59367. image: {
  59368. source: "./media/characters/shango/back-lewd.svg",
  59369. extra: 1915/1766,
  59370. bottom: 52/1967
  59371. }
  59372. },
  59373. maw: {
  59374. height: math.unit(1.64, "feet"),
  59375. name: "Maw",
  59376. image: {
  59377. source: "./media/characters/shango/maw.svg"
  59378. }
  59379. },
  59380. dick: {
  59381. height: math.unit(2.14, "feet"),
  59382. name: "Dick",
  59383. image: {
  59384. source: "./media/characters/shango/dick.svg"
  59385. }
  59386. },
  59387. },
  59388. [
  59389. {
  59390. name: "Incognito",
  59391. height: math.unit(1.8, "meters")
  59392. },
  59393. {
  59394. name: "Home Size",
  59395. height: math.unit(60, "meters"),
  59396. default: true
  59397. },
  59398. {
  59399. name: "Macro",
  59400. height: math.unit(450, "meters")
  59401. },
  59402. {
  59403. name: "Mega",
  59404. height: math.unit(6, "km")
  59405. },
  59406. {
  59407. name: "Mega+",
  59408. height: math.unit(35, "km")
  59409. },
  59410. {
  59411. name: "Giga",
  59412. height: math.unit(500, "km")
  59413. },
  59414. {
  59415. name: "Giga+",
  59416. height: math.unit(5000, "km")
  59417. },
  59418. {
  59419. name: "Terra",
  59420. height: math.unit(60000, "km")
  59421. },
  59422. {
  59423. name: "Terra+",
  59424. height: math.unit(400000, "km")
  59425. },
  59426. ]
  59427. ))
  59428. characterMakers.push(() => makeCharacter(
  59429. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59430. {
  59431. front: {
  59432. height: math.unit(2, "meters"),
  59433. weight: math.unit(95, "kg"),
  59434. name: "Front",
  59435. image: {
  59436. source: "./media/characters/osiris-gryphon/front.svg",
  59437. extra: 1508/1313,
  59438. bottom: 87/1595
  59439. }
  59440. },
  59441. back: {
  59442. height: math.unit(2, "meters"),
  59443. weight: math.unit(95, "kg"),
  59444. name: "Back",
  59445. image: {
  59446. source: "./media/characters/osiris-gryphon/back.svg",
  59447. extra: 1436/1309,
  59448. bottom: 64/1500
  59449. }
  59450. },
  59451. frontLewd: {
  59452. height: math.unit(2, "meters"),
  59453. weight: math.unit(95, "kg"),
  59454. name: "Front-lewd",
  59455. image: {
  59456. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59457. extra: 1508/1313,
  59458. bottom: 87/1595
  59459. }
  59460. },
  59461. wing: {
  59462. height: math.unit(6.3333, "feet"),
  59463. name: "Wing",
  59464. image: {
  59465. source: "./media/characters/osiris-gryphon/wing.svg"
  59466. }
  59467. },
  59468. },
  59469. [
  59470. {
  59471. name: "Incognito",
  59472. height: math.unit(2, "meters")
  59473. },
  59474. {
  59475. name: "Home Size",
  59476. height: math.unit(30, "meters"),
  59477. default: true
  59478. },
  59479. {
  59480. name: "Macro",
  59481. height: math.unit(100, "meters")
  59482. },
  59483. {
  59484. name: "Macro+",
  59485. height: math.unit(350, "meters")
  59486. },
  59487. {
  59488. name: "Mega",
  59489. height: math.unit(40, "km")
  59490. },
  59491. {
  59492. name: "Giga",
  59493. height: math.unit(300, "km")
  59494. },
  59495. {
  59496. name: "Giga+",
  59497. height: math.unit(2000, "km")
  59498. },
  59499. {
  59500. name: "Terra",
  59501. height: math.unit(30000, "km")
  59502. },
  59503. ]
  59504. ))
  59505. characterMakers.push(() => makeCharacter(
  59506. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59507. {
  59508. front: {
  59509. height: math.unit(2.5, "meters"),
  59510. weight: math.unit(200, "kg"),
  59511. name: "Front",
  59512. image: {
  59513. source: "./media/characters/atlas-dragon/front.svg",
  59514. extra: 745/462,
  59515. bottom: 36/781
  59516. }
  59517. },
  59518. back: {
  59519. height: math.unit(2.5, "meters"),
  59520. weight: math.unit(200, "kg"),
  59521. name: "Back",
  59522. image: {
  59523. source: "./media/characters/atlas-dragon/back.svg",
  59524. extra: 848/822,
  59525. bottom: 57/905
  59526. }
  59527. },
  59528. frontLewd: {
  59529. height: math.unit(2.5, "meters"),
  59530. weight: math.unit(200, "kg"),
  59531. name: "Front (Lewd)",
  59532. image: {
  59533. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59534. extra: 745/462,
  59535. bottom: 36/781
  59536. }
  59537. },
  59538. backLewd: {
  59539. height: math.unit(2.5, "meters"),
  59540. weight: math.unit(200, "kg"),
  59541. name: "Back (Lewd)",
  59542. image: {
  59543. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59544. extra: 848/822,
  59545. bottom: 57/905
  59546. }
  59547. },
  59548. },
  59549. [
  59550. {
  59551. name: "Incognito",
  59552. height: math.unit(2.5, "meters")
  59553. },
  59554. {
  59555. name: "Small Macro",
  59556. height: math.unit(50, "meters")
  59557. },
  59558. {
  59559. name: "Macro",
  59560. height: math.unit(350, "meters")
  59561. },
  59562. {
  59563. name: "Mega",
  59564. height: math.unit(5.5, "kilometers")
  59565. },
  59566. {
  59567. name: "Mega+",
  59568. height: math.unit(50, "km")
  59569. },
  59570. {
  59571. name: "Giga",
  59572. height: math.unit(350, "km")
  59573. },
  59574. {
  59575. name: "Giga+",
  59576. height: math.unit(2000, "km")
  59577. },
  59578. {
  59579. name: "Giga++",
  59580. height: math.unit(6500, "km")
  59581. },
  59582. {
  59583. name: "Terra",
  59584. height: math.unit(30000, "km")
  59585. },
  59586. {
  59587. name: "Terra+",
  59588. height: math.unit(250000, "km")
  59589. },
  59590. {
  59591. name: "True Size",
  59592. height: math.unit(100, "multiverses"),
  59593. default: true
  59594. },
  59595. ]
  59596. ))
  59597. characterMakers.push(() => makeCharacter(
  59598. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59599. {
  59600. front: {
  59601. height: math.unit(1.8, "m"),
  59602. weight: math.unit(120, "kg"),
  59603. name: "Front",
  59604. image: {
  59605. source: "./media/characters/chey/front.svg",
  59606. extra: 1359/1270,
  59607. bottom: 18/1377
  59608. }
  59609. },
  59610. arm: {
  59611. height: math.unit(2.05, "feet"),
  59612. name: "Arm",
  59613. image: {
  59614. source: "./media/characters/chey/arm.svg"
  59615. }
  59616. },
  59617. head: {
  59618. height: math.unit(1.89, "feet"),
  59619. name: "Head",
  59620. image: {
  59621. source: "./media/characters/chey/head.svg"
  59622. }
  59623. },
  59624. },
  59625. [
  59626. {
  59627. name: "Original Size",
  59628. height: math.unit(5, "cm")
  59629. },
  59630. {
  59631. name: "Incognito Size",
  59632. height: math.unit(2.4, "m")
  59633. },
  59634. {
  59635. name: "Home Size",
  59636. height: math.unit(200, "meters"),
  59637. default: true
  59638. },
  59639. {
  59640. name: "Mega",
  59641. height: math.unit(2, "km")
  59642. },
  59643. {
  59644. name: "Giga (Preferred Size)",
  59645. height: math.unit(2000, "km")
  59646. },
  59647. {
  59648. name: "Giga+",
  59649. height: math.unit(6000, "km")
  59650. },
  59651. {
  59652. name: "Terra",
  59653. height: math.unit(17000, "km")
  59654. },
  59655. {
  59656. name: "Terra+",
  59657. height: math.unit(75000, "km")
  59658. },
  59659. {
  59660. name: "Terra++",
  59661. height: math.unit(225000, "km")
  59662. },
  59663. ]
  59664. ))
  59665. characterMakers.push(() => makeCharacter(
  59666. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59667. {
  59668. side: {
  59669. height: math.unit(7.8, "meters"),
  59670. name: "Side",
  59671. image: {
  59672. source: "./media/characters/ragnarok/side.svg",
  59673. extra: 725/621,
  59674. bottom: 72/797
  59675. }
  59676. },
  59677. },
  59678. [
  59679. {
  59680. name: "Normal",
  59681. height: math.unit(7.8, "meters"),
  59682. default: true
  59683. },
  59684. ]
  59685. ))
  59686. characterMakers.push(() => makeCharacter(
  59687. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59688. {
  59689. hyena_front: {
  59690. height: math.unit(2.1, "meters"),
  59691. weight: math.unit(110, "kg"),
  59692. name: "Front",
  59693. image: {
  59694. source: "./media/characters/nima/hyena-front.svg",
  59695. extra: 1904/1796,
  59696. bottom: 67/1971
  59697. },
  59698. form: "hyena",
  59699. },
  59700. hyena_back: {
  59701. height: math.unit(2.1, "meters"),
  59702. weight: math.unit(110, "kg"),
  59703. name: "Back",
  59704. image: {
  59705. source: "./media/characters/nima/hyena-back.svg",
  59706. extra: 1964/1884,
  59707. bottom: 35/1999
  59708. },
  59709. form: "hyena",
  59710. },
  59711. shark_front: {
  59712. height: math.unit(1.95, "meters"),
  59713. weight: math.unit(110, "kg"),
  59714. name: "Front",
  59715. image: {
  59716. source: "./media/characters/nima/shark-front.svg",
  59717. extra: 2238/2013,
  59718. bottom: 0/223
  59719. },
  59720. form: "shark",
  59721. },
  59722. paw: {
  59723. height: math.unit(1, "feet"),
  59724. name: "Paw",
  59725. image: {
  59726. source: "./media/characters/nima/paw.svg"
  59727. }
  59728. },
  59729. circlet: {
  59730. height: math.unit(0.3, "feet"),
  59731. name: "Circlet",
  59732. image: {
  59733. source: "./media/characters/nima/circlet.svg"
  59734. }
  59735. },
  59736. necklace: {
  59737. height: math.unit(1.2, "feet"),
  59738. name: "Necklace",
  59739. image: {
  59740. source: "./media/characters/nima/necklace.svg"
  59741. }
  59742. },
  59743. bracelet: {
  59744. height: math.unit(0.51, "feet"),
  59745. name: "Bracelet",
  59746. image: {
  59747. source: "./media/characters/nima/bracelet.svg"
  59748. }
  59749. },
  59750. armband: {
  59751. height: math.unit(1.3, "feet"),
  59752. name: "Armband",
  59753. image: {
  59754. source: "./media/characters/nima/armband.svg"
  59755. }
  59756. },
  59757. },
  59758. [
  59759. {
  59760. name: "Incognito",
  59761. height: math.unit(2.1, "meters"),
  59762. allForms: true
  59763. },
  59764. {
  59765. name: "Small Macro",
  59766. height: math.unit(50, "meters"),
  59767. allForms: true
  59768. },
  59769. {
  59770. name: "Macro",
  59771. height: math.unit(200, "meters"),
  59772. allForms: true
  59773. },
  59774. {
  59775. name: "Mega",
  59776. height: math.unit(2.5, "km"),
  59777. allForms: true
  59778. },
  59779. {
  59780. name: "Mega+",
  59781. height: math.unit(30, "km"),
  59782. allForms: true
  59783. },
  59784. {
  59785. name: "Giga (Home Size)",
  59786. height: math.unit(400, "km"),
  59787. allForms: true,
  59788. default: true
  59789. },
  59790. {
  59791. name: "Giga+",
  59792. height: math.unit(2500, "km"),
  59793. allForms: true
  59794. },
  59795. {
  59796. name: "Giga++",
  59797. height: math.unit(8000, "km"),
  59798. allForms: true
  59799. },
  59800. {
  59801. name: "Terra",
  59802. height: math.unit(20000, "km"),
  59803. allForms: true
  59804. },
  59805. {
  59806. name: "Terra+",
  59807. height: math.unit(70000, "km"),
  59808. allForms: true
  59809. },
  59810. {
  59811. name: "Terra++",
  59812. height: math.unit(600000, "km"),
  59813. allForms: true
  59814. },
  59815. {
  59816. name: "Galactic",
  59817. height: math.unit(40, "galaxies"),
  59818. allForms: true
  59819. },
  59820. {
  59821. name: "Universal",
  59822. height: math.unit(40, "universes"),
  59823. allForms: true
  59824. },
  59825. ],
  59826. {
  59827. "hyena": {
  59828. name: "Hyena",
  59829. default: true
  59830. },
  59831. "shark": {
  59832. name: "Shark",
  59833. },
  59834. }
  59835. ))
  59836. characterMakers.push(() => makeCharacter(
  59837. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59838. {
  59839. anthro_front: {
  59840. height: math.unit(1.5, "meters"),
  59841. name: "Front",
  59842. image: {
  59843. source: "./media/characters/adelaide/anthro-front.svg",
  59844. extra: 860/783,
  59845. bottom: 60/920
  59846. },
  59847. form: "anthro",
  59848. default: true
  59849. },
  59850. hand: {
  59851. height: math.unit(0.65, "feet"),
  59852. name: "Hand",
  59853. image: {
  59854. source: "./media/characters/adelaide/hand.svg"
  59855. },
  59856. form: "anthro"
  59857. },
  59858. foot: {
  59859. height: math.unit(1.38 * 259 / 314, "feet"),
  59860. name: "Foot",
  59861. image: {
  59862. source: "./media/characters/adelaide/foot.svg",
  59863. extra: 259/259,
  59864. bottom: 55/314
  59865. },
  59866. form: "anthro"
  59867. },
  59868. feather: {
  59869. height: math.unit(0.85, "feet"),
  59870. name: "Feather",
  59871. image: {
  59872. source: "./media/characters/adelaide/feather.svg"
  59873. },
  59874. form: "anthro"
  59875. },
  59876. feral_side: {
  59877. height: math.unit(1, "meters"),
  59878. name: "Side",
  59879. image: {
  59880. source: "./media/characters/adelaide/feral-side.svg",
  59881. extra: 550/467,
  59882. bottom: 37/587
  59883. },
  59884. form: "feral",
  59885. default: true
  59886. },
  59887. feral_hand: {
  59888. height: math.unit(0.58, "feet"),
  59889. name: "Hand",
  59890. image: {
  59891. source: "./media/characters/adelaide/hand.svg"
  59892. },
  59893. form: "feral"
  59894. },
  59895. feral_foot: {
  59896. height: math.unit(1.2 * 259 / 314, "feet"),
  59897. name: "Foot",
  59898. image: {
  59899. source: "./media/characters/adelaide/foot.svg",
  59900. extra: 259/259,
  59901. bottom: 55/314
  59902. },
  59903. form: "feral"
  59904. },
  59905. feral_feather: {
  59906. height: math.unit(0.63, "feet"),
  59907. name: "Feather",
  59908. image: {
  59909. source: "./media/characters/adelaide/feather.svg"
  59910. },
  59911. form: "feral"
  59912. },
  59913. },
  59914. [
  59915. {
  59916. name: "Normal",
  59917. height: math.unit(1.5, "meters"),
  59918. form: "anthro",
  59919. default: true
  59920. },
  59921. {
  59922. name: "Normal",
  59923. height: math.unit(1, "meters"),
  59924. form: "feral",
  59925. default: true
  59926. },
  59927. ],
  59928. {
  59929. "anthro": {
  59930. name: "Anthro",
  59931. default: true
  59932. },
  59933. "feral": {
  59934. name: "Feral",
  59935. },
  59936. }
  59937. ))
  59938. characterMakers.push(() => makeCharacter(
  59939. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59940. {
  59941. front: {
  59942. height: math.unit(2.5, "meters"),
  59943. name: "Front",
  59944. image: {
  59945. source: "./media/characters/goa/front.svg",
  59946. extra: 1109/1013,
  59947. bottom: 150/1259
  59948. }
  59949. },
  59950. },
  59951. [
  59952. {
  59953. name: "Normal",
  59954. height: math.unit(2.5, "meters"),
  59955. default: true
  59956. },
  59957. ]
  59958. ))
  59959. characterMakers.push(() => makeCharacter(
  59960. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59961. {
  59962. front: {
  59963. height: math.unit(2, "meters"),
  59964. weight: math.unit(100, "kg"),
  59965. name: "Front",
  59966. image: {
  59967. source: "./media/characters/kiki-weavile/front.svg",
  59968. extra: 357/332,
  59969. bottom: 60/417
  59970. }
  59971. },
  59972. },
  59973. [
  59974. {
  59975. name: "Normal",
  59976. height: math.unit(2, "meters"),
  59977. default: true
  59978. },
  59979. ]
  59980. ))
  59981. characterMakers.push(() => makeCharacter(
  59982. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59983. {
  59984. side: {
  59985. height: math.unit(1.6, "meters"),
  59986. name: "Side",
  59987. image: {
  59988. source: "./media/characters/liza/side.svg",
  59989. extra: 943/915,
  59990. bottom: 72/1015
  59991. }
  59992. },
  59993. },
  59994. [
  59995. {
  59996. name: "Normal",
  59997. height: math.unit(1.6, "meters"),
  59998. default: true
  59999. },
  60000. ]
  60001. ))
  60002. characterMakers.push(() => makeCharacter(
  60003. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60004. {
  60005. side: {
  60006. height: math.unit(2.5, "meters"),
  60007. preyCapacity: math.unit(1, "people"),
  60008. name: "Side",
  60009. image: {
  60010. source: "./media/characters/persephone-sweetbreath/side.svg",
  60011. extra: 796/700,
  60012. bottom: 44/840
  60013. }
  60014. },
  60015. sideVore: {
  60016. height: math.unit(2.5, "meters"),
  60017. preyCapacity: math.unit(1, "people"),
  60018. name: "Side (Full)",
  60019. image: {
  60020. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60021. extra: 796/700,
  60022. bottom: 44/840
  60023. }
  60024. },
  60025. },
  60026. [
  60027. {
  60028. name: "Normal",
  60029. height: math.unit(2.5, "meters"),
  60030. default: true
  60031. },
  60032. ]
  60033. ))
  60034. characterMakers.push(() => makeCharacter(
  60035. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60036. {
  60037. front: {
  60038. height: math.unit(32, "meters"),
  60039. name: "Front",
  60040. image: {
  60041. source: "./media/characters/pierce/front.svg",
  60042. extra: 1695/1475,
  60043. bottom: 185/1880
  60044. }
  60045. },
  60046. side: {
  60047. height: math.unit(32, "meters"),
  60048. name: "Side",
  60049. image: {
  60050. source: "./media/characters/pierce/side.svg",
  60051. extra: 974/859,
  60052. bottom: 43/1017
  60053. }
  60054. },
  60055. frontWingless: {
  60056. height: math.unit(32, "meters"),
  60057. name: "Front (Wingless)",
  60058. image: {
  60059. source: "./media/characters/pierce/front-wingless.svg",
  60060. extra: 1695/1475,
  60061. bottom: 185/1880
  60062. }
  60063. },
  60064. sideWingless: {
  60065. height: math.unit(32, "meters"),
  60066. name: "Side (Wingless)",
  60067. image: {
  60068. source: "./media/characters/pierce/side-wingless.svg",
  60069. extra: 974/859,
  60070. bottom: 43/1017
  60071. }
  60072. },
  60073. maw: {
  60074. height: math.unit(19.3, "meters"),
  60075. name: "Maw",
  60076. image: {
  60077. source: "./media/characters/pierce/maw.svg"
  60078. }
  60079. },
  60080. },
  60081. [
  60082. {
  60083. name: "Small",
  60084. height: math.unit(8.5, "meters")
  60085. },
  60086. {
  60087. name: "Normal",
  60088. height: math.unit(32, "meters"),
  60089. default: true
  60090. },
  60091. ]
  60092. ))
  60093. characterMakers.push(() => makeCharacter(
  60094. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60095. {
  60096. front: {
  60097. height: math.unit(2.3, "meters"),
  60098. weight: math.unit(165, "kg"),
  60099. name: "Front",
  60100. image: {
  60101. source: "./media/characters/shira/front.svg",
  60102. extra: 924/919,
  60103. bottom: 17/941
  60104. },
  60105. form: "cobra",
  60106. default: true
  60107. },
  60108. back: {
  60109. height: math.unit(2.3, "meters"),
  60110. weight: math.unit(165, "kg"),
  60111. name: "Back",
  60112. image: {
  60113. source: "./media/characters/shira/back.svg",
  60114. extra: 928/922,
  60115. bottom: 18/946
  60116. },
  60117. form: "cobra"
  60118. },
  60119. frontLewd: {
  60120. height: math.unit(2.3, "meters"),
  60121. weight: math.unit(165, "kg"),
  60122. name: "Front (Lewd)",
  60123. image: {
  60124. source: "./media/characters/shira/front-lewd.svg",
  60125. extra: 924/919,
  60126. bottom: 17/941
  60127. },
  60128. form: "cobra"
  60129. },
  60130. backLewd: {
  60131. height: math.unit(2.3, "meters"),
  60132. weight: math.unit(165, "kg"),
  60133. name: "Back (Lewd)",
  60134. image: {
  60135. source: "./media/characters/shira/back-lewd.svg",
  60136. extra: 928/922,
  60137. bottom: 18/946
  60138. },
  60139. form: "cobra"
  60140. },
  60141. maw: {
  60142. height: math.unit(1.14, "feet"),
  60143. name: "Maw",
  60144. image: {
  60145. source: "./media/characters/shira/maw.svg"
  60146. },
  60147. form: "cobra"
  60148. },
  60149. magma_front: {
  60150. height: math.unit(2.3, "meters"),
  60151. weight: math.unit(165, "kg"),
  60152. name: "Front",
  60153. image: {
  60154. source: "./media/characters/shira/magma-front.svg",
  60155. extra: 1870/1693,
  60156. bottom: 24/1894
  60157. },
  60158. form: "magma",
  60159. },
  60160. magma_back: {
  60161. height: math.unit(2.3, "meters"),
  60162. weight: math.unit(165, "kg"),
  60163. name: "Back",
  60164. image: {
  60165. source: "./media/characters/shira/magma-back.svg",
  60166. extra: 1918/1756,
  60167. bottom: 46/1964
  60168. },
  60169. form: "magma",
  60170. },
  60171. },
  60172. [
  60173. {
  60174. name: "Incognito",
  60175. height: math.unit(2.3, "meters"),
  60176. allForms: true
  60177. },
  60178. {
  60179. name: "Home Size",
  60180. height: math.unit(150, "meters"),
  60181. default: true,
  60182. allForms: true
  60183. },
  60184. {
  60185. name: "Macro",
  60186. height: math.unit(2, "km"),
  60187. allForms: true
  60188. },
  60189. {
  60190. name: "Mega",
  60191. height: math.unit(30, "km"),
  60192. allForms: true
  60193. },
  60194. {
  60195. name: "Giga",
  60196. height: math.unit(450, "km"),
  60197. allForms: true
  60198. },
  60199. {
  60200. name: "Giga+",
  60201. height: math.unit(3000, "km"),
  60202. allForms: true
  60203. },
  60204. {
  60205. name: "Giga++",
  60206. height: math.unit(6000, "km"),
  60207. allForms: true
  60208. },
  60209. {
  60210. name: "Terra",
  60211. height: math.unit(80000, "km"),
  60212. allForms: true
  60213. },
  60214. {
  60215. name: "Terra+",
  60216. height: math.unit(350000, "km"),
  60217. allForms: true
  60218. },
  60219. {
  60220. name: "Solar",
  60221. height: math.unit(1e6, "km"),
  60222. allForms: true
  60223. },
  60224. ],
  60225. {
  60226. "cobra": {
  60227. name: "Cobra",
  60228. default: true
  60229. },
  60230. "magma": {
  60231. name: "Magma Dragon",
  60232. },
  60233. }
  60234. ))
  60235. characterMakers.push(() => makeCharacter(
  60236. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60237. {
  60238. front: {
  60239. height: math.unit(2, "meters"),
  60240. weight: math.unit(160, "kg"),
  60241. name: "Front",
  60242. image: {
  60243. source: "./media/characters/daxerios/front.svg",
  60244. extra: 1334/1277,
  60245. bottom: 45/1379
  60246. }
  60247. },
  60248. frontLewd: {
  60249. height: math.unit(2, "meters"),
  60250. weight: math.unit(160, "kg"),
  60251. name: "Front (Lewd)",
  60252. image: {
  60253. source: "./media/characters/daxerios/front-lewd.svg",
  60254. extra: 1334/1277,
  60255. bottom: 45/1379
  60256. }
  60257. },
  60258. dick: {
  60259. height: math.unit(2.35, "feet"),
  60260. name: "Dick",
  60261. image: {
  60262. source: "./media/characters/daxerios/dick.svg"
  60263. }
  60264. },
  60265. },
  60266. [
  60267. {
  60268. name: "\"Small\"",
  60269. height: math.unit(5, "meters")
  60270. },
  60271. {
  60272. name: "Original Size",
  60273. height: math.unit(500, "meters"),
  60274. default: true
  60275. },
  60276. {
  60277. name: "Mega",
  60278. height: math.unit(2, "km")
  60279. },
  60280. {
  60281. name: "Mega+",
  60282. height: math.unit(35, "km")
  60283. },
  60284. {
  60285. name: "Giga",
  60286. height: math.unit(250, "km")
  60287. },
  60288. {
  60289. name: "Giga+",
  60290. height: math.unit(3000, "km")
  60291. },
  60292. {
  60293. name: "Terra",
  60294. height: math.unit(25000, "km")
  60295. },
  60296. {
  60297. name: "Terra+",
  60298. height: math.unit(300000, "km")
  60299. },
  60300. {
  60301. name: "Solar",
  60302. height: math.unit(1e6, "km")
  60303. },
  60304. ]
  60305. ))
  60306. characterMakers.push(() => makeCharacter(
  60307. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60308. {
  60309. front: {
  60310. height: math.unit(8 + 4/12, "feet"),
  60311. weight: math.unit(464, "lb"),
  60312. name: "Front",
  60313. image: {
  60314. source: "./media/characters/caveat/front.svg",
  60315. extra: 1861/1678,
  60316. bottom: 40/1901
  60317. }
  60318. },
  60319. },
  60320. [
  60321. {
  60322. name: "Normal",
  60323. height: math.unit(8 + 4/12, "feet"),
  60324. default: true
  60325. },
  60326. ]
  60327. ))
  60328. characterMakers.push(() => makeCharacter(
  60329. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60330. {
  60331. front: {
  60332. height: math.unit(12, "feet"),
  60333. weight: math.unit(1800, "lb"),
  60334. name: "Front",
  60335. image: {
  60336. source: "./media/characters/centbair/front.svg",
  60337. extra: 781/663,
  60338. bottom: 25/806
  60339. }
  60340. },
  60341. frontNsfw: {
  60342. height: math.unit(12, "feet"),
  60343. weight: math.unit(1800, "lb"),
  60344. name: "Front (NSFW)",
  60345. image: {
  60346. source: "./media/characters/centbair/front-nsfw.svg",
  60347. extra: 781/663,
  60348. bottom: 25/806
  60349. }
  60350. },
  60351. back: {
  60352. height: math.unit(12, "feet"),
  60353. weight: math.unit(1800, "lb"),
  60354. name: "Back",
  60355. image: {
  60356. source: "./media/characters/centbair/back.svg",
  60357. extra: 808/761,
  60358. bottom: 19/827
  60359. }
  60360. },
  60361. dick: {
  60362. height: math.unit(6.5, "feet"),
  60363. name: "Dick",
  60364. image: {
  60365. source: "./media/characters/centbair/dick.svg"
  60366. }
  60367. },
  60368. slit: {
  60369. height: math.unit(3.25, "feet"),
  60370. name: "Slit",
  60371. image: {
  60372. source: "./media/characters/centbair/slit.svg"
  60373. }
  60374. },
  60375. },
  60376. [
  60377. {
  60378. name: "Normal",
  60379. height: math.unit(12, "feet"),
  60380. default: true
  60381. },
  60382. ]
  60383. ))
  60384. characterMakers.push(() => makeCharacter(
  60385. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60386. {
  60387. front: {
  60388. height: math.unit(5 + 7/12, "feet"),
  60389. name: "Front",
  60390. image: {
  60391. source: "./media/characters/andy/front.svg",
  60392. extra: 634/588,
  60393. bottom: 36/670
  60394. },
  60395. extraAttributes: {
  60396. "pawLength": {
  60397. name: "Paw Length",
  60398. power: 1,
  60399. type: "length",
  60400. base: math.unit(1, "feet")
  60401. },
  60402. }
  60403. },
  60404. side: {
  60405. height: math.unit(5 + 7/12, "feet"),
  60406. name: "Side",
  60407. image: {
  60408. source: "./media/characters/andy/side.svg",
  60409. extra: 641/596,
  60410. bottom: 34/675
  60411. },
  60412. extraAttributes: {
  60413. "pawLength": {
  60414. name: "Paw Length",
  60415. power: 1,
  60416. type: "length",
  60417. base: math.unit(1, "feet")
  60418. },
  60419. }
  60420. },
  60421. back: {
  60422. height: math.unit(5 + 7/12, "feet"),
  60423. name: "Back",
  60424. image: {
  60425. source: "./media/characters/andy/back.svg",
  60426. extra: 618/583,
  60427. bottom: 39/657
  60428. },
  60429. extraAttributes: {
  60430. "pawLength": {
  60431. name: "Paw Length",
  60432. power: 1,
  60433. type: "length",
  60434. base: math.unit(1, "feet")
  60435. },
  60436. }
  60437. },
  60438. paw: {
  60439. height: math.unit(1.13, "feet"),
  60440. name: "Paw",
  60441. image: {
  60442. source: "./media/characters/andy/paw.svg"
  60443. }
  60444. },
  60445. },
  60446. [
  60447. {
  60448. name: "Micro",
  60449. height: math.unit(4, "inches")
  60450. },
  60451. {
  60452. name: "Normal",
  60453. height: math.unit(5 + 7/12, "feet"),
  60454. default: true
  60455. },
  60456. {
  60457. name: "Macro",
  60458. height: math.unit(390.42, "feet")
  60459. },
  60460. ]
  60461. ))
  60462. characterMakers.push(() => makeCharacter(
  60463. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60464. {
  60465. front: {
  60466. height: math.unit(7, "feet"),
  60467. weight: math.unit(250, "lb"),
  60468. name: "Front",
  60469. image: {
  60470. source: "./media/characters/vix-titan/front.svg",
  60471. extra: 460/428,
  60472. bottom: 15/475
  60473. },
  60474. extraAttributes: {
  60475. "pawWidth": {
  60476. name: "Paw Width",
  60477. power: 1,
  60478. type: "length",
  60479. base: math.unit(0.75, "feet")
  60480. },
  60481. }
  60482. },
  60483. },
  60484. [
  60485. {
  60486. name: "Normal",
  60487. height: math.unit(7, "feet"),
  60488. default: true
  60489. },
  60490. {
  60491. name: "Giant",
  60492. height: math.unit(1500, "feet")
  60493. },
  60494. {
  60495. name: "Mega",
  60496. height: math.unit(10, "miles")
  60497. },
  60498. {
  60499. name: "Giga",
  60500. height: math.unit(150, "miles")
  60501. },
  60502. {
  60503. name: "Tera",
  60504. height: math.unit(144000, "miles")
  60505. },
  60506. ]
  60507. ))
  60508. characterMakers.push(() => makeCharacter(
  60509. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60510. {
  60511. front: {
  60512. height: math.unit(6 + 2/12, "feet"),
  60513. name: "Front",
  60514. image: {
  60515. source: "./media/characters/reiku/front.svg",
  60516. extra: 1910/1757,
  60517. bottom: 103/2013
  60518. },
  60519. extraAttributes: {
  60520. "thighThickness": {
  60521. name: "Thigh Thickness",
  60522. power: 1,
  60523. type: "length",
  60524. base: math.unit(1.12, "feet")
  60525. },
  60526. "assThickness": {
  60527. name: "Ass Thickness",
  60528. power: 1,
  60529. type: "length",
  60530. base: math.unit(1.12*2, "feet")
  60531. },
  60532. }
  60533. },
  60534. side: {
  60535. height: math.unit(6 + 2/12, "feet"),
  60536. name: "Side",
  60537. image: {
  60538. source: "./media/characters/reiku/side.svg",
  60539. extra: 1846/1748,
  60540. bottom: 99/1945
  60541. },
  60542. extraAttributes: {
  60543. "thighThickness": {
  60544. name: "Thigh Thickness",
  60545. power: 1,
  60546. type: "length",
  60547. base: math.unit(1.12, "feet")
  60548. },
  60549. "assThickness": {
  60550. name: "Ass Thickness",
  60551. power: 1,
  60552. type: "length",
  60553. base: math.unit(1.12*2, "feet")
  60554. },
  60555. }
  60556. },
  60557. back: {
  60558. height: math.unit(6 + 2/12, "feet"),
  60559. name: "Back",
  60560. image: {
  60561. source: "./media/characters/reiku/back.svg",
  60562. extra: 1941/1786,
  60563. bottom: 34/1975
  60564. },
  60565. extraAttributes: {
  60566. "thighThickness": {
  60567. name: "Thigh Thickness",
  60568. power: 1,
  60569. type: "length",
  60570. base: math.unit(1.12, "feet")
  60571. },
  60572. "assThickness": {
  60573. name: "Ass Thickness",
  60574. power: 1,
  60575. type: "length",
  60576. base: math.unit(1.12*2, "feet")
  60577. },
  60578. }
  60579. },
  60580. head: {
  60581. height: math.unit(1.8, "feet"),
  60582. name: "Head",
  60583. image: {
  60584. source: "./media/characters/reiku/head.svg"
  60585. }
  60586. },
  60587. tailTop: {
  60588. height: math.unit(8.4, "feet"),
  60589. name: "Tail (Top)",
  60590. image: {
  60591. source: "./media/characters/reiku/tail-top.svg"
  60592. }
  60593. },
  60594. tailBottom: {
  60595. height: math.unit(8.4, "feet"),
  60596. name: "Tail (Bottom)",
  60597. image: {
  60598. source: "./media/characters/reiku/tail-bottom.svg"
  60599. }
  60600. },
  60601. foot: {
  60602. height: math.unit(2.6, "feet"),
  60603. name: "Foot",
  60604. image: {
  60605. source: "./media/characters/reiku/foot.svg"
  60606. }
  60607. },
  60608. footCurled: {
  60609. height: math.unit(2.3, "feet"),
  60610. name: "Foot (Curled)",
  60611. image: {
  60612. source: "./media/characters/reiku/foot-curled.svg"
  60613. }
  60614. },
  60615. footSide: {
  60616. height: math.unit(1.26, "feet"),
  60617. name: "Foot (Side)",
  60618. image: {
  60619. source: "./media/characters/reiku/foot-side.svg"
  60620. }
  60621. },
  60622. },
  60623. [
  60624. {
  60625. name: "Normal",
  60626. height: math.unit(6 + 2/12, "feet"),
  60627. default: true
  60628. },
  60629. ]
  60630. ))
  60631. characterMakers.push(() => makeCharacter(
  60632. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60633. {
  60634. front: {
  60635. height: math.unit(7, "feet"),
  60636. weight: math.unit(500, "kg"),
  60637. name: "Front",
  60638. image: {
  60639. source: "./media/characters/cialda/front.svg",
  60640. extra: 912/745,
  60641. bottom: 55/967
  60642. }
  60643. },
  60644. },
  60645. [
  60646. {
  60647. name: "Normal",
  60648. height: math.unit(7, "feet"),
  60649. default: true
  60650. },
  60651. ]
  60652. ))
  60653. characterMakers.push(() => makeCharacter(
  60654. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60655. {
  60656. side: {
  60657. height: math.unit(6, "feet"),
  60658. weight: math.unit(600, "lb"),
  60659. preyCapacity: math.unit(25, "liters"),
  60660. name: "Side",
  60661. image: {
  60662. source: "./media/characters/darkkin/side.svg",
  60663. extra: 1597/1447,
  60664. bottom: 101/1698
  60665. }
  60666. },
  60667. },
  60668. [
  60669. {
  60670. name: "Canon Height",
  60671. height: math.unit(568, "feet"),
  60672. default: true
  60673. },
  60674. ]
  60675. ))
  60676. characterMakers.push(() => makeCharacter(
  60677. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60678. {
  60679. front: {
  60680. height: math.unit(6, "feet"),
  60681. weight: math.unit(1500, "lb"),
  60682. preyCapacity: math.unit(3, "people"),
  60683. name: "Front",
  60684. image: {
  60685. source: "./media/characters/livnia/front.svg",
  60686. extra: 934/932,
  60687. bottom: 83/1017
  60688. }
  60689. },
  60690. back: {
  60691. height: math.unit(6, "feet"),
  60692. weight: math.unit(1500, "lb"),
  60693. preyCapacity: math.unit(3, "people"),
  60694. name: "Back",
  60695. image: {
  60696. source: "./media/characters/livnia/back.svg",
  60697. extra: 916/915,
  60698. bottom: 58/974
  60699. }
  60700. },
  60701. head: {
  60702. height: math.unit(1.53, "feet"),
  60703. name: "Head",
  60704. image: {
  60705. source: "./media/characters/livnia/head.svg"
  60706. }
  60707. },
  60708. maw: {
  60709. height: math.unit(0.78, "feet"),
  60710. name: "Maw",
  60711. image: {
  60712. source: "./media/characters/livnia/maw.svg"
  60713. }
  60714. },
  60715. genitals: {
  60716. height: math.unit(0.35, "feet"),
  60717. name: "Genitals",
  60718. image: {
  60719. source: "./media/characters/livnia/genitals.svg"
  60720. }
  60721. },
  60722. },
  60723. [
  60724. {
  60725. name: "Normal",
  60726. height: math.unit(1000, "feet"),
  60727. default: true
  60728. },
  60729. ]
  60730. ))
  60731. characterMakers.push(() => makeCharacter(
  60732. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60733. {
  60734. front: {
  60735. height: math.unit(4, "feet"),
  60736. weight: math.unit(73, "lb"),
  60737. name: "Front",
  60738. image: {
  60739. source: "./media/characters/hayaku/front.svg",
  60740. extra: 1011/888,
  60741. bottom: 33/1044
  60742. }
  60743. },
  60744. back: {
  60745. height: math.unit(4, "feet"),
  60746. weight: math.unit(73, "lb"),
  60747. name: "Back",
  60748. image: {
  60749. source: "./media/characters/hayaku/back.svg",
  60750. extra: 1040/930,
  60751. bottom: 20/1060
  60752. }
  60753. },
  60754. },
  60755. [
  60756. {
  60757. name: "Normal",
  60758. height: math.unit(4, "feet"),
  60759. default: true
  60760. },
  60761. ]
  60762. ))
  60763. characterMakers.push(() => makeCharacter(
  60764. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60765. {
  60766. front: {
  60767. height: math.unit(6 + 7/12, "feet"),
  60768. weight: math.unit(300, "lb"),
  60769. name: "Front",
  60770. image: {
  60771. source: "./media/characters/athena-bryzant/front.svg",
  60772. extra: 870/835,
  60773. bottom: 33/903
  60774. }
  60775. },
  60776. back: {
  60777. height: math.unit(6 + 7/12, "feet"),
  60778. weight: math.unit(300, "lb"),
  60779. name: "Back",
  60780. image: {
  60781. source: "./media/characters/athena-bryzant/back.svg",
  60782. extra: 858/823,
  60783. bottom: 30/888
  60784. }
  60785. },
  60786. head: {
  60787. height: math.unit(2.38, "feet"),
  60788. name: "Head",
  60789. image: {
  60790. source: "./media/characters/athena-bryzant/head.svg"
  60791. }
  60792. },
  60793. wings: {
  60794. height: math.unit(2.85, "feet"),
  60795. name: "Wings",
  60796. image: {
  60797. source: "./media/characters/athena-bryzant/wings.svg"
  60798. }
  60799. },
  60800. },
  60801. [
  60802. {
  60803. name: "Normal",
  60804. height: math.unit(6 + 7/12, "feet"),
  60805. default: true
  60806. },
  60807. {
  60808. name: "Big",
  60809. height: math.unit(8, "feet")
  60810. },
  60811. {
  60812. name: "Very Big",
  60813. height: math.unit(11, "feet")
  60814. },
  60815. ]
  60816. ))
  60817. characterMakers.push(() => makeCharacter(
  60818. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60819. {
  60820. side: {
  60821. height: math.unit(3, "meters"),
  60822. weight: math.unit(7500, "kg"),
  60823. preyCapacity: math.unit(1e12, "people"),
  60824. name: "Side",
  60825. image: {
  60826. source: "./media/characters/zel-kesh/side.svg",
  60827. extra: 910/407,
  60828. bottom: 147/1057
  60829. }
  60830. },
  60831. },
  60832. [
  60833. {
  60834. name: "Normal",
  60835. height: math.unit(3, "meters"),
  60836. default: true
  60837. },
  60838. ]
  60839. ))
  60840. characterMakers.push(() => makeCharacter(
  60841. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60842. {
  60843. front: {
  60844. height: math.unit(2, "meters"),
  60845. weight: math.unit(95, "kg"),
  60846. name: "Front",
  60847. image: {
  60848. source: "./media/characters/kane-fox/front.svg",
  60849. extra: 945/888,
  60850. bottom: 27/972
  60851. }
  60852. },
  60853. back: {
  60854. height: math.unit(2, "meters"),
  60855. weight: math.unit(95, "kg"),
  60856. name: "Back",
  60857. image: {
  60858. source: "./media/characters/kane-fox/back.svg",
  60859. extra: 959/914,
  60860. bottom: 15/974
  60861. }
  60862. },
  60863. frontLewd: {
  60864. height: math.unit(2, "meters"),
  60865. weight: math.unit(95, "kg"),
  60866. name: "Front (Lewd)",
  60867. image: {
  60868. source: "./media/characters/kane-fox/front-lewd.svg",
  60869. extra: 945/888,
  60870. bottom: 27/972
  60871. }
  60872. },
  60873. },
  60874. [
  60875. {
  60876. name: "Home Size",
  60877. height: math.unit(2, "meters"),
  60878. default: true
  60879. },
  60880. {
  60881. name: "Macro",
  60882. height: math.unit(200, "meters")
  60883. },
  60884. {
  60885. name: "Small Mega",
  60886. height: math.unit(3, "km")
  60887. },
  60888. {
  60889. name: "Mega",
  60890. height: math.unit(50, "km")
  60891. },
  60892. {
  60893. name: "Giga",
  60894. height: math.unit(200, "km")
  60895. },
  60896. {
  60897. name: "Giga+",
  60898. height: math.unit(2500, "km")
  60899. },
  60900. {
  60901. name: "Terra",
  60902. height: math.unit(70000, "km")
  60903. },
  60904. {
  60905. name: "Terra+",
  60906. height: math.unit(150000, "km")
  60907. },
  60908. {
  60909. name: "Terra++",
  60910. height: math.unit(400000, "km")
  60911. },
  60912. ]
  60913. ))
  60914. characterMakers.push(() => makeCharacter(
  60915. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60916. {
  60917. otter_front: {
  60918. height: math.unit(1.8, "meters"),
  60919. weight: math.unit(90, "kg"),
  60920. name: "Front",
  60921. image: {
  60922. source: "./media/characters/ayranus/otter-front.svg",
  60923. extra: 468/452,
  60924. bottom: 43/511
  60925. },
  60926. form: "otter",
  60927. },
  60928. otter_frontLewd: {
  60929. height: math.unit(1.8, "meters"),
  60930. weight: math.unit(90, "kg"),
  60931. name: "Front (Lewd)",
  60932. image: {
  60933. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60934. extra: 468/452,
  60935. bottom: 43/511
  60936. },
  60937. form: "otter",
  60938. },
  60939. lionbat_front: {
  60940. height: math.unit(1.8, "meters"),
  60941. weight: math.unit(90, "kg"),
  60942. name: "Front (Lewd)",
  60943. image: {
  60944. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60945. extra: 797/740,
  60946. bottom: 78/875
  60947. },
  60948. form: "lionbat",
  60949. },
  60950. paw: {
  60951. height: math.unit(1.5, "feet"),
  60952. name: "Paw",
  60953. image: {
  60954. source: "./media/characters/ayranus/paw.svg"
  60955. },
  60956. },
  60957. },
  60958. [
  60959. {
  60960. name: "Incognito",
  60961. height: math.unit(1.8, "meters"),
  60962. allForms: true
  60963. },
  60964. {
  60965. name: "Macro",
  60966. height: math.unit(60, "meters"),
  60967. allForms: true
  60968. },
  60969. {
  60970. name: "Macro+",
  60971. height: math.unit(200, "meters"),
  60972. allForms: true
  60973. },
  60974. {
  60975. name: "Mega",
  60976. height: math.unit(35, "km"),
  60977. allForms: true
  60978. },
  60979. {
  60980. name: "Giga",
  60981. height: math.unit(220, "km"),
  60982. allForms: true
  60983. },
  60984. {
  60985. name: "Giga+",
  60986. height: math.unit(1500, "km"),
  60987. allForms: true
  60988. },
  60989. {
  60990. name: "Terra",
  60991. height: math.unit(13000, "km"),
  60992. allForms: true
  60993. },
  60994. {
  60995. name: "Terra+",
  60996. height: math.unit(500000, "km"),
  60997. allForms: true
  60998. },
  60999. {
  61000. name: "Galactic",
  61001. height: math.unit(486080, "parsecs"),
  61002. default: true,
  61003. allForms: true
  61004. },
  61005. ],
  61006. {
  61007. "otter": {
  61008. name: "Otter",
  61009. default: true
  61010. },
  61011. "lionbat": {
  61012. name: "Lionbat",
  61013. },
  61014. }
  61015. ))
  61016. characterMakers.push(() => makeCharacter(
  61017. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61018. {
  61019. front: {
  61020. height: math.unit(7 + 4/12, "feet"),
  61021. weight: math.unit(400, "lb"),
  61022. name: "Front",
  61023. image: {
  61024. source: "./media/characters/proxy/front.svg",
  61025. extra: 1605/1542,
  61026. bottom: 55/1660
  61027. }
  61028. },
  61029. side: {
  61030. height: math.unit(7 + 4/12, "feet"),
  61031. weight: math.unit(400, "lb"),
  61032. name: "Side",
  61033. image: {
  61034. source: "./media/characters/proxy/side.svg",
  61035. extra: 794/759,
  61036. bottom: 6/800
  61037. }
  61038. },
  61039. hand: {
  61040. height: math.unit(1.54, "feet"),
  61041. name: "Hand",
  61042. image: {
  61043. source: "./media/characters/proxy/hand.svg"
  61044. }
  61045. },
  61046. paw: {
  61047. height: math.unit(1.53, "feet"),
  61048. name: "Paw",
  61049. image: {
  61050. source: "./media/characters/proxy/paw.svg"
  61051. }
  61052. },
  61053. maw: {
  61054. height: math.unit(1.9, "feet"),
  61055. name: "Maw",
  61056. image: {
  61057. source: "./media/characters/proxy/maw.svg"
  61058. }
  61059. },
  61060. },
  61061. [
  61062. {
  61063. name: "Normal",
  61064. height: math.unit(7 + 4/12, "feet"),
  61065. default: true
  61066. },
  61067. ]
  61068. ))
  61069. characterMakers.push(() => makeCharacter(
  61070. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61071. {
  61072. front: {
  61073. height: math.unit(4, "meters"),
  61074. name: "Front",
  61075. image: {
  61076. source: "./media/characters/crocozilla/front.svg",
  61077. extra: 1790/1742,
  61078. bottom: 78/1868
  61079. }
  61080. },
  61081. },
  61082. [
  61083. {
  61084. name: "Normal",
  61085. height: math.unit(4, "meters"),
  61086. default: true
  61087. },
  61088. ]
  61089. ))
  61090. characterMakers.push(() => makeCharacter(
  61091. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61092. {
  61093. front: {
  61094. height: math.unit(1.8, "meters"),
  61095. weight: math.unit(120, "kg"),
  61096. name: "Front",
  61097. image: {
  61098. source: "./media/characters/kurz/front.svg",
  61099. extra: 1960/1824,
  61100. bottom: 41/2001
  61101. }
  61102. },
  61103. back: {
  61104. height: math.unit(1.8, "meters"),
  61105. weight: math.unit(120, "kg"),
  61106. name: "Back",
  61107. image: {
  61108. source: "./media/characters/kurz/back.svg",
  61109. extra: 1906/1787,
  61110. bottom: 60/1966
  61111. }
  61112. },
  61113. frontLewd: {
  61114. height: math.unit(1.8, "meters"),
  61115. weight: math.unit(120, "kg"),
  61116. name: "Front (Lewd)",
  61117. image: {
  61118. source: "./media/characters/kurz/front-lewd.svg",
  61119. extra: 1960/1824,
  61120. bottom: 41/2001
  61121. }
  61122. },
  61123. maw: {
  61124. height: math.unit(0.69, "meters"),
  61125. name: "Maw",
  61126. image: {
  61127. source: "./media/characters/kurz/maw.svg"
  61128. }
  61129. },
  61130. },
  61131. [
  61132. {
  61133. name: "Original Size",
  61134. height: math.unit(1.8, "meters")
  61135. },
  61136. {
  61137. name: "Incognito Size",
  61138. height: math.unit(2.4, "meters"),
  61139. default: true
  61140. },
  61141. {
  61142. name: "Macro",
  61143. height: math.unit(30, "meters")
  61144. },
  61145. {
  61146. name: "Macro+",
  61147. height: math.unit(250, "meters")
  61148. },
  61149. {
  61150. name: "Mega",
  61151. height: math.unit(2, "km")
  61152. },
  61153. {
  61154. name: "Mega+",
  61155. height: math.unit(35, "km")
  61156. },
  61157. {
  61158. name: "Mega++",
  61159. height: math.unit(75, "km")
  61160. },
  61161. {
  61162. name: "Giga",
  61163. height: math.unit(250, "km")
  61164. },
  61165. {
  61166. name: "Terra",
  61167. height: math.unit(15000, "km")
  61168. },
  61169. {
  61170. name: "Terra+",
  61171. height: math.unit(2250000, "km")
  61172. },
  61173. ]
  61174. ))
  61175. characterMakers.push(() => makeCharacter(
  61176. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61177. {
  61178. front: {
  61179. height: math.unit(16 + 3/12, "feet"),
  61180. weight: math.unit(3575, "lb"),
  61181. name: "Front",
  61182. image: {
  61183. source: "./media/characters/nikita/front.svg",
  61184. extra: 1064/955,
  61185. bottom: 47/1111
  61186. }
  61187. },
  61188. },
  61189. [
  61190. {
  61191. name: "Normal",
  61192. height: math.unit(16 + 3/12, "feet"),
  61193. default: true
  61194. },
  61195. {
  61196. name: "Big",
  61197. height: math.unit(21, "feet")
  61198. },
  61199. {
  61200. name: "Biggest",
  61201. height: math.unit(50, "feet")
  61202. },
  61203. ]
  61204. ))
  61205. characterMakers.push(() => makeCharacter(
  61206. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61207. {
  61208. front: {
  61209. height: math.unit(1.92, "m"),
  61210. weight: math.unit(76, "kg"),
  61211. name: "Front",
  61212. image: {
  61213. source: "./media/characters/kyara/front.svg",
  61214. extra: 1550/1438,
  61215. bottom: 139/1689
  61216. }
  61217. },
  61218. back: {
  61219. height: math.unit(1.92, "m"),
  61220. weight: math.unit(76, "kg"),
  61221. name: "Back",
  61222. image: {
  61223. source: "./media/characters/kyara/back.svg",
  61224. extra: 1523/1427,
  61225. bottom: 83/1606
  61226. }
  61227. },
  61228. head: {
  61229. height: math.unit(1.22, "feet"),
  61230. name: "Head",
  61231. image: {
  61232. source: "./media/characters/kyara/head.svg"
  61233. }
  61234. },
  61235. maw: {
  61236. height: math.unit(0.73, "feet"),
  61237. name: "Maw",
  61238. image: {
  61239. source: "./media/characters/kyara/maw.svg"
  61240. }
  61241. },
  61242. paws: {
  61243. height: math.unit(0.95, "feet"),
  61244. name: "Paws",
  61245. image: {
  61246. source: "./media/characters/kyara/paws.svg"
  61247. }
  61248. },
  61249. },
  61250. [
  61251. {
  61252. name: "Normal",
  61253. height: math.unit(1.92, "meters"),
  61254. default: true
  61255. },
  61256. {
  61257. name: "Mini Macro",
  61258. height: math.unit(192, "meters")
  61259. },
  61260. {
  61261. name: "Macro",
  61262. height: math.unit(480, "meters")
  61263. },
  61264. {
  61265. name: "Mega Macro",
  61266. height: math.unit(1440, "meters")
  61267. },
  61268. ]
  61269. ))
  61270. characterMakers.push(() => makeCharacter(
  61271. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61272. {
  61273. front: {
  61274. height: math.unit(6, "feet"),
  61275. weight: math.unit(160, "lbs"),
  61276. preyCapacity: math.unit(0.05, "people"),
  61277. name: "Front",
  61278. image: {
  61279. source: "./media/characters/layla-amari/front.svg",
  61280. extra: 1922/1723,
  61281. bottom: 90/2012
  61282. }
  61283. },
  61284. back: {
  61285. height: math.unit(6, "feet"),
  61286. weight: math.unit(160, "lbs"),
  61287. preyCapacity: math.unit(0.05, "people"),
  61288. name: "Back",
  61289. image: {
  61290. source: "./media/characters/layla-amari/back.svg",
  61291. extra: 1917/1718,
  61292. bottom: 50/1967
  61293. }
  61294. },
  61295. frontDressed: {
  61296. height: math.unit(6, "feet"),
  61297. weight: math.unit(160, "lbs"),
  61298. preyCapacity: math.unit(0.05, "people"),
  61299. name: "Front (Dressed)",
  61300. image: {
  61301. source: "./media/characters/layla-amari/front-dressed.svg",
  61302. extra: 1922/1723,
  61303. bottom: 90/2012
  61304. }
  61305. },
  61306. face: {
  61307. height: math.unit(0.93, "feet"),
  61308. name: "Face",
  61309. image: {
  61310. source: "./media/characters/layla-amari/face.svg"
  61311. }
  61312. },
  61313. hand: {
  61314. height: math.unit(0.66 , "feet"),
  61315. name: "Hand",
  61316. image: {
  61317. source: "./media/characters/layla-amari/hand.svg"
  61318. }
  61319. },
  61320. foot: {
  61321. height: math.unit(1, "feet"),
  61322. name: "Foot",
  61323. image: {
  61324. source: "./media/characters/layla-amari/foot.svg"
  61325. }
  61326. },
  61327. necklace: {
  61328. height: math.unit(0.32, "feet"),
  61329. name: "Necklace",
  61330. image: {
  61331. source: "./media/characters/layla-amari/necklace.svg"
  61332. }
  61333. },
  61334. nipple: {
  61335. height: math.unit(0.2, "feet"),
  61336. name: "Nipple",
  61337. image: {
  61338. source: "./media/characters/layla-amari/nipple.svg"
  61339. }
  61340. },
  61341. slit: {
  61342. height: math.unit(0.26, "feet"),
  61343. name: "Slit",
  61344. image: {
  61345. source: "./media/characters/layla-amari/slit.svg"
  61346. }
  61347. },
  61348. },
  61349. [
  61350. {
  61351. name: "Natural",
  61352. height: math.unit(825, "feet"),
  61353. default: true
  61354. },
  61355. {
  61356. name: "Enhanced",
  61357. height: math.unit(8250, "feet")
  61358. },
  61359. {
  61360. name: "Apparent Size",
  61361. height: math.unit(9.04363e+8, "meters")
  61362. },
  61363. ]
  61364. ))
  61365. characterMakers.push(() => makeCharacter(
  61366. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61367. {
  61368. front: {
  61369. height: math.unit(1.3, "meters"),
  61370. name: "Front",
  61371. image: {
  61372. source: "./media/characters/percy/front.svg",
  61373. extra: 1444/1289,
  61374. bottom: 54/1498
  61375. }
  61376. },
  61377. },
  61378. [
  61379. {
  61380. name: "Normal",
  61381. height: math.unit(1.3, "meters"),
  61382. default: true
  61383. },
  61384. ]
  61385. ))
  61386. characterMakers.push(() => makeCharacter(
  61387. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61388. {
  61389. side: {
  61390. height: math.unit(10, "meters"),
  61391. name: "Side",
  61392. image: {
  61393. source: "./media/characters/grev/side.svg",
  61394. extra: 653/266,
  61395. bottom: 77/730
  61396. }
  61397. },
  61398. head: {
  61399. height: math.unit(16.2, "m"),
  61400. name: "Head",
  61401. image: {
  61402. source: "./media/characters/grev/head.svg"
  61403. }
  61404. },
  61405. dick: {
  61406. height: math.unit(2.8135932034, "m"),
  61407. name: "Dick",
  61408. image: {
  61409. source: "./media/characters/grev/dick.svg"
  61410. }
  61411. },
  61412. },
  61413. [
  61414. {
  61415. name: "Friend-Sized",
  61416. height: math.unit(80, "cm")
  61417. },
  61418. {
  61419. name: "Normal",
  61420. height: math.unit(10, "meters"),
  61421. default: true
  61422. },
  61423. {
  61424. name: "Macro",
  61425. height: math.unit(200, "meters")
  61426. },
  61427. ]
  61428. ))
  61429. characterMakers.push(() => makeCharacter(
  61430. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61431. {
  61432. front: {
  61433. height: math.unit(19.75, "feet"),
  61434. weight: math.unit(20000, "lb"),
  61435. name: "Front",
  61436. image: {
  61437. source: "./media/characters/azuuca/front.svg",
  61438. extra: 1593/1511,
  61439. bottom: 55/1648
  61440. }
  61441. },
  61442. },
  61443. [
  61444. {
  61445. name: "Normal",
  61446. height: math.unit(19.75, "feet"),
  61447. default: true
  61448. },
  61449. ]
  61450. ))
  61451. characterMakers.push(() => makeCharacter(
  61452. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61453. {
  61454. front: {
  61455. height: math.unit(15, "feet"),
  61456. weight: math.unit(1500, "lb"),
  61457. name: "Front",
  61458. image: {
  61459. source: "./media/characters/valuria/front.svg",
  61460. extra: 1588/1486,
  61461. bottom: 31/1619
  61462. }
  61463. },
  61464. },
  61465. [
  61466. {
  61467. name: "Normal",
  61468. height: math.unit(15, "feet"),
  61469. default: true
  61470. },
  61471. {
  61472. name: "Small",
  61473. height: math.unit(500, "feet")
  61474. },
  61475. {
  61476. name: "Macro",
  61477. height: math.unit(4000, "feet")
  61478. },
  61479. {
  61480. name: "Mega Macro",
  61481. height: math.unit(2000, "miles")
  61482. },
  61483. {
  61484. name: "Giga Macro",
  61485. height: math.unit(3e6, "miles")
  61486. },
  61487. ]
  61488. ))
  61489. characterMakers.push(() => makeCharacter(
  61490. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61491. {
  61492. front: {
  61493. height: math.unit(3500, "solarradii"),
  61494. name: "Front",
  61495. image: {
  61496. source: "./media/characters/terigaia/front.svg",
  61497. extra: 1531/1451,
  61498. bottom: 98/1629
  61499. }
  61500. },
  61501. },
  61502. [
  61503. {
  61504. name: "Normal",
  61505. height: math.unit(3500, "solarradii"),
  61506. default: true
  61507. },
  61508. ]
  61509. ))
  61510. characterMakers.push(() => makeCharacter(
  61511. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61512. {
  61513. front: {
  61514. height: math.unit(9.34, "feet"),
  61515. weight: math.unit(600, "lb"),
  61516. name: "Front",
  61517. image: {
  61518. source: "./media/characters/blair-blaziken/front.svg",
  61519. extra: 1557/1462,
  61520. bottom: 55/1612
  61521. }
  61522. },
  61523. },
  61524. [
  61525. {
  61526. name: "Normal",
  61527. height: math.unit(9.34, "feet"),
  61528. default: true
  61529. },
  61530. ]
  61531. ))
  61532. characterMakers.push(() => makeCharacter(
  61533. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61534. {
  61535. pistrogre_front: {
  61536. height: math.unit(10, "feet"),
  61537. weight: math.unit(10, "tons"),
  61538. name: "Front",
  61539. image: {
  61540. source: "./media/characters/braxia/pistrogre-front.svg",
  61541. extra: 1531/1334,
  61542. bottom: 114/1645
  61543. },
  61544. form: "pistrogre",
  61545. default: true
  61546. },
  61547. human_front: {
  61548. height: math.unit(10, "feet"),
  61549. weight: math.unit(10, "tons"),
  61550. name: "Front",
  61551. image: {
  61552. source: "./media/characters/braxia/human-front.svg",
  61553. extra: 1574/1501,
  61554. bottom: 37/1611
  61555. },
  61556. form: "human",
  61557. default: true
  61558. },
  61559. },
  61560. [
  61561. {
  61562. name: "Normal",
  61563. height: math.unit(10, "feet"),
  61564. default: true,
  61565. allForms: true
  61566. },
  61567. {
  61568. name: "Macro",
  61569. height: math.unit(1000, "feet"),
  61570. allForms: true
  61571. },
  61572. {
  61573. name: "Mega Macro",
  61574. height: math.unit(100, "miles"),
  61575. allForms: true
  61576. },
  61577. {
  61578. name: "Cosmic",
  61579. height: math.unit(1000000, "lightyears"),
  61580. allForms: true
  61581. },
  61582. {
  61583. name: "ϐѮԆԬӁꭍϞԢ",
  61584. height: math.unit(1000, "multiverses"),
  61585. allForms: true
  61586. },
  61587. ],
  61588. {
  61589. "pistrogre": {
  61590. name: "Pistrogre",
  61591. default: true
  61592. },
  61593. "human": {
  61594. name: "Human",
  61595. },
  61596. }
  61597. ))
  61598. characterMakers.push(() => makeCharacter(
  61599. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61600. {
  61601. front: {
  61602. height: math.unit(6 + 1/12, "feet"),
  61603. weight: math.unit(280, "lb"),
  61604. name: "Front",
  61605. image: {
  61606. source: "./media/characters/kiriga-yato/front.svg",
  61607. extra: 445/394,
  61608. bottom: 11/456
  61609. }
  61610. },
  61611. },
  61612. [
  61613. {
  61614. name: "Descended",
  61615. height: math.unit(3, "feet")
  61616. },
  61617. {
  61618. name: "Average",
  61619. height: math.unit(6 + 1/12, "feet"),
  61620. default: true
  61621. },
  61622. {
  61623. name: "Ascended",
  61624. height: math.unit(9 + 2/12, "feet")
  61625. },
  61626. ]
  61627. ))
  61628. characterMakers.push(() => makeCharacter(
  61629. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61630. {
  61631. front: {
  61632. height: math.unit(6, "feet"),
  61633. weight: math.unit(150, "lb"),
  61634. name: "Front",
  61635. image: {
  61636. source: "./media/characters/kylie/front.svg",
  61637. extra: 1114/1046,
  61638. bottom: 65/1179
  61639. },
  61640. extraAttributes: {
  61641. "hoofSize": {
  61642. name: "Hoof Size",
  61643. power: 2,
  61644. type: "area",
  61645. base: math.unit(0.034, "m^2")
  61646. },
  61647. "footSize": {
  61648. name: "Foot Size",
  61649. power: 2,
  61650. type: "area",
  61651. base: math.unit(0.75, "m^2")
  61652. },
  61653. }
  61654. },
  61655. side: {
  61656. height: math.unit(6, "feet"),
  61657. weight: math.unit(150, "lb"),
  61658. name: "Side",
  61659. image: {
  61660. source: "./media/characters/kylie/side.svg",
  61661. extra: 1178/1110,
  61662. bottom: 21/1199
  61663. },
  61664. extraAttributes: {
  61665. "hoofSize": {
  61666. name: "Hoof Size",
  61667. power: 2,
  61668. type: "area",
  61669. base: math.unit(0.034, "m^2")
  61670. },
  61671. "footSize": {
  61672. name: "Foot Size",
  61673. power: 2,
  61674. type: "area",
  61675. base: math.unit(0.75, "m^2")
  61676. },
  61677. }
  61678. },
  61679. back: {
  61680. height: math.unit(6, "feet"),
  61681. weight: math.unit(150, "lb"),
  61682. name: "Back",
  61683. image: {
  61684. source: "./media/characters/kylie/back.svg",
  61685. extra: 1115/1047,
  61686. bottom: 66/1181
  61687. },
  61688. extraAttributes: {
  61689. "hoofSize": {
  61690. name: "Hoof Size",
  61691. power: 2,
  61692. type: "area",
  61693. base: math.unit(0.034, "m^2")
  61694. },
  61695. "footSize": {
  61696. name: "Foot Size",
  61697. power: 2,
  61698. type: "area",
  61699. base: math.unit(0.75, "m^2")
  61700. },
  61701. }
  61702. },
  61703. head: {
  61704. height: math.unit(1.85, "feet"),
  61705. name: "Head",
  61706. image: {
  61707. source: "./media/characters/kylie/head.svg"
  61708. }
  61709. },
  61710. },
  61711. [
  61712. {
  61713. name: "Normal",
  61714. height: math.unit(90, "meters"),
  61715. default: true
  61716. },
  61717. ]
  61718. ))
  61719. characterMakers.push(() => makeCharacter(
  61720. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61721. {
  61722. front: {
  61723. height: math.unit(245, "feet"),
  61724. weight: math.unit(400000, "lb"),
  61725. name: "Front",
  61726. image: {
  61727. source: "./media/characters/sabado/front.svg",
  61728. extra: 1309/1164,
  61729. bottom: 29/1338
  61730. }
  61731. },
  61732. },
  61733. [
  61734. {
  61735. name: "Normal",
  61736. height: math.unit(245, "feet"),
  61737. default: true
  61738. },
  61739. ]
  61740. ))
  61741. characterMakers.push(() => makeCharacter(
  61742. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61743. {
  61744. shark_front: {
  61745. height: math.unit(2, "meters"),
  61746. weight: math.unit(200, "kg"),
  61747. name: "Front",
  61748. image: {
  61749. source: "./media/characters/zechal/shark-front.svg",
  61750. extra: 969/925,
  61751. bottom: 74/1043
  61752. },
  61753. form: "shark",
  61754. },
  61755. shark_back: {
  61756. height: math.unit(2, "meters"),
  61757. weight: math.unit(200, "kg"),
  61758. name: "Back",
  61759. image: {
  61760. source: "./media/characters/zechal/shark-back.svg",
  61761. extra: 994/949,
  61762. bottom: 176/1170
  61763. },
  61764. form: "shark",
  61765. },
  61766. shark_frontLewd: {
  61767. height: math.unit(2, "meters"),
  61768. weight: math.unit(200, "kg"),
  61769. name: "Front (Lewd)",
  61770. image: {
  61771. source: "./media/characters/zechal/shark-front-lewd.svg",
  61772. extra: 969/925,
  61773. bottom: 74/1043
  61774. },
  61775. form: "shark",
  61776. },
  61777. shark_side: {
  61778. height: math.unit(1.56, "meters"),
  61779. weight: math.unit(200, "kg"),
  61780. name: "Side",
  61781. image: {
  61782. source: "./media/characters/zechal/shark-side.svg"
  61783. },
  61784. form: "shark",
  61785. },
  61786. dragon_front: {
  61787. height: math.unit(2, "meters"),
  61788. weight: math.unit(200, "kg"),
  61789. name: "Front",
  61790. image: {
  61791. source: "./media/characters/zechal/dragon-front.svg",
  61792. extra: 1041/925,
  61793. bottom: 74/1115
  61794. },
  61795. form: "dragon",
  61796. },
  61797. dragon_back: {
  61798. height: math.unit(2, "meters"),
  61799. weight: math.unit(200, "kg"),
  61800. name: "Back",
  61801. image: {
  61802. source: "./media/characters/zechal/dragon-back.svg",
  61803. extra: 1061/949,
  61804. bottom: 176/1237
  61805. },
  61806. form: "dragon",
  61807. },
  61808. dragon_frontLewd: {
  61809. height: math.unit(2, "meters"),
  61810. weight: math.unit(200, "kg"),
  61811. name: "Front (Lewd)",
  61812. image: {
  61813. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61814. extra: 1041/925,
  61815. bottom: 74/1115
  61816. },
  61817. form: "dragon",
  61818. },
  61819. dragon_side: {
  61820. height: math.unit(1.56, "meters"),
  61821. weight: math.unit(200, "kg"),
  61822. name: "Side",
  61823. image: {
  61824. source: "./media/characters/zechal/dragon-side.svg"
  61825. },
  61826. form: "dragon",
  61827. },
  61828. foot: {
  61829. height: math.unit(0.5, "meters"),
  61830. name: "Foot",
  61831. image: {
  61832. source: "./media/characters/zechal/foot.svg"
  61833. }
  61834. },
  61835. sheathFront: {
  61836. height: math.unit(0.45, "meters"),
  61837. name: "Sheath (Front)",
  61838. image: {
  61839. source: "./media/characters/zechal/sheath-front.svg"
  61840. }
  61841. },
  61842. sheathSide: {
  61843. height: math.unit(0.45, "meters"),
  61844. name: "Sheath (Side)",
  61845. image: {
  61846. source: "./media/characters/zechal/sheath-side.svg"
  61847. }
  61848. },
  61849. },
  61850. [
  61851. {
  61852. name: "Incognito",
  61853. height: math.unit(2, "meters"),
  61854. allForms: true
  61855. },
  61856. {
  61857. name: "Small Rampage",
  61858. height: math.unit(25, "meters"),
  61859. allForms: true
  61860. },
  61861. {
  61862. name: "Home Size",
  61863. height: math.unit(250, "meters"),
  61864. allForms: true,
  61865. default: true
  61866. },
  61867. {
  61868. name: "Macro+",
  61869. height: math.unit(700, "meters"),
  61870. allForms: true
  61871. },
  61872. {
  61873. name: "Small Mega",
  61874. height: math.unit(3, "km"),
  61875. allForms: true
  61876. },
  61877. {
  61878. name: "Mega",
  61879. height: math.unit(15, "km"),
  61880. allForms: true
  61881. },
  61882. {
  61883. name: "Giga",
  61884. height: math.unit(300, "km"),
  61885. allForms: true
  61886. },
  61887. {
  61888. name: "Giga+",
  61889. height: math.unit(1750, "km"),
  61890. allForms: true
  61891. },
  61892. {
  61893. name: "Continental",
  61894. height: math.unit(5000, "km"),
  61895. allForms: true
  61896. },
  61897. {
  61898. name: "Terra",
  61899. height: math.unit(20000, "km"),
  61900. allForms: true
  61901. },
  61902. {
  61903. name: "Terra+",
  61904. height: math.unit(300000, "km"),
  61905. allForms: true
  61906. },
  61907. {
  61908. name: "Solar",
  61909. height: math.unit(40000000, "km"),
  61910. allForms: true
  61911. },
  61912. {
  61913. name: "Galactic",
  61914. height: math.unit(810133, "parsecs"),
  61915. allForms: true
  61916. },
  61917. {
  61918. name: "Universal",
  61919. height: math.unit(25, "universes"),
  61920. allForms: true
  61921. },
  61922. ],
  61923. {
  61924. "shark": {
  61925. name: "Shark",
  61926. default: true
  61927. },
  61928. "dragon": {
  61929. name: "Dragon",
  61930. },
  61931. }
  61932. ))
  61933. characterMakers.push(() => makeCharacter(
  61934. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61935. {
  61936. front: {
  61937. height: math.unit(2.2, "meters"),
  61938. weight: math.unit(150, "kg"),
  61939. name: "Front",
  61940. image: {
  61941. source: "./media/characters/sergis/front.svg",
  61942. extra: 1314/1312,
  61943. bottom: 112/1426
  61944. }
  61945. },
  61946. back: {
  61947. height: math.unit(2.2, "meters"),
  61948. weight: math.unit(150, "kg"),
  61949. name: "Back",
  61950. image: {
  61951. source: "./media/characters/sergis/back.svg",
  61952. extra: 1335/1333,
  61953. bottom: 19/1354
  61954. }
  61955. },
  61956. frontLewd: {
  61957. height: math.unit(2.2, "meters"),
  61958. weight: math.unit(150, "kg"),
  61959. name: "Front (Lewd)",
  61960. image: {
  61961. source: "./media/characters/sergis/front-lewd.svg",
  61962. extra: 1314/1312,
  61963. bottom: 112/1426
  61964. }
  61965. },
  61966. frontDressed: {
  61967. height: math.unit(2.2, "meters"),
  61968. weight: math.unit(150, "kg"),
  61969. name: "Front (Dressed)",
  61970. image: {
  61971. source: "./media/characters/sergis/front-dressed.svg",
  61972. extra: 1330/1328,
  61973. bottom: 95/1425
  61974. }
  61975. },
  61976. frontDressedLewd: {
  61977. height: math.unit(2.2, "meters"),
  61978. weight: math.unit(150, "kg"),
  61979. name: "Front (Dressed, Lewd)",
  61980. image: {
  61981. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61982. extra: 1330/1328,
  61983. bottom: 95/1425
  61984. }
  61985. },
  61986. maw: {
  61987. height: math.unit(0.48, "meters"),
  61988. name: "Maw",
  61989. image: {
  61990. source: "./media/characters/sergis/maw.svg"
  61991. }
  61992. },
  61993. sheath: {
  61994. height: math.unit(0.38, "meters"),
  61995. name: "Sheath",
  61996. image: {
  61997. source: "./media/characters/sergis/sheath.svg"
  61998. }
  61999. },
  62000. },
  62001. [
  62002. {
  62003. name: "Incognito Size",
  62004. height: math.unit(2.2, "meters")
  62005. },
  62006. {
  62007. name: "Small Macro",
  62008. height: math.unit(40, "meters")
  62009. },
  62010. {
  62011. name: "Macro",
  62012. height: math.unit(150, "meters")
  62013. },
  62014. {
  62015. name: "Macro+",
  62016. height: math.unit(300, "meters")
  62017. },
  62018. {
  62019. name: "Mega",
  62020. height: math.unit(2.5, "km")
  62021. },
  62022. {
  62023. name: "Mega+",
  62024. height: math.unit(30, "km")
  62025. },
  62026. {
  62027. name: "Home Size",
  62028. height: math.unit(300, "km"),
  62029. default: true
  62030. },
  62031. {
  62032. name: "Giga+",
  62033. height: math.unit(1000, "km")
  62034. },
  62035. {
  62036. name: "Giga++",
  62037. height: math.unit(6000, "km")
  62038. },
  62039. {
  62040. name: "Terra",
  62041. height: math.unit(70000, "km")
  62042. },
  62043. {
  62044. name: "Terra+",
  62045. height: math.unit(200000, "km")
  62046. },
  62047. {
  62048. name: "Galactic",
  62049. height: math.unit(634200, "lightyears")
  62050. },
  62051. ]
  62052. ))
  62053. characterMakers.push(() => makeCharacter(
  62054. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62055. {
  62056. standard: {
  62057. height: math.unit(1 + 5/12, "feet"),
  62058. name: "Standard",
  62059. image: {
  62060. source: "./media/characters/spade/standard.svg",
  62061. extra: 1794/1703,
  62062. bottom: 115/1909
  62063. }
  62064. },
  62065. disguised: {
  62066. height: math.unit(1 + 5/12, "feet"),
  62067. name: "Disguised",
  62068. image: {
  62069. source: "./media/characters/spade/disguised.svg",
  62070. extra: 1794/1700,
  62071. bottom: 98/1892
  62072. }
  62073. },
  62074. },
  62075. [
  62076. {
  62077. name: "Normal",
  62078. height: math.unit(1 + 5/12, "feet"),
  62079. default: true
  62080. },
  62081. ]
  62082. ))
  62083. characterMakers.push(() => makeCharacter(
  62084. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62085. {
  62086. frontNsfw: {
  62087. height: math.unit(5, "meters"),
  62088. weight: math.unit(2000, "kg"),
  62089. preyCapacity: math.unit(5, "people"),
  62090. name: "Front (NSFW)",
  62091. image: {
  62092. source: "./media/characters/zeanlain/front-nsfw.svg",
  62093. extra: 1087/938,
  62094. bottom: 93/1180
  62095. },
  62096. extraAttributes: {
  62097. "wingspan": {
  62098. name: "Wingspan",
  62099. power: 1,
  62100. type: "length",
  62101. base: math.unit(10, "meters")
  62102. },
  62103. "footSize": {
  62104. name: "Foot Size",
  62105. power: 1,
  62106. type: "length",
  62107. base: math.unit(0.68, "meters")
  62108. },
  62109. "cockLength": {
  62110. name: "Cock Length",
  62111. power: 1,
  62112. type: "length",
  62113. base: math.unit(1.69, "meters")
  62114. },
  62115. "ballVolume": {
  62116. name: "Ball Volume",
  62117. power: 3,
  62118. type: "volume",
  62119. base: math.unit(0.028, "m^3")
  62120. },
  62121. }
  62122. },
  62123. front: {
  62124. height: math.unit(5, "meters"),
  62125. weight: math.unit(2000, "kg"),
  62126. preyCapacity: math.unit(3, "people"),
  62127. name: "Front",
  62128. image: {
  62129. source: "./media/characters/zeanlain/front.svg",
  62130. extra: 1087/938,
  62131. bottom: 93/1180
  62132. },
  62133. extraAttributes: {
  62134. "wingspan": {
  62135. name: "Wingspan",
  62136. power: 1,
  62137. type: "length",
  62138. base: math.unit(10, "meters")
  62139. },
  62140. "footSize": {
  62141. name: "Foot Size",
  62142. power: 1,
  62143. type: "length",
  62144. base: math.unit(0.68, "meters")
  62145. },
  62146. }
  62147. },
  62148. },
  62149. [
  62150. {
  62151. name: "Normal",
  62152. height: math.unit(5, "meters"),
  62153. default: true
  62154. },
  62155. ]
  62156. ))
  62157. characterMakers.push(() => makeCharacter(
  62158. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62159. {
  62160. front: {
  62161. height: math.unit(10, "meters"),
  62162. weight: math.unit(250000, "kg"),
  62163. name: "Front",
  62164. image: {
  62165. source: "./media/characters/airamis/front.svg",
  62166. extra: 865/835,
  62167. bottom: 13/878
  62168. }
  62169. },
  62170. },
  62171. [
  62172. {
  62173. name: "Normal",
  62174. height: math.unit(10, "meters"),
  62175. default: true
  62176. },
  62177. ]
  62178. ))
  62179. characterMakers.push(() => makeCharacter(
  62180. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62181. {
  62182. front: {
  62183. height: math.unit(3 + 3/12, "feet"),
  62184. weight: math.unit(75, "lb"),
  62185. name: "Front",
  62186. image: {
  62187. source: "./media/characters/corra-tourmaline/front.svg",
  62188. extra: 1037/864,
  62189. bottom: 39/1076
  62190. }
  62191. },
  62192. back: {
  62193. height: math.unit(3 + 3/12, "feet"),
  62194. weight: math.unit(75, "lb"),
  62195. name: "Back",
  62196. image: {
  62197. source: "./media/characters/corra-tourmaline/back.svg",
  62198. extra: 1022/849,
  62199. bottom: 26/1048
  62200. }
  62201. },
  62202. dressed: {
  62203. height: math.unit(3 + 3/12, "feet"),
  62204. weight: math.unit(75, "lb"),
  62205. name: "Dressed",
  62206. image: {
  62207. source: "./media/characters/corra-tourmaline/dressed.svg",
  62208. extra: 1037/864,
  62209. bottom: 39/1076
  62210. }
  62211. },
  62212. beans: {
  62213. height: math.unit(0.37, "feet"),
  62214. name: "Beans",
  62215. image: {
  62216. source: "./media/characters/corra-tourmaline/beans.svg"
  62217. }
  62218. },
  62219. },
  62220. [
  62221. {
  62222. name: "Normal",
  62223. height: math.unit(3 + 3/12, "feet"),
  62224. default: true
  62225. },
  62226. {
  62227. name: "Macro",
  62228. height: math.unit(32, "feet")
  62229. },
  62230. ]
  62231. ))
  62232. characterMakers.push(() => makeCharacter(
  62233. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62234. {
  62235. front: {
  62236. height: math.unit(6 + 2/12, "feet"),
  62237. weight: math.unit(203, "lb"),
  62238. name: "Front",
  62239. image: {
  62240. source: "./media/characters/maki-kawa/front.svg",
  62241. extra: 950/890,
  62242. bottom: 62/1012
  62243. }
  62244. },
  62245. back: {
  62246. height: math.unit(6 + 2/12, "feet"),
  62247. weight: math.unit(203, "lb"),
  62248. name: "Back",
  62249. image: {
  62250. source: "./media/characters/maki-kawa/back.svg",
  62251. extra: 953/878,
  62252. bottom: 49/1002
  62253. }
  62254. },
  62255. frontBarista: {
  62256. height: math.unit(6 + 2/12, "feet"),
  62257. weight: math.unit(203, "lb"),
  62258. name: "Front (Barista)",
  62259. image: {
  62260. source: "./media/characters/maki-kawa/front-barista.svg",
  62261. extra: 943/883,
  62262. bottom: 69/1012
  62263. }
  62264. },
  62265. backBarista: {
  62266. height: math.unit(6 + 2/12, "feet"),
  62267. weight: math.unit(203, "lb"),
  62268. name: "Back (Barista)",
  62269. image: {
  62270. source: "./media/characters/maki-kawa/back-barista.svg",
  62271. extra: 953/878,
  62272. bottom: 49/1002
  62273. }
  62274. },
  62275. frontWrestler: {
  62276. height: math.unit(6 + 2/12, "feet"),
  62277. weight: math.unit(203, "lb"),
  62278. name: "Front (Wrestler)",
  62279. image: {
  62280. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62281. extra: 950/890,
  62282. bottom: 62/1012
  62283. }
  62284. },
  62285. backWrestler: {
  62286. height: math.unit(6 + 2/12, "feet"),
  62287. weight: math.unit(203, "lb"),
  62288. name: "Back (Wrestler)",
  62289. image: {
  62290. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62291. extra: 953/878,
  62292. bottom: 49/1002
  62293. }
  62294. },
  62295. headFront: {
  62296. height: math.unit(1.64, "feet"),
  62297. name: "Head (Front)",
  62298. image: {
  62299. source: "./media/characters/maki-kawa/head-front.svg"
  62300. }
  62301. },
  62302. headSide: {
  62303. height: math.unit(1.59, "feet"),
  62304. name: "Head (Side)",
  62305. image: {
  62306. source: "./media/characters/maki-kawa/head-side.svg"
  62307. }
  62308. },
  62309. paw: {
  62310. height: math.unit(0.9, "feet"),
  62311. name: "Paw",
  62312. image: {
  62313. source: "./media/characters/maki-kawa/paw.svg"
  62314. }
  62315. },
  62316. },
  62317. [
  62318. {
  62319. name: "Normal",
  62320. height: math.unit(6 + 2/12, "feet"),
  62321. default: true
  62322. },
  62323. {
  62324. name: "Macro",
  62325. height: math.unit(617, "feet")
  62326. },
  62327. ]
  62328. ))
  62329. characterMakers.push(() => makeCharacter(
  62330. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62331. {
  62332. front: {
  62333. height: math.unit(10, "feet"),
  62334. weight: math.unit(1500, "lb"),
  62335. name: "Front",
  62336. image: {
  62337. source: "./media/characters/lennox/front.svg",
  62338. extra: 1623/1496,
  62339. bottom: 18/1641
  62340. }
  62341. },
  62342. back: {
  62343. height: math.unit(10, "feet"),
  62344. weight: math.unit(1500, "lb"),
  62345. name: "Back",
  62346. image: {
  62347. source: "./media/characters/lennox/back.svg",
  62348. extra: 1641/1481,
  62349. bottom: 13/1654
  62350. }
  62351. },
  62352. maw: {
  62353. height: math.unit(2.94, "feet"),
  62354. name: "Maw",
  62355. image: {
  62356. source: "./media/characters/lennox/maw.svg"
  62357. }
  62358. },
  62359. },
  62360. [
  62361. {
  62362. name: "Micro",
  62363. height: math.unit(1, "inch")
  62364. },
  62365. {
  62366. name: "Normal",
  62367. height: math.unit(10, "feet"),
  62368. default: true
  62369. },
  62370. {
  62371. name: "Macro",
  62372. height: math.unit(200, "feet")
  62373. },
  62374. ]
  62375. ))
  62376. characterMakers.push(() => makeCharacter(
  62377. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62378. {
  62379. frontDressed: {
  62380. height: math.unit(15 + 7/12, "feet"),
  62381. weight: math.unit(5000, "lb"),
  62382. name: "Front (Dressed)",
  62383. image: {
  62384. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62385. extra: 1136/1023,
  62386. bottom: 51/1187
  62387. }
  62388. },
  62389. backDressed: {
  62390. height: math.unit(15 + 7/12, "feet"),
  62391. weight: math.unit(5000, "lb"),
  62392. name: "Back (Dressed)",
  62393. image: {
  62394. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62395. extra: 2359/2143,
  62396. bottom: 103/2462
  62397. }
  62398. },
  62399. front: {
  62400. height: math.unit(15 + 7/12, "feet"),
  62401. weight: math.unit(5000, "lb"),
  62402. name: "Front",
  62403. image: {
  62404. source: "./media/characters/vyse-iron-thunder/front.svg",
  62405. extra: 1136/1023,
  62406. bottom: 51/1187
  62407. }
  62408. },
  62409. hand: {
  62410. height: math.unit(2.36, "feet"),
  62411. name: "Hand",
  62412. image: {
  62413. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62414. }
  62415. },
  62416. foot: {
  62417. height: math.unit(1.72, "feet"),
  62418. name: "Foot",
  62419. image: {
  62420. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62421. }
  62422. },
  62423. mouth: {
  62424. height: math.unit(2, "feet"),
  62425. name: "Mouth",
  62426. image: {
  62427. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62428. }
  62429. },
  62430. eye: {
  62431. height: math.unit(0.58, "feet"),
  62432. name: "Eye",
  62433. image: {
  62434. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62435. }
  62436. },
  62437. },
  62438. [
  62439. {
  62440. name: "Normal",
  62441. height: math.unit(15 + 7/12, "feet"),
  62442. default: true
  62443. },
  62444. {
  62445. name: "Macro",
  62446. height: math.unit(157, "feet")
  62447. },
  62448. {
  62449. name: "Macro+",
  62450. height: math.unit(1570, "feet")
  62451. },
  62452. {
  62453. name: "Macro++",
  62454. height: math.unit(15700, "feet")
  62455. },
  62456. {
  62457. name: "Macro+++",
  62458. height: math.unit(157000, "feet")
  62459. },
  62460. {
  62461. name: "Macro++++",
  62462. height: math.unit(1570000, "feet")
  62463. },
  62464. ]
  62465. ))
  62466. characterMakers.push(() => makeCharacter(
  62467. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62468. {
  62469. side: {
  62470. height: math.unit(6, "feet"),
  62471. weight: math.unit(115, "lb"),
  62472. name: "Side",
  62473. image: {
  62474. source: "./media/characters/moonbeam/side.svg",
  62475. extra: 839/485,
  62476. bottom: 60/899
  62477. }
  62478. },
  62479. },
  62480. [
  62481. {
  62482. name: "Normal",
  62483. height: math.unit(6, "feet"),
  62484. default: true
  62485. },
  62486. ]
  62487. ))
  62488. characterMakers.push(() => makeCharacter(
  62489. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62490. {
  62491. front: {
  62492. height: math.unit(3500, "miles"),
  62493. weight: math.unit(1659, "petatonnes"),
  62494. name: "Front",
  62495. image: {
  62496. source: "./media/characters/baltica/front.svg",
  62497. extra: 429/428,
  62498. bottom: 41/470
  62499. }
  62500. },
  62501. back: {
  62502. height: math.unit(3500, "miles"),
  62503. weight: math.unit(1659, "petatonnes"),
  62504. name: "Back",
  62505. image: {
  62506. source: "./media/characters/baltica/back.svg",
  62507. extra: 452/451,
  62508. bottom: 8/460
  62509. }
  62510. },
  62511. },
  62512. [
  62513. {
  62514. name: "Gigamacro",
  62515. height: math.unit(3500, "miles"),
  62516. default: true
  62517. },
  62518. ]
  62519. ))
  62520. characterMakers.push(() => makeCharacter(
  62521. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62522. {
  62523. front: {
  62524. height: math.unit(6 + 10/12, "feet"),
  62525. weight: math.unit(200, "lb"),
  62526. name: "Front",
  62527. image: {
  62528. source: "./media/characters/shadow-wolf/front.svg",
  62529. extra: 1931/1760,
  62530. bottom: 88/2019
  62531. }
  62532. },
  62533. },
  62534. [
  62535. {
  62536. name: "Normal",
  62537. height: math.unit(6 + 10/12, "feet"),
  62538. default: true
  62539. },
  62540. ]
  62541. ))
  62542. characterMakers.push(() => makeCharacter(
  62543. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62544. {
  62545. front: {
  62546. height: math.unit(5 + 10/12, "feet"),
  62547. name: "Front",
  62548. image: {
  62549. source: "./media/characters/quincy-praying-mantis/front.svg",
  62550. extra: 1055/891,
  62551. bottom: 92/1147
  62552. }
  62553. },
  62554. soles: {
  62555. height: math.unit(0.85, "feet"),
  62556. name: "Soles",
  62557. image: {
  62558. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62559. extra: 429/324,
  62560. bottom: 89/518
  62561. },
  62562. extraAttributes: {
  62563. "shoeSize": {
  62564. name: "Shoe Size",
  62565. power: 1,
  62566. type: "length",
  62567. base: math.unit(23, "ShoeSizeMensUS"),
  62568. defaultUnit: "ShoeSizeMensUS"
  62569. },
  62570. }
  62571. },
  62572. foot: {
  62573. height: math.unit(0.72, "feet"),
  62574. name: "Foot",
  62575. image: {
  62576. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62577. extra: 349/349,
  62578. bottom: 76/425
  62579. }
  62580. },
  62581. },
  62582. [
  62583. {
  62584. name: "Normal",
  62585. height: math.unit(5 + 10/12, "feet"),
  62586. default: true
  62587. },
  62588. ]
  62589. ))
  62590. characterMakers.push(() => makeCharacter(
  62591. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62592. {
  62593. front: {
  62594. height: math.unit(6, "feet"),
  62595. name: "Front",
  62596. image: {
  62597. source: "./media/characters/christopher-redwood/front.svg",
  62598. extra: 1402/1341,
  62599. bottom: 23/1425
  62600. }
  62601. },
  62602. back: {
  62603. height: math.unit(6, "feet"),
  62604. name: "Back",
  62605. image: {
  62606. source: "./media/characters/christopher-redwood/back.svg",
  62607. extra: 1406/1345,
  62608. bottom: 36/1442
  62609. }
  62610. },
  62611. head: {
  62612. height: math.unit(1.685, "feet"),
  62613. name: "Head",
  62614. image: {
  62615. source: "./media/characters/christopher-redwood/head.svg"
  62616. }
  62617. },
  62618. },
  62619. [
  62620. {
  62621. name: "Normal",
  62622. height: math.unit(6, "feet"),
  62623. default: true
  62624. },
  62625. ]
  62626. ))
  62627. characterMakers.push(() => makeCharacter(
  62628. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62629. {
  62630. front: {
  62631. height: math.unit(1.9, "meters"),
  62632. weight: math.unit(140, "lb"),
  62633. name: "Front",
  62634. image: {
  62635. source: "./media/characters/kara-fox/front.svg",
  62636. extra: 766/711,
  62637. bottom: 41/807
  62638. }
  62639. },
  62640. back: {
  62641. height: math.unit(1.9, "meters"),
  62642. weight: math.unit(140, "lb"),
  62643. name: "Back",
  62644. image: {
  62645. source: "./media/characters/kara-fox/back.svg",
  62646. extra: 766/596,
  62647. bottom: 29/795
  62648. }
  62649. },
  62650. maw: {
  62651. height: math.unit(0.78, "feet"),
  62652. name: "Maw",
  62653. image: {
  62654. source: "./media/characters/kara-fox/maw.svg"
  62655. }
  62656. },
  62657. pawpads: {
  62658. height: math.unit(0.96, "feet"),
  62659. name: "Pawpads",
  62660. image: {
  62661. source: "./media/characters/kara-fox/pawpads.svg"
  62662. }
  62663. },
  62664. },
  62665. [
  62666. {
  62667. name: "Normal",
  62668. height: math.unit(1.9, "meters"),
  62669. default: true
  62670. },
  62671. {
  62672. name: "Giantess",
  62673. height: math.unit(80, "meters")
  62674. },
  62675. ]
  62676. ))
  62677. characterMakers.push(() => makeCharacter(
  62678. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62679. {
  62680. front: {
  62681. height: math.unit(12, "feet"),
  62682. name: "Front",
  62683. image: {
  62684. source: "./media/characters/naomi-espeon/front.svg",
  62685. extra: 892/797,
  62686. bottom: 5/897
  62687. }
  62688. },
  62689. back: {
  62690. height: math.unit(12, "feet"),
  62691. name: "Back",
  62692. image: {
  62693. source: "./media/characters/naomi-espeon/back.svg",
  62694. extra: 890/785,
  62695. bottom: 12/902
  62696. }
  62697. },
  62698. },
  62699. [
  62700. {
  62701. name: "Normal",
  62702. height: math.unit(12, "feet"),
  62703. default: true
  62704. },
  62705. ]
  62706. ))
  62707. characterMakers.push(() => makeCharacter(
  62708. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62709. {
  62710. anthro_front: {
  62711. height: math.unit(8, "feet"),
  62712. weight: math.unit(625, "lb"),
  62713. name: "Front",
  62714. image: {
  62715. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62716. extra: 638/574,
  62717. bottom: 73/711
  62718. },
  62719. form: "anthro",
  62720. default: true
  62721. },
  62722. anthro_back: {
  62723. height: math.unit(8, "feet"),
  62724. weight: math.unit(625, "lb"),
  62725. name: "Back",
  62726. image: {
  62727. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62728. extra: 674/614,
  62729. bottom: 7/681
  62730. },
  62731. form: "anthro",
  62732. },
  62733. taur_side: {
  62734. height: math.unit(16, "feet"),
  62735. weight: math.unit(4.5, "tons"),
  62736. name: "Side",
  62737. image: {
  62738. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62739. extra: 704/646,
  62740. bottom: 132/836
  62741. },
  62742. form: "taur",
  62743. default: true
  62744. },
  62745. },
  62746. [
  62747. {
  62748. name: "Normal",
  62749. height: math.unit(8, "feet"),
  62750. default: true,
  62751. form: "anthro"
  62752. },
  62753. {
  62754. name: "Normal",
  62755. height: math.unit(16, "feet"),
  62756. default: true,
  62757. form: "taur"
  62758. },
  62759. ],
  62760. {
  62761. "anthro": {
  62762. name: "Anthro",
  62763. default: true
  62764. },
  62765. "taur": {
  62766. name: "Taur",
  62767. },
  62768. }
  62769. ))
  62770. characterMakers.push(() => makeCharacter(
  62771. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  62772. {
  62773. front: {
  62774. height: math.unit(190, "cm"),
  62775. weight: math.unit(110, "kg"),
  62776. name: "Front",
  62777. image: {
  62778. source: "./media/characters/amelie/front.svg",
  62779. extra: 530/442,
  62780. bottom: 35/565
  62781. }
  62782. },
  62783. },
  62784. [
  62785. {
  62786. name: "Normal",
  62787. height: math.unit(190, "cm"),
  62788. default: true
  62789. },
  62790. ]
  62791. ))
  62792. characterMakers.push(() => makeCharacter(
  62793. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  62794. {
  62795. front: {
  62796. height: math.unit(21, "feet"),
  62797. weight: math.unit(30000, "lb"),
  62798. name: "Front",
  62799. image: {
  62800. source: "./media/characters/valence/front.svg",
  62801. extra: 1430/1306,
  62802. bottom: 51/1481
  62803. }
  62804. },
  62805. },
  62806. [
  62807. {
  62808. name: "Normal",
  62809. height: math.unit(21, "feet"),
  62810. default: true
  62811. },
  62812. ]
  62813. ))
  62814. characterMakers.push(() => makeCharacter(
  62815. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  62816. {
  62817. front: {
  62818. height: math.unit(5 + 9/12, "feet"),
  62819. weight: math.unit(170, "lb"),
  62820. name: "Front",
  62821. image: {
  62822. source: "./media/characters/aurora-adkins/front.svg",
  62823. extra: 1141/1089,
  62824. bottom: 41/1182
  62825. }
  62826. },
  62827. },
  62828. [
  62829. {
  62830. name: "Tiny",
  62831. height: math.unit(7, "mm")
  62832. },
  62833. {
  62834. name: "Small",
  62835. height: math.unit(3.4, "inches")
  62836. },
  62837. {
  62838. name: "Normal",
  62839. height: math.unit(5 + 9/12, "feet"),
  62840. default: true
  62841. },
  62842. {
  62843. name: "Big",
  62844. height: math.unit(31, "feet")
  62845. },
  62846. {
  62847. name: "Giant",
  62848. height: math.unit(300, "feet")
  62849. },
  62850. ]
  62851. ))
  62852. characterMakers.push(() => makeCharacter(
  62853. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  62854. {
  62855. front: {
  62856. height: math.unit(5 + 6/12, "feet"),
  62857. weight: math.unit(210, "lb"),
  62858. name: "Front",
  62859. image: {
  62860. source: "./media/characters/cyber/front.svg",
  62861. extra: 1968/1798,
  62862. bottom: 10/1978
  62863. },
  62864. extraAttributes: {
  62865. "shoeSize": {
  62866. name: "Shoe Size",
  62867. power: 1,
  62868. type: "length",
  62869. base: math.unit(30, "ShoeSizeMensUS")
  62870. },
  62871. }
  62872. },
  62873. },
  62874. [
  62875. {
  62876. name: "Normal",
  62877. height: math.unit(5 + 6/12, "feet"),
  62878. default: true
  62879. },
  62880. ]
  62881. ))
  62882. characterMakers.push(() => makeCharacter(
  62883. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  62884. {
  62885. front: {
  62886. height: math.unit(6 + 6/12, "feet"),
  62887. weight: math.unit(140, "lb"),
  62888. name: "Front",
  62889. image: {
  62890. source: "./media/characters/sapphire-wairimea/front.svg",
  62891. extra: 475/458,
  62892. bottom: 14/489
  62893. }
  62894. },
  62895. },
  62896. [
  62897. {
  62898. name: "Normal",
  62899. height: math.unit(6 + 6/12, "feet")
  62900. },
  62901. {
  62902. name: "Macro",
  62903. height: math.unit(132, "feet"),
  62904. default: true
  62905. },
  62906. ]
  62907. ))
  62908. characterMakers.push(() => makeCharacter(
  62909. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  62910. {
  62911. front: {
  62912. height: math.unit(1.6, "meters"),
  62913. weight: math.unit(100, "lb"),
  62914. name: "Front",
  62915. image: {
  62916. source: "./media/characters/cirkazi/front.svg",
  62917. extra: 489/477,
  62918. bottom: 0/489
  62919. }
  62920. },
  62921. },
  62922. [
  62923. {
  62924. name: "Normal",
  62925. height: math.unit(1.6, "meters")
  62926. },
  62927. {
  62928. name: "Macro",
  62929. height: math.unit(800, "feet"),
  62930. default: true
  62931. },
  62932. ]
  62933. ))
  62934. characterMakers.push(() => makeCharacter(
  62935. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  62936. {
  62937. front: {
  62938. height: math.unit(5 + 10/12, "feet"),
  62939. weight: math.unit(145, "lb"),
  62940. name: "Front",
  62941. image: {
  62942. source: "./media/characters/corrin-cavelli/front.svg",
  62943. extra: 483/464,
  62944. bottom: 6/489
  62945. }
  62946. },
  62947. },
  62948. [
  62949. {
  62950. name: "Human",
  62951. height: math.unit(5 + 10/12, "feet")
  62952. },
  62953. {
  62954. name: "Giant",
  62955. height: math.unit(210, "feet"),
  62956. default: true
  62957. },
  62958. ]
  62959. ))
  62960. characterMakers.push(() => makeCharacter(
  62961. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  62962. {
  62963. back: {
  62964. height: math.unit(5 + 6/12, "feet"),
  62965. weight: math.unit(115, "lb"),
  62966. name: "Back",
  62967. image: {
  62968. source: "./media/characters/lori-lopez/back.svg",
  62969. extra: 483/474,
  62970. bottom: 6/489
  62971. }
  62972. },
  62973. },
  62974. [
  62975. {
  62976. name: "Human",
  62977. height: math.unit(5 + 6/12, "feet")
  62978. },
  62979. {
  62980. name: "Macro",
  62981. height: math.unit(198, "feet"),
  62982. default: true
  62983. },
  62984. ]
  62985. ))
  62986. characterMakers.push(() => makeCharacter(
  62987. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  62988. {
  62989. front: {
  62990. height: math.unit(6, "feet"),
  62991. weight: math.unit(220, "lb"),
  62992. name: "Front",
  62993. image: {
  62994. source: "./media/characters/sylvia-beauregard/front.svg",
  62995. extra: 483/479,
  62996. bottom: 6/489
  62997. }
  62998. },
  62999. },
  63000. [
  63001. {
  63002. name: "Macro",
  63003. height: math.unit(2071, "feet"),
  63004. default: true
  63005. },
  63006. ]
  63007. ))
  63008. characterMakers.push(() => makeCharacter(
  63009. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63010. {
  63011. back: {
  63012. height: math.unit(5 + 6/12, "feet"),
  63013. weight: math.unit(160, "lb"),
  63014. name: "Back",
  63015. image: {
  63016. source: "./media/characters/akiko-takahashi/back.svg",
  63017. extra: 459/454,
  63018. bottom: 27/486
  63019. }
  63020. },
  63021. },
  63022. [
  63023. {
  63024. name: "Human",
  63025. height: math.unit(5 + 6/12, "feet")
  63026. },
  63027. {
  63028. name: "Macro",
  63029. height: math.unit(198, "feet"),
  63030. default: true
  63031. },
  63032. {
  63033. name: "Megamacro",
  63034. height: math.unit(7128, "feet")
  63035. },
  63036. ]
  63037. ))
  63038. characterMakers.push(() => makeCharacter(
  63039. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63040. {
  63041. front: {
  63042. height: math.unit(6, "feet"),
  63043. weight: math.unit(140, "lb"),
  63044. name: "Front",
  63045. image: {
  63046. source: "./media/characters/velvet-garza/front.svg",
  63047. extra: 480/462,
  63048. bottom: 7/487
  63049. }
  63050. },
  63051. },
  63052. [
  63053. {
  63054. name: "Macro",
  63055. height: math.unit(37, "feet"),
  63056. default: true
  63057. },
  63058. ]
  63059. ))
  63060. characterMakers.push(() => makeCharacter(
  63061. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63062. {
  63063. front: {
  63064. height: math.unit(7 + 6/12, "feet"),
  63065. weight: math.unit(400, "lb"),
  63066. name: "Front",
  63067. image: {
  63068. source: "./media/characters/gaia/front.svg",
  63069. extra: 474/463,
  63070. bottom: 13/487
  63071. }
  63072. },
  63073. },
  63074. [
  63075. {
  63076. name: "MiniMacro",
  63077. height: math.unit(7 + 6/12, "feet")
  63078. },
  63079. {
  63080. name: "GigaMacro",
  63081. height: math.unit(14500, "feet"),
  63082. default: true
  63083. },
  63084. ]
  63085. ))
  63086. characterMakers.push(() => makeCharacter(
  63087. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63088. {
  63089. front: {
  63090. height: math.unit(6, "feet"),
  63091. weight: math.unit(150, "lb"),
  63092. name: "Front",
  63093. image: {
  63094. source: "./media/characters/tim/front.svg",
  63095. extra: 1878/1743,
  63096. bottom: 9/1887
  63097. }
  63098. },
  63099. frontDressed: {
  63100. height: math.unit(6, "feet"),
  63101. weight: math.unit(150, "lb"),
  63102. name: "Front (Dressed)",
  63103. image: {
  63104. source: "./media/characters/tim/front-dressed.svg",
  63105. extra: 1765/1485,
  63106. bottom: 48/1813
  63107. }
  63108. },
  63109. backDressed: {
  63110. height: math.unit(6, "feet"),
  63111. weight: math.unit(150, "lb"),
  63112. name: "Back (Dressed)",
  63113. image: {
  63114. source: "./media/characters/tim/back-dressed.svg",
  63115. extra: 1750/1465,
  63116. bottom: 25/1775
  63117. }
  63118. },
  63119. dick: {
  63120. height: math.unit(1.5, "feet"),
  63121. weight: math.unit(6, "lb"),
  63122. name: "Dick",
  63123. image: {
  63124. source: "./media/characters/tim/dick.svg"
  63125. }
  63126. },
  63127. hand: {
  63128. height: math.unit(0.522, "feet"),
  63129. name: "Hand",
  63130. image: {
  63131. source: "./media/characters/tim/hand.svg"
  63132. }
  63133. },
  63134. palm: {
  63135. height: math.unit(0.48, "feet"),
  63136. name: "Palm",
  63137. image: {
  63138. source: "./media/characters/tim/palm.svg"
  63139. }
  63140. },
  63141. paw: {
  63142. height: math.unit(0.9, "feet"),
  63143. name: "Paw",
  63144. image: {
  63145. source: "./media/characters/tim/paw.svg"
  63146. }
  63147. },
  63148. sole: {
  63149. height: math.unit(0.88, "feet"),
  63150. name: "Sole",
  63151. image: {
  63152. source: "./media/characters/tim/sole.svg"
  63153. }
  63154. },
  63155. },
  63156. [
  63157. {
  63158. name: "Macro",
  63159. height: math.unit(1000, "feet")
  63160. },
  63161. {
  63162. name: "Megamacro",
  63163. height: math.unit(10000, "feet"),
  63164. default: true
  63165. },
  63166. {
  63167. name: "Megamacro+",
  63168. height: math.unit(50000, "feet")
  63169. },
  63170. {
  63171. name: "Gigamacro",
  63172. height: math.unit(150000, "km")
  63173. },
  63174. ]
  63175. ))
  63176. characterMakers.push(() => makeCharacter(
  63177. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63178. {
  63179. front: {
  63180. height: math.unit(5 + 8/12, "feet"),
  63181. weight: math.unit(170, "lb"),
  63182. name: "Front",
  63183. image: {
  63184. source: "./media/characters/abel-delreoux/front.svg",
  63185. extra: 1615/1500,
  63186. bottom: 82/1697
  63187. }
  63188. },
  63189. back: {
  63190. height: math.unit(5 + 8/12, "feet"),
  63191. weight: math.unit(170, "lb"),
  63192. name: "Back",
  63193. image: {
  63194. source: "./media/characters/abel-delreoux/back.svg",
  63195. extra: 1644/1534,
  63196. bottom: 24/1668
  63197. }
  63198. },
  63199. casual: {
  63200. height: math.unit(5 + 8/12, "feet"),
  63201. weight: math.unit(170, "lb"),
  63202. name: "Casual",
  63203. image: {
  63204. source: "./media/characters/abel-delreoux/casual.svg",
  63205. extra: 1716/1598,
  63206. bottom: 29/1745
  63207. }
  63208. },
  63209. sleepy: {
  63210. height: math.unit(5 + 8/12, "feet"),
  63211. weight: math.unit(170, "lb"),
  63212. name: "Sleepy",
  63213. image: {
  63214. source: "./media/characters/abel-delreoux/sleepy.svg",
  63215. extra: 1649/1573,
  63216. bottom: 22/1671
  63217. }
  63218. },
  63219. fem: {
  63220. height: math.unit(5 + 8/12, "feet"),
  63221. weight: math.unit(170, "lb"),
  63222. name: "Fem",
  63223. image: {
  63224. source: "./media/characters/abel-delreoux/fem.svg",
  63225. extra: 1680/1564,
  63226. bottom: 17/1697
  63227. }
  63228. },
  63229. hand: {
  63230. height: math.unit(0.78, "feet"),
  63231. name: "Hand",
  63232. image: {
  63233. source: "./media/characters/abel-delreoux/hand.svg"
  63234. }
  63235. },
  63236. paw: {
  63237. height: math.unit(0.78, "feet"),
  63238. name: "Paw",
  63239. image: {
  63240. source: "./media/characters/abel-delreoux/paw.svg"
  63241. }
  63242. },
  63243. },
  63244. [
  63245. {
  63246. name: "Normal",
  63247. height: math.unit(5 + 8/12, "feet"),
  63248. default: true
  63249. },
  63250. ]
  63251. ))
  63252. characterMakers.push(() => makeCharacter(
  63253. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63254. {
  63255. front: {
  63256. height: math.unit(6, "feet"),
  63257. weight: math.unit(159, "lb"),
  63258. name: "Front",
  63259. image: {
  63260. source: "./media/characters/meus/front.svg",
  63261. extra: 938/843,
  63262. bottom: 37/975
  63263. }
  63264. },
  63265. back: {
  63266. height: math.unit(6, "feet"),
  63267. weight: math.unit(159, "lb"),
  63268. name: "Back",
  63269. image: {
  63270. source: "./media/characters/meus/back.svg",
  63271. extra: 967/873,
  63272. bottom: 12/979
  63273. }
  63274. },
  63275. },
  63276. [
  63277. {
  63278. name: "Micro",
  63279. height: math.unit(2, "inches")
  63280. },
  63281. {
  63282. name: "Mini",
  63283. height: math.unit(6, "inches")
  63284. },
  63285. {
  63286. name: "Normal",
  63287. height: math.unit(6, "feet"),
  63288. default: true
  63289. },
  63290. {
  63291. name: "Macro",
  63292. height: math.unit(84, "feet")
  63293. },
  63294. ]
  63295. ))
  63296. characterMakers.push(() => makeCharacter(
  63297. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63298. {
  63299. front: {
  63300. height: math.unit(60, "cm"),
  63301. weight: math.unit(18, "kg"),
  63302. name: "Front",
  63303. image: {
  63304. source: "./media/characters/yamato/front.svg",
  63305. extra: 733/688,
  63306. bottom: 29/762
  63307. }
  63308. },
  63309. },
  63310. [
  63311. {
  63312. name: "Micro",
  63313. height: math.unit(6, "cm")
  63314. },
  63315. {
  63316. name: "Normal",
  63317. height: math.unit(60, "cm"),
  63318. default: true
  63319. },
  63320. ]
  63321. ))
  63322. characterMakers.push(() => makeCharacter(
  63323. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63324. {
  63325. front: {
  63326. height: math.unit(9, "feet"),
  63327. weight: math.unit(518, "lb"),
  63328. name: "Front",
  63329. image: {
  63330. source: "./media/characters/barus/front.svg",
  63331. extra: 1877/1795,
  63332. bottom: 55/1932
  63333. }
  63334. },
  63335. },
  63336. [
  63337. {
  63338. name: "Base Height",
  63339. height: math.unit(9, "feet"),
  63340. default: true
  63341. },
  63342. {
  63343. name: "Large",
  63344. height: math.unit(18, "feet")
  63345. },
  63346. {
  63347. name: "Giant",
  63348. height: math.unit(100, "feet")
  63349. },
  63350. {
  63351. name: "Huge",
  63352. height: math.unit(500, "feet")
  63353. },
  63354. {
  63355. name: "Enormous",
  63356. height: math.unit(300, "meters")
  63357. },
  63358. {
  63359. name: "Deity Among Man",
  63360. height: math.unit(3000, "meters")
  63361. },
  63362. ]
  63363. ))
  63364. characterMakers.push(() => makeCharacter(
  63365. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63366. {
  63367. front: {
  63368. height: math.unit(1.7, "meters"),
  63369. name: "Front",
  63370. image: {
  63371. source: "./media/characters/yari/front.svg",
  63372. extra: 1210/1125,
  63373. bottom: 283/1493
  63374. }
  63375. },
  63376. back: {
  63377. height: math.unit(1.7, "meters"),
  63378. name: "Back",
  63379. image: {
  63380. source: "./media/characters/yari/back.svg",
  63381. extra: 1240/1195,
  63382. bottom: 180/1420
  63383. }
  63384. },
  63385. head: {
  63386. height: math.unit(1.26, "feet"),
  63387. name: "Head",
  63388. image: {
  63389. source: "./media/characters/yari/head.svg"
  63390. }
  63391. },
  63392. },
  63393. [
  63394. {
  63395. name: "Nano",
  63396. height: math.unit(0.5, "mm")
  63397. },
  63398. {
  63399. name: "Micro",
  63400. height: math.unit(3, "inches")
  63401. },
  63402. {
  63403. name: "Short",
  63404. height: math.unit(1.5, "meters")
  63405. },
  63406. {
  63407. name: "Norm",
  63408. height: math.unit(1.7, "meters"),
  63409. default: true
  63410. },
  63411. ]
  63412. ))
  63413. characterMakers.push(() => makeCharacter(
  63414. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63415. {
  63416. front: {
  63417. height: math.unit(5 + 2/12, "feet"),
  63418. weight: math.unit(110, "lb"),
  63419. name: "Front",
  63420. image: {
  63421. source: "./media/characters/salem/front.svg",
  63422. extra: 1895/1800,
  63423. bottom: 23/1918
  63424. }
  63425. },
  63426. back: {
  63427. height: math.unit(5 + 2/12, "feet"),
  63428. weight: math.unit(110, "lb"),
  63429. name: "Back",
  63430. image: {
  63431. source: "./media/characters/salem/back.svg",
  63432. extra: 1875/1802,
  63433. bottom: 20/1895
  63434. }
  63435. },
  63436. head: {
  63437. height: math.unit(1, "feet"),
  63438. name: "Head",
  63439. image: {
  63440. source: "./media/characters/salem/head.svg"
  63441. }
  63442. },
  63443. paw: {
  63444. height: math.unit(0.59, "feet"),
  63445. name: "Paw",
  63446. image: {
  63447. source: "./media/characters/salem/paw.svg"
  63448. }
  63449. },
  63450. beans: {
  63451. height: math.unit(0.66, "feet"),
  63452. name: "Beans",
  63453. image: {
  63454. source: "./media/characters/salem/beans.svg"
  63455. }
  63456. },
  63457. eye: {
  63458. height: math.unit(0.224, "feet"),
  63459. name: "Eye",
  63460. image: {
  63461. source: "./media/characters/salem/eye.svg"
  63462. }
  63463. },
  63464. semiferal: {
  63465. height: math.unit(2.3, "feet"),
  63466. name: "Semiferal",
  63467. image: {
  63468. source: "./media/characters/salem/semiferal.svg",
  63469. extra: 914/839,
  63470. bottom: 32/946
  63471. }
  63472. },
  63473. },
  63474. [
  63475. {
  63476. name: "Micro",
  63477. height: math.unit(4, "inches")
  63478. },
  63479. {
  63480. name: "Normal",
  63481. height: math.unit(5 + 2/12, "feet"),
  63482. default: true
  63483. },
  63484. {
  63485. name: "Macro",
  63486. height: math.unit(108, "feet")
  63487. },
  63488. {
  63489. name: "Macro+",
  63490. height: math.unit(1500, "feet")
  63491. },
  63492. ]
  63493. ))
  63494. characterMakers.push(() => makeCharacter(
  63495. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63496. {
  63497. front: {
  63498. height: math.unit(7 + 6/12, "feet"),
  63499. weight: math.unit(600, "kg"),
  63500. preyCapacity: math.unit(10, "people"),
  63501. name: "Front",
  63502. image: {
  63503. source: "./media/characters/kii/front.svg",
  63504. extra: 3296/3087,
  63505. bottom: 130/3426
  63506. }
  63507. },
  63508. },
  63509. [
  63510. {
  63511. name: "Normal",
  63512. height: math.unit(7 + 6/12, "feet"),
  63513. default: true
  63514. },
  63515. ]
  63516. ))
  63517. characterMakers.push(() => makeCharacter(
  63518. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63519. {
  63520. front: {
  63521. height: math.unit(2, "meters"),
  63522. weight: math.unit(200, "lb"),
  63523. name: "Front",
  63524. image: {
  63525. source: "./media/characters/taffy/front.svg",
  63526. extra: 1666/1618,
  63527. bottom: 157/1823
  63528. }
  63529. },
  63530. back: {
  63531. height: math.unit(2, "meters"),
  63532. weight: math.unit(200, "lb"),
  63533. name: "Back",
  63534. image: {
  63535. source: "./media/characters/taffy/back.svg",
  63536. extra: 1635/1583,
  63537. bottom: 153/1788
  63538. }
  63539. },
  63540. },
  63541. [
  63542. {
  63543. name: "Normal",
  63544. height: math.unit(2, "meters"),
  63545. default: true
  63546. },
  63547. ]
  63548. ))
  63549. characterMakers.push(() => makeCharacter(
  63550. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63551. {
  63552. front: {
  63553. height: math.unit(1.55, "meters"),
  63554. weight: math.unit(60, "kg"),
  63555. name: "Front",
  63556. image: {
  63557. source: "./media/characters/barley/front.svg",
  63558. extra: 1520/1340,
  63559. bottom: 47/1567
  63560. }
  63561. },
  63562. back: {
  63563. height: math.unit(1.55, "meters"),
  63564. weight: math.unit(60, "kg"),
  63565. name: "Back",
  63566. image: {
  63567. source: "./media/characters/barley/back.svg",
  63568. extra: 1543/1341,
  63569. bottom: 12/1555
  63570. }
  63571. },
  63572. feet: {
  63573. height: math.unit(2.18, "feet"),
  63574. name: "Feet",
  63575. image: {
  63576. source: "./media/characters/barley/feet.svg"
  63577. }
  63578. },
  63579. },
  63580. [
  63581. {
  63582. name: "Normal",
  63583. height: math.unit(1.55, "meters"),
  63584. default: true
  63585. },
  63586. ]
  63587. ))
  63588. characterMakers.push(() => makeCharacter(
  63589. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  63590. {
  63591. dressed: {
  63592. height: math.unit(6, "feet"),
  63593. name: "Dressed",
  63594. image: {
  63595. source: "./media/characters/lydia-lopez/dressed.svg",
  63596. extra: 1319/1277,
  63597. bottom: 90/1409
  63598. }
  63599. },
  63600. nude: {
  63601. height: math.unit(6, "feet"),
  63602. name: "Nude",
  63603. image: {
  63604. source: "./media/characters/lydia-lopez/nude.svg",
  63605. extra: 1319/1277,
  63606. bottom: 90/1409
  63607. }
  63608. },
  63609. },
  63610. [
  63611. {
  63612. name: "Normal",
  63613. height: math.unit(6, "feet"),
  63614. default: true
  63615. },
  63616. {
  63617. name: "Maximum",
  63618. height: math.unit(2101, "feet")
  63619. },
  63620. ]
  63621. ))
  63622. characterMakers.push(() => makeCharacter(
  63623. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  63624. {
  63625. front: {
  63626. height: math.unit(5 + 4/12, "feet"),
  63627. weight: math.unit(250, "lb"),
  63628. volume: math.unit(20, "gallons"),
  63629. name: "Front",
  63630. image: {
  63631. source: "./media/characters/kira-slime/front.svg",
  63632. extra: 442/403,
  63633. bottom: 18/460
  63634. }
  63635. },
  63636. frontNsfw: {
  63637. height: math.unit(5 + 4/12, "feet"),
  63638. weight: math.unit(250, "lb"),
  63639. volume: math.unit(20, "gallons"),
  63640. name: "Front (NSFW)",
  63641. image: {
  63642. source: "./media/characters/kira-slime/front-nsfw.svg",
  63643. extra: 442/403,
  63644. bottom: 18/460
  63645. }
  63646. },
  63647. },
  63648. [
  63649. {
  63650. name: "Droplet",
  63651. height: math.unit(0.0464452, "feet")
  63652. },
  63653. {
  63654. name: "Pint",
  63655. height: math.unit(0.9824, "feet")
  63656. },
  63657. {
  63658. name: "Bucket",
  63659. height: math.unit(2.83, "feet")
  63660. },
  63661. {
  63662. name: "Normal",
  63663. height: math.unit(5 + 4/12, "feet"),
  63664. default: true
  63665. },
  63666. {
  63667. name: "Tub",
  63668. height: math.unit(8.46614, "feet")
  63669. },
  63670. {
  63671. name: "Pool",
  63672. height: math.unit(31.1895, "feet")
  63673. },
  63674. {
  63675. name: "Pond",
  63676. height: math.unit(170.349, "feet")
  63677. },
  63678. {
  63679. name: "Lake",
  63680. height: math.unit(289334, "feet")
  63681. },
  63682. {
  63683. name: "Ocean",
  63684. height: math.unit(1.11940e+7, "feet")
  63685. },
  63686. ]
  63687. ))
  63688. characterMakers.push(() => makeCharacter(
  63689. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  63690. {
  63691. front: {
  63692. height: math.unit(5 + 6/12, "feet"),
  63693. weight: math.unit(120, "lb"),
  63694. name: "Front",
  63695. image: {
  63696. source: "./media/characters/holiday/front.svg",
  63697. extra: 456/403,
  63698. bottom: 4/460
  63699. }
  63700. },
  63701. back: {
  63702. height: math.unit(5 + 6/12, "feet"),
  63703. weight: math.unit(120, "lb"),
  63704. name: "Back",
  63705. image: {
  63706. source: "./media/characters/holiday/back.svg",
  63707. extra: 450/404,
  63708. bottom: 12/462
  63709. }
  63710. },
  63711. head: {
  63712. height: math.unit(2.3, "feet"),
  63713. name: "Head",
  63714. image: {
  63715. source: "./media/characters/holiday/head.svg"
  63716. }
  63717. },
  63718. },
  63719. [
  63720. {
  63721. name: "Normal",
  63722. height: math.unit(5 + 6/12, "feet"),
  63723. default: true
  63724. },
  63725. {
  63726. name: "Macro",
  63727. height: math.unit(6574.25, "feet")
  63728. },
  63729. ]
  63730. ))
  63731. characterMakers.push(() => makeCharacter(
  63732. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  63733. {
  63734. front: {
  63735. height: math.unit(6 + 2/12, "feet"),
  63736. weight: math.unit(200, "lb"),
  63737. name: "Front",
  63738. image: {
  63739. source: "./media/characters/camina/front.svg",
  63740. extra: 1048/985,
  63741. bottom: 30/1078
  63742. }
  63743. },
  63744. },
  63745. [
  63746. {
  63747. name: "Normal",
  63748. height: math.unit(6 + 2/12, "feet"),
  63749. default: true
  63750. },
  63751. ]
  63752. ))
  63753. characterMakers.push(() => makeCharacter(
  63754. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  63755. {
  63756. front: {
  63757. height: math.unit(30, "cm"),
  63758. weight: math.unit(420, "grams"),
  63759. name: "Front",
  63760. image: {
  63761. source: "./media/characters/smuck/front.svg",
  63762. extra: 379/345,
  63763. bottom: 36/415
  63764. }
  63765. },
  63766. },
  63767. [
  63768. {
  63769. name: "Smuck-Sized",
  63770. height: math.unit(30, "cm"),
  63771. default: true
  63772. },
  63773. ]
  63774. ))
  63775. characterMakers.push(() => makeCharacter(
  63776. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  63777. {
  63778. frontSfw: {
  63779. height: math.unit(10, "feet"),
  63780. weight: math.unit(1000, "kg"),
  63781. preyCapacity: math.unit(2, "people"),
  63782. name: "Front (SFW)",
  63783. image: {
  63784. source: "./media/characters/bylur/front-sfw.svg",
  63785. extra: 419/343,
  63786. bottom: 3/422
  63787. },
  63788. default: true
  63789. },
  63790. frontSheath: {
  63791. height: math.unit(10, "feet"),
  63792. weight: math.unit(1000, "kg"),
  63793. preyCapacity: math.unit(2, "people"),
  63794. name: "Front (Sheath)",
  63795. image: {
  63796. source: "./media/characters/bylur/front-sheath.svg",
  63797. extra: 419/343,
  63798. bottom: 3/422
  63799. }
  63800. },
  63801. frontErect: {
  63802. height: math.unit(10, "feet"),
  63803. weight: math.unit(1000, "kg"),
  63804. preyCapacity: math.unit(2, "people"),
  63805. name: "Front (Erect)",
  63806. image: {
  63807. source: "./media/characters/bylur/front-erect.svg",
  63808. extra: 419/343,
  63809. bottom: 3/422
  63810. }
  63811. },
  63812. back: {
  63813. height: math.unit(10, "feet"),
  63814. weight: math.unit(1000, "kg"),
  63815. preyCapacity: math.unit(2, "people"),
  63816. name: "Back",
  63817. image: {
  63818. source: "./media/characters/bylur/back.svg",
  63819. extra: 392/315,
  63820. bottom: 3/395
  63821. }
  63822. },
  63823. maw: {
  63824. height: math.unit(3.65, "feet"),
  63825. name: "Maw",
  63826. image: {
  63827. source: "./media/characters/bylur/maw.svg"
  63828. }
  63829. },
  63830. },
  63831. [
  63832. {
  63833. name: "Slightly Human Sized",
  63834. height: math.unit(10, "feet")
  63835. },
  63836. {
  63837. name: "Normal",
  63838. height: math.unit(35, "feet"),
  63839. default: true
  63840. },
  63841. {
  63842. name: "Macro",
  63843. height: math.unit(130, "feet")
  63844. },
  63845. ]
  63846. ))
  63847. characterMakers.push(() => makeCharacter(
  63848. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  63849. {
  63850. frontNsfw: {
  63851. height: math.unit(6, "feet"),
  63852. weight: math.unit(250, "lb"),
  63853. preyCapacity: math.unit(0.05, "people"),
  63854. name: "Front (NSFW)",
  63855. image: {
  63856. source: "./media/characters/oarven/front-nsfw.svg",
  63857. extra: 1795/1783,
  63858. bottom: 142/1937
  63859. }
  63860. },
  63861. frontSfw: {
  63862. height: math.unit(6, "feet"),
  63863. weight: math.unit(250, "lb"),
  63864. preyCapacity: math.unit(0.05, "people"),
  63865. name: "Front (SFW)",
  63866. image: {
  63867. source: "./media/characters/oarven/front-sfw.svg",
  63868. extra: 1795/1783,
  63869. bottom: 142/1937
  63870. }
  63871. },
  63872. },
  63873. [
  63874. {
  63875. name: "Megamacro",
  63876. height: math.unit(5, "miles"),
  63877. default: true
  63878. },
  63879. {
  63880. name: "Maximum Height",
  63881. height: math.unit(5, "AUs")
  63882. },
  63883. ]
  63884. ))
  63885. //characters
  63886. function makeCharacters() {
  63887. const results = [];
  63888. characterMakers.forEach(character => {
  63889. results.push(character());
  63890. });
  63891. return results;
  63892. }