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

69491 行
1.7 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. "king-cheetah": {
  2419. name: "King Cheetah",
  2420. parents: ["cheetah"]
  2421. },
  2422. "secretary-bird": {
  2423. name: "Secretary Bird",
  2424. parents: ["bird-of-prey"]
  2425. },
  2426. "russian-blue": {
  2427. name: "Russian Blue",
  2428. parents: ["housecat"]
  2429. },
  2430. "wholphin": {
  2431. name: "Wholphin",
  2432. parents: ["whale", "dolphin"]
  2433. },
  2434. "sea-dragon": {
  2435. name: "Sea Dragon",
  2436. parents: ["dragon", "aquatic"]
  2437. },
  2438. "brown-bear": {
  2439. name: "Brown Bear",
  2440. parents: ["bear"]
  2441. },
  2442. "vampire-bat": {
  2443. name: "Vampire Bat",
  2444. parents: ["bat"]
  2445. },
  2446. "dilophosaurus": {
  2447. name: "Dilophosaurus",
  2448. parents: ["theropod"]
  2449. },
  2450. "nagainini": {
  2451. name: "Nagainini",
  2452. parents: ["naga"]
  2453. },
  2454. "kaizleon": {
  2455. name: "Kaizleon",
  2456. parents: ["humanoid"]
  2457. },
  2458. "dragoyle": {
  2459. name: "Dragoyle",
  2460. parents: ["dragon", "gargoyle"]
  2461. },
  2462. "gargoyle": {
  2463. name: "Gargoyle",
  2464. parents: ["construct", "monster"]
  2465. },
  2466. "sea-serpent": {
  2467. name: "Sea Serpent",
  2468. parents: ["aquatic", "monster"]
  2469. },
  2470. "dutch-angel-dragon": {
  2471. name: "Dutch Angel Dragon",
  2472. parents: ["dragon", "avian"]
  2473. },
  2474. "house-mouse": {
  2475. name: "House Mouse",
  2476. parents: ["mouse"]
  2477. },
  2478. "servine": {
  2479. name: "Servine",
  2480. parents: ["pokemon", "snake", "plant"]
  2481. },
  2482. "dragonite": {
  2483. name: "Dragonite",
  2484. parents: ["pokemon", "dragon"]
  2485. },
  2486. "virginia-opossum": {
  2487. name: "Virginia Opossum",
  2488. parents: ["opossum"]
  2489. },
  2490. "furret": {
  2491. name: "Furret",
  2492. parents: ["pokemon", "ferret"]
  2493. },
  2494. "leavanny": {
  2495. name: "Leavanny",
  2496. parents: ["insect", "plant", "pokemon"]
  2497. },
  2498. "articuno": {
  2499. name: "Articuno",
  2500. parents: ["avian", "pokemon"]
  2501. },
  2502. "froslass": {
  2503. name: "Froslass",
  2504. parents: ["pokemon", "humanoid"]
  2505. },
  2506. }
  2507. //species
  2508. function getSpeciesInfo(speciesList) {
  2509. let result = new Set();
  2510. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2511. result.add(entry)
  2512. });
  2513. return Array.from(result);
  2514. };
  2515. function getSpeciesInfoHelper(species) {
  2516. if (!speciesData[species]) {
  2517. console.warn(species + " doesn't exist");
  2518. return [];
  2519. }
  2520. if (speciesData[species].parents) {
  2521. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2522. } else {
  2523. return [species];
  2524. }
  2525. }
  2526. characterMakers.push(() => makeCharacter(
  2527. {
  2528. name: "Fen",
  2529. species: ["crux"],
  2530. description: {
  2531. title: "Bio",
  2532. text: "Very furry. Sheds on everything."
  2533. },
  2534. tags: [
  2535. "anthro",
  2536. "goo"
  2537. ]
  2538. },
  2539. {
  2540. front: {
  2541. height: math.unit(12, "feet"),
  2542. weight: math.unit(2400, "lb"),
  2543. preyCapacity: math.unit(1, "people"),
  2544. name: "Front",
  2545. image: {
  2546. source: "./media/characters/fen/front.svg",
  2547. extra: 1804/1562,
  2548. bottom: 205/2009
  2549. },
  2550. extraAttributes: {
  2551. pawSize: {
  2552. name: "Paw Size",
  2553. power: 2,
  2554. type: "area",
  2555. base: math.unit(0.35, "m^2")
  2556. }
  2557. }
  2558. },
  2559. diving: {
  2560. height: math.unit(4.9, "meters"),
  2561. weight: math.unit(2400, "lb"),
  2562. name: "Diving",
  2563. image: {
  2564. source: "./media/characters/fen/diving.svg"
  2565. }
  2566. },
  2567. sleeby: {
  2568. height: math.unit(3.45, "meters"),
  2569. weight: math.unit(2400, "lb"),
  2570. name: "Sleeby",
  2571. image: {
  2572. source: "./media/characters/fen/sleeby.svg"
  2573. }
  2574. },
  2575. goo: {
  2576. height: math.unit(12, "feet"),
  2577. weight: math.unit(3600, "lb"),
  2578. volume: math.unit(1000, "liters"),
  2579. preyCapacity: math.unit(6, "people"),
  2580. name: "Goo",
  2581. image: {
  2582. source: "./media/characters/fen/goo.svg",
  2583. extra: 1307/1071,
  2584. bottom: 134/1441
  2585. }
  2586. },
  2587. horror: {
  2588. height: math.unit(13.6, "feet"),
  2589. weight: math.unit(2400, "lb"),
  2590. preyCapacity: math.unit(1, "people"),
  2591. name: "Horror",
  2592. image: {
  2593. source: "./media/characters/fen/horror.svg",
  2594. extra: 893/797,
  2595. bottom: 0/893
  2596. }
  2597. },
  2598. gooNsfw: {
  2599. height: math.unit(12, "feet"),
  2600. weight: math.unit(3750, "lb"),
  2601. volume: math.unit(1000, "liters"),
  2602. preyCapacity: math.unit(6, "people"),
  2603. name: "Goo (NSFW)",
  2604. image: {
  2605. source: "./media/characters/fen/goo-nsfw.svg",
  2606. extra: 1875/1734,
  2607. bottom: 122/1997
  2608. }
  2609. },
  2610. maw: {
  2611. height: math.unit(5.03, "feet"),
  2612. name: "Maw",
  2613. image: {
  2614. source: "./media/characters/fen/maw.svg"
  2615. }
  2616. },
  2617. gooCeiling: {
  2618. height: math.unit(6.6, "feet"),
  2619. weight: math.unit(3000, "lb"),
  2620. volume: math.unit(1000, "liters"),
  2621. preyCapacity: math.unit(6, "people"),
  2622. name: "Maw (Goo)",
  2623. image: {
  2624. source: "./media/characters/fen/goo-maw.svg"
  2625. }
  2626. },
  2627. paw: {
  2628. height: math.unit(3.77, "feet"),
  2629. name: "Paw",
  2630. image: {
  2631. source: "./media/characters/fen/paw.svg"
  2632. },
  2633. extraAttributes: {
  2634. "toeSize": {
  2635. name: "Toe Size",
  2636. power: 2,
  2637. type: "area",
  2638. base: math.unit(0.02875, "m^2")
  2639. },
  2640. "pawSize": {
  2641. name: "Paw Size",
  2642. power: 2,
  2643. type: "area",
  2644. base: math.unit(0.378, "m^2")
  2645. },
  2646. }
  2647. },
  2648. tail: {
  2649. height: math.unit(12.1, "feet"),
  2650. name: "Tail",
  2651. image: {
  2652. source: "./media/characters/fen/tail.svg"
  2653. }
  2654. },
  2655. tailFull: {
  2656. height: math.unit(12.1, "feet"),
  2657. name: "Full Tail",
  2658. image: {
  2659. source: "./media/characters/fen/tail-full.svg"
  2660. }
  2661. },
  2662. back: {
  2663. height: math.unit(12, "feet"),
  2664. weight: math.unit(2400, "lb"),
  2665. name: "Back",
  2666. image: {
  2667. source: "./media/characters/fen/back.svg",
  2668. },
  2669. info: {
  2670. description: {
  2671. mode: "append",
  2672. text: "\n\nHe is not currently looking at you."
  2673. }
  2674. }
  2675. },
  2676. full: {
  2677. height: math.unit(1.85, "meter"),
  2678. weight: math.unit(3200, "lb"),
  2679. preyCapacity: math.unit(3, "people"),
  2680. name: "Full",
  2681. image: {
  2682. source: "./media/characters/fen/full.svg",
  2683. extra: 1133/859,
  2684. bottom: 145/1278
  2685. },
  2686. info: {
  2687. description: {
  2688. mode: "append",
  2689. text: "\n\nMunch."
  2690. }
  2691. }
  2692. },
  2693. gooLounging: {
  2694. height: math.unit(4.53, "feet"),
  2695. weight: math.unit(3000, "lb"),
  2696. preyCapacity: math.unit(6, "people"),
  2697. name: "Goo (Lounging)",
  2698. image: {
  2699. source: "./media/characters/fen/goo-lounging.svg",
  2700. bottom: 116 / 613
  2701. }
  2702. },
  2703. lounging: {
  2704. height: math.unit(10.52, "feet"),
  2705. weight: math.unit(2400, "lb"),
  2706. name: "Lounging",
  2707. image: {
  2708. source: "./media/characters/fen/lounging.svg"
  2709. }
  2710. },
  2711. },
  2712. [
  2713. {
  2714. name: "Small",
  2715. height: math.unit(2.2428, "meter")
  2716. },
  2717. {
  2718. name: "Normal",
  2719. height: math.unit(12, "feet"),
  2720. default: true,
  2721. },
  2722. {
  2723. name: "Big",
  2724. height: math.unit(20, "feet")
  2725. },
  2726. {
  2727. name: "Minimacro",
  2728. height: math.unit(40, "feet"),
  2729. info: {
  2730. description: {
  2731. mode: "append",
  2732. text: "\n\nTOO DAMN BIG"
  2733. }
  2734. }
  2735. },
  2736. {
  2737. name: "Macro",
  2738. height: math.unit(100, "feet"),
  2739. info: {
  2740. description: {
  2741. mode: "append",
  2742. text: "\n\nTOO DAMN BIG"
  2743. }
  2744. }
  2745. },
  2746. {
  2747. name: "Megamacro",
  2748. height: math.unit(2, "miles")
  2749. },
  2750. {
  2751. name: "Gigamacro",
  2752. height: math.unit(10, "earths")
  2753. },
  2754. ]
  2755. ))
  2756. characterMakers.push(() => makeCharacter(
  2757. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2758. {
  2759. front: {
  2760. height: math.unit(183, "cm"),
  2761. weight: math.unit(80, "kg"),
  2762. name: "Front",
  2763. image: {
  2764. source: "./media/characters/sofia-fluttertail/front.svg",
  2765. bottom: 0.01,
  2766. extra: 2154 / 2081
  2767. }
  2768. },
  2769. frontAlt: {
  2770. height: math.unit(183, "cm"),
  2771. weight: math.unit(80, "kg"),
  2772. name: "Front (alt)",
  2773. image: {
  2774. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2775. }
  2776. },
  2777. back: {
  2778. height: math.unit(183, "cm"),
  2779. weight: math.unit(80, "kg"),
  2780. name: "Back",
  2781. image: {
  2782. source: "./media/characters/sofia-fluttertail/back.svg"
  2783. }
  2784. },
  2785. kneeling: {
  2786. height: math.unit(125, "cm"),
  2787. weight: math.unit(80, "kg"),
  2788. name: "Kneeling",
  2789. image: {
  2790. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2791. extra: 1033 / 977,
  2792. bottom: 23.7 / 1057
  2793. }
  2794. },
  2795. maw: {
  2796. height: math.unit(183 / 5, "cm"),
  2797. name: "Maw",
  2798. image: {
  2799. source: "./media/characters/sofia-fluttertail/maw.svg"
  2800. }
  2801. },
  2802. mawcloseup: {
  2803. height: math.unit(183 / 5 * 0.41, "cm"),
  2804. name: "Maw (Closeup)",
  2805. image: {
  2806. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2807. }
  2808. },
  2809. paws: {
  2810. height: math.unit(1.17, "feet"),
  2811. name: "Paws",
  2812. image: {
  2813. source: "./media/characters/sofia-fluttertail/paws.svg",
  2814. extra: 851 / 851,
  2815. bottom: 17 / 868
  2816. }
  2817. },
  2818. },
  2819. [
  2820. {
  2821. name: "Normal",
  2822. height: math.unit(1.83, "meter")
  2823. },
  2824. {
  2825. name: "Size Thief",
  2826. height: math.unit(18, "feet")
  2827. },
  2828. {
  2829. name: "50 Foot Collie",
  2830. height: math.unit(50, "feet")
  2831. },
  2832. {
  2833. name: "Macro",
  2834. height: math.unit(96, "feet"),
  2835. default: true
  2836. },
  2837. {
  2838. name: "Megamerger",
  2839. height: math.unit(650, "feet")
  2840. },
  2841. ]
  2842. ))
  2843. characterMakers.push(() => makeCharacter(
  2844. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2845. {
  2846. front: {
  2847. height: math.unit(7, "feet"),
  2848. weight: math.unit(100, "kg"),
  2849. name: "Front",
  2850. image: {
  2851. source: "./media/characters/march/front.svg",
  2852. extra: 1992/1851,
  2853. bottom: 39/2031
  2854. }
  2855. },
  2856. foot: {
  2857. height: math.unit(0.9, "feet"),
  2858. name: "Foot",
  2859. image: {
  2860. source: "./media/characters/march/foot.svg"
  2861. }
  2862. },
  2863. },
  2864. [
  2865. {
  2866. name: "Normal",
  2867. height: math.unit(7.9, "feet")
  2868. },
  2869. {
  2870. name: "Macro",
  2871. height: math.unit(220, "meters")
  2872. },
  2873. {
  2874. name: "Megamacro",
  2875. height: math.unit(2.98, "km"),
  2876. default: true
  2877. },
  2878. {
  2879. name: "Gigamacro",
  2880. height: math.unit(15963, "km")
  2881. },
  2882. {
  2883. name: "Teramacro",
  2884. height: math.unit(2980000000, "km")
  2885. },
  2886. {
  2887. name: "Examacro",
  2888. height: math.unit(250, "parsecs")
  2889. },
  2890. ]
  2891. ))
  2892. characterMakers.push(() => makeCharacter(
  2893. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2894. {
  2895. front: {
  2896. height: math.unit(6, "feet"),
  2897. weight: math.unit(60, "kg"),
  2898. name: "Front",
  2899. image: {
  2900. source: "./media/characters/noir/front.svg",
  2901. extra: 1793/1668,
  2902. bottom: 74/1867
  2903. }
  2904. },
  2905. },
  2906. [
  2907. {
  2908. name: "Normal",
  2909. height: math.unit(6.6, "feet")
  2910. },
  2911. {
  2912. name: "Macro",
  2913. height: math.unit(500, "feet")
  2914. },
  2915. {
  2916. name: "Megamacro",
  2917. height: math.unit(2.5, "km"),
  2918. default: true
  2919. },
  2920. {
  2921. name: "Gigamacro",
  2922. height: math.unit(22500, "km")
  2923. },
  2924. {
  2925. name: "Teramacro",
  2926. height: math.unit(2500000000, "km")
  2927. },
  2928. {
  2929. name: "Examacro",
  2930. height: math.unit(200, "parsecs")
  2931. },
  2932. ]
  2933. ))
  2934. characterMakers.push(() => makeCharacter(
  2935. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2936. {
  2937. front: {
  2938. height: math.unit(7, "feet"),
  2939. weight: math.unit(100, "kg"),
  2940. name: "Front",
  2941. image: {
  2942. source: "./media/characters/okuri/front.svg",
  2943. extra: 596/554,
  2944. bottom: 17/613
  2945. }
  2946. },
  2947. back: {
  2948. height: math.unit(7, "feet"),
  2949. weight: math.unit(100, "kg"),
  2950. name: "Back",
  2951. image: {
  2952. source: "./media/characters/okuri/back.svg",
  2953. extra: 797/717,
  2954. bottom: 16/813
  2955. }
  2956. },
  2957. wings: {
  2958. height: math.unit(7, "feet"),
  2959. weight: math.unit(100, "kg"),
  2960. name: "Wings",
  2961. image: {
  2962. source: "./media/characters/okuri/wings.svg",
  2963. extra: 773/692,
  2964. bottom: 16/789
  2965. }
  2966. },
  2967. head: {
  2968. height: math.unit(2.17, "feet"),
  2969. name: "Head",
  2970. image: {
  2971. source: "./media/characters/okuri/head.svg"
  2972. }
  2973. },
  2974. casual: {
  2975. height: math.unit(7, "feet"),
  2976. weight: math.unit(100, "kg"),
  2977. name: "Casual",
  2978. image: {
  2979. source: "./media/characters/okuri/casual.svg",
  2980. extra: 463/421,
  2981. bottom: 14/477
  2982. }
  2983. },
  2984. deity: {
  2985. height: math.unit(7, "feet"),
  2986. weight: math.unit(100, "kg"),
  2987. name: "Deity",
  2988. image: {
  2989. source: "./media/characters/okuri/deity.svg",
  2990. extra: 463/421,
  2991. bottom: 14/477
  2992. }
  2993. },
  2994. armor: {
  2995. height: math.unit(7, "feet"),
  2996. weight: math.unit(100, "kg"),
  2997. name: "Armor",
  2998. image: {
  2999. source: "./media/characters/okuri/armor.svg",
  3000. extra: 463/421,
  3001. bottom: 14/477
  3002. }
  3003. },
  3004. sciFi: {
  3005. height: math.unit(7, "feet"),
  3006. weight: math.unit(100, "kg"),
  3007. name: "Sci-Fi",
  3008. image: {
  3009. source: "./media/characters/okuri/sci-fi.svg",
  3010. extra: 463/421,
  3011. bottom: 14/477
  3012. }
  3013. },
  3014. },
  3015. [
  3016. {
  3017. name: "Smallest",
  3018. height: math.unit(5 + 2/12, "feet")
  3019. },
  3020. {
  3021. name: "Smaller",
  3022. height: math.unit(300, "feet")
  3023. },
  3024. {
  3025. name: "Small",
  3026. height: math.unit(1000, "feet")
  3027. },
  3028. {
  3029. name: "Macro",
  3030. height: math.unit(1, "mile")
  3031. },
  3032. {
  3033. name: "Mega Macro (Small)",
  3034. height: math.unit(20, "km")
  3035. },
  3036. {
  3037. name: "Mega Macro (Large)",
  3038. height: math.unit(600, "km")
  3039. },
  3040. {
  3041. name: "Giga Macro",
  3042. height: math.unit(10000, "km")
  3043. },
  3044. {
  3045. name: "Normal",
  3046. height: math.unit(577560, "km"),
  3047. default: true
  3048. },
  3049. {
  3050. name: "Large",
  3051. height: math.unit(4, "galaxies")
  3052. },
  3053. {
  3054. name: "Largest",
  3055. height: math.unit(15, "multiverses")
  3056. },
  3057. ]
  3058. ))
  3059. characterMakers.push(() => makeCharacter(
  3060. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  3061. {
  3062. front: {
  3063. height: math.unit(7, "feet"),
  3064. weight: math.unit(100, "kg"),
  3065. name: "Front",
  3066. image: {
  3067. source: "./media/characters/manny/front.svg",
  3068. extra: 1,
  3069. bottom: 0.06
  3070. }
  3071. },
  3072. back: {
  3073. height: math.unit(7, "feet"),
  3074. weight: math.unit(100, "kg"),
  3075. name: "Back",
  3076. image: {
  3077. source: "./media/characters/manny/back.svg",
  3078. extra: 1,
  3079. bottom: 0.014
  3080. }
  3081. },
  3082. },
  3083. [
  3084. {
  3085. name: "Normal",
  3086. height: math.unit(7, "feet"),
  3087. },
  3088. {
  3089. name: "Macro",
  3090. height: math.unit(78, "feet"),
  3091. default: true
  3092. },
  3093. {
  3094. name: "Macro+",
  3095. height: math.unit(300, "meters")
  3096. },
  3097. {
  3098. name: "Macro++",
  3099. height: math.unit(2400, "meters")
  3100. },
  3101. {
  3102. name: "Megamacro",
  3103. height: math.unit(5167, "meters")
  3104. },
  3105. {
  3106. name: "Gigamacro",
  3107. height: math.unit(41769, "miles")
  3108. },
  3109. ]
  3110. ))
  3111. characterMakers.push(() => makeCharacter(
  3112. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  3113. {
  3114. front: {
  3115. height: math.unit(7, "feet"),
  3116. weight: math.unit(100, "kg"),
  3117. name: "Front",
  3118. image: {
  3119. source: "./media/characters/adake/front-1.svg"
  3120. }
  3121. },
  3122. frontAlt: {
  3123. height: math.unit(7, "feet"),
  3124. weight: math.unit(100, "kg"),
  3125. name: "Front (Alt)",
  3126. image: {
  3127. source: "./media/characters/adake/front-2.svg",
  3128. extra: 1,
  3129. bottom: 0.01
  3130. }
  3131. },
  3132. back: {
  3133. height: math.unit(7, "feet"),
  3134. weight: math.unit(100, "kg"),
  3135. name: "Back",
  3136. image: {
  3137. source: "./media/characters/adake/back.svg",
  3138. }
  3139. },
  3140. kneel: {
  3141. height: math.unit(5.385, "feet"),
  3142. weight: math.unit(100, "kg"),
  3143. name: "Kneeling",
  3144. image: {
  3145. source: "./media/characters/adake/kneel.svg",
  3146. bottom: 0.052
  3147. }
  3148. },
  3149. },
  3150. [
  3151. {
  3152. name: "Normal",
  3153. height: math.unit(7, "feet"),
  3154. },
  3155. {
  3156. name: "Macro",
  3157. height: math.unit(78, "feet"),
  3158. default: true
  3159. },
  3160. {
  3161. name: "Macro+",
  3162. height: math.unit(300, "meters")
  3163. },
  3164. {
  3165. name: "Macro++",
  3166. height: math.unit(2400, "meters")
  3167. },
  3168. {
  3169. name: "Megamacro",
  3170. height: math.unit(5167, "meters")
  3171. },
  3172. {
  3173. name: "Gigamacro",
  3174. height: math.unit(41769, "miles")
  3175. },
  3176. ]
  3177. ))
  3178. characterMakers.push(() => makeCharacter(
  3179. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3180. {
  3181. front: {
  3182. height: math.unit(1.65, "meters"),
  3183. weight: math.unit(50, "kg"),
  3184. name: "Front",
  3185. image: {
  3186. source: "./media/characters/elijah/front.svg",
  3187. extra: 858 / 830,
  3188. bottom: 95.5 / 953.8559
  3189. }
  3190. },
  3191. back: {
  3192. height: math.unit(1.65, "meters"),
  3193. weight: math.unit(50, "kg"),
  3194. name: "Back",
  3195. image: {
  3196. source: "./media/characters/elijah/back.svg",
  3197. extra: 895 / 850,
  3198. bottom: 5.3 / 897.956
  3199. }
  3200. },
  3201. frontNsfw: {
  3202. height: math.unit(1.65, "meters"),
  3203. weight: math.unit(50, "kg"),
  3204. name: "Front (NSFW)",
  3205. image: {
  3206. source: "./media/characters/elijah/front-nsfw.svg",
  3207. extra: 858 / 830,
  3208. bottom: 95.5 / 953.8559
  3209. }
  3210. },
  3211. backNsfw: {
  3212. height: math.unit(1.65, "meters"),
  3213. weight: math.unit(50, "kg"),
  3214. name: "Back (NSFW)",
  3215. image: {
  3216. source: "./media/characters/elijah/back-nsfw.svg",
  3217. extra: 895 / 850,
  3218. bottom: 5.3 / 897.956
  3219. }
  3220. },
  3221. dick: {
  3222. height: math.unit(1, "feet"),
  3223. name: "Dick",
  3224. image: {
  3225. source: "./media/characters/elijah/dick.svg"
  3226. }
  3227. },
  3228. beakOpen: {
  3229. height: math.unit(1.25, "feet"),
  3230. name: "Beak (Open)",
  3231. image: {
  3232. source: "./media/characters/elijah/beak-open.svg"
  3233. }
  3234. },
  3235. beakShut: {
  3236. height: math.unit(1.25, "feet"),
  3237. name: "Beak (Shut)",
  3238. image: {
  3239. source: "./media/characters/elijah/beak-shut.svg"
  3240. }
  3241. },
  3242. footFlexing: {
  3243. height: math.unit(1.61, "feet"),
  3244. name: "Foot (Flexing)",
  3245. image: {
  3246. source: "./media/characters/elijah/foot-flexing.svg"
  3247. }
  3248. },
  3249. footStepping: {
  3250. height: math.unit(1.44, "feet"),
  3251. name: "Foot (Stepping)",
  3252. image: {
  3253. source: "./media/characters/elijah/foot-stepping.svg"
  3254. }
  3255. },
  3256. plantigradeLeg: {
  3257. height: math.unit(2.34, "feet"),
  3258. name: "Plantigrade Leg",
  3259. image: {
  3260. source: "./media/characters/elijah/plantigrade-leg.svg"
  3261. }
  3262. },
  3263. plantigradeFootLeft: {
  3264. height: math.unit(0.9, "feet"),
  3265. name: "Plantigrade Foot (Left)",
  3266. image: {
  3267. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3268. }
  3269. },
  3270. plantigradeFootRight: {
  3271. height: math.unit(0.9, "feet"),
  3272. name: "Plantigrade Foot (Right)",
  3273. image: {
  3274. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3275. }
  3276. },
  3277. },
  3278. [
  3279. {
  3280. name: "Normal",
  3281. height: math.unit(1.65, "meters")
  3282. },
  3283. {
  3284. name: "Macro",
  3285. height: math.unit(55, "meters"),
  3286. default: true
  3287. },
  3288. {
  3289. name: "Macro+",
  3290. height: math.unit(105, "meters")
  3291. },
  3292. ]
  3293. ))
  3294. characterMakers.push(() => makeCharacter(
  3295. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3296. {
  3297. front: {
  3298. height: math.unit(7 + 2/12, "feet"),
  3299. weight: math.unit(320, "kg"),
  3300. preyCapacity: math.unit(0.276549935, "people"),
  3301. name: "Front",
  3302. image: {
  3303. source: "./media/characters/rai/front.svg",
  3304. extra: 1802/1696,
  3305. bottom: 68/1870
  3306. },
  3307. form: "anthro",
  3308. default: true
  3309. },
  3310. frontDressed: {
  3311. height: math.unit(7 + 2/12, "feet"),
  3312. weight: math.unit(320, "kg"),
  3313. preyCapacity: math.unit(0.276549935, "people"),
  3314. name: "Front (Dressed)",
  3315. image: {
  3316. source: "./media/characters/rai/front-dressed.svg",
  3317. extra: 1802/1696,
  3318. bottom: 68/1870
  3319. },
  3320. form: "anthro"
  3321. },
  3322. side: {
  3323. height: math.unit(7 + 2/12, "feet"),
  3324. weight: math.unit(320, "kg"),
  3325. preyCapacity: math.unit(0.276549935, "people"),
  3326. name: "Side",
  3327. image: {
  3328. source: "./media/characters/rai/side.svg",
  3329. extra: 1789/1710,
  3330. bottom: 115/1904
  3331. },
  3332. form: "anthro"
  3333. },
  3334. back: {
  3335. height: math.unit(7 + 2/12, "feet"),
  3336. weight: math.unit(320, "kg"),
  3337. preyCapacity: math.unit(0.276549935, "people"),
  3338. name: "Back",
  3339. image: {
  3340. source: "./media/characters/rai/back.svg",
  3341. extra: 1770/1707,
  3342. bottom: 28/1798
  3343. },
  3344. form: "anthro"
  3345. },
  3346. feral: {
  3347. height: math.unit(9.5, "feet"),
  3348. weight: math.unit(640, "kg"),
  3349. preyCapacity: math.unit(4, "people"),
  3350. name: "Feral",
  3351. image: {
  3352. source: "./media/characters/rai/feral.svg",
  3353. extra: 945/553,
  3354. bottom: 176/1121
  3355. },
  3356. form: "feral",
  3357. default: true
  3358. },
  3359. dragon: {
  3360. height: math.unit(23, "feet"),
  3361. weight: math.unit(50000, "lb"),
  3362. name: "Dragon",
  3363. image: {
  3364. source: "./media/characters/rai/dragon.svg",
  3365. extra: 2498 / 2030,
  3366. bottom: 85.2 / 2584
  3367. },
  3368. form: "dragon",
  3369. default: true
  3370. },
  3371. maw: {
  3372. height: math.unit(1.69, "feet"),
  3373. name: "Maw",
  3374. image: {
  3375. source: "./media/characters/rai/maw.svg"
  3376. },
  3377. form: "anthro"
  3378. },
  3379. },
  3380. [
  3381. {
  3382. name: "Normal",
  3383. height: math.unit(7 + 2/12, "feet"),
  3384. form: "anthro"
  3385. },
  3386. {
  3387. name: "Big",
  3388. height: math.unit(11, "feet"),
  3389. form: "anthro"
  3390. },
  3391. {
  3392. name: "Minimacro",
  3393. height: math.unit(77, "feet"),
  3394. form: "anthro"
  3395. },
  3396. {
  3397. name: "Macro",
  3398. height: math.unit(302, "feet"),
  3399. default: true,
  3400. form: "anthro"
  3401. },
  3402. {
  3403. name: "Normal",
  3404. height: math.unit(9.5, "feet"),
  3405. form: "feral",
  3406. default: true
  3407. },
  3408. {
  3409. name: "Normal",
  3410. height: math.unit(23, "feet"),
  3411. form: "dragon",
  3412. default: true
  3413. }
  3414. ],
  3415. {
  3416. "anthro": {
  3417. name: "Anthro",
  3418. default: true
  3419. },
  3420. "feral": {
  3421. name: "Feral",
  3422. },
  3423. "dragon": {
  3424. name: "Dragon",
  3425. },
  3426. }
  3427. ))
  3428. characterMakers.push(() => makeCharacter(
  3429. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3430. {
  3431. frontDressed: {
  3432. height: math.unit(216, "feet"),
  3433. weight: math.unit(7000000, "lb"),
  3434. preyCapacity: math.unit(1321, "people"),
  3435. name: "Front (Dressed)",
  3436. image: {
  3437. source: "./media/characters/jazzy/front-dressed.svg",
  3438. extra: 2738 / 2651,
  3439. bottom: 41.8 / 2786
  3440. }
  3441. },
  3442. backDressed: {
  3443. height: math.unit(216, "feet"),
  3444. weight: math.unit(7000000, "lb"),
  3445. preyCapacity: math.unit(1321, "people"),
  3446. name: "Back (Dressed)",
  3447. image: {
  3448. source: "./media/characters/jazzy/back-dressed.svg",
  3449. extra: 2775 / 2673,
  3450. bottom: 36.8 / 2817
  3451. }
  3452. },
  3453. front: {
  3454. height: math.unit(216, "feet"),
  3455. weight: math.unit(7000000, "lb"),
  3456. preyCapacity: math.unit(1321, "people"),
  3457. name: "Front",
  3458. image: {
  3459. source: "./media/characters/jazzy/front.svg",
  3460. extra: 2738 / 2651,
  3461. bottom: 41.8 / 2786
  3462. }
  3463. },
  3464. back: {
  3465. height: math.unit(216, "feet"),
  3466. weight: math.unit(7000000, "lb"),
  3467. preyCapacity: math.unit(1321, "people"),
  3468. name: "Back",
  3469. image: {
  3470. source: "./media/characters/jazzy/back.svg",
  3471. extra: 2775 / 2673,
  3472. bottom: 36.8 / 2817
  3473. }
  3474. },
  3475. maw: {
  3476. height: math.unit(20, "feet"),
  3477. name: "Maw",
  3478. image: {
  3479. source: "./media/characters/jazzy/maw.svg"
  3480. }
  3481. },
  3482. paws: {
  3483. height: math.unit(27.5, "feet"),
  3484. name: "Paws",
  3485. image: {
  3486. source: "./media/characters/jazzy/paws.svg"
  3487. }
  3488. },
  3489. eye: {
  3490. height: math.unit(4.4, "feet"),
  3491. name: "Eye",
  3492. image: {
  3493. source: "./media/characters/jazzy/eye.svg"
  3494. }
  3495. },
  3496. droneOffense: {
  3497. height: math.unit(9.5, "inches"),
  3498. name: "Drone (Offense)",
  3499. image: {
  3500. source: "./media/characters/jazzy/drone-offense.svg"
  3501. }
  3502. },
  3503. droneRecon: {
  3504. height: math.unit(9.5, "inches"),
  3505. name: "Drone (Recon)",
  3506. image: {
  3507. source: "./media/characters/jazzy/drone-recon.svg"
  3508. }
  3509. },
  3510. droneDefense: {
  3511. height: math.unit(9.5, "inches"),
  3512. name: "Drone (Defense)",
  3513. image: {
  3514. source: "./media/characters/jazzy/drone-defense.svg"
  3515. }
  3516. },
  3517. },
  3518. [
  3519. {
  3520. name: "Macro",
  3521. height: math.unit(216, "feet"),
  3522. default: true
  3523. },
  3524. ]
  3525. ))
  3526. characterMakers.push(() => makeCharacter(
  3527. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3528. {
  3529. front: {
  3530. height: math.unit(9 + 6/12, "feet"),
  3531. weight: math.unit(700, "lb"),
  3532. name: "Front",
  3533. image: {
  3534. source: "./media/characters/flamm/front.svg",
  3535. extra: 1736/1596,
  3536. bottom: 93/1829
  3537. }
  3538. },
  3539. buff: {
  3540. height: math.unit(9 + 6/12, "feet"),
  3541. weight: math.unit(950, "lb"),
  3542. name: "Buff",
  3543. image: {
  3544. source: "./media/characters/flamm/buff.svg",
  3545. extra: 3018/2874,
  3546. bottom: 221/3239
  3547. }
  3548. },
  3549. lyingFront: {
  3550. height: math.unit(9 + 6/12, "feet"),
  3551. weight: math.unit(700, "lb"),
  3552. name: "Lying (Front)",
  3553. image: {
  3554. source: "./media/characters/flamm/lying-front.svg"
  3555. },
  3556. extraAttributes: {
  3557. "ballVolume": {
  3558. name: "Ball Volume",
  3559. power: 3,
  3560. type: "volume",
  3561. base: math.unit(5, "liters")
  3562. },
  3563. }
  3564. },
  3565. lyingBack: {
  3566. height: math.unit(9 + 6/12, "feet"),
  3567. weight: math.unit(700, "lb"),
  3568. name: "Lying (Back)",
  3569. image: {
  3570. source: "./media/characters/flamm/lying-back.svg"
  3571. },
  3572. extraAttributes: {
  3573. "ballVolume": {
  3574. name: "Ball Volume",
  3575. power: 3,
  3576. type: "volume",
  3577. base: math.unit(5, "liters")
  3578. },
  3579. }
  3580. },
  3581. },
  3582. [
  3583. {
  3584. name: "Normal",
  3585. height: math.unit(9.5, "feet")
  3586. },
  3587. {
  3588. name: "Macro",
  3589. height: math.unit(200, "feet"),
  3590. default: true
  3591. },
  3592. ]
  3593. ))
  3594. characterMakers.push(() => makeCharacter(
  3595. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3596. {
  3597. front: {
  3598. height: math.unit(5 + 3/12, "feet"),
  3599. weight: math.unit(60, "kg"),
  3600. name: "Front",
  3601. image: {
  3602. source: "./media/characters/zephiro/front.svg",
  3603. extra: 1873/1761,
  3604. bottom: 147/2020
  3605. }
  3606. },
  3607. side: {
  3608. height: math.unit(5 + 3/12, "feet"),
  3609. weight: math.unit(60, "kg"),
  3610. name: "Side",
  3611. image: {
  3612. source: "./media/characters/zephiro/side.svg",
  3613. extra: 1929/1827,
  3614. bottom: 65/1994
  3615. }
  3616. },
  3617. back: {
  3618. height: math.unit(5 + 3/12, "feet"),
  3619. weight: math.unit(60, "kg"),
  3620. name: "Back",
  3621. image: {
  3622. source: "./media/characters/zephiro/back.svg",
  3623. extra: 1926/1816,
  3624. bottom: 41/1967
  3625. }
  3626. },
  3627. hand: {
  3628. height: math.unit(0.68, "feet"),
  3629. name: "Hand",
  3630. image: {
  3631. source: "./media/characters/zephiro/hand.svg"
  3632. }
  3633. },
  3634. paw: {
  3635. height: math.unit(1, "feet"),
  3636. name: "Paw",
  3637. image: {
  3638. source: "./media/characters/zephiro/paw.svg"
  3639. }
  3640. },
  3641. beans: {
  3642. height: math.unit(0.93, "feet"),
  3643. name: "Beans",
  3644. image: {
  3645. source: "./media/characters/zephiro/beans.svg"
  3646. }
  3647. },
  3648. },
  3649. [
  3650. {
  3651. name: "Micro",
  3652. height: math.unit(3, "inches")
  3653. },
  3654. {
  3655. name: "Normal",
  3656. height: math.unit(5 + 3 / 12, "feet"),
  3657. default: true
  3658. },
  3659. {
  3660. name: "Macro",
  3661. height: math.unit(118, "feet")
  3662. },
  3663. ]
  3664. ))
  3665. characterMakers.push(() => makeCharacter(
  3666. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3667. {
  3668. front: {
  3669. height: math.unit(5, "feet"),
  3670. weight: math.unit(90, "kg"),
  3671. preyCapacity: math.unit(14, "people"),
  3672. name: "Front",
  3673. image: {
  3674. source: "./media/characters/fory/front.svg",
  3675. extra: 2862 / 2674,
  3676. bottom: 180 / 3043.8
  3677. },
  3678. form: "weaselbun",
  3679. default: true,
  3680. extraAttributes: {
  3681. "pawSize": {
  3682. name: "Paw Size",
  3683. power: 2,
  3684. type: "area",
  3685. base: math.unit(0.1596, "m^2")
  3686. },
  3687. "pawLength": {
  3688. name: "Paw Length",
  3689. power: 1,
  3690. type: "length",
  3691. base: math.unit(0.7, "m")
  3692. }
  3693. }
  3694. },
  3695. back: {
  3696. height: math.unit(5, "feet"),
  3697. weight: math.unit(90, "kg"),
  3698. preyCapacity: math.unit(14, "people"),
  3699. name: "Back",
  3700. image: {
  3701. source: "./media/characters/fory/back.svg",
  3702. extra: 1790/1672,
  3703. bottom: 84/1874
  3704. },
  3705. form: "weaselbun",
  3706. extraAttributes: {
  3707. "pawSize": {
  3708. name: "Paw Size",
  3709. power: 2,
  3710. type: "area",
  3711. base: math.unit(0.1596, "m^2")
  3712. },
  3713. "pawLength": {
  3714. name: "Paw Length",
  3715. power: 1,
  3716. type: "length",
  3717. base: math.unit(0.7, "m")
  3718. }
  3719. }
  3720. },
  3721. paw: {
  3722. height: math.unit(2.14, "feet"),
  3723. name: "Paw",
  3724. image: {
  3725. source: "./media/characters/fory/paw.svg"
  3726. },
  3727. form: "weaselbun",
  3728. extraAttributes: {
  3729. "pawSize": {
  3730. name: "Paw Size",
  3731. power: 2,
  3732. type: "area",
  3733. base: math.unit(0.1596, "m^2")
  3734. },
  3735. "pawLength": {
  3736. name: "Paw Length",
  3737. power: 1,
  3738. type: "length",
  3739. base: math.unit(0.48, "m")
  3740. }
  3741. }
  3742. },
  3743. bunBack: {
  3744. height: math.unit(3, "feet"),
  3745. weight: math.unit(20, "kg"),
  3746. preyCapacity: math.unit(3, "people"),
  3747. name: "Back",
  3748. image: {
  3749. source: "./media/characters/fory/bun-back.svg",
  3750. extra: 1749/1564,
  3751. bottom: 246/1995
  3752. },
  3753. form: "bun",
  3754. default: true,
  3755. extraAttributes: {
  3756. "pawSize": {
  3757. name: "Paw Size",
  3758. power: 2,
  3759. type: "area",
  3760. base: math.unit(0.072, "m^2")
  3761. },
  3762. "pawLength": {
  3763. name: "Paw Length",
  3764. power: 1,
  3765. type: "length",
  3766. base: math.unit(0.45, "m")
  3767. }
  3768. }
  3769. },
  3770. },
  3771. [
  3772. {
  3773. name: "Normal",
  3774. height: math.unit(5, "feet"),
  3775. form: "weaselbun"
  3776. },
  3777. {
  3778. name: "Macro",
  3779. height: math.unit(50, "feet"),
  3780. default: true,
  3781. form: "weaselbun"
  3782. },
  3783. {
  3784. name: "Megamacro",
  3785. height: math.unit(10, "miles"),
  3786. form: "weaselbun"
  3787. },
  3788. {
  3789. name: "Gigamacro",
  3790. height: math.unit(5, "earths"),
  3791. form: "weaselbun"
  3792. },
  3793. {
  3794. name: "Normal",
  3795. height: math.unit(3, "feet"),
  3796. default: true,
  3797. form: "bun"
  3798. },
  3799. {
  3800. name: "Fun-Size",
  3801. height: math.unit(12, "feet"),
  3802. form: "bun"
  3803. },
  3804. {
  3805. name: "Macro",
  3806. height: math.unit(100, "feet"),
  3807. form: "bun"
  3808. },
  3809. {
  3810. name: "Planetary",
  3811. height: math.unit(3, "earths"),
  3812. form: "bun"
  3813. },
  3814. ],
  3815. {
  3816. "weaselbun": {
  3817. name: "Weaselbun",
  3818. default: true
  3819. },
  3820. "bun": {
  3821. name: "Bun",
  3822. },
  3823. }
  3824. ))
  3825. characterMakers.push(() => makeCharacter(
  3826. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3827. {
  3828. front: {
  3829. height: math.unit(7, "feet"),
  3830. weight: math.unit(90, "kg"),
  3831. name: "Front",
  3832. image: {
  3833. source: "./media/characters/kurrikage/front.svg",
  3834. extra: 1845/1733,
  3835. bottom: 119/1964
  3836. }
  3837. },
  3838. back: {
  3839. height: math.unit(7, "feet"),
  3840. weight: math.unit(90, "kg"),
  3841. name: "Back",
  3842. image: {
  3843. source: "./media/characters/kurrikage/back.svg",
  3844. extra: 1790/1677,
  3845. bottom: 61/1851
  3846. }
  3847. },
  3848. dressed: {
  3849. height: math.unit(7, "feet"),
  3850. weight: math.unit(90, "kg"),
  3851. name: "Dressed",
  3852. image: {
  3853. source: "./media/characters/kurrikage/dressed.svg",
  3854. extra: 1845/1733,
  3855. bottom: 119/1964
  3856. }
  3857. },
  3858. foot: {
  3859. height: math.unit(1.5, "feet"),
  3860. name: "Foot",
  3861. image: {
  3862. source: "./media/characters/kurrikage/foot.svg"
  3863. }
  3864. },
  3865. staff: {
  3866. height: math.unit(6.7, "feet"),
  3867. name: "Staff",
  3868. image: {
  3869. source: "./media/characters/kurrikage/staff.svg"
  3870. }
  3871. },
  3872. peek: {
  3873. height: math.unit(1.05, "feet"),
  3874. name: "Peeking",
  3875. image: {
  3876. source: "./media/characters/kurrikage/peek.svg",
  3877. bottom: 0.08
  3878. }
  3879. },
  3880. },
  3881. [
  3882. {
  3883. name: "Normal",
  3884. height: math.unit(12, "feet"),
  3885. default: true
  3886. },
  3887. {
  3888. name: "Big",
  3889. height: math.unit(20, "feet")
  3890. },
  3891. {
  3892. name: "Macro",
  3893. height: math.unit(500, "feet")
  3894. },
  3895. {
  3896. name: "Megamacro",
  3897. height: math.unit(20, "miles")
  3898. },
  3899. ]
  3900. ))
  3901. characterMakers.push(() => makeCharacter(
  3902. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3903. {
  3904. front: {
  3905. height: math.unit(6, "feet"),
  3906. weight: math.unit(75, "kg"),
  3907. name: "Front",
  3908. image: {
  3909. source: "./media/characters/shingo/front.svg",
  3910. extra: 1900/1825,
  3911. bottom: 82/1982
  3912. }
  3913. },
  3914. side: {
  3915. height: math.unit(6, "feet"),
  3916. weight: math.unit(75, "kg"),
  3917. name: "Side",
  3918. image: {
  3919. source: "./media/characters/shingo/side.svg",
  3920. extra: 1930/1865,
  3921. bottom: 16/1946
  3922. }
  3923. },
  3924. back: {
  3925. height: math.unit(6, "feet"),
  3926. weight: math.unit(75, "kg"),
  3927. name: "Back",
  3928. image: {
  3929. source: "./media/characters/shingo/back.svg",
  3930. extra: 1922/1852,
  3931. bottom: 16/1938
  3932. }
  3933. },
  3934. frontDressed: {
  3935. height: math.unit(6, "feet"),
  3936. weight: math.unit(150, "lb"),
  3937. name: "Front (Dressed)",
  3938. image: {
  3939. source: "./media/characters/shingo/front-dressed.svg",
  3940. extra: 1900/1825,
  3941. bottom: 82/1982
  3942. }
  3943. },
  3944. paw: {
  3945. height: math.unit(1.29, "feet"),
  3946. name: "Paw",
  3947. image: {
  3948. source: "./media/characters/shingo/paw.svg"
  3949. }
  3950. },
  3951. hand: {
  3952. height: math.unit(1.07, "feet"),
  3953. name: "Hand",
  3954. image: {
  3955. source: "./media/characters/shingo/hand.svg"
  3956. }
  3957. },
  3958. frontAlt: {
  3959. height: math.unit(6, "feet"),
  3960. weight: math.unit(75, "kg"),
  3961. name: "Front (Alt)",
  3962. image: {
  3963. source: "./media/characters/shingo/front-alt.svg",
  3964. extra: 3511 / 3338,
  3965. bottom: 0.005
  3966. }
  3967. },
  3968. frontAlt2: {
  3969. height: math.unit(6, "feet"),
  3970. weight: math.unit(75, "kg"),
  3971. name: "Front (Alt 2)",
  3972. image: {
  3973. source: "./media/characters/shingo/front-alt-2.svg",
  3974. extra: 706/681,
  3975. bottom: 11/717
  3976. }
  3977. },
  3978. pawAlt: {
  3979. height: math.unit(1, "feet"),
  3980. name: "Paw (Alt)",
  3981. image: {
  3982. source: "./media/characters/shingo/paw-alt.svg"
  3983. }
  3984. },
  3985. },
  3986. [
  3987. {
  3988. name: "Micro",
  3989. height: math.unit(4, "inches")
  3990. },
  3991. {
  3992. name: "Normal",
  3993. height: math.unit(6, "feet"),
  3994. default: true
  3995. },
  3996. {
  3997. name: "Macro",
  3998. height: math.unit(108, "feet")
  3999. },
  4000. {
  4001. name: "Macro+",
  4002. height: math.unit(1500, "feet")
  4003. },
  4004. ]
  4005. ))
  4006. characterMakers.push(() => makeCharacter(
  4007. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  4008. {
  4009. side: {
  4010. height: math.unit(6, "feet"),
  4011. weight: math.unit(75, "kg"),
  4012. name: "Side",
  4013. image: {
  4014. source: "./media/characters/aigey/side.svg"
  4015. }
  4016. },
  4017. },
  4018. [
  4019. {
  4020. name: "Macro",
  4021. height: math.unit(200, "feet"),
  4022. default: true
  4023. },
  4024. {
  4025. name: "Megamacro",
  4026. height: math.unit(100, "miles")
  4027. },
  4028. ]
  4029. )
  4030. )
  4031. characterMakers.push(() => makeCharacter(
  4032. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  4033. {
  4034. front: {
  4035. height: math.unit(13, "feet"),
  4036. weight: math.unit(1036.80, "kg"),
  4037. name: "Front",
  4038. image: {
  4039. source: "./media/characters/natasha/front.svg",
  4040. extra: 1301/1210,
  4041. bottom: 39/1340
  4042. }
  4043. },
  4044. back: {
  4045. height: math.unit(13, "feet"),
  4046. weight: math.unit(1036.80, "kg"),
  4047. name: "Back",
  4048. image: {
  4049. source: "./media/characters/natasha/back.svg",
  4050. extra: 1342/1252,
  4051. bottom: 20/1362
  4052. }
  4053. },
  4054. head: {
  4055. height: math.unit(3.48, "feet"),
  4056. name: "Head",
  4057. image: {
  4058. source: "./media/characters/natasha/head.svg"
  4059. }
  4060. },
  4061. jaws: {
  4062. height: math.unit(3.52, "feet"),
  4063. name: "Jaws",
  4064. image: {
  4065. source: "./media/characters/natasha/jaws.svg"
  4066. }
  4067. },
  4068. paws: {
  4069. height: math.unit(2.7, "feet"),
  4070. name: "Paws",
  4071. image: {
  4072. source: "./media/characters/natasha/paws.svg"
  4073. }
  4074. },
  4075. collar: {
  4076. height: math.unit(0.89, "feet"),
  4077. name: "Collar",
  4078. image: {
  4079. source: "./media/characters/natasha/collar.svg"
  4080. }
  4081. },
  4082. gauge: {
  4083. height: math.unit(0.36, "feet"),
  4084. name: "Gauge",
  4085. image: {
  4086. source: "./media/characters/natasha/gauge.svg"
  4087. }
  4088. },
  4089. },
  4090. [
  4091. {
  4092. name: "Shortstack",
  4093. height: math.unit(3, "feet")
  4094. },
  4095. {
  4096. name: "Normal",
  4097. height: math.unit(13, "feet"),
  4098. default: true
  4099. },
  4100. {
  4101. name: "Macro",
  4102. height: math.unit(100, "feet")
  4103. },
  4104. {
  4105. name: "Macro+",
  4106. height: math.unit(260, "feet")
  4107. },
  4108. {
  4109. name: "Macro++",
  4110. height: math.unit(1, "mile")
  4111. },
  4112. ]
  4113. ))
  4114. characterMakers.push(() => makeCharacter(
  4115. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  4116. {
  4117. front: {
  4118. height: math.unit(6, "feet"),
  4119. weight: math.unit(75, "kg"),
  4120. name: "Front",
  4121. image: {
  4122. source: "./media/characters/malik/front.svg",
  4123. extra: 1750/1561,
  4124. bottom: 80/1830
  4125. },
  4126. extraAttributes: {
  4127. "toeSize": {
  4128. name: "Toe Size",
  4129. power: 2,
  4130. type: "area",
  4131. base: math.unit(0.0159, "m^2")
  4132. },
  4133. "pawSize": {
  4134. name: "Paw Size",
  4135. power: 2,
  4136. type: "area",
  4137. base: math.unit(0.09834, "m^2")
  4138. },
  4139. }
  4140. },
  4141. side: {
  4142. height: math.unit(6, "feet"),
  4143. weight: math.unit(75, "kg"),
  4144. name: "Side",
  4145. image: {
  4146. source: "./media/characters/malik/side.svg",
  4147. extra: 1802/1685,
  4148. bottom: 42/1844
  4149. },
  4150. extraAttributes: {
  4151. "toeSize": {
  4152. name: "Toe Size",
  4153. power: 2,
  4154. type: "area",
  4155. base: math.unit(0.0159, "m^2")
  4156. },
  4157. "pawSize": {
  4158. name: "Paw Size",
  4159. power: 2,
  4160. type: "area",
  4161. base: math.unit(0.09834, "m^2")
  4162. },
  4163. }
  4164. },
  4165. back: {
  4166. height: math.unit(6, "feet"),
  4167. weight: math.unit(75, "kg"),
  4168. name: "Back",
  4169. image: {
  4170. source: "./media/characters/malik/back.svg",
  4171. extra: 1803/1607,
  4172. bottom: 33/1836
  4173. },
  4174. extraAttributes: {
  4175. "toeSize": {
  4176. name: "Toe Size",
  4177. power: 2,
  4178. type: "area",
  4179. base: math.unit(0.0159, "m^2")
  4180. },
  4181. "pawSize": {
  4182. name: "Paw Size",
  4183. power: 2,
  4184. type: "area",
  4185. base: math.unit(0.09834, "m^2")
  4186. },
  4187. }
  4188. },
  4189. },
  4190. [
  4191. {
  4192. name: "Macro",
  4193. height: math.unit(156, "feet"),
  4194. default: true
  4195. },
  4196. {
  4197. name: "Macro+",
  4198. height: math.unit(1188, "feet")
  4199. },
  4200. ]
  4201. ))
  4202. characterMakers.push(() => makeCharacter(
  4203. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4204. {
  4205. front: {
  4206. height: math.unit(6, "feet"),
  4207. weight: math.unit(75, "kg"),
  4208. name: "Front",
  4209. image: {
  4210. source: "./media/characters/sefer/front.svg",
  4211. extra: 848 / 659,
  4212. bottom: 28.3 / 876.442
  4213. }
  4214. },
  4215. back: {
  4216. height: math.unit(6, "feet"),
  4217. weight: math.unit(75, "kg"),
  4218. name: "Back",
  4219. image: {
  4220. source: "./media/characters/sefer/back.svg",
  4221. extra: 864 / 695,
  4222. bottom: 10 / 871
  4223. }
  4224. },
  4225. frontDressed: {
  4226. height: math.unit(6, "feet"),
  4227. weight: math.unit(75, "kg"),
  4228. name: "Dressed",
  4229. image: {
  4230. source: "./media/characters/sefer/dressed.svg",
  4231. extra: 839 / 653,
  4232. bottom: 37.6 / 878
  4233. }
  4234. },
  4235. },
  4236. [
  4237. {
  4238. name: "Normal",
  4239. height: math.unit(6, "feet"),
  4240. default: true
  4241. },
  4242. {
  4243. name: "Big",
  4244. height: math.unit(8, "meters")
  4245. },
  4246. ]
  4247. ))
  4248. characterMakers.push(() => makeCharacter(
  4249. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4250. {
  4251. body: {
  4252. height: math.unit(2.2428, "meter"),
  4253. weight: math.unit(124.738, "kg"),
  4254. name: "Body",
  4255. image: {
  4256. extra: 1225 / 1050,
  4257. source: "./media/characters/north/front.svg"
  4258. }
  4259. }
  4260. },
  4261. [
  4262. {
  4263. name: "Micro",
  4264. height: math.unit(4, "inches")
  4265. },
  4266. {
  4267. name: "Macro",
  4268. height: math.unit(63, "meters")
  4269. },
  4270. {
  4271. name: "Megamacro",
  4272. height: math.unit(101, "miles"),
  4273. default: true
  4274. }
  4275. ]
  4276. ))
  4277. characterMakers.push(() => makeCharacter(
  4278. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4279. {
  4280. angled: {
  4281. height: math.unit(4, "meter"),
  4282. weight: math.unit(150, "kg"),
  4283. name: "Angled",
  4284. image: {
  4285. source: "./media/characters/talan/angled-sfw.svg",
  4286. bottom: 29 / 3734
  4287. }
  4288. },
  4289. angledNsfw: {
  4290. height: math.unit(4, "meter"),
  4291. weight: math.unit(150, "kg"),
  4292. name: "Angled (NSFW)",
  4293. image: {
  4294. source: "./media/characters/talan/angled-nsfw.svg",
  4295. bottom: 29 / 3734
  4296. }
  4297. },
  4298. frontNsfw: {
  4299. height: math.unit(4, "meter"),
  4300. weight: math.unit(150, "kg"),
  4301. name: "Front (NSFW)",
  4302. image: {
  4303. source: "./media/characters/talan/front-nsfw.svg",
  4304. bottom: 29 / 3734
  4305. }
  4306. },
  4307. sideNsfw: {
  4308. height: math.unit(4, "meter"),
  4309. weight: math.unit(150, "kg"),
  4310. name: "Side (NSFW)",
  4311. image: {
  4312. source: "./media/characters/talan/side-nsfw.svg",
  4313. bottom: 29 / 3734
  4314. }
  4315. },
  4316. back: {
  4317. height: math.unit(4, "meter"),
  4318. weight: math.unit(150, "kg"),
  4319. name: "Back",
  4320. image: {
  4321. source: "./media/characters/talan/back.svg"
  4322. }
  4323. },
  4324. dickBottom: {
  4325. height: math.unit(0.621, "meter"),
  4326. name: "Dick (Bottom)",
  4327. image: {
  4328. source: "./media/characters/talan/dick-bottom.svg"
  4329. }
  4330. },
  4331. dickTop: {
  4332. height: math.unit(0.621, "meter"),
  4333. name: "Dick (Top)",
  4334. image: {
  4335. source: "./media/characters/talan/dick-top.svg"
  4336. }
  4337. },
  4338. dickSide: {
  4339. height: math.unit(0.305, "meter"),
  4340. name: "Dick (Side)",
  4341. image: {
  4342. source: "./media/characters/talan/dick-side.svg"
  4343. }
  4344. },
  4345. dickFront: {
  4346. height: math.unit(0.305, "meter"),
  4347. name: "Dick (Front)",
  4348. image: {
  4349. source: "./media/characters/talan/dick-front.svg"
  4350. }
  4351. },
  4352. },
  4353. [
  4354. {
  4355. name: "Normal",
  4356. height: math.unit(4, "meters")
  4357. },
  4358. {
  4359. name: "Macro",
  4360. height: math.unit(100, "meters")
  4361. },
  4362. {
  4363. name: "Megamacro",
  4364. height: math.unit(2, "miles"),
  4365. default: true
  4366. },
  4367. {
  4368. name: "Gigamacro",
  4369. height: math.unit(5000, "miles")
  4370. },
  4371. {
  4372. name: "Teramacro",
  4373. height: math.unit(100, "parsecs")
  4374. }
  4375. ]
  4376. ))
  4377. characterMakers.push(() => makeCharacter(
  4378. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4379. {
  4380. front: {
  4381. height: math.unit(2, "meter"),
  4382. weight: math.unit(90, "kg"),
  4383. name: "Front",
  4384. image: {
  4385. source: "./media/characters/gael'rathus/front.svg"
  4386. }
  4387. },
  4388. frontAlt: {
  4389. height: math.unit(2, "meter"),
  4390. weight: math.unit(90, "kg"),
  4391. name: "Front (alt)",
  4392. image: {
  4393. source: "./media/characters/gael'rathus/front-alt.svg"
  4394. }
  4395. },
  4396. frontAlt2: {
  4397. height: math.unit(2, "meter"),
  4398. weight: math.unit(90, "kg"),
  4399. name: "Front (alt 2)",
  4400. image: {
  4401. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4402. }
  4403. }
  4404. },
  4405. [
  4406. {
  4407. name: "Normal",
  4408. height: math.unit(9, "feet"),
  4409. default: true
  4410. },
  4411. {
  4412. name: "Large",
  4413. height: math.unit(25, "feet")
  4414. },
  4415. {
  4416. name: "Macro",
  4417. height: math.unit(0.25, "miles")
  4418. },
  4419. {
  4420. name: "Megamacro",
  4421. height: math.unit(10, "miles")
  4422. }
  4423. ]
  4424. ))
  4425. characterMakers.push(() => makeCharacter(
  4426. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4427. {
  4428. side: {
  4429. height: math.unit(2, "meter"),
  4430. weight: math.unit(140, "kg"),
  4431. name: "Side",
  4432. image: {
  4433. source: "./media/characters/sosha/side.svg",
  4434. extra: 1170/1006,
  4435. bottom: 94/1264
  4436. }
  4437. },
  4438. maw: {
  4439. height: math.unit(2.87, "feet"),
  4440. name: "Maw",
  4441. image: {
  4442. source: "./media/characters/sosha/maw.svg",
  4443. extra: 966/865,
  4444. bottom: 0/966
  4445. }
  4446. },
  4447. cooch: {
  4448. height: math.unit(5.6, "feet"),
  4449. name: "Cooch",
  4450. image: {
  4451. source: "./media/characters/sosha/cooch.svg"
  4452. }
  4453. },
  4454. },
  4455. [
  4456. {
  4457. name: "Normal",
  4458. height: math.unit(12, "feet"),
  4459. default: true
  4460. }
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4465. {
  4466. side: {
  4467. height: math.unit(5 + 5 / 12, "feet"),
  4468. weight: math.unit(170, "kg"),
  4469. name: "Side",
  4470. image: {
  4471. source: "./media/characters/runnola/side.svg",
  4472. extra: 741 / 448,
  4473. bottom: 0.05
  4474. }
  4475. },
  4476. },
  4477. [
  4478. {
  4479. name: "Small",
  4480. height: math.unit(3, "feet")
  4481. },
  4482. {
  4483. name: "Normal",
  4484. height: math.unit(5 + 5 / 12, "feet"),
  4485. default: true
  4486. },
  4487. {
  4488. name: "Big",
  4489. height: math.unit(10, "feet")
  4490. },
  4491. ]
  4492. ))
  4493. characterMakers.push(() => makeCharacter(
  4494. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4495. {
  4496. front: {
  4497. height: math.unit(2, "meter"),
  4498. weight: math.unit(50, "kg"),
  4499. name: "Front",
  4500. image: {
  4501. source: "./media/characters/kurribird/front.svg",
  4502. bottom: 0.015
  4503. }
  4504. },
  4505. frontAlt: {
  4506. height: math.unit(1.5, "meter"),
  4507. weight: math.unit(50, "kg"),
  4508. name: "Front (Alt)",
  4509. image: {
  4510. source: "./media/characters/kurribird/front-alt.svg",
  4511. extra: 1.45
  4512. }
  4513. },
  4514. },
  4515. [
  4516. {
  4517. name: "Normal",
  4518. height: math.unit(7, "feet")
  4519. },
  4520. {
  4521. name: "Big",
  4522. height: math.unit(12, "feet"),
  4523. default: true
  4524. },
  4525. {
  4526. name: "Macro",
  4527. height: math.unit(1500, "feet")
  4528. },
  4529. {
  4530. name: "Megamacro",
  4531. height: math.unit(2, "miles")
  4532. }
  4533. ]
  4534. ))
  4535. characterMakers.push(() => makeCharacter(
  4536. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4537. {
  4538. front: {
  4539. height: math.unit(2, "meter"),
  4540. weight: math.unit(80, "kg"),
  4541. name: "Front",
  4542. image: {
  4543. source: "./media/characters/elbial/front.svg",
  4544. extra: 1643 / 1556,
  4545. bottom: 60.2 / 1696
  4546. }
  4547. },
  4548. side: {
  4549. height: math.unit(2, "meter"),
  4550. weight: math.unit(80, "kg"),
  4551. name: "Side",
  4552. image: {
  4553. source: "./media/characters/elbial/side.svg",
  4554. extra: 1601/1528,
  4555. bottom: 97/1698
  4556. }
  4557. },
  4558. back: {
  4559. height: math.unit(2, "meter"),
  4560. weight: math.unit(80, "kg"),
  4561. name: "Back",
  4562. image: {
  4563. source: "./media/characters/elbial/back.svg",
  4564. extra: 1653/1569,
  4565. bottom: 20/1673
  4566. }
  4567. },
  4568. frontDressed: {
  4569. height: math.unit(2, "meter"),
  4570. weight: math.unit(80, "kg"),
  4571. name: "Front (Dressed)",
  4572. image: {
  4573. source: "./media/characters/elbial/front-dressed.svg",
  4574. extra: 1638/1569,
  4575. bottom: 70/1708
  4576. }
  4577. },
  4578. genitals: {
  4579. height: math.unit(2 / 3.367, "meter"),
  4580. name: "Genitals",
  4581. image: {
  4582. source: "./media/characters/elbial/genitals.svg"
  4583. }
  4584. },
  4585. },
  4586. [
  4587. {
  4588. name: "Large",
  4589. height: math.unit(100, "feet")
  4590. },
  4591. {
  4592. name: "Macro",
  4593. height: math.unit(500, "feet"),
  4594. default: true
  4595. },
  4596. {
  4597. name: "Megamacro",
  4598. height: math.unit(10, "miles")
  4599. },
  4600. {
  4601. name: "Gigamacro",
  4602. height: math.unit(25000, "miles")
  4603. },
  4604. {
  4605. name: "Full-Size",
  4606. height: math.unit(8000000, "gigaparsecs")
  4607. }
  4608. ]
  4609. ))
  4610. characterMakers.push(() => makeCharacter(
  4611. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4612. {
  4613. front: {
  4614. height: math.unit(2, "meter"),
  4615. weight: math.unit(60, "kg"),
  4616. name: "Front",
  4617. image: {
  4618. source: "./media/characters/noah/front.svg",
  4619. extra: 1383/1313,
  4620. bottom: 104/1487
  4621. }
  4622. },
  4623. hand: {
  4624. height: math.unit(0.6, "feet"),
  4625. name: "Hand",
  4626. image: {
  4627. source: "./media/characters/noah/hand.svg"
  4628. }
  4629. },
  4630. talons: {
  4631. height: math.unit(1.385, "feet"),
  4632. name: "Talons",
  4633. image: {
  4634. source: "./media/characters/noah/talons.svg"
  4635. }
  4636. },
  4637. beak: {
  4638. height: math.unit(0.43, "feet"),
  4639. name: "Beak",
  4640. image: {
  4641. source: "./media/characters/noah/beak.svg"
  4642. }
  4643. },
  4644. collar: {
  4645. height: math.unit(0.88, "feet"),
  4646. name: "Collar",
  4647. image: {
  4648. source: "./media/characters/noah/collar.svg"
  4649. }
  4650. },
  4651. eyeNarrow: {
  4652. height: math.unit(0.18, "feet"),
  4653. name: "Eye (Narrow)",
  4654. image: {
  4655. source: "./media/characters/noah/eye-narrow.svg"
  4656. }
  4657. },
  4658. eyeNormal: {
  4659. height: math.unit(0.18, "feet"),
  4660. name: "Eye (Normal)",
  4661. image: {
  4662. source: "./media/characters/noah/eye-normal.svg"
  4663. }
  4664. },
  4665. eyeWide: {
  4666. height: math.unit(0.18, "feet"),
  4667. name: "Eye (Wide)",
  4668. image: {
  4669. source: "./media/characters/noah/eye-wide.svg"
  4670. }
  4671. },
  4672. ear: {
  4673. height: math.unit(0.64, "feet"),
  4674. name: "Ear",
  4675. image: {
  4676. source: "./media/characters/noah/ear.svg"
  4677. }
  4678. },
  4679. },
  4680. [
  4681. {
  4682. name: "Large",
  4683. height: math.unit(50, "feet")
  4684. },
  4685. {
  4686. name: "Macro",
  4687. height: math.unit(750, "feet"),
  4688. default: true
  4689. },
  4690. {
  4691. name: "Megamacro",
  4692. height: math.unit(50, "miles")
  4693. },
  4694. {
  4695. name: "Gigamacro",
  4696. height: math.unit(100000, "miles")
  4697. },
  4698. {
  4699. name: "Full-Size",
  4700. height: math.unit(3000000000, "miles")
  4701. }
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4706. {
  4707. front: {
  4708. height: math.unit(2, "meter"),
  4709. weight: math.unit(80, "kg"),
  4710. name: "Front",
  4711. image: {
  4712. source: "./media/characters/natalya/front.svg"
  4713. }
  4714. },
  4715. back: {
  4716. height: math.unit(2, "meter"),
  4717. weight: math.unit(80, "kg"),
  4718. name: "Back",
  4719. image: {
  4720. source: "./media/characters/natalya/back.svg"
  4721. }
  4722. }
  4723. },
  4724. [
  4725. {
  4726. name: "Normal",
  4727. height: math.unit(150, "feet"),
  4728. default: true
  4729. },
  4730. {
  4731. name: "Megamacro",
  4732. height: math.unit(5, "miles")
  4733. },
  4734. {
  4735. name: "Full-Size",
  4736. height: math.unit(600, "kiloparsecs")
  4737. }
  4738. ]
  4739. ))
  4740. characterMakers.push(() => makeCharacter(
  4741. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4742. {
  4743. front: {
  4744. height: math.unit(2, "meter"),
  4745. weight: math.unit(50, "kg"),
  4746. name: "Front",
  4747. image: {
  4748. source: "./media/characters/erestrebah/front.svg",
  4749. extra: 1262/1162,
  4750. bottom: 96/1358
  4751. }
  4752. },
  4753. back: {
  4754. height: math.unit(2, "meter"),
  4755. weight: math.unit(50, "kg"),
  4756. name: "Back",
  4757. image: {
  4758. source: "./media/characters/erestrebah/back.svg",
  4759. extra: 1257/1139,
  4760. bottom: 13/1270
  4761. }
  4762. },
  4763. wing: {
  4764. height: math.unit(2, "meter"),
  4765. weight: math.unit(50, "kg"),
  4766. name: "Wing",
  4767. image: {
  4768. source: "./media/characters/erestrebah/wing.svg",
  4769. extra: 1262/1162,
  4770. bottom: 96/1358
  4771. }
  4772. },
  4773. mouth: {
  4774. height: math.unit(0.39, "feet"),
  4775. name: "Mouth",
  4776. image: {
  4777. source: "./media/characters/erestrebah/mouth.svg"
  4778. }
  4779. }
  4780. },
  4781. [
  4782. {
  4783. name: "Normal",
  4784. height: math.unit(10, "feet")
  4785. },
  4786. {
  4787. name: "Large",
  4788. height: math.unit(50, "feet"),
  4789. default: true
  4790. },
  4791. {
  4792. name: "Macro",
  4793. height: math.unit(300, "feet")
  4794. },
  4795. {
  4796. name: "Macro+",
  4797. height: math.unit(750, "feet")
  4798. },
  4799. {
  4800. name: "Megamacro",
  4801. height: math.unit(3, "miles")
  4802. }
  4803. ]
  4804. ))
  4805. characterMakers.push(() => makeCharacter(
  4806. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4807. {
  4808. front: {
  4809. height: math.unit(2, "meter"),
  4810. weight: math.unit(80, "kg"),
  4811. name: "Front",
  4812. image: {
  4813. source: "./media/characters/jennifer/front.svg",
  4814. bottom: 0.11,
  4815. extra: 1.16
  4816. }
  4817. },
  4818. frontAlt: {
  4819. height: math.unit(2, "meter"),
  4820. weight: math.unit(80, "kg"),
  4821. name: "Front (Alt)",
  4822. image: {
  4823. source: "./media/characters/jennifer/front-alt.svg"
  4824. }
  4825. }
  4826. },
  4827. [
  4828. {
  4829. name: "Canon Height",
  4830. height: math.unit(120, "feet"),
  4831. default: true
  4832. },
  4833. {
  4834. name: "Macro+",
  4835. height: math.unit(300, "feet")
  4836. },
  4837. {
  4838. name: "Megamacro",
  4839. height: math.unit(20000, "feet")
  4840. }
  4841. ]
  4842. ))
  4843. characterMakers.push(() => makeCharacter(
  4844. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4845. {
  4846. front: {
  4847. height: math.unit(2, "meter"),
  4848. weight: math.unit(50, "kg"),
  4849. name: "Front",
  4850. image: {
  4851. source: "./media/characters/kalista/front.svg",
  4852. extra: 1314/1145,
  4853. bottom: 101/1415
  4854. }
  4855. },
  4856. back: {
  4857. height: math.unit(2, "meter"),
  4858. weight: math.unit(50, "kg"),
  4859. name: "Back",
  4860. image: {
  4861. source: "./media/characters/kalista/back.svg",
  4862. extra: 1366 / 1156,
  4863. bottom: 33.9 / 1362.78
  4864. }
  4865. }
  4866. },
  4867. [
  4868. {
  4869. name: "Uncomfortably Small",
  4870. height: math.unit(10, "feet")
  4871. },
  4872. {
  4873. name: "Small",
  4874. height: math.unit(30, "feet")
  4875. },
  4876. {
  4877. name: "Macro",
  4878. height: math.unit(100, "feet"),
  4879. default: true
  4880. },
  4881. {
  4882. name: "Macro+",
  4883. height: math.unit(2000, "feet")
  4884. },
  4885. {
  4886. name: "True Form",
  4887. height: math.unit(8924, "miles")
  4888. }
  4889. ]
  4890. ))
  4891. characterMakers.push(() => makeCharacter(
  4892. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4893. {
  4894. front: {
  4895. height: math.unit(2, "meter"),
  4896. weight: math.unit(120, "kg"),
  4897. name: "Front",
  4898. image: {
  4899. source: "./media/characters/ggv/front.svg"
  4900. }
  4901. },
  4902. side: {
  4903. height: math.unit(2, "meter"),
  4904. weight: math.unit(120, "kg"),
  4905. name: "Side",
  4906. image: {
  4907. source: "./media/characters/ggv/side.svg"
  4908. }
  4909. }
  4910. },
  4911. [
  4912. {
  4913. name: "Extremely Puny",
  4914. height: math.unit(9 + 5 / 12, "feet")
  4915. },
  4916. {
  4917. name: "Horribly Small",
  4918. height: math.unit(47.7, "miles"),
  4919. default: true
  4920. },
  4921. {
  4922. name: "Reasonably Sized",
  4923. height: math.unit(25000, "parsecs")
  4924. },
  4925. {
  4926. name: "Slightly Uncompressed",
  4927. height: math.unit(7.77e31, "parsecs")
  4928. },
  4929. {
  4930. name: "Omniversal",
  4931. height: math.unit(1e300, "meters")
  4932. },
  4933. ]
  4934. ))
  4935. characterMakers.push(() => makeCharacter(
  4936. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4937. {
  4938. front: {
  4939. height: math.unit(2, "meter"),
  4940. weight: math.unit(75, "lb"),
  4941. name: "Front",
  4942. image: {
  4943. source: "./media/characters/napalm/front.svg"
  4944. }
  4945. },
  4946. back: {
  4947. height: math.unit(2, "meter"),
  4948. weight: math.unit(75, "lb"),
  4949. name: "Back",
  4950. image: {
  4951. source: "./media/characters/napalm/back.svg"
  4952. }
  4953. }
  4954. },
  4955. [
  4956. {
  4957. name: "Standard",
  4958. height: math.unit(55, "feet"),
  4959. default: true
  4960. }
  4961. ]
  4962. ))
  4963. characterMakers.push(() => makeCharacter(
  4964. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4965. {
  4966. front: {
  4967. height: math.unit(7 + 5 / 6, "feet"),
  4968. weight: math.unit(325, "lb"),
  4969. name: "Front",
  4970. image: {
  4971. source: "./media/characters/asana/front.svg",
  4972. extra: 1133 / 1060,
  4973. bottom: 15.2 / 1148.6
  4974. }
  4975. },
  4976. back: {
  4977. height: math.unit(7 + 5 / 6, "feet"),
  4978. weight: math.unit(325, "lb"),
  4979. name: "Back",
  4980. image: {
  4981. source: "./media/characters/asana/back.svg",
  4982. extra: 1114 / 1043,
  4983. bottom: 5 / 1120
  4984. }
  4985. },
  4986. dressedDark: {
  4987. height: math.unit(7 + 5 / 6, "feet"),
  4988. weight: math.unit(325, "lb"),
  4989. name: "Dressed (Dark)",
  4990. image: {
  4991. source: "./media/characters/asana/dressed-dark.svg",
  4992. extra: 1133 / 1060,
  4993. bottom: 15.2 / 1148.6
  4994. }
  4995. },
  4996. dressedLight: {
  4997. height: math.unit(7 + 5 / 6, "feet"),
  4998. weight: math.unit(325, "lb"),
  4999. name: "Dressed (Light)",
  5000. image: {
  5001. source: "./media/characters/asana/dressed-light.svg",
  5002. extra: 1133 / 1060,
  5003. bottom: 15.2 / 1148.6
  5004. }
  5005. },
  5006. },
  5007. [
  5008. {
  5009. name: "Standard",
  5010. height: math.unit(7 + 5 / 6, "feet"),
  5011. default: true
  5012. },
  5013. {
  5014. name: "Large",
  5015. height: math.unit(10, "meters")
  5016. },
  5017. {
  5018. name: "Macro",
  5019. height: math.unit(2500, "meters")
  5020. },
  5021. {
  5022. name: "Megamacro",
  5023. height: math.unit(5e6, "meters")
  5024. },
  5025. {
  5026. name: "Examacro",
  5027. height: math.unit(5e12, "lightyears")
  5028. },
  5029. {
  5030. name: "Max Size",
  5031. height: math.unit(1e31, "lightyears")
  5032. }
  5033. ]
  5034. ))
  5035. characterMakers.push(() => makeCharacter(
  5036. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  5037. {
  5038. front: {
  5039. height: math.unit(2, "meter"),
  5040. weight: math.unit(60, "kg"),
  5041. name: "Front",
  5042. image: {
  5043. source: "./media/characters/ebony/front.svg",
  5044. bottom: 0.03,
  5045. extra: 1045 / 810 + 0.03
  5046. }
  5047. },
  5048. side: {
  5049. height: math.unit(2, "meter"),
  5050. weight: math.unit(60, "kg"),
  5051. name: "Side",
  5052. image: {
  5053. source: "./media/characters/ebony/side.svg",
  5054. bottom: 0.03,
  5055. extra: 1045 / 810 + 0.03
  5056. }
  5057. },
  5058. back: {
  5059. height: math.unit(2, "meter"),
  5060. weight: math.unit(60, "kg"),
  5061. name: "Back",
  5062. image: {
  5063. source: "./media/characters/ebony/back.svg",
  5064. bottom: 0.01,
  5065. extra: 1045 / 810 + 0.01
  5066. }
  5067. },
  5068. },
  5069. [
  5070. // TODO check why I did this lol
  5071. {
  5072. name: "Standard",
  5073. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  5074. default: true
  5075. },
  5076. {
  5077. name: "Macro",
  5078. height: math.unit(200, "feet")
  5079. },
  5080. {
  5081. name: "Gigamacro",
  5082. height: math.unit(13000, "km")
  5083. }
  5084. ]
  5085. ))
  5086. characterMakers.push(() => makeCharacter(
  5087. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  5088. {
  5089. front: {
  5090. height: math.unit(6, "feet"),
  5091. weight: math.unit(175, "lb"),
  5092. name: "Front",
  5093. image: {
  5094. source: "./media/characters/mountain/front.svg",
  5095. extra: 972 / 955,
  5096. bottom: 64 / 1036.6
  5097. }
  5098. },
  5099. back: {
  5100. height: math.unit(6, "feet"),
  5101. weight: math.unit(175, "lb"),
  5102. name: "Back",
  5103. image: {
  5104. source: "./media/characters/mountain/back.svg",
  5105. extra: 970 / 950,
  5106. bottom: 28.25 / 999
  5107. }
  5108. },
  5109. },
  5110. [
  5111. {
  5112. name: "Large",
  5113. height: math.unit(20, "meters")
  5114. },
  5115. {
  5116. name: "Macro",
  5117. height: math.unit(300, "meters")
  5118. },
  5119. {
  5120. name: "Gigamacro",
  5121. height: math.unit(10000, "km"),
  5122. default: true
  5123. },
  5124. {
  5125. name: "Examacro",
  5126. height: math.unit(10e9, "lightyears")
  5127. }
  5128. ]
  5129. ))
  5130. characterMakers.push(() => makeCharacter(
  5131. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  5132. {
  5133. front: {
  5134. height: math.unit(8, "feet"),
  5135. weight: math.unit(500, "lb"),
  5136. name: "Front",
  5137. image: {
  5138. source: "./media/characters/rick/front.svg"
  5139. }
  5140. }
  5141. },
  5142. [
  5143. {
  5144. name: "Normal",
  5145. height: math.unit(8, "feet"),
  5146. default: true
  5147. },
  5148. {
  5149. name: "Macro",
  5150. height: math.unit(5, "km")
  5151. }
  5152. ]
  5153. ))
  5154. characterMakers.push(() => makeCharacter(
  5155. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5156. {
  5157. front: {
  5158. height: math.unit(8, "feet"),
  5159. weight: math.unit(120, "lb"),
  5160. name: "Front",
  5161. image: {
  5162. source: "./media/characters/ona/front.svg"
  5163. }
  5164. },
  5165. frontAlt: {
  5166. height: math.unit(8, "feet"),
  5167. weight: math.unit(120, "lb"),
  5168. name: "Front (Alt)",
  5169. image: {
  5170. source: "./media/characters/ona/front-alt.svg"
  5171. }
  5172. },
  5173. back: {
  5174. height: math.unit(8, "feet"),
  5175. weight: math.unit(120, "lb"),
  5176. name: "Back",
  5177. image: {
  5178. source: "./media/characters/ona/back.svg"
  5179. }
  5180. },
  5181. foot: {
  5182. height: math.unit(1.1, "feet"),
  5183. name: "Foot",
  5184. image: {
  5185. source: "./media/characters/ona/foot.svg"
  5186. }
  5187. }
  5188. },
  5189. [
  5190. {
  5191. name: "Megamacro",
  5192. height: math.unit(70, "km"),
  5193. default: true
  5194. },
  5195. {
  5196. name: "Gigamacro",
  5197. height: math.unit(681818, "miles")
  5198. },
  5199. {
  5200. name: "Examacro",
  5201. height: math.unit(3800000, "lightyears")
  5202. },
  5203. ]
  5204. ))
  5205. characterMakers.push(() => makeCharacter(
  5206. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5207. {
  5208. front: {
  5209. height: math.unit(12, "feet"),
  5210. weight: math.unit(3000, "lb"),
  5211. name: "Front",
  5212. image: {
  5213. source: "./media/characters/mech/front.svg",
  5214. extra: 2900 / 2770,
  5215. bottom: 110 / 3010
  5216. }
  5217. },
  5218. back: {
  5219. height: math.unit(12, "feet"),
  5220. weight: math.unit(3000, "lb"),
  5221. name: "Back",
  5222. image: {
  5223. source: "./media/characters/mech/back.svg",
  5224. extra: 3011 / 2890,
  5225. bottom: 94 / 3105
  5226. }
  5227. },
  5228. maw: {
  5229. height: math.unit(3.07, "feet"),
  5230. name: "Maw",
  5231. image: {
  5232. source: "./media/characters/mech/maw.svg"
  5233. }
  5234. },
  5235. head: {
  5236. height: math.unit(3.07, "feet"),
  5237. name: "Head",
  5238. image: {
  5239. source: "./media/characters/mech/head.svg"
  5240. }
  5241. },
  5242. dick: {
  5243. height: math.unit(1.43, "feet"),
  5244. name: "Dick",
  5245. image: {
  5246. source: "./media/characters/mech/dick.svg"
  5247. }
  5248. },
  5249. },
  5250. [
  5251. {
  5252. name: "Normal",
  5253. height: math.unit(12, "feet")
  5254. },
  5255. {
  5256. name: "Macro",
  5257. height: math.unit(300, "feet"),
  5258. default: true
  5259. },
  5260. {
  5261. name: "Macro+",
  5262. height: math.unit(1500, "feet")
  5263. },
  5264. ]
  5265. ))
  5266. characterMakers.push(() => makeCharacter(
  5267. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5268. {
  5269. front: {
  5270. height: math.unit(1.3, "meter"),
  5271. weight: math.unit(30, "kg"),
  5272. name: "Front",
  5273. image: {
  5274. source: "./media/characters/gregory/front.svg",
  5275. }
  5276. }
  5277. },
  5278. [
  5279. {
  5280. name: "Normal",
  5281. height: math.unit(1.3, "meter"),
  5282. default: true
  5283. },
  5284. {
  5285. name: "Macro",
  5286. height: math.unit(20, "meter")
  5287. }
  5288. ]
  5289. ))
  5290. characterMakers.push(() => makeCharacter(
  5291. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5292. {
  5293. front: {
  5294. height: math.unit(2.8, "meter"),
  5295. weight: math.unit(200, "kg"),
  5296. name: "Front",
  5297. image: {
  5298. source: "./media/characters/elory/front.svg",
  5299. }
  5300. }
  5301. },
  5302. [
  5303. {
  5304. name: "Normal",
  5305. height: math.unit(2.8, "meter"),
  5306. default: true
  5307. },
  5308. {
  5309. name: "Macro",
  5310. height: math.unit(38, "meter")
  5311. }
  5312. ]
  5313. ))
  5314. characterMakers.push(() => makeCharacter(
  5315. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5316. {
  5317. front: {
  5318. height: math.unit(470, "feet"),
  5319. weight: math.unit(924, "tons"),
  5320. name: "Front",
  5321. image: {
  5322. source: "./media/characters/angelpatamon/front.svg",
  5323. }
  5324. }
  5325. },
  5326. [
  5327. {
  5328. name: "Normal",
  5329. height: math.unit(470, "feet"),
  5330. default: true
  5331. },
  5332. {
  5333. name: "Deity Size I",
  5334. height: math.unit(28651.2, "km")
  5335. },
  5336. {
  5337. name: "Deity Size II",
  5338. height: math.unit(171907.2, "km")
  5339. }
  5340. ]
  5341. ))
  5342. characterMakers.push(() => makeCharacter(
  5343. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5344. {
  5345. side: {
  5346. height: math.unit(7.2, "meter"),
  5347. weight: math.unit(8.2, "tons"),
  5348. name: "Side",
  5349. image: {
  5350. source: "./media/characters/cryae/side.svg",
  5351. extra: 3500 / 1500
  5352. }
  5353. }
  5354. },
  5355. [
  5356. {
  5357. name: "Normal",
  5358. height: math.unit(7.2, "meter"),
  5359. default: true
  5360. }
  5361. ]
  5362. ))
  5363. characterMakers.push(() => makeCharacter(
  5364. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5365. {
  5366. front: {
  5367. height: math.unit(6, "feet"),
  5368. weight: math.unit(175, "lb"),
  5369. name: "Front",
  5370. image: {
  5371. source: "./media/characters/xera/front.svg",
  5372. extra: 2377 / 1972,
  5373. bottom: 75.5 / 2452
  5374. }
  5375. },
  5376. side: {
  5377. height: math.unit(6, "feet"),
  5378. weight: math.unit(175, "lb"),
  5379. name: "Side",
  5380. image: {
  5381. source: "./media/characters/xera/side.svg",
  5382. extra: 2345 / 2019,
  5383. bottom: 39.7 / 2384
  5384. }
  5385. },
  5386. back: {
  5387. height: math.unit(6, "feet"),
  5388. weight: math.unit(175, "lb"),
  5389. name: "Back",
  5390. image: {
  5391. source: "./media/characters/xera/back.svg",
  5392. extra: 2095 / 1984,
  5393. bottom: 67 / 2166
  5394. }
  5395. },
  5396. },
  5397. [
  5398. {
  5399. name: "Small",
  5400. height: math.unit(10, "feet")
  5401. },
  5402. {
  5403. name: "Macro",
  5404. height: math.unit(500, "meters"),
  5405. default: true
  5406. },
  5407. {
  5408. name: "Macro+",
  5409. height: math.unit(10, "km")
  5410. },
  5411. {
  5412. name: "Gigamacro",
  5413. height: math.unit(25000, "km")
  5414. },
  5415. {
  5416. name: "Teramacro",
  5417. height: math.unit(3e6, "km")
  5418. }
  5419. ]
  5420. ))
  5421. characterMakers.push(() => makeCharacter(
  5422. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5423. {
  5424. front: {
  5425. height: math.unit(6, "feet"),
  5426. weight: math.unit(175, "lb"),
  5427. name: "Front",
  5428. image: {
  5429. source: "./media/characters/nebula/front.svg",
  5430. extra: 2566 / 2362,
  5431. bottom: 81 / 2644
  5432. }
  5433. }
  5434. },
  5435. [
  5436. {
  5437. name: "Small",
  5438. height: math.unit(4.5, "meters")
  5439. },
  5440. {
  5441. name: "Macro",
  5442. height: math.unit(1500, "meters"),
  5443. default: true
  5444. },
  5445. {
  5446. name: "Megamacro",
  5447. height: math.unit(150, "km")
  5448. },
  5449. {
  5450. name: "Gigamacro",
  5451. height: math.unit(27000, "km")
  5452. }
  5453. ]
  5454. ))
  5455. characterMakers.push(() => makeCharacter(
  5456. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5457. {
  5458. front: {
  5459. height: math.unit(6, "feet"),
  5460. weight: math.unit(225, "lb"),
  5461. name: "Front",
  5462. image: {
  5463. source: "./media/characters/abysgar/front.svg",
  5464. extra: 1739/1614,
  5465. bottom: 71/1810
  5466. }
  5467. },
  5468. frontNsfw: {
  5469. height: math.unit(6, "feet"),
  5470. weight: math.unit(225, "lb"),
  5471. name: "Front (NSFW)",
  5472. image: {
  5473. source: "./media/characters/abysgar/front-nsfw.svg",
  5474. extra: 1739/1614,
  5475. bottom: 71/1810
  5476. }
  5477. },
  5478. back: {
  5479. height: math.unit(4.6, "feet"),
  5480. weight: math.unit(225, "lb"),
  5481. name: "Back",
  5482. image: {
  5483. source: "./media/characters/abysgar/back.svg",
  5484. extra: 1384/1327,
  5485. bottom: 0/1384
  5486. }
  5487. },
  5488. head: {
  5489. height: math.unit(1.25, "feet"),
  5490. name: "Head",
  5491. image: {
  5492. source: "./media/characters/abysgar/head.svg",
  5493. extra: 669/569,
  5494. bottom: 0/669
  5495. }
  5496. },
  5497. },
  5498. [
  5499. {
  5500. name: "Small",
  5501. height: math.unit(4.5, "meters")
  5502. },
  5503. {
  5504. name: "Macro",
  5505. height: math.unit(1250, "meters"),
  5506. default: true
  5507. },
  5508. {
  5509. name: "Megamacro",
  5510. height: math.unit(125, "km")
  5511. },
  5512. {
  5513. name: "Gigamacro",
  5514. height: math.unit(26000, "km")
  5515. }
  5516. ]
  5517. ))
  5518. characterMakers.push(() => makeCharacter(
  5519. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5520. {
  5521. front: {
  5522. height: math.unit(6, "feet"),
  5523. weight: math.unit(180, "lb"),
  5524. name: "Front",
  5525. image: {
  5526. source: "./media/characters/yakuz/front.svg"
  5527. }
  5528. }
  5529. },
  5530. [
  5531. {
  5532. name: "Small",
  5533. height: math.unit(5, "meters")
  5534. },
  5535. {
  5536. name: "Macro",
  5537. height: math.unit(1500, "meters"),
  5538. default: true
  5539. },
  5540. {
  5541. name: "Megamacro",
  5542. height: math.unit(200, "km")
  5543. },
  5544. {
  5545. name: "Gigamacro",
  5546. height: math.unit(100000, "km")
  5547. }
  5548. ]
  5549. ))
  5550. characterMakers.push(() => makeCharacter(
  5551. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5552. {
  5553. front: {
  5554. height: math.unit(6, "feet"),
  5555. weight: math.unit(175, "lb"),
  5556. name: "Front",
  5557. image: {
  5558. source: "./media/characters/mirova/front.svg",
  5559. extra: 1947/1753,
  5560. bottom: 28/1975
  5561. }
  5562. },
  5563. back: {
  5564. height: math.unit(2.48, "feet"),
  5565. name: "Back",
  5566. image: {
  5567. source: "./media/characters/mirova/back.svg"
  5568. }
  5569. },
  5570. head: {
  5571. height: math.unit(1.94, "feet"),
  5572. name: "Head",
  5573. image: {
  5574. source: "./media/characters/mirova/head.svg"
  5575. }
  5576. },
  5577. headSide: {
  5578. height: math.unit(2, "feet"),
  5579. name: "Head (Side)",
  5580. image: {
  5581. source: "./media/characters/mirova/head-side.svg"
  5582. }
  5583. },
  5584. },
  5585. [
  5586. {
  5587. name: "Small",
  5588. height: math.unit(5, "meters")
  5589. },
  5590. {
  5591. name: "Macro",
  5592. height: math.unit(900, "meters"),
  5593. default: true
  5594. },
  5595. {
  5596. name: "Megamacro",
  5597. height: math.unit(135, "km")
  5598. },
  5599. {
  5600. name: "Gigamacro",
  5601. height: math.unit(20000, "km")
  5602. }
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5607. {
  5608. side: {
  5609. height: math.unit(28.35, "feet"),
  5610. weight: math.unit(99.75, "tons"),
  5611. name: "Side",
  5612. image: {
  5613. source: "./media/characters/asana-mech/side.svg",
  5614. extra: 923 / 699,
  5615. bottom: 50 / 975
  5616. }
  5617. },
  5618. chaingun: {
  5619. height: math.unit(7, "feet"),
  5620. weight: math.unit(2400, "lb"),
  5621. name: "Chaingun",
  5622. image: {
  5623. source: "./media/characters/asana-mech/chaingun.svg"
  5624. }
  5625. },
  5626. laser: {
  5627. height: math.unit(7.12, "feet"),
  5628. weight: math.unit(2000, "lb"),
  5629. name: "Laser",
  5630. image: {
  5631. source: "./media/characters/asana-mech/laser.svg"
  5632. }
  5633. },
  5634. },
  5635. [
  5636. {
  5637. name: "Normal",
  5638. height: math.unit(28.35, "feet"),
  5639. default: true
  5640. },
  5641. {
  5642. name: "Macro",
  5643. height: math.unit(2500, "feet")
  5644. },
  5645. {
  5646. name: "Megamacro",
  5647. height: math.unit(25, "miles")
  5648. },
  5649. {
  5650. name: "Examacro",
  5651. height: math.unit(6e8, "lightyears")
  5652. },
  5653. ]
  5654. ))
  5655. characterMakers.push(() => makeCharacter(
  5656. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5657. {
  5658. front: {
  5659. height: math.unit(5, "meters"),
  5660. weight: math.unit(1000, "kg"),
  5661. name: "Front",
  5662. image: {
  5663. source: "./media/characters/asche/front.svg",
  5664. extra: 1258 / 1190,
  5665. bottom: 47 / 1305
  5666. }
  5667. },
  5668. frontUnderwear: {
  5669. height: math.unit(5, "meters"),
  5670. weight: math.unit(1000, "kg"),
  5671. name: "Front (Underwear)",
  5672. image: {
  5673. source: "./media/characters/asche/front-underwear.svg",
  5674. extra: 1258 / 1190,
  5675. bottom: 47 / 1305
  5676. }
  5677. },
  5678. frontDressed: {
  5679. height: math.unit(5, "meters"),
  5680. weight: math.unit(1000, "kg"),
  5681. name: "Front (Dressed)",
  5682. image: {
  5683. source: "./media/characters/asche/front-dressed.svg",
  5684. extra: 1258 / 1190,
  5685. bottom: 47 / 1305
  5686. }
  5687. },
  5688. frontArmor: {
  5689. height: math.unit(5, "meters"),
  5690. weight: math.unit(1000, "kg"),
  5691. name: "Front (Armored)",
  5692. image: {
  5693. source: "./media/characters/asche/front-armored.svg",
  5694. extra: 1374 / 1308,
  5695. bottom: 23 / 1397
  5696. }
  5697. },
  5698. mp724: {
  5699. height: math.unit(0.96, "meters"),
  5700. weight: math.unit(38, "kg"),
  5701. name: "H&K MP724",
  5702. image: {
  5703. source: "./media/characters/asche/h&k-mp724.svg"
  5704. }
  5705. },
  5706. side: {
  5707. height: math.unit(5, "meters"),
  5708. weight: math.unit(1000, "kg"),
  5709. name: "Side",
  5710. image: {
  5711. source: "./media/characters/asche/side.svg",
  5712. extra: 1717 / 1609,
  5713. bottom: 0.005
  5714. }
  5715. },
  5716. back: {
  5717. height: math.unit(5, "meters"),
  5718. weight: math.unit(1000, "kg"),
  5719. name: "Back",
  5720. image: {
  5721. source: "./media/characters/asche/back.svg",
  5722. extra: 1570 / 1501
  5723. }
  5724. },
  5725. },
  5726. [
  5727. {
  5728. name: "DEFCON 5",
  5729. height: math.unit(5, "meters")
  5730. },
  5731. {
  5732. name: "DEFCON 4",
  5733. height: math.unit(500, "meters"),
  5734. default: true
  5735. },
  5736. {
  5737. name: "DEFCON 3",
  5738. height: math.unit(5, "km")
  5739. },
  5740. {
  5741. name: "DEFCON 2",
  5742. height: math.unit(500, "km")
  5743. },
  5744. {
  5745. name: "DEFCON 1",
  5746. height: math.unit(500000, "km")
  5747. },
  5748. {
  5749. name: "DEFCON 0",
  5750. height: math.unit(3, "gigaparsecs")
  5751. },
  5752. ]
  5753. ))
  5754. characterMakers.push(() => makeCharacter(
  5755. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5756. {
  5757. front: {
  5758. height: math.unit(7, "feet"),
  5759. weight: math.unit(92.7, "kg"),
  5760. name: "Front",
  5761. image: {
  5762. source: "./media/characters/gale/front.svg",
  5763. extra: 977/919,
  5764. bottom: 105/1082
  5765. }
  5766. },
  5767. side: {
  5768. height: math.unit(6.7, "feet"),
  5769. weight: math.unit(92.7, "kg"),
  5770. name: "Side",
  5771. image: {
  5772. source: "./media/characters/gale/side.svg",
  5773. extra: 978/922,
  5774. bottom: 140/1118
  5775. }
  5776. },
  5777. back: {
  5778. height: math.unit(7, "feet"),
  5779. weight: math.unit(92.7, "kg"),
  5780. name: "Back",
  5781. image: {
  5782. source: "./media/characters/gale/back.svg",
  5783. extra: 966/920,
  5784. bottom: 61/1027
  5785. }
  5786. },
  5787. maw: {
  5788. height: math.unit(2.23, "feet"),
  5789. name: "Maw",
  5790. image: {
  5791. source: "./media/characters/gale/maw.svg"
  5792. }
  5793. },
  5794. foot: {
  5795. height: math.unit(2.1, "feet"),
  5796. name: "Foot",
  5797. image: {
  5798. source: "./media/characters/gale/foot.svg"
  5799. }
  5800. },
  5801. },
  5802. [
  5803. {
  5804. name: "Normal",
  5805. height: math.unit(7, "feet")
  5806. },
  5807. {
  5808. name: "Macro",
  5809. height: math.unit(150, "feet"),
  5810. default: true
  5811. },
  5812. {
  5813. name: "Macro+",
  5814. height: math.unit(300, "feet")
  5815. },
  5816. ]
  5817. ))
  5818. characterMakers.push(() => makeCharacter(
  5819. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5820. {
  5821. front: {
  5822. height: math.unit(5 + 10/12, "feet"),
  5823. weight: math.unit(67, "kg"),
  5824. name: "Front",
  5825. image: {
  5826. source: "./media/characters/draylen/front.svg",
  5827. extra: 832/777,
  5828. bottom: 85/917
  5829. }
  5830. }
  5831. },
  5832. [
  5833. {
  5834. name: "Normal",
  5835. height: math.unit(5 + 10/12, "feet")
  5836. },
  5837. {
  5838. name: "Macro",
  5839. height: math.unit(150, "feet"),
  5840. default: true
  5841. }
  5842. ]
  5843. ))
  5844. characterMakers.push(() => makeCharacter(
  5845. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5846. {
  5847. front: {
  5848. height: math.unit(7 + 9 / 12, "feet"),
  5849. weight: math.unit(379, "lbs"),
  5850. name: "Front",
  5851. image: {
  5852. source: "./media/characters/chez/front.svg"
  5853. }
  5854. },
  5855. side: {
  5856. height: math.unit(7 + 9 / 12, "feet"),
  5857. weight: math.unit(379, "lbs"),
  5858. name: "Side",
  5859. image: {
  5860. source: "./media/characters/chez/side.svg"
  5861. }
  5862. }
  5863. },
  5864. [
  5865. {
  5866. name: "Normal",
  5867. height: math.unit(7 + 9 / 12, "feet"),
  5868. default: true
  5869. },
  5870. {
  5871. name: "God King",
  5872. height: math.unit(9750000, "meters")
  5873. }
  5874. ]
  5875. ))
  5876. characterMakers.push(() => makeCharacter(
  5877. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5878. {
  5879. front: {
  5880. height: math.unit(6, "feet"),
  5881. weight: math.unit(275, "lbs"),
  5882. name: "Front",
  5883. image: {
  5884. source: "./media/characters/kaylum/front.svg",
  5885. bottom: 0.01,
  5886. extra: 1166 / 1031
  5887. }
  5888. },
  5889. frontWingless: {
  5890. height: math.unit(6, "feet"),
  5891. weight: math.unit(275, "lbs"),
  5892. name: "Front (Wingless)",
  5893. image: {
  5894. source: "./media/characters/kaylum/front-wingless.svg",
  5895. bottom: 0.01,
  5896. extra: 1117 / 1031
  5897. }
  5898. }
  5899. },
  5900. [
  5901. {
  5902. name: "Normal",
  5903. height: math.unit(3.05, "meters")
  5904. },
  5905. {
  5906. name: "Master",
  5907. height: math.unit(5.5, "meters")
  5908. },
  5909. {
  5910. name: "Rampage",
  5911. height: math.unit(19, "meters")
  5912. },
  5913. {
  5914. name: "Macro Lite",
  5915. height: math.unit(37, "meters")
  5916. },
  5917. {
  5918. name: "Hyper Predator",
  5919. height: math.unit(61, "meters")
  5920. },
  5921. {
  5922. name: "Macro",
  5923. height: math.unit(138, "meters"),
  5924. default: true
  5925. }
  5926. ]
  5927. ))
  5928. characterMakers.push(() => makeCharacter(
  5929. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5930. {
  5931. front: {
  5932. height: math.unit(5 + 5 / 12, "feet"),
  5933. weight: math.unit(120, "lbs"),
  5934. name: "Front",
  5935. image: {
  5936. source: "./media/characters/geta/front.svg",
  5937. extra: 1003/933,
  5938. bottom: 21/1024
  5939. }
  5940. },
  5941. paw: {
  5942. height: math.unit(0.35, "feet"),
  5943. name: "Paw",
  5944. image: {
  5945. source: "./media/characters/geta/paw.svg"
  5946. }
  5947. },
  5948. },
  5949. [
  5950. {
  5951. name: "Micro",
  5952. height: math.unit(3, "inches"),
  5953. default: true
  5954. },
  5955. {
  5956. name: "Normal",
  5957. height: math.unit(5 + 5 / 12, "feet")
  5958. }
  5959. ]
  5960. ))
  5961. characterMakers.push(() => makeCharacter(
  5962. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5963. {
  5964. front: {
  5965. height: math.unit(6, "feet"),
  5966. weight: math.unit(300, "lbs"),
  5967. name: "Front",
  5968. image: {
  5969. source: "./media/characters/tyrnn/front.svg"
  5970. }
  5971. }
  5972. },
  5973. [
  5974. {
  5975. name: "Main Height",
  5976. height: math.unit(355, "feet"),
  5977. default: true
  5978. },
  5979. {
  5980. name: "Fave. Height",
  5981. height: math.unit(2400, "feet")
  5982. }
  5983. ]
  5984. ))
  5985. characterMakers.push(() => makeCharacter(
  5986. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5987. {
  5988. front: {
  5989. height: math.unit(6, "feet"),
  5990. weight: math.unit(300, "lbs"),
  5991. name: "Front",
  5992. image: {
  5993. source: "./media/characters/appledectomy/front.svg"
  5994. }
  5995. }
  5996. },
  5997. [
  5998. {
  5999. name: "Macro",
  6000. height: math.unit(2500, "feet")
  6001. },
  6002. {
  6003. name: "Megamacro",
  6004. height: math.unit(50, "miles"),
  6005. default: true
  6006. },
  6007. {
  6008. name: "Gigamacro",
  6009. height: math.unit(5000, "miles")
  6010. },
  6011. {
  6012. name: "Teramacro",
  6013. height: math.unit(250000, "miles")
  6014. },
  6015. ]
  6016. ))
  6017. characterMakers.push(() => makeCharacter(
  6018. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  6019. {
  6020. front: {
  6021. height: math.unit(6, "feet"),
  6022. weight: math.unit(200, "lbs"),
  6023. name: "Front",
  6024. image: {
  6025. source: "./media/characters/vulpes/front.svg",
  6026. extra: 573 / 543,
  6027. bottom: 0.033
  6028. }
  6029. },
  6030. side: {
  6031. height: math.unit(6, "feet"),
  6032. weight: math.unit(200, "lbs"),
  6033. name: "Side",
  6034. image: {
  6035. source: "./media/characters/vulpes/side.svg",
  6036. extra: 577 / 549,
  6037. bottom: 11 / 588
  6038. }
  6039. },
  6040. back: {
  6041. height: math.unit(6, "feet"),
  6042. weight: math.unit(200, "lbs"),
  6043. name: "Back",
  6044. image: {
  6045. source: "./media/characters/vulpes/back.svg",
  6046. extra: 573 / 549,
  6047. bottom: 20 / 593
  6048. }
  6049. },
  6050. feet: {
  6051. height: math.unit(1.276, "feet"),
  6052. name: "Feet",
  6053. image: {
  6054. source: "./media/characters/vulpes/feet.svg"
  6055. }
  6056. },
  6057. maw: {
  6058. height: math.unit(1.18, "feet"),
  6059. name: "Maw",
  6060. image: {
  6061. source: "./media/characters/vulpes/maw.svg"
  6062. }
  6063. },
  6064. },
  6065. [
  6066. {
  6067. name: "Micro",
  6068. height: math.unit(2, "inches")
  6069. },
  6070. {
  6071. name: "Normal",
  6072. height: math.unit(6.3, "feet")
  6073. },
  6074. {
  6075. name: "Macro",
  6076. height: math.unit(850, "feet")
  6077. },
  6078. {
  6079. name: "Megamacro",
  6080. height: math.unit(7500, "feet"),
  6081. default: true
  6082. },
  6083. {
  6084. name: "Gigamacro",
  6085. height: math.unit(570000, "miles")
  6086. }
  6087. ]
  6088. ))
  6089. characterMakers.push(() => makeCharacter(
  6090. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  6091. {
  6092. front: {
  6093. height: math.unit(6, "feet"),
  6094. weight: math.unit(210, "lbs"),
  6095. name: "Front",
  6096. image: {
  6097. source: "./media/characters/rain-fallen/front.svg"
  6098. }
  6099. },
  6100. side: {
  6101. height: math.unit(6, "feet"),
  6102. weight: math.unit(210, "lbs"),
  6103. name: "Side",
  6104. image: {
  6105. source: "./media/characters/rain-fallen/side.svg"
  6106. }
  6107. },
  6108. back: {
  6109. height: math.unit(6, "feet"),
  6110. weight: math.unit(210, "lbs"),
  6111. name: "Back",
  6112. image: {
  6113. source: "./media/characters/rain-fallen/back.svg"
  6114. }
  6115. },
  6116. feral: {
  6117. height: math.unit(9, "feet"),
  6118. weight: math.unit(700, "lbs"),
  6119. name: "Feral",
  6120. image: {
  6121. source: "./media/characters/rain-fallen/feral.svg"
  6122. }
  6123. },
  6124. },
  6125. [
  6126. {
  6127. name: "Meddling with Mortals",
  6128. height: math.unit(8 + 8/12, "feet")
  6129. },
  6130. {
  6131. name: "Normal",
  6132. height: math.unit(5, "meter")
  6133. },
  6134. {
  6135. name: "Macro",
  6136. height: math.unit(150, "meter"),
  6137. default: true
  6138. },
  6139. {
  6140. name: "Megamacro",
  6141. height: math.unit(278e6, "meter")
  6142. },
  6143. {
  6144. name: "Gigamacro",
  6145. height: math.unit(2e9, "meter")
  6146. },
  6147. {
  6148. name: "Teramacro",
  6149. height: math.unit(8e12, "meter")
  6150. },
  6151. {
  6152. name: "Devourer",
  6153. height: math.unit(14, "zettameters")
  6154. },
  6155. {
  6156. name: "Scarlet King",
  6157. height: math.unit(18, "yottameters")
  6158. },
  6159. {
  6160. name: "Void",
  6161. height: math.unit(1e88, "yottameters")
  6162. }
  6163. ]
  6164. ))
  6165. characterMakers.push(() => makeCharacter(
  6166. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6167. {
  6168. standing: {
  6169. height: math.unit(6, "feet"),
  6170. weight: math.unit(180, "lbs"),
  6171. name: "Standing",
  6172. image: {
  6173. source: "./media/characters/zaakira/standing.svg",
  6174. extra: 1599/1504,
  6175. bottom: 39/1638
  6176. }
  6177. },
  6178. laying: {
  6179. height: math.unit(3.3, "feet"),
  6180. weight: math.unit(180, "lbs"),
  6181. name: "Laying",
  6182. image: {
  6183. source: "./media/characters/zaakira/laying.svg"
  6184. }
  6185. },
  6186. },
  6187. [
  6188. {
  6189. name: "Normal",
  6190. height: math.unit(12, "feet")
  6191. },
  6192. {
  6193. name: "Macro",
  6194. height: math.unit(279, "feet"),
  6195. default: true
  6196. }
  6197. ]
  6198. ))
  6199. characterMakers.push(() => makeCharacter(
  6200. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6201. {
  6202. femSfw: {
  6203. height: math.unit(8, "feet"),
  6204. weight: math.unit(350, "lb"),
  6205. name: "Fem",
  6206. image: {
  6207. source: "./media/characters/sigvald/fem-sfw.svg",
  6208. extra: 182 / 164,
  6209. bottom: 8.7 / 190.5
  6210. }
  6211. },
  6212. femNsfw: {
  6213. height: math.unit(8, "feet"),
  6214. weight: math.unit(350, "lb"),
  6215. name: "Fem (NSFW)",
  6216. image: {
  6217. source: "./media/characters/sigvald/fem-nsfw.svg",
  6218. extra: 182 / 164,
  6219. bottom: 8.7 / 190.5
  6220. }
  6221. },
  6222. maleNsfw: {
  6223. height: math.unit(8, "feet"),
  6224. weight: math.unit(350, "lb"),
  6225. name: "Male (NSFW)",
  6226. image: {
  6227. source: "./media/characters/sigvald/male-nsfw.svg",
  6228. extra: 182 / 164,
  6229. bottom: 8.7 / 190.5
  6230. }
  6231. },
  6232. hermNsfw: {
  6233. height: math.unit(8, "feet"),
  6234. weight: math.unit(350, "lb"),
  6235. name: "Herm (NSFW)",
  6236. image: {
  6237. source: "./media/characters/sigvald/herm-nsfw.svg",
  6238. extra: 182 / 164,
  6239. bottom: 8.7 / 190.5
  6240. }
  6241. },
  6242. dick: {
  6243. height: math.unit(2.36, "feet"),
  6244. name: "Dick",
  6245. image: {
  6246. source: "./media/characters/sigvald/dick.svg"
  6247. }
  6248. },
  6249. eye: {
  6250. height: math.unit(0.31, "feet"),
  6251. name: "Eye",
  6252. image: {
  6253. source: "./media/characters/sigvald/eye.svg"
  6254. }
  6255. },
  6256. mouth: {
  6257. height: math.unit(0.92, "feet"),
  6258. name: "Mouth",
  6259. image: {
  6260. source: "./media/characters/sigvald/mouth.svg"
  6261. }
  6262. },
  6263. paws: {
  6264. height: math.unit(2.2, "feet"),
  6265. name: "Paws",
  6266. image: {
  6267. source: "./media/characters/sigvald/paws.svg"
  6268. }
  6269. }
  6270. },
  6271. [
  6272. {
  6273. name: "Normal",
  6274. height: math.unit(8, "feet")
  6275. },
  6276. {
  6277. name: "Large",
  6278. height: math.unit(12, "feet")
  6279. },
  6280. {
  6281. name: "Larger",
  6282. height: math.unit(20, "feet")
  6283. },
  6284. {
  6285. name: "Macro",
  6286. height: math.unit(150, "feet")
  6287. },
  6288. {
  6289. name: "Macro+",
  6290. height: math.unit(200, "feet"),
  6291. default: true
  6292. },
  6293. ]
  6294. ))
  6295. characterMakers.push(() => makeCharacter(
  6296. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6297. {
  6298. anthro_front: {
  6299. height: math.unit(5 + 11/12, "feet"),
  6300. weight: math.unit(250, "lb"),
  6301. name: "Front",
  6302. image: {
  6303. source: "./media/characters/scott/anthro-front.svg",
  6304. extra: 851/781,
  6305. bottom: 54/905
  6306. },
  6307. form: "anthro",
  6308. default: true
  6309. },
  6310. anthro_side: {
  6311. height: math.unit(5.1, "feet"),
  6312. weight: math.unit(250, "lb"),
  6313. name: "Side",
  6314. image: {
  6315. source: "./media/characters/scott/anthro-side.svg"
  6316. },
  6317. form: "anthro",
  6318. },
  6319. anthro_dick: {
  6320. height: math.unit(1.33, "feet"),
  6321. name: "Dick",
  6322. image: {
  6323. source: "./media/characters/scott/anthro-dick.svg"
  6324. },
  6325. form: "anthro",
  6326. },
  6327. side: {
  6328. height: math.unit(12, "feet"),
  6329. weight: math.unit(2000, "kg"),
  6330. name: "Side",
  6331. image: {
  6332. source: "./media/characters/scott/side.svg",
  6333. extra: 754 / 724,
  6334. bottom: 0.069
  6335. },
  6336. form: "taur",
  6337. default: true
  6338. },
  6339. upright: {
  6340. height: math.unit(12, "feet"),
  6341. weight: math.unit(2000, "kg"),
  6342. name: "Upright",
  6343. image: {
  6344. source: "./media/characters/scott/upright.svg",
  6345. extra: 3881 / 3722,
  6346. bottom: 0.05
  6347. },
  6348. form: "taur",
  6349. },
  6350. },
  6351. [
  6352. {
  6353. name: "Normal",
  6354. height: math.unit(5 + 11/12, "feet"),
  6355. default: true,
  6356. form: "anthro"
  6357. },
  6358. {
  6359. name: "Normal",
  6360. height: math.unit(12, "feet"),
  6361. default: true,
  6362. form: "taur"
  6363. },
  6364. ],
  6365. {
  6366. "anthro": {
  6367. name: "Anthro",
  6368. default: true
  6369. },
  6370. "taur": {
  6371. name: "Taur",
  6372. },
  6373. }
  6374. ))
  6375. characterMakers.push(() => makeCharacter(
  6376. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6377. {
  6378. side: {
  6379. height: math.unit(8, "meters"),
  6380. weight: math.unit(84755, "lbs"),
  6381. name: "Side",
  6382. image: {
  6383. source: "./media/characters/tobias/side.svg",
  6384. extra: 1474 / 1096,
  6385. bottom: 38.9 / 1513.1235
  6386. }
  6387. },
  6388. maw: {
  6389. height: math.unit(2.3, "meters"),
  6390. name: "Maw",
  6391. image: {
  6392. source: "./media/characters/tobias/maw.svg"
  6393. }
  6394. },
  6395. burp: {
  6396. height: math.unit(2.85, "meters"),
  6397. name: "Burp",
  6398. image: {
  6399. source: "./media/characters/tobias/burp.svg"
  6400. }
  6401. },
  6402. },
  6403. [
  6404. {
  6405. name: "Normal",
  6406. height: math.unit(8, "meters"),
  6407. default: true
  6408. },
  6409. ]
  6410. ))
  6411. characterMakers.push(() => makeCharacter(
  6412. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6413. {
  6414. front: {
  6415. height: math.unit(5.5, "feet"),
  6416. weight: math.unit(400, "lbs"),
  6417. name: "Front",
  6418. image: {
  6419. source: "./media/characters/kieran/front.svg",
  6420. extra: 2694 / 2364,
  6421. bottom: 217 / 2908
  6422. }
  6423. },
  6424. side: {
  6425. height: math.unit(5.5, "feet"),
  6426. weight: math.unit(400, "lbs"),
  6427. name: "Side",
  6428. image: {
  6429. source: "./media/characters/kieran/side.svg",
  6430. extra: 875 / 777,
  6431. bottom: 84.6 / 959
  6432. }
  6433. },
  6434. },
  6435. [
  6436. {
  6437. name: "Normal",
  6438. height: math.unit(5.5, "feet"),
  6439. default: true
  6440. },
  6441. ]
  6442. ))
  6443. characterMakers.push(() => makeCharacter(
  6444. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6445. {
  6446. side: {
  6447. height: math.unit(2, "meters"),
  6448. weight: math.unit(70, "kg"),
  6449. name: "Side",
  6450. image: {
  6451. source: "./media/characters/sanya/side.svg",
  6452. bottom: 0.02,
  6453. extra: 1.02
  6454. }
  6455. },
  6456. },
  6457. [
  6458. {
  6459. name: "Small",
  6460. height: math.unit(2, "meters")
  6461. },
  6462. {
  6463. name: "Normal",
  6464. height: math.unit(3, "meters")
  6465. },
  6466. {
  6467. name: "Macro",
  6468. height: math.unit(16, "meters"),
  6469. default: true
  6470. },
  6471. ]
  6472. ))
  6473. characterMakers.push(() => makeCharacter(
  6474. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6475. {
  6476. front: {
  6477. height: math.unit(2, "meters"),
  6478. weight: math.unit(120, "kg"),
  6479. name: "Front",
  6480. image: {
  6481. source: "./media/characters/miranda/front.svg",
  6482. extra: 195 / 185,
  6483. bottom: 10.9 / 206.5
  6484. }
  6485. },
  6486. back: {
  6487. height: math.unit(2, "meters"),
  6488. weight: math.unit(120, "kg"),
  6489. name: "Back",
  6490. image: {
  6491. source: "./media/characters/miranda/back.svg",
  6492. extra: 201 / 193,
  6493. bottom: 2.3 / 203.7
  6494. }
  6495. },
  6496. },
  6497. [
  6498. {
  6499. name: "Normal",
  6500. height: math.unit(10, "feet"),
  6501. default: true
  6502. }
  6503. ]
  6504. ))
  6505. characterMakers.push(() => makeCharacter(
  6506. { name: "James", species: ["deer"], tags: ["anthro"] },
  6507. {
  6508. side: {
  6509. height: math.unit(2, "meters"),
  6510. weight: math.unit(100, "kg"),
  6511. name: "Front",
  6512. image: {
  6513. source: "./media/characters/james/front.svg",
  6514. extra: 10 / 8.5
  6515. }
  6516. },
  6517. },
  6518. [
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(8.5, "feet"),
  6522. default: true
  6523. }
  6524. ]
  6525. ))
  6526. characterMakers.push(() => makeCharacter(
  6527. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6528. {
  6529. side: {
  6530. height: math.unit(9.5, "feet"),
  6531. weight: math.unit(2500, "lbs"),
  6532. name: "Side",
  6533. image: {
  6534. source: "./media/characters/heather/side.svg"
  6535. }
  6536. },
  6537. },
  6538. [
  6539. {
  6540. name: "Normal",
  6541. height: math.unit(9.5, "feet"),
  6542. default: true
  6543. }
  6544. ]
  6545. ))
  6546. characterMakers.push(() => makeCharacter(
  6547. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6548. {
  6549. side: {
  6550. height: math.unit(6.5, "feet"),
  6551. weight: math.unit(400, "lbs"),
  6552. name: "Side",
  6553. image: {
  6554. source: "./media/characters/lukas/side.svg",
  6555. extra: 7.25 / 6.5
  6556. }
  6557. },
  6558. },
  6559. [
  6560. {
  6561. name: "Normal",
  6562. height: math.unit(6.5, "feet"),
  6563. default: true
  6564. }
  6565. ]
  6566. ))
  6567. characterMakers.push(() => makeCharacter(
  6568. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6569. {
  6570. side: {
  6571. height: math.unit(5, "feet"),
  6572. weight: math.unit(3000, "lbs"),
  6573. name: "Side",
  6574. image: {
  6575. source: "./media/characters/louise/side.svg"
  6576. }
  6577. },
  6578. },
  6579. [
  6580. {
  6581. name: "Normal",
  6582. height: math.unit(5, "feet"),
  6583. default: true
  6584. }
  6585. ]
  6586. ))
  6587. characterMakers.push(() => makeCharacter(
  6588. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6589. {
  6590. side: {
  6591. height: math.unit(6, "feet"),
  6592. weight: math.unit(150, "lbs"),
  6593. name: "Side",
  6594. image: {
  6595. source: "./media/characters/ramona/side.svg",
  6596. extra: 871/854,
  6597. bottom: 41/912
  6598. }
  6599. },
  6600. },
  6601. [
  6602. {
  6603. name: "Normal",
  6604. height: math.unit(6 + 4/12, "feet")
  6605. },
  6606. {
  6607. name: "Minimacro",
  6608. height: math.unit(5.3, "meters"),
  6609. default: true
  6610. },
  6611. {
  6612. name: "Macro",
  6613. height: math.unit(20, "stories")
  6614. },
  6615. {
  6616. name: "Macro+",
  6617. height: math.unit(50, "stories")
  6618. },
  6619. ]
  6620. ))
  6621. characterMakers.push(() => makeCharacter(
  6622. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6623. {
  6624. standing: {
  6625. height: math.unit(5.75, "feet"),
  6626. weight: math.unit(160, "lbs"),
  6627. name: "Standing",
  6628. image: {
  6629. source: "./media/characters/deerpuff/standing.svg",
  6630. extra: 682 / 624
  6631. }
  6632. },
  6633. sitting: {
  6634. height: math.unit(5.75 / 1.79, "feet"),
  6635. weight: math.unit(160, "lbs"),
  6636. name: "Sitting",
  6637. image: {
  6638. source: "./media/characters/deerpuff/sitting.svg",
  6639. bottom: 44 / 400,
  6640. extra: 1
  6641. }
  6642. },
  6643. taurLaying: {
  6644. height: math.unit(6, "feet"),
  6645. weight: math.unit(400, "lbs"),
  6646. name: "Taur (Laying)",
  6647. image: {
  6648. source: "./media/characters/deerpuff/taur-laying.svg"
  6649. }
  6650. },
  6651. },
  6652. [
  6653. {
  6654. name: "Puffball",
  6655. height: math.unit(6, "inches")
  6656. },
  6657. {
  6658. name: "Normalpuff",
  6659. height: math.unit(5.75, "feet")
  6660. },
  6661. {
  6662. name: "Macropuff",
  6663. height: math.unit(1500, "feet"),
  6664. default: true
  6665. },
  6666. {
  6667. name: "Megapuff",
  6668. height: math.unit(500, "miles")
  6669. },
  6670. {
  6671. name: "Gigapuff",
  6672. height: math.unit(250000, "miles")
  6673. },
  6674. {
  6675. name: "Omegapuff",
  6676. height: math.unit(1000, "lightyears")
  6677. },
  6678. ]
  6679. ))
  6680. characterMakers.push(() => makeCharacter(
  6681. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6682. {
  6683. stomping: {
  6684. height: math.unit(6, "feet"),
  6685. weight: math.unit(170, "lbs"),
  6686. name: "Stomping",
  6687. image: {
  6688. source: "./media/characters/vivian/stomping.svg"
  6689. }
  6690. },
  6691. sitting: {
  6692. height: math.unit(6 / 1.75, "feet"),
  6693. weight: math.unit(170, "lbs"),
  6694. name: "Sitting",
  6695. image: {
  6696. source: "./media/characters/vivian/sitting.svg",
  6697. bottom: 1 / 6.4,
  6698. extra: 1,
  6699. }
  6700. },
  6701. },
  6702. [
  6703. {
  6704. name: "Normal",
  6705. height: math.unit(7, "feet"),
  6706. default: true
  6707. },
  6708. {
  6709. name: "Macro",
  6710. height: math.unit(10, "stories")
  6711. },
  6712. {
  6713. name: "Macro+",
  6714. height: math.unit(30, "stories")
  6715. },
  6716. {
  6717. name: "Megamacro",
  6718. height: math.unit(10, "miles")
  6719. },
  6720. {
  6721. name: "Megamacro+",
  6722. height: math.unit(2750000, "meters")
  6723. },
  6724. ]
  6725. ))
  6726. characterMakers.push(() => makeCharacter(
  6727. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6728. {
  6729. front: {
  6730. height: math.unit(6, "feet"),
  6731. weight: math.unit(160, "lbs"),
  6732. name: "Front",
  6733. image: {
  6734. source: "./media/characters/prince/front.svg",
  6735. extra: 1938/1682,
  6736. bottom: 45/1983
  6737. }
  6738. },
  6739. back: {
  6740. height: math.unit(6, "feet"),
  6741. weight: math.unit(160, "lbs"),
  6742. name: "Back",
  6743. image: {
  6744. source: "./media/characters/prince/back.svg",
  6745. extra: 1955/1726,
  6746. bottom: 6/1961
  6747. }
  6748. },
  6749. },
  6750. [
  6751. {
  6752. name: "Normal",
  6753. height: math.unit(7.75, "feet"),
  6754. default: true
  6755. },
  6756. {
  6757. name: "Not cute",
  6758. height: math.unit(17, "feet")
  6759. },
  6760. {
  6761. name: "I said NOT",
  6762. height: math.unit(91, "feet")
  6763. },
  6764. {
  6765. name: "Please stop",
  6766. height: math.unit(560, "feet")
  6767. },
  6768. {
  6769. name: "What have you done",
  6770. height: math.unit(2200, "feet")
  6771. },
  6772. {
  6773. name: "Deer God",
  6774. height: math.unit(3.6, "miles")
  6775. },
  6776. ]
  6777. ))
  6778. characterMakers.push(() => makeCharacter(
  6779. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6780. {
  6781. standing: {
  6782. height: math.unit(6, "feet"),
  6783. weight: math.unit(300, "lbs"),
  6784. name: "Standing",
  6785. image: {
  6786. source: "./media/characters/psymon/standing.svg",
  6787. extra: 1888 / 1810,
  6788. bottom: 0.05
  6789. }
  6790. },
  6791. slithering: {
  6792. height: math.unit(6, "feet"),
  6793. weight: math.unit(300, "lbs"),
  6794. name: "Slithering",
  6795. image: {
  6796. source: "./media/characters/psymon/slithering.svg",
  6797. extra: 1330 / 1224
  6798. }
  6799. },
  6800. slitheringAlt: {
  6801. height: math.unit(6, "feet"),
  6802. weight: math.unit(300, "lbs"),
  6803. name: "Slithering (Alt)",
  6804. image: {
  6805. source: "./media/characters/psymon/slithering-alt.svg",
  6806. extra: 1330 / 1224
  6807. }
  6808. },
  6809. },
  6810. [
  6811. {
  6812. name: "Normal",
  6813. height: math.unit(11.25, "feet"),
  6814. default: true
  6815. },
  6816. {
  6817. name: "Large",
  6818. height: math.unit(27, "feet")
  6819. },
  6820. {
  6821. name: "Giant",
  6822. height: math.unit(87, "feet")
  6823. },
  6824. {
  6825. name: "Macro",
  6826. height: math.unit(365, "feet")
  6827. },
  6828. {
  6829. name: "Megamacro",
  6830. height: math.unit(3, "miles")
  6831. },
  6832. {
  6833. name: "World Serpent",
  6834. height: math.unit(8000, "miles")
  6835. },
  6836. ]
  6837. ))
  6838. characterMakers.push(() => makeCharacter(
  6839. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6840. {
  6841. front: {
  6842. height: math.unit(6, "feet"),
  6843. weight: math.unit(180, "lbs"),
  6844. name: "Front",
  6845. image: {
  6846. source: "./media/characters/daimos/front.svg",
  6847. extra: 4160 / 3897,
  6848. bottom: 0.021
  6849. }
  6850. }
  6851. },
  6852. [
  6853. {
  6854. name: "Normal",
  6855. height: math.unit(8, "feet"),
  6856. default: true
  6857. },
  6858. {
  6859. name: "Big Dog",
  6860. height: math.unit(22, "feet")
  6861. },
  6862. {
  6863. name: "Macro",
  6864. height: math.unit(127, "feet")
  6865. },
  6866. {
  6867. name: "Megamacro",
  6868. height: math.unit(3600, "feet")
  6869. },
  6870. ]
  6871. ))
  6872. characterMakers.push(() => makeCharacter(
  6873. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6874. {
  6875. side: {
  6876. height: math.unit(6, "feet"),
  6877. weight: math.unit(180, "lbs"),
  6878. name: "Side",
  6879. image: {
  6880. source: "./media/characters/blake/side.svg",
  6881. extra: 1212 / 1120,
  6882. bottom: 0.05
  6883. }
  6884. },
  6885. crouched: {
  6886. height: math.unit(6 * 0.57, "feet"),
  6887. weight: math.unit(180, "lbs"),
  6888. name: "Crouched",
  6889. image: {
  6890. source: "./media/characters/blake/crouched.svg",
  6891. extra: 840 / 587,
  6892. bottom: 0.04
  6893. }
  6894. },
  6895. bent: {
  6896. height: math.unit(6 * 0.75, "feet"),
  6897. weight: math.unit(180, "lbs"),
  6898. name: "Bent",
  6899. image: {
  6900. source: "./media/characters/blake/bent.svg",
  6901. extra: 592 / 544,
  6902. bottom: 0.035
  6903. }
  6904. },
  6905. },
  6906. [
  6907. {
  6908. name: "Normal",
  6909. height: math.unit(8 + 1 / 6, "feet"),
  6910. default: true
  6911. },
  6912. {
  6913. name: "Big Backside",
  6914. height: math.unit(37, "feet")
  6915. },
  6916. {
  6917. name: "Subway Shredder",
  6918. height: math.unit(72, "feet")
  6919. },
  6920. {
  6921. name: "City Carver",
  6922. height: math.unit(1675, "feet")
  6923. },
  6924. {
  6925. name: "Tectonic Tweaker",
  6926. height: math.unit(2300, "miles")
  6927. },
  6928. ]
  6929. ))
  6930. characterMakers.push(() => makeCharacter(
  6931. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6932. {
  6933. front: {
  6934. height: math.unit(6, "feet"),
  6935. weight: math.unit(180, "lbs"),
  6936. name: "Front",
  6937. image: {
  6938. source: "./media/characters/guisetto/front.svg",
  6939. extra: 856 / 817,
  6940. bottom: 0.06
  6941. }
  6942. },
  6943. airborne: {
  6944. height: math.unit(6, "feet"),
  6945. weight: math.unit(180, "lbs"),
  6946. name: "Airborne",
  6947. image: {
  6948. source: "./media/characters/guisetto/airborne.svg",
  6949. extra: 584 / 525
  6950. }
  6951. },
  6952. },
  6953. [
  6954. {
  6955. name: "Normal",
  6956. height: math.unit(10 + 11 / 12, "feet"),
  6957. default: true
  6958. },
  6959. {
  6960. name: "Large",
  6961. height: math.unit(35, "feet")
  6962. },
  6963. {
  6964. name: "Macro",
  6965. height: math.unit(475, "feet")
  6966. },
  6967. ]
  6968. ))
  6969. characterMakers.push(() => makeCharacter(
  6970. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6971. {
  6972. front: {
  6973. height: math.unit(6, "feet"),
  6974. weight: math.unit(180, "lbs"),
  6975. name: "Front",
  6976. image: {
  6977. source: "./media/characters/luxor/front.svg",
  6978. extra: 2940 / 2152
  6979. }
  6980. },
  6981. back: {
  6982. height: math.unit(6, "feet"),
  6983. weight: math.unit(180, "lbs"),
  6984. name: "Back",
  6985. image: {
  6986. source: "./media/characters/luxor/back.svg",
  6987. extra: 1083 / 960
  6988. }
  6989. },
  6990. },
  6991. [
  6992. {
  6993. name: "Normal",
  6994. height: math.unit(5 + 5 / 6, "feet"),
  6995. default: true
  6996. },
  6997. {
  6998. name: "Lamp",
  6999. height: math.unit(50, "feet")
  7000. },
  7001. {
  7002. name: "Lämp",
  7003. height: math.unit(300, "feet")
  7004. },
  7005. {
  7006. name: "The sun is a lamp",
  7007. height: math.unit(250000, "miles")
  7008. },
  7009. ]
  7010. ))
  7011. characterMakers.push(() => makeCharacter(
  7012. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  7013. {
  7014. front: {
  7015. height: math.unit(6, "feet"),
  7016. weight: math.unit(50, "lbs"),
  7017. name: "Front",
  7018. image: {
  7019. source: "./media/characters/huoyan/front.svg"
  7020. }
  7021. },
  7022. side: {
  7023. height: math.unit(6, "feet"),
  7024. weight: math.unit(180, "lbs"),
  7025. name: "Side",
  7026. image: {
  7027. source: "./media/characters/huoyan/side.svg"
  7028. }
  7029. },
  7030. },
  7031. [
  7032. {
  7033. name: "Chef",
  7034. height: math.unit(9, "feet")
  7035. },
  7036. {
  7037. name: "Normal",
  7038. height: math.unit(65, "feet"),
  7039. default: true
  7040. },
  7041. {
  7042. name: "Macro",
  7043. height: math.unit(780, "feet")
  7044. },
  7045. {
  7046. name: "Flaming Mountain",
  7047. height: math.unit(4.8, "miles")
  7048. },
  7049. {
  7050. name: "Celestial",
  7051. height: math.unit(765000, "miles")
  7052. },
  7053. ]
  7054. ))
  7055. characterMakers.push(() => makeCharacter(
  7056. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  7057. {
  7058. front: {
  7059. height: math.unit(5 + 3 / 4, "feet"),
  7060. weight: math.unit(120, "lbs"),
  7061. name: "Front",
  7062. image: {
  7063. source: "./media/characters/tails/front.svg"
  7064. }
  7065. }
  7066. },
  7067. [
  7068. {
  7069. name: "Normal",
  7070. height: math.unit(5 + 3 / 4, "feet"),
  7071. default: true
  7072. }
  7073. ]
  7074. ))
  7075. characterMakers.push(() => makeCharacter(
  7076. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  7077. {
  7078. front: {
  7079. height: math.unit(4, "feet"),
  7080. weight: math.unit(50, "lbs"),
  7081. name: "Front",
  7082. image: {
  7083. source: "./media/characters/rainy/front.svg"
  7084. }
  7085. }
  7086. },
  7087. [
  7088. {
  7089. name: "Macro",
  7090. height: math.unit(800, "feet"),
  7091. default: true
  7092. }
  7093. ]
  7094. ))
  7095. characterMakers.push(() => makeCharacter(
  7096. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  7097. {
  7098. front: {
  7099. height: math.unit(6, "feet"),
  7100. weight: math.unit(150, "lbs"),
  7101. name: "Front",
  7102. image: {
  7103. source: "./media/characters/rainier/front.svg"
  7104. }
  7105. }
  7106. },
  7107. [
  7108. {
  7109. name: "Micro",
  7110. height: math.unit(2, "mm"),
  7111. default: true
  7112. }
  7113. ]
  7114. ))
  7115. characterMakers.push(() => makeCharacter(
  7116. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  7117. {
  7118. front: {
  7119. height: math.unit(8 + 4/12, "feet"),
  7120. weight: math.unit(450, "kilograms"),
  7121. name: "Front",
  7122. image: {
  7123. source: "./media/characters/andy-renard/front.svg",
  7124. extra: 862/809,
  7125. bottom: 85/947
  7126. },
  7127. extraAttributes: {
  7128. "pawSize": {
  7129. name: "Paw Size",
  7130. power: 2,
  7131. type: "area",
  7132. base: math.unit(0.45*0.3, "meters^2")
  7133. },
  7134. "handSize": {
  7135. name: "Hand Size",
  7136. power: 2,
  7137. type: "area",
  7138. base: math.unit(0.4 * 0.3, "meters^2")
  7139. },
  7140. "cockSize": {
  7141. name: "Cock Length",
  7142. power: 1,
  7143. type: "length",
  7144. base: math.unit(0.75, "meters")
  7145. },
  7146. "ballDiameter": {
  7147. name: "Ball Diameter",
  7148. power: 1,
  7149. type: "length",
  7150. base: math.unit(0.3, "meters")
  7151. },
  7152. "ballVolume": {
  7153. name: "Ball Volume",
  7154. power: 3,
  7155. type: "volume",
  7156. base: math.unit(0.01413716694, "meters^3")
  7157. },
  7158. }
  7159. },
  7160. back: {
  7161. height: math.unit(8 + 4/12, "feet"),
  7162. weight: math.unit(450, "kilograms"),
  7163. name: "Back",
  7164. image: {
  7165. source: "./media/characters/andy-renard/back.svg",
  7166. extra: 1112/1033,
  7167. bottom: 64/1176
  7168. },
  7169. extraAttributes: {
  7170. "pawSize": {
  7171. name: "Paw Size",
  7172. power: 2,
  7173. type: "area",
  7174. base: math.unit(0.45*0.3, "meters^2")
  7175. },
  7176. "handSize": {
  7177. name: "Hand Size",
  7178. power: 2,
  7179. type: "area",
  7180. base: math.unit(0.4 * 0.3, "meters^2")
  7181. },
  7182. "cockSize": {
  7183. name: "Cock Length",
  7184. power: 1,
  7185. type: "length",
  7186. base: math.unit(0.75, "meters")
  7187. },
  7188. "ballDiameter": {
  7189. name: "Ball Diameter",
  7190. power: 1,
  7191. type: "length",
  7192. base: math.unit(0.3, "meters")
  7193. },
  7194. "ballVolume": {
  7195. name: "Ball Volume",
  7196. power: 3,
  7197. type: "volume",
  7198. base: math.unit(0.01413716694, "meters^3")
  7199. },
  7200. }
  7201. },
  7202. },
  7203. [
  7204. {
  7205. name: "Tall",
  7206. height: math.unit(6 + 8/12, "feet")
  7207. },
  7208. {
  7209. name: "Very Tall",
  7210. height: math.unit(8 + 4/12, "feet")
  7211. },
  7212. {
  7213. name: "Mini Macro",
  7214. height: math.unit(15, "feet"),
  7215. default: true
  7216. },
  7217. {
  7218. name: "Giant",
  7219. height: math.unit(50, "feet")
  7220. },
  7221. {
  7222. name: "Nice",
  7223. height: math.unit(69, "feet")
  7224. },
  7225. {
  7226. name: "Macro",
  7227. height: math.unit(100, "feet")
  7228. },
  7229. {
  7230. name: "Enormous",
  7231. height: math.unit(500, "feet")
  7232. },
  7233. {
  7234. name: "Gargantuan",
  7235. height: math.unit(1000, "feet")
  7236. },
  7237. {
  7238. name: "Mega",
  7239. height: math.unit(1, "mile")
  7240. },
  7241. {
  7242. name: "Giga",
  7243. height: math.unit(50, "miles")
  7244. },
  7245. {
  7246. name: "Tera",
  7247. height: math.unit(1000, "miles")
  7248. },
  7249. {
  7250. name: "Cosmic",
  7251. height: math.unit(1.5, "galaxies")
  7252. },
  7253. {
  7254. name: "God",
  7255. height: math.unit(1.5, "universes")
  7256. },
  7257. {
  7258. name: "Chief Execute God",
  7259. height: math.unit(1.5, "multiverses")
  7260. },
  7261. ]
  7262. ))
  7263. characterMakers.push(() => makeCharacter(
  7264. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7265. {
  7266. front: {
  7267. height: math.unit(6, "feet"),
  7268. weight: math.unit(210, "lbs"),
  7269. name: "Front",
  7270. image: {
  7271. source: "./media/characters/cimmaron/front-sfw.svg",
  7272. extra: 701 / 676,
  7273. bottom: 0.046
  7274. }
  7275. },
  7276. back: {
  7277. height: math.unit(6, "feet"),
  7278. weight: math.unit(210, "lbs"),
  7279. name: "Back",
  7280. image: {
  7281. source: "./media/characters/cimmaron/back-sfw.svg",
  7282. extra: 701 / 676,
  7283. bottom: 0.046
  7284. }
  7285. },
  7286. frontNsfw: {
  7287. height: math.unit(6, "feet"),
  7288. weight: math.unit(210, "lbs"),
  7289. name: "Front (NSFW)",
  7290. image: {
  7291. source: "./media/characters/cimmaron/front-nsfw.svg",
  7292. extra: 701 / 676,
  7293. bottom: 0.046
  7294. }
  7295. },
  7296. backNsfw: {
  7297. height: math.unit(6, "feet"),
  7298. weight: math.unit(210, "lbs"),
  7299. name: "Back (NSFW)",
  7300. image: {
  7301. source: "./media/characters/cimmaron/back-nsfw.svg",
  7302. extra: 701 / 676,
  7303. bottom: 0.046
  7304. }
  7305. },
  7306. dick: {
  7307. height: math.unit(1.714, "feet"),
  7308. name: "Dick",
  7309. image: {
  7310. source: "./media/characters/cimmaron/dick.svg"
  7311. }
  7312. },
  7313. },
  7314. [
  7315. {
  7316. name: "Normal",
  7317. height: math.unit(6, "feet"),
  7318. default: true
  7319. },
  7320. {
  7321. name: "Macro Mayor",
  7322. height: math.unit(350, "meters")
  7323. },
  7324. ]
  7325. ))
  7326. characterMakers.push(() => makeCharacter(
  7327. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7328. {
  7329. front: {
  7330. height: math.unit(6, "feet"),
  7331. weight: math.unit(200, "lbs"),
  7332. name: "Front",
  7333. image: {
  7334. source: "./media/characters/akari/front.svg",
  7335. extra: 962 / 901,
  7336. bottom: 0.04
  7337. }
  7338. }
  7339. },
  7340. [
  7341. {
  7342. name: "Micro",
  7343. height: math.unit(5, "inches"),
  7344. default: true
  7345. },
  7346. {
  7347. name: "Normal",
  7348. height: math.unit(7, "feet")
  7349. },
  7350. ]
  7351. ))
  7352. characterMakers.push(() => makeCharacter(
  7353. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7354. {
  7355. front: {
  7356. height: math.unit(6, "feet"),
  7357. weight: math.unit(140, "lbs"),
  7358. name: "Front",
  7359. image: {
  7360. source: "./media/characters/cynosura/front.svg",
  7361. extra: 437/410,
  7362. bottom: 9/446
  7363. }
  7364. },
  7365. back: {
  7366. height: math.unit(6, "feet"),
  7367. weight: math.unit(140, "lbs"),
  7368. name: "Back",
  7369. image: {
  7370. source: "./media/characters/cynosura/back.svg",
  7371. extra: 1304/1160,
  7372. bottom: 71/1375
  7373. }
  7374. },
  7375. },
  7376. [
  7377. {
  7378. name: "Micro",
  7379. height: math.unit(4, "inches")
  7380. },
  7381. {
  7382. name: "Normal",
  7383. height: math.unit(5.75, "feet"),
  7384. default: true
  7385. },
  7386. {
  7387. name: "Tall",
  7388. height: math.unit(10, "feet")
  7389. },
  7390. {
  7391. name: "Big",
  7392. height: math.unit(20, "feet")
  7393. },
  7394. {
  7395. name: "Macro",
  7396. height: math.unit(50, "feet")
  7397. },
  7398. ]
  7399. ))
  7400. characterMakers.push(() => makeCharacter(
  7401. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7402. {
  7403. front: {
  7404. height: math.unit(13 + 2/12, "feet"),
  7405. weight: math.unit(800, "kg"),
  7406. name: "Front",
  7407. image: {
  7408. source: "./media/characters/gin/front.svg",
  7409. extra: 1312/1191,
  7410. bottom: 45/1357
  7411. }
  7412. },
  7413. mouth: {
  7414. height: math.unit(2.39 * 1.8, "feet"),
  7415. name: "Mouth",
  7416. image: {
  7417. source: "./media/characters/gin/mouth.svg"
  7418. }
  7419. },
  7420. hand: {
  7421. height: math.unit(1.57 * 2.19, "feet"),
  7422. name: "Hand",
  7423. image: {
  7424. source: "./media/characters/gin/hand.svg"
  7425. }
  7426. },
  7427. foot: {
  7428. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7429. name: "Foot",
  7430. image: {
  7431. source: "./media/characters/gin/foot.svg"
  7432. }
  7433. },
  7434. sole: {
  7435. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7436. name: "Sole",
  7437. image: {
  7438. source: "./media/characters/gin/sole.svg"
  7439. }
  7440. },
  7441. },
  7442. [
  7443. {
  7444. name: "Very Small",
  7445. height: math.unit(13 + 2 / 12, "feet")
  7446. },
  7447. {
  7448. name: "Micro",
  7449. height: math.unit(600, "miles")
  7450. },
  7451. {
  7452. name: "Regular",
  7453. height: math.unit(20, "earths"),
  7454. default: true
  7455. },
  7456. {
  7457. name: "Macro",
  7458. height: math.unit(2.2, "solarradii")
  7459. },
  7460. {
  7461. name: "Teramacro",
  7462. height: math.unit(1.2, "galaxies")
  7463. },
  7464. {
  7465. name: "Omegamacro",
  7466. height: math.unit(200, "universes")
  7467. },
  7468. ]
  7469. ))
  7470. characterMakers.push(() => makeCharacter(
  7471. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7472. {
  7473. front: {
  7474. height: math.unit(6 + 1 / 6, "feet"),
  7475. weight: math.unit(178, "lbs"),
  7476. name: "Front",
  7477. image: {
  7478. source: "./media/characters/guy/front.svg"
  7479. }
  7480. }
  7481. },
  7482. [
  7483. {
  7484. name: "Normal",
  7485. height: math.unit(6 + 1 / 6, "feet"),
  7486. default: true
  7487. },
  7488. {
  7489. name: "Large",
  7490. height: math.unit(25 + 7 / 12, "feet")
  7491. },
  7492. {
  7493. name: "Macro",
  7494. height: math.unit(60 + 9 / 12, "feet")
  7495. },
  7496. {
  7497. name: "Macro+",
  7498. height: math.unit(246, "feet")
  7499. },
  7500. {
  7501. name: "Macro++",
  7502. height: math.unit(878, "feet")
  7503. }
  7504. ]
  7505. ))
  7506. characterMakers.push(() => makeCharacter(
  7507. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7508. {
  7509. front: {
  7510. height: math.unit(9, "feet"),
  7511. weight: math.unit(800, "lbs"),
  7512. name: "Front",
  7513. image: {
  7514. source: "./media/characters/tiberius/front.svg",
  7515. extra: 2295 / 2071
  7516. }
  7517. },
  7518. back: {
  7519. height: math.unit(9, "feet"),
  7520. weight: math.unit(800, "lbs"),
  7521. name: "Back",
  7522. image: {
  7523. source: "./media/characters/tiberius/back.svg",
  7524. extra: 2373 / 2160
  7525. }
  7526. },
  7527. },
  7528. [
  7529. {
  7530. name: "Normal",
  7531. height: math.unit(9, "feet"),
  7532. default: true
  7533. }
  7534. ]
  7535. ))
  7536. characterMakers.push(() => makeCharacter(
  7537. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7538. {
  7539. front: {
  7540. height: math.unit(6, "feet"),
  7541. weight: math.unit(600, "lbs"),
  7542. name: "Front",
  7543. image: {
  7544. source: "./media/characters/surgo/front.svg",
  7545. extra: 3591 / 2227
  7546. }
  7547. },
  7548. back: {
  7549. height: math.unit(6, "feet"),
  7550. weight: math.unit(600, "lbs"),
  7551. name: "Back",
  7552. image: {
  7553. source: "./media/characters/surgo/back.svg",
  7554. extra: 3557 / 2228
  7555. }
  7556. },
  7557. laying: {
  7558. height: math.unit(6 * 0.85, "feet"),
  7559. weight: math.unit(600, "lbs"),
  7560. name: "Laying",
  7561. image: {
  7562. source: "./media/characters/surgo/laying.svg"
  7563. }
  7564. },
  7565. },
  7566. [
  7567. {
  7568. name: "Normal",
  7569. height: math.unit(6, "feet"),
  7570. default: true
  7571. }
  7572. ]
  7573. ))
  7574. characterMakers.push(() => makeCharacter(
  7575. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7576. {
  7577. side: {
  7578. height: math.unit(6, "feet"),
  7579. weight: math.unit(150, "lbs"),
  7580. name: "Side",
  7581. image: {
  7582. source: "./media/characters/cibus/side.svg",
  7583. extra: 800 / 400
  7584. }
  7585. },
  7586. },
  7587. [
  7588. {
  7589. name: "Normal",
  7590. height: math.unit(6, "feet"),
  7591. default: true
  7592. }
  7593. ]
  7594. ))
  7595. characterMakers.push(() => makeCharacter(
  7596. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7597. {
  7598. front: {
  7599. height: math.unit(6, "feet"),
  7600. weight: math.unit(240, "lbs"),
  7601. name: "Front",
  7602. image: {
  7603. source: "./media/characters/nibbles/front.svg"
  7604. }
  7605. },
  7606. side: {
  7607. height: math.unit(6, "feet"),
  7608. weight: math.unit(240, "lbs"),
  7609. name: "Side",
  7610. image: {
  7611. source: "./media/characters/nibbles/side.svg"
  7612. }
  7613. },
  7614. },
  7615. [
  7616. {
  7617. name: "Normal",
  7618. height: math.unit(9, "feet"),
  7619. default: true
  7620. }
  7621. ]
  7622. ))
  7623. characterMakers.push(() => makeCharacter(
  7624. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7625. {
  7626. side: {
  7627. height: math.unit(5 + 1 / 6, "feet"),
  7628. weight: math.unit(130, "lbs"),
  7629. name: "Side",
  7630. image: {
  7631. source: "./media/characters/rikky/side.svg",
  7632. extra: 851 / 801
  7633. }
  7634. },
  7635. },
  7636. [
  7637. {
  7638. name: "Normal",
  7639. height: math.unit(5 + 1 / 6, "feet")
  7640. },
  7641. {
  7642. name: "Macro",
  7643. height: math.unit(152, "feet"),
  7644. default: true
  7645. },
  7646. {
  7647. name: "Megamacro",
  7648. height: math.unit(7, "miles")
  7649. }
  7650. ]
  7651. ))
  7652. characterMakers.push(() => makeCharacter(
  7653. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7654. {
  7655. side: {
  7656. height: math.unit(370, "cm"),
  7657. weight: math.unit(350, "lbs"),
  7658. name: "Side",
  7659. image: {
  7660. source: "./media/characters/malfressa/side.svg"
  7661. }
  7662. },
  7663. walking: {
  7664. height: math.unit(370, "cm"),
  7665. weight: math.unit(350, "lbs"),
  7666. name: "Walking",
  7667. image: {
  7668. source: "./media/characters/malfressa/walking.svg"
  7669. }
  7670. },
  7671. feral: {
  7672. height: math.unit(2500, "cm"),
  7673. weight: math.unit(100000, "lbs"),
  7674. name: "Feral",
  7675. image: {
  7676. source: "./media/characters/malfressa/feral.svg",
  7677. extra: 2108 / 837,
  7678. bottom: 0.02
  7679. }
  7680. },
  7681. },
  7682. [
  7683. {
  7684. name: "Normal",
  7685. height: math.unit(370, "cm")
  7686. },
  7687. {
  7688. name: "Macro",
  7689. height: math.unit(300, "meters"),
  7690. default: true
  7691. }
  7692. ]
  7693. ))
  7694. characterMakers.push(() => makeCharacter(
  7695. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7696. {
  7697. front: {
  7698. height: math.unit(6, "feet"),
  7699. weight: math.unit(60, "kg"),
  7700. name: "Front",
  7701. image: {
  7702. source: "./media/characters/jaro/front.svg",
  7703. extra: 845/817,
  7704. bottom: 45/890
  7705. }
  7706. },
  7707. back: {
  7708. height: math.unit(6, "feet"),
  7709. weight: math.unit(60, "kg"),
  7710. name: "Back",
  7711. image: {
  7712. source: "./media/characters/jaro/back.svg",
  7713. extra: 847/817,
  7714. bottom: 34/881
  7715. }
  7716. },
  7717. },
  7718. [
  7719. {
  7720. name: "Micro",
  7721. height: math.unit(7, "inches")
  7722. },
  7723. {
  7724. name: "Normal",
  7725. height: math.unit(5.5, "feet"),
  7726. default: true
  7727. },
  7728. {
  7729. name: "Minimacro",
  7730. height: math.unit(20, "feet")
  7731. },
  7732. {
  7733. name: "Macro",
  7734. height: math.unit(200, "meters")
  7735. }
  7736. ]
  7737. ))
  7738. characterMakers.push(() => makeCharacter(
  7739. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7740. {
  7741. front: {
  7742. height: math.unit(6, "feet"),
  7743. weight: math.unit(195, "lb"),
  7744. name: "Front",
  7745. image: {
  7746. source: "./media/characters/rogue/front.svg"
  7747. }
  7748. },
  7749. },
  7750. [
  7751. {
  7752. name: "Macro",
  7753. height: math.unit(90, "feet"),
  7754. default: true
  7755. },
  7756. ]
  7757. ))
  7758. characterMakers.push(() => makeCharacter(
  7759. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7760. {
  7761. standing: {
  7762. height: math.unit(5 + 8 / 12, "feet"),
  7763. weight: math.unit(140, "lb"),
  7764. name: "Standing",
  7765. image: {
  7766. source: "./media/characters/piper/standing.svg",
  7767. extra: 1440/1284,
  7768. bottom: 66/1506
  7769. }
  7770. },
  7771. running: {
  7772. height: math.unit(5 + 8 / 12, "feet"),
  7773. weight: math.unit(140, "lb"),
  7774. name: "Running",
  7775. image: {
  7776. source: "./media/characters/piper/running.svg",
  7777. extra: 3948/3655,
  7778. bottom: 0/3948
  7779. }
  7780. },
  7781. sole: {
  7782. height: math.unit(0.81, "feet"),
  7783. weight: math.unit(2, "kg"),
  7784. name: "Sole",
  7785. image: {
  7786. source: "./media/characters/piper/sole.svg"
  7787. }
  7788. },
  7789. nipple: {
  7790. height: math.unit(0.25, "feet"),
  7791. weight: math.unit(1.5, "lb"),
  7792. name: "Nipple",
  7793. image: {
  7794. source: "./media/characters/piper/nipple.svg"
  7795. }
  7796. },
  7797. head: {
  7798. height: math.unit(1.1, "feet"),
  7799. name: "Head",
  7800. image: {
  7801. source: "./media/characters/piper/head.svg"
  7802. }
  7803. },
  7804. },
  7805. [
  7806. {
  7807. name: "Micro",
  7808. height: math.unit(2, "inches")
  7809. },
  7810. {
  7811. name: "Normal",
  7812. height: math.unit(5 + 8 / 12, "feet")
  7813. },
  7814. {
  7815. name: "Macro",
  7816. height: math.unit(250, "feet"),
  7817. default: true
  7818. },
  7819. {
  7820. name: "Megamacro",
  7821. height: math.unit(7, "miles")
  7822. },
  7823. ]
  7824. ))
  7825. characterMakers.push(() => makeCharacter(
  7826. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7827. {
  7828. front: {
  7829. height: math.unit(6, "feet"),
  7830. weight: math.unit(220, "lb"),
  7831. name: "Front",
  7832. image: {
  7833. source: "./media/characters/gemini/front.svg"
  7834. }
  7835. },
  7836. back: {
  7837. height: math.unit(6, "feet"),
  7838. weight: math.unit(220, "lb"),
  7839. name: "Back",
  7840. image: {
  7841. source: "./media/characters/gemini/back.svg"
  7842. }
  7843. },
  7844. kneeling: {
  7845. height: math.unit(6 / 1.5, "feet"),
  7846. weight: math.unit(220, "lb"),
  7847. name: "Kneeling",
  7848. image: {
  7849. source: "./media/characters/gemini/kneeling.svg",
  7850. bottom: 0.02
  7851. }
  7852. },
  7853. },
  7854. [
  7855. {
  7856. name: "Macro",
  7857. height: math.unit(300, "meters"),
  7858. default: true
  7859. },
  7860. {
  7861. name: "Megamacro",
  7862. height: math.unit(6900, "meters")
  7863. },
  7864. ]
  7865. ))
  7866. characterMakers.push(() => makeCharacter(
  7867. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7868. {
  7869. anthro: {
  7870. height: math.unit(2.35, "meters"),
  7871. weight: math.unit(73, "kg"),
  7872. name: "Anthro",
  7873. image: {
  7874. source: "./media/characters/alicia/anthro.svg",
  7875. extra: 2571 / 2385,
  7876. bottom: 75 / 2648
  7877. }
  7878. },
  7879. paw: {
  7880. height: math.unit(1.32, "feet"),
  7881. name: "Paw",
  7882. image: {
  7883. source: "./media/characters/alicia/paw.svg"
  7884. }
  7885. },
  7886. feral: {
  7887. height: math.unit(1.69, "meters"),
  7888. weight: math.unit(73, "kg"),
  7889. name: "Feral",
  7890. image: {
  7891. source: "./media/characters/alicia/feral.svg",
  7892. extra: 2123 / 1715,
  7893. bottom: 222 / 2349
  7894. }
  7895. },
  7896. },
  7897. [
  7898. {
  7899. name: "Normal",
  7900. height: math.unit(2.35, "meters")
  7901. },
  7902. {
  7903. name: "Macro",
  7904. height: math.unit(60, "meters"),
  7905. default: true
  7906. },
  7907. {
  7908. name: "Megamacro",
  7909. height: math.unit(10000, "kilometers")
  7910. },
  7911. ]
  7912. ))
  7913. characterMakers.push(() => makeCharacter(
  7914. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7915. {
  7916. front: {
  7917. height: math.unit(7, "feet"),
  7918. weight: math.unit(250, "lbs"),
  7919. name: "Front",
  7920. image: {
  7921. source: "./media/characters/archy/front.svg"
  7922. }
  7923. }
  7924. },
  7925. [
  7926. {
  7927. name: "Micro",
  7928. height: math.unit(1, "inch")
  7929. },
  7930. {
  7931. name: "Shorty",
  7932. height: math.unit(5, "feet")
  7933. },
  7934. {
  7935. name: "Normal",
  7936. height: math.unit(7, "feet")
  7937. },
  7938. {
  7939. name: "Macro",
  7940. height: math.unit(600, "meters"),
  7941. default: true
  7942. },
  7943. {
  7944. name: "Megamacro",
  7945. height: math.unit(1, "mile")
  7946. },
  7947. ]
  7948. ))
  7949. characterMakers.push(() => makeCharacter(
  7950. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7951. {
  7952. front: {
  7953. height: math.unit(1.65, "meters"),
  7954. weight: math.unit(74, "kg"),
  7955. name: "Front",
  7956. image: {
  7957. source: "./media/characters/berri/front.svg",
  7958. extra: 857 / 837,
  7959. bottom: 18 / 877
  7960. }
  7961. },
  7962. bum: {
  7963. height: math.unit(1.46, "feet"),
  7964. name: "Bum",
  7965. image: {
  7966. source: "./media/characters/berri/bum.svg"
  7967. }
  7968. },
  7969. mouth: {
  7970. height: math.unit(0.44, "feet"),
  7971. name: "Mouth",
  7972. image: {
  7973. source: "./media/characters/berri/mouth.svg"
  7974. }
  7975. },
  7976. paw: {
  7977. height: math.unit(0.826, "feet"),
  7978. name: "Paw",
  7979. image: {
  7980. source: "./media/characters/berri/paw.svg"
  7981. }
  7982. },
  7983. },
  7984. [
  7985. {
  7986. name: "Normal",
  7987. height: math.unit(1.65, "meters")
  7988. },
  7989. {
  7990. name: "Macro",
  7991. height: math.unit(60, "m"),
  7992. default: true
  7993. },
  7994. {
  7995. name: "Megamacro",
  7996. height: math.unit(9.213, "km")
  7997. },
  7998. {
  7999. name: "Planet Eater",
  8000. height: math.unit(489, "megameters")
  8001. },
  8002. {
  8003. name: "Teramacro",
  8004. height: math.unit(2471635000000, "meters")
  8005. },
  8006. {
  8007. name: "Examacro",
  8008. height: math.unit(8.0624e+26, "meters")
  8009. }
  8010. ]
  8011. ))
  8012. characterMakers.push(() => makeCharacter(
  8013. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  8014. {
  8015. front: {
  8016. height: math.unit(1.72, "meters"),
  8017. weight: math.unit(68, "kg"),
  8018. name: "Front",
  8019. image: {
  8020. source: "./media/characters/lexi/front.svg"
  8021. }
  8022. }
  8023. },
  8024. [
  8025. {
  8026. name: "Very Smol",
  8027. height: math.unit(10, "mm")
  8028. },
  8029. {
  8030. name: "Micro",
  8031. height: math.unit(6.8, "cm"),
  8032. default: true
  8033. },
  8034. {
  8035. name: "Normal",
  8036. height: math.unit(1.72, "m")
  8037. }
  8038. ]
  8039. ))
  8040. characterMakers.push(() => makeCharacter(
  8041. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  8042. {
  8043. front: {
  8044. height: math.unit(1.69, "meters"),
  8045. weight: math.unit(68, "kg"),
  8046. name: "Front",
  8047. image: {
  8048. source: "./media/characters/martin/front.svg",
  8049. extra: 596 / 581
  8050. }
  8051. }
  8052. },
  8053. [
  8054. {
  8055. name: "Micro",
  8056. height: math.unit(6.85, "cm"),
  8057. default: true
  8058. },
  8059. {
  8060. name: "Normal",
  8061. height: math.unit(1.69, "m")
  8062. }
  8063. ]
  8064. ))
  8065. characterMakers.push(() => makeCharacter(
  8066. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  8067. {
  8068. front: {
  8069. height: math.unit(1.69, "meters"),
  8070. weight: math.unit(68, "kg"),
  8071. name: "Front",
  8072. image: {
  8073. source: "./media/characters/juno/front.svg"
  8074. }
  8075. }
  8076. },
  8077. [
  8078. {
  8079. name: "Micro",
  8080. height: math.unit(7, "cm")
  8081. },
  8082. {
  8083. name: "Normal",
  8084. height: math.unit(1.89, "m")
  8085. },
  8086. {
  8087. name: "Macro",
  8088. height: math.unit(353, "meters"),
  8089. default: true
  8090. }
  8091. ]
  8092. ))
  8093. characterMakers.push(() => makeCharacter(
  8094. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  8095. {
  8096. front: {
  8097. height: math.unit(1.93, "meters"),
  8098. weight: math.unit(83, "kg"),
  8099. name: "Front",
  8100. image: {
  8101. source: "./media/characters/samantha/front.svg"
  8102. }
  8103. },
  8104. frontClothed: {
  8105. height: math.unit(1.93, "meters"),
  8106. weight: math.unit(83, "kg"),
  8107. name: "Front (Clothed)",
  8108. image: {
  8109. source: "./media/characters/samantha/front-clothed.svg"
  8110. }
  8111. },
  8112. back: {
  8113. height: math.unit(1.93, "meters"),
  8114. weight: math.unit(83, "kg"),
  8115. name: "Back",
  8116. image: {
  8117. source: "./media/characters/samantha/back.svg"
  8118. }
  8119. },
  8120. },
  8121. [
  8122. {
  8123. name: "Normal",
  8124. height: math.unit(1.93, "m")
  8125. },
  8126. {
  8127. name: "Macro",
  8128. height: math.unit(74, "meters"),
  8129. default: true
  8130. },
  8131. {
  8132. name: "Macro+",
  8133. height: math.unit(223, "meters"),
  8134. },
  8135. {
  8136. name: "Megamacro",
  8137. height: math.unit(8381, "meters"),
  8138. },
  8139. {
  8140. name: "Megamacro+",
  8141. height: math.unit(12000, "kilometers")
  8142. },
  8143. ]
  8144. ))
  8145. characterMakers.push(() => makeCharacter(
  8146. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  8147. {
  8148. front: {
  8149. height: math.unit(1.92, "meters"),
  8150. weight: math.unit(80, "kg"),
  8151. name: "Front",
  8152. image: {
  8153. source: "./media/characters/dr-clay/front.svg"
  8154. }
  8155. },
  8156. frontClothed: {
  8157. height: math.unit(1.92, "meters"),
  8158. weight: math.unit(80, "kg"),
  8159. name: "Front (Clothed)",
  8160. image: {
  8161. source: "./media/characters/dr-clay/front-clothed.svg"
  8162. }
  8163. }
  8164. },
  8165. [
  8166. {
  8167. name: "Normal",
  8168. height: math.unit(1.92, "m")
  8169. },
  8170. {
  8171. name: "Macro",
  8172. height: math.unit(214, "meters"),
  8173. default: true
  8174. },
  8175. {
  8176. name: "Macro+",
  8177. height: math.unit(12.237, "meters"),
  8178. },
  8179. {
  8180. name: "Megamacro",
  8181. height: math.unit(557, "megameters"),
  8182. },
  8183. {
  8184. name: "Unimaginable",
  8185. height: math.unit(120e9, "lightyears")
  8186. },
  8187. ]
  8188. ))
  8189. characterMakers.push(() => makeCharacter(
  8190. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8191. {
  8192. front: {
  8193. height: math.unit(2, "meters"),
  8194. weight: math.unit(80, "kg"),
  8195. name: "Front",
  8196. image: {
  8197. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8198. }
  8199. }
  8200. },
  8201. [
  8202. {
  8203. name: "Teramacro",
  8204. height: math.unit(500000, "lightyears"),
  8205. default: true
  8206. },
  8207. ]
  8208. ))
  8209. characterMakers.push(() => makeCharacter(
  8210. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8211. {
  8212. crux: {
  8213. height: math.unit(2, "meters"),
  8214. weight: math.unit(150, "kg"),
  8215. name: "Crux",
  8216. image: {
  8217. source: "./media/characters/vemus/crux.svg",
  8218. extra: 1074/936,
  8219. bottom: 23/1097
  8220. }
  8221. },
  8222. skunkTanuki: {
  8223. height: math.unit(2, "meters"),
  8224. weight: math.unit(150, "kg"),
  8225. name: "Skunk-Tanuki",
  8226. image: {
  8227. source: "./media/characters/vemus/skunk-tanuki.svg",
  8228. extra: 926/893,
  8229. bottom: 20/946
  8230. }
  8231. },
  8232. },
  8233. [
  8234. {
  8235. name: "Normal",
  8236. height: math.unit(4, "meters"),
  8237. default: true
  8238. },
  8239. {
  8240. name: "Big",
  8241. height: math.unit(8, "meters")
  8242. },
  8243. {
  8244. name: "Macro",
  8245. height: math.unit(100, "meters")
  8246. },
  8247. {
  8248. name: "Macro+",
  8249. height: math.unit(1500, "meters")
  8250. },
  8251. {
  8252. name: "Stellar",
  8253. height: math.unit(14e8, "meters")
  8254. },
  8255. ]
  8256. ))
  8257. characterMakers.push(() => makeCharacter(
  8258. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8259. {
  8260. front: {
  8261. height: math.unit(2, "meters"),
  8262. weight: math.unit(70, "kg"),
  8263. name: "Front",
  8264. image: {
  8265. source: "./media/characters/beherit/front.svg",
  8266. extra: 1234/1109,
  8267. bottom: 55/1289
  8268. }
  8269. }
  8270. },
  8271. [
  8272. {
  8273. name: "Normal",
  8274. height: math.unit(6, "feet")
  8275. },
  8276. {
  8277. name: "Lorg",
  8278. height: math.unit(25, "feet"),
  8279. default: true
  8280. },
  8281. {
  8282. name: "Lorger",
  8283. height: math.unit(75, "feet")
  8284. },
  8285. {
  8286. name: "Macro",
  8287. height: math.unit(200, "meters")
  8288. },
  8289. ]
  8290. ))
  8291. characterMakers.push(() => makeCharacter(
  8292. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8293. {
  8294. front: {
  8295. height: math.unit(2, "meters"),
  8296. weight: math.unit(150, "kg"),
  8297. name: "Front",
  8298. image: {
  8299. source: "./media/characters/everett/front.svg",
  8300. extra: 1017/866,
  8301. bottom: 86/1103
  8302. }
  8303. },
  8304. paw: {
  8305. height: math.unit(2 / 3.6, "meters"),
  8306. name: "Paw",
  8307. image: {
  8308. source: "./media/characters/everett/paw.svg"
  8309. }
  8310. },
  8311. },
  8312. [
  8313. {
  8314. name: "Normal",
  8315. height: math.unit(15, "feet"),
  8316. default: true
  8317. },
  8318. {
  8319. name: "Lorg",
  8320. height: math.unit(70, "feet"),
  8321. default: true
  8322. },
  8323. {
  8324. name: "Lorger",
  8325. height: math.unit(250, "feet")
  8326. },
  8327. {
  8328. name: "Macro",
  8329. height: math.unit(500, "meters")
  8330. },
  8331. ]
  8332. ))
  8333. characterMakers.push(() => makeCharacter(
  8334. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8335. {
  8336. front: {
  8337. height: math.unit(2, "meters"),
  8338. weight: math.unit(86, "kg"),
  8339. name: "Front",
  8340. image: {
  8341. source: "./media/characters/rose/front.svg",
  8342. extra: 1785/1636,
  8343. bottom: 30/1815
  8344. },
  8345. form: "liom",
  8346. default: true
  8347. },
  8348. frontSporty: {
  8349. height: math.unit(2, "meters"),
  8350. weight: math.unit(86, "kg"),
  8351. name: "Front (Sporty)",
  8352. image: {
  8353. source: "./media/characters/rose/front-sporty.svg",
  8354. extra: 350/335,
  8355. bottom: 10/360
  8356. },
  8357. form: "liom"
  8358. },
  8359. frontAlt: {
  8360. height: math.unit(1.6, "meters"),
  8361. weight: math.unit(86, "kg"),
  8362. name: "Front (Alt)",
  8363. image: {
  8364. source: "./media/characters/rose/front-alt.svg",
  8365. extra: 299/283,
  8366. bottom: 3/302
  8367. },
  8368. form: "liom"
  8369. },
  8370. plush: {
  8371. height: math.unit(2, "meters"),
  8372. weight: math.unit(86/3, "kg"),
  8373. name: "Plush",
  8374. image: {
  8375. source: "./media/characters/rose/plush.svg",
  8376. extra: 361/337,
  8377. bottom: 11/372
  8378. },
  8379. form: "plush",
  8380. default: true
  8381. },
  8382. faeStanding: {
  8383. height: math.unit(10, "cm"),
  8384. weight: math.unit(10, "grams"),
  8385. name: "Standing",
  8386. image: {
  8387. source: "./media/characters/rose/fae-standing.svg",
  8388. extra: 1189/1060,
  8389. bottom: 27/1216
  8390. },
  8391. form: "fae",
  8392. default: true
  8393. },
  8394. faeSitting: {
  8395. height: math.unit(5, "cm"),
  8396. weight: math.unit(10, "grams"),
  8397. name: "Sitting",
  8398. image: {
  8399. source: "./media/characters/rose/fae-sitting.svg",
  8400. extra: 737/577,
  8401. bottom: 356/1093
  8402. },
  8403. form: "fae"
  8404. },
  8405. faePaw: {
  8406. height: math.unit(1.35, "cm"),
  8407. name: "Paw",
  8408. image: {
  8409. source: "./media/characters/rose/fae-paw.svg"
  8410. },
  8411. form: "fae"
  8412. },
  8413. fronttrueFae: {
  8414. height: math.unit(10, "cm"),
  8415. weight: math.unit(10, "grams"),
  8416. name: "Front",
  8417. image: {
  8418. source: "./media/characters/rose/true-fae-front.svg",
  8419. extra: 839/789,
  8420. bottom: 12/851
  8421. },
  8422. form: "true-fae",
  8423. default: true
  8424. },
  8425. },
  8426. [
  8427. {
  8428. name: "True Micro",
  8429. height: math.unit(9, "cm"),
  8430. form: "liom"
  8431. },
  8432. {
  8433. name: "Micro",
  8434. height: math.unit(16, "cm"),
  8435. form: "liom"
  8436. },
  8437. {
  8438. name: "Normal",
  8439. height: math.unit(1.85, "meters"),
  8440. default: true,
  8441. form: "liom"
  8442. },
  8443. {
  8444. name: "Mini-Macro",
  8445. height: math.unit(5, "meters"),
  8446. form: "liom"
  8447. },
  8448. {
  8449. name: "Macro",
  8450. height: math.unit(15, "meters"),
  8451. form: "liom"
  8452. },
  8453. {
  8454. name: "True Macro",
  8455. height: math.unit(40, "meters"),
  8456. form: "liom"
  8457. },
  8458. {
  8459. name: "City Scale",
  8460. height: math.unit(1, "km"),
  8461. form: "liom"
  8462. },
  8463. {
  8464. name: "Plushie",
  8465. height: math.unit(9, "cm"),
  8466. form: "plush",
  8467. default: true
  8468. },
  8469. {
  8470. name: "Fae",
  8471. height: math.unit(10, "cm"),
  8472. form: "fae",
  8473. default: true
  8474. },
  8475. {
  8476. name: "Fae",
  8477. height: math.unit(10, "cm"),
  8478. form: "true-fae",
  8479. default: true
  8480. },
  8481. ],
  8482. {
  8483. "liom": {
  8484. name: "Liom"
  8485. },
  8486. "plush": {
  8487. name: "Plush"
  8488. },
  8489. "fae": {
  8490. name: "Fae Fox",
  8491. default: true
  8492. },
  8493. "true-fae": {
  8494. name: "True Fae",
  8495. },
  8496. }
  8497. ))
  8498. characterMakers.push(() => makeCharacter(
  8499. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8500. {
  8501. front: {
  8502. height: math.unit(2, "meters"),
  8503. weight: math.unit(350, "lbs"),
  8504. name: "Front",
  8505. image: {
  8506. source: "./media/characters/regal/front.svg"
  8507. }
  8508. },
  8509. back: {
  8510. height: math.unit(2, "meters"),
  8511. weight: math.unit(350, "lbs"),
  8512. name: "Back",
  8513. image: {
  8514. source: "./media/characters/regal/back.svg"
  8515. }
  8516. },
  8517. },
  8518. [
  8519. {
  8520. name: "Macro",
  8521. height: math.unit(350, "feet"),
  8522. default: true
  8523. }
  8524. ]
  8525. ))
  8526. characterMakers.push(() => makeCharacter(
  8527. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8528. {
  8529. standing: {
  8530. height: math.unit(4 + 11/12, "feet"),
  8531. weight: math.unit(100, "lb"),
  8532. name: "Standing",
  8533. image: {
  8534. source: "./media/characters/opal/standing.svg",
  8535. extra: 1588/1513,
  8536. bottom: 23/1611
  8537. }
  8538. },
  8539. sitting: {
  8540. height: math.unit(2.3, "feet"),
  8541. weight: math.unit(100, "lb"),
  8542. name: "Sitting",
  8543. image: {
  8544. source: "./media/characters/opal/sitting.svg",
  8545. extra: 1031/892,
  8546. bottom: 142/1173
  8547. }
  8548. },
  8549. hand: {
  8550. height: math.unit(0.59, "feet"),
  8551. name: "Hand",
  8552. image: {
  8553. source: "./media/characters/opal/hand.svg"
  8554. }
  8555. },
  8556. foot: {
  8557. height: math.unit(0.61, "feet"),
  8558. name: "Foot",
  8559. image: {
  8560. source: "./media/characters/opal/foot.svg"
  8561. }
  8562. },
  8563. },
  8564. [
  8565. {
  8566. name: "Small",
  8567. height: math.unit(4 + 11 / 12, "feet")
  8568. },
  8569. {
  8570. name: "Normal",
  8571. height: math.unit(20, "feet"),
  8572. default: true
  8573. },
  8574. {
  8575. name: "Macro",
  8576. height: math.unit(120, "feet")
  8577. },
  8578. {
  8579. name: "Megamacro",
  8580. height: math.unit(80, "miles")
  8581. },
  8582. {
  8583. name: "True Size",
  8584. height: math.unit(100000, "lightyears")
  8585. },
  8586. ]
  8587. ))
  8588. characterMakers.push(() => makeCharacter(
  8589. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8590. {
  8591. front: {
  8592. height: math.unit(6, "feet"),
  8593. weight: math.unit(200, "lbs"),
  8594. name: "Front",
  8595. image: {
  8596. source: "./media/characters/vector-wuff/front.svg"
  8597. }
  8598. }
  8599. },
  8600. [
  8601. {
  8602. name: "Normal",
  8603. height: math.unit(2.8, "meters")
  8604. },
  8605. {
  8606. name: "Macro",
  8607. height: math.unit(450, "meters"),
  8608. default: true
  8609. },
  8610. {
  8611. name: "Megamacro",
  8612. height: math.unit(15, "kilometers")
  8613. }
  8614. ]
  8615. ))
  8616. characterMakers.push(() => makeCharacter(
  8617. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8618. {
  8619. front: {
  8620. height: math.unit(6, "feet"),
  8621. weight: math.unit(256, "lbs"),
  8622. name: "Front",
  8623. image: {
  8624. source: "./media/characters/dannik/front.svg"
  8625. }
  8626. }
  8627. },
  8628. [
  8629. {
  8630. name: "Macro",
  8631. height: math.unit(69.57, "meters"),
  8632. default: true
  8633. },
  8634. ]
  8635. ))
  8636. characterMakers.push(() => makeCharacter(
  8637. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8638. {
  8639. front: {
  8640. height: math.unit(6, "feet"),
  8641. weight: math.unit(120, "lbs"),
  8642. name: "Front",
  8643. image: {
  8644. source: "./media/characters/azura-saharah/front.svg"
  8645. }
  8646. },
  8647. back: {
  8648. height: math.unit(6, "feet"),
  8649. weight: math.unit(120, "lbs"),
  8650. name: "Back",
  8651. image: {
  8652. source: "./media/characters/azura-saharah/back.svg"
  8653. }
  8654. },
  8655. },
  8656. [
  8657. {
  8658. name: "Macro",
  8659. height: math.unit(100, "feet"),
  8660. default: true
  8661. },
  8662. ]
  8663. ))
  8664. characterMakers.push(() => makeCharacter(
  8665. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8666. {
  8667. side: {
  8668. height: math.unit(5 + 4 / 12, "feet"),
  8669. weight: math.unit(163, "lbs"),
  8670. name: "Side",
  8671. image: {
  8672. source: "./media/characters/kennedy/side.svg"
  8673. }
  8674. }
  8675. },
  8676. [
  8677. {
  8678. name: "Standard Doggo",
  8679. height: math.unit(5 + 4 / 12, "feet")
  8680. },
  8681. {
  8682. name: "Big Doggo",
  8683. height: math.unit(25 + 3 / 12, "feet"),
  8684. default: true
  8685. },
  8686. ]
  8687. ))
  8688. characterMakers.push(() => makeCharacter(
  8689. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8690. {
  8691. front: {
  8692. height: math.unit(5 + 5/12, "feet"),
  8693. weight: math.unit(100, "lbs"),
  8694. name: "Front",
  8695. image: {
  8696. source: "./media/characters/odios-de-lunar/front.svg",
  8697. extra: 1468/1323,
  8698. bottom: 22/1490
  8699. }
  8700. }
  8701. },
  8702. [
  8703. {
  8704. name: "Micro",
  8705. height: math.unit(3, "inches")
  8706. },
  8707. {
  8708. name: "Normal",
  8709. height: math.unit(5.5, "feet"),
  8710. default: true
  8711. },
  8712. {
  8713. name: "Macro",
  8714. height: math.unit(100, "feet")
  8715. },
  8716. ]
  8717. ))
  8718. characterMakers.push(() => makeCharacter(
  8719. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8720. {
  8721. back: {
  8722. height: math.unit(6, "feet"),
  8723. weight: math.unit(220, "lbs"),
  8724. name: "Back",
  8725. image: {
  8726. source: "./media/characters/mandake/back.svg"
  8727. }
  8728. }
  8729. },
  8730. [
  8731. {
  8732. name: "Normal",
  8733. height: math.unit(7, "feet"),
  8734. default: true
  8735. },
  8736. {
  8737. name: "Macro",
  8738. height: math.unit(78, "feet")
  8739. },
  8740. {
  8741. name: "Macro+",
  8742. height: math.unit(300, "meters")
  8743. },
  8744. {
  8745. name: "Macro++",
  8746. height: math.unit(2400, "feet")
  8747. },
  8748. {
  8749. name: "Megamacro",
  8750. height: math.unit(5167, "meters")
  8751. },
  8752. {
  8753. name: "Gigamacro",
  8754. height: math.unit(41769, "miles")
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8760. {
  8761. front: {
  8762. height: math.unit(6, "feet"),
  8763. weight: math.unit(120, "lbs"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/yozey/front.svg"
  8767. }
  8768. },
  8769. frontAlt: {
  8770. height: math.unit(6, "feet"),
  8771. weight: math.unit(120, "lbs"),
  8772. name: "Front (Alt)",
  8773. image: {
  8774. source: "./media/characters/yozey/front-alt.svg"
  8775. }
  8776. },
  8777. side: {
  8778. height: math.unit(6, "feet"),
  8779. weight: math.unit(120, "lbs"),
  8780. name: "Side",
  8781. image: {
  8782. source: "./media/characters/yozey/side.svg"
  8783. }
  8784. },
  8785. },
  8786. [
  8787. {
  8788. name: "Micro",
  8789. height: math.unit(3, "inches"),
  8790. default: true
  8791. },
  8792. {
  8793. name: "Normal",
  8794. height: math.unit(6, "feet")
  8795. }
  8796. ]
  8797. ))
  8798. characterMakers.push(() => makeCharacter(
  8799. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8800. {
  8801. front: {
  8802. height: math.unit(6, "feet"),
  8803. weight: math.unit(103, "lbs"),
  8804. name: "Front",
  8805. image: {
  8806. source: "./media/characters/valeska-voss/front.svg"
  8807. }
  8808. }
  8809. },
  8810. [
  8811. {
  8812. name: "Mini-Sized Sub",
  8813. height: math.unit(3.1, "inches")
  8814. },
  8815. {
  8816. name: "Mid-Sized Sub",
  8817. height: math.unit(6.2, "inches")
  8818. },
  8819. {
  8820. name: "Full-Sized Sub",
  8821. height: math.unit(9.3, "inches")
  8822. },
  8823. {
  8824. name: "Normal",
  8825. height: math.unit(5 + 2 / 12, "foot"),
  8826. default: true
  8827. },
  8828. ]
  8829. ))
  8830. characterMakers.push(() => makeCharacter(
  8831. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8832. {
  8833. front: {
  8834. height: math.unit(6, "feet"),
  8835. weight: math.unit(160, "lbs"),
  8836. name: "Front",
  8837. image: {
  8838. source: "./media/characters/gene-zeta/front.svg",
  8839. extra: 3006 / 2826,
  8840. bottom: 182 / 3188
  8841. }
  8842. }
  8843. },
  8844. [
  8845. {
  8846. name: "Micro",
  8847. height: math.unit(6, "inches")
  8848. },
  8849. {
  8850. name: "Normal",
  8851. height: math.unit(5 + 11 / 12, "foot"),
  8852. default: true
  8853. },
  8854. {
  8855. name: "Macro",
  8856. height: math.unit(140, "feet")
  8857. },
  8858. {
  8859. name: "Supercharged",
  8860. height: math.unit(2500, "feet")
  8861. },
  8862. ]
  8863. ))
  8864. characterMakers.push(() => makeCharacter(
  8865. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8866. {
  8867. front: {
  8868. height: math.unit(6, "feet"),
  8869. weight: math.unit(350, "lbs"),
  8870. name: "Front",
  8871. image: {
  8872. source: "./media/characters/razinox/front.svg",
  8873. extra: 1686 / 1548,
  8874. bottom: 28.2 / 1868
  8875. }
  8876. },
  8877. back: {
  8878. height: math.unit(6, "feet"),
  8879. weight: math.unit(350, "lbs"),
  8880. name: "Back",
  8881. image: {
  8882. source: "./media/characters/razinox/back.svg",
  8883. extra: 1660 / 1590,
  8884. bottom: 15 / 1665
  8885. }
  8886. },
  8887. },
  8888. [
  8889. {
  8890. name: "Normal",
  8891. height: math.unit(10 + 8 / 12, "foot")
  8892. },
  8893. {
  8894. name: "Minimacro",
  8895. height: math.unit(15, "foot")
  8896. },
  8897. {
  8898. name: "Macro",
  8899. height: math.unit(60, "foot"),
  8900. default: true
  8901. },
  8902. {
  8903. name: "Megamacro",
  8904. height: math.unit(5, "miles")
  8905. },
  8906. {
  8907. name: "Gigamacro",
  8908. height: math.unit(6000, "miles")
  8909. },
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8914. {
  8915. front: {
  8916. height: math.unit(6, "feet"),
  8917. weight: math.unit(150, "lbs"),
  8918. name: "Front",
  8919. image: {
  8920. source: "./media/characters/cobalt/front.svg"
  8921. }
  8922. }
  8923. },
  8924. [
  8925. {
  8926. name: "Normal",
  8927. height: math.unit(8 + 1 / 12, "foot")
  8928. },
  8929. {
  8930. name: "Macro",
  8931. height: math.unit(111, "foot"),
  8932. default: true
  8933. },
  8934. {
  8935. name: "Supracosmic",
  8936. height: math.unit(1e42, "feet")
  8937. },
  8938. ]
  8939. ))
  8940. characterMakers.push(() => makeCharacter(
  8941. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8942. {
  8943. front: {
  8944. height: math.unit(5, "inches"),
  8945. name: "Front",
  8946. image: {
  8947. source: "./media/characters/amanda/front.svg",
  8948. extra: 926/791,
  8949. bottom: 38/964
  8950. }
  8951. },
  8952. back: {
  8953. height: math.unit(5, "inches"),
  8954. name: "Back",
  8955. image: {
  8956. source: "./media/characters/amanda/back.svg",
  8957. extra: 909/805,
  8958. bottom: 43/952
  8959. }
  8960. },
  8961. },
  8962. [
  8963. {
  8964. name: "Micro",
  8965. height: math.unit(5, "inches"),
  8966. default: true
  8967. },
  8968. ]
  8969. ))
  8970. characterMakers.push(() => makeCharacter(
  8971. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8972. {
  8973. front: {
  8974. height: math.unit(2.75, "meters"),
  8975. weight: math.unit(1200, "lb"),
  8976. name: "Front",
  8977. image: {
  8978. source: "./media/characters/teal/front.svg",
  8979. extra: 2463 / 2320,
  8980. bottom: 166 / 2629
  8981. }
  8982. },
  8983. back: {
  8984. height: math.unit(2.75, "meters"),
  8985. weight: math.unit(1200, "lb"),
  8986. name: "Back",
  8987. image: {
  8988. source: "./media/characters/teal/back.svg",
  8989. extra: 2580 / 2489,
  8990. bottom: 151 / 2731
  8991. }
  8992. },
  8993. sitting: {
  8994. height: math.unit(1.9, "meters"),
  8995. weight: math.unit(1200, "lb"),
  8996. name: "Sitting",
  8997. image: {
  8998. source: "./media/characters/teal/sitting.svg",
  8999. extra: 623 / 590,
  9000. bottom: 121 / 744
  9001. }
  9002. },
  9003. standing: {
  9004. height: math.unit(2.75, "meters"),
  9005. weight: math.unit(1200, "lb"),
  9006. name: "Standing",
  9007. image: {
  9008. source: "./media/characters/teal/standing.svg",
  9009. extra: 923 / 893,
  9010. bottom: 60 / 983
  9011. }
  9012. },
  9013. stretching: {
  9014. height: math.unit(3.65, "meters"),
  9015. weight: math.unit(1200, "lb"),
  9016. name: "Stretching",
  9017. image: {
  9018. source: "./media/characters/teal/stretching.svg",
  9019. extra: 1276 / 1244,
  9020. bottom: 0 / 1276
  9021. }
  9022. },
  9023. legged: {
  9024. height: math.unit(1.3, "meters"),
  9025. weight: math.unit(100, "lb"),
  9026. name: "Legged",
  9027. image: {
  9028. source: "./media/characters/teal/legged.svg",
  9029. extra: 462 / 437,
  9030. bottom: 24 / 486
  9031. }
  9032. },
  9033. naga: {
  9034. height: math.unit(5.4, "meters"),
  9035. weight: math.unit(4000, "lb"),
  9036. name: "Naga",
  9037. image: {
  9038. source: "./media/characters/teal/naga.svg",
  9039. extra: 1902 / 1858,
  9040. bottom: 0 / 1902
  9041. }
  9042. },
  9043. hand: {
  9044. height: math.unit(0.52, "meters"),
  9045. name: "Hand",
  9046. image: {
  9047. source: "./media/characters/teal/hand.svg"
  9048. }
  9049. },
  9050. maw: {
  9051. height: math.unit(0.43, "meters"),
  9052. name: "Maw",
  9053. image: {
  9054. source: "./media/characters/teal/maw.svg"
  9055. }
  9056. },
  9057. slit: {
  9058. height: math.unit(0.25, "meters"),
  9059. name: "Slit",
  9060. image: {
  9061. source: "./media/characters/teal/slit.svg"
  9062. }
  9063. },
  9064. },
  9065. [
  9066. {
  9067. name: "Normal",
  9068. height: math.unit(2.75, "meters"),
  9069. default: true
  9070. },
  9071. {
  9072. name: "Macro",
  9073. height: math.unit(300, "feet")
  9074. },
  9075. {
  9076. name: "Macro+",
  9077. height: math.unit(2000, "feet")
  9078. },
  9079. ]
  9080. ))
  9081. characterMakers.push(() => makeCharacter(
  9082. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  9083. {
  9084. frontCat: {
  9085. height: math.unit(6, "feet"),
  9086. weight: math.unit(180, "lbs"),
  9087. name: "Front (Cat)",
  9088. image: {
  9089. source: "./media/characters/ravin-amulet/front-cat.svg"
  9090. }
  9091. },
  9092. frontCatAlt: {
  9093. height: math.unit(6, "feet"),
  9094. weight: math.unit(180, "lbs"),
  9095. name: "Front (Alt, Cat)",
  9096. image: {
  9097. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  9098. }
  9099. },
  9100. frontWerewolf: {
  9101. height: math.unit(6 * 1.2, "feet"),
  9102. weight: math.unit(225, "lbs"),
  9103. name: "Front (Werewolf)",
  9104. image: {
  9105. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  9106. }
  9107. },
  9108. backWerewolf: {
  9109. height: math.unit(6 * 1.2, "feet"),
  9110. weight: math.unit(225, "lbs"),
  9111. name: "Back (Werewolf)",
  9112. image: {
  9113. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  9114. }
  9115. },
  9116. },
  9117. [
  9118. {
  9119. name: "Nano",
  9120. height: math.unit(1, "micrometer")
  9121. },
  9122. {
  9123. name: "Micro",
  9124. height: math.unit(1, "inch")
  9125. },
  9126. {
  9127. name: "Normal",
  9128. height: math.unit(6, "feet"),
  9129. default: true
  9130. },
  9131. {
  9132. name: "Macro",
  9133. height: math.unit(60, "feet")
  9134. }
  9135. ]
  9136. ))
  9137. characterMakers.push(() => makeCharacter(
  9138. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  9139. {
  9140. front: {
  9141. height: math.unit(6, "feet"),
  9142. weight: math.unit(165, "lbs"),
  9143. name: "Front",
  9144. image: {
  9145. source: "./media/characters/fluoresce/front.svg"
  9146. }
  9147. }
  9148. },
  9149. [
  9150. {
  9151. name: "Micro",
  9152. height: math.unit(6, "cm")
  9153. },
  9154. {
  9155. name: "Normal",
  9156. height: math.unit(5 + 7 / 12, "feet"),
  9157. default: true
  9158. },
  9159. {
  9160. name: "Macro",
  9161. height: math.unit(56, "feet")
  9162. },
  9163. {
  9164. name: "Megamacro",
  9165. height: math.unit(1.9, "miles")
  9166. },
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  9171. {
  9172. front: {
  9173. height: math.unit(9 + 6 / 12, "feet"),
  9174. weight: math.unit(523, "lbs"),
  9175. name: "Side",
  9176. image: {
  9177. source: "./media/characters/aurora/side.svg",
  9178. extra: 474/393,
  9179. bottom: 5/479
  9180. }
  9181. }
  9182. },
  9183. [
  9184. {
  9185. name: "Normal",
  9186. height: math.unit(9 + 6 / 12, "feet")
  9187. },
  9188. {
  9189. name: "Macro",
  9190. height: math.unit(96, "feet"),
  9191. default: true
  9192. },
  9193. {
  9194. name: "Macro+",
  9195. height: math.unit(243, "feet")
  9196. },
  9197. ]
  9198. ))
  9199. characterMakers.push(() => makeCharacter(
  9200. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9201. {
  9202. front: {
  9203. height: math.unit(194, "cm"),
  9204. weight: math.unit(90, "kg"),
  9205. name: "Front",
  9206. image: {
  9207. source: "./media/characters/ranek/front.svg",
  9208. extra: 1862/1791,
  9209. bottom: 80/1942
  9210. }
  9211. },
  9212. back: {
  9213. height: math.unit(194, "cm"),
  9214. weight: math.unit(90, "kg"),
  9215. name: "Back",
  9216. image: {
  9217. source: "./media/characters/ranek/back.svg",
  9218. extra: 1853/1787,
  9219. bottom: 74/1927
  9220. }
  9221. },
  9222. feral: {
  9223. height: math.unit(30, "cm"),
  9224. weight: math.unit(1.6, "lbs"),
  9225. name: "Feral",
  9226. image: {
  9227. source: "./media/characters/ranek/feral.svg",
  9228. extra: 990/631,
  9229. bottom: 29/1019
  9230. }
  9231. },
  9232. },
  9233. [
  9234. {
  9235. name: "Normal",
  9236. height: math.unit(194, "cm"),
  9237. default: true
  9238. },
  9239. {
  9240. name: "Macro",
  9241. height: math.unit(100, "meters")
  9242. },
  9243. ]
  9244. ))
  9245. characterMakers.push(() => makeCharacter(
  9246. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9247. {
  9248. front: {
  9249. height: math.unit(5 + 6 / 12, "feet"),
  9250. weight: math.unit(153, "lbs"),
  9251. name: "Front",
  9252. image: {
  9253. source: "./media/characters/andrew-cooper/front.svg"
  9254. }
  9255. },
  9256. },
  9257. [
  9258. {
  9259. name: "Nano",
  9260. height: math.unit(1, "mm")
  9261. },
  9262. {
  9263. name: "Micro",
  9264. height: math.unit(2, "inches")
  9265. },
  9266. {
  9267. name: "Normal",
  9268. height: math.unit(5 + 6 / 12, "feet"),
  9269. default: true
  9270. }
  9271. ]
  9272. ))
  9273. characterMakers.push(() => makeCharacter(
  9274. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9275. {
  9276. front: {
  9277. height: math.unit(6, "feet"),
  9278. weight: math.unit(180, "lbs"),
  9279. name: "Front",
  9280. image: {
  9281. source: "./media/characters/akane-sato/front.svg",
  9282. extra: 1219 / 1140
  9283. }
  9284. },
  9285. back: {
  9286. height: math.unit(6, "feet"),
  9287. weight: math.unit(180, "lbs"),
  9288. name: "Back",
  9289. image: {
  9290. source: "./media/characters/akane-sato/back.svg",
  9291. extra: 1219 / 1170
  9292. }
  9293. },
  9294. },
  9295. [
  9296. {
  9297. name: "Normal",
  9298. height: math.unit(2.5, "meters")
  9299. },
  9300. {
  9301. name: "Macro",
  9302. height: math.unit(250, "meters"),
  9303. default: true
  9304. },
  9305. {
  9306. name: "Megamacro",
  9307. height: math.unit(25, "km")
  9308. },
  9309. ]
  9310. ))
  9311. characterMakers.push(() => makeCharacter(
  9312. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9313. {
  9314. front: {
  9315. height: math.unit(6, "feet"),
  9316. weight: math.unit(65, "kg"),
  9317. name: "Front",
  9318. image: {
  9319. source: "./media/characters/rook/front.svg",
  9320. extra: 960 / 950
  9321. }
  9322. }
  9323. },
  9324. [
  9325. {
  9326. name: "Normal",
  9327. height: math.unit(8.8, "feet")
  9328. },
  9329. {
  9330. name: "Macro",
  9331. height: math.unit(88, "feet"),
  9332. default: true
  9333. },
  9334. {
  9335. name: "Megamacro",
  9336. height: math.unit(8, "miles")
  9337. },
  9338. ]
  9339. ))
  9340. characterMakers.push(() => makeCharacter(
  9341. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9342. {
  9343. front: {
  9344. height: math.unit(12 + 2 / 12, "feet"),
  9345. weight: math.unit(808, "lbs"),
  9346. name: "Front",
  9347. image: {
  9348. source: "./media/characters/prodigy/front.svg"
  9349. }
  9350. }
  9351. },
  9352. [
  9353. {
  9354. name: "Normal",
  9355. height: math.unit(12 + 2 / 12, "feet"),
  9356. default: true
  9357. },
  9358. {
  9359. name: "Macro",
  9360. height: math.unit(143, "feet")
  9361. },
  9362. {
  9363. name: "Macro+",
  9364. height: math.unit(400, "feet")
  9365. },
  9366. ]
  9367. ))
  9368. characterMakers.push(() => makeCharacter(
  9369. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9370. {
  9371. front: {
  9372. height: math.unit(6, "feet"),
  9373. weight: math.unit(225, "lbs"),
  9374. name: "Front",
  9375. image: {
  9376. source: "./media/characters/daniel/front.svg"
  9377. }
  9378. },
  9379. leaning: {
  9380. height: math.unit(6, "feet"),
  9381. weight: math.unit(225, "lbs"),
  9382. name: "Leaning",
  9383. image: {
  9384. source: "./media/characters/daniel/leaning.svg"
  9385. }
  9386. },
  9387. },
  9388. [
  9389. {
  9390. name: "Macro",
  9391. height: math.unit(1000, "feet"),
  9392. default: true
  9393. },
  9394. ]
  9395. ))
  9396. characterMakers.push(() => makeCharacter(
  9397. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9398. {
  9399. front: {
  9400. height: math.unit(6, "feet"),
  9401. weight: math.unit(88, "lbs"),
  9402. name: "Front",
  9403. image: {
  9404. source: "./media/characters/chiros/front.svg",
  9405. extra: 306 / 226
  9406. }
  9407. },
  9408. side: {
  9409. height: math.unit(6, "feet"),
  9410. weight: math.unit(88, "lbs"),
  9411. name: "Side",
  9412. image: {
  9413. source: "./media/characters/chiros/side.svg",
  9414. extra: 306 / 226
  9415. }
  9416. },
  9417. },
  9418. [
  9419. {
  9420. name: "Normal",
  9421. height: math.unit(6, "cm"),
  9422. default: true
  9423. },
  9424. ]
  9425. ))
  9426. characterMakers.push(() => makeCharacter(
  9427. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9428. {
  9429. front: {
  9430. height: math.unit(6, "feet"),
  9431. weight: math.unit(100, "lbs"),
  9432. name: "Front",
  9433. image: {
  9434. source: "./media/characters/selka/front.svg",
  9435. extra: 947 / 887
  9436. }
  9437. }
  9438. },
  9439. [
  9440. {
  9441. name: "Normal",
  9442. height: math.unit(5, "cm"),
  9443. default: true
  9444. },
  9445. ]
  9446. ))
  9447. characterMakers.push(() => makeCharacter(
  9448. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9449. {
  9450. front: {
  9451. height: math.unit(8 + 3 / 12, "feet"),
  9452. weight: math.unit(424, "lbs"),
  9453. name: "Front",
  9454. image: {
  9455. source: "./media/characters/verin/front.svg",
  9456. extra: 1845 / 1550
  9457. }
  9458. },
  9459. frontArmored: {
  9460. height: math.unit(8 + 3 / 12, "feet"),
  9461. weight: math.unit(424, "lbs"),
  9462. name: "Front (Armored)",
  9463. image: {
  9464. source: "./media/characters/verin/front-armor.svg",
  9465. extra: 1845 / 1550,
  9466. bottom: 0.01
  9467. }
  9468. },
  9469. back: {
  9470. height: math.unit(8 + 3 / 12, "feet"),
  9471. weight: math.unit(424, "lbs"),
  9472. name: "Back",
  9473. image: {
  9474. source: "./media/characters/verin/back.svg",
  9475. bottom: 0.1,
  9476. extra: 1
  9477. }
  9478. },
  9479. foot: {
  9480. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9481. name: "Foot",
  9482. image: {
  9483. source: "./media/characters/verin/foot.svg"
  9484. }
  9485. },
  9486. },
  9487. [
  9488. {
  9489. name: "Normal",
  9490. height: math.unit(8 + 3 / 12, "feet")
  9491. },
  9492. {
  9493. name: "Minimacro",
  9494. height: math.unit(21, "feet"),
  9495. default: true
  9496. },
  9497. {
  9498. name: "Macro",
  9499. height: math.unit(626, "feet")
  9500. },
  9501. ]
  9502. ))
  9503. characterMakers.push(() => makeCharacter(
  9504. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9505. {
  9506. front: {
  9507. height: math.unit(2.718, "meters"),
  9508. weight: math.unit(150, "lbs"),
  9509. name: "Front",
  9510. image: {
  9511. source: "./media/characters/sovrim-terraquian/front.svg",
  9512. extra: 1752/1689,
  9513. bottom: 36/1788
  9514. }
  9515. },
  9516. back: {
  9517. height: math.unit(2.718, "meters"),
  9518. weight: math.unit(150, "lbs"),
  9519. name: "Back",
  9520. image: {
  9521. source: "./media/characters/sovrim-terraquian/back.svg",
  9522. extra: 1698/1657,
  9523. bottom: 58/1756
  9524. }
  9525. },
  9526. tongue: {
  9527. height: math.unit(2.865, "feet"),
  9528. name: "Tongue",
  9529. image: {
  9530. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9531. }
  9532. },
  9533. hand: {
  9534. height: math.unit(1.61, "feet"),
  9535. name: "Hand",
  9536. image: {
  9537. source: "./media/characters/sovrim-terraquian/hand.svg"
  9538. }
  9539. },
  9540. foot: {
  9541. height: math.unit(1.05, "feet"),
  9542. name: "Foot",
  9543. image: {
  9544. source: "./media/characters/sovrim-terraquian/foot.svg"
  9545. }
  9546. },
  9547. footAlt: {
  9548. height: math.unit(0.88, "feet"),
  9549. name: "Foot (Alt)",
  9550. image: {
  9551. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9552. }
  9553. },
  9554. },
  9555. [
  9556. {
  9557. name: "Micro",
  9558. height: math.unit(2, "inches")
  9559. },
  9560. {
  9561. name: "Small",
  9562. height: math.unit(1, "meter")
  9563. },
  9564. {
  9565. name: "Normal",
  9566. height: math.unit(Math.E, "meters"),
  9567. default: true
  9568. },
  9569. {
  9570. name: "Macro",
  9571. height: math.unit(20, "meters")
  9572. },
  9573. {
  9574. name: "Macro+",
  9575. height: math.unit(400, "meters")
  9576. },
  9577. ]
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9581. {
  9582. front: {
  9583. height: math.unit(7, "feet"),
  9584. weight: math.unit(489, "lbs"),
  9585. name: "Front",
  9586. image: {
  9587. source: "./media/characters/reece-silvermane/front.svg",
  9588. bottom: 0.02,
  9589. extra: 1
  9590. }
  9591. },
  9592. },
  9593. [
  9594. {
  9595. name: "Macro",
  9596. height: math.unit(1.5, "miles"),
  9597. default: true
  9598. },
  9599. ]
  9600. ))
  9601. characterMakers.push(() => makeCharacter(
  9602. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9603. {
  9604. front: {
  9605. height: math.unit(6, "feet"),
  9606. weight: math.unit(78, "kg"),
  9607. name: "Front",
  9608. image: {
  9609. source: "./media/characters/kane/front.svg",
  9610. extra: 978 / 899
  9611. }
  9612. },
  9613. back: {
  9614. height: math.unit(6, "feet"),
  9615. weight: math.unit(78, "kg"),
  9616. name: "Back",
  9617. image: {
  9618. source: "./media/characters/kane/back.svg",
  9619. extra: 1966/1800,
  9620. bottom: 0/1966
  9621. }
  9622. },
  9623. head: {
  9624. height: math.unit(1.4, "feet"),
  9625. name: "Head",
  9626. image: {
  9627. source: "./media/characters/kane/head.svg"
  9628. }
  9629. },
  9630. },
  9631. [
  9632. {
  9633. name: "Normal",
  9634. height: math.unit(2.1, "m"),
  9635. },
  9636. {
  9637. name: "Macro",
  9638. height: math.unit(1, "km"),
  9639. default: true
  9640. },
  9641. ]
  9642. ))
  9643. characterMakers.push(() => makeCharacter(
  9644. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9645. {
  9646. frontSfw: {
  9647. name: "Front (SFW)",
  9648. height: math.unit(6 + 3/12, "feet"),
  9649. weight: math.unit(200, "kg"),
  9650. image: {
  9651. source: "./media/characters/tegon/front-sfw.svg",
  9652. extra: 1105/1087,
  9653. bottom: 86/1191
  9654. }
  9655. },
  9656. backSfw: {
  9657. name: "Back (SFW)",
  9658. height: math.unit(6 + 3/12, "feet"),
  9659. weight: math.unit(200, "kg"),
  9660. image: {
  9661. source: "./media/characters/tegon/back-sfw.svg",
  9662. extra: 1107/1087,
  9663. bottom: 21/1128
  9664. }
  9665. },
  9666. frontNsfw: {
  9667. name: "Front (NSFW)",
  9668. height: math.unit(6 + 3/12, "feet"),
  9669. weight: math.unit(200, "kg"),
  9670. image: {
  9671. source: "./media/characters/tegon/front-nsfw.svg",
  9672. extra: 1105/1087,
  9673. bottom: 86/1191
  9674. }
  9675. },
  9676. maw: {
  9677. height: math.unit(1.23, "feet"),
  9678. name: "Maw",
  9679. image: {
  9680. source: "./media/characters/tegon/maw.svg"
  9681. }
  9682. },
  9683. dick: {
  9684. height: math.unit(1.18, "feet"),
  9685. name: "Dick",
  9686. image: {
  9687. source: "./media/characters/tegon/dick.svg"
  9688. }
  9689. },
  9690. },
  9691. [
  9692. {
  9693. name: "Micro",
  9694. height: math.unit(1, "inch")
  9695. },
  9696. {
  9697. name: "Normal",
  9698. height: math.unit(6 + 3 / 12, "feet"),
  9699. default: true
  9700. },
  9701. {
  9702. name: "Macro",
  9703. height: math.unit(300, "feet")
  9704. },
  9705. {
  9706. name: "Megamacro",
  9707. height: math.unit(69, "miles")
  9708. },
  9709. ]
  9710. ))
  9711. characterMakers.push(() => makeCharacter(
  9712. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9713. {
  9714. side: {
  9715. height: math.unit(6, "feet"),
  9716. weight: math.unit(2304, "lbs"),
  9717. name: "Side",
  9718. image: {
  9719. source: "./media/characters/arcturax/side.svg",
  9720. extra: 790 / 376,
  9721. bottom: 0.01
  9722. }
  9723. },
  9724. },
  9725. [
  9726. {
  9727. name: "Micro",
  9728. height: math.unit(2, "inch")
  9729. },
  9730. {
  9731. name: "Normal",
  9732. height: math.unit(6, "feet")
  9733. },
  9734. {
  9735. name: "Macro",
  9736. height: math.unit(39, "feet"),
  9737. default: true
  9738. },
  9739. {
  9740. name: "Megamacro",
  9741. height: math.unit(7, "miles")
  9742. },
  9743. ]
  9744. ))
  9745. characterMakers.push(() => makeCharacter(
  9746. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9747. {
  9748. front: {
  9749. height: math.unit(6, "feet"),
  9750. weight: math.unit(50, "lbs"),
  9751. name: "Front",
  9752. image: {
  9753. source: "./media/characters/sentri/front.svg",
  9754. extra: 1750 / 1570,
  9755. bottom: 0.025
  9756. }
  9757. },
  9758. frontAlt: {
  9759. height: math.unit(6, "feet"),
  9760. weight: math.unit(50, "lbs"),
  9761. name: "Front (Alt)",
  9762. image: {
  9763. source: "./media/characters/sentri/front-alt.svg",
  9764. extra: 1750 / 1570,
  9765. bottom: 0.025
  9766. }
  9767. },
  9768. },
  9769. [
  9770. {
  9771. name: "Normal",
  9772. height: math.unit(15, "feet"),
  9773. default: true
  9774. },
  9775. {
  9776. name: "Macro",
  9777. height: math.unit(2500, "feet")
  9778. }
  9779. ]
  9780. ))
  9781. characterMakers.push(() => makeCharacter(
  9782. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9783. {
  9784. front: {
  9785. height: math.unit(5 + 8 / 12, "feet"),
  9786. weight: math.unit(130, "lbs"),
  9787. name: "Front",
  9788. image: {
  9789. source: "./media/characters/corvin/front.svg",
  9790. extra: 1803 / 1629
  9791. }
  9792. },
  9793. frontShirt: {
  9794. height: math.unit(5 + 8 / 12, "feet"),
  9795. weight: math.unit(130, "lbs"),
  9796. name: "Front (Shirt)",
  9797. image: {
  9798. source: "./media/characters/corvin/front-shirt.svg",
  9799. extra: 1803 / 1629
  9800. }
  9801. },
  9802. frontPoncho: {
  9803. height: math.unit(5 + 8 / 12, "feet"),
  9804. weight: math.unit(130, "lbs"),
  9805. name: "Front (Poncho)",
  9806. image: {
  9807. source: "./media/characters/corvin/front-poncho.svg",
  9808. extra: 1803 / 1629
  9809. }
  9810. },
  9811. side: {
  9812. height: math.unit(5 + 8 / 12, "feet"),
  9813. weight: math.unit(130, "lbs"),
  9814. name: "Side",
  9815. image: {
  9816. source: "./media/characters/corvin/side.svg",
  9817. extra: 1012 / 945
  9818. }
  9819. },
  9820. back: {
  9821. height: math.unit(5 + 8 / 12, "feet"),
  9822. weight: math.unit(130, "lbs"),
  9823. name: "Back",
  9824. image: {
  9825. source: "./media/characters/corvin/back.svg",
  9826. extra: 1803 / 1629
  9827. }
  9828. },
  9829. },
  9830. [
  9831. {
  9832. name: "Micro",
  9833. height: math.unit(3, "inches")
  9834. },
  9835. {
  9836. name: "Normal",
  9837. height: math.unit(5 + 8 / 12, "feet")
  9838. },
  9839. {
  9840. name: "Macro",
  9841. height: math.unit(300, "feet"),
  9842. default: true
  9843. },
  9844. {
  9845. name: "Megamacro",
  9846. height: math.unit(500, "miles")
  9847. }
  9848. ]
  9849. ))
  9850. characterMakers.push(() => makeCharacter(
  9851. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9852. {
  9853. front: {
  9854. height: math.unit(6, "feet"),
  9855. weight: math.unit(135, "lbs"),
  9856. name: "Front",
  9857. image: {
  9858. source: "./media/characters/q/front.svg",
  9859. extra: 854 / 752,
  9860. bottom: 0.005
  9861. }
  9862. },
  9863. back: {
  9864. height: math.unit(6, "feet"),
  9865. weight: math.unit(130, "lbs"),
  9866. name: "Back",
  9867. image: {
  9868. source: "./media/characters/q/back.svg",
  9869. extra: 854 / 752
  9870. }
  9871. },
  9872. },
  9873. [
  9874. {
  9875. name: "Macro",
  9876. height: math.unit(90, "feet"),
  9877. default: true
  9878. },
  9879. {
  9880. name: "Extra Macro",
  9881. height: math.unit(300, "feet"),
  9882. },
  9883. {
  9884. name: "BIG WALF",
  9885. height: math.unit(750, "feet"),
  9886. },
  9887. ]
  9888. ))
  9889. characterMakers.push(() => makeCharacter(
  9890. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9891. {
  9892. front: {
  9893. height: math.unit(3, "feet"),
  9894. weight: math.unit(28, "lbs"),
  9895. name: "Front",
  9896. image: {
  9897. source: "./media/characters/citrine/front.svg"
  9898. }
  9899. }
  9900. },
  9901. [
  9902. {
  9903. name: "Normal",
  9904. height: math.unit(3, "feet"),
  9905. default: true
  9906. }
  9907. ]
  9908. ))
  9909. characterMakers.push(() => makeCharacter(
  9910. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9911. {
  9912. front: {
  9913. height: math.unit(14, "feet"),
  9914. weight: math.unit(1450, "kg"),
  9915. preyCapacity: math.unit(15, "people"),
  9916. name: "Front",
  9917. image: {
  9918. source: "./media/characters/aura-starwind/front.svg",
  9919. extra: 1440/1327,
  9920. bottom: 11/1451
  9921. }
  9922. },
  9923. side: {
  9924. height: math.unit(14, "feet"),
  9925. weight: math.unit(1450, "kg"),
  9926. preyCapacity: math.unit(15, "people"),
  9927. name: "Side",
  9928. image: {
  9929. source: "./media/characters/aura-starwind/side.svg",
  9930. extra: 1654 / 1497
  9931. }
  9932. },
  9933. taur: {
  9934. height: math.unit(18, "feet"),
  9935. weight: math.unit(5500, "kg"),
  9936. preyCapacity: math.unit(50, "people"),
  9937. name: "Taur",
  9938. image: {
  9939. source: "./media/characters/aura-starwind/taur.svg",
  9940. extra: 1760 / 1650
  9941. }
  9942. },
  9943. feral: {
  9944. height: math.unit(46, "feet"),
  9945. weight: math.unit(25000, "kg"),
  9946. preyCapacity: math.unit(120, "people"),
  9947. name: "Feral",
  9948. image: {
  9949. source: "./media/characters/aura-starwind/feral.svg"
  9950. }
  9951. },
  9952. },
  9953. [
  9954. {
  9955. name: "Normal",
  9956. height: math.unit(14, "feet"),
  9957. default: true
  9958. },
  9959. {
  9960. name: "Macro",
  9961. height: math.unit(50, "meters")
  9962. },
  9963. {
  9964. name: "Megamacro",
  9965. height: math.unit(5000, "meters")
  9966. },
  9967. {
  9968. name: "Gigamacro",
  9969. height: math.unit(100000, "kilometers")
  9970. },
  9971. ]
  9972. ))
  9973. characterMakers.push(() => makeCharacter(
  9974. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9975. {
  9976. front: {
  9977. height: math.unit(2 + 7 / 12, "feet"),
  9978. weight: math.unit(32, "lbs"),
  9979. name: "Front",
  9980. image: {
  9981. source: "./media/characters/rivet/front.svg",
  9982. extra: 1716 / 1658,
  9983. bottom: 0.03
  9984. }
  9985. },
  9986. foot: {
  9987. height: math.unit(0.551, "feet"),
  9988. name: "Rivet's Foot",
  9989. image: {
  9990. source: "./media/characters/rivet/foot.svg"
  9991. },
  9992. rename: true
  9993. }
  9994. },
  9995. [
  9996. {
  9997. name: "Micro",
  9998. height: math.unit(1.5, "inches"),
  9999. },
  10000. {
  10001. name: "Normal",
  10002. height: math.unit(2 + 7 / 12, "feet"),
  10003. default: true
  10004. },
  10005. {
  10006. name: "Macro",
  10007. height: math.unit(85, "feet")
  10008. },
  10009. {
  10010. name: "Megamacro",
  10011. height: math.unit(2.2, "km")
  10012. }
  10013. ]
  10014. ))
  10015. characterMakers.push(() => makeCharacter(
  10016. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  10017. {
  10018. front: {
  10019. height: math.unit(5 + 9 / 12, "feet"),
  10020. weight: math.unit(150, "lbs"),
  10021. name: "Front",
  10022. image: {
  10023. source: "./media/characters/coffee/front.svg",
  10024. extra: 946/880,
  10025. bottom: 66/1012
  10026. }
  10027. },
  10028. foot: {
  10029. height: math.unit(1.29, "feet"),
  10030. name: "Foot",
  10031. image: {
  10032. source: "./media/characters/coffee/foot.svg"
  10033. }
  10034. },
  10035. },
  10036. [
  10037. {
  10038. name: "Micro",
  10039. height: math.unit(2, "inches"),
  10040. },
  10041. {
  10042. name: "Normal",
  10043. height: math.unit(5 + 9 / 12, "feet"),
  10044. default: true
  10045. },
  10046. {
  10047. name: "Macro",
  10048. height: math.unit(800, "feet")
  10049. },
  10050. {
  10051. name: "Megamacro",
  10052. height: math.unit(25, "miles")
  10053. }
  10054. ]
  10055. ))
  10056. characterMakers.push(() => makeCharacter(
  10057. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  10058. {
  10059. front: {
  10060. height: math.unit(6, "feet"),
  10061. weight: math.unit(200, "lbs"),
  10062. name: "Front",
  10063. image: {
  10064. source: "./media/characters/chari-gal/front.svg",
  10065. extra: 735/649,
  10066. bottom: 55/790
  10067. },
  10068. form: "normal",
  10069. default: true
  10070. },
  10071. back: {
  10072. height: math.unit(6, "feet"),
  10073. weight: math.unit(200, "lb"),
  10074. name: "Back",
  10075. image: {
  10076. source: "./media/characters/chari-gal/back.svg",
  10077. extra: 762/666,
  10078. bottom: 31/793
  10079. },
  10080. form: "normal"
  10081. },
  10082. mouth: {
  10083. height: math.unit(1.35, "feet"),
  10084. name: "Mouth",
  10085. image: {
  10086. source: "./media/characters/chari-gal/mouth.svg"
  10087. },
  10088. form: "normal"
  10089. },
  10090. gigantamax: {
  10091. height: math.unit(6 * 16, "feet"),
  10092. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  10093. name: "Gigantamax",
  10094. image: {
  10095. source: "./media/characters/chari-gal/gigantamax-front.svg",
  10096. extra: 1507/1149,
  10097. bottom: 254/1761
  10098. },
  10099. form: "gigantamax",
  10100. default: true
  10101. },
  10102. },
  10103. [
  10104. {
  10105. name: "Normal",
  10106. height: math.unit(5 + 7 / 12, "feet"),
  10107. form: "normal",
  10108. },
  10109. {
  10110. name: "Macro",
  10111. height: math.unit(200, "feet"),
  10112. default: true,
  10113. form: "normal"
  10114. },
  10115. {
  10116. name: "Normal",
  10117. height: math.unit(16 * (5 + 7 / 12), "feet"),
  10118. form: "gigantamax",
  10119. },
  10120. {
  10121. name: "Macro",
  10122. height: math.unit(16 * 200, "feet"),
  10123. default: true,
  10124. form: "gigantamax"
  10125. },
  10126. ],
  10127. {
  10128. "normal": {
  10129. name: "Normal",
  10130. default: true
  10131. },
  10132. "gigantamax": {
  10133. name: "Gigantamax",
  10134. },
  10135. }
  10136. ))
  10137. characterMakers.push(() => makeCharacter(
  10138. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  10139. {
  10140. front: {
  10141. height: math.unit(6, "feet"),
  10142. weight: math.unit(150, "lbs"),
  10143. name: "Front",
  10144. image: {
  10145. source: "./media/characters/nova/front.svg",
  10146. extra: 5000 / 4722,
  10147. bottom: 0.02
  10148. }
  10149. }
  10150. },
  10151. [
  10152. {
  10153. name: "Micro-",
  10154. height: math.unit(0.8, "inches")
  10155. },
  10156. {
  10157. name: "Micro",
  10158. height: math.unit(2, "inches"),
  10159. default: true
  10160. },
  10161. ]
  10162. ))
  10163. characterMakers.push(() => makeCharacter(
  10164. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  10165. {
  10166. koboldFront: {
  10167. height: math.unit(3 + 1 / 12, "feet"),
  10168. weight: math.unit(21.7, "lbs"),
  10169. name: "Front",
  10170. image: {
  10171. source: "./media/characters/argent/kobold-front.svg",
  10172. extra: 1471 / 1331,
  10173. bottom: 100.8 / 1575.5
  10174. },
  10175. form: "kobold",
  10176. default: true
  10177. },
  10178. dragonFront: {
  10179. height: math.unit(75, "inches"),
  10180. name: "Front",
  10181. image: {
  10182. source: "./media/characters/argent/dragon-front.svg",
  10183. extra: 1389/1248,
  10184. bottom: 54/1443
  10185. },
  10186. form: "dragon",
  10187. },
  10188. dragonBack: {
  10189. height: math.unit(75, "inches"),
  10190. name: "Back",
  10191. image: {
  10192. source: "./media/characters/argent/dragon-back.svg",
  10193. extra: 1399/1271,
  10194. bottom: 23/1422
  10195. },
  10196. form: "dragon",
  10197. },
  10198. dragonDressed: {
  10199. height: math.unit(75, "inches"),
  10200. name: "Dressed",
  10201. image: {
  10202. source: "./media/characters/argent/dragon-dressed.svg",
  10203. extra: 1350/1215,
  10204. bottom: 26/1376
  10205. },
  10206. form: "dragon"
  10207. },
  10208. dragonHead: {
  10209. height: math.unit(23.5, "inches"),
  10210. name: "Head",
  10211. image: {
  10212. source: "./media/characters/argent/dragon-head.svg"
  10213. },
  10214. form: "dragon",
  10215. },
  10216. },
  10217. [
  10218. {
  10219. name: "Micro",
  10220. height: math.unit(2, "inches"),
  10221. form: "kobold",
  10222. },
  10223. {
  10224. name: "Normal",
  10225. height: math.unit(3 + 1 / 12, "feet"),
  10226. form: "kobold",
  10227. default: true
  10228. },
  10229. {
  10230. name: "Macro",
  10231. height: math.unit(120, "feet"),
  10232. form: "kobold",
  10233. },
  10234. {
  10235. name: "Speck",
  10236. height: math.unit(1, "mm"),
  10237. form: "dragon",
  10238. },
  10239. {
  10240. name: "Tiny",
  10241. height: math.unit(1, "cm"),
  10242. form: "dragon",
  10243. },
  10244. {
  10245. name: "Micro",
  10246. height: math.unit(5, "cm"),
  10247. form: "dragon",
  10248. },
  10249. {
  10250. name: "Normal",
  10251. height: math.unit(75, "inches"),
  10252. form: "dragon",
  10253. default: true
  10254. },
  10255. {
  10256. name: "Extra Tall",
  10257. height: math.unit(9, "feet"),
  10258. form: "dragon",
  10259. },
  10260. {
  10261. name: "Inconvenient",
  10262. height: math.unit(5, "meters"),
  10263. form: "dragon",
  10264. },
  10265. {
  10266. name: "Macro",
  10267. height: math.unit(70, "meters"),
  10268. form: "dragon",
  10269. },
  10270. {
  10271. name: "Macro+",
  10272. height: math.unit(250, "meters"),
  10273. form: "dragon",
  10274. },
  10275. {
  10276. name: "Megamacro",
  10277. height: math.unit(20, "km"),
  10278. form: "dragon",
  10279. },
  10280. {
  10281. name: "Mountainous",
  10282. height: math.unit(100, "km"),
  10283. form: "dragon",
  10284. },
  10285. {
  10286. name: "Continental",
  10287. height: math.unit(2, "megameters"),
  10288. form: "dragon",
  10289. },
  10290. {
  10291. name: "Too Big",
  10292. height: math.unit(900, "megameters"),
  10293. form: "dragon",
  10294. },
  10295. ],
  10296. {
  10297. "kobold": {
  10298. name: "Kobold",
  10299. default: true
  10300. },
  10301. "dragon": {
  10302. name: "Dragon",
  10303. },
  10304. }
  10305. ))
  10306. characterMakers.push(() => makeCharacter(
  10307. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10308. {
  10309. lamp: {
  10310. height: math.unit(7 * 1559 / 989, "feet"),
  10311. name: "Magic Lamp",
  10312. image: {
  10313. source: "./media/characters/mira-al-cul/lamp.svg",
  10314. extra: 1617 / 1559
  10315. }
  10316. },
  10317. front: {
  10318. height: math.unit(7, "feet"),
  10319. name: "Front",
  10320. image: {
  10321. source: "./media/characters/mira-al-cul/front.svg",
  10322. extra: 1044 / 990
  10323. }
  10324. },
  10325. },
  10326. [
  10327. {
  10328. name: "Heavily Restricted",
  10329. height: math.unit(7 * 1559 / 989, "feet")
  10330. },
  10331. {
  10332. name: "Freshly Freed",
  10333. height: math.unit(50 * 1559 / 989, "feet")
  10334. },
  10335. {
  10336. name: "World Encompassing",
  10337. height: math.unit(10000 * 1559 / 989, "miles")
  10338. },
  10339. {
  10340. name: "Galactic",
  10341. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10342. },
  10343. {
  10344. name: "Palmed Universe",
  10345. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10346. default: true
  10347. },
  10348. {
  10349. name: "Multiversal Matriarch",
  10350. height: math.unit(8.87e10, "yottameters")
  10351. },
  10352. {
  10353. name: "Void Mother",
  10354. height: math.unit(3.14e110, "yottaparsecs")
  10355. },
  10356. {
  10357. name: "Toying with Transcendence",
  10358. height: math.unit(1e307, "meters")
  10359. },
  10360. ]
  10361. ))
  10362. characterMakers.push(() => makeCharacter(
  10363. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10364. {
  10365. front: {
  10366. height: math.unit(17 + 1 / 12, "feet"),
  10367. weight: math.unit(476.2 * 5, "lbs"),
  10368. name: "Front",
  10369. image: {
  10370. source: "./media/characters/kuro-shi-uchū/front.svg",
  10371. extra: 2329 / 1835,
  10372. bottom: 0.02
  10373. }
  10374. },
  10375. },
  10376. [
  10377. {
  10378. name: "Micro",
  10379. height: math.unit(2, "inches")
  10380. },
  10381. {
  10382. name: "Normal",
  10383. height: math.unit(12, "meters")
  10384. },
  10385. {
  10386. name: "Planetary",
  10387. height: math.unit(0.00929, "AU"),
  10388. default: true
  10389. },
  10390. {
  10391. name: "Universal",
  10392. height: math.unit(20, "gigaparsecs")
  10393. },
  10394. ]
  10395. ))
  10396. characterMakers.push(() => makeCharacter(
  10397. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10398. {
  10399. front: {
  10400. height: math.unit(5 + 2 / 12, "feet"),
  10401. weight: math.unit(120, "lbs"),
  10402. name: "Front",
  10403. image: {
  10404. source: "./media/characters/katherine/front.svg",
  10405. extra: 2075 / 1969
  10406. }
  10407. },
  10408. dress: {
  10409. height: math.unit(5 + 2 / 12, "feet"),
  10410. weight: math.unit(120, "lbs"),
  10411. name: "Dress",
  10412. image: {
  10413. source: "./media/characters/katherine/dress.svg",
  10414. extra: 2258 / 2064
  10415. }
  10416. },
  10417. },
  10418. [
  10419. {
  10420. name: "Micro",
  10421. height: math.unit(1, "inches"),
  10422. default: true
  10423. },
  10424. {
  10425. name: "Normal",
  10426. height: math.unit(5 + 2 / 12, "feet")
  10427. },
  10428. {
  10429. name: "Macro",
  10430. height: math.unit(100, "meters")
  10431. },
  10432. {
  10433. name: "Megamacro",
  10434. height: math.unit(80, "miles")
  10435. },
  10436. ]
  10437. ))
  10438. characterMakers.push(() => makeCharacter(
  10439. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10440. {
  10441. front: {
  10442. height: math.unit(7 + 8 / 12, "feet"),
  10443. weight: math.unit(250, "lbs"),
  10444. name: "Front",
  10445. image: {
  10446. source: "./media/characters/yevis/front.svg",
  10447. extra: 1938 / 1755
  10448. }
  10449. }
  10450. },
  10451. [
  10452. {
  10453. name: "Mortal",
  10454. height: math.unit(7 + 8 / 12, "feet")
  10455. },
  10456. {
  10457. name: "Battle",
  10458. height: math.unit(25 + 11 / 12, "feet")
  10459. },
  10460. {
  10461. name: "Wrath",
  10462. height: math.unit(1654 + 11 / 12, "feet")
  10463. },
  10464. {
  10465. name: "Planet Destroyer",
  10466. height: math.unit(12000, "miles")
  10467. },
  10468. {
  10469. name: "Galaxy Conqueror",
  10470. height: math.unit(1.45, "zettameters"),
  10471. default: true
  10472. },
  10473. {
  10474. name: "Universal War",
  10475. height: math.unit(184, "gigaparsecs")
  10476. },
  10477. {
  10478. name: "Eternity War",
  10479. height: math.unit(1.98e55, "yottaparsecs")
  10480. },
  10481. ]
  10482. ))
  10483. characterMakers.push(() => makeCharacter(
  10484. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10485. {
  10486. front: {
  10487. height: math.unit(5 + 8 / 12, "feet"),
  10488. weight: math.unit(63, "kg"),
  10489. name: "Front",
  10490. image: {
  10491. source: "./media/characters/xavier/front.svg",
  10492. extra: 944 / 883
  10493. }
  10494. },
  10495. frontStretch: {
  10496. height: math.unit(5 + 8 / 12, "feet"),
  10497. weight: math.unit(63, "kg"),
  10498. name: "Stretching",
  10499. image: {
  10500. source: "./media/characters/xavier/front-stretch.svg",
  10501. extra: 962 / 820
  10502. }
  10503. },
  10504. },
  10505. [
  10506. {
  10507. name: "Normal",
  10508. height: math.unit(5 + 8 / 12, "feet")
  10509. },
  10510. {
  10511. name: "Macro",
  10512. height: math.unit(100, "meters"),
  10513. default: true
  10514. },
  10515. {
  10516. name: "McLargeHuge",
  10517. height: math.unit(10, "miles")
  10518. },
  10519. ]
  10520. ))
  10521. characterMakers.push(() => makeCharacter(
  10522. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10523. {
  10524. front: {
  10525. height: math.unit(5 + 5 / 12, "feet"),
  10526. weight: math.unit(150, "lb"),
  10527. name: "Front",
  10528. image: {
  10529. source: "./media/characters/joshii/front.svg",
  10530. extra: 765 / 653,
  10531. bottom: 51 / 816
  10532. }
  10533. },
  10534. foot: {
  10535. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10536. name: "Foot",
  10537. image: {
  10538. source: "./media/characters/joshii/foot.svg"
  10539. }
  10540. },
  10541. },
  10542. [
  10543. {
  10544. name: "Micro",
  10545. height: math.unit(2, "inches")
  10546. },
  10547. {
  10548. name: "Normal",
  10549. height: math.unit(5 + 5 / 12, "feet")
  10550. },
  10551. {
  10552. name: "Macro",
  10553. height: math.unit(785, "feet"),
  10554. default: true
  10555. },
  10556. {
  10557. name: "Megamacro",
  10558. height: math.unit(24.5, "miles")
  10559. },
  10560. ]
  10561. ))
  10562. characterMakers.push(() => makeCharacter(
  10563. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10564. {
  10565. front: {
  10566. height: math.unit(6, "feet"),
  10567. weight: math.unit(150, "lb"),
  10568. name: "Front",
  10569. image: {
  10570. source: "./media/characters/goddess-elizabeth/front.svg",
  10571. extra: 1800 / 1525,
  10572. bottom: 0.005
  10573. }
  10574. },
  10575. foot: {
  10576. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10577. name: "Foot",
  10578. image: {
  10579. source: "./media/characters/goddess-elizabeth/foot.svg"
  10580. }
  10581. },
  10582. mouth: {
  10583. height: math.unit(6, "feet"),
  10584. name: "Mouth",
  10585. image: {
  10586. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10587. }
  10588. },
  10589. },
  10590. [
  10591. {
  10592. name: "Micro",
  10593. height: math.unit(12, "feet")
  10594. },
  10595. {
  10596. name: "Normal",
  10597. height: math.unit(80, "miles"),
  10598. default: true
  10599. },
  10600. {
  10601. name: "Macro",
  10602. height: math.unit(15000, "parsecs")
  10603. },
  10604. ]
  10605. ))
  10606. characterMakers.push(() => makeCharacter(
  10607. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10608. {
  10609. front: {
  10610. height: math.unit(5 + 9 / 12, "feet"),
  10611. weight: math.unit(144, "lb"),
  10612. name: "Front",
  10613. image: {
  10614. source: "./media/characters/kara/front.svg"
  10615. }
  10616. },
  10617. feet: {
  10618. height: math.unit(6 / 6.765, "feet"),
  10619. name: "Kara's Feet",
  10620. rename: true,
  10621. image: {
  10622. source: "./media/characters/kara/feet.svg"
  10623. }
  10624. },
  10625. },
  10626. [
  10627. {
  10628. name: "Normal",
  10629. height: math.unit(5 + 9 / 12, "feet")
  10630. },
  10631. {
  10632. name: "Macro",
  10633. height: math.unit(174, "feet"),
  10634. default: true
  10635. },
  10636. ]
  10637. ))
  10638. characterMakers.push(() => makeCharacter(
  10639. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10640. {
  10641. front: {
  10642. height: math.unit(18, "feet"),
  10643. weight: math.unit(4050, "lb"),
  10644. name: "Front",
  10645. image: {
  10646. source: "./media/characters/tyrone/front.svg",
  10647. extra: 2405 / 2270,
  10648. bottom: 182 / 2587
  10649. }
  10650. },
  10651. },
  10652. [
  10653. {
  10654. name: "Normal",
  10655. height: math.unit(18, "feet"),
  10656. default: true
  10657. },
  10658. {
  10659. name: "Macro",
  10660. height: math.unit(300, "feet")
  10661. },
  10662. {
  10663. name: "Megamacro",
  10664. height: math.unit(15, "km")
  10665. },
  10666. {
  10667. name: "Gigamacro",
  10668. height: math.unit(500, "km")
  10669. },
  10670. {
  10671. name: "Teramacro",
  10672. height: math.unit(0.5, "gigameters")
  10673. },
  10674. {
  10675. name: "Omnimacro",
  10676. height: math.unit(1e252, "yottauniverse")
  10677. },
  10678. ]
  10679. ))
  10680. characterMakers.push(() => makeCharacter(
  10681. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10682. {
  10683. front: {
  10684. height: math.unit(7 + 8 / 12, "feet"),
  10685. weight: math.unit(120, "lb"),
  10686. name: "Front",
  10687. image: {
  10688. source: "./media/characters/danny/front.svg",
  10689. extra: 1490 / 1350
  10690. }
  10691. },
  10692. back: {
  10693. height: math.unit(7 + 8 / 12, "feet"),
  10694. weight: math.unit(120, "lb"),
  10695. name: "Back",
  10696. image: {
  10697. source: "./media/characters/danny/back.svg",
  10698. extra: 1490 / 1350
  10699. }
  10700. },
  10701. },
  10702. [
  10703. {
  10704. name: "Normal",
  10705. height: math.unit(7 + 8 / 12, "feet"),
  10706. default: true
  10707. },
  10708. ]
  10709. ))
  10710. characterMakers.push(() => makeCharacter(
  10711. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10712. {
  10713. front: {
  10714. height: math.unit(3.5, "inches"),
  10715. weight: math.unit(19, "grams"),
  10716. name: "Front",
  10717. image: {
  10718. source: "./media/characters/mallow/front.svg",
  10719. extra: 471 / 431
  10720. }
  10721. },
  10722. back: {
  10723. height: math.unit(3.5, "inches"),
  10724. weight: math.unit(19, "grams"),
  10725. name: "Back",
  10726. image: {
  10727. source: "./media/characters/mallow/back.svg",
  10728. extra: 471 / 431
  10729. }
  10730. },
  10731. },
  10732. [
  10733. {
  10734. name: "Normal",
  10735. height: math.unit(3.5, "inches"),
  10736. default: true
  10737. },
  10738. ]
  10739. ))
  10740. characterMakers.push(() => makeCharacter(
  10741. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10742. {
  10743. front: {
  10744. height: math.unit(9, "feet"),
  10745. weight: math.unit(230, "kg"),
  10746. name: "Front",
  10747. image: {
  10748. source: "./media/characters/starry-aqua/front.svg"
  10749. }
  10750. },
  10751. back: {
  10752. height: math.unit(9, "feet"),
  10753. weight: math.unit(230, "kg"),
  10754. name: "Back",
  10755. image: {
  10756. source: "./media/characters/starry-aqua/back.svg"
  10757. }
  10758. },
  10759. hand: {
  10760. height: math.unit(9 * 0.1168, "feet"),
  10761. name: "Hand",
  10762. image: {
  10763. source: "./media/characters/starry-aqua/hand.svg"
  10764. }
  10765. },
  10766. foot: {
  10767. height: math.unit(9 * 0.18, "feet"),
  10768. name: "Foot",
  10769. image: {
  10770. source: "./media/characters/starry-aqua/foot.svg"
  10771. }
  10772. }
  10773. },
  10774. [
  10775. {
  10776. name: "Micro",
  10777. height: math.unit(3, "inches")
  10778. },
  10779. {
  10780. name: "Normal",
  10781. height: math.unit(9, "feet")
  10782. },
  10783. {
  10784. name: "Macro",
  10785. height: math.unit(300, "feet"),
  10786. default: true
  10787. },
  10788. {
  10789. name: "Megamacro",
  10790. height: math.unit(3200, "feet")
  10791. }
  10792. ]
  10793. ))
  10794. characterMakers.push(() => makeCharacter(
  10795. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10796. {
  10797. front: {
  10798. height: math.unit(15, "feet"),
  10799. weight: math.unit(5026, "lb"),
  10800. name: "Front",
  10801. image: {
  10802. source: "./media/characters/luka-towers/front.svg",
  10803. extra: 1269/1133,
  10804. bottom: 51/1320
  10805. }
  10806. },
  10807. },
  10808. [
  10809. {
  10810. name: "Normal",
  10811. height: math.unit(15, "feet"),
  10812. default: true
  10813. },
  10814. {
  10815. name: "Minimacro",
  10816. height: math.unit(25, "feet")
  10817. },
  10818. {
  10819. name: "Macro",
  10820. height: math.unit(320, "feet")
  10821. },
  10822. {
  10823. name: "Megamacro",
  10824. height: math.unit(35000, "feet")
  10825. },
  10826. {
  10827. name: "Gigamacro",
  10828. height: math.unit(4000, "miles")
  10829. },
  10830. {
  10831. name: "Teramacro",
  10832. height: math.unit(15000, "miles")
  10833. },
  10834. ]
  10835. ))
  10836. characterMakers.push(() => makeCharacter(
  10837. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10838. {
  10839. front: {
  10840. height: math.unit(6, "feet"),
  10841. weight: math.unit(150, "lb"),
  10842. name: "Front",
  10843. image: {
  10844. source: "./media/characters/natalie-nightring/front.svg",
  10845. extra: 1,
  10846. bottom: 0.06
  10847. }
  10848. },
  10849. },
  10850. [
  10851. {
  10852. name: "Uh Oh",
  10853. height: math.unit(0.1, "mm")
  10854. },
  10855. {
  10856. name: "Small",
  10857. height: math.unit(3, "inches")
  10858. },
  10859. {
  10860. name: "Human Scale",
  10861. height: math.unit(6, "feet")
  10862. },
  10863. {
  10864. name: "Librarian",
  10865. height: math.unit(50, "feet"),
  10866. default: true
  10867. },
  10868. {
  10869. name: "Immense",
  10870. height: math.unit(200, "miles")
  10871. },
  10872. ]
  10873. ))
  10874. characterMakers.push(() => makeCharacter(
  10875. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10876. {
  10877. front: {
  10878. height: math.unit(6, "feet"),
  10879. weight: math.unit(180, "lbs"),
  10880. name: "Front",
  10881. image: {
  10882. source: "./media/characters/danni-rosie/front.svg",
  10883. extra: 1260 / 1128,
  10884. bottom: 0.022
  10885. }
  10886. },
  10887. },
  10888. [
  10889. {
  10890. name: "Micro",
  10891. height: math.unit(2, "inches"),
  10892. default: true
  10893. },
  10894. ]
  10895. ))
  10896. characterMakers.push(() => makeCharacter(
  10897. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10898. {
  10899. front: {
  10900. height: math.unit(5 + 9 / 12, "feet"),
  10901. weight: math.unit(220, "lb"),
  10902. name: "Front",
  10903. image: {
  10904. source: "./media/characters/samantha-kruse/front.svg",
  10905. extra: (985 / 935),
  10906. bottom: 0.03
  10907. }
  10908. },
  10909. frontUndressed: {
  10910. height: math.unit(5 + 9 / 12, "feet"),
  10911. weight: math.unit(220, "lb"),
  10912. name: "Front (Undressed)",
  10913. image: {
  10914. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10915. extra: (973 / 923),
  10916. bottom: 0.025
  10917. }
  10918. },
  10919. fat: {
  10920. height: math.unit(5 + 9 / 12, "feet"),
  10921. weight: math.unit(900, "lb"),
  10922. name: "Front (Fat)",
  10923. image: {
  10924. source: "./media/characters/samantha-kruse/fat.svg",
  10925. extra: 2688 / 2561
  10926. }
  10927. },
  10928. },
  10929. [
  10930. {
  10931. name: "Normal",
  10932. height: math.unit(5 + 9 / 12, "feet"),
  10933. default: true
  10934. }
  10935. ]
  10936. ))
  10937. characterMakers.push(() => makeCharacter(
  10938. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10939. {
  10940. back: {
  10941. height: math.unit(5 + 4 / 12, "feet"),
  10942. weight: math.unit(4963, "lb"),
  10943. name: "Back",
  10944. image: {
  10945. source: "./media/characters/amelia-rosie/back.svg",
  10946. extra: 1113 / 963,
  10947. bottom: 0.01
  10948. }
  10949. },
  10950. },
  10951. [
  10952. {
  10953. name: "Level 0",
  10954. height: math.unit(5 + 4 / 12, "feet")
  10955. },
  10956. {
  10957. name: "Level 1",
  10958. height: math.unit(164597, "feet"),
  10959. default: true
  10960. },
  10961. {
  10962. name: "Level 2",
  10963. height: math.unit(956243, "miles")
  10964. },
  10965. {
  10966. name: "Level 3",
  10967. height: math.unit(29421709423, "miles")
  10968. },
  10969. {
  10970. name: "Level 4",
  10971. height: math.unit(154, "lightyears")
  10972. },
  10973. {
  10974. name: "Level 5",
  10975. height: math.unit(4738272, "lightyears")
  10976. },
  10977. {
  10978. name: "Level 6",
  10979. height: math.unit(145787152896, "lightyears")
  10980. },
  10981. ]
  10982. ))
  10983. characterMakers.push(() => makeCharacter(
  10984. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10985. {
  10986. front: {
  10987. height: math.unit(5 + 11 / 12, "feet"),
  10988. weight: math.unit(65, "kg"),
  10989. name: "Front",
  10990. image: {
  10991. source: "./media/characters/rook-kitara/front.svg",
  10992. extra: 1347 / 1274,
  10993. bottom: 0.005
  10994. }
  10995. },
  10996. },
  10997. [
  10998. {
  10999. name: "Totally Unfair",
  11000. height: math.unit(1.8, "mm")
  11001. },
  11002. {
  11003. name: "Lap Rookie",
  11004. height: math.unit(1.4, "feet")
  11005. },
  11006. {
  11007. name: "Normal",
  11008. height: math.unit(5 + 11 / 12, "feet"),
  11009. default: true
  11010. },
  11011. {
  11012. name: "How Did This Happen",
  11013. height: math.unit(80, "miles")
  11014. }
  11015. ]
  11016. ))
  11017. characterMakers.push(() => makeCharacter(
  11018. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  11019. {
  11020. front: {
  11021. height: math.unit(7, "feet"),
  11022. weight: math.unit(300, "lb"),
  11023. name: "Front",
  11024. image: {
  11025. source: "./media/characters/pisces/front.svg",
  11026. extra: 2255 / 2115,
  11027. bottom: 0.03
  11028. }
  11029. },
  11030. back: {
  11031. height: math.unit(7, "feet"),
  11032. weight: math.unit(300, "lb"),
  11033. name: "Back",
  11034. image: {
  11035. source: "./media/characters/pisces/back.svg",
  11036. extra: 2146 / 2055,
  11037. bottom: 0.04
  11038. }
  11039. },
  11040. },
  11041. [
  11042. {
  11043. name: "Normal",
  11044. height: math.unit(7, "feet"),
  11045. default: true
  11046. },
  11047. {
  11048. name: "Swimming Pool",
  11049. height: math.unit(12.2, "meters")
  11050. },
  11051. {
  11052. name: "Olympic Swimming Pool",
  11053. height: math.unit(56.3, "meters")
  11054. },
  11055. {
  11056. name: "Lake Superior",
  11057. height: math.unit(93900, "meters")
  11058. },
  11059. {
  11060. name: "Mediterranean Sea",
  11061. height: math.unit(644457, "meters")
  11062. },
  11063. {
  11064. name: "World's Oceans",
  11065. height: math.unit(4567491, "meters")
  11066. },
  11067. ]
  11068. ))
  11069. characterMakers.push(() => makeCharacter(
  11070. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  11071. {
  11072. front: {
  11073. height: math.unit(2.3, "meters"),
  11074. weight: math.unit(120, "kg"),
  11075. name: "Front",
  11076. image: {
  11077. source: "./media/characters/zelas/front.svg"
  11078. }
  11079. },
  11080. side: {
  11081. height: math.unit(2.3, "meters"),
  11082. weight: math.unit(120, "kg"),
  11083. name: "Side",
  11084. image: {
  11085. source: "./media/characters/zelas/side.svg"
  11086. }
  11087. },
  11088. back: {
  11089. height: math.unit(2.3, "meters"),
  11090. weight: math.unit(120, "kg"),
  11091. name: "Back",
  11092. image: {
  11093. source: "./media/characters/zelas/back.svg"
  11094. }
  11095. },
  11096. foot: {
  11097. height: math.unit(1.116, "feet"),
  11098. name: "Foot",
  11099. image: {
  11100. source: "./media/characters/zelas/foot.svg"
  11101. }
  11102. },
  11103. },
  11104. [
  11105. {
  11106. name: "Normal",
  11107. height: math.unit(2.3, "meters")
  11108. },
  11109. {
  11110. name: "Macro",
  11111. height: math.unit(30, "meters"),
  11112. default: true
  11113. },
  11114. ]
  11115. ))
  11116. characterMakers.push(() => makeCharacter(
  11117. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  11118. {
  11119. front: {
  11120. height: math.unit(1, "inch"),
  11121. weight: math.unit(0.21, "grams"),
  11122. name: "Front",
  11123. image: {
  11124. source: "./media/characters/talbot/front.svg",
  11125. extra: 594 / 544
  11126. }
  11127. },
  11128. },
  11129. [
  11130. {
  11131. name: "Micro",
  11132. height: math.unit(1, "inch"),
  11133. default: true
  11134. },
  11135. ]
  11136. ))
  11137. characterMakers.push(() => makeCharacter(
  11138. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  11139. {
  11140. front: {
  11141. height: math.unit(3 + 3 / 12, "feet"),
  11142. weight: math.unit(51.8, "lb"),
  11143. name: "Front",
  11144. image: {
  11145. source: "./media/characters/fliss/front.svg",
  11146. extra: 840 / 640
  11147. }
  11148. },
  11149. },
  11150. [
  11151. {
  11152. name: "Teeny Tiny",
  11153. height: math.unit(1, "mm")
  11154. },
  11155. {
  11156. name: "Small",
  11157. height: math.unit(1, "inch"),
  11158. default: true
  11159. },
  11160. {
  11161. name: "Standard Sylveon",
  11162. height: math.unit(3 + 3 / 12, "feet")
  11163. },
  11164. {
  11165. name: "Large Nuisance",
  11166. height: math.unit(33, "feet")
  11167. },
  11168. {
  11169. name: "City Filler",
  11170. height: math.unit(3000, "feet")
  11171. },
  11172. {
  11173. name: "New Horizon",
  11174. height: math.unit(6000, "miles")
  11175. },
  11176. ]
  11177. ))
  11178. characterMakers.push(() => makeCharacter(
  11179. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  11180. {
  11181. front: {
  11182. height: math.unit(5, "cm"),
  11183. weight: math.unit(1.94, "g"),
  11184. name: "Front",
  11185. image: {
  11186. source: "./media/characters/fleta/front.svg",
  11187. extra: 835 / 803
  11188. }
  11189. },
  11190. back: {
  11191. height: math.unit(5, "cm"),
  11192. weight: math.unit(1.94, "g"),
  11193. name: "Back",
  11194. image: {
  11195. source: "./media/characters/fleta/back.svg",
  11196. extra: 835 / 803
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Micro",
  11203. height: math.unit(5, "cm"),
  11204. default: true
  11205. },
  11206. ]
  11207. ))
  11208. characterMakers.push(() => makeCharacter(
  11209. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  11210. {
  11211. front: {
  11212. height: math.unit(6, "feet"),
  11213. weight: math.unit(225, "lb"),
  11214. name: "Front",
  11215. image: {
  11216. source: "./media/characters/dominic/front.svg",
  11217. extra: 1770 / 1620,
  11218. bottom: 0.025
  11219. }
  11220. },
  11221. back: {
  11222. height: math.unit(6, "feet"),
  11223. weight: math.unit(225, "lb"),
  11224. name: "Back",
  11225. image: {
  11226. source: "./media/characters/dominic/back.svg",
  11227. extra: 1745 / 1620,
  11228. bottom: 0.065
  11229. }
  11230. },
  11231. },
  11232. [
  11233. {
  11234. name: "Nano",
  11235. height: math.unit(0.1, "mm")
  11236. },
  11237. {
  11238. name: "Micro-",
  11239. height: math.unit(1, "mm")
  11240. },
  11241. {
  11242. name: "Micro",
  11243. height: math.unit(4, "inches")
  11244. },
  11245. {
  11246. name: "Normal",
  11247. height: math.unit(6 + 4 / 12, "feet"),
  11248. default: true
  11249. },
  11250. {
  11251. name: "Macro",
  11252. height: math.unit(115, "feet")
  11253. },
  11254. {
  11255. name: "Macro+",
  11256. height: math.unit(955, "feet")
  11257. },
  11258. {
  11259. name: "Megamacro",
  11260. height: math.unit(8990, "feet")
  11261. },
  11262. {
  11263. name: "Gigmacro",
  11264. height: math.unit(9310, "miles")
  11265. },
  11266. {
  11267. name: "Teramacro",
  11268. height: math.unit(1567005010, "miles")
  11269. },
  11270. {
  11271. name: "Examacro",
  11272. height: math.unit(1425, "parsecs")
  11273. },
  11274. ]
  11275. ))
  11276. characterMakers.push(() => makeCharacter(
  11277. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11278. {
  11279. front: {
  11280. height: math.unit(400, "feet"),
  11281. weight: math.unit(44444444, "lb"),
  11282. name: "Front",
  11283. image: {
  11284. source: "./media/characters/major-colonel/front.svg"
  11285. }
  11286. },
  11287. back: {
  11288. height: math.unit(400, "feet"),
  11289. weight: math.unit(44444444, "lb"),
  11290. name: "Back",
  11291. image: {
  11292. source: "./media/characters/major-colonel/back.svg"
  11293. }
  11294. },
  11295. },
  11296. [
  11297. {
  11298. name: "Macro",
  11299. height: math.unit(400, "feet"),
  11300. default: true
  11301. },
  11302. ]
  11303. ))
  11304. characterMakers.push(() => makeCharacter(
  11305. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11306. {
  11307. catFront: {
  11308. height: math.unit(6, "feet"),
  11309. weight: math.unit(120, "lb"),
  11310. name: "Front (Cat Side)",
  11311. image: {
  11312. source: "./media/characters/axel-lycan/cat-front.svg",
  11313. extra: 430 / 402,
  11314. bottom: 43 / 472.35
  11315. }
  11316. },
  11317. catBack: {
  11318. height: math.unit(6, "feet"),
  11319. weight: math.unit(120, "lb"),
  11320. name: "Back (Cat Side)",
  11321. image: {
  11322. source: "./media/characters/axel-lycan/cat-back.svg",
  11323. extra: 447 / 419,
  11324. bottom: 23.3 / 469
  11325. }
  11326. },
  11327. wolfFront: {
  11328. height: math.unit(6, "feet"),
  11329. weight: math.unit(120, "lb"),
  11330. name: "Front (Wolf Side)",
  11331. image: {
  11332. source: "./media/characters/axel-lycan/wolf-front.svg",
  11333. extra: 485 / 456,
  11334. bottom: 19 / 504
  11335. }
  11336. },
  11337. wolfBack: {
  11338. height: math.unit(6, "feet"),
  11339. weight: math.unit(120, "lb"),
  11340. name: "Back (Wolf Side)",
  11341. image: {
  11342. source: "./media/characters/axel-lycan/wolf-back.svg",
  11343. extra: 475 / 438,
  11344. bottom: 39.2 / 514
  11345. }
  11346. },
  11347. },
  11348. [
  11349. {
  11350. name: "Macro",
  11351. height: math.unit(1, "km"),
  11352. default: true
  11353. },
  11354. ]
  11355. ))
  11356. characterMakers.push(() => makeCharacter(
  11357. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11358. {
  11359. front: {
  11360. height: math.unit(5 + 9 / 12, "feet"),
  11361. weight: math.unit(175, "lb"),
  11362. name: "Front",
  11363. image: {
  11364. source: "./media/characters/vanrel-hyena/front.svg",
  11365. extra: 1086 / 1010,
  11366. bottom: 0.04
  11367. }
  11368. },
  11369. },
  11370. [
  11371. {
  11372. name: "Normal",
  11373. height: math.unit(5 + 9 / 12, "feet"),
  11374. default: true
  11375. },
  11376. ]
  11377. ))
  11378. characterMakers.push(() => makeCharacter(
  11379. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11380. {
  11381. front: {
  11382. height: math.unit(6, "feet"),
  11383. weight: math.unit(103, "lb"),
  11384. name: "Front",
  11385. image: {
  11386. source: "./media/characters/abbott-absol/front.svg",
  11387. extra: 765/694,
  11388. bottom: 47/812
  11389. }
  11390. },
  11391. },
  11392. [
  11393. {
  11394. name: "Megamicro",
  11395. height: math.unit(0.1, "mm")
  11396. },
  11397. {
  11398. name: "Micro",
  11399. height: math.unit(1, "inch")
  11400. },
  11401. {
  11402. name: "Normal",
  11403. height: math.unit(6, "feet"),
  11404. default: true
  11405. },
  11406. ]
  11407. ))
  11408. characterMakers.push(() => makeCharacter(
  11409. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11410. {
  11411. front: {
  11412. height: math.unit(6, "feet"),
  11413. weight: math.unit(264, "lb"),
  11414. name: "Front",
  11415. image: {
  11416. source: "./media/characters/hector/front.svg",
  11417. extra: 2280 / 2130,
  11418. bottom: 0.07
  11419. }
  11420. },
  11421. },
  11422. [
  11423. {
  11424. name: "Normal",
  11425. height: math.unit(12.25, "foot"),
  11426. default: true
  11427. },
  11428. {
  11429. name: "Macro",
  11430. height: math.unit(160, "feet")
  11431. },
  11432. ]
  11433. ))
  11434. characterMakers.push(() => makeCharacter(
  11435. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11436. {
  11437. front: {
  11438. height: math.unit(6, "feet"),
  11439. weight: math.unit(150, "lb"),
  11440. name: "Front",
  11441. image: {
  11442. source: "./media/characters/sal/front.svg",
  11443. extra: 1846 / 1699,
  11444. bottom: 0.04
  11445. }
  11446. },
  11447. },
  11448. [
  11449. {
  11450. name: "Megamacro",
  11451. height: math.unit(10, "miles"),
  11452. default: true
  11453. },
  11454. ]
  11455. ))
  11456. characterMakers.push(() => makeCharacter(
  11457. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11458. {
  11459. front: {
  11460. height: math.unit(3, "meters"),
  11461. weight: math.unit(450, "kg"),
  11462. name: "front",
  11463. image: {
  11464. source: "./media/characters/ranger/front.svg",
  11465. extra: 2401 / 2243,
  11466. bottom: 0.05
  11467. }
  11468. },
  11469. },
  11470. [
  11471. {
  11472. name: "Normal",
  11473. height: math.unit(3, "meters"),
  11474. default: true
  11475. },
  11476. ]
  11477. ))
  11478. characterMakers.push(() => makeCharacter(
  11479. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11480. {
  11481. front: {
  11482. height: math.unit(14, "feet"),
  11483. weight: math.unit(800, "kg"),
  11484. name: "Front",
  11485. image: {
  11486. source: "./media/characters/theresa/front.svg",
  11487. extra: 3575 / 3346,
  11488. bottom: 0.03
  11489. }
  11490. },
  11491. },
  11492. [
  11493. {
  11494. name: "Normal",
  11495. height: math.unit(14, "feet"),
  11496. default: true
  11497. },
  11498. ]
  11499. ))
  11500. characterMakers.push(() => makeCharacter(
  11501. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11502. {
  11503. front: {
  11504. height: math.unit(6, "feet"),
  11505. weight: math.unit(3, "kg"),
  11506. name: "Front",
  11507. image: {
  11508. source: "./media/characters/ine/front.svg",
  11509. extra: 678 / 539,
  11510. bottom: 0.023
  11511. }
  11512. },
  11513. },
  11514. [
  11515. {
  11516. name: "Normal",
  11517. height: math.unit(2.265, "feet"),
  11518. default: true
  11519. },
  11520. ]
  11521. ))
  11522. characterMakers.push(() => makeCharacter(
  11523. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11524. {
  11525. front: {
  11526. height: math.unit(5, "feet"),
  11527. weight: math.unit(30, "kg"),
  11528. name: "Front",
  11529. image: {
  11530. source: "./media/characters/vial/front.svg",
  11531. extra: 1365 / 1277,
  11532. bottom: 0.04
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Normal",
  11539. height: math.unit(5, "feet"),
  11540. default: true
  11541. },
  11542. ]
  11543. ))
  11544. characterMakers.push(() => makeCharacter(
  11545. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11546. {
  11547. side: {
  11548. height: math.unit(3.4, "meters"),
  11549. weight: math.unit(1000, "lb"),
  11550. name: "Side",
  11551. image: {
  11552. source: "./media/characters/rovoska/side.svg",
  11553. extra: 4403 / 1515
  11554. }
  11555. },
  11556. },
  11557. [
  11558. {
  11559. name: "Normal",
  11560. height: math.unit(3.4, "meters"),
  11561. default: true
  11562. },
  11563. ]
  11564. ))
  11565. characterMakers.push(() => makeCharacter(
  11566. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11567. {
  11568. front: {
  11569. height: math.unit(8, "feet"),
  11570. weight: math.unit(315, "lb"),
  11571. name: "Front",
  11572. image: {
  11573. source: "./media/characters/gunner-rotthbauer/front.svg"
  11574. }
  11575. },
  11576. back: {
  11577. height: math.unit(8, "feet"),
  11578. weight: math.unit(315, "lb"),
  11579. name: "Back",
  11580. image: {
  11581. source: "./media/characters/gunner-rotthbauer/back.svg"
  11582. }
  11583. },
  11584. },
  11585. [
  11586. {
  11587. name: "Micro",
  11588. height: math.unit(3.5, "inches")
  11589. },
  11590. {
  11591. name: "Normal",
  11592. height: math.unit(8, "feet"),
  11593. default: true
  11594. },
  11595. {
  11596. name: "Macro",
  11597. height: math.unit(250, "feet")
  11598. },
  11599. {
  11600. name: "Megamacro",
  11601. height: math.unit(1, "AU")
  11602. },
  11603. ]
  11604. ))
  11605. characterMakers.push(() => makeCharacter(
  11606. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11607. {
  11608. front: {
  11609. height: math.unit(5 + 5 / 12, "feet"),
  11610. weight: math.unit(140, "lb"),
  11611. name: "Front",
  11612. image: {
  11613. source: "./media/characters/allatia/front.svg",
  11614. extra: 1227 / 1180,
  11615. bottom: 0.027
  11616. }
  11617. },
  11618. },
  11619. [
  11620. {
  11621. name: "Normal",
  11622. height: math.unit(5 + 5 / 12, "feet")
  11623. },
  11624. {
  11625. name: "Macro",
  11626. height: math.unit(250, "feet"),
  11627. default: true
  11628. },
  11629. {
  11630. name: "Megamacro",
  11631. height: math.unit(8, "miles")
  11632. }
  11633. ]
  11634. ))
  11635. characterMakers.push(() => makeCharacter(
  11636. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11637. {
  11638. front: {
  11639. height: math.unit(6, "feet"),
  11640. weight: math.unit(120, "lb"),
  11641. name: "Front",
  11642. image: {
  11643. source: "./media/characters/tene/front.svg",
  11644. extra: 814/750,
  11645. bottom: 36/850
  11646. }
  11647. },
  11648. stomping: {
  11649. height: math.unit(2.025, "meters"),
  11650. weight: math.unit(120, "lb"),
  11651. name: "Stomping",
  11652. image: {
  11653. source: "./media/characters/tene/stomping.svg",
  11654. extra: 885/821,
  11655. bottom: 15/900
  11656. }
  11657. },
  11658. sitting: {
  11659. height: math.unit(1, "meter"),
  11660. weight: math.unit(120, "lb"),
  11661. name: "Sitting",
  11662. image: {
  11663. source: "./media/characters/tene/sitting.svg",
  11664. extra: 396/366,
  11665. bottom: 79/475
  11666. }
  11667. },
  11668. smiling: {
  11669. height: math.unit(1.2, "feet"),
  11670. name: "Smiling",
  11671. image: {
  11672. source: "./media/characters/tene/smiling.svg",
  11673. extra: 1364/1071,
  11674. bottom: 0/1364
  11675. }
  11676. },
  11677. smug: {
  11678. height: math.unit(1.3, "feet"),
  11679. name: "Smug",
  11680. image: {
  11681. source: "./media/characters/tene/smug.svg",
  11682. extra: 1323/1082,
  11683. bottom: 0/1323
  11684. }
  11685. },
  11686. feral: {
  11687. height: math.unit(3.9, "feet"),
  11688. weight: math.unit(250, "lb"),
  11689. name: "Feral",
  11690. image: {
  11691. source: "./media/characters/tene/feral.svg",
  11692. extra: 717 / 458,
  11693. bottom: 0.179
  11694. }
  11695. },
  11696. },
  11697. [
  11698. {
  11699. name: "Normal",
  11700. height: math.unit(6, "feet")
  11701. },
  11702. {
  11703. name: "Macro",
  11704. height: math.unit(300, "feet"),
  11705. default: true
  11706. },
  11707. {
  11708. name: "Megamacro",
  11709. height: math.unit(5, "miles")
  11710. },
  11711. ]
  11712. ))
  11713. characterMakers.push(() => makeCharacter(
  11714. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11715. {
  11716. side: {
  11717. height: math.unit(6, "feet"),
  11718. name: "Side",
  11719. image: {
  11720. source: "./media/characters/evander/side.svg",
  11721. extra: 877 / 477
  11722. }
  11723. },
  11724. },
  11725. [
  11726. {
  11727. name: "Normal",
  11728. height: math.unit(0.83, "meters"),
  11729. default: true
  11730. },
  11731. ]
  11732. ))
  11733. characterMakers.push(() => makeCharacter(
  11734. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11735. {
  11736. front: {
  11737. height: math.unit(12, "feet"),
  11738. weight: math.unit(1000, "lb"),
  11739. name: "Front",
  11740. image: {
  11741. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11742. extra: 1762 / 1611
  11743. }
  11744. },
  11745. back: {
  11746. height: math.unit(12, "feet"),
  11747. weight: math.unit(1000, "lb"),
  11748. name: "Back",
  11749. image: {
  11750. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11751. extra: 1762 / 1611
  11752. }
  11753. },
  11754. },
  11755. [
  11756. {
  11757. name: "Normal",
  11758. height: math.unit(12, "feet"),
  11759. default: true
  11760. },
  11761. {
  11762. name: "Kaiju",
  11763. height: math.unit(150, "feet")
  11764. },
  11765. ]
  11766. ))
  11767. characterMakers.push(() => makeCharacter(
  11768. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11769. {
  11770. front: {
  11771. height: math.unit(5 + 11/12, "feet"),
  11772. weight: math.unit(180, "lb"),
  11773. name: "Front",
  11774. image: {
  11775. source: "./media/characters/zero-alurus/front.svg",
  11776. extra: 1032/957,
  11777. bottom: 10/1042
  11778. }
  11779. },
  11780. back: {
  11781. height: math.unit(5 + 11/12, "feet"),
  11782. weight: math.unit(180, "lb"),
  11783. name: "Back",
  11784. image: {
  11785. source: "./media/characters/zero-alurus/back.svg",
  11786. extra: 1027/950,
  11787. bottom: 12/1039
  11788. }
  11789. },
  11790. },
  11791. [
  11792. {
  11793. name: "Normal",
  11794. height: math.unit(5 + 11 / 12, "feet")
  11795. },
  11796. {
  11797. name: "Mini-Macro",
  11798. height: math.unit(25, "feet")
  11799. },
  11800. {
  11801. name: "Macro",
  11802. height: math.unit(90, "feet"),
  11803. default: true
  11804. },
  11805. {
  11806. name: "Macro+",
  11807. height: math.unit(500, "feet")
  11808. },
  11809. {
  11810. name: "Megamacro",
  11811. height: math.unit(1200, "feet")
  11812. },
  11813. ]
  11814. ))
  11815. characterMakers.push(() => makeCharacter(
  11816. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11817. {
  11818. front: {
  11819. height: math.unit(6, "feet"),
  11820. weight: math.unit(200, "lb"),
  11821. name: "Front",
  11822. image: {
  11823. source: "./media/characters/mega-shi/front.svg",
  11824. extra: 1279 / 1250,
  11825. bottom: 0.02
  11826. }
  11827. },
  11828. back: {
  11829. height: math.unit(6, "feet"),
  11830. weight: math.unit(200, "lb"),
  11831. name: "Back",
  11832. image: {
  11833. source: "./media/characters/mega-shi/back.svg",
  11834. extra: 1279 / 1250,
  11835. bottom: 0.02
  11836. }
  11837. },
  11838. },
  11839. [
  11840. {
  11841. name: "Micro",
  11842. height: math.unit(16 + 6 / 12, "feet")
  11843. },
  11844. {
  11845. name: "Third Dimension",
  11846. height: math.unit(40, "meters")
  11847. },
  11848. {
  11849. name: "Normal",
  11850. height: math.unit(660, "feet"),
  11851. default: true
  11852. },
  11853. {
  11854. name: "Megamacro",
  11855. height: math.unit(10, "miles")
  11856. },
  11857. {
  11858. name: "Planetary Launch",
  11859. height: math.unit(500, "miles")
  11860. },
  11861. {
  11862. name: "Interstellar",
  11863. height: math.unit(1e9, "miles")
  11864. },
  11865. {
  11866. name: "Leaving the Universe",
  11867. height: math.unit(1, "gigaparsec")
  11868. },
  11869. {
  11870. name: "Travelling Universes",
  11871. height: math.unit(30e15, "parsecs")
  11872. },
  11873. ]
  11874. ))
  11875. characterMakers.push(() => makeCharacter(
  11876. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11877. {
  11878. front: {
  11879. height: math.unit(5 + 4/12, "feet"),
  11880. weight: math.unit(120, "lb"),
  11881. name: "Front",
  11882. image: {
  11883. source: "./media/characters/odyssey/front.svg",
  11884. extra: 1747/1571,
  11885. bottom: 47/1794
  11886. }
  11887. },
  11888. side: {
  11889. height: math.unit(5.1, "feet"),
  11890. weight: math.unit(120, "lb"),
  11891. name: "Side",
  11892. image: {
  11893. source: "./media/characters/odyssey/side.svg",
  11894. extra: 1847/1619,
  11895. bottom: 47/1894
  11896. }
  11897. },
  11898. lounging: {
  11899. height: math.unit(1.464, "feet"),
  11900. weight: math.unit(120, "lb"),
  11901. name: "Lounging",
  11902. image: {
  11903. source: "./media/characters/odyssey/lounging.svg",
  11904. extra: 1235/837,
  11905. bottom: 551/1786
  11906. }
  11907. },
  11908. },
  11909. [
  11910. {
  11911. name: "Normal",
  11912. height: math.unit(5 + 4 / 12, "feet")
  11913. },
  11914. {
  11915. name: "Macro",
  11916. height: math.unit(1, "km")
  11917. },
  11918. {
  11919. name: "Megamacro",
  11920. height: math.unit(3000, "km")
  11921. },
  11922. {
  11923. name: "Gigamacro",
  11924. height: math.unit(1, "AU"),
  11925. default: true
  11926. },
  11927. {
  11928. name: "Omniversal",
  11929. height: math.unit(100e14, "lightyears")
  11930. },
  11931. ]
  11932. ))
  11933. characterMakers.push(() => makeCharacter(
  11934. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11935. {
  11936. front: {
  11937. height: math.unit(5 + 10/12, "feet"),
  11938. name: "Front",
  11939. image: {
  11940. source: "./media/characters/mekuto/front.svg",
  11941. extra: 875/835,
  11942. bottom: 46/921
  11943. }
  11944. },
  11945. },
  11946. [
  11947. {
  11948. name: "Minimicro",
  11949. height: math.unit(0.2, "inches")
  11950. },
  11951. {
  11952. name: "Micro",
  11953. height: math.unit(1.5, "inches")
  11954. },
  11955. {
  11956. name: "Normal",
  11957. height: math.unit(5 + 10 / 12, "feet"),
  11958. default: true
  11959. },
  11960. {
  11961. name: "Minimacro",
  11962. height: math.unit(17 + 9 / 12, "feet")
  11963. },
  11964. {
  11965. name: "Macro",
  11966. height: math.unit(177.5, "feet")
  11967. },
  11968. {
  11969. name: "Megamacro",
  11970. height: math.unit(152, "miles")
  11971. },
  11972. ]
  11973. ))
  11974. characterMakers.push(() => makeCharacter(
  11975. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11976. {
  11977. front: {
  11978. height: math.unit(6.5, "inches"),
  11979. weight: math.unit(13, "oz"),
  11980. name: "Front",
  11981. image: {
  11982. source: "./media/characters/dafydd-tomos/front.svg",
  11983. extra: 2990 / 2603,
  11984. bottom: 0.03
  11985. }
  11986. },
  11987. },
  11988. [
  11989. {
  11990. name: "Micro",
  11991. height: math.unit(6.5, "inches"),
  11992. default: true
  11993. },
  11994. ]
  11995. ))
  11996. characterMakers.push(() => makeCharacter(
  11997. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11998. {
  11999. front: {
  12000. height: math.unit(6, "feet"),
  12001. weight: math.unit(150, "lb"),
  12002. name: "Front",
  12003. image: {
  12004. source: "./media/characters/splinter/front.svg",
  12005. extra: 2990 / 2882,
  12006. bottom: 0.04
  12007. }
  12008. },
  12009. back: {
  12010. height: math.unit(6, "feet"),
  12011. weight: math.unit(150, "lb"),
  12012. name: "Back",
  12013. image: {
  12014. source: "./media/characters/splinter/back.svg",
  12015. extra: 2990 / 2882,
  12016. bottom: 0.04
  12017. }
  12018. },
  12019. },
  12020. [
  12021. {
  12022. name: "Normal",
  12023. height: math.unit(6, "feet")
  12024. },
  12025. {
  12026. name: "Macro",
  12027. height: math.unit(230, "meters"),
  12028. default: true
  12029. },
  12030. ]
  12031. ))
  12032. characterMakers.push(() => makeCharacter(
  12033. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  12034. {
  12035. front: {
  12036. height: math.unit(4 + 10 / 12, "feet"),
  12037. weight: math.unit(480, "lb"),
  12038. name: "Front",
  12039. image: {
  12040. source: "./media/characters/snow-gabumon/front.svg",
  12041. extra: 1140 / 963,
  12042. bottom: 0.058
  12043. }
  12044. },
  12045. back: {
  12046. height: math.unit(4 + 10 / 12, "feet"),
  12047. weight: math.unit(480, "lb"),
  12048. name: "Back",
  12049. image: {
  12050. source: "./media/characters/snow-gabumon/back.svg",
  12051. extra: 1115 / 962,
  12052. bottom: 0.041
  12053. }
  12054. },
  12055. frontUndresed: {
  12056. height: math.unit(4 + 10 / 12, "feet"),
  12057. weight: math.unit(480, "lb"),
  12058. name: "Front (Undressed)",
  12059. image: {
  12060. source: "./media/characters/snow-gabumon/front-undressed.svg",
  12061. extra: 1061 / 960,
  12062. bottom: 0.045
  12063. }
  12064. },
  12065. },
  12066. [
  12067. {
  12068. name: "Micro",
  12069. height: math.unit(1, "inch")
  12070. },
  12071. {
  12072. name: "Normal",
  12073. height: math.unit(4 + 10 / 12, "feet"),
  12074. default: true
  12075. },
  12076. {
  12077. name: "Macro",
  12078. height: math.unit(200, "feet")
  12079. },
  12080. {
  12081. name: "Megamacro",
  12082. height: math.unit(120, "miles")
  12083. },
  12084. {
  12085. name: "Gigamacro",
  12086. height: math.unit(9800, "miles")
  12087. },
  12088. ]
  12089. ))
  12090. characterMakers.push(() => makeCharacter(
  12091. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  12092. {
  12093. front: {
  12094. height: math.unit(1.7, "meters"),
  12095. weight: math.unit(140, "lb"),
  12096. name: "Front",
  12097. image: {
  12098. source: "./media/characters/moody/front.svg",
  12099. extra: 3226 / 3007,
  12100. bottom: 0.087
  12101. }
  12102. },
  12103. },
  12104. [
  12105. {
  12106. name: "Micro",
  12107. height: math.unit(1, "mm")
  12108. },
  12109. {
  12110. name: "Normal",
  12111. height: math.unit(1.7, "meters"),
  12112. default: true
  12113. },
  12114. {
  12115. name: "Macro",
  12116. height: math.unit(80, "meters")
  12117. },
  12118. {
  12119. name: "Macro+",
  12120. height: math.unit(500, "meters")
  12121. },
  12122. ]
  12123. ))
  12124. characterMakers.push(() => makeCharacter(
  12125. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  12126. {
  12127. front: {
  12128. height: math.unit(6, "feet"),
  12129. weight: math.unit(150, "lb"),
  12130. name: "Front",
  12131. image: {
  12132. source: "./media/characters/zyas/front.svg",
  12133. extra: 1180 / 1120,
  12134. bottom: 0.045
  12135. }
  12136. },
  12137. },
  12138. [
  12139. {
  12140. name: "Normal",
  12141. height: math.unit(10, "feet"),
  12142. default: true
  12143. },
  12144. {
  12145. name: "Macro",
  12146. height: math.unit(500, "feet")
  12147. },
  12148. {
  12149. name: "Megamacro",
  12150. height: math.unit(5, "miles")
  12151. },
  12152. {
  12153. name: "Teramacro",
  12154. height: math.unit(150000, "miles")
  12155. },
  12156. ]
  12157. ))
  12158. characterMakers.push(() => makeCharacter(
  12159. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  12160. {
  12161. front: {
  12162. height: math.unit(6, "feet"),
  12163. weight: math.unit(150, "lb"),
  12164. name: "Front",
  12165. image: {
  12166. source: "./media/characters/cuon/front.svg",
  12167. extra: 1390 / 1320,
  12168. bottom: 0.008
  12169. }
  12170. },
  12171. },
  12172. [
  12173. {
  12174. name: "Micro",
  12175. height: math.unit(3, "inches")
  12176. },
  12177. {
  12178. name: "Normal",
  12179. height: math.unit(18 + 9 / 12, "feet"),
  12180. default: true
  12181. },
  12182. {
  12183. name: "Macro",
  12184. height: math.unit(360, "feet")
  12185. },
  12186. {
  12187. name: "Megamacro",
  12188. height: math.unit(360, "miles")
  12189. },
  12190. ]
  12191. ))
  12192. characterMakers.push(() => makeCharacter(
  12193. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  12194. {
  12195. front: {
  12196. height: math.unit(2.4, "meters"),
  12197. weight: math.unit(70, "kg"),
  12198. name: "Front",
  12199. image: {
  12200. source: "./media/characters/nyanuxk/front.svg",
  12201. extra: 1172 / 1084,
  12202. bottom: 0.065
  12203. }
  12204. },
  12205. side: {
  12206. height: math.unit(2.4, "meters"),
  12207. weight: math.unit(70, "kg"),
  12208. name: "Side",
  12209. image: {
  12210. source: "./media/characters/nyanuxk/side.svg",
  12211. extra: 1190 / 1132,
  12212. bottom: 0.007
  12213. }
  12214. },
  12215. back: {
  12216. height: math.unit(2.4, "meters"),
  12217. weight: math.unit(70, "kg"),
  12218. name: "Back",
  12219. image: {
  12220. source: "./media/characters/nyanuxk/back.svg",
  12221. extra: 1200 / 1141,
  12222. bottom: 0.015
  12223. }
  12224. },
  12225. foot: {
  12226. height: math.unit(0.52, "meters"),
  12227. name: "Foot",
  12228. image: {
  12229. source: "./media/characters/nyanuxk/foot.svg"
  12230. }
  12231. },
  12232. },
  12233. [
  12234. {
  12235. name: "Micro",
  12236. height: math.unit(2, "cm")
  12237. },
  12238. {
  12239. name: "Normal",
  12240. height: math.unit(2.4, "meters"),
  12241. default: true
  12242. },
  12243. {
  12244. name: "Smaller Macro",
  12245. height: math.unit(120, "meters")
  12246. },
  12247. {
  12248. name: "Bigger Macro",
  12249. height: math.unit(1.2, "km")
  12250. },
  12251. {
  12252. name: "Megamacro",
  12253. height: math.unit(15, "kilometers")
  12254. },
  12255. {
  12256. name: "Gigamacro",
  12257. height: math.unit(2000, "km")
  12258. },
  12259. {
  12260. name: "Teramacro",
  12261. height: math.unit(500000, "km")
  12262. },
  12263. ]
  12264. ))
  12265. characterMakers.push(() => makeCharacter(
  12266. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12267. {
  12268. side: {
  12269. height: math.unit(6, "feet"),
  12270. name: "Side",
  12271. image: {
  12272. source: "./media/characters/ailbhe/side.svg",
  12273. extra: 757 / 464,
  12274. bottom: 0.041
  12275. }
  12276. },
  12277. },
  12278. [
  12279. {
  12280. name: "Normal",
  12281. height: math.unit(1.07, "meters"),
  12282. default: true
  12283. },
  12284. ]
  12285. ))
  12286. characterMakers.push(() => makeCharacter(
  12287. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12288. {
  12289. front: {
  12290. height: math.unit(6, "feet"),
  12291. weight: math.unit(120, "kg"),
  12292. name: "Front",
  12293. image: {
  12294. source: "./media/characters/zevulfius/front.svg",
  12295. extra: 965 / 903
  12296. }
  12297. },
  12298. side: {
  12299. height: math.unit(6, "feet"),
  12300. weight: math.unit(120, "kg"),
  12301. name: "Side",
  12302. image: {
  12303. source: "./media/characters/zevulfius/side.svg",
  12304. extra: 939 / 900
  12305. }
  12306. },
  12307. back: {
  12308. height: math.unit(6, "feet"),
  12309. weight: math.unit(120, "kg"),
  12310. name: "Back",
  12311. image: {
  12312. source: "./media/characters/zevulfius/back.svg",
  12313. extra: 918 / 854,
  12314. bottom: 0.005
  12315. }
  12316. },
  12317. foot: {
  12318. height: math.unit(6 / 3.72, "feet"),
  12319. name: "Foot",
  12320. image: {
  12321. source: "./media/characters/zevulfius/foot.svg"
  12322. }
  12323. },
  12324. },
  12325. [
  12326. {
  12327. name: "Macro",
  12328. height: math.unit(750, "meters")
  12329. },
  12330. {
  12331. name: "Megamacro",
  12332. height: math.unit(20, "km"),
  12333. default: true
  12334. },
  12335. {
  12336. name: "Gigamacro",
  12337. height: math.unit(2000, "km")
  12338. },
  12339. {
  12340. name: "Teramacro",
  12341. height: math.unit(250000, "km")
  12342. },
  12343. ]
  12344. ))
  12345. characterMakers.push(() => makeCharacter(
  12346. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12347. {
  12348. front: {
  12349. height: math.unit(100, "feet"),
  12350. weight: math.unit(350, "kg"),
  12351. name: "Front",
  12352. image: {
  12353. source: "./media/characters/rikes/front.svg",
  12354. extra: 1565 / 1483,
  12355. bottom: 0.017
  12356. }
  12357. },
  12358. },
  12359. [
  12360. {
  12361. name: "Macro",
  12362. height: math.unit(100, "feet"),
  12363. default: true
  12364. },
  12365. ]
  12366. ))
  12367. characterMakers.push(() => makeCharacter(
  12368. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12369. {
  12370. front: {
  12371. height: math.unit(8, "feet"),
  12372. weight: math.unit(356, "lb"),
  12373. name: "Front",
  12374. image: {
  12375. source: "./media/characters/adam-silver-mane/front.svg",
  12376. extra: 1036/937,
  12377. bottom: 63/1099
  12378. }
  12379. },
  12380. side: {
  12381. height: math.unit(8, "feet"),
  12382. weight: math.unit(356, "lb"),
  12383. name: "Side",
  12384. image: {
  12385. source: "./media/characters/adam-silver-mane/side.svg",
  12386. extra: 997/901,
  12387. bottom: 59/1056
  12388. }
  12389. },
  12390. frontNsfw: {
  12391. height: math.unit(8, "feet"),
  12392. weight: math.unit(356, "lb"),
  12393. name: "Front (NSFW)",
  12394. image: {
  12395. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12396. extra: 1036/937,
  12397. bottom: 63/1099
  12398. }
  12399. },
  12400. sideNsfw: {
  12401. height: math.unit(8, "feet"),
  12402. weight: math.unit(356, "lb"),
  12403. name: "Side (NSFW)",
  12404. image: {
  12405. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12406. extra: 997/901,
  12407. bottom: 59/1056
  12408. }
  12409. },
  12410. dick: {
  12411. height: math.unit(2.1, "feet"),
  12412. name: "Dick",
  12413. image: {
  12414. source: "./media/characters/adam-silver-mane/dick.svg"
  12415. }
  12416. },
  12417. taur: {
  12418. height: math.unit(16, "feet"),
  12419. weight: math.unit(1500, "kg"),
  12420. name: "Taur",
  12421. image: {
  12422. source: "./media/characters/adam-silver-mane/taur.svg",
  12423. extra: 1713 / 1571,
  12424. bottom: 0.01
  12425. }
  12426. },
  12427. },
  12428. [
  12429. {
  12430. name: "Normal",
  12431. height: math.unit(8, "feet")
  12432. },
  12433. {
  12434. name: "Minimacro",
  12435. height: math.unit(80, "feet")
  12436. },
  12437. {
  12438. name: "MDA",
  12439. height: math.unit(80, "meters")
  12440. },
  12441. {
  12442. name: "Macro",
  12443. height: math.unit(800, "feet"),
  12444. default: true
  12445. },
  12446. {
  12447. name: "Megamacro",
  12448. height: math.unit(8000, "feet")
  12449. },
  12450. {
  12451. name: "Gigamacro",
  12452. height: math.unit(800, "miles")
  12453. },
  12454. {
  12455. name: "Teramacro",
  12456. height: math.unit(80000, "miles")
  12457. },
  12458. {
  12459. name: "Celestial",
  12460. height: math.unit(8e6, "miles")
  12461. },
  12462. {
  12463. name: "Star Dragon",
  12464. height: math.unit(800000, "parsecs")
  12465. },
  12466. {
  12467. name: "Godly",
  12468. height: math.unit(800, "teraparsecs")
  12469. },
  12470. ]
  12471. ))
  12472. characterMakers.push(() => makeCharacter(
  12473. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12474. {
  12475. front: {
  12476. height: math.unit(6, "feet"),
  12477. weight: math.unit(150, "lb"),
  12478. name: "Front",
  12479. image: {
  12480. source: "./media/characters/ky'owin/front.svg",
  12481. extra: 3862/3053,
  12482. bottom: 74/3936
  12483. }
  12484. },
  12485. },
  12486. [
  12487. {
  12488. name: "Normal",
  12489. height: math.unit(6 + 8 / 12, "feet")
  12490. },
  12491. {
  12492. name: "Large",
  12493. height: math.unit(68, "feet")
  12494. },
  12495. {
  12496. name: "Macro",
  12497. height: math.unit(132, "feet")
  12498. },
  12499. {
  12500. name: "Macro+",
  12501. height: math.unit(340, "feet")
  12502. },
  12503. {
  12504. name: "Macro++",
  12505. height: math.unit(680, "feet"),
  12506. default: true
  12507. },
  12508. {
  12509. name: "Megamacro",
  12510. height: math.unit(1, "mile")
  12511. },
  12512. {
  12513. name: "Megamacro+",
  12514. height: math.unit(10, "miles")
  12515. },
  12516. ]
  12517. ))
  12518. characterMakers.push(() => makeCharacter(
  12519. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12520. {
  12521. front: {
  12522. height: math.unit(4, "feet"),
  12523. weight: math.unit(50, "lb"),
  12524. name: "Front",
  12525. image: {
  12526. source: "./media/characters/mal/front.svg",
  12527. extra: 785 / 724,
  12528. bottom: 0.07
  12529. }
  12530. },
  12531. },
  12532. [
  12533. {
  12534. name: "Micro",
  12535. height: math.unit(4, "inches")
  12536. },
  12537. {
  12538. name: "Normal",
  12539. height: math.unit(4, "feet"),
  12540. default: true
  12541. },
  12542. {
  12543. name: "Macro",
  12544. height: math.unit(200, "feet")
  12545. },
  12546. ]
  12547. ))
  12548. characterMakers.push(() => makeCharacter(
  12549. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12550. {
  12551. front: {
  12552. height: math.unit(6, "feet"),
  12553. weight: math.unit(150, "lb"),
  12554. name: "Front",
  12555. image: {
  12556. source: "./media/characters/jordan-deware/front.svg",
  12557. extra: 1191 / 1012
  12558. }
  12559. },
  12560. },
  12561. [
  12562. {
  12563. name: "Nano",
  12564. height: math.unit(0.01, "mm")
  12565. },
  12566. {
  12567. name: "Minimicro",
  12568. height: math.unit(1, "mm")
  12569. },
  12570. {
  12571. name: "Micro",
  12572. height: math.unit(0.5, "inches")
  12573. },
  12574. {
  12575. name: "Normal",
  12576. height: math.unit(4, "feet"),
  12577. default: true
  12578. },
  12579. {
  12580. name: "Minimacro",
  12581. height: math.unit(40, "meters")
  12582. },
  12583. {
  12584. name: "Small Macro",
  12585. height: math.unit(400, "meters")
  12586. },
  12587. {
  12588. name: "Macro",
  12589. height: math.unit(4, "miles")
  12590. },
  12591. {
  12592. name: "Megamacro",
  12593. height: math.unit(40, "miles")
  12594. },
  12595. {
  12596. name: "Megamacro+",
  12597. height: math.unit(400, "miles")
  12598. },
  12599. {
  12600. name: "Gigamacro",
  12601. height: math.unit(400000, "miles")
  12602. },
  12603. ]
  12604. ))
  12605. characterMakers.push(() => makeCharacter(
  12606. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12607. {
  12608. front: {
  12609. height: math.unit(15, "feet"),
  12610. weight: math.unit(3000, "kg"),
  12611. preyCapacity: math.unit(450, "people"),
  12612. name: "Front",
  12613. image: {
  12614. source: "./media/characters/kimiko/front.svg",
  12615. extra: 875/832,
  12616. bottom: 36/911
  12617. },
  12618. extraAttributes: {
  12619. "pawSize": {
  12620. name: "Paw Size",
  12621. power: 1,
  12622. type: "length",
  12623. base: math.unit(0.9, "meters")
  12624. },
  12625. }
  12626. },
  12627. side: {
  12628. height: math.unit(15, "feet"),
  12629. weight: math.unit(3000, "kg"),
  12630. preyCapacity: math.unit(400, "people"),
  12631. name: "Side",
  12632. image: {
  12633. source: "./media/characters/kimiko/side.svg",
  12634. extra: 448/270,
  12635. bottom: 7/455
  12636. },
  12637. extraAttributes: {
  12638. "pawSize": {
  12639. name: "Paw Size",
  12640. power: 1,
  12641. type: "length",
  12642. base: math.unit(0.9, "meters")
  12643. },
  12644. }
  12645. },
  12646. maw: {
  12647. height: math.unit(0.81, "feet"),
  12648. name: "Maw",
  12649. image: {
  12650. source: "./media/characters/kimiko/maw.svg"
  12651. }
  12652. },
  12653. },
  12654. [
  12655. {
  12656. name: "Normal",
  12657. height: math.unit(15, "feet"),
  12658. default: true
  12659. },
  12660. {
  12661. name: "Macro",
  12662. height: math.unit(220, "feet")
  12663. },
  12664. {
  12665. name: "Macro+",
  12666. height: math.unit(1450, "feet")
  12667. },
  12668. {
  12669. name: "Megamacro",
  12670. height: math.unit(11500, "feet")
  12671. },
  12672. {
  12673. name: "Gigamacro",
  12674. height: math.unit(9500, "miles")
  12675. },
  12676. {
  12677. name: "Teramacro",
  12678. height: math.unit(2208005005, "miles")
  12679. },
  12680. {
  12681. name: "Examacro",
  12682. height: math.unit(2750, "parsecs")
  12683. },
  12684. {
  12685. name: "Zettamacro",
  12686. height: math.unit(101500, "parsecs")
  12687. },
  12688. ]
  12689. ))
  12690. characterMakers.push(() => makeCharacter(
  12691. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12692. {
  12693. front: {
  12694. height: math.unit(6, "feet"),
  12695. weight: math.unit(70, "kg"),
  12696. name: "Front",
  12697. image: {
  12698. source: "./media/characters/andrew-sleepy/front.svg"
  12699. }
  12700. },
  12701. side: {
  12702. height: math.unit(6, "feet"),
  12703. weight: math.unit(70, "kg"),
  12704. name: "Side",
  12705. image: {
  12706. source: "./media/characters/andrew-sleepy/side.svg"
  12707. }
  12708. },
  12709. },
  12710. [
  12711. {
  12712. name: "Micro",
  12713. height: math.unit(1, "mm"),
  12714. default: true
  12715. },
  12716. ]
  12717. ))
  12718. characterMakers.push(() => makeCharacter(
  12719. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12720. {
  12721. front: {
  12722. height: math.unit(6, "feet"),
  12723. weight: math.unit(150, "lb"),
  12724. name: "Front",
  12725. image: {
  12726. source: "./media/characters/judio/front.svg",
  12727. extra: 1258 / 1110
  12728. }
  12729. },
  12730. },
  12731. [
  12732. {
  12733. name: "Normal",
  12734. height: math.unit(5 + 6 / 12, "feet")
  12735. },
  12736. {
  12737. name: "Macro",
  12738. height: math.unit(1000, "feet"),
  12739. default: true
  12740. },
  12741. {
  12742. name: "Megamacro",
  12743. height: math.unit(10, "miles")
  12744. },
  12745. ]
  12746. ))
  12747. characterMakers.push(() => makeCharacter(
  12748. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12749. {
  12750. frontDressed: {
  12751. height: math.unit(6, "feet"),
  12752. weight: math.unit(68, "kg"),
  12753. name: "Front (Dressed)",
  12754. image: {
  12755. source: "./media/characters/nomaxice/front-dressed.svg",
  12756. extra: 1137/824,
  12757. bottom: 74/1211
  12758. }
  12759. },
  12760. frontShorts: {
  12761. height: math.unit(6, "feet"),
  12762. weight: math.unit(68, "kg"),
  12763. name: "Front (Shorts)",
  12764. image: {
  12765. source: "./media/characters/nomaxice/front-shorts.svg",
  12766. extra: 1137/824,
  12767. bottom: 74/1211
  12768. }
  12769. },
  12770. back: {
  12771. height: math.unit(6, "feet"),
  12772. weight: math.unit(68, "kg"),
  12773. name: "Back",
  12774. image: {
  12775. source: "./media/characters/nomaxice/back.svg",
  12776. extra: 822/786,
  12777. bottom: 39/861
  12778. }
  12779. },
  12780. hand: {
  12781. height: math.unit(0.565, "feet"),
  12782. name: "Hand",
  12783. image: {
  12784. source: "./media/characters/nomaxice/hand.svg"
  12785. }
  12786. },
  12787. foot: {
  12788. height: math.unit(1, "feet"),
  12789. name: "Foot",
  12790. image: {
  12791. source: "./media/characters/nomaxice/foot.svg"
  12792. }
  12793. },
  12794. },
  12795. [
  12796. {
  12797. name: "Micro",
  12798. height: math.unit(8, "cm")
  12799. },
  12800. {
  12801. name: "Norm",
  12802. height: math.unit(1.82, "m")
  12803. },
  12804. {
  12805. name: "Norm+",
  12806. height: math.unit(8.8, "feet"),
  12807. default: true
  12808. },
  12809. {
  12810. name: "Big",
  12811. height: math.unit(8, "meters")
  12812. },
  12813. {
  12814. name: "Macro",
  12815. height: math.unit(18, "meters")
  12816. },
  12817. {
  12818. name: "Macro+",
  12819. height: math.unit(88, "meters")
  12820. },
  12821. ]
  12822. ))
  12823. characterMakers.push(() => makeCharacter(
  12824. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12825. {
  12826. front: {
  12827. height: math.unit(12, "feet"),
  12828. weight: math.unit(1.5, "tons"),
  12829. name: "Front",
  12830. image: {
  12831. source: "./media/characters/dydros/front.svg",
  12832. extra: 863 / 800,
  12833. bottom: 0.015
  12834. }
  12835. },
  12836. back: {
  12837. height: math.unit(12, "feet"),
  12838. weight: math.unit(1.5, "tons"),
  12839. name: "Back",
  12840. image: {
  12841. source: "./media/characters/dydros/back.svg",
  12842. extra: 900 / 843,
  12843. bottom: 0.005
  12844. }
  12845. },
  12846. },
  12847. [
  12848. {
  12849. name: "Normal",
  12850. height: math.unit(12, "feet"),
  12851. default: true
  12852. },
  12853. ]
  12854. ))
  12855. characterMakers.push(() => makeCharacter(
  12856. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12857. {
  12858. front: {
  12859. height: math.unit(6, "feet"),
  12860. weight: math.unit(100, "kg"),
  12861. name: "Front",
  12862. image: {
  12863. source: "./media/characters/riggi/front.svg",
  12864. extra: 5787 / 5303
  12865. }
  12866. },
  12867. hyper: {
  12868. height: math.unit(6 * 5 / 3, "feet"),
  12869. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12870. name: "Hyper",
  12871. image: {
  12872. source: "./media/characters/riggi/hyper.svg",
  12873. extra: 3595 / 3485
  12874. }
  12875. },
  12876. },
  12877. [
  12878. {
  12879. name: "Small Macro",
  12880. height: math.unit(50, "feet")
  12881. },
  12882. {
  12883. name: "Default",
  12884. height: math.unit(200, "feet"),
  12885. default: true
  12886. },
  12887. {
  12888. name: "Loom",
  12889. height: math.unit(10000, "feet")
  12890. },
  12891. {
  12892. name: "Cruising Altitude",
  12893. height: math.unit(30000, "feet")
  12894. },
  12895. {
  12896. name: "Megamacro",
  12897. height: math.unit(100, "miles")
  12898. },
  12899. {
  12900. name: "Continent Sized",
  12901. height: math.unit(2800, "miles")
  12902. },
  12903. {
  12904. name: "Earth Sized",
  12905. height: math.unit(8000, "miles")
  12906. },
  12907. ]
  12908. ))
  12909. characterMakers.push(() => makeCharacter(
  12910. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12911. {
  12912. front: {
  12913. height: math.unit(6, "feet"),
  12914. weight: math.unit(250, "lb"),
  12915. name: "Front",
  12916. image: {
  12917. source: "./media/characters/alexi/front.svg",
  12918. extra: 3483 / 3291,
  12919. bottom: 0.04
  12920. }
  12921. },
  12922. back: {
  12923. height: math.unit(6, "feet"),
  12924. weight: math.unit(250, "lb"),
  12925. name: "Back",
  12926. image: {
  12927. source: "./media/characters/alexi/back.svg",
  12928. extra: 3533 / 3356,
  12929. bottom: 0.021
  12930. }
  12931. },
  12932. frontTransforming: {
  12933. height: math.unit(8.58, "feet"),
  12934. weight: math.unit(1300, "lb"),
  12935. name: "Transforming",
  12936. image: {
  12937. source: "./media/characters/alexi/front-transforming.svg",
  12938. extra: 437 / 409,
  12939. bottom: 19 / 458.66
  12940. }
  12941. },
  12942. frontTransformed: {
  12943. height: math.unit(12.5, "feet"),
  12944. weight: math.unit(4000, "lb"),
  12945. name: "Transformed",
  12946. image: {
  12947. source: "./media/characters/alexi/front-transformed.svg",
  12948. extra: 639 / 614,
  12949. bottom: 30.55 / 671
  12950. }
  12951. },
  12952. },
  12953. [
  12954. {
  12955. name: "Normal",
  12956. height: math.unit(14, "feet"),
  12957. default: true
  12958. },
  12959. {
  12960. name: "Minimacro",
  12961. height: math.unit(30, "meters")
  12962. },
  12963. {
  12964. name: "Macro",
  12965. height: math.unit(500, "meters")
  12966. },
  12967. {
  12968. name: "Megamacro",
  12969. height: math.unit(9000, "km")
  12970. },
  12971. {
  12972. name: "Teramacro",
  12973. height: math.unit(384000, "km")
  12974. },
  12975. ]
  12976. ))
  12977. characterMakers.push(() => makeCharacter(
  12978. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12979. {
  12980. front: {
  12981. height: math.unit(6, "feet"),
  12982. weight: math.unit(150, "lb"),
  12983. name: "Front",
  12984. image: {
  12985. source: "./media/characters/kayroo/front.svg",
  12986. extra: 1153 / 1038,
  12987. bottom: 0.06
  12988. }
  12989. },
  12990. foot: {
  12991. height: math.unit(6, "feet"),
  12992. weight: math.unit(150, "lb"),
  12993. name: "Foot",
  12994. image: {
  12995. source: "./media/characters/kayroo/foot.svg"
  12996. }
  12997. },
  12998. },
  12999. [
  13000. {
  13001. name: "Normal",
  13002. height: math.unit(8, "feet"),
  13003. default: true
  13004. },
  13005. {
  13006. name: "Minimacro",
  13007. height: math.unit(250, "feet")
  13008. },
  13009. {
  13010. name: "Macro",
  13011. height: math.unit(2800, "feet")
  13012. },
  13013. {
  13014. name: "Megamacro",
  13015. height: math.unit(5200, "feet")
  13016. },
  13017. {
  13018. name: "Gigamacro",
  13019. height: math.unit(27000, "feet")
  13020. },
  13021. {
  13022. name: "Omega",
  13023. height: math.unit(45000, "feet")
  13024. },
  13025. ]
  13026. ))
  13027. characterMakers.push(() => makeCharacter(
  13028. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  13029. {
  13030. front: {
  13031. height: math.unit(18, "feet"),
  13032. weight: math.unit(5800, "lb"),
  13033. name: "Front",
  13034. image: {
  13035. source: "./media/characters/rhys/front.svg",
  13036. extra: 3386 / 3090,
  13037. bottom: 0.07
  13038. }
  13039. },
  13040. },
  13041. [
  13042. {
  13043. name: "Normal",
  13044. height: math.unit(18, "feet"),
  13045. default: true
  13046. },
  13047. {
  13048. name: "Working Size",
  13049. height: math.unit(200, "feet")
  13050. },
  13051. {
  13052. name: "Demolition Size",
  13053. height: math.unit(2000, "feet")
  13054. },
  13055. {
  13056. name: "Maximum Licensed Size",
  13057. height: math.unit(5, "miles")
  13058. },
  13059. {
  13060. name: "Maximum Observed Size",
  13061. height: math.unit(10, "yottameters")
  13062. },
  13063. ]
  13064. ))
  13065. characterMakers.push(() => makeCharacter(
  13066. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  13067. {
  13068. front: {
  13069. height: math.unit(6, "feet"),
  13070. weight: math.unit(250, "lb"),
  13071. name: "Front",
  13072. image: {
  13073. source: "./media/characters/toto/front.svg",
  13074. extra: 527 / 479,
  13075. bottom: 0.05
  13076. }
  13077. },
  13078. },
  13079. [
  13080. {
  13081. name: "Micro",
  13082. height: math.unit(3, "feet")
  13083. },
  13084. {
  13085. name: "Normal",
  13086. height: math.unit(10, "feet")
  13087. },
  13088. {
  13089. name: "Macro",
  13090. height: math.unit(150, "feet"),
  13091. default: true
  13092. },
  13093. {
  13094. name: "Megamacro",
  13095. height: math.unit(1200, "feet")
  13096. },
  13097. ]
  13098. ))
  13099. characterMakers.push(() => makeCharacter(
  13100. { name: "King", species: ["lion"], tags: ["anthro"] },
  13101. {
  13102. back: {
  13103. height: math.unit(6, "feet"),
  13104. weight: math.unit(150, "lb"),
  13105. name: "Back",
  13106. image: {
  13107. source: "./media/characters/king/back.svg"
  13108. }
  13109. },
  13110. },
  13111. [
  13112. {
  13113. name: "Micro",
  13114. height: math.unit(2, "inches")
  13115. },
  13116. {
  13117. name: "Normal",
  13118. height: math.unit(8, "feet")
  13119. },
  13120. {
  13121. name: "Macro",
  13122. height: math.unit(200, "feet"),
  13123. default: true
  13124. },
  13125. {
  13126. name: "Megamacro",
  13127. height: math.unit(50, "miles")
  13128. },
  13129. ]
  13130. ))
  13131. characterMakers.push(() => makeCharacter(
  13132. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  13133. {
  13134. front: {
  13135. height: math.unit(11, "feet"),
  13136. weight: math.unit(1400, "lb"),
  13137. name: "Front",
  13138. image: {
  13139. source: "./media/characters/cordite/front.svg",
  13140. extra: 1919/1827,
  13141. bottom: 40/1959
  13142. }
  13143. },
  13144. side: {
  13145. height: math.unit(11, "feet"),
  13146. weight: math.unit(1400, "lb"),
  13147. name: "Side",
  13148. image: {
  13149. source: "./media/characters/cordite/side.svg",
  13150. extra: 1908/1793,
  13151. bottom: 38/1946
  13152. }
  13153. },
  13154. back: {
  13155. height: math.unit(11, "feet"),
  13156. weight: math.unit(1400, "lb"),
  13157. name: "Back",
  13158. image: {
  13159. source: "./media/characters/cordite/back.svg",
  13160. extra: 1938/1837,
  13161. bottom: 10/1948
  13162. }
  13163. },
  13164. feral: {
  13165. height: math.unit(2, "feet"),
  13166. weight: math.unit(90, "lb"),
  13167. name: "Feral",
  13168. image: {
  13169. source: "./media/characters/cordite/feral.svg",
  13170. extra: 1260 / 755,
  13171. bottom: 0.05
  13172. }
  13173. },
  13174. },
  13175. [
  13176. {
  13177. name: "Normal",
  13178. height: math.unit(11, "feet"),
  13179. default: true
  13180. },
  13181. ]
  13182. ))
  13183. characterMakers.push(() => makeCharacter(
  13184. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  13185. {
  13186. front: {
  13187. height: math.unit(6, "feet"),
  13188. weight: math.unit(150, "lb"),
  13189. name: "Front",
  13190. image: {
  13191. source: "./media/characters/pianostrong/front.svg",
  13192. extra: 6577 / 6254,
  13193. bottom: 0.02
  13194. }
  13195. },
  13196. side: {
  13197. height: math.unit(6, "feet"),
  13198. weight: math.unit(150, "lb"),
  13199. name: "Side",
  13200. image: {
  13201. source: "./media/characters/pianostrong/side.svg",
  13202. extra: 6106 / 5730
  13203. }
  13204. },
  13205. back: {
  13206. height: math.unit(6, "feet"),
  13207. weight: math.unit(150, "lb"),
  13208. name: "Back",
  13209. image: {
  13210. source: "./media/characters/pianostrong/back.svg",
  13211. extra: 6085 / 5733,
  13212. bottom: 0.01
  13213. }
  13214. },
  13215. },
  13216. [
  13217. {
  13218. name: "Macro",
  13219. height: math.unit(100, "feet")
  13220. },
  13221. {
  13222. name: "Macro+",
  13223. height: math.unit(300, "feet"),
  13224. default: true
  13225. },
  13226. {
  13227. name: "Macro++",
  13228. height: math.unit(1000, "feet")
  13229. },
  13230. ]
  13231. ))
  13232. characterMakers.push(() => makeCharacter(
  13233. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13234. {
  13235. front: {
  13236. height: math.unit(6, "feet"),
  13237. weight: math.unit(150, "lb"),
  13238. name: "Front",
  13239. image: {
  13240. source: "./media/characters/kona/front.svg",
  13241. extra: 2960 / 2629,
  13242. bottom: 0.005
  13243. }
  13244. },
  13245. },
  13246. [
  13247. {
  13248. name: "Normal",
  13249. height: math.unit(11 + 8 / 12, "feet")
  13250. },
  13251. {
  13252. name: "Macro",
  13253. height: math.unit(850, "feet"),
  13254. default: true
  13255. },
  13256. {
  13257. name: "Macro+",
  13258. height: math.unit(1.5, "km"),
  13259. default: true
  13260. },
  13261. {
  13262. name: "Megamacro",
  13263. height: math.unit(80, "miles")
  13264. },
  13265. {
  13266. name: "Gigamacro",
  13267. height: math.unit(3500, "miles")
  13268. },
  13269. ]
  13270. ))
  13271. characterMakers.push(() => makeCharacter(
  13272. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13273. {
  13274. side: {
  13275. height: math.unit(1.9, "meters"),
  13276. weight: math.unit(326, "kg"),
  13277. name: "Side",
  13278. image: {
  13279. source: "./media/characters/levi/side.svg",
  13280. extra: 1704 / 1334,
  13281. bottom: 0.02
  13282. }
  13283. },
  13284. },
  13285. [
  13286. {
  13287. name: "Normal",
  13288. height: math.unit(1.9, "meters"),
  13289. default: true
  13290. },
  13291. {
  13292. name: "Macro",
  13293. height: math.unit(20, "meters")
  13294. },
  13295. {
  13296. name: "Macro+",
  13297. height: math.unit(200, "meters")
  13298. },
  13299. {
  13300. name: "Megamacro",
  13301. height: math.unit(2, "km")
  13302. },
  13303. {
  13304. name: "Megamacro+",
  13305. height: math.unit(20, "km")
  13306. },
  13307. {
  13308. name: "Gigamacro",
  13309. height: math.unit(2500, "km")
  13310. },
  13311. {
  13312. name: "Gigamacro+",
  13313. height: math.unit(120000, "km")
  13314. },
  13315. {
  13316. name: "Teramacro",
  13317. height: math.unit(7.77e6, "km")
  13318. },
  13319. ]
  13320. ))
  13321. characterMakers.push(() => makeCharacter(
  13322. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13323. {
  13324. front: {
  13325. height: math.unit(6 + 4/12, "feet"),
  13326. weight: math.unit(190, "lb"),
  13327. name: "Front",
  13328. image: {
  13329. source: "./media/characters/bmc/front.svg",
  13330. extra: 1626/1472,
  13331. bottom: 79/1705
  13332. }
  13333. },
  13334. back: {
  13335. height: math.unit(6 + 4/12, "feet"),
  13336. weight: math.unit(190, "lb"),
  13337. name: "Back",
  13338. image: {
  13339. source: "./media/characters/bmc/back.svg",
  13340. extra: 1640/1479,
  13341. bottom: 45/1685
  13342. }
  13343. },
  13344. frontArmor: {
  13345. height: math.unit(6 + 4/12, "feet"),
  13346. weight: math.unit(190, "lb"),
  13347. name: "Front (Armor)",
  13348. image: {
  13349. source: "./media/characters/bmc/front-armor.svg",
  13350. extra: 1538/1468,
  13351. bottom: 79/1617
  13352. }
  13353. },
  13354. },
  13355. [
  13356. {
  13357. name: "Human-sized",
  13358. height: math.unit(6 + 4 / 12, "feet")
  13359. },
  13360. {
  13361. name: "Interactive Size",
  13362. height: math.unit(25, "feet")
  13363. },
  13364. {
  13365. name: "Small",
  13366. height: math.unit(250, "feet")
  13367. },
  13368. {
  13369. name: "Normal",
  13370. height: math.unit(1250, "feet"),
  13371. default: true
  13372. },
  13373. {
  13374. name: "Good Day",
  13375. height: math.unit(88, "miles")
  13376. },
  13377. {
  13378. name: "Largest Measured Size",
  13379. height: math.unit(105.960, "galaxies")
  13380. },
  13381. ]
  13382. ))
  13383. characterMakers.push(() => makeCharacter(
  13384. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13385. {
  13386. front: {
  13387. height: math.unit(20, "feet"),
  13388. weight: math.unit(2016, "kg"),
  13389. name: "Front",
  13390. image: {
  13391. source: "./media/characters/sven-the-kaiju/front.svg",
  13392. extra: 1277/1250,
  13393. bottom: 35/1312
  13394. }
  13395. },
  13396. mouth: {
  13397. height: math.unit(1.85, "feet"),
  13398. name: "Mouth",
  13399. image: {
  13400. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13401. }
  13402. },
  13403. },
  13404. [
  13405. {
  13406. name: "Fairy",
  13407. height: math.unit(6, "inches")
  13408. },
  13409. {
  13410. name: "Normal",
  13411. height: math.unit(20, "feet"),
  13412. default: true
  13413. },
  13414. {
  13415. name: "Rampage",
  13416. height: math.unit(200, "feet")
  13417. },
  13418. {
  13419. name: "Archfey Forest Guardian",
  13420. height: math.unit(1, "mile")
  13421. },
  13422. ]
  13423. ))
  13424. characterMakers.push(() => makeCharacter(
  13425. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13426. {
  13427. front: {
  13428. height: math.unit(4, "meters"),
  13429. weight: math.unit(2, "tons"),
  13430. name: "Front",
  13431. image: {
  13432. source: "./media/characters/marik/front.svg",
  13433. extra: 1057 / 1003,
  13434. bottom: 0.08
  13435. }
  13436. },
  13437. },
  13438. [
  13439. {
  13440. name: "Normal",
  13441. height: math.unit(4, "meters"),
  13442. default: true
  13443. },
  13444. {
  13445. name: "Macro",
  13446. height: math.unit(20, "meters")
  13447. },
  13448. {
  13449. name: "Megamacro",
  13450. height: math.unit(50, "km")
  13451. },
  13452. {
  13453. name: "Gigamacro",
  13454. height: math.unit(100, "km")
  13455. },
  13456. {
  13457. name: "Alpha Macro",
  13458. height: math.unit(7.88e7, "yottameters")
  13459. },
  13460. ]
  13461. ))
  13462. characterMakers.push(() => makeCharacter(
  13463. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13464. {
  13465. front: {
  13466. height: math.unit(6, "feet"),
  13467. weight: math.unit(110, "lb"),
  13468. name: "Front",
  13469. image: {
  13470. source: "./media/characters/mel/front.svg",
  13471. extra: 736 / 617,
  13472. bottom: 0.017
  13473. }
  13474. },
  13475. },
  13476. [
  13477. {
  13478. name: "Pico",
  13479. height: math.unit(3, "pm")
  13480. },
  13481. {
  13482. name: "Nano",
  13483. height: math.unit(3, "nm")
  13484. },
  13485. {
  13486. name: "Micro",
  13487. height: math.unit(0.3, "mm"),
  13488. default: true
  13489. },
  13490. {
  13491. name: "Micro+",
  13492. height: math.unit(3, "mm")
  13493. },
  13494. {
  13495. name: "Normal",
  13496. height: math.unit(5 + 10.5 / 12, "feet")
  13497. },
  13498. ]
  13499. ))
  13500. characterMakers.push(() => makeCharacter(
  13501. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13502. {
  13503. kaiju: {
  13504. height: math.unit(1.75, "meters"),
  13505. weight: math.unit(55, "kg"),
  13506. name: "Kaiju",
  13507. image: {
  13508. source: "./media/characters/lykonous/kaiju.svg",
  13509. extra: 1055 / 946,
  13510. bottom: 0.135
  13511. }
  13512. },
  13513. },
  13514. [
  13515. {
  13516. name: "Normal",
  13517. height: math.unit(2.5, "meters"),
  13518. default: true
  13519. },
  13520. {
  13521. name: "Kaiju Dragon",
  13522. height: math.unit(60, "meters")
  13523. },
  13524. {
  13525. name: "Mega Kaiju",
  13526. height: math.unit(120, "km")
  13527. },
  13528. {
  13529. name: "Giga Kaiju",
  13530. height: math.unit(200, "megameters")
  13531. },
  13532. {
  13533. name: "Terra Kaiju",
  13534. height: math.unit(400, "gigameters")
  13535. },
  13536. {
  13537. name: "Kaiju Dragon God",
  13538. height: math.unit(13000, "exaparsecs")
  13539. },
  13540. ]
  13541. ))
  13542. characterMakers.push(() => makeCharacter(
  13543. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13544. {
  13545. front: {
  13546. height: math.unit(6, "feet"),
  13547. weight: math.unit(150, "lb"),
  13548. name: "Front",
  13549. image: {
  13550. source: "./media/characters/blü/front.svg",
  13551. extra: 1883 / 1564,
  13552. bottom: 0.031
  13553. }
  13554. },
  13555. },
  13556. [
  13557. {
  13558. name: "Normal",
  13559. height: math.unit(13, "feet"),
  13560. default: true
  13561. },
  13562. {
  13563. name: "Big Boi",
  13564. height: math.unit(150, "meters")
  13565. },
  13566. {
  13567. name: "Mini Stomper",
  13568. height: math.unit(300, "meters")
  13569. },
  13570. {
  13571. name: "Macro",
  13572. height: math.unit(1000, "meters")
  13573. },
  13574. {
  13575. name: "Megamacro",
  13576. height: math.unit(11000, "meters")
  13577. },
  13578. {
  13579. name: "Gigamacro",
  13580. height: math.unit(11000, "km")
  13581. },
  13582. {
  13583. name: "Teramacro",
  13584. height: math.unit(420000, "km")
  13585. },
  13586. {
  13587. name: "Examacro",
  13588. height: math.unit(120, "parsecs")
  13589. },
  13590. {
  13591. name: "God Tho",
  13592. height: math.unit(98000000000, "parsecs")
  13593. },
  13594. ]
  13595. ))
  13596. characterMakers.push(() => makeCharacter(
  13597. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13598. {
  13599. taurFront: {
  13600. height: math.unit(6, "feet"),
  13601. weight: math.unit(200, "lb"),
  13602. name: "Taur (Front)",
  13603. image: {
  13604. source: "./media/characters/scales/taur-front.svg",
  13605. extra: 1,
  13606. bottom: 0.05
  13607. }
  13608. },
  13609. taurBack: {
  13610. height: math.unit(6, "feet"),
  13611. weight: math.unit(200, "lb"),
  13612. name: "Taur (Back)",
  13613. image: {
  13614. source: "./media/characters/scales/taur-back.svg",
  13615. extra: 1,
  13616. bottom: 0.08
  13617. }
  13618. },
  13619. anthro: {
  13620. height: math.unit(6 * 7 / 12, "feet"),
  13621. weight: math.unit(100, "lb"),
  13622. name: "Anthro",
  13623. image: {
  13624. source: "./media/characters/scales/anthro.svg",
  13625. extra: 1,
  13626. bottom: 0.06
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Normal",
  13633. height: math.unit(12, "feet"),
  13634. default: true
  13635. },
  13636. ]
  13637. ))
  13638. characterMakers.push(() => makeCharacter(
  13639. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13640. {
  13641. front: {
  13642. height: math.unit(6, "feet"),
  13643. weight: math.unit(150, "lb"),
  13644. name: "Front",
  13645. image: {
  13646. source: "./media/characters/koragos/front.svg",
  13647. extra: 841 / 794,
  13648. bottom: 0.035
  13649. }
  13650. },
  13651. back: {
  13652. height: math.unit(6, "feet"),
  13653. weight: math.unit(150, "lb"),
  13654. name: "Back",
  13655. image: {
  13656. source: "./media/characters/koragos/back.svg",
  13657. extra: 841 / 810,
  13658. bottom: 0.022
  13659. }
  13660. },
  13661. },
  13662. [
  13663. {
  13664. name: "Normal",
  13665. height: math.unit(6 + 11 / 12, "feet"),
  13666. default: true
  13667. },
  13668. {
  13669. name: "Macro",
  13670. height: math.unit(490, "feet")
  13671. },
  13672. {
  13673. name: "Megamacro",
  13674. height: math.unit(10, "miles")
  13675. },
  13676. {
  13677. name: "Gigamacro",
  13678. height: math.unit(50, "miles")
  13679. },
  13680. ]
  13681. ))
  13682. characterMakers.push(() => makeCharacter(
  13683. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13684. {
  13685. front: {
  13686. height: math.unit(6, "feet"),
  13687. weight: math.unit(250, "lb"),
  13688. name: "Front",
  13689. image: {
  13690. source: "./media/characters/xylrem/front.svg",
  13691. extra: 3323 / 3050,
  13692. bottom: 0.065
  13693. }
  13694. },
  13695. },
  13696. [
  13697. {
  13698. name: "Micro",
  13699. height: math.unit(4, "feet")
  13700. },
  13701. {
  13702. name: "Normal",
  13703. height: math.unit(16, "feet"),
  13704. default: true
  13705. },
  13706. {
  13707. name: "Macro",
  13708. height: math.unit(2720, "feet")
  13709. },
  13710. {
  13711. name: "Megamacro",
  13712. height: math.unit(25000, "miles")
  13713. },
  13714. ]
  13715. ))
  13716. characterMakers.push(() => makeCharacter(
  13717. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13718. {
  13719. front: {
  13720. height: math.unit(8, "feet"),
  13721. weight: math.unit(250, "kg"),
  13722. name: "Front",
  13723. image: {
  13724. source: "./media/characters/ikideru/front.svg",
  13725. extra: 930 / 870,
  13726. bottom: 0.087
  13727. }
  13728. },
  13729. back: {
  13730. height: math.unit(8, "feet"),
  13731. weight: math.unit(250, "kg"),
  13732. name: "Back",
  13733. image: {
  13734. source: "./media/characters/ikideru/back.svg",
  13735. extra: 919 / 852,
  13736. bottom: 0.055
  13737. }
  13738. },
  13739. },
  13740. [
  13741. {
  13742. name: "Rare",
  13743. height: math.unit(8, "feet"),
  13744. default: true
  13745. },
  13746. {
  13747. name: "Playful Loom",
  13748. height: math.unit(80, "feet")
  13749. },
  13750. {
  13751. name: "City Leaner",
  13752. height: math.unit(230, "feet")
  13753. },
  13754. {
  13755. name: "Megamacro",
  13756. height: math.unit(2500, "feet")
  13757. },
  13758. {
  13759. name: "Gigamacro",
  13760. height: math.unit(26400, "feet")
  13761. },
  13762. {
  13763. name: "Tectonic Shifter",
  13764. height: math.unit(1.7, "megameters")
  13765. },
  13766. {
  13767. name: "Planet Carer",
  13768. height: math.unit(21, "megameters")
  13769. },
  13770. {
  13771. name: "God",
  13772. height: math.unit(11157.22, "parsecs")
  13773. },
  13774. ]
  13775. ))
  13776. characterMakers.push(() => makeCharacter(
  13777. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13778. {
  13779. front: {
  13780. height: math.unit(6, "feet"),
  13781. weight: math.unit(120, "lb"),
  13782. name: "Front",
  13783. image: {
  13784. source: "./media/characters/neo/front.svg"
  13785. }
  13786. },
  13787. },
  13788. [
  13789. {
  13790. name: "Micro",
  13791. height: math.unit(2, "inches"),
  13792. default: true
  13793. },
  13794. {
  13795. name: "Human Size",
  13796. height: math.unit(5 + 8 / 12, "feet")
  13797. },
  13798. ]
  13799. ))
  13800. characterMakers.push(() => makeCharacter(
  13801. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13802. {
  13803. front: {
  13804. height: math.unit(13 + 10 / 12, "feet"),
  13805. weight: math.unit(5320, "lb"),
  13806. name: "Front",
  13807. image: {
  13808. source: "./media/characters/chauncey-chantz/front.svg",
  13809. extra: 1587 / 1435,
  13810. bottom: 0.02
  13811. }
  13812. },
  13813. },
  13814. [
  13815. {
  13816. name: "Normal",
  13817. height: math.unit(13 + 10 / 12, "feet"),
  13818. default: true
  13819. },
  13820. {
  13821. name: "Macro",
  13822. height: math.unit(45, "feet")
  13823. },
  13824. {
  13825. name: "Megamacro",
  13826. height: math.unit(250, "miles")
  13827. },
  13828. {
  13829. name: "Planetary",
  13830. height: math.unit(10000, "miles")
  13831. },
  13832. {
  13833. name: "Galactic",
  13834. height: math.unit(40000, "parsecs")
  13835. },
  13836. {
  13837. name: "Universal",
  13838. height: math.unit(1, "yottameter")
  13839. },
  13840. ]
  13841. ))
  13842. characterMakers.push(() => makeCharacter(
  13843. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13844. {
  13845. front: {
  13846. height: math.unit(6, "feet"),
  13847. weight: math.unit(150, "lb"),
  13848. name: "Front",
  13849. image: {
  13850. source: "./media/characters/epifox/front.svg",
  13851. extra: 1,
  13852. bottom: 0.075
  13853. }
  13854. },
  13855. },
  13856. [
  13857. {
  13858. name: "Micro",
  13859. height: math.unit(6, "inches")
  13860. },
  13861. {
  13862. name: "Normal",
  13863. height: math.unit(12, "feet"),
  13864. default: true
  13865. },
  13866. {
  13867. name: "Macro",
  13868. height: math.unit(3810, "feet")
  13869. },
  13870. {
  13871. name: "Megamacro",
  13872. height: math.unit(500, "miles")
  13873. },
  13874. ]
  13875. ))
  13876. characterMakers.push(() => makeCharacter(
  13877. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13878. {
  13879. front: {
  13880. height: math.unit(1.8796, "m"),
  13881. weight: math.unit(230, "lb"),
  13882. name: "Front",
  13883. image: {
  13884. source: "./media/characters/colin-t/front.svg",
  13885. extra: 1272 / 1193,
  13886. bottom: 0.07
  13887. }
  13888. },
  13889. },
  13890. [
  13891. {
  13892. name: "Micro",
  13893. height: math.unit(0.571, "meters")
  13894. },
  13895. {
  13896. name: "Normal",
  13897. height: math.unit(1.8796, "meters"),
  13898. default: true
  13899. },
  13900. {
  13901. name: "Tall",
  13902. height: math.unit(4, "meters")
  13903. },
  13904. {
  13905. name: "Macro",
  13906. height: math.unit(67.241, "meters")
  13907. },
  13908. {
  13909. name: "Megamacro",
  13910. height: math.unit(371.856, "meters")
  13911. },
  13912. {
  13913. name: "Planetary",
  13914. height: math.unit(12631.5689, "km")
  13915. },
  13916. ]
  13917. ))
  13918. characterMakers.push(() => makeCharacter(
  13919. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13920. {
  13921. front: {
  13922. height: math.unit(1.85, "meters"),
  13923. weight: math.unit(80, "kg"),
  13924. name: "Front",
  13925. image: {
  13926. source: "./media/characters/matvei/front.svg",
  13927. extra: 456/447,
  13928. bottom: 8/464
  13929. }
  13930. },
  13931. back: {
  13932. height: math.unit(1.85, "meters"),
  13933. weight: math.unit(80, "kg"),
  13934. name: "Back",
  13935. image: {
  13936. source: "./media/characters/matvei/back.svg",
  13937. extra: 434/427,
  13938. bottom: 11/445
  13939. }
  13940. },
  13941. },
  13942. [
  13943. {
  13944. name: "Normal",
  13945. height: math.unit(1.85, "meters"),
  13946. default: true
  13947. },
  13948. ]
  13949. ))
  13950. characterMakers.push(() => makeCharacter(
  13951. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13952. {
  13953. front: {
  13954. height: math.unit(5 + 9 / 12, "feet"),
  13955. weight: math.unit(70, "lb"),
  13956. name: "Front",
  13957. image: {
  13958. source: "./media/characters/quincy/front.svg",
  13959. extra: 3041 / 2751
  13960. }
  13961. },
  13962. back: {
  13963. height: math.unit(5 + 9 / 12, "feet"),
  13964. weight: math.unit(70, "lb"),
  13965. name: "Back",
  13966. image: {
  13967. source: "./media/characters/quincy/back.svg",
  13968. extra: 3041 / 2751
  13969. }
  13970. },
  13971. flying: {
  13972. height: math.unit(5 + 4 / 12, "feet"),
  13973. weight: math.unit(70, "lb"),
  13974. name: "Flying",
  13975. image: {
  13976. source: "./media/characters/quincy/flying.svg",
  13977. extra: 1044 / 930
  13978. }
  13979. },
  13980. },
  13981. [
  13982. {
  13983. name: "Micro",
  13984. height: math.unit(3, "cm")
  13985. },
  13986. {
  13987. name: "Normal",
  13988. height: math.unit(5 + 9 / 12, "feet")
  13989. },
  13990. {
  13991. name: "Macro",
  13992. height: math.unit(200, "meters"),
  13993. default: true
  13994. },
  13995. {
  13996. name: "Megamacro",
  13997. height: math.unit(1000, "meters")
  13998. },
  13999. ]
  14000. ))
  14001. characterMakers.push(() => makeCharacter(
  14002. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  14003. {
  14004. front: {
  14005. height: math.unit(3 + 11/12, "feet"),
  14006. weight: math.unit(50, "lb"),
  14007. name: "Front",
  14008. image: {
  14009. source: "./media/characters/vanrel/front.svg",
  14010. extra: 1104/949,
  14011. bottom: 52/1156
  14012. }
  14013. },
  14014. back: {
  14015. height: math.unit(3 + 11/12, "feet"),
  14016. weight: math.unit(50, "lb"),
  14017. name: "Back",
  14018. image: {
  14019. source: "./media/characters/vanrel/back.svg",
  14020. extra: 1119/976,
  14021. bottom: 37/1156
  14022. }
  14023. },
  14024. tome: {
  14025. height: math.unit(1.35, "feet"),
  14026. weight: math.unit(10, "lb"),
  14027. name: "Vanrel's Tome",
  14028. rename: true,
  14029. image: {
  14030. source: "./media/characters/vanrel/tome.svg"
  14031. }
  14032. },
  14033. beans: {
  14034. height: math.unit(0.89, "feet"),
  14035. name: "Beans",
  14036. image: {
  14037. source: "./media/characters/vanrel/beans.svg"
  14038. }
  14039. },
  14040. },
  14041. [
  14042. {
  14043. name: "Normal",
  14044. height: math.unit(3 + 11/12, "feet"),
  14045. default: true
  14046. },
  14047. ]
  14048. ))
  14049. characterMakers.push(() => makeCharacter(
  14050. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  14051. {
  14052. front: {
  14053. height: math.unit(7 + 5 / 12, "feet"),
  14054. name: "Front",
  14055. image: {
  14056. source: "./media/characters/kuiper-vanrel/front.svg",
  14057. extra: 1219/1169,
  14058. bottom: 69/1288
  14059. }
  14060. },
  14061. back: {
  14062. height: math.unit(7 + 5 / 12, "feet"),
  14063. name: "Back",
  14064. image: {
  14065. source: "./media/characters/kuiper-vanrel/back.svg",
  14066. extra: 1236/1193,
  14067. bottom: 27/1263
  14068. }
  14069. },
  14070. foot: {
  14071. height: math.unit(0.55, "meters"),
  14072. name: "Foot",
  14073. image: {
  14074. source: "./media/characters/kuiper-vanrel/foot.svg",
  14075. }
  14076. },
  14077. battle: {
  14078. height: math.unit(6.824, "feet"),
  14079. name: "Battle",
  14080. image: {
  14081. source: "./media/characters/kuiper-vanrel/battle.svg",
  14082. extra: 1466 / 1327,
  14083. bottom: 29 / 1492.5
  14084. }
  14085. },
  14086. meerkui: {
  14087. height: math.unit(18, "inches"),
  14088. name: "Meerkui",
  14089. image: {
  14090. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  14091. extra: 1354/1289,
  14092. bottom: 69/1423
  14093. }
  14094. },
  14095. },
  14096. [
  14097. {
  14098. name: "Normal",
  14099. height: math.unit(7 + 5 / 12, "feet"),
  14100. default: true
  14101. },
  14102. ]
  14103. ))
  14104. characterMakers.push(() => makeCharacter(
  14105. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  14106. {
  14107. front: {
  14108. height: math.unit(8 + 5 / 12, "feet"),
  14109. name: "Front",
  14110. image: {
  14111. source: "./media/characters/keset-vanrel/front.svg",
  14112. extra: 1231/1148,
  14113. bottom: 82/1313
  14114. }
  14115. },
  14116. back: {
  14117. height: math.unit(8 + 5 / 12, "feet"),
  14118. name: "Back",
  14119. image: {
  14120. source: "./media/characters/keset-vanrel/back.svg",
  14121. extra: 1240/1174,
  14122. bottom: 33/1273
  14123. }
  14124. },
  14125. hand: {
  14126. height: math.unit(0.6, "meters"),
  14127. name: "Hand",
  14128. image: {
  14129. source: "./media/characters/keset-vanrel/hand.svg"
  14130. }
  14131. },
  14132. foot: {
  14133. height: math.unit(0.94978, "meters"),
  14134. name: "Foot",
  14135. image: {
  14136. source: "./media/characters/keset-vanrel/foot.svg"
  14137. }
  14138. },
  14139. battle: {
  14140. height: math.unit(7.408, "feet"),
  14141. name: "Battle",
  14142. image: {
  14143. source: "./media/characters/keset-vanrel/battle.svg",
  14144. extra: 1890 / 1386,
  14145. bottom: 73.28 / 1970
  14146. }
  14147. },
  14148. },
  14149. [
  14150. {
  14151. name: "Normal",
  14152. height: math.unit(8 + 5 / 12, "feet"),
  14153. default: true
  14154. },
  14155. ]
  14156. ))
  14157. characterMakers.push(() => makeCharacter(
  14158. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  14159. {
  14160. front: {
  14161. height: math.unit(6, "feet"),
  14162. weight: math.unit(150, "lb"),
  14163. name: "Front",
  14164. image: {
  14165. source: "./media/characters/neos/front.svg",
  14166. extra: 1696 / 992,
  14167. bottom: 0.14
  14168. }
  14169. },
  14170. },
  14171. [
  14172. {
  14173. name: "Normal",
  14174. height: math.unit(54, "cm"),
  14175. default: true
  14176. },
  14177. {
  14178. name: "Macro",
  14179. height: math.unit(100, "m")
  14180. },
  14181. {
  14182. name: "Megamacro",
  14183. height: math.unit(10, "km")
  14184. },
  14185. {
  14186. name: "Megamacro+",
  14187. height: math.unit(100, "km")
  14188. },
  14189. {
  14190. name: "Gigamacro",
  14191. height: math.unit(100, "Mm")
  14192. },
  14193. {
  14194. name: "Teramacro",
  14195. height: math.unit(100, "Gm")
  14196. },
  14197. {
  14198. name: "Examacro",
  14199. height: math.unit(100, "Em")
  14200. },
  14201. {
  14202. name: "Godly",
  14203. height: math.unit(10000, "Ym")
  14204. },
  14205. {
  14206. name: "Beyond Godly",
  14207. height: math.unit(25, "multiverses")
  14208. },
  14209. ]
  14210. ))
  14211. characterMakers.push(() => makeCharacter(
  14212. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  14213. {
  14214. fluide_tame: {
  14215. height: math.unit(5, "feet"),
  14216. name: "Tame",
  14217. image: {
  14218. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14219. extra: 1655/1574,
  14220. bottom: 231/1886
  14221. },
  14222. form: "fluide",
  14223. default: true
  14224. },
  14225. fluide_nude: {
  14226. height: math.unit(5, "feet"),
  14227. name: "Nude",
  14228. image: {
  14229. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14230. extra: 1655/1574,
  14231. bottom: 231/1886
  14232. },
  14233. form: "fluide",
  14234. },
  14235. male_tame: {
  14236. height: math.unit(5, "feet"),
  14237. name: "Tame",
  14238. image: {
  14239. source: "./media/characters/sammy-mouse/male-tame.svg",
  14240. extra: 1655/1574,
  14241. bottom: 231/1886
  14242. },
  14243. form: "male",
  14244. default: true
  14245. },
  14246. male_nude: {
  14247. height: math.unit(5, "feet"),
  14248. name: "Nude",
  14249. image: {
  14250. source: "./media/characters/sammy-mouse/male-nude.svg",
  14251. extra: 1655/1574,
  14252. bottom: 231/1886
  14253. },
  14254. form: "male",
  14255. },
  14256. female_nude: {
  14257. height: math.unit(5, "feet"),
  14258. name: "Nude",
  14259. image: {
  14260. source: "./media/characters/sammy-mouse/female-nude.svg",
  14261. extra: 1655/1574,
  14262. bottom: 231/1886
  14263. },
  14264. form: "female",
  14265. default: true
  14266. },
  14267. mouth: {
  14268. height: math.unit(0.32, "feet"),
  14269. name: "Mouth",
  14270. image: {
  14271. source: "./media/characters/sammy-mouse/mouth.svg"
  14272. },
  14273. allForms: true
  14274. },
  14275. paw: {
  14276. height: math.unit(0.42, "feet"),
  14277. name: "Paw",
  14278. image: {
  14279. source: "./media/characters/sammy-mouse/paw.svg"
  14280. },
  14281. allForms: true
  14282. },
  14283. },
  14284. [
  14285. {
  14286. name: "Micro",
  14287. height: math.unit(5, "inches"),
  14288. allForms: true
  14289. },
  14290. {
  14291. name: "Normal",
  14292. height: math.unit(5, "feet"),
  14293. default: true,
  14294. allForms: true
  14295. },
  14296. {
  14297. name: "Macro",
  14298. height: math.unit(60, "feet"),
  14299. allForms: true
  14300. },
  14301. ],
  14302. {
  14303. "fluide": {
  14304. name: "Fluide",
  14305. default: true
  14306. },
  14307. "male": {
  14308. name: "Male",
  14309. },
  14310. "female": {
  14311. name: "Female",
  14312. },
  14313. }
  14314. ))
  14315. characterMakers.push(() => makeCharacter(
  14316. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14317. {
  14318. front: {
  14319. height: math.unit(4, "feet"),
  14320. weight: math.unit(50, "lb"),
  14321. name: "Front",
  14322. image: {
  14323. source: "./media/characters/kole/front.svg",
  14324. extra: 1423 / 1303,
  14325. bottom: 0.025
  14326. }
  14327. },
  14328. back: {
  14329. height: math.unit(4, "feet"),
  14330. weight: math.unit(50, "lb"),
  14331. name: "Back",
  14332. image: {
  14333. source: "./media/characters/kole/back.svg",
  14334. extra: 1426 / 1280,
  14335. bottom: 0.02
  14336. }
  14337. },
  14338. },
  14339. [
  14340. {
  14341. name: "Normal",
  14342. height: math.unit(4, "feet"),
  14343. default: true
  14344. },
  14345. ]
  14346. ))
  14347. characterMakers.push(() => makeCharacter(
  14348. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14349. {
  14350. front: {
  14351. height: math.unit(2.5, "feet"),
  14352. weight: math.unit(32, "lb"),
  14353. name: "Front",
  14354. image: {
  14355. source: "./media/characters/rufran/front.svg",
  14356. extra: 1313/885,
  14357. bottom: 94/1407
  14358. }
  14359. },
  14360. side: {
  14361. height: math.unit(2.5, "feet"),
  14362. weight: math.unit(32, "lb"),
  14363. name: "Side",
  14364. image: {
  14365. source: "./media/characters/rufran/side.svg",
  14366. extra: 1109/852,
  14367. bottom: 118/1227
  14368. }
  14369. },
  14370. back: {
  14371. height: math.unit(2.5, "feet"),
  14372. weight: math.unit(32, "lb"),
  14373. name: "Back",
  14374. image: {
  14375. source: "./media/characters/rufran/back.svg",
  14376. extra: 1280/878,
  14377. bottom: 131/1411
  14378. }
  14379. },
  14380. mouth: {
  14381. height: math.unit(1.13, "feet"),
  14382. name: "Mouth",
  14383. image: {
  14384. source: "./media/characters/rufran/mouth.svg"
  14385. }
  14386. },
  14387. foot: {
  14388. height: math.unit(1.33, "feet"),
  14389. name: "Foot",
  14390. image: {
  14391. source: "./media/characters/rufran/foot.svg"
  14392. }
  14393. },
  14394. koboldFront: {
  14395. height: math.unit(2 + 6 / 12, "feet"),
  14396. weight: math.unit(20, "lb"),
  14397. name: "Front (Kobold)",
  14398. image: {
  14399. source: "./media/characters/rufran/kobold-front.svg",
  14400. extra: 2041 / 1839,
  14401. bottom: 0.055
  14402. }
  14403. },
  14404. koboldBack: {
  14405. height: math.unit(2 + 6 / 12, "feet"),
  14406. weight: math.unit(20, "lb"),
  14407. name: "Back (Kobold)",
  14408. image: {
  14409. source: "./media/characters/rufran/kobold-back.svg",
  14410. extra: 2054 / 1839,
  14411. bottom: 0.01
  14412. }
  14413. },
  14414. koboldHand: {
  14415. height: math.unit(0.2166, "meters"),
  14416. name: "Hand (Kobold)",
  14417. image: {
  14418. source: "./media/characters/rufran/kobold-hand.svg"
  14419. }
  14420. },
  14421. koboldFoot: {
  14422. height: math.unit(0.185, "meters"),
  14423. name: "Foot (Kobold)",
  14424. image: {
  14425. source: "./media/characters/rufran/kobold-foot.svg"
  14426. }
  14427. },
  14428. },
  14429. [
  14430. {
  14431. name: "Micro",
  14432. height: math.unit(1, "inch")
  14433. },
  14434. {
  14435. name: "Normal",
  14436. height: math.unit(2 + 6 / 12, "feet"),
  14437. default: true
  14438. },
  14439. {
  14440. name: "Big",
  14441. height: math.unit(60, "feet")
  14442. },
  14443. {
  14444. name: "Macro",
  14445. height: math.unit(325, "feet")
  14446. },
  14447. ]
  14448. ))
  14449. characterMakers.push(() => makeCharacter(
  14450. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14451. {
  14452. front: {
  14453. height: math.unit(0.3, "meters"),
  14454. weight: math.unit(3.5, "kg"),
  14455. name: "Front",
  14456. image: {
  14457. source: "./media/characters/chip/front.svg",
  14458. extra: 748 / 674
  14459. }
  14460. },
  14461. },
  14462. [
  14463. {
  14464. name: "Micro",
  14465. height: math.unit(1, "inch"),
  14466. default: true
  14467. },
  14468. ]
  14469. ))
  14470. characterMakers.push(() => makeCharacter(
  14471. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14472. {
  14473. side: {
  14474. height: math.unit(2.3, "meters"),
  14475. weight: math.unit(3500, "lb"),
  14476. name: "Side",
  14477. image: {
  14478. source: "./media/characters/torvid/side.svg",
  14479. extra: 1972 / 722,
  14480. bottom: 0.035
  14481. }
  14482. },
  14483. },
  14484. [
  14485. {
  14486. name: "Normal",
  14487. height: math.unit(2.3, "meters"),
  14488. default: true
  14489. },
  14490. ]
  14491. ))
  14492. characterMakers.push(() => makeCharacter(
  14493. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14494. {
  14495. front: {
  14496. height: math.unit(2, "meters"),
  14497. weight: math.unit(150.5, "kg"),
  14498. name: "Front",
  14499. image: {
  14500. source: "./media/characters/susan/front.svg",
  14501. extra: 693 / 635,
  14502. bottom: 0.05
  14503. }
  14504. },
  14505. },
  14506. [
  14507. {
  14508. name: "Megamacro",
  14509. height: math.unit(505, "miles"),
  14510. default: true
  14511. },
  14512. ]
  14513. ))
  14514. characterMakers.push(() => makeCharacter(
  14515. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14516. {
  14517. front: {
  14518. height: math.unit(6, "feet"),
  14519. weight: math.unit(150, "lb"),
  14520. name: "Front",
  14521. image: {
  14522. source: "./media/characters/raindrops/front.svg",
  14523. extra: 2655 / 2461,
  14524. bottom: 49 / 2705
  14525. }
  14526. },
  14527. back: {
  14528. height: math.unit(6, "feet"),
  14529. weight: math.unit(150, "lb"),
  14530. name: "Back",
  14531. image: {
  14532. source: "./media/characters/raindrops/back.svg",
  14533. extra: 2574 / 2400,
  14534. bottom: 65 / 2634
  14535. }
  14536. },
  14537. },
  14538. [
  14539. {
  14540. name: "Micro",
  14541. height: math.unit(6, "inches")
  14542. },
  14543. {
  14544. name: "Normal",
  14545. height: math.unit(6 + 2 / 12, "feet")
  14546. },
  14547. {
  14548. name: "Macro",
  14549. height: math.unit(131, "feet"),
  14550. default: true
  14551. },
  14552. {
  14553. name: "Megamacro",
  14554. height: math.unit(15, "miles")
  14555. },
  14556. {
  14557. name: "Gigamacro",
  14558. height: math.unit(4000, "miles")
  14559. },
  14560. {
  14561. name: "Teramacro",
  14562. height: math.unit(315000, "miles")
  14563. },
  14564. ]
  14565. ))
  14566. characterMakers.push(() => makeCharacter(
  14567. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14568. {
  14569. normal_front: {
  14570. height: math.unit(9 + 2/12, "feet"),
  14571. weight: math.unit(325, "kg"),
  14572. name: "Front",
  14573. image: {
  14574. source: "./media/characters/tezwa/normal-front.svg",
  14575. extra: 770/714,
  14576. bottom: 32/802
  14577. },
  14578. form: "normal",
  14579. },
  14580. normal_paw: {
  14581. height: math.unit(2.2, "feet"),
  14582. name: "Paw",
  14583. image: {
  14584. source: "./media/characters/tezwa/paw.svg"
  14585. },
  14586. form: "normal",
  14587. },
  14588. muscled_front: {
  14589. height: math.unit(916 + 8/12, "feet"),
  14590. weight: math.unit(500000, "tons"),
  14591. name: "Front",
  14592. image: {
  14593. source: "./media/characters/tezwa/muscled-front.svg",
  14594. extra: 1840/1697,
  14595. bottom: 29/1869
  14596. },
  14597. form: "muscled",
  14598. },
  14599. muscled_paw: {
  14600. height: math.unit(200, "feet"),
  14601. name: "Paw",
  14602. image: {
  14603. source: "./media/characters/tezwa/paw.svg"
  14604. },
  14605. form: "muscled",
  14606. },
  14607. },
  14608. [
  14609. {
  14610. name: "Normal",
  14611. height: math.unit(9 + 2 / 12, "feet"),
  14612. default: true,
  14613. form: "normal"
  14614. },
  14615. {
  14616. name: "Normal",
  14617. height: math.unit(916 + 8/12, "feet"),
  14618. default: true,
  14619. form: "muscled"
  14620. },
  14621. ],
  14622. {
  14623. "normal": {
  14624. name: "Normal",
  14625. default: true
  14626. },
  14627. "muscled": {
  14628. name: "Muscled",
  14629. },
  14630. }
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14634. {
  14635. front: {
  14636. height: math.unit(58, "feet"),
  14637. weight: math.unit(89000, "lb"),
  14638. name: "Front",
  14639. image: {
  14640. source: "./media/characters/typhus/front.svg",
  14641. extra: 816 / 800,
  14642. bottom: 0.065
  14643. }
  14644. },
  14645. },
  14646. [
  14647. {
  14648. name: "Macro",
  14649. height: math.unit(58, "feet"),
  14650. default: true
  14651. },
  14652. ]
  14653. ))
  14654. characterMakers.push(() => makeCharacter(
  14655. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14656. {
  14657. front: {
  14658. height: math.unit(12, "feet"),
  14659. weight: math.unit(6, "tonnes"),
  14660. name: "Front",
  14661. image: {
  14662. source: "./media/characters/lyra-von-wulf/front.svg",
  14663. extra: 1,
  14664. bottom: 0.10
  14665. }
  14666. },
  14667. frontMecha: {
  14668. height: math.unit(12, "feet"),
  14669. weight: math.unit(12, "tonnes"),
  14670. name: "Front (Mecha)",
  14671. image: {
  14672. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14673. extra: 1,
  14674. bottom: 0.042
  14675. }
  14676. },
  14677. maw: {
  14678. height: math.unit(2.2, "feet"),
  14679. name: "Maw",
  14680. image: {
  14681. source: "./media/characters/lyra-von-wulf/maw.svg"
  14682. }
  14683. },
  14684. },
  14685. [
  14686. {
  14687. name: "Normal",
  14688. height: math.unit(12, "feet"),
  14689. default: true
  14690. },
  14691. {
  14692. name: "Classic",
  14693. height: math.unit(50, "feet")
  14694. },
  14695. {
  14696. name: "Macro",
  14697. height: math.unit(500, "feet")
  14698. },
  14699. {
  14700. name: "Megamacro",
  14701. height: math.unit(1, "mile")
  14702. },
  14703. {
  14704. name: "Gigamacro",
  14705. height: math.unit(400, "miles")
  14706. },
  14707. {
  14708. name: "Teramacro",
  14709. height: math.unit(22000, "miles")
  14710. },
  14711. {
  14712. name: "Solarmacro",
  14713. height: math.unit(8600000, "miles")
  14714. },
  14715. {
  14716. name: "Galactic",
  14717. height: math.unit(1057000, "lightyears")
  14718. },
  14719. ]
  14720. ))
  14721. characterMakers.push(() => makeCharacter(
  14722. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14723. {
  14724. front: {
  14725. height: math.unit(6 + 10 / 12, "feet"),
  14726. weight: math.unit(150, "lb"),
  14727. name: "Front",
  14728. image: {
  14729. source: "./media/characters/dixon/front.svg",
  14730. extra: 3361 / 3209,
  14731. bottom: 0.01
  14732. }
  14733. },
  14734. },
  14735. [
  14736. {
  14737. name: "Normal",
  14738. height: math.unit(6 + 10 / 12, "feet"),
  14739. default: true
  14740. },
  14741. {
  14742. name: "Big",
  14743. height: math.unit(12, "meters")
  14744. },
  14745. {
  14746. name: "Macro",
  14747. height: math.unit(500, "meters")
  14748. },
  14749. {
  14750. name: "Megamacro",
  14751. height: math.unit(2, "km")
  14752. },
  14753. ]
  14754. ))
  14755. characterMakers.push(() => makeCharacter(
  14756. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14757. {
  14758. kingCheetah_front: {
  14759. height: math.unit(1.85, "meters"),
  14760. weight: math.unit(68, "kg"),
  14761. name: "Front",
  14762. image: {
  14763. source: "./media/characters/kauko/king-cheetah-front.svg",
  14764. extra: 1007/972,
  14765. bottom: 35/1042
  14766. },
  14767. form: "king-cheetah",
  14768. default: true
  14769. },
  14770. kingCheetah_back: {
  14771. height: math.unit(1.85, "meters"),
  14772. weight: math.unit(68, "kg"),
  14773. name: "Back",
  14774. image: {
  14775. source: "./media/characters/kauko/king-cheetah-back.svg",
  14776. extra: 1015/980,
  14777. bottom: 11/1026
  14778. },
  14779. form: "king-cheetah",
  14780. },
  14781. kingCheetah_hand: {
  14782. height: math.unit(0.23, "meters"),
  14783. name: "Hand",
  14784. image: {
  14785. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14786. },
  14787. form: "king-cheetah",
  14788. },
  14789. kingCheetah_paw: {
  14790. height: math.unit(0.38, "meters"),
  14791. name: "Paw",
  14792. image: {
  14793. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14794. },
  14795. form: "king-cheetah",
  14796. },
  14797. kingCheetah_nape: {
  14798. height: math.unit(0.23, "meters"),
  14799. name: "Nape",
  14800. image: {
  14801. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14802. },
  14803. form: "king-cheetah",
  14804. },
  14805. wolf_front: {
  14806. height: math.unit(1.88, "meters"),
  14807. weight: math.unit(74, "kg"),
  14808. name: "Front",
  14809. image: {
  14810. source: "./media/characters/kauko/wolf-front.svg",
  14811. extra: 952/908,
  14812. bottom: 64/1016
  14813. },
  14814. form: "wolf",
  14815. default: true
  14816. },
  14817. wolf_dressed: {
  14818. height: math.unit(1.88, "meters"),
  14819. weight: math.unit(74, "kg"),
  14820. name: "Dressed",
  14821. image: {
  14822. source: "./media/characters/kauko/wolf-dressed.svg",
  14823. extra: 963/916,
  14824. bottom: 101/1064
  14825. },
  14826. form: "wolf",
  14827. },
  14828. wolf_hand: {
  14829. height: math.unit(0.3, "meters"),
  14830. name: "Hand",
  14831. image: {
  14832. source: "./media/characters/kauko/wolf-hand.svg"
  14833. },
  14834. form: "wolf",
  14835. },
  14836. wolf_paw: {
  14837. height: math.unit(0.407, "meters"),
  14838. name: "Paw",
  14839. image: {
  14840. source: "./media/characters/kauko/wolf-paw.svg"
  14841. },
  14842. form: "wolf",
  14843. },
  14844. wolf_nape: {
  14845. height: math.unit(0.25, "meters"),
  14846. name: "Nape",
  14847. image: {
  14848. source: "./media/characters/kauko/wolf-nape.svg"
  14849. },
  14850. form: "wolf",
  14851. },
  14852. },
  14853. [
  14854. {
  14855. name: "Normal",
  14856. height: math.unit(1.85, "m"),
  14857. default: true,
  14858. form: "king-cheetah"
  14859. },
  14860. {
  14861. name: "Normal",
  14862. height: math.unit(1.88, "m"),
  14863. default: true,
  14864. form: "wolf"
  14865. },
  14866. ],
  14867. {
  14868. "king-cheetah": {
  14869. name: "King Cheetah",
  14870. default: true
  14871. },
  14872. "wolf": {
  14873. name: "Wolf",
  14874. },
  14875. }
  14876. ))
  14877. characterMakers.push(() => makeCharacter(
  14878. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14879. {
  14880. frontSfw: {
  14881. height: math.unit(5, "meters"),
  14882. weight: math.unit(4250, "lb"),
  14883. name: "Front",
  14884. image: {
  14885. source: "./media/characters/varg/front-sfw.svg",
  14886. extra: 1103/1010,
  14887. bottom: 50/1153
  14888. },
  14889. form: "anthro",
  14890. default: true
  14891. },
  14892. backSfw: {
  14893. height: math.unit(5, "meters"),
  14894. weight: math.unit(4250, "lb"),
  14895. name: "Back",
  14896. image: {
  14897. source: "./media/characters/varg/back-sfw.svg",
  14898. extra: 1038/1022,
  14899. bottom: 36/1074
  14900. },
  14901. form: "anthro"
  14902. },
  14903. frontNsfw: {
  14904. height: math.unit(5, "meters"),
  14905. weight: math.unit(4250, "lb"),
  14906. name: "Front (NSFW)",
  14907. image: {
  14908. source: "./media/characters/varg/front-nsfw.svg",
  14909. extra: 1103/1010,
  14910. bottom: 50/1153
  14911. },
  14912. form: "anthro"
  14913. },
  14914. sheath: {
  14915. height: math.unit(3.8, "feet"),
  14916. weight: math.unit(90, "kilograms"),
  14917. name: "Sheath",
  14918. image: {
  14919. source: "./media/characters/varg/sheath.svg"
  14920. },
  14921. form: "anthro"
  14922. },
  14923. dick: {
  14924. height: math.unit(4.6, "feet"),
  14925. weight: math.unit(451, "kilograms"),
  14926. name: "Dick",
  14927. image: {
  14928. source: "./media/characters/varg/dick.svg"
  14929. },
  14930. form: "anthro"
  14931. },
  14932. feralSfw: {
  14933. height: math.unit(5, "meters"),
  14934. weight: math.unit(100000, "lb"),
  14935. name: "Side",
  14936. image: {
  14937. source: "./media/characters/varg/feral-sfw.svg",
  14938. extra: 1065/511,
  14939. bottom: 211/1276
  14940. },
  14941. form: "feral",
  14942. default: true
  14943. },
  14944. feralNsfw: {
  14945. height: math.unit(5, "meters"),
  14946. weight: math.unit(100000, "lb"),
  14947. name: "Side (NSFW)",
  14948. image: {
  14949. source: "./media/characters/varg/feral-nsfw.svg",
  14950. extra: 1065/511,
  14951. bottom: 211/1276
  14952. },
  14953. form: "feral",
  14954. },
  14955. feralSheath: {
  14956. height: math.unit(9.8, "feet"),
  14957. weight: math.unit(2000, "kilograms"),
  14958. name: "Sheath",
  14959. image: {
  14960. source: "./media/characters/varg/sheath.svg"
  14961. },
  14962. form: "feral"
  14963. },
  14964. feralDick: {
  14965. height: math.unit(13.11, "feet"),
  14966. weight: math.unit(10440, "kilograms"),
  14967. name: "Dick",
  14968. image: {
  14969. source: "./media/characters/varg/dick.svg"
  14970. },
  14971. form: "feral"
  14972. },
  14973. },
  14974. [
  14975. {
  14976. name: "Normal",
  14977. height: math.unit(5, "meters"),
  14978. form: "anthro"
  14979. },
  14980. {
  14981. name: "Macro",
  14982. height: math.unit(200, "meters"),
  14983. form: "anthro"
  14984. },
  14985. {
  14986. name: "Megamacro",
  14987. height: math.unit(20, "kilometers"),
  14988. form: "anthro"
  14989. },
  14990. {
  14991. name: "True Size",
  14992. height: math.unit(211, "km"),
  14993. form: "anthro",
  14994. default: true
  14995. },
  14996. {
  14997. name: "Gigamacro",
  14998. height: math.unit(1000, "km"),
  14999. form: "anthro"
  15000. },
  15001. {
  15002. name: "Gigamacro+",
  15003. height: math.unit(8000, "km"),
  15004. form: "anthro"
  15005. },
  15006. {
  15007. name: "Teramacro",
  15008. height: math.unit(1000000, "km"),
  15009. form: "anthro"
  15010. },
  15011. {
  15012. name: "Normal",
  15013. height: math.unit(5, "meters"),
  15014. form: "feral"
  15015. },
  15016. {
  15017. name: "Macro",
  15018. height: math.unit(200, "meters"),
  15019. form: "feral"
  15020. },
  15021. {
  15022. name: "Megamacro",
  15023. height: math.unit(20, "kilometers"),
  15024. form: "feral"
  15025. },
  15026. {
  15027. name: "True Size",
  15028. height: math.unit(211, "km"),
  15029. form: "feral",
  15030. default: true
  15031. },
  15032. {
  15033. name: "Gigamacro",
  15034. height: math.unit(1000, "km"),
  15035. form: "feral"
  15036. },
  15037. {
  15038. name: "Gigamacro+",
  15039. height: math.unit(8000, "km"),
  15040. form: "feral"
  15041. },
  15042. {
  15043. name: "Teramacro",
  15044. height: math.unit(1000000, "km"),
  15045. form: "feral"
  15046. },
  15047. ],
  15048. {
  15049. "anthro": {
  15050. name: "Anthro",
  15051. default: true
  15052. },
  15053. "feral": {
  15054. name: "Feral",
  15055. },
  15056. }
  15057. ))
  15058. characterMakers.push(() => makeCharacter(
  15059. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  15060. {
  15061. front: {
  15062. height: math.unit(7 + 7 / 12, "feet"),
  15063. weight: math.unit(267, "lb"),
  15064. name: "Front",
  15065. image: {
  15066. source: "./media/characters/dayza/front.svg",
  15067. extra: 1262 / 1200,
  15068. bottom: 0.035
  15069. }
  15070. },
  15071. side: {
  15072. height: math.unit(7 + 7 / 12, "feet"),
  15073. weight: math.unit(267, "lb"),
  15074. name: "Side",
  15075. image: {
  15076. source: "./media/characters/dayza/side.svg",
  15077. extra: 1295 / 1245,
  15078. bottom: 0.05
  15079. }
  15080. },
  15081. back: {
  15082. height: math.unit(7 + 7 / 12, "feet"),
  15083. weight: math.unit(267, "lb"),
  15084. name: "Back",
  15085. image: {
  15086. source: "./media/characters/dayza/back.svg",
  15087. extra: 1241 / 1170
  15088. }
  15089. },
  15090. },
  15091. [
  15092. {
  15093. name: "Normal",
  15094. height: math.unit(7 + 7 / 12, "feet"),
  15095. default: true
  15096. },
  15097. {
  15098. name: "Macro",
  15099. height: math.unit(155, "feet")
  15100. },
  15101. ]
  15102. ))
  15103. characterMakers.push(() => makeCharacter(
  15104. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  15105. {
  15106. front: {
  15107. height: math.unit(6 + 5 / 12, "feet"),
  15108. weight: math.unit(160, "lb"),
  15109. name: "Front",
  15110. image: {
  15111. source: "./media/characters/xanthos/front.svg",
  15112. extra: 1,
  15113. bottom: 0.04
  15114. }
  15115. },
  15116. back: {
  15117. height: math.unit(6 + 5 / 12, "feet"),
  15118. weight: math.unit(160, "lb"),
  15119. name: "Back",
  15120. image: {
  15121. source: "./media/characters/xanthos/back.svg",
  15122. extra: 1,
  15123. bottom: 0.03
  15124. }
  15125. },
  15126. hand: {
  15127. height: math.unit(0.928, "feet"),
  15128. name: "Hand",
  15129. image: {
  15130. source: "./media/characters/xanthos/hand.svg"
  15131. }
  15132. },
  15133. foot: {
  15134. height: math.unit(1.286, "feet"),
  15135. name: "Foot",
  15136. image: {
  15137. source: "./media/characters/xanthos/foot.svg"
  15138. }
  15139. },
  15140. },
  15141. [
  15142. {
  15143. name: "Normal",
  15144. height: math.unit(6 + 5 / 12, "feet"),
  15145. default: true
  15146. },
  15147. {
  15148. name: "Normal+",
  15149. height: math.unit(6, "meters")
  15150. },
  15151. {
  15152. name: "Macro",
  15153. height: math.unit(40, "feet")
  15154. },
  15155. {
  15156. name: "Macro+",
  15157. height: math.unit(200, "meters")
  15158. },
  15159. {
  15160. name: "Megamacro",
  15161. height: math.unit(20, "km")
  15162. },
  15163. {
  15164. name: "Megamacro+",
  15165. height: math.unit(100, "km")
  15166. },
  15167. {
  15168. name: "Gigamacro",
  15169. height: math.unit(200, "megameters")
  15170. },
  15171. {
  15172. name: "Gigamacro+",
  15173. height: math.unit(1.5, "gigameters")
  15174. },
  15175. ]
  15176. ))
  15177. characterMakers.push(() => makeCharacter(
  15178. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  15179. {
  15180. front: {
  15181. height: math.unit(6 + 3 / 12, "feet"),
  15182. weight: math.unit(215, "lb"),
  15183. name: "Front",
  15184. image: {
  15185. source: "./media/characters/grynn/front.svg",
  15186. extra: 4627 / 4209,
  15187. bottom: 0.047
  15188. }
  15189. },
  15190. },
  15191. [
  15192. {
  15193. name: "Micro",
  15194. height: math.unit(6, "inches")
  15195. },
  15196. {
  15197. name: "Normal",
  15198. height: math.unit(6 + 3 / 12, "feet"),
  15199. default: true
  15200. },
  15201. {
  15202. name: "Big",
  15203. height: math.unit(104, "feet")
  15204. },
  15205. {
  15206. name: "Macro",
  15207. height: math.unit(944, "feet")
  15208. },
  15209. {
  15210. name: "Macro+",
  15211. height: math.unit(9480, "feet")
  15212. },
  15213. {
  15214. name: "Megamacro",
  15215. height: math.unit(78752, "feet")
  15216. },
  15217. {
  15218. name: "Megamacro+",
  15219. height: math.unit(630128, "feet")
  15220. },
  15221. {
  15222. name: "Megamacro++",
  15223. height: math.unit(3150695, "feet")
  15224. },
  15225. ]
  15226. ))
  15227. characterMakers.push(() => makeCharacter(
  15228. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  15229. {
  15230. front: {
  15231. height: math.unit(7 + 5 / 12, "feet"),
  15232. weight: math.unit(450, "lb"),
  15233. name: "Front",
  15234. image: {
  15235. source: "./media/characters/mocha-aura/front.svg",
  15236. extra: 1907 / 1817,
  15237. bottom: 0.04
  15238. }
  15239. },
  15240. back: {
  15241. height: math.unit(7 + 5 / 12, "feet"),
  15242. weight: math.unit(450, "lb"),
  15243. name: "Back",
  15244. image: {
  15245. source: "./media/characters/mocha-aura/back.svg",
  15246. extra: 1900 / 1825,
  15247. bottom: 0.045
  15248. }
  15249. },
  15250. },
  15251. [
  15252. {
  15253. name: "Nano",
  15254. height: math.unit(1, "nm")
  15255. },
  15256. {
  15257. name: "Megamicro",
  15258. height: math.unit(1, "mm")
  15259. },
  15260. {
  15261. name: "Micro",
  15262. height: math.unit(3, "inches")
  15263. },
  15264. {
  15265. name: "Normal",
  15266. height: math.unit(7 + 5 / 12, "feet"),
  15267. default: true
  15268. },
  15269. {
  15270. name: "Macro",
  15271. height: math.unit(30, "feet")
  15272. },
  15273. {
  15274. name: "Megamacro",
  15275. height: math.unit(3500, "feet")
  15276. },
  15277. {
  15278. name: "Teramacro",
  15279. height: math.unit(500000, "miles")
  15280. },
  15281. {
  15282. name: "Petamacro",
  15283. height: math.unit(50000000000000000, "parsecs")
  15284. },
  15285. ]
  15286. ))
  15287. characterMakers.push(() => makeCharacter(
  15288. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15289. {
  15290. front: {
  15291. height: math.unit(6, "feet"),
  15292. weight: math.unit(150, "lb"),
  15293. name: "Front",
  15294. image: {
  15295. source: "./media/characters/ilisha-devya/front.svg",
  15296. extra: 1053/1049,
  15297. bottom: 270/1323
  15298. }
  15299. },
  15300. back: {
  15301. height: math.unit(6, "feet"),
  15302. weight: math.unit(150, "lb"),
  15303. name: "Back",
  15304. image: {
  15305. source: "./media/characters/ilisha-devya/back.svg",
  15306. extra: 1131/1128,
  15307. bottom: 39/1170
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Macro",
  15314. height: math.unit(500, "feet"),
  15315. default: true
  15316. },
  15317. {
  15318. name: "Megamacro",
  15319. height: math.unit(10, "miles")
  15320. },
  15321. {
  15322. name: "Gigamacro",
  15323. height: math.unit(100000, "miles")
  15324. },
  15325. {
  15326. name: "Examacro",
  15327. height: math.unit(1e9, "lightyears")
  15328. },
  15329. {
  15330. name: "Omniversal",
  15331. height: math.unit(1e33, "lightyears")
  15332. },
  15333. {
  15334. name: "Beyond Infinite",
  15335. height: math.unit(1e100, "lightyears")
  15336. },
  15337. ]
  15338. ))
  15339. characterMakers.push(() => makeCharacter(
  15340. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15341. {
  15342. Side: {
  15343. height: math.unit(6, "feet"),
  15344. weight: math.unit(150, "lb"),
  15345. name: "Side",
  15346. image: {
  15347. source: "./media/characters/mira/side.svg",
  15348. extra: 900 / 799,
  15349. bottom: 0.02
  15350. }
  15351. },
  15352. },
  15353. [
  15354. {
  15355. name: "Human Size",
  15356. height: math.unit(6, "feet")
  15357. },
  15358. {
  15359. name: "Macro",
  15360. height: math.unit(100, "feet"),
  15361. default: true
  15362. },
  15363. {
  15364. name: "Megamacro",
  15365. height: math.unit(10, "miles")
  15366. },
  15367. {
  15368. name: "Gigamacro",
  15369. height: math.unit(25000, "miles")
  15370. },
  15371. {
  15372. name: "Teramacro",
  15373. height: math.unit(300, "AU")
  15374. },
  15375. {
  15376. name: "Full Size",
  15377. height: math.unit(4.5e10, "lightyears")
  15378. },
  15379. ]
  15380. ))
  15381. characterMakers.push(() => makeCharacter(
  15382. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15383. {
  15384. front: {
  15385. height: math.unit(6, "feet"),
  15386. weight: math.unit(150, "lb"),
  15387. name: "Front",
  15388. image: {
  15389. source: "./media/characters/holly/front.svg",
  15390. extra: 639 / 606
  15391. }
  15392. },
  15393. back: {
  15394. height: math.unit(6, "feet"),
  15395. weight: math.unit(150, "lb"),
  15396. name: "Back",
  15397. image: {
  15398. source: "./media/characters/holly/back.svg",
  15399. extra: 623 / 598
  15400. }
  15401. },
  15402. frontWorking: {
  15403. height: math.unit(6, "feet"),
  15404. weight: math.unit(150, "lb"),
  15405. name: "Front (Working)",
  15406. image: {
  15407. source: "./media/characters/holly/front-working.svg",
  15408. extra: 607 / 577,
  15409. bottom: 0.048
  15410. }
  15411. },
  15412. },
  15413. [
  15414. {
  15415. name: "Normal",
  15416. height: math.unit(12 + 3 / 12, "feet"),
  15417. default: true
  15418. },
  15419. ]
  15420. ))
  15421. characterMakers.push(() => makeCharacter(
  15422. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15423. {
  15424. front: {
  15425. height: math.unit(6, "feet"),
  15426. weight: math.unit(150, "lb"),
  15427. name: "Front",
  15428. image: {
  15429. source: "./media/characters/porter/front.svg",
  15430. extra: 1,
  15431. bottom: 0.01
  15432. }
  15433. },
  15434. frontRobes: {
  15435. height: math.unit(6, "feet"),
  15436. weight: math.unit(150, "lb"),
  15437. name: "Front (Robes)",
  15438. image: {
  15439. source: "./media/characters/porter/front-robes.svg",
  15440. extra: 1.01,
  15441. bottom: 0.01
  15442. }
  15443. },
  15444. },
  15445. [
  15446. {
  15447. name: "Normal",
  15448. height: math.unit(11 + 9 / 12, "feet"),
  15449. default: true
  15450. },
  15451. ]
  15452. ))
  15453. characterMakers.push(() => makeCharacter(
  15454. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15455. {
  15456. legendary: {
  15457. height: math.unit(6, "feet"),
  15458. weight: math.unit(150, "lb"),
  15459. name: "Legendary",
  15460. image: {
  15461. source: "./media/characters/lucy/legendary.svg",
  15462. extra: 1355 / 1100,
  15463. bottom: 0.045
  15464. }
  15465. },
  15466. },
  15467. [
  15468. {
  15469. name: "Legendary",
  15470. height: math.unit(86882 * 2, "miles"),
  15471. default: true
  15472. },
  15473. ]
  15474. ))
  15475. characterMakers.push(() => makeCharacter(
  15476. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15477. {
  15478. front: {
  15479. height: math.unit(6, "feet"),
  15480. weight: math.unit(150, "lb"),
  15481. name: "Front",
  15482. image: {
  15483. source: "./media/characters/drusilla/front.svg",
  15484. extra: 678 / 635,
  15485. bottom: 0.03
  15486. }
  15487. },
  15488. back: {
  15489. height: math.unit(6, "feet"),
  15490. weight: math.unit(150, "lb"),
  15491. name: "Back",
  15492. image: {
  15493. source: "./media/characters/drusilla/back.svg",
  15494. extra: 678 / 635,
  15495. bottom: 0.005
  15496. }
  15497. },
  15498. },
  15499. [
  15500. {
  15501. name: "Macro",
  15502. height: math.unit(100, "feet")
  15503. },
  15504. {
  15505. name: "Canon Height",
  15506. height: math.unit(2000, "feet"),
  15507. default: true
  15508. },
  15509. ]
  15510. ))
  15511. characterMakers.push(() => makeCharacter(
  15512. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15513. {
  15514. front: {
  15515. height: math.unit(6, "feet"),
  15516. weight: math.unit(180, "lb"),
  15517. name: "Front",
  15518. image: {
  15519. source: "./media/characters/renard-thatch/front.svg",
  15520. extra: 2411 / 2275,
  15521. bottom: 0.01
  15522. }
  15523. },
  15524. frontPosing: {
  15525. height: math.unit(6, "feet"),
  15526. weight: math.unit(180, "lb"),
  15527. name: "Front (Posing)",
  15528. image: {
  15529. source: "./media/characters/renard-thatch/front-posing.svg",
  15530. extra: 2381 / 2261,
  15531. bottom: 0.01
  15532. }
  15533. },
  15534. back: {
  15535. height: math.unit(6, "feet"),
  15536. weight: math.unit(180, "lb"),
  15537. name: "Back",
  15538. image: {
  15539. source: "./media/characters/renard-thatch/back.svg",
  15540. extra: 2428 / 2288
  15541. }
  15542. },
  15543. },
  15544. [
  15545. {
  15546. name: "Micro",
  15547. height: math.unit(3, "inches")
  15548. },
  15549. {
  15550. name: "Default",
  15551. height: math.unit(6, "feet"),
  15552. default: true
  15553. },
  15554. {
  15555. name: "Macro",
  15556. height: math.unit(75, "feet")
  15557. },
  15558. ]
  15559. ))
  15560. characterMakers.push(() => makeCharacter(
  15561. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15562. {
  15563. front: {
  15564. height: math.unit(1450, "feet"),
  15565. weight: math.unit(1.21e6, "tons"),
  15566. name: "Front",
  15567. image: {
  15568. source: "./media/characters/sekvra/front.svg",
  15569. extra: 1193/1190,
  15570. bottom: 78/1271
  15571. }
  15572. },
  15573. side: {
  15574. height: math.unit(1450, "feet"),
  15575. weight: math.unit(1.21e6, "tons"),
  15576. name: "Side",
  15577. image: {
  15578. source: "./media/characters/sekvra/side.svg",
  15579. extra: 1193/1190,
  15580. bottom: 52/1245
  15581. }
  15582. },
  15583. back: {
  15584. height: math.unit(1450, "feet"),
  15585. weight: math.unit(1.21e6, "tons"),
  15586. name: "Back",
  15587. image: {
  15588. source: "./media/characters/sekvra/back.svg",
  15589. extra: 1219/1216,
  15590. bottom: 21/1240
  15591. }
  15592. },
  15593. frontClothed: {
  15594. height: math.unit(1450, "feet"),
  15595. weight: math.unit(1.21e6, "tons"),
  15596. name: "Front (Clothed)",
  15597. image: {
  15598. source: "./media/characters/sekvra/front-clothed.svg",
  15599. extra: 1192/1189,
  15600. bottom: 79/1271
  15601. }
  15602. },
  15603. },
  15604. [
  15605. {
  15606. name: "Macro",
  15607. height: math.unit(1450, "feet"),
  15608. default: true
  15609. },
  15610. {
  15611. name: "Megamacro",
  15612. height: math.unit(15000, "feet")
  15613. },
  15614. ]
  15615. ))
  15616. characterMakers.push(() => makeCharacter(
  15617. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15618. {
  15619. front: {
  15620. height: math.unit(6, "feet"),
  15621. weight: math.unit(150, "lb"),
  15622. name: "Front",
  15623. image: {
  15624. source: "./media/characters/carmine/front.svg",
  15625. extra: 1557/1538,
  15626. bottom: 68/1625
  15627. }
  15628. },
  15629. frontArmor: {
  15630. height: math.unit(6, "feet"),
  15631. weight: math.unit(150, "lb"),
  15632. name: "Front (Armor)",
  15633. image: {
  15634. source: "./media/characters/carmine/front-armor.svg",
  15635. extra: 1549/1530,
  15636. bottom: 82/1631
  15637. }
  15638. },
  15639. mouth: {
  15640. height: math.unit(0.55, "feet"),
  15641. name: "Mouth",
  15642. image: {
  15643. source: "./media/characters/carmine/mouth.svg"
  15644. }
  15645. },
  15646. hand: {
  15647. height: math.unit(1.05, "feet"),
  15648. name: "Hand",
  15649. image: {
  15650. source: "./media/characters/carmine/hand.svg"
  15651. }
  15652. },
  15653. foot: {
  15654. height: math.unit(0.6, "feet"),
  15655. name: "Foot",
  15656. image: {
  15657. source: "./media/characters/carmine/foot.svg"
  15658. }
  15659. },
  15660. },
  15661. [
  15662. {
  15663. name: "Large",
  15664. height: math.unit(1, "mile")
  15665. },
  15666. {
  15667. name: "Huge",
  15668. height: math.unit(40, "miles"),
  15669. default: true
  15670. },
  15671. {
  15672. name: "Colossal",
  15673. height: math.unit(2500, "miles")
  15674. },
  15675. ]
  15676. ))
  15677. characterMakers.push(() => makeCharacter(
  15678. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15679. {
  15680. front: {
  15681. height: math.unit(6, "feet"),
  15682. weight: math.unit(150, "lb"),
  15683. name: "Front",
  15684. image: {
  15685. source: "./media/characters/elyssia/front.svg",
  15686. extra: 2201 / 2035,
  15687. bottom: 0.05
  15688. }
  15689. },
  15690. frontClothed: {
  15691. height: math.unit(6, "feet"),
  15692. weight: math.unit(150, "lb"),
  15693. name: "Front (Clothed)",
  15694. image: {
  15695. source: "./media/characters/elyssia/front-clothed.svg",
  15696. extra: 2201 / 2035,
  15697. bottom: 0.05
  15698. }
  15699. },
  15700. back: {
  15701. height: math.unit(6, "feet"),
  15702. weight: math.unit(150, "lb"),
  15703. name: "Back",
  15704. image: {
  15705. source: "./media/characters/elyssia/back.svg",
  15706. extra: 2201 / 2035,
  15707. bottom: 0.013
  15708. }
  15709. },
  15710. },
  15711. [
  15712. {
  15713. name: "Smaller",
  15714. height: math.unit(150, "feet")
  15715. },
  15716. {
  15717. name: "Standard",
  15718. height: math.unit(1400, "feet"),
  15719. default: true
  15720. },
  15721. {
  15722. name: "Distracted",
  15723. height: math.unit(15000, "feet")
  15724. },
  15725. ]
  15726. ))
  15727. characterMakers.push(() => makeCharacter(
  15728. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15729. {
  15730. front: {
  15731. height: math.unit(7 + 4/12, "feet"),
  15732. weight: math.unit(690, "lb"),
  15733. name: "Front",
  15734. image: {
  15735. source: "./media/characters/geno-maxwell/front.svg",
  15736. extra: 984/856,
  15737. bottom: 87/1071
  15738. }
  15739. },
  15740. back: {
  15741. height: math.unit(7 + 4/12, "feet"),
  15742. weight: math.unit(690, "lb"),
  15743. name: "Back",
  15744. image: {
  15745. source: "./media/characters/geno-maxwell/back.svg",
  15746. extra: 981/854,
  15747. bottom: 57/1038
  15748. }
  15749. },
  15750. frontCostume: {
  15751. height: math.unit(7 + 4/12, "feet"),
  15752. weight: math.unit(690, "lb"),
  15753. name: "Front (Costume)",
  15754. image: {
  15755. source: "./media/characters/geno-maxwell/front-costume.svg",
  15756. extra: 984/856,
  15757. bottom: 87/1071
  15758. }
  15759. },
  15760. backcostume: {
  15761. height: math.unit(7 + 4/12, "feet"),
  15762. weight: math.unit(690, "lb"),
  15763. name: "Back (Costume)",
  15764. image: {
  15765. source: "./media/characters/geno-maxwell/back-costume.svg",
  15766. extra: 981/854,
  15767. bottom: 57/1038
  15768. }
  15769. },
  15770. },
  15771. [
  15772. {
  15773. name: "Micro",
  15774. height: math.unit(3, "inches")
  15775. },
  15776. {
  15777. name: "Normal",
  15778. height: math.unit(7 + 4 / 12, "feet"),
  15779. default: true
  15780. },
  15781. {
  15782. name: "Macro",
  15783. height: math.unit(220, "feet")
  15784. },
  15785. {
  15786. name: "Megamacro",
  15787. height: math.unit(11, "miles")
  15788. },
  15789. ]
  15790. ))
  15791. characterMakers.push(() => makeCharacter(
  15792. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15793. {
  15794. front: {
  15795. height: math.unit(7 + 4/12, "feet"),
  15796. weight: math.unit(750, "lb"),
  15797. name: "Front",
  15798. image: {
  15799. source: "./media/characters/regena-maxwell/front.svg",
  15800. extra: 984/856,
  15801. bottom: 87/1071
  15802. }
  15803. },
  15804. back: {
  15805. height: math.unit(7 + 4/12, "feet"),
  15806. weight: math.unit(750, "lb"),
  15807. name: "Back",
  15808. image: {
  15809. source: "./media/characters/regena-maxwell/back.svg",
  15810. extra: 981/854,
  15811. bottom: 57/1038
  15812. }
  15813. },
  15814. frontCostume: {
  15815. height: math.unit(7 + 4/12, "feet"),
  15816. weight: math.unit(750, "lb"),
  15817. name: "Front (Costume)",
  15818. image: {
  15819. source: "./media/characters/regena-maxwell/front-costume.svg",
  15820. extra: 984/856,
  15821. bottom: 87/1071
  15822. }
  15823. },
  15824. backcostume: {
  15825. height: math.unit(7 + 4/12, "feet"),
  15826. weight: math.unit(750, "lb"),
  15827. name: "Back (Costume)",
  15828. image: {
  15829. source: "./media/characters/regena-maxwell/back-costume.svg",
  15830. extra: 981/854,
  15831. bottom: 57/1038
  15832. }
  15833. },
  15834. },
  15835. [
  15836. {
  15837. name: "Normal",
  15838. height: math.unit(7 + 4 / 12, "feet"),
  15839. default: true
  15840. },
  15841. {
  15842. name: "Macro",
  15843. height: math.unit(220, "feet")
  15844. },
  15845. {
  15846. name: "Megamacro",
  15847. height: math.unit(11, "miles")
  15848. },
  15849. ]
  15850. ))
  15851. characterMakers.push(() => makeCharacter(
  15852. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15853. {
  15854. front: {
  15855. height: math.unit(6, "feet"),
  15856. weight: math.unit(150, "lb"),
  15857. name: "Front",
  15858. image: {
  15859. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15860. extra: 860 / 690,
  15861. bottom: 0.03
  15862. }
  15863. },
  15864. },
  15865. [
  15866. {
  15867. name: "Normal",
  15868. height: math.unit(1.7, "meters"),
  15869. default: true
  15870. },
  15871. ]
  15872. ))
  15873. characterMakers.push(() => makeCharacter(
  15874. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15875. {
  15876. front: {
  15877. height: math.unit(6, "feet"),
  15878. weight: math.unit(150, "lb"),
  15879. name: "Front",
  15880. image: {
  15881. source: "./media/characters/quilly/front.svg",
  15882. extra: 890 / 776
  15883. }
  15884. },
  15885. },
  15886. [
  15887. {
  15888. name: "Gigamacro",
  15889. height: math.unit(404090, "miles"),
  15890. default: true
  15891. },
  15892. ]
  15893. ))
  15894. characterMakers.push(() => makeCharacter(
  15895. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15896. {
  15897. front: {
  15898. height: math.unit(7 + 8 / 12, "feet"),
  15899. weight: math.unit(350, "lb"),
  15900. name: "Front",
  15901. image: {
  15902. source: "./media/characters/tempest/front.svg",
  15903. extra: 1175 / 1086,
  15904. bottom: 0.02
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Normal",
  15911. height: math.unit(7 + 8 / 12, "feet"),
  15912. default: true
  15913. },
  15914. ]
  15915. ))
  15916. characterMakers.push(() => makeCharacter(
  15917. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15918. {
  15919. side: {
  15920. height: math.unit(4 + 5 / 12, "feet"),
  15921. weight: math.unit(80, "lb"),
  15922. name: "Side",
  15923. image: {
  15924. source: "./media/characters/rodger/side.svg",
  15925. extra: 1235 / 1118
  15926. }
  15927. },
  15928. },
  15929. [
  15930. {
  15931. name: "Micro",
  15932. height: math.unit(1, "inch")
  15933. },
  15934. {
  15935. name: "Normal",
  15936. height: math.unit(4 + 5 / 12, "feet"),
  15937. default: true
  15938. },
  15939. {
  15940. name: "Macro",
  15941. height: math.unit(120, "feet")
  15942. },
  15943. ]
  15944. ))
  15945. characterMakers.push(() => makeCharacter(
  15946. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15947. {
  15948. front: {
  15949. height: math.unit(6, "feet"),
  15950. weight: math.unit(150, "lb"),
  15951. name: "Front",
  15952. image: {
  15953. source: "./media/characters/danyel/front.svg",
  15954. extra: 1185 / 1123,
  15955. bottom: 0.05
  15956. }
  15957. },
  15958. },
  15959. [
  15960. {
  15961. name: "Shrunken",
  15962. height: math.unit(0.5, "mm")
  15963. },
  15964. {
  15965. name: "Micro",
  15966. height: math.unit(1, "mm"),
  15967. default: true
  15968. },
  15969. {
  15970. name: "Upsized",
  15971. height: math.unit(5 + 5 / 12, "feet")
  15972. },
  15973. ]
  15974. ))
  15975. characterMakers.push(() => makeCharacter(
  15976. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15977. {
  15978. front: {
  15979. height: math.unit(5 + 6 / 12, "feet"),
  15980. weight: math.unit(200, "lb"),
  15981. name: "Front",
  15982. image: {
  15983. source: "./media/characters/vivian-bijoux/front.svg",
  15984. extra: 1217/1209,
  15985. bottom: 76/1293
  15986. }
  15987. },
  15988. back: {
  15989. height: math.unit(5 + 6 / 12, "feet"),
  15990. weight: math.unit(200, "lb"),
  15991. name: "Back",
  15992. image: {
  15993. source: "./media/characters/vivian-bijoux/back.svg",
  15994. extra: 1214/1208,
  15995. bottom: 51/1265
  15996. }
  15997. },
  15998. dressed: {
  15999. height: math.unit(5 + 6 / 12, "feet"),
  16000. weight: math.unit(200, "lb"),
  16001. name: "Dressed",
  16002. image: {
  16003. source: "./media/characters/vivian-bijoux/dressed.svg",
  16004. extra: 1217/1209,
  16005. bottom: 76/1293
  16006. }
  16007. },
  16008. },
  16009. [
  16010. {
  16011. name: "Normal",
  16012. height: math.unit(5 + 6 / 12, "feet"),
  16013. default: true
  16014. },
  16015. {
  16016. name: "Bad Dream",
  16017. height: math.unit(500, "feet")
  16018. },
  16019. {
  16020. name: "Nightmare",
  16021. height: math.unit(500, "miles")
  16022. },
  16023. ]
  16024. ))
  16025. characterMakers.push(() => makeCharacter(
  16026. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  16027. {
  16028. front: {
  16029. height: math.unit(6 + 1 / 12, "feet"),
  16030. weight: math.unit(260, "lb"),
  16031. name: "Front",
  16032. image: {
  16033. source: "./media/characters/zeta/front.svg",
  16034. extra: 1968 / 1889,
  16035. bottom: 0.06
  16036. }
  16037. },
  16038. back: {
  16039. height: math.unit(6 + 1 / 12, "feet"),
  16040. weight: math.unit(260, "lb"),
  16041. name: "Back",
  16042. image: {
  16043. source: "./media/characters/zeta/back.svg",
  16044. extra: 1944 / 1858,
  16045. bottom: 0.03
  16046. }
  16047. },
  16048. hand: {
  16049. height: math.unit(1.112, "feet"),
  16050. name: "Hand",
  16051. image: {
  16052. source: "./media/characters/zeta/hand.svg"
  16053. }
  16054. },
  16055. foot: {
  16056. height: math.unit(1.48, "feet"),
  16057. name: "Foot",
  16058. image: {
  16059. source: "./media/characters/zeta/foot.svg"
  16060. }
  16061. },
  16062. },
  16063. [
  16064. {
  16065. name: "Micro",
  16066. height: math.unit(6, "inches")
  16067. },
  16068. {
  16069. name: "Normal",
  16070. height: math.unit(6 + 1 / 12, "feet"),
  16071. default: true
  16072. },
  16073. {
  16074. name: "Macro",
  16075. height: math.unit(20, "feet")
  16076. },
  16077. ]
  16078. ))
  16079. characterMakers.push(() => makeCharacter(
  16080. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  16081. {
  16082. front: {
  16083. height: math.unit(6, "feet"),
  16084. weight: math.unit(150, "lb"),
  16085. name: "Front",
  16086. image: {
  16087. source: "./media/characters/jamie-larsen/front.svg",
  16088. extra: 962 / 933,
  16089. bottom: 0.02
  16090. }
  16091. },
  16092. back: {
  16093. height: math.unit(6, "feet"),
  16094. weight: math.unit(150, "lb"),
  16095. name: "Back",
  16096. image: {
  16097. source: "./media/characters/jamie-larsen/back.svg",
  16098. extra: 997 / 946
  16099. }
  16100. },
  16101. },
  16102. [
  16103. {
  16104. name: "Macro",
  16105. height: math.unit(28 + 7 / 12, "feet"),
  16106. default: true
  16107. },
  16108. {
  16109. name: "Macro+",
  16110. height: math.unit(180, "feet")
  16111. },
  16112. {
  16113. name: "Megamacro",
  16114. height: math.unit(10, "miles")
  16115. },
  16116. {
  16117. name: "Gigamacro",
  16118. height: math.unit(200000, "miles")
  16119. },
  16120. ]
  16121. ))
  16122. characterMakers.push(() => makeCharacter(
  16123. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  16124. {
  16125. front: {
  16126. height: math.unit(6, "feet"),
  16127. weight: math.unit(120, "lb"),
  16128. name: "Front",
  16129. image: {
  16130. source: "./media/characters/vance/front.svg",
  16131. extra: 1980 / 1890,
  16132. bottom: 0.09
  16133. }
  16134. },
  16135. back: {
  16136. height: math.unit(6, "feet"),
  16137. weight: math.unit(120, "lb"),
  16138. name: "Back",
  16139. image: {
  16140. source: "./media/characters/vance/back.svg",
  16141. extra: 2081 / 1994,
  16142. bottom: 0.014
  16143. }
  16144. },
  16145. hand: {
  16146. height: math.unit(0.88, "feet"),
  16147. name: "Hand",
  16148. image: {
  16149. source: "./media/characters/vance/hand.svg"
  16150. }
  16151. },
  16152. foot: {
  16153. height: math.unit(0.64, "feet"),
  16154. name: "Foot",
  16155. image: {
  16156. source: "./media/characters/vance/foot.svg"
  16157. }
  16158. },
  16159. },
  16160. [
  16161. {
  16162. name: "Small",
  16163. height: math.unit(90, "feet"),
  16164. default: true
  16165. },
  16166. {
  16167. name: "Macro",
  16168. height: math.unit(100, "meters")
  16169. },
  16170. {
  16171. name: "Megamacro",
  16172. height: math.unit(15, "miles")
  16173. },
  16174. ]
  16175. ))
  16176. characterMakers.push(() => makeCharacter(
  16177. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  16178. {
  16179. front: {
  16180. height: math.unit(6, "feet"),
  16181. weight: math.unit(180, "lb"),
  16182. name: "Front",
  16183. image: {
  16184. source: "./media/characters/xochitl/front.svg",
  16185. extra: 2297 / 2261,
  16186. bottom: 0.065
  16187. }
  16188. },
  16189. back: {
  16190. height: math.unit(6, "feet"),
  16191. weight: math.unit(180, "lb"),
  16192. name: "Back",
  16193. image: {
  16194. source: "./media/characters/xochitl/back.svg",
  16195. extra: 2386 / 2354,
  16196. bottom: 0.01
  16197. }
  16198. },
  16199. foot: {
  16200. height: math.unit(6 / 5 * 1.15, "feet"),
  16201. weight: math.unit(150, "lb"),
  16202. name: "Foot",
  16203. image: {
  16204. source: "./media/characters/xochitl/foot.svg"
  16205. }
  16206. },
  16207. },
  16208. [
  16209. {
  16210. name: "Macro",
  16211. height: math.unit(80, "feet")
  16212. },
  16213. {
  16214. name: "Macro+",
  16215. height: math.unit(400, "feet"),
  16216. default: true
  16217. },
  16218. {
  16219. name: "Gigamacro",
  16220. height: math.unit(80000, "miles")
  16221. },
  16222. {
  16223. name: "Gigamacro+",
  16224. height: math.unit(400000, "miles")
  16225. },
  16226. {
  16227. name: "Teramacro",
  16228. height: math.unit(300, "AU")
  16229. },
  16230. ]
  16231. ))
  16232. characterMakers.push(() => makeCharacter(
  16233. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  16234. {
  16235. front: {
  16236. height: math.unit(6, "feet"),
  16237. weight: math.unit(150, "lb"),
  16238. name: "Front",
  16239. image: {
  16240. source: "./media/characters/vincent/front.svg",
  16241. extra: 1130 / 1080,
  16242. bottom: 0.055
  16243. }
  16244. },
  16245. beak: {
  16246. height: math.unit(6 * 0.1, "feet"),
  16247. name: "Beak",
  16248. image: {
  16249. source: "./media/characters/vincent/beak.svg"
  16250. }
  16251. },
  16252. hand: {
  16253. height: math.unit(6 * 0.85, "feet"),
  16254. weight: math.unit(150, "lb"),
  16255. name: "Hand",
  16256. image: {
  16257. source: "./media/characters/vincent/hand.svg"
  16258. }
  16259. },
  16260. foot: {
  16261. height: math.unit(6 * 0.19, "feet"),
  16262. weight: math.unit(150, "lb"),
  16263. name: "Foot",
  16264. image: {
  16265. source: "./media/characters/vincent/foot.svg"
  16266. }
  16267. },
  16268. },
  16269. [
  16270. {
  16271. name: "Base",
  16272. height: math.unit(6 + 5 / 12, "feet"),
  16273. default: true
  16274. },
  16275. {
  16276. name: "Macro",
  16277. height: math.unit(300, "feet")
  16278. },
  16279. {
  16280. name: "Megamacro",
  16281. height: math.unit(2, "miles")
  16282. },
  16283. {
  16284. name: "Gigamacro",
  16285. height: math.unit(1000, "miles")
  16286. },
  16287. ]
  16288. ))
  16289. characterMakers.push(() => makeCharacter(
  16290. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16291. {
  16292. front: {
  16293. height: math.unit(2, "meters"),
  16294. weight: math.unit(500, "kg"),
  16295. name: "Front",
  16296. image: {
  16297. source: "./media/characters/coatl/front.svg",
  16298. extra: 3948 / 3500,
  16299. bottom: 0.082
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Normal",
  16306. height: math.unit(4, "meters")
  16307. },
  16308. {
  16309. name: "Macro",
  16310. height: math.unit(100, "meters"),
  16311. default: true
  16312. },
  16313. {
  16314. name: "Macro+",
  16315. height: math.unit(300, "meters")
  16316. },
  16317. {
  16318. name: "Megamacro",
  16319. height: math.unit(3, "gigameters")
  16320. },
  16321. {
  16322. name: "Megamacro+",
  16323. height: math.unit(300, "terameters")
  16324. },
  16325. {
  16326. name: "Megamacro++",
  16327. height: math.unit(3, "lightyears")
  16328. },
  16329. ]
  16330. ))
  16331. characterMakers.push(() => makeCharacter(
  16332. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16333. {
  16334. front: {
  16335. height: math.unit(6, "feet"),
  16336. weight: math.unit(50, "kg"),
  16337. name: "front",
  16338. image: {
  16339. source: "./media/characters/shiroryu/front.svg",
  16340. extra: 1990 / 1935
  16341. }
  16342. },
  16343. },
  16344. [
  16345. {
  16346. name: "Mortal Mingling",
  16347. height: math.unit(3, "meters")
  16348. },
  16349. {
  16350. name: "Kaiju-ish",
  16351. height: math.unit(250, "meters")
  16352. },
  16353. {
  16354. name: "Somewhat Godly",
  16355. height: math.unit(400, "km"),
  16356. default: true
  16357. },
  16358. {
  16359. name: "Planetary",
  16360. height: math.unit(300, "megameters")
  16361. },
  16362. {
  16363. name: "Galaxy-dwarfing",
  16364. height: math.unit(450, "kiloparsecs")
  16365. },
  16366. {
  16367. name: "Universe Eater",
  16368. height: math.unit(150, "gigaparsecs")
  16369. },
  16370. {
  16371. name: "Almost Immeasurable",
  16372. height: math.unit(1.3e266, "yottaparsecs")
  16373. },
  16374. ]
  16375. ))
  16376. characterMakers.push(() => makeCharacter(
  16377. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16378. {
  16379. front: {
  16380. height: math.unit(6, "feet"),
  16381. weight: math.unit(150, "lb"),
  16382. name: "Front",
  16383. image: {
  16384. source: "./media/characters/umeko/front.svg",
  16385. extra: 1,
  16386. bottom: 0.019
  16387. }
  16388. },
  16389. frontArmored: {
  16390. height: math.unit(6, "feet"),
  16391. weight: math.unit(150, "lb"),
  16392. name: "Front (Armored)",
  16393. image: {
  16394. source: "./media/characters/umeko/front-armored.svg",
  16395. extra: 1,
  16396. bottom: 0.021
  16397. }
  16398. },
  16399. },
  16400. [
  16401. {
  16402. name: "Macro",
  16403. height: math.unit(220, "feet"),
  16404. default: true
  16405. },
  16406. {
  16407. name: "Guardian Dragon",
  16408. height: math.unit(50, "miles")
  16409. },
  16410. {
  16411. name: "Cosmic",
  16412. height: math.unit(800000, "miles")
  16413. },
  16414. ]
  16415. ))
  16416. characterMakers.push(() => makeCharacter(
  16417. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16418. {
  16419. front: {
  16420. height: math.unit(6, "feet"),
  16421. weight: math.unit(150, "lb"),
  16422. name: "Front",
  16423. image: {
  16424. source: "./media/characters/cassidy/front.svg",
  16425. extra: 810/808,
  16426. bottom: 41/851
  16427. }
  16428. },
  16429. },
  16430. [
  16431. {
  16432. name: "Canon Height",
  16433. height: math.unit(120, "feet"),
  16434. default: true
  16435. },
  16436. {
  16437. name: "Macro+",
  16438. height: math.unit(400, "feet")
  16439. },
  16440. {
  16441. name: "Macro++",
  16442. height: math.unit(4000, "feet")
  16443. },
  16444. {
  16445. name: "Megamacro",
  16446. height: math.unit(3, "miles")
  16447. },
  16448. ]
  16449. ))
  16450. characterMakers.push(() => makeCharacter(
  16451. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16452. {
  16453. front: {
  16454. height: math.unit(6, "feet"),
  16455. weight: math.unit(150, "lb"),
  16456. name: "Front",
  16457. image: {
  16458. source: "./media/characters/isaac/front.svg",
  16459. extra: 896 / 815,
  16460. bottom: 0.11
  16461. }
  16462. },
  16463. },
  16464. [
  16465. {
  16466. name: "Human Size",
  16467. height: math.unit(8, "feet"),
  16468. default: true
  16469. },
  16470. {
  16471. name: "Macro",
  16472. height: math.unit(400, "feet")
  16473. },
  16474. {
  16475. name: "Megamacro",
  16476. height: math.unit(50, "miles")
  16477. },
  16478. {
  16479. name: "Canon Height",
  16480. height: math.unit(200, "AU")
  16481. },
  16482. ]
  16483. ))
  16484. characterMakers.push(() => makeCharacter(
  16485. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16486. {
  16487. front: {
  16488. height: math.unit(6, "feet"),
  16489. weight: math.unit(72, "kg"),
  16490. name: "Front",
  16491. image: {
  16492. source: "./media/characters/sleekit/front.svg",
  16493. extra: 4693 / 4487,
  16494. bottom: 0.012
  16495. }
  16496. },
  16497. },
  16498. [
  16499. {
  16500. name: "Minimum Height",
  16501. height: math.unit(10, "meters")
  16502. },
  16503. {
  16504. name: "Smaller",
  16505. height: math.unit(25, "meters")
  16506. },
  16507. {
  16508. name: "Larger",
  16509. height: math.unit(38, "meters"),
  16510. default: true
  16511. },
  16512. {
  16513. name: "Maximum height",
  16514. height: math.unit(100, "meters")
  16515. },
  16516. ]
  16517. ))
  16518. characterMakers.push(() => makeCharacter(
  16519. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16520. {
  16521. front: {
  16522. height: math.unit(6, "feet"),
  16523. weight: math.unit(150, "lb"),
  16524. name: "Front",
  16525. image: {
  16526. source: "./media/characters/nillia/front.svg",
  16527. extra: 719/665,
  16528. bottom: 6/725
  16529. }
  16530. },
  16531. back: {
  16532. height: math.unit(6, "feet"),
  16533. weight: math.unit(150, "lb"),
  16534. name: "Back",
  16535. image: {
  16536. source: "./media/characters/nillia/back.svg",
  16537. extra: 705/651,
  16538. bottom: 5/710
  16539. }
  16540. },
  16541. },
  16542. [
  16543. {
  16544. name: "Canon Height",
  16545. height: math.unit(489, "feet"),
  16546. default: true
  16547. }
  16548. ]
  16549. ))
  16550. characterMakers.push(() => makeCharacter(
  16551. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16552. {
  16553. front: {
  16554. height: math.unit(6, "feet"),
  16555. weight: math.unit(150, "lb"),
  16556. name: "Front",
  16557. image: {
  16558. source: "./media/characters/mesmyriza/front.svg",
  16559. extra: 1541/1291,
  16560. bottom: 87/1628
  16561. }
  16562. },
  16563. foot: {
  16564. height: math.unit(6 / (250 / 35), "feet"),
  16565. name: "Foot",
  16566. image: {
  16567. source: "./media/characters/mesmyriza/foot.svg"
  16568. }
  16569. },
  16570. },
  16571. [
  16572. {
  16573. name: "Macro",
  16574. height: math.unit(457, "meters"),
  16575. default: true
  16576. },
  16577. {
  16578. name: "Megamacro",
  16579. height: math.unit(8, "megameters")
  16580. },
  16581. ]
  16582. ))
  16583. characterMakers.push(() => makeCharacter(
  16584. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16585. {
  16586. front: {
  16587. height: math.unit(6, "feet"),
  16588. weight: math.unit(250, "lb"),
  16589. name: "Front",
  16590. image: {
  16591. source: "./media/characters/saudade/front.svg",
  16592. extra: 1172 / 1139,
  16593. bottom: 0.035
  16594. }
  16595. },
  16596. },
  16597. [
  16598. {
  16599. name: "Micro",
  16600. height: math.unit(3, "inches")
  16601. },
  16602. {
  16603. name: "Normal",
  16604. height: math.unit(6, "feet"),
  16605. default: true
  16606. },
  16607. {
  16608. name: "Macro",
  16609. height: math.unit(50, "feet")
  16610. },
  16611. {
  16612. name: "Megamacro",
  16613. height: math.unit(2800, "feet")
  16614. },
  16615. ]
  16616. ))
  16617. characterMakers.push(() => makeCharacter(
  16618. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16619. {
  16620. front: {
  16621. height: math.unit(5 + 4 / 12, "feet"),
  16622. weight: math.unit(100, "lb"),
  16623. name: "Front",
  16624. image: {
  16625. source: "./media/characters/keireer/front.svg",
  16626. extra: 716 / 666,
  16627. bottom: 0.05
  16628. }
  16629. },
  16630. },
  16631. [
  16632. {
  16633. name: "Normal",
  16634. height: math.unit(5 + 4 / 12, "feet"),
  16635. default: true
  16636. },
  16637. ]
  16638. ))
  16639. characterMakers.push(() => makeCharacter(
  16640. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16641. {
  16642. front: {
  16643. height: math.unit(5.5, "feet"),
  16644. weight: math.unit(90, "kg"),
  16645. name: "Front",
  16646. image: {
  16647. source: "./media/characters/mirja/front.svg",
  16648. extra: 1452/1262,
  16649. bottom: 67/1519
  16650. }
  16651. },
  16652. frontDressed: {
  16653. height: math.unit(5.5, "feet"),
  16654. weight: math.unit(90, "lb"),
  16655. name: "Front (Dressed)",
  16656. image: {
  16657. source: "./media/characters/mirja/dressed.svg",
  16658. extra: 1452/1262,
  16659. bottom: 67/1519
  16660. }
  16661. },
  16662. back: {
  16663. height: math.unit(6, "feet"),
  16664. weight: math.unit(90, "lb"),
  16665. name: "Back",
  16666. image: {
  16667. source: "./media/characters/mirja/back.svg",
  16668. extra: 1892/1795,
  16669. bottom: 48/1940
  16670. }
  16671. },
  16672. maw: {
  16673. height: math.unit(1.312, "feet"),
  16674. name: "Maw",
  16675. image: {
  16676. source: "./media/characters/mirja/maw.svg"
  16677. }
  16678. },
  16679. paw: {
  16680. height: math.unit(1.15, "feet"),
  16681. name: "Paw",
  16682. image: {
  16683. source: "./media/characters/mirja/paw.svg"
  16684. }
  16685. },
  16686. },
  16687. [
  16688. {
  16689. name: "\"Incognito\"",
  16690. height: math.unit(3, "meters")
  16691. },
  16692. {
  16693. name: "Strolling Size",
  16694. height: math.unit(15, "km")
  16695. },
  16696. {
  16697. name: "Larger Strolling Size",
  16698. height: math.unit(400, "km")
  16699. },
  16700. {
  16701. name: "Preferred Size",
  16702. height: math.unit(5000, "km"),
  16703. default: true
  16704. },
  16705. {
  16706. name: "True Size",
  16707. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16708. },
  16709. ]
  16710. ))
  16711. characterMakers.push(() => makeCharacter(
  16712. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16713. {
  16714. front: {
  16715. height: math.unit(15, "feet"),
  16716. weight: math.unit(880, "kg"),
  16717. name: "Front",
  16718. image: {
  16719. source: "./media/characters/nightraver/front.svg",
  16720. extra: 2444 / 2160,
  16721. bottom: 0.027
  16722. }
  16723. },
  16724. back: {
  16725. height: math.unit(15, "feet"),
  16726. weight: math.unit(880, "kg"),
  16727. name: "Back",
  16728. image: {
  16729. source: "./media/characters/nightraver/back.svg",
  16730. extra: 2309 / 2180,
  16731. bottom: 0.005
  16732. }
  16733. },
  16734. sole: {
  16735. height: math.unit(2.878, "feet"),
  16736. name: "Sole",
  16737. image: {
  16738. source: "./media/characters/nightraver/sole.svg"
  16739. }
  16740. },
  16741. foot: {
  16742. height: math.unit(2.285, "feet"),
  16743. name: "Foot",
  16744. image: {
  16745. source: "./media/characters/nightraver/foot.svg"
  16746. }
  16747. },
  16748. maw: {
  16749. height: math.unit(2.67, "feet"),
  16750. name: "Maw",
  16751. image: {
  16752. source: "./media/characters/nightraver/maw.svg"
  16753. }
  16754. },
  16755. },
  16756. [
  16757. {
  16758. name: "Micro",
  16759. height: math.unit(1, "cm")
  16760. },
  16761. {
  16762. name: "Normal",
  16763. height: math.unit(15, "feet"),
  16764. default: true
  16765. },
  16766. {
  16767. name: "Macro",
  16768. height: math.unit(300, "feet")
  16769. },
  16770. {
  16771. name: "Megamacro",
  16772. height: math.unit(300, "miles")
  16773. },
  16774. {
  16775. name: "Gigamacro",
  16776. height: math.unit(10000, "miles")
  16777. },
  16778. ]
  16779. ))
  16780. characterMakers.push(() => makeCharacter(
  16781. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16782. {
  16783. side: {
  16784. height: math.unit(2, "inches"),
  16785. weight: math.unit(5, "grams"),
  16786. name: "Side",
  16787. image: {
  16788. source: "./media/characters/arc/side.svg"
  16789. }
  16790. },
  16791. },
  16792. [
  16793. {
  16794. name: "Micro",
  16795. height: math.unit(2, "inches"),
  16796. default: true
  16797. },
  16798. ]
  16799. ))
  16800. characterMakers.push(() => makeCharacter(
  16801. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16802. {
  16803. front: {
  16804. height: math.unit(1.1938, "meters"),
  16805. weight: math.unit(54, "kg"),
  16806. name: "Front",
  16807. image: {
  16808. source: "./media/characters/nebula-shahar/front.svg",
  16809. extra: 1642 / 1436,
  16810. bottom: 0.06
  16811. }
  16812. },
  16813. },
  16814. [
  16815. {
  16816. name: "Megamicro",
  16817. height: math.unit(0.3, "mm")
  16818. },
  16819. {
  16820. name: "Micro",
  16821. height: math.unit(3, "cm")
  16822. },
  16823. {
  16824. name: "Normal",
  16825. height: math.unit(138, "cm"),
  16826. default: true
  16827. },
  16828. {
  16829. name: "Macro",
  16830. height: math.unit(30, "m")
  16831. },
  16832. ]
  16833. ))
  16834. characterMakers.push(() => makeCharacter(
  16835. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16836. {
  16837. front: {
  16838. height: math.unit(5.24, "feet"),
  16839. weight: math.unit(150, "lb"),
  16840. name: "Front",
  16841. image: {
  16842. source: "./media/characters/shayla/front.svg",
  16843. extra: 1512 / 1414,
  16844. bottom: 0.01
  16845. }
  16846. },
  16847. back: {
  16848. height: math.unit(5.24, "feet"),
  16849. weight: math.unit(150, "lb"),
  16850. name: "Back",
  16851. image: {
  16852. source: "./media/characters/shayla/back.svg",
  16853. extra: 1512 / 1414
  16854. }
  16855. },
  16856. hand: {
  16857. height: math.unit(0.7781496062992126, "feet"),
  16858. name: "Hand",
  16859. image: {
  16860. source: "./media/characters/shayla/hand.svg"
  16861. }
  16862. },
  16863. foot: {
  16864. height: math.unit(1.4206036745406823, "feet"),
  16865. name: "Foot",
  16866. image: {
  16867. source: "./media/characters/shayla/foot.svg"
  16868. }
  16869. },
  16870. },
  16871. [
  16872. {
  16873. name: "Micro",
  16874. height: math.unit(0.32, "feet")
  16875. },
  16876. {
  16877. name: "Normal",
  16878. height: math.unit(5.24, "feet"),
  16879. default: true
  16880. },
  16881. {
  16882. name: "Macro",
  16883. height: math.unit(492.12, "feet")
  16884. },
  16885. {
  16886. name: "Megamacro",
  16887. height: math.unit(186.41, "miles")
  16888. },
  16889. ]
  16890. ))
  16891. characterMakers.push(() => makeCharacter(
  16892. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16893. {
  16894. front: {
  16895. height: math.unit(2.2, "m"),
  16896. weight: math.unit(120, "kg"),
  16897. name: "Front",
  16898. image: {
  16899. source: "./media/characters/pia-jr/front.svg",
  16900. extra: 1000 / 970,
  16901. bottom: 0.035
  16902. }
  16903. },
  16904. hand: {
  16905. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16906. name: "Hand",
  16907. image: {
  16908. source: "./media/characters/pia-jr/hand.svg"
  16909. }
  16910. },
  16911. paw: {
  16912. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16913. name: "Paw",
  16914. image: {
  16915. source: "./media/characters/pia-jr/paw.svg"
  16916. }
  16917. },
  16918. },
  16919. [
  16920. {
  16921. name: "Micro",
  16922. height: math.unit(1.2, "cm")
  16923. },
  16924. {
  16925. name: "Normal",
  16926. height: math.unit(2.2, "m"),
  16927. default: true
  16928. },
  16929. {
  16930. name: "Macro",
  16931. height: math.unit(180, "m")
  16932. },
  16933. {
  16934. name: "Megamacro",
  16935. height: math.unit(420, "km")
  16936. },
  16937. ]
  16938. ))
  16939. characterMakers.push(() => makeCharacter(
  16940. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16941. {
  16942. front: {
  16943. height: math.unit(2, "m"),
  16944. weight: math.unit(115, "kg"),
  16945. name: "Front",
  16946. image: {
  16947. source: "./media/characters/pia-sr/front.svg",
  16948. extra: 760 / 730,
  16949. bottom: 0.015
  16950. }
  16951. },
  16952. back: {
  16953. height: math.unit(2, "m"),
  16954. weight: math.unit(115, "kg"),
  16955. name: "Back",
  16956. image: {
  16957. source: "./media/characters/pia-sr/back.svg",
  16958. extra: 760 / 730,
  16959. bottom: 0.01
  16960. }
  16961. },
  16962. hand: {
  16963. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16964. name: "Hand",
  16965. image: {
  16966. source: "./media/characters/pia-sr/hand.svg"
  16967. }
  16968. },
  16969. foot: {
  16970. height: math.unit(1.83, "feet"),
  16971. name: "Foot",
  16972. image: {
  16973. source: "./media/characters/pia-sr/foot.svg"
  16974. }
  16975. },
  16976. },
  16977. [
  16978. {
  16979. name: "Micro",
  16980. height: math.unit(88, "mm")
  16981. },
  16982. {
  16983. name: "Normal",
  16984. height: math.unit(2, "m"),
  16985. default: true
  16986. },
  16987. {
  16988. name: "Macro",
  16989. height: math.unit(200, "m")
  16990. },
  16991. {
  16992. name: "Megamacro",
  16993. height: math.unit(420, "km")
  16994. },
  16995. ]
  16996. ))
  16997. characterMakers.push(() => makeCharacter(
  16998. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16999. {
  17000. front: {
  17001. height: math.unit(8 + 2 / 12, "feet"),
  17002. weight: math.unit(300, "lb"),
  17003. name: "Front",
  17004. image: {
  17005. source: "./media/characters/kibibyte/front.svg",
  17006. extra: 2221 / 2098,
  17007. bottom: 0.04
  17008. }
  17009. },
  17010. },
  17011. [
  17012. {
  17013. name: "Normal",
  17014. height: math.unit(8 + 2 / 12, "feet"),
  17015. default: true
  17016. },
  17017. {
  17018. name: "Socialable Macro",
  17019. height: math.unit(50, "feet")
  17020. },
  17021. {
  17022. name: "Macro",
  17023. height: math.unit(300, "feet")
  17024. },
  17025. {
  17026. name: "Megamacro",
  17027. height: math.unit(500, "miles")
  17028. },
  17029. ]
  17030. ))
  17031. characterMakers.push(() => makeCharacter(
  17032. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  17033. {
  17034. front: {
  17035. height: math.unit(6, "feet"),
  17036. weight: math.unit(150, "lb"),
  17037. name: "Front",
  17038. image: {
  17039. source: "./media/characters/felix/front.svg",
  17040. extra: 762 / 722,
  17041. bottom: 0.02
  17042. }
  17043. },
  17044. frontClothed: {
  17045. height: math.unit(6, "feet"),
  17046. weight: math.unit(150, "lb"),
  17047. name: "Front (Clothed)",
  17048. image: {
  17049. source: "./media/characters/felix/front-clothed.svg",
  17050. extra: 762 / 722,
  17051. bottom: 0.02
  17052. }
  17053. },
  17054. },
  17055. [
  17056. {
  17057. name: "Normal",
  17058. height: math.unit(6 + 8 / 12, "feet"),
  17059. default: true
  17060. },
  17061. {
  17062. name: "Macro",
  17063. height: math.unit(2600, "feet")
  17064. },
  17065. {
  17066. name: "Megamacro",
  17067. height: math.unit(450, "miles")
  17068. },
  17069. ]
  17070. ))
  17071. characterMakers.push(() => makeCharacter(
  17072. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  17073. {
  17074. front: {
  17075. height: math.unit(6 + 1 / 12, "feet"),
  17076. weight: math.unit(250, "lb"),
  17077. name: "Front",
  17078. image: {
  17079. source: "./media/characters/tobo/front.svg",
  17080. extra: 608 / 586,
  17081. bottom: 0.023
  17082. }
  17083. },
  17084. back: {
  17085. height: math.unit(6 + 1 / 12, "feet"),
  17086. weight: math.unit(250, "lb"),
  17087. name: "Back",
  17088. image: {
  17089. source: "./media/characters/tobo/back.svg",
  17090. extra: 608 / 586
  17091. }
  17092. },
  17093. },
  17094. [
  17095. {
  17096. name: "Nano",
  17097. height: math.unit(2, "nm")
  17098. },
  17099. {
  17100. name: "Megamicro",
  17101. height: math.unit(0.1, "mm")
  17102. },
  17103. {
  17104. name: "Micro",
  17105. height: math.unit(1, "inch"),
  17106. default: true
  17107. },
  17108. {
  17109. name: "Human-sized",
  17110. height: math.unit(6 + 1 / 12, "feet")
  17111. },
  17112. {
  17113. name: "Macro",
  17114. height: math.unit(250, "feet")
  17115. },
  17116. {
  17117. name: "Megamacro",
  17118. height: math.unit(75, "miles")
  17119. },
  17120. {
  17121. name: "Texas-sized",
  17122. height: math.unit(750, "miles")
  17123. },
  17124. {
  17125. name: "Teramacro",
  17126. height: math.unit(50000, "miles")
  17127. },
  17128. ]
  17129. ))
  17130. characterMakers.push(() => makeCharacter(
  17131. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  17132. {
  17133. front: {
  17134. height: math.unit(6, "feet"),
  17135. weight: math.unit(269, "lb"),
  17136. name: "Front",
  17137. image: {
  17138. source: "./media/characters/danny-kapowsky/front.svg",
  17139. extra: 766 / 736,
  17140. bottom: 0.044
  17141. }
  17142. },
  17143. back: {
  17144. height: math.unit(6, "feet"),
  17145. weight: math.unit(269, "lb"),
  17146. name: "Back",
  17147. image: {
  17148. source: "./media/characters/danny-kapowsky/back.svg",
  17149. extra: 797 / 760,
  17150. bottom: 0.025
  17151. }
  17152. },
  17153. },
  17154. [
  17155. {
  17156. name: "Macro",
  17157. height: math.unit(150, "feet"),
  17158. default: true
  17159. },
  17160. {
  17161. name: "Macro+",
  17162. height: math.unit(200, "feet")
  17163. },
  17164. {
  17165. name: "Macro++",
  17166. height: math.unit(300, "feet")
  17167. },
  17168. {
  17169. name: "Macro+++",
  17170. height: math.unit(400, "feet")
  17171. },
  17172. ]
  17173. ))
  17174. characterMakers.push(() => makeCharacter(
  17175. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  17176. {
  17177. side: {
  17178. height: math.unit(6, "feet"),
  17179. weight: math.unit(170, "lb"),
  17180. name: "Side",
  17181. image: {
  17182. source: "./media/characters/finn/side.svg",
  17183. extra: 1953 / 1807,
  17184. bottom: 0.057
  17185. }
  17186. },
  17187. },
  17188. [
  17189. {
  17190. name: "Megamacro",
  17191. height: math.unit(14445, "feet"),
  17192. default: true
  17193. },
  17194. ]
  17195. ))
  17196. characterMakers.push(() => makeCharacter(
  17197. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  17198. {
  17199. front: {
  17200. height: math.unit(5 + 6 / 12, "feet"),
  17201. weight: math.unit(125, "lb"),
  17202. name: "Front",
  17203. image: {
  17204. source: "./media/characters/roy/front.svg",
  17205. extra: 1,
  17206. bottom: 0.11
  17207. }
  17208. },
  17209. },
  17210. [
  17211. {
  17212. name: "Micro",
  17213. height: math.unit(3, "inches"),
  17214. default: true
  17215. },
  17216. {
  17217. name: "Normal",
  17218. height: math.unit(5 + 6 / 12, "feet")
  17219. },
  17220. {
  17221. name: "Lesser Macro",
  17222. height: math.unit(60, "feet")
  17223. },
  17224. {
  17225. name: "Greater Macro",
  17226. height: math.unit(120, "feet")
  17227. },
  17228. ]
  17229. ))
  17230. characterMakers.push(() => makeCharacter(
  17231. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  17232. {
  17233. front: {
  17234. height: math.unit(6, "feet"),
  17235. weight: math.unit(100, "lb"),
  17236. name: "Front",
  17237. image: {
  17238. source: "./media/characters/aevsivs/front.svg",
  17239. extra: 1,
  17240. bottom: 0.03
  17241. }
  17242. },
  17243. back: {
  17244. height: math.unit(6, "feet"),
  17245. weight: math.unit(100, "lb"),
  17246. name: "Back",
  17247. image: {
  17248. source: "./media/characters/aevsivs/back.svg"
  17249. }
  17250. },
  17251. },
  17252. [
  17253. {
  17254. name: "Micro",
  17255. height: math.unit(2, "inches"),
  17256. default: true
  17257. },
  17258. {
  17259. name: "Normal",
  17260. height: math.unit(5, "feet")
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17266. {
  17267. front: {
  17268. height: math.unit(5 + 7 / 12, "feet"),
  17269. weight: math.unit(159, "lb"),
  17270. name: "Front",
  17271. image: {
  17272. source: "./media/characters/hildegard/front.svg",
  17273. extra: 289 / 269,
  17274. bottom: 7.63 / 297.8
  17275. }
  17276. },
  17277. back: {
  17278. height: math.unit(5 + 7 / 12, "feet"),
  17279. weight: math.unit(159, "lb"),
  17280. name: "Back",
  17281. image: {
  17282. source: "./media/characters/hildegard/back.svg",
  17283. extra: 280 / 260,
  17284. bottom: 2.3 / 282
  17285. }
  17286. },
  17287. },
  17288. [
  17289. {
  17290. name: "Normal",
  17291. height: math.unit(5 + 7 / 12, "feet"),
  17292. default: true
  17293. },
  17294. ]
  17295. ))
  17296. characterMakers.push(() => makeCharacter(
  17297. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17298. {
  17299. bernard: {
  17300. height: math.unit(2 + 7 / 12, "feet"),
  17301. weight: math.unit(66, "lb"),
  17302. name: "Bernard",
  17303. rename: true,
  17304. image: {
  17305. source: "./media/characters/bernard-wilder/bernard.svg",
  17306. extra: 192 / 128,
  17307. bottom: 0.05
  17308. }
  17309. },
  17310. wilder: {
  17311. height: math.unit(5 + 8 / 12, "feet"),
  17312. weight: math.unit(143, "lb"),
  17313. name: "Wilder",
  17314. rename: true,
  17315. image: {
  17316. source: "./media/characters/bernard-wilder/wilder.svg",
  17317. extra: 361 / 312,
  17318. bottom: 0.02
  17319. }
  17320. },
  17321. },
  17322. [
  17323. {
  17324. name: "Normal",
  17325. height: math.unit(2 + 7 / 12, "feet"),
  17326. default: true
  17327. },
  17328. ]
  17329. ))
  17330. characterMakers.push(() => makeCharacter(
  17331. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17332. {
  17333. anthro: {
  17334. height: math.unit(6 + 1 / 12, "feet"),
  17335. weight: math.unit(155, "lb"),
  17336. name: "Anthro",
  17337. image: {
  17338. source: "./media/characters/hearth/anthro.svg",
  17339. extra: 1178/1136,
  17340. bottom: 28/1206
  17341. }
  17342. },
  17343. feral: {
  17344. height: math.unit(3.78, "feet"),
  17345. weight: math.unit(35, "kg"),
  17346. name: "Feral",
  17347. image: {
  17348. source: "./media/characters/hearth/feral.svg",
  17349. extra: 153 / 135,
  17350. bottom: 0.03
  17351. }
  17352. },
  17353. },
  17354. [
  17355. {
  17356. name: "Normal",
  17357. height: math.unit(6 + 1 / 12, "feet"),
  17358. default: true
  17359. },
  17360. ]
  17361. ))
  17362. characterMakers.push(() => makeCharacter(
  17363. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17364. {
  17365. front: {
  17366. height: math.unit(6, "feet"),
  17367. weight: math.unit(182, "lb"),
  17368. name: "Front",
  17369. image: {
  17370. source: "./media/characters/ingrid/front.svg",
  17371. extra: 294 / 268,
  17372. bottom: 0.027
  17373. }
  17374. },
  17375. },
  17376. [
  17377. {
  17378. name: "Normal",
  17379. height: math.unit(6, "feet"),
  17380. default: true
  17381. },
  17382. ]
  17383. ))
  17384. characterMakers.push(() => makeCharacter(
  17385. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17386. {
  17387. eevee: {
  17388. height: math.unit(2 + 10 / 12, "feet"),
  17389. weight: math.unit(86, "lb"),
  17390. name: "Malgam",
  17391. image: {
  17392. source: "./media/characters/malgam/eevee.svg",
  17393. extra: 952/784,
  17394. bottom: 38/990
  17395. }
  17396. },
  17397. sylveon: {
  17398. height: math.unit(4, "feet"),
  17399. weight: math.unit(101, "lb"),
  17400. name: "Future Malgam",
  17401. rename: true,
  17402. image: {
  17403. source: "./media/characters/malgam/sylveon.svg",
  17404. extra: 371 / 325,
  17405. bottom: 0.015
  17406. }
  17407. },
  17408. gigantamax: {
  17409. height: math.unit(50, "feet"),
  17410. name: "Gigantamax Malgam",
  17411. rename: true,
  17412. image: {
  17413. source: "./media/characters/malgam/gigantamax.svg"
  17414. }
  17415. },
  17416. },
  17417. [
  17418. {
  17419. name: "Normal",
  17420. height: math.unit(2 + 10 / 12, "feet"),
  17421. default: true
  17422. },
  17423. ]
  17424. ))
  17425. characterMakers.push(() => makeCharacter(
  17426. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17427. {
  17428. front: {
  17429. height: math.unit(5 + 11 / 12, "feet"),
  17430. weight: math.unit(188, "lb"),
  17431. name: "Front",
  17432. image: {
  17433. source: "./media/characters/fleur/front.svg",
  17434. extra: 309 / 283,
  17435. bottom: 0.007
  17436. }
  17437. },
  17438. },
  17439. [
  17440. {
  17441. name: "Normal",
  17442. height: math.unit(5 + 11 / 12, "feet"),
  17443. default: true
  17444. },
  17445. ]
  17446. ))
  17447. characterMakers.push(() => makeCharacter(
  17448. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17449. {
  17450. front: {
  17451. height: math.unit(5 + 4 / 12, "feet"),
  17452. weight: math.unit(122, "lb"),
  17453. name: "Front",
  17454. image: {
  17455. source: "./media/characters/jude/front.svg",
  17456. extra: 288 / 273,
  17457. bottom: 0.03
  17458. }
  17459. },
  17460. },
  17461. [
  17462. {
  17463. name: "Normal",
  17464. height: math.unit(5 + 4 / 12, "feet"),
  17465. default: true
  17466. },
  17467. ]
  17468. ))
  17469. characterMakers.push(() => makeCharacter(
  17470. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17471. {
  17472. front: {
  17473. height: math.unit(5 + 11 / 12, "feet"),
  17474. weight: math.unit(190, "lb"),
  17475. name: "Front",
  17476. image: {
  17477. source: "./media/characters/seara/front.svg",
  17478. extra: 1,
  17479. bottom: 0.05
  17480. }
  17481. },
  17482. },
  17483. [
  17484. {
  17485. name: "Normal",
  17486. height: math.unit(5 + 11 / 12, "feet"),
  17487. default: true
  17488. },
  17489. ]
  17490. ))
  17491. characterMakers.push(() => makeCharacter(
  17492. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17493. {
  17494. front: {
  17495. height: math.unit(16 + 5 / 12, "feet"),
  17496. weight: math.unit(524, "lb"),
  17497. name: "Front",
  17498. image: {
  17499. source: "./media/characters/caspian-lugia/front.svg",
  17500. extra: 1,
  17501. bottom: 0.04
  17502. }
  17503. },
  17504. },
  17505. [
  17506. {
  17507. name: "Normal",
  17508. height: math.unit(16 + 5 / 12, "feet"),
  17509. default: true
  17510. },
  17511. ]
  17512. ))
  17513. characterMakers.push(() => makeCharacter(
  17514. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17515. {
  17516. front: {
  17517. height: math.unit(5 + 7 / 12, "feet"),
  17518. weight: math.unit(170, "lb"),
  17519. name: "Front",
  17520. image: {
  17521. source: "./media/characters/mika/front.svg",
  17522. extra: 1,
  17523. bottom: 0.016
  17524. }
  17525. },
  17526. },
  17527. [
  17528. {
  17529. name: "Normal",
  17530. height: math.unit(5 + 7 / 12, "feet"),
  17531. default: true
  17532. },
  17533. ]
  17534. ))
  17535. characterMakers.push(() => makeCharacter(
  17536. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17537. {
  17538. front: {
  17539. height: math.unit(6 + 2 / 12, "feet"),
  17540. weight: math.unit(268, "lb"),
  17541. name: "Front",
  17542. image: {
  17543. source: "./media/characters/sol/front.svg",
  17544. extra: 247 / 231,
  17545. bottom: 0.05
  17546. }
  17547. },
  17548. },
  17549. [
  17550. {
  17551. name: "Normal",
  17552. height: math.unit(6 + 2 / 12, "feet"),
  17553. default: true
  17554. },
  17555. ]
  17556. ))
  17557. characterMakers.push(() => makeCharacter(
  17558. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17559. {
  17560. buizel: {
  17561. height: math.unit(2 + 5 / 12, "feet"),
  17562. weight: math.unit(87, "lb"),
  17563. name: "Front",
  17564. image: {
  17565. source: "./media/characters/umiko/buizel.svg",
  17566. extra: 172 / 157,
  17567. bottom: 0.01
  17568. },
  17569. form: "buizel",
  17570. default: true
  17571. },
  17572. floatzel: {
  17573. height: math.unit(5 + 9 / 12, "feet"),
  17574. weight: math.unit(250, "lb"),
  17575. name: "Front",
  17576. image: {
  17577. source: "./media/characters/umiko/floatzel.svg",
  17578. extra: 1076/1006,
  17579. bottom: 15/1091
  17580. },
  17581. form: "floatzel",
  17582. default: true
  17583. },
  17584. },
  17585. [
  17586. {
  17587. name: "Normal",
  17588. height: math.unit(2 + 5 / 12, "feet"),
  17589. form: "buizel",
  17590. default: true
  17591. },
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(5 + 9 / 12, "feet"),
  17595. form: "floatzel",
  17596. default: true
  17597. },
  17598. ],
  17599. {
  17600. "buizel": {
  17601. name: "Buizel"
  17602. },
  17603. "floatzel": {
  17604. name: "Floatzel",
  17605. default: true
  17606. }
  17607. }
  17608. ))
  17609. characterMakers.push(() => makeCharacter(
  17610. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17611. {
  17612. front: {
  17613. height: math.unit(6 + 2 / 12, "feet"),
  17614. weight: math.unit(146, "lb"),
  17615. name: "Front",
  17616. image: {
  17617. source: "./media/characters/iliac/front.svg",
  17618. extra: 389 / 365,
  17619. bottom: 0.035
  17620. }
  17621. },
  17622. },
  17623. [
  17624. {
  17625. name: "Normal",
  17626. height: math.unit(6 + 2 / 12, "feet"),
  17627. default: true
  17628. },
  17629. ]
  17630. ))
  17631. characterMakers.push(() => makeCharacter(
  17632. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17633. {
  17634. front: {
  17635. height: math.unit(6, "feet"),
  17636. weight: math.unit(170, "lb"),
  17637. name: "Front",
  17638. image: {
  17639. source: "./media/characters/topaz/front.svg",
  17640. extra: 317 / 303,
  17641. bottom: 0.055
  17642. }
  17643. },
  17644. },
  17645. [
  17646. {
  17647. name: "Normal",
  17648. height: math.unit(6, "feet"),
  17649. default: true
  17650. },
  17651. ]
  17652. ))
  17653. characterMakers.push(() => makeCharacter(
  17654. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17655. {
  17656. front: {
  17657. height: math.unit(5 + 11 / 12, "feet"),
  17658. weight: math.unit(144, "lb"),
  17659. name: "Front",
  17660. image: {
  17661. source: "./media/characters/gabriel/front.svg",
  17662. extra: 285 / 262,
  17663. bottom: 0.004
  17664. }
  17665. },
  17666. },
  17667. [
  17668. {
  17669. name: "Normal",
  17670. height: math.unit(5 + 11 / 12, "feet"),
  17671. default: true
  17672. },
  17673. ]
  17674. ))
  17675. characterMakers.push(() => makeCharacter(
  17676. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17677. {
  17678. side: {
  17679. height: math.unit(6 + 5 / 12, "feet"),
  17680. weight: math.unit(300, "lb"),
  17681. name: "Side",
  17682. image: {
  17683. source: "./media/characters/tempest-suicune/side.svg",
  17684. extra: 195 / 154,
  17685. bottom: 0.04
  17686. }
  17687. },
  17688. },
  17689. [
  17690. {
  17691. name: "Normal",
  17692. height: math.unit(6 + 5 / 12, "feet"),
  17693. default: true
  17694. },
  17695. ]
  17696. ))
  17697. characterMakers.push(() => makeCharacter(
  17698. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17699. {
  17700. front: {
  17701. height: math.unit(7 + 2 / 12, "feet"),
  17702. weight: math.unit(322, "lb"),
  17703. name: "Front",
  17704. image: {
  17705. source: "./media/characters/vulcan/front.svg",
  17706. extra: 154 / 147,
  17707. bottom: 0.04
  17708. }
  17709. },
  17710. },
  17711. [
  17712. {
  17713. name: "Normal",
  17714. height: math.unit(7 + 2 / 12, "feet"),
  17715. default: true
  17716. },
  17717. ]
  17718. ))
  17719. characterMakers.push(() => makeCharacter(
  17720. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17721. {
  17722. front: {
  17723. height: math.unit(5 + 10 / 12, "feet"),
  17724. weight: math.unit(264, "lb"),
  17725. name: "Front",
  17726. image: {
  17727. source: "./media/characters/gault/front.svg",
  17728. extra: 161 / 140,
  17729. bottom: 0.028
  17730. }
  17731. },
  17732. },
  17733. [
  17734. {
  17735. name: "Normal",
  17736. height: math.unit(5 + 10 / 12, "feet"),
  17737. default: true
  17738. },
  17739. ]
  17740. ))
  17741. characterMakers.push(() => makeCharacter(
  17742. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17743. {
  17744. front: {
  17745. height: math.unit(6, "feet"),
  17746. weight: math.unit(150, "lb"),
  17747. name: "Front",
  17748. image: {
  17749. source: "./media/characters/shard/front.svg",
  17750. extra: 273 / 238,
  17751. bottom: 0.02
  17752. }
  17753. },
  17754. },
  17755. [
  17756. {
  17757. name: "Normal",
  17758. height: math.unit(3 + 6 / 12, "feet"),
  17759. default: true
  17760. },
  17761. ]
  17762. ))
  17763. characterMakers.push(() => makeCharacter(
  17764. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17765. {
  17766. front: {
  17767. height: math.unit(5 + 11 / 12, "feet"),
  17768. weight: math.unit(146, "lb"),
  17769. name: "Front",
  17770. image: {
  17771. source: "./media/characters/ashe/front.svg",
  17772. extra: 400 / 373,
  17773. bottom: 0.01
  17774. }
  17775. },
  17776. },
  17777. [
  17778. {
  17779. name: "Normal",
  17780. height: math.unit(5 + 11 / 12, "feet"),
  17781. default: true
  17782. },
  17783. ]
  17784. ))
  17785. characterMakers.push(() => makeCharacter(
  17786. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17787. {
  17788. front: {
  17789. height: math.unit(5 + 5 / 12, "feet"),
  17790. weight: math.unit(135, "lb"),
  17791. name: "Front",
  17792. image: {
  17793. source: "./media/characters/beatrix/front.svg",
  17794. extra: 392 / 379,
  17795. bottom: 0.01
  17796. }
  17797. },
  17798. },
  17799. [
  17800. {
  17801. name: "Normal",
  17802. height: math.unit(6, "feet"),
  17803. default: true
  17804. },
  17805. ]
  17806. ))
  17807. characterMakers.push(() => makeCharacter(
  17808. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17809. {
  17810. front: {
  17811. height: math.unit(6 + 2/12, "feet"),
  17812. weight: math.unit(135, "lb"),
  17813. name: "Front",
  17814. image: {
  17815. source: "./media/characters/ignatius/front.svg",
  17816. extra: 1380/1259,
  17817. bottom: 27/1407
  17818. }
  17819. },
  17820. },
  17821. [
  17822. {
  17823. name: "Normal",
  17824. height: math.unit(6 + 2/12, "feet"),
  17825. default: true
  17826. },
  17827. ]
  17828. ))
  17829. characterMakers.push(() => makeCharacter(
  17830. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17831. {
  17832. front: {
  17833. height: math.unit(6 + 2 / 12, "feet"),
  17834. weight: math.unit(138, "lb"),
  17835. name: "Front",
  17836. image: {
  17837. source: "./media/characters/mei-li/front.svg",
  17838. extra: 237 / 229,
  17839. bottom: 0.03
  17840. }
  17841. },
  17842. },
  17843. [
  17844. {
  17845. name: "Normal",
  17846. height: math.unit(6 + 2 / 12, "feet"),
  17847. default: true
  17848. },
  17849. ]
  17850. ))
  17851. characterMakers.push(() => makeCharacter(
  17852. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17853. {
  17854. front: {
  17855. height: math.unit(2 + 4 / 12, "feet"),
  17856. weight: math.unit(62, "lb"),
  17857. name: "Front",
  17858. image: {
  17859. source: "./media/characters/puru/front.svg",
  17860. extra: 206 / 149,
  17861. bottom: 0.06
  17862. }
  17863. },
  17864. },
  17865. [
  17866. {
  17867. name: "Normal",
  17868. height: math.unit(2 + 4 / 12, "feet"),
  17869. default: true
  17870. },
  17871. ]
  17872. ))
  17873. characterMakers.push(() => makeCharacter(
  17874. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17875. {
  17876. anthro: {
  17877. height: math.unit(5 + 8/12, "feet"),
  17878. weight: math.unit(200, "lb"),
  17879. energyNeed: math.unit(2000, "kcal"),
  17880. name: "Anthro",
  17881. image: {
  17882. source: "./media/characters/kee/anthro.svg",
  17883. extra: 3251/3184,
  17884. bottom: 250/3501
  17885. }
  17886. },
  17887. taur: {
  17888. height: math.unit(11, "feet"),
  17889. weight: math.unit(500, "lb"),
  17890. energyNeed: math.unit(5000, "kcal"),
  17891. name: "Taur",
  17892. image: {
  17893. source: "./media/characters/kee/taur.svg",
  17894. extra: 1362/1320,
  17895. bottom: 83/1445
  17896. }
  17897. },
  17898. },
  17899. [
  17900. {
  17901. name: "Normal",
  17902. height: math.unit(5 + 8/12, "feet"),
  17903. default: true
  17904. },
  17905. {
  17906. name: "Macro",
  17907. height: math.unit(35, "feet")
  17908. },
  17909. ]
  17910. ))
  17911. characterMakers.push(() => makeCharacter(
  17912. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17913. {
  17914. anthro: {
  17915. height: math.unit(7, "feet"),
  17916. weight: math.unit(190, "lb"),
  17917. name: "Anthro",
  17918. image: {
  17919. source: "./media/characters/cobalt-dracha/anthro.svg",
  17920. extra: 231 / 225,
  17921. bottom: 0.04
  17922. }
  17923. },
  17924. feral: {
  17925. height: math.unit(9 + 7 / 12, "feet"),
  17926. weight: math.unit(294, "lb"),
  17927. name: "Feral",
  17928. image: {
  17929. source: "./media/characters/cobalt-dracha/feral.svg",
  17930. extra: 692 / 633,
  17931. bottom: 0.05
  17932. }
  17933. },
  17934. },
  17935. [
  17936. {
  17937. name: "Normal",
  17938. height: math.unit(7, "feet"),
  17939. default: true
  17940. },
  17941. ]
  17942. ))
  17943. characterMakers.push(() => makeCharacter(
  17944. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17945. {
  17946. fallen: {
  17947. height: math.unit(11 + 8 / 12, "feet"),
  17948. weight: math.unit(485, "lb"),
  17949. name: "Java (Fallen)",
  17950. rename: true,
  17951. image: {
  17952. source: "./media/characters/java/fallen.svg",
  17953. extra: 226 / 208,
  17954. bottom: 0.005
  17955. }
  17956. },
  17957. godkin: {
  17958. height: math.unit(10 + 6 / 12, "feet"),
  17959. weight: math.unit(328, "lb"),
  17960. name: "Java (Godkin)",
  17961. rename: true,
  17962. image: {
  17963. source: "./media/characters/java/godkin.svg",
  17964. extra: 1104/1068,
  17965. bottom: 36/1140
  17966. }
  17967. },
  17968. },
  17969. [
  17970. {
  17971. name: "Normal",
  17972. height: math.unit(11 + 8 / 12, "feet"),
  17973. default: true
  17974. },
  17975. ]
  17976. ))
  17977. characterMakers.push(() => makeCharacter(
  17978. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17979. {
  17980. front: {
  17981. height: math.unit(5 + 9 / 12, "feet"),
  17982. weight: math.unit(170, "lb"),
  17983. name: "Front",
  17984. image: {
  17985. source: "./media/characters/purna/front.svg",
  17986. extra: 239 / 229,
  17987. bottom: 0.01
  17988. }
  17989. },
  17990. },
  17991. [
  17992. {
  17993. name: "Normal",
  17994. height: math.unit(5 + 9 / 12, "feet"),
  17995. default: true
  17996. },
  17997. ]
  17998. ))
  17999. characterMakers.push(() => makeCharacter(
  18000. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  18001. {
  18002. front: {
  18003. height: math.unit(5 + 9 / 12, "feet"),
  18004. weight: math.unit(142, "lb"),
  18005. name: "Front",
  18006. image: {
  18007. source: "./media/characters/kuva/front.svg",
  18008. extra: 281 / 271,
  18009. bottom: 0.006
  18010. }
  18011. },
  18012. },
  18013. [
  18014. {
  18015. name: "Normal",
  18016. height: math.unit(5 + 9 / 12, "feet"),
  18017. default: true
  18018. },
  18019. ]
  18020. ))
  18021. characterMakers.push(() => makeCharacter(
  18022. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  18023. {
  18024. anthro: {
  18025. height: math.unit(9 + 2 / 12, "feet"),
  18026. weight: math.unit(270, "lb"),
  18027. name: "Anthro",
  18028. image: {
  18029. source: "./media/characters/embra/anthro.svg",
  18030. extra: 200 / 187,
  18031. bottom: 0.02
  18032. }
  18033. },
  18034. feral: {
  18035. height: math.unit(18 + 8 / 12, "feet"),
  18036. weight: math.unit(576, "lb"),
  18037. name: "Feral",
  18038. image: {
  18039. source: "./media/characters/embra/feral.svg",
  18040. extra: 152 / 137,
  18041. bottom: 0.037
  18042. }
  18043. },
  18044. },
  18045. [
  18046. {
  18047. name: "Normal",
  18048. height: math.unit(9 + 2 / 12, "feet"),
  18049. default: true
  18050. },
  18051. ]
  18052. ))
  18053. characterMakers.push(() => makeCharacter(
  18054. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  18055. {
  18056. anthro: {
  18057. height: math.unit(10 + 9 / 12, "feet"),
  18058. weight: math.unit(224, "lb"),
  18059. name: "Anthro",
  18060. image: {
  18061. source: "./media/characters/grottos/anthro.svg",
  18062. extra: 350 / 332,
  18063. bottom: 0.045
  18064. }
  18065. },
  18066. feral: {
  18067. height: math.unit(20 + 7 / 12, "feet"),
  18068. weight: math.unit(629, "lb"),
  18069. name: "Feral",
  18070. image: {
  18071. source: "./media/characters/grottos/feral.svg",
  18072. extra: 207 / 190,
  18073. bottom: 0.05
  18074. }
  18075. },
  18076. },
  18077. [
  18078. {
  18079. name: "Normal",
  18080. height: math.unit(10 + 9 / 12, "feet"),
  18081. default: true
  18082. },
  18083. ]
  18084. ))
  18085. characterMakers.push(() => makeCharacter(
  18086. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  18087. {
  18088. anthro: {
  18089. height: math.unit(9 + 6 / 12, "feet"),
  18090. weight: math.unit(298, "lb"),
  18091. name: "Anthro",
  18092. image: {
  18093. source: "./media/characters/frifna/anthro.svg",
  18094. extra: 282 / 269,
  18095. bottom: 0.015
  18096. }
  18097. },
  18098. feral: {
  18099. height: math.unit(16 + 2 / 12, "feet"),
  18100. weight: math.unit(624, "lb"),
  18101. name: "Feral",
  18102. image: {
  18103. source: "./media/characters/frifna/feral.svg"
  18104. }
  18105. },
  18106. },
  18107. [
  18108. {
  18109. name: "Normal",
  18110. height: math.unit(9 + 6 / 12, "feet"),
  18111. default: true
  18112. },
  18113. ]
  18114. ))
  18115. characterMakers.push(() => makeCharacter(
  18116. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  18117. {
  18118. front: {
  18119. height: math.unit(6 + 2 / 12, "feet"),
  18120. weight: math.unit(168, "lb"),
  18121. name: "Front",
  18122. image: {
  18123. source: "./media/characters/elise/front.svg",
  18124. extra: 276 / 271
  18125. }
  18126. },
  18127. },
  18128. [
  18129. {
  18130. name: "Normal",
  18131. height: math.unit(6 + 2 / 12, "feet"),
  18132. default: true
  18133. },
  18134. ]
  18135. ))
  18136. characterMakers.push(() => makeCharacter(
  18137. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  18138. {
  18139. front: {
  18140. height: math.unit(5 + 10 / 12, "feet"),
  18141. weight: math.unit(210, "lb"),
  18142. name: "Front",
  18143. image: {
  18144. source: "./media/characters/glade/front.svg",
  18145. extra: 258 / 247,
  18146. bottom: 0.008
  18147. }
  18148. },
  18149. },
  18150. [
  18151. {
  18152. name: "Normal",
  18153. height: math.unit(5 + 10 / 12, "feet"),
  18154. default: true
  18155. },
  18156. ]
  18157. ))
  18158. characterMakers.push(() => makeCharacter(
  18159. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  18160. {
  18161. front: {
  18162. height: math.unit(5 + 10 / 12, "feet"),
  18163. weight: math.unit(129, "lb"),
  18164. name: "Front",
  18165. image: {
  18166. source: "./media/characters/rina/front.svg",
  18167. extra: 266 / 255,
  18168. bottom: 0.005
  18169. }
  18170. },
  18171. },
  18172. [
  18173. {
  18174. name: "Normal",
  18175. height: math.unit(5 + 10 / 12, "feet"),
  18176. default: true
  18177. },
  18178. ]
  18179. ))
  18180. characterMakers.push(() => makeCharacter(
  18181. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  18182. {
  18183. front: {
  18184. height: math.unit(6 + 1 / 12, "feet"),
  18185. weight: math.unit(192, "lb"),
  18186. name: "Front",
  18187. image: {
  18188. source: "./media/characters/veronica/front.svg",
  18189. extra: 319 / 309,
  18190. bottom: 0.005
  18191. }
  18192. },
  18193. },
  18194. [
  18195. {
  18196. name: "Normal",
  18197. height: math.unit(6 + 1 / 12, "feet"),
  18198. default: true
  18199. },
  18200. ]
  18201. ))
  18202. characterMakers.push(() => makeCharacter(
  18203. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  18204. {
  18205. front: {
  18206. height: math.unit(9 + 3 / 12, "feet"),
  18207. weight: math.unit(1100, "lb"),
  18208. name: "Front",
  18209. image: {
  18210. source: "./media/characters/braxton/front.svg",
  18211. extra: 1057 / 984,
  18212. bottom: 0.05
  18213. }
  18214. },
  18215. },
  18216. [
  18217. {
  18218. name: "Normal",
  18219. height: math.unit(9 + 3 / 12, "feet")
  18220. },
  18221. {
  18222. name: "Giant",
  18223. height: math.unit(300, "feet"),
  18224. default: true
  18225. },
  18226. {
  18227. name: "Macro",
  18228. height: math.unit(700, "feet")
  18229. },
  18230. {
  18231. name: "Megamacro",
  18232. height: math.unit(6000, "feet")
  18233. },
  18234. ]
  18235. ))
  18236. characterMakers.push(() => makeCharacter(
  18237. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  18238. {
  18239. front: {
  18240. height: math.unit(6 + 7 / 12, "feet"),
  18241. weight: math.unit(150, "lb"),
  18242. name: "Front",
  18243. image: {
  18244. source: "./media/characters/blue-feyonics/front.svg",
  18245. extra: 1403 / 1306,
  18246. bottom: 0.047
  18247. }
  18248. },
  18249. },
  18250. [
  18251. {
  18252. name: "Normal",
  18253. height: math.unit(6 + 7 / 12, "feet"),
  18254. default: true
  18255. },
  18256. ]
  18257. ))
  18258. characterMakers.push(() => makeCharacter(
  18259. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18260. {
  18261. front: {
  18262. height: math.unit(1.8, "meters"),
  18263. weight: math.unit(60, "kg"),
  18264. name: "Front",
  18265. image: {
  18266. source: "./media/characters/maxwell/front.svg",
  18267. extra: 2060 / 1873
  18268. }
  18269. },
  18270. },
  18271. [
  18272. {
  18273. name: "Micro",
  18274. height: math.unit(1, "mm")
  18275. },
  18276. {
  18277. name: "Normal",
  18278. height: math.unit(1.8, "meter"),
  18279. default: true
  18280. },
  18281. {
  18282. name: "Macro",
  18283. height: math.unit(30, "meters")
  18284. },
  18285. {
  18286. name: "Megamacro",
  18287. height: math.unit(10, "km")
  18288. },
  18289. ]
  18290. ))
  18291. characterMakers.push(() => makeCharacter(
  18292. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18293. {
  18294. front: {
  18295. height: math.unit(6, "feet"),
  18296. weight: math.unit(150, "lb"),
  18297. name: "Front",
  18298. image: {
  18299. source: "./media/characters/jack/front.svg",
  18300. extra: 1754 / 1640,
  18301. bottom: 0.01
  18302. }
  18303. },
  18304. },
  18305. [
  18306. {
  18307. name: "Normal",
  18308. height: math.unit(80000, "feet"),
  18309. default: true
  18310. },
  18311. {
  18312. name: "Max size",
  18313. height: math.unit(10, "lightyears")
  18314. },
  18315. ]
  18316. ))
  18317. characterMakers.push(() => makeCharacter(
  18318. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18319. {
  18320. urban: {
  18321. height: math.unit(5, "feet"),
  18322. weight: math.unit(240, "lb"),
  18323. name: "Urban",
  18324. image: {
  18325. source: "./media/characters/cafat/urban.svg",
  18326. extra: 1223/1126,
  18327. bottom: 205/1428
  18328. }
  18329. },
  18330. summer: {
  18331. height: math.unit(5, "feet"),
  18332. weight: math.unit(240, "lb"),
  18333. name: "Summer",
  18334. image: {
  18335. source: "./media/characters/cafat/summer.svg",
  18336. extra: 1223/1126,
  18337. bottom: 205/1428
  18338. }
  18339. },
  18340. winter: {
  18341. height: math.unit(5, "feet"),
  18342. weight: math.unit(240, "lb"),
  18343. name: "Winter",
  18344. image: {
  18345. source: "./media/characters/cafat/winter.svg",
  18346. extra: 1223/1126,
  18347. bottom: 205/1428
  18348. }
  18349. },
  18350. lingerie: {
  18351. height: math.unit(5, "feet"),
  18352. weight: math.unit(240, "lb"),
  18353. name: "Lingerie",
  18354. image: {
  18355. source: "./media/characters/cafat/lingerie.svg",
  18356. extra: 1223/1126,
  18357. bottom: 205/1428
  18358. }
  18359. },
  18360. upright: {
  18361. height: math.unit(6.3, "feet"),
  18362. weight: math.unit(240, "lb"),
  18363. name: "Upright",
  18364. image: {
  18365. source: "./media/characters/cafat/upright.svg",
  18366. bottom: 0.01
  18367. }
  18368. },
  18369. uprightFull: {
  18370. height: math.unit(6.3, "feet"),
  18371. weight: math.unit(240, "lb"),
  18372. name: "Upright (Full)",
  18373. image: {
  18374. source: "./media/characters/cafat/upright-full.svg",
  18375. bottom: 0.01
  18376. }
  18377. },
  18378. },
  18379. [
  18380. {
  18381. name: "Small",
  18382. height: math.unit(4, "feet"),
  18383. default: true
  18384. },
  18385. {
  18386. name: "Large",
  18387. height: math.unit(13, "feet")
  18388. },
  18389. ]
  18390. ))
  18391. characterMakers.push(() => makeCharacter(
  18392. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18393. {
  18394. front: {
  18395. height: math.unit(6, "feet"),
  18396. weight: math.unit(150, "lb"),
  18397. name: "Front",
  18398. image: {
  18399. source: "./media/characters/verin-raharra/front.svg",
  18400. extra: 5019 / 4835,
  18401. bottom: 0.023
  18402. }
  18403. },
  18404. },
  18405. [
  18406. {
  18407. name: "Normal",
  18408. height: math.unit(7 + 5 / 12, "feet"),
  18409. default: true
  18410. },
  18411. {
  18412. name: "Upsized",
  18413. height: math.unit(20, "feet")
  18414. },
  18415. ]
  18416. ))
  18417. characterMakers.push(() => makeCharacter(
  18418. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18419. {
  18420. front: {
  18421. height: math.unit(7, "feet"),
  18422. weight: math.unit(230, "lb"),
  18423. name: "Front",
  18424. image: {
  18425. source: "./media/characters/nakata/front.svg",
  18426. extra: 1.005,
  18427. bottom: 0.01
  18428. }
  18429. },
  18430. },
  18431. [
  18432. {
  18433. name: "Normal",
  18434. height: math.unit(7, "feet"),
  18435. default: true
  18436. },
  18437. {
  18438. name: "Big",
  18439. height: math.unit(14, "feet")
  18440. },
  18441. {
  18442. name: "Macro",
  18443. height: math.unit(400, "feet")
  18444. },
  18445. ]
  18446. ))
  18447. characterMakers.push(() => makeCharacter(
  18448. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18449. {
  18450. front: {
  18451. height: math.unit(4.91, "feet"),
  18452. weight: math.unit(100, "lb"),
  18453. name: "Front",
  18454. image: {
  18455. source: "./media/characters/lily/front.svg",
  18456. extra: 1585 / 1415,
  18457. bottom: 0.02
  18458. }
  18459. },
  18460. },
  18461. [
  18462. {
  18463. name: "Normal",
  18464. height: math.unit(4.91, "feet"),
  18465. default: true
  18466. },
  18467. ]
  18468. ))
  18469. characterMakers.push(() => makeCharacter(
  18470. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18471. {
  18472. laying: {
  18473. height: math.unit(4 + 4 / 12, "feet"),
  18474. weight: math.unit(600, "lb"),
  18475. name: "Laying",
  18476. image: {
  18477. source: "./media/characters/sheila/laying.svg",
  18478. extra: 1333 / 1265,
  18479. bottom: 0.16
  18480. }
  18481. },
  18482. },
  18483. [
  18484. {
  18485. name: "Normal",
  18486. height: math.unit(4 + 4 / 12, "feet"),
  18487. default: true
  18488. },
  18489. ]
  18490. ))
  18491. characterMakers.push(() => makeCharacter(
  18492. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18493. {
  18494. front: {
  18495. height: math.unit(6, "feet"),
  18496. weight: math.unit(190, "lb"),
  18497. name: "Front",
  18498. image: {
  18499. source: "./media/characters/sax/front.svg",
  18500. extra: 1187 / 973,
  18501. bottom: 0.042
  18502. }
  18503. },
  18504. },
  18505. [
  18506. {
  18507. name: "Micro",
  18508. height: math.unit(4, "inches"),
  18509. default: true
  18510. },
  18511. ]
  18512. ))
  18513. characterMakers.push(() => makeCharacter(
  18514. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18515. {
  18516. front: {
  18517. height: math.unit(6, "feet"),
  18518. weight: math.unit(150, "lb"),
  18519. name: "Front",
  18520. image: {
  18521. source: "./media/characters/pandora/front.svg",
  18522. extra: 2720 / 2556,
  18523. bottom: 0.015
  18524. }
  18525. },
  18526. back: {
  18527. height: math.unit(6, "feet"),
  18528. weight: math.unit(150, "lb"),
  18529. name: "Back",
  18530. image: {
  18531. source: "./media/characters/pandora/back.svg",
  18532. extra: 2720 / 2556,
  18533. bottom: 0.01
  18534. }
  18535. },
  18536. beans: {
  18537. height: math.unit(6 / 8, "feet"),
  18538. name: "Beans",
  18539. image: {
  18540. source: "./media/characters/pandora/beans.svg"
  18541. }
  18542. },
  18543. collar: {
  18544. height: math.unit(0.31, "feet"),
  18545. name: "Collar",
  18546. image: {
  18547. source: "./media/characters/pandora/collar.svg"
  18548. }
  18549. },
  18550. skirt: {
  18551. height: math.unit(6, "feet"),
  18552. weight: math.unit(150, "lb"),
  18553. name: "Skirt",
  18554. image: {
  18555. source: "./media/characters/pandora/skirt.svg",
  18556. extra: 1622 / 1525,
  18557. bottom: 0.015
  18558. }
  18559. },
  18560. hoodie: {
  18561. height: math.unit(6, "feet"),
  18562. weight: math.unit(150, "lb"),
  18563. name: "Hoodie",
  18564. image: {
  18565. source: "./media/characters/pandora/hoodie.svg",
  18566. extra: 1622 / 1525,
  18567. bottom: 0.015
  18568. }
  18569. },
  18570. casual: {
  18571. height: math.unit(6, "feet"),
  18572. weight: math.unit(150, "lb"),
  18573. name: "Casual",
  18574. image: {
  18575. source: "./media/characters/pandora/casual.svg",
  18576. extra: 1622 / 1525,
  18577. bottom: 0.015
  18578. }
  18579. },
  18580. },
  18581. [
  18582. {
  18583. name: "Normal",
  18584. height: math.unit(6, "feet")
  18585. },
  18586. {
  18587. name: "Big Steppy",
  18588. height: math.unit(1, "km"),
  18589. default: true
  18590. },
  18591. {
  18592. name: "Galactic Steppy",
  18593. height: math.unit(2, "gigameters")
  18594. },
  18595. ]
  18596. ))
  18597. characterMakers.push(() => makeCharacter(
  18598. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18599. {
  18600. side: {
  18601. height: math.unit(10, "feet"),
  18602. weight: math.unit(800, "kg"),
  18603. name: "Side",
  18604. image: {
  18605. source: "./media/characters/venio-darcony/side.svg",
  18606. extra: 1373 / 1003,
  18607. bottom: 0.037
  18608. }
  18609. },
  18610. front: {
  18611. height: math.unit(19, "feet"),
  18612. weight: math.unit(800, "kg"),
  18613. name: "Front",
  18614. image: {
  18615. source: "./media/characters/venio-darcony/front.svg"
  18616. }
  18617. },
  18618. back: {
  18619. height: math.unit(19, "feet"),
  18620. weight: math.unit(800, "kg"),
  18621. name: "Back",
  18622. image: {
  18623. source: "./media/characters/venio-darcony/back.svg"
  18624. }
  18625. },
  18626. sideNsfw: {
  18627. height: math.unit(10, "feet"),
  18628. weight: math.unit(800, "kg"),
  18629. name: "Side (NSFW)",
  18630. image: {
  18631. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18632. extra: 1373 / 1003,
  18633. bottom: 0.037
  18634. }
  18635. },
  18636. frontNsfw: {
  18637. height: math.unit(19, "feet"),
  18638. weight: math.unit(800, "kg"),
  18639. name: "Front (NSFW)",
  18640. image: {
  18641. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18642. }
  18643. },
  18644. backNsfw: {
  18645. height: math.unit(19, "feet"),
  18646. weight: math.unit(800, "kg"),
  18647. name: "Back (NSFW)",
  18648. image: {
  18649. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18650. }
  18651. },
  18652. sideArmored: {
  18653. height: math.unit(10, "feet"),
  18654. weight: math.unit(800, "kg"),
  18655. name: "Side (Armored)",
  18656. image: {
  18657. source: "./media/characters/venio-darcony/side-armored.svg",
  18658. extra: 1373 / 1003,
  18659. bottom: 0.037
  18660. }
  18661. },
  18662. frontArmored: {
  18663. height: math.unit(19, "feet"),
  18664. weight: math.unit(900, "kg"),
  18665. name: "Front (Armored)",
  18666. image: {
  18667. source: "./media/characters/venio-darcony/front-armored.svg"
  18668. }
  18669. },
  18670. backArmored: {
  18671. height: math.unit(19, "feet"),
  18672. weight: math.unit(900, "kg"),
  18673. name: "Back (Armored)",
  18674. image: {
  18675. source: "./media/characters/venio-darcony/back-armored.svg"
  18676. }
  18677. },
  18678. sword: {
  18679. height: math.unit(10, "feet"),
  18680. weight: math.unit(50, "lb"),
  18681. name: "Sword",
  18682. image: {
  18683. source: "./media/characters/venio-darcony/sword.svg"
  18684. }
  18685. },
  18686. },
  18687. [
  18688. {
  18689. name: "Normal",
  18690. height: math.unit(10, "feet")
  18691. },
  18692. {
  18693. name: "Macro",
  18694. height: math.unit(130, "feet"),
  18695. default: true
  18696. },
  18697. {
  18698. name: "Macro+",
  18699. height: math.unit(240, "feet")
  18700. },
  18701. ]
  18702. ))
  18703. characterMakers.push(() => makeCharacter(
  18704. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18705. {
  18706. front: {
  18707. height: math.unit(6, "feet"),
  18708. weight: math.unit(150, "lb"),
  18709. name: "Front",
  18710. image: {
  18711. source: "./media/characters/veski/front.svg",
  18712. extra: 1299 / 1225,
  18713. bottom: 0.04
  18714. }
  18715. },
  18716. back: {
  18717. height: math.unit(6, "feet"),
  18718. weight: math.unit(150, "lb"),
  18719. name: "Back",
  18720. image: {
  18721. source: "./media/characters/veski/back.svg",
  18722. extra: 1299 / 1225,
  18723. bottom: 0.008
  18724. }
  18725. },
  18726. maw: {
  18727. height: math.unit(1.5 * 1.21, "feet"),
  18728. name: "Maw",
  18729. image: {
  18730. source: "./media/characters/veski/maw.svg"
  18731. }
  18732. },
  18733. },
  18734. [
  18735. {
  18736. name: "Macro",
  18737. height: math.unit(2, "km"),
  18738. default: true
  18739. },
  18740. ]
  18741. ))
  18742. characterMakers.push(() => makeCharacter(
  18743. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18744. {
  18745. front: {
  18746. height: math.unit(5 + 7 / 12, "feet"),
  18747. name: "Front",
  18748. image: {
  18749. source: "./media/characters/isabelle/front.svg",
  18750. extra: 2130 / 1976,
  18751. bottom: 0.05
  18752. }
  18753. },
  18754. },
  18755. [
  18756. {
  18757. name: "Supermicro",
  18758. height: math.unit(10, "micrometers")
  18759. },
  18760. {
  18761. name: "Micro",
  18762. height: math.unit(1, "inch")
  18763. },
  18764. {
  18765. name: "Tiny",
  18766. height: math.unit(5, "inches")
  18767. },
  18768. {
  18769. name: "Standard",
  18770. height: math.unit(5 + 7 / 12, "inches")
  18771. },
  18772. {
  18773. name: "Macro",
  18774. height: math.unit(80, "meters"),
  18775. default: true
  18776. },
  18777. {
  18778. name: "Megamacro",
  18779. height: math.unit(250, "meters")
  18780. },
  18781. {
  18782. name: "Gigamacro",
  18783. height: math.unit(5, "km")
  18784. },
  18785. {
  18786. name: "Cosmic",
  18787. height: math.unit(2.5e6, "miles")
  18788. },
  18789. ]
  18790. ))
  18791. characterMakers.push(() => makeCharacter(
  18792. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18793. {
  18794. front: {
  18795. height: math.unit(6, "feet"),
  18796. weight: math.unit(150, "lb"),
  18797. name: "Front",
  18798. image: {
  18799. source: "./media/characters/hanzo/front.svg",
  18800. extra: 374 / 344,
  18801. bottom: 0.02
  18802. }
  18803. },
  18804. },
  18805. [
  18806. {
  18807. name: "Normal",
  18808. height: math.unit(8, "feet"),
  18809. default: true
  18810. },
  18811. ]
  18812. ))
  18813. characterMakers.push(() => makeCharacter(
  18814. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18815. {
  18816. front: {
  18817. height: math.unit(7, "feet"),
  18818. weight: math.unit(130, "lb"),
  18819. name: "Front",
  18820. image: {
  18821. source: "./media/characters/anna/front.svg",
  18822. extra: 169 / 145,
  18823. bottom: 0.06
  18824. }
  18825. },
  18826. full: {
  18827. height: math.unit(4.96, "feet"),
  18828. weight: math.unit(220, "lb"),
  18829. name: "Full",
  18830. image: {
  18831. source: "./media/characters/anna/full.svg",
  18832. extra: 138 / 114,
  18833. bottom: 0.15
  18834. }
  18835. },
  18836. tongue: {
  18837. height: math.unit(2.53, "feet"),
  18838. name: "Tongue",
  18839. image: {
  18840. source: "./media/characters/anna/tongue.svg"
  18841. }
  18842. },
  18843. },
  18844. [
  18845. {
  18846. name: "Normal",
  18847. height: math.unit(7, "feet"),
  18848. default: true
  18849. },
  18850. ]
  18851. ))
  18852. characterMakers.push(() => makeCharacter(
  18853. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18854. {
  18855. front: {
  18856. height: math.unit(7 + 1/12, "feet"),
  18857. weight: math.unit(150, "lb"),
  18858. name: "Front",
  18859. image: {
  18860. source: "./media/characters/ian-corvid/front.svg",
  18861. extra: 621/591,
  18862. bottom: 14/635
  18863. }
  18864. },
  18865. back: {
  18866. height: math.unit(7 + 1/12, "feet"),
  18867. weight: math.unit(150, "lb"),
  18868. name: "Back",
  18869. image: {
  18870. source: "./media/characters/ian-corvid/back.svg",
  18871. extra: 621/600,
  18872. bottom: 10/631
  18873. }
  18874. },
  18875. stomping: {
  18876. height: math.unit(7 + 1/12, "feet"),
  18877. weight: math.unit(150, "lb"),
  18878. name: "Stomping",
  18879. image: {
  18880. source: "./media/characters/ian-corvid/stomping.svg",
  18881. extra: 309/291,
  18882. bottom: 7/316
  18883. }
  18884. },
  18885. tongue: {
  18886. height: math.unit(3.9, "feet"),
  18887. name: "Tongue",
  18888. image: {
  18889. source: "./media/characters/ian-corvid/tongue.svg"
  18890. }
  18891. },
  18892. beak: {
  18893. height: math.unit(0.9, "feet"),
  18894. name: "Beak",
  18895. image: {
  18896. source: "./media/characters/ian-corvid/beak.svg"
  18897. }
  18898. },
  18899. sitting: {
  18900. height: math.unit(7 / 1.8, "feet"),
  18901. weight: math.unit(150, "lb"),
  18902. name: "Sitting",
  18903. image: {
  18904. source: "./media/characters/ian-corvid/sitting.svg",
  18905. extra: 1400 / 1269,
  18906. bottom: 0.15
  18907. }
  18908. },
  18909. },
  18910. [
  18911. {
  18912. name: "Tiny Microw",
  18913. height: math.unit(1, "inch")
  18914. },
  18915. {
  18916. name: "Microw",
  18917. height: math.unit(6, "inches")
  18918. },
  18919. {
  18920. name: "Crow",
  18921. height: math.unit(7 + 1 / 12, "feet"),
  18922. default: true
  18923. },
  18924. {
  18925. name: "Macrow",
  18926. height: math.unit(176, "feet")
  18927. },
  18928. ]
  18929. ))
  18930. characterMakers.push(() => makeCharacter(
  18931. { name: "Natalie Kellon", species: ["red-fox"], tags: ["anthro"] },
  18932. {
  18933. front: {
  18934. height: math.unit(5 + 7/12, "feet"),
  18935. weight: math.unit(170, "lb"),
  18936. name: "Front",
  18937. image: {
  18938. source: "./media/characters/natalie-kellon/front.svg",
  18939. extra: 1723/1656,
  18940. bottom: 87/1810
  18941. },
  18942. extraAttributes: {
  18943. "tailLength": {
  18944. name: "Tail Length",
  18945. power: 1,
  18946. type: "length",
  18947. base: math.unit(2 + 6/12, "feet")
  18948. },
  18949. }
  18950. },
  18951. back: {
  18952. height: math.unit(5 + 7/12, "feet"),
  18953. weight: math.unit(170, "lb"),
  18954. name: "Back",
  18955. image: {
  18956. source: "./media/characters/natalie-kellon/back.svg",
  18957. extra: 1738/1663,
  18958. bottom: 30/1768
  18959. },
  18960. extraAttributes: {
  18961. "tailLength": {
  18962. name: "Tail Length",
  18963. power: 1,
  18964. type: "length",
  18965. base: math.unit(2 + 6/12, "feet")
  18966. },
  18967. }
  18968. },
  18969. head: {
  18970. height: math.unit(1.67769, "feet"),
  18971. name: "Head",
  18972. image: {
  18973. source: "./media/characters/natalie-kellon/head.svg"
  18974. }
  18975. },
  18976. },
  18977. [
  18978. {
  18979. name: "Tiny",
  18980. height: math.unit(1/16, "inches")
  18981. },
  18982. {
  18983. name: "Micro",
  18984. height: math.unit(1, "inch")
  18985. },
  18986. {
  18987. name: "Small",
  18988. height: math.unit(5, "inches")
  18989. },
  18990. {
  18991. name: "Normal",
  18992. height: math.unit(5 + 7/12, "feet"),
  18993. default: true
  18994. },
  18995. {
  18996. name: "Amazon",
  18997. height: math.unit(13 + 6/12, "feet")
  18998. },
  18999. {
  19000. name: "Giantess",
  19001. height: math.unit(50, "feet")
  19002. },
  19003. {
  19004. name: "Massive",
  19005. height: math.unit(200, "feet")
  19006. },
  19007. {
  19008. name: "Titaness",
  19009. height: math.unit(2, "miles")
  19010. },
  19011. ]
  19012. ))
  19013. characterMakers.push(() => makeCharacter(
  19014. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  19015. {
  19016. front: {
  19017. height: math.unit(6, "feet"),
  19018. weight: math.unit(150, "lb"),
  19019. name: "Front",
  19020. image: {
  19021. source: "./media/characters/alluria/front.svg",
  19022. extra: 806 / 738,
  19023. bottom: 0.01
  19024. }
  19025. },
  19026. side: {
  19027. height: math.unit(6, "feet"),
  19028. weight: math.unit(150, "lb"),
  19029. name: "Side",
  19030. image: {
  19031. source: "./media/characters/alluria/side.svg",
  19032. extra: 800 / 750,
  19033. }
  19034. },
  19035. back: {
  19036. height: math.unit(6, "feet"),
  19037. weight: math.unit(150, "lb"),
  19038. name: "Back",
  19039. image: {
  19040. source: "./media/characters/alluria/back.svg",
  19041. extra: 806 / 738,
  19042. }
  19043. },
  19044. frontMaid: {
  19045. height: math.unit(6, "feet"),
  19046. weight: math.unit(150, "lb"),
  19047. name: "Front (Maid)",
  19048. image: {
  19049. source: "./media/characters/alluria/front-maid.svg",
  19050. extra: 806 / 738,
  19051. bottom: 0.01
  19052. }
  19053. },
  19054. sideMaid: {
  19055. height: math.unit(6, "feet"),
  19056. weight: math.unit(150, "lb"),
  19057. name: "Side (Maid)",
  19058. image: {
  19059. source: "./media/characters/alluria/side-maid.svg",
  19060. extra: 800 / 750,
  19061. bottom: 0.005
  19062. }
  19063. },
  19064. backMaid: {
  19065. height: math.unit(6, "feet"),
  19066. weight: math.unit(150, "lb"),
  19067. name: "Back (Maid)",
  19068. image: {
  19069. source: "./media/characters/alluria/back-maid.svg",
  19070. extra: 806 / 738,
  19071. }
  19072. },
  19073. },
  19074. [
  19075. {
  19076. name: "Micro",
  19077. height: math.unit(6, "inches"),
  19078. default: true
  19079. },
  19080. ]
  19081. ))
  19082. characterMakers.push(() => makeCharacter(
  19083. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  19084. {
  19085. front: {
  19086. height: math.unit(6, "feet"),
  19087. weight: math.unit(150, "lb"),
  19088. name: "Front",
  19089. image: {
  19090. source: "./media/characters/kyle/front.svg",
  19091. extra: 1069 / 962,
  19092. bottom: 77.228 / 1727.45
  19093. }
  19094. },
  19095. },
  19096. [
  19097. {
  19098. name: "Macro",
  19099. height: math.unit(150, "feet"),
  19100. default: true
  19101. },
  19102. ]
  19103. ))
  19104. characterMakers.push(() => makeCharacter(
  19105. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  19106. {
  19107. front: {
  19108. height: math.unit(6, "feet"),
  19109. weight: math.unit(300, "lb"),
  19110. name: "Front",
  19111. image: {
  19112. source: "./media/characters/duncan/front.svg",
  19113. extra: 1650 / 1482,
  19114. bottom: 0.05
  19115. }
  19116. },
  19117. },
  19118. [
  19119. {
  19120. name: "Macro",
  19121. height: math.unit(100, "feet"),
  19122. default: true
  19123. },
  19124. ]
  19125. ))
  19126. characterMakers.push(() => makeCharacter(
  19127. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  19128. {
  19129. front: {
  19130. height: math.unit(5 + 4 / 12, "feet"),
  19131. weight: math.unit(220, "lb"),
  19132. name: "Front",
  19133. image: {
  19134. source: "./media/characters/memory/front.svg",
  19135. extra: 3641 / 3545,
  19136. bottom: 0.03
  19137. }
  19138. },
  19139. back: {
  19140. height: math.unit(5 + 4 / 12, "feet"),
  19141. weight: math.unit(220, "lb"),
  19142. name: "Back",
  19143. image: {
  19144. source: "./media/characters/memory/back.svg",
  19145. extra: 3641 / 3545,
  19146. bottom: 0.025
  19147. }
  19148. },
  19149. frontSkirt: {
  19150. height: math.unit(5 + 4 / 12, "feet"),
  19151. weight: math.unit(220, "lb"),
  19152. name: "Front (Skirt)",
  19153. image: {
  19154. source: "./media/characters/memory/front-skirt.svg",
  19155. extra: 3641 / 3545,
  19156. bottom: 0.03
  19157. }
  19158. },
  19159. frontDress: {
  19160. height: math.unit(5 + 4 / 12, "feet"),
  19161. weight: math.unit(220, "lb"),
  19162. name: "Front (Dress)",
  19163. image: {
  19164. source: "./media/characters/memory/front-dress.svg",
  19165. extra: 3641 / 3545,
  19166. bottom: 0.03
  19167. }
  19168. },
  19169. },
  19170. [
  19171. {
  19172. name: "Micro",
  19173. height: math.unit(6, "inches"),
  19174. default: true
  19175. },
  19176. {
  19177. name: "Normal",
  19178. height: math.unit(5 + 4 / 12, "feet")
  19179. },
  19180. ]
  19181. ))
  19182. characterMakers.push(() => makeCharacter(
  19183. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  19184. {
  19185. front: {
  19186. height: math.unit(4 + 11 / 12, "feet"),
  19187. weight: math.unit(100, "lb"),
  19188. name: "Front",
  19189. image: {
  19190. source: "./media/characters/luno/front.svg",
  19191. extra: 1535 / 1487,
  19192. bottom: 0.03
  19193. }
  19194. },
  19195. },
  19196. [
  19197. {
  19198. name: "Micro",
  19199. height: math.unit(3, "inches")
  19200. },
  19201. {
  19202. name: "Normal",
  19203. height: math.unit(4 + 11 / 12, "feet"),
  19204. default: true
  19205. },
  19206. {
  19207. name: "Macro",
  19208. height: math.unit(300, "feet")
  19209. },
  19210. {
  19211. name: "Megamacro",
  19212. height: math.unit(700, "miles")
  19213. },
  19214. ]
  19215. ))
  19216. characterMakers.push(() => makeCharacter(
  19217. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  19218. {
  19219. front: {
  19220. height: math.unit(6 + 2 / 12, "feet"),
  19221. weight: math.unit(170, "lb"),
  19222. name: "Front",
  19223. image: {
  19224. source: "./media/characters/jamesy/front.svg",
  19225. extra: 440 / 382,
  19226. bottom: 0.005
  19227. }
  19228. },
  19229. },
  19230. [
  19231. {
  19232. name: "Micro",
  19233. height: math.unit(3, "inches")
  19234. },
  19235. {
  19236. name: "Normal",
  19237. height: math.unit(6 + 2 / 12, "feet"),
  19238. default: true
  19239. },
  19240. {
  19241. name: "Macro",
  19242. height: math.unit(300, "feet")
  19243. },
  19244. {
  19245. name: "Megamacro",
  19246. height: math.unit(700, "miles")
  19247. },
  19248. ]
  19249. ))
  19250. characterMakers.push(() => makeCharacter(
  19251. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  19252. {
  19253. front: {
  19254. height: math.unit(6, "feet"),
  19255. weight: math.unit(160, "lb"),
  19256. name: "Front",
  19257. image: {
  19258. source: "./media/characters/mark/front.svg",
  19259. extra: 3300 / 3100,
  19260. bottom: 136.42 / 3440.47
  19261. }
  19262. },
  19263. },
  19264. [
  19265. {
  19266. name: "Macro",
  19267. height: math.unit(120, "meters")
  19268. },
  19269. {
  19270. name: "Bigger Macro",
  19271. height: math.unit(350, "meters")
  19272. },
  19273. {
  19274. name: "Megamacro",
  19275. height: math.unit(8, "km"),
  19276. default: true
  19277. },
  19278. {
  19279. name: "Continental",
  19280. height: math.unit(4550, "km")
  19281. },
  19282. {
  19283. name: "Planetary",
  19284. height: math.unit(65000, "km")
  19285. },
  19286. ]
  19287. ))
  19288. characterMakers.push(() => makeCharacter(
  19289. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  19290. {
  19291. front: {
  19292. height: math.unit(6, "feet"),
  19293. weight: math.unit(400, "lb"),
  19294. name: "Front",
  19295. image: {
  19296. source: "./media/characters/mac/front.svg",
  19297. extra: 1048 / 987.7,
  19298. bottom: 60 / 1107.6,
  19299. }
  19300. },
  19301. },
  19302. [
  19303. {
  19304. name: "Macro",
  19305. height: math.unit(500, "feet"),
  19306. default: true
  19307. },
  19308. ]
  19309. ))
  19310. characterMakers.push(() => makeCharacter(
  19311. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19312. {
  19313. front: {
  19314. height: math.unit(5 + 2 / 12, "feet"),
  19315. weight: math.unit(190, "lb"),
  19316. name: "Front",
  19317. image: {
  19318. source: "./media/characters/bari/front.svg",
  19319. extra: 3156 / 2880,
  19320. bottom: 0.03
  19321. }
  19322. },
  19323. back: {
  19324. height: math.unit(5 + 2 / 12, "feet"),
  19325. weight: math.unit(190, "lb"),
  19326. name: "Back",
  19327. image: {
  19328. source: "./media/characters/bari/back.svg",
  19329. extra: 3260 / 2834,
  19330. bottom: 0.025
  19331. }
  19332. },
  19333. frontPlush: {
  19334. height: math.unit(5 + 2 / 12, "feet"),
  19335. weight: math.unit(190, "lb"),
  19336. name: "Front (Plush)",
  19337. image: {
  19338. source: "./media/characters/bari/front-plush.svg",
  19339. extra: 1112 / 1061,
  19340. bottom: 0.002
  19341. }
  19342. },
  19343. },
  19344. [
  19345. {
  19346. name: "Micro",
  19347. height: math.unit(3, "inches")
  19348. },
  19349. {
  19350. name: "Normal",
  19351. height: math.unit(5 + 2 / 12, "feet"),
  19352. default: true
  19353. },
  19354. {
  19355. name: "Macro",
  19356. height: math.unit(20, "feet")
  19357. },
  19358. ]
  19359. ))
  19360. characterMakers.push(() => makeCharacter(
  19361. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19362. {
  19363. front: {
  19364. height: math.unit(6 + 1 / 12, "feet"),
  19365. weight: math.unit(275, "lb"),
  19366. name: "Front",
  19367. image: {
  19368. source: "./media/characters/hunter-misha-raven/front.svg"
  19369. }
  19370. },
  19371. },
  19372. [
  19373. {
  19374. name: "Mortal",
  19375. height: math.unit(6 + 1 / 12, "feet")
  19376. },
  19377. {
  19378. name: "Divine",
  19379. height: math.unit(1.12134e34, "parsecs"),
  19380. default: true
  19381. },
  19382. ]
  19383. ))
  19384. characterMakers.push(() => makeCharacter(
  19385. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19386. {
  19387. front: {
  19388. height: math.unit(6 + 3 / 12, "feet"),
  19389. weight: math.unit(220, "lb"),
  19390. name: "Front",
  19391. image: {
  19392. source: "./media/characters/max-calore/front.svg",
  19393. extra: 1700 / 1648,
  19394. bottom: 0.01
  19395. }
  19396. },
  19397. back: {
  19398. height: math.unit(6 + 3 / 12, "feet"),
  19399. weight: math.unit(220, "lb"),
  19400. name: "Back",
  19401. image: {
  19402. source: "./media/characters/max-calore/back.svg",
  19403. extra: 1700 / 1648,
  19404. bottom: 0.01
  19405. }
  19406. },
  19407. },
  19408. [
  19409. {
  19410. name: "Normal",
  19411. height: math.unit(6 + 3 / 12, "feet"),
  19412. default: true
  19413. },
  19414. ]
  19415. ))
  19416. characterMakers.push(() => makeCharacter(
  19417. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19418. {
  19419. side: {
  19420. height: math.unit(2 + 8 / 12, "feet"),
  19421. weight: math.unit(99, "lb"),
  19422. name: "Side",
  19423. image: {
  19424. source: "./media/characters/aspen/side.svg",
  19425. extra: 152 / 138,
  19426. bottom: 0.032
  19427. }
  19428. },
  19429. },
  19430. [
  19431. {
  19432. name: "Normal",
  19433. height: math.unit(2 + 8 / 12, "feet"),
  19434. default: true
  19435. },
  19436. ]
  19437. ))
  19438. characterMakers.push(() => makeCharacter(
  19439. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19440. {
  19441. side: {
  19442. height: math.unit(3 + 2 / 12, "feet"),
  19443. weight: math.unit(224, "lb"),
  19444. name: "Side",
  19445. image: {
  19446. source: "./media/characters/sheila-feral-wolf/side.svg",
  19447. extra: 179 / 166,
  19448. bottom: 0.03
  19449. }
  19450. },
  19451. },
  19452. [
  19453. {
  19454. name: "Normal",
  19455. height: math.unit(3 + 2 / 12, "feet"),
  19456. default: true
  19457. },
  19458. ]
  19459. ))
  19460. characterMakers.push(() => makeCharacter(
  19461. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19462. {
  19463. side: {
  19464. height: math.unit(1 + 9 / 12, "feet"),
  19465. weight: math.unit(38, "lb"),
  19466. name: "Side",
  19467. image: {
  19468. source: "./media/characters/michelle/side.svg",
  19469. extra: 147 / 136.7,
  19470. bottom: 0.03
  19471. }
  19472. },
  19473. },
  19474. [
  19475. {
  19476. name: "Normal",
  19477. height: math.unit(1 + 9 / 12, "feet"),
  19478. default: true
  19479. },
  19480. ]
  19481. ))
  19482. characterMakers.push(() => makeCharacter(
  19483. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19484. {
  19485. front: {
  19486. height: math.unit(1.54, "feet"),
  19487. weight: math.unit(50, "lb"),
  19488. name: "Front",
  19489. image: {
  19490. source: "./media/characters/nino/front.svg"
  19491. }
  19492. },
  19493. },
  19494. [
  19495. {
  19496. name: "Normal",
  19497. height: math.unit(1.54, "feet"),
  19498. default: true
  19499. },
  19500. ]
  19501. ))
  19502. characterMakers.push(() => makeCharacter(
  19503. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19504. {
  19505. front: {
  19506. height: math.unit(1.49, "feet"),
  19507. weight: math.unit(45, "lb"),
  19508. name: "Front",
  19509. image: {
  19510. source: "./media/characters/viola/front.svg"
  19511. }
  19512. },
  19513. },
  19514. [
  19515. {
  19516. name: "Normal",
  19517. height: math.unit(1.49, "feet"),
  19518. default: true
  19519. },
  19520. ]
  19521. ))
  19522. characterMakers.push(() => makeCharacter(
  19523. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19524. {
  19525. front: {
  19526. height: math.unit(6 + 5 / 12, "feet"),
  19527. weight: math.unit(580, "lb"),
  19528. name: "Front",
  19529. image: {
  19530. source: "./media/characters/atlas/front.svg",
  19531. extra: 298.5 / 290,
  19532. bottom: 0.015
  19533. }
  19534. },
  19535. },
  19536. [
  19537. {
  19538. name: "Normal",
  19539. height: math.unit(6 + 5 / 12, "feet"),
  19540. default: true
  19541. },
  19542. ]
  19543. ))
  19544. characterMakers.push(() => makeCharacter(
  19545. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19546. {
  19547. side: {
  19548. height: math.unit(15.6, "inches"),
  19549. weight: math.unit(10, "lb"),
  19550. name: "Side",
  19551. image: {
  19552. source: "./media/characters/davy/side.svg",
  19553. extra: 200 / 170,
  19554. bottom: 0.01
  19555. }
  19556. },
  19557. },
  19558. [
  19559. {
  19560. name: "Normal",
  19561. height: math.unit(15.6, "inches"),
  19562. default: true
  19563. },
  19564. ]
  19565. ))
  19566. characterMakers.push(() => makeCharacter(
  19567. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19568. {
  19569. side: {
  19570. height: math.unit(4 + 8 / 12, "feet"),
  19571. weight: math.unit(166, "lb"),
  19572. name: "Side",
  19573. image: {
  19574. source: "./media/characters/fiona/side.svg",
  19575. extra: 232 / 220,
  19576. bottom: 0.03
  19577. }
  19578. },
  19579. },
  19580. [
  19581. {
  19582. name: "Normal",
  19583. height: math.unit(4 + 8 / 12, "feet"),
  19584. default: true
  19585. },
  19586. ]
  19587. ))
  19588. characterMakers.push(() => makeCharacter(
  19589. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19590. {
  19591. front: {
  19592. height: math.unit(26, "inches"),
  19593. weight: math.unit(35, "lb"),
  19594. name: "Front",
  19595. image: {
  19596. source: "./media/characters/lyla/front.svg",
  19597. bottom: 0.1
  19598. }
  19599. },
  19600. },
  19601. [
  19602. {
  19603. name: "Normal",
  19604. height: math.unit(3, "feet"),
  19605. default: true
  19606. },
  19607. ]
  19608. ))
  19609. characterMakers.push(() => makeCharacter(
  19610. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19611. {
  19612. side: {
  19613. height: math.unit(1.8, "feet"),
  19614. weight: math.unit(44, "lb"),
  19615. name: "Side",
  19616. image: {
  19617. source: "./media/characters/perseus/side.svg",
  19618. bottom: 0.21
  19619. }
  19620. },
  19621. },
  19622. [
  19623. {
  19624. name: "Normal",
  19625. height: math.unit(1.8, "feet"),
  19626. default: true
  19627. },
  19628. ]
  19629. ))
  19630. characterMakers.push(() => makeCharacter(
  19631. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19632. {
  19633. side: {
  19634. height: math.unit(4 + 2 / 12, "feet"),
  19635. weight: math.unit(20, "lb"),
  19636. name: "Side",
  19637. image: {
  19638. source: "./media/characters/remus/side.svg"
  19639. }
  19640. },
  19641. },
  19642. [
  19643. {
  19644. name: "Normal",
  19645. height: math.unit(4 + 2 / 12, "feet"),
  19646. default: true
  19647. },
  19648. ]
  19649. ))
  19650. characterMakers.push(() => makeCharacter(
  19651. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19652. {
  19653. front: {
  19654. height: math.unit(4 + 11 / 12, "feet"),
  19655. weight: math.unit(114, "lb"),
  19656. name: "Front",
  19657. image: {
  19658. source: "./media/characters/raf/front.svg",
  19659. extra: 1504/1339,
  19660. bottom: 26/1530
  19661. }
  19662. },
  19663. side: {
  19664. height: math.unit(4 + 11 / 12, "feet"),
  19665. weight: math.unit(114, "lb"),
  19666. name: "Side",
  19667. image: {
  19668. source: "./media/characters/raf/side.svg",
  19669. extra: 1466/1316,
  19670. bottom: 29/1495
  19671. }
  19672. },
  19673. paw: {
  19674. height: math.unit(1.45, "feet"),
  19675. name: "Paw",
  19676. image: {
  19677. source: "./media/characters/raf/paw.svg"
  19678. },
  19679. extraAttributes: {
  19680. "toeSize": {
  19681. name: "Toe Size",
  19682. power: 2,
  19683. type: "area",
  19684. base: math.unit(0.004, "m^2")
  19685. },
  19686. "padSize": {
  19687. name: "Pad Size",
  19688. power: 2,
  19689. type: "area",
  19690. base: math.unit(0.04, "m^2")
  19691. },
  19692. "footSize": {
  19693. name: "Foot Size",
  19694. power: 2,
  19695. type: "area",
  19696. base: math.unit(0.08, "m^2")
  19697. },
  19698. }
  19699. },
  19700. },
  19701. [
  19702. {
  19703. name: "Micro",
  19704. height: math.unit(2, "inches")
  19705. },
  19706. {
  19707. name: "Normal",
  19708. height: math.unit(4 + 11 / 12, "feet"),
  19709. default: true
  19710. },
  19711. {
  19712. name: "Macro",
  19713. height: math.unit(70, "feet")
  19714. },
  19715. ]
  19716. ))
  19717. characterMakers.push(() => makeCharacter(
  19718. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19719. {
  19720. front: {
  19721. height: math.unit(1.5, "meters"),
  19722. weight: math.unit(68, "kg"),
  19723. name: "Front",
  19724. image: {
  19725. source: "./media/characters/liam-einarr/front.svg",
  19726. extra: 2822 / 2666
  19727. }
  19728. },
  19729. back: {
  19730. height: math.unit(1.5, "meters"),
  19731. weight: math.unit(68, "kg"),
  19732. name: "Back",
  19733. image: {
  19734. source: "./media/characters/liam-einarr/back.svg",
  19735. extra: 2822 / 2666,
  19736. bottom: 0.015
  19737. }
  19738. },
  19739. },
  19740. [
  19741. {
  19742. name: "Normal",
  19743. height: math.unit(1.5, "meters"),
  19744. default: true
  19745. },
  19746. {
  19747. name: "Macro",
  19748. height: math.unit(150, "meters")
  19749. },
  19750. {
  19751. name: "Megamacro",
  19752. height: math.unit(35, "km")
  19753. },
  19754. ]
  19755. ))
  19756. characterMakers.push(() => makeCharacter(
  19757. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19758. {
  19759. front: {
  19760. height: math.unit(6, "feet"),
  19761. weight: math.unit(75, "kg"),
  19762. name: "Front",
  19763. image: {
  19764. source: "./media/characters/linda/front.svg",
  19765. extra: 930 / 874,
  19766. bottom: 0.004
  19767. }
  19768. },
  19769. },
  19770. [
  19771. {
  19772. name: "Normal",
  19773. height: math.unit(6, "feet"),
  19774. default: true
  19775. },
  19776. ]
  19777. ))
  19778. characterMakers.push(() => makeCharacter(
  19779. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19780. {
  19781. front: {
  19782. height: math.unit(6 + 8 / 12, "feet"),
  19783. weight: math.unit(220, "lb"),
  19784. name: "Front",
  19785. image: {
  19786. source: "./media/characters/caylex/front.svg",
  19787. extra: 821 / 772,
  19788. bottom: 0.07
  19789. }
  19790. },
  19791. back: {
  19792. height: math.unit(6 + 8 / 12, "feet"),
  19793. weight: math.unit(220, "lb"),
  19794. name: "Back",
  19795. image: {
  19796. source: "./media/characters/caylex/back.svg",
  19797. extra: 821 / 772,
  19798. bottom: 0.022
  19799. }
  19800. },
  19801. hand: {
  19802. height: math.unit(1.25, "feet"),
  19803. name: "Hand",
  19804. image: {
  19805. source: "./media/characters/caylex/hand.svg"
  19806. }
  19807. },
  19808. foot: {
  19809. height: math.unit(1.6, "feet"),
  19810. name: "Foot",
  19811. image: {
  19812. source: "./media/characters/caylex/foot.svg"
  19813. }
  19814. },
  19815. armored: {
  19816. height: math.unit(6 + 8 / 12, "feet"),
  19817. weight: math.unit(250, "lb"),
  19818. name: "Armored",
  19819. image: {
  19820. source: "./media/characters/caylex/armored.svg",
  19821. extra: 1420 / 1310,
  19822. bottom: 0.045
  19823. }
  19824. },
  19825. },
  19826. [
  19827. {
  19828. name: "Normal",
  19829. height: math.unit(6 + 8 / 12, "feet"),
  19830. default: true
  19831. },
  19832. {
  19833. name: "Normal+",
  19834. height: math.unit(12, "feet")
  19835. },
  19836. ]
  19837. ))
  19838. characterMakers.push(() => makeCharacter(
  19839. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19840. {
  19841. front: {
  19842. height: math.unit(7 + 6 / 12, "feet"),
  19843. weight: math.unit(288, "lb"),
  19844. name: "Front",
  19845. image: {
  19846. source: "./media/characters/alana/front.svg",
  19847. extra: 679 / 653,
  19848. bottom: 22.5 / 701
  19849. }
  19850. },
  19851. },
  19852. [
  19853. {
  19854. name: "Normal",
  19855. height: math.unit(7 + 6 / 12, "feet")
  19856. },
  19857. {
  19858. name: "Large",
  19859. height: math.unit(50, "feet")
  19860. },
  19861. {
  19862. name: "Macro",
  19863. height: math.unit(100, "feet"),
  19864. default: true
  19865. },
  19866. {
  19867. name: "Macro+",
  19868. height: math.unit(200, "feet")
  19869. },
  19870. ]
  19871. ))
  19872. characterMakers.push(() => makeCharacter(
  19873. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19874. {
  19875. front: {
  19876. height: math.unit(6 + 1 / 12, "feet"),
  19877. weight: math.unit(210, "lb"),
  19878. name: "Front",
  19879. image: {
  19880. source: "./media/characters/hasani/front.svg",
  19881. extra: 244 / 232,
  19882. bottom: 0.01
  19883. }
  19884. },
  19885. back: {
  19886. height: math.unit(6 + 1 / 12, "feet"),
  19887. weight: math.unit(210, "lb"),
  19888. name: "Back",
  19889. image: {
  19890. source: "./media/characters/hasani/back.svg",
  19891. extra: 244 / 232,
  19892. bottom: 0.01
  19893. }
  19894. },
  19895. },
  19896. [
  19897. {
  19898. name: "Normal",
  19899. height: math.unit(6 + 1 / 12, "feet")
  19900. },
  19901. {
  19902. name: "Macro",
  19903. height: math.unit(175, "feet"),
  19904. default: true
  19905. },
  19906. ]
  19907. ))
  19908. characterMakers.push(() => makeCharacter(
  19909. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19910. {
  19911. front: {
  19912. height: math.unit(1.82, "meters"),
  19913. weight: math.unit(140, "lb"),
  19914. name: "Front",
  19915. image: {
  19916. source: "./media/characters/nita/front.svg",
  19917. extra: 2473 / 2363,
  19918. bottom: 0.01
  19919. }
  19920. },
  19921. },
  19922. [
  19923. {
  19924. name: "Normal",
  19925. height: math.unit(1.82, "m")
  19926. },
  19927. {
  19928. name: "Macro",
  19929. height: math.unit(300, "m")
  19930. },
  19931. {
  19932. name: "Mistake Canon",
  19933. height: math.unit(0.5, "miles"),
  19934. default: true
  19935. },
  19936. {
  19937. name: "Big Mistake",
  19938. height: math.unit(13, "miles")
  19939. },
  19940. {
  19941. name: "Playing God",
  19942. height: math.unit(2450, "miles")
  19943. },
  19944. ]
  19945. ))
  19946. characterMakers.push(() => makeCharacter(
  19947. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19948. {
  19949. front: {
  19950. height: math.unit(4, "feet"),
  19951. weight: math.unit(120, "lb"),
  19952. name: "Front",
  19953. image: {
  19954. source: "./media/characters/shiriko/front.svg",
  19955. extra: 970/934,
  19956. bottom: 5/975
  19957. }
  19958. },
  19959. },
  19960. [
  19961. {
  19962. name: "Normal",
  19963. height: math.unit(4, "feet"),
  19964. default: true
  19965. },
  19966. ]
  19967. ))
  19968. characterMakers.push(() => makeCharacter(
  19969. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19970. {
  19971. front: {
  19972. height: math.unit(6, "feet"),
  19973. name: "front",
  19974. image: {
  19975. source: "./media/characters/deja/front.svg",
  19976. extra: 926 / 840,
  19977. bottom: 0.07
  19978. }
  19979. },
  19980. },
  19981. [
  19982. {
  19983. name: "Planck Length",
  19984. height: math.unit(1.6e-35, "meters")
  19985. },
  19986. {
  19987. name: "Normal",
  19988. height: math.unit(30.48, "meters"),
  19989. default: true
  19990. },
  19991. {
  19992. name: "Universal",
  19993. height: math.unit(8.8e26, "meters")
  19994. },
  19995. ]
  19996. ))
  19997. characterMakers.push(() => makeCharacter(
  19998. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19999. {
  20000. side: {
  20001. height: math.unit(8, "feet"),
  20002. weight: math.unit(6300, "lb"),
  20003. name: "Side",
  20004. image: {
  20005. source: "./media/characters/anima/side.svg",
  20006. bottom: 0.035
  20007. }
  20008. },
  20009. },
  20010. [
  20011. {
  20012. name: "Normal",
  20013. height: math.unit(8, "feet"),
  20014. default: true
  20015. },
  20016. ]
  20017. ))
  20018. characterMakers.push(() => makeCharacter(
  20019. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  20020. {
  20021. front: {
  20022. height: math.unit(8, "feet"),
  20023. weight: math.unit(350, "lb"),
  20024. name: "Front",
  20025. image: {
  20026. source: "./media/characters/bianca/front.svg",
  20027. extra: 234 / 225,
  20028. bottom: 0.03
  20029. }
  20030. },
  20031. },
  20032. [
  20033. {
  20034. name: "Normal",
  20035. height: math.unit(8, "feet"),
  20036. default: true
  20037. },
  20038. ]
  20039. ))
  20040. characterMakers.push(() => makeCharacter(
  20041. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  20042. {
  20043. front: {
  20044. height: math.unit(11 + 5/12, "feet"),
  20045. weight: math.unit(1200, "lb"),
  20046. name: "Front",
  20047. image: {
  20048. source: "./media/characters/adinia/front.svg",
  20049. extra: 1767/1641,
  20050. bottom: 44/1811
  20051. },
  20052. extraAttributes: {
  20053. "energyIntake": {
  20054. name: "Energy Intake",
  20055. power: 3,
  20056. type: "energy",
  20057. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  20058. },
  20059. }
  20060. },
  20061. back: {
  20062. height: math.unit(11 + 5/12, "feet"),
  20063. weight: math.unit(1200, "lb"),
  20064. name: "Back",
  20065. image: {
  20066. source: "./media/characters/adinia/back.svg",
  20067. extra: 1834/1684,
  20068. bottom: 14/1848
  20069. },
  20070. extraAttributes: {
  20071. "energyIntake": {
  20072. name: "Energy Intake",
  20073. power: 3,
  20074. type: "energy",
  20075. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  20076. },
  20077. }
  20078. },
  20079. maw: {
  20080. height: math.unit(3.79, "feet"),
  20081. name: "Maw",
  20082. image: {
  20083. source: "./media/characters/adinia/maw.svg"
  20084. }
  20085. },
  20086. rump: {
  20087. height: math.unit(4.6, "feet"),
  20088. name: "Rump",
  20089. image: {
  20090. source: "./media/characters/adinia/rump.svg"
  20091. }
  20092. },
  20093. },
  20094. [
  20095. {
  20096. name: "Normal",
  20097. height: math.unit(11 + 5 / 12, "feet"),
  20098. default: true
  20099. },
  20100. ]
  20101. ))
  20102. characterMakers.push(() => makeCharacter(
  20103. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  20104. {
  20105. front: {
  20106. height: math.unit(3, "meters"),
  20107. weight: math.unit(200, "kg"),
  20108. name: "Front",
  20109. image: {
  20110. source: "./media/characters/lykasa/front.svg",
  20111. extra: 1076 / 976,
  20112. bottom: 0.06
  20113. }
  20114. },
  20115. },
  20116. [
  20117. {
  20118. name: "Normal",
  20119. height: math.unit(3, "meters")
  20120. },
  20121. {
  20122. name: "Kaiju",
  20123. height: math.unit(120, "meters"),
  20124. default: true
  20125. },
  20126. {
  20127. name: "Mega Kaiju",
  20128. height: math.unit(240, "km")
  20129. },
  20130. {
  20131. name: "Giga Kaiju",
  20132. height: math.unit(400, "megameters")
  20133. },
  20134. {
  20135. name: "Tera Kaiju",
  20136. height: math.unit(800, "gigameters")
  20137. },
  20138. {
  20139. name: "Kaiju Dragon Goddess",
  20140. height: math.unit(26, "zettaparsecs")
  20141. },
  20142. ]
  20143. ))
  20144. characterMakers.push(() => makeCharacter(
  20145. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  20146. {
  20147. side: {
  20148. height: math.unit(283 / 124 * 6, "feet"),
  20149. weight: math.unit(35000, "lb"),
  20150. name: "Side",
  20151. image: {
  20152. source: "./media/characters/malfaren/side.svg",
  20153. extra: 1310/529,
  20154. bottom: 24/1334
  20155. }
  20156. },
  20157. front: {
  20158. height: math.unit(22.36, "feet"),
  20159. weight: math.unit(35000, "lb"),
  20160. name: "Front",
  20161. image: {
  20162. source: "./media/characters/malfaren/front.svg",
  20163. extra: 1237/1115,
  20164. bottom: 32/1269
  20165. }
  20166. },
  20167. maw: {
  20168. height: math.unit(6.9, "feet"),
  20169. name: "Maw",
  20170. image: {
  20171. source: "./media/characters/malfaren/maw.svg"
  20172. }
  20173. },
  20174. dick: {
  20175. height: math.unit(6.19, "feet"),
  20176. name: "Dick",
  20177. image: {
  20178. source: "./media/characters/malfaren/dick.svg"
  20179. }
  20180. },
  20181. eye: {
  20182. height: math.unit(0.69, "feet"),
  20183. name: "Eye",
  20184. image: {
  20185. source: "./media/characters/malfaren/eye.svg"
  20186. }
  20187. },
  20188. },
  20189. [
  20190. {
  20191. name: "Big",
  20192. height: math.unit(283 / 162 * 6, "feet"),
  20193. },
  20194. {
  20195. name: "Bigger",
  20196. height: math.unit(283 / 124 * 6, "feet")
  20197. },
  20198. {
  20199. name: "Massive",
  20200. height: math.unit(283 / 92 * 6, "feet"),
  20201. default: true
  20202. },
  20203. {
  20204. name: "👀💦",
  20205. height: math.unit(283 / 73 * 6, "feet"),
  20206. },
  20207. ]
  20208. ))
  20209. characterMakers.push(() => makeCharacter(
  20210. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  20211. {
  20212. front: {
  20213. height: math.unit(1.7, "m"),
  20214. weight: math.unit(70, "kg"),
  20215. name: "Front",
  20216. image: {
  20217. source: "./media/characters/kernel/front.svg",
  20218. extra: 1960/1821,
  20219. bottom: 17/1977
  20220. }
  20221. },
  20222. },
  20223. [
  20224. {
  20225. name: "Nano",
  20226. height: math.unit(17, "micrometers")
  20227. },
  20228. {
  20229. name: "Micro",
  20230. height: math.unit(1.7, "mm")
  20231. },
  20232. {
  20233. name: "Small",
  20234. height: math.unit(1.7, "cm")
  20235. },
  20236. {
  20237. name: "Normal",
  20238. height: math.unit(1.7, "m"),
  20239. default: true
  20240. },
  20241. ]
  20242. ))
  20243. characterMakers.push(() => makeCharacter(
  20244. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  20245. {
  20246. front: {
  20247. height: math.unit(1.75, "meters"),
  20248. weight: math.unit(65, "kg"),
  20249. name: "Front",
  20250. image: {
  20251. source: "./media/characters/jayne-folest/front.svg",
  20252. extra: 2115 / 2007,
  20253. bottom: 0.02
  20254. }
  20255. },
  20256. back: {
  20257. height: math.unit(1.75, "meters"),
  20258. weight: math.unit(65, "kg"),
  20259. name: "Back",
  20260. image: {
  20261. source: "./media/characters/jayne-folest/back.svg",
  20262. extra: 2115 / 2007,
  20263. bottom: 0.005
  20264. }
  20265. },
  20266. frontClothed: {
  20267. height: math.unit(1.75, "meters"),
  20268. weight: math.unit(65, "kg"),
  20269. name: "Front (Clothed)",
  20270. image: {
  20271. source: "./media/characters/jayne-folest/front-clothed.svg",
  20272. extra: 2115 / 2007,
  20273. bottom: 0.035
  20274. }
  20275. },
  20276. hand: {
  20277. height: math.unit(1 / 1.260, "feet"),
  20278. name: "Hand",
  20279. image: {
  20280. source: "./media/characters/jayne-folest/hand.svg"
  20281. }
  20282. },
  20283. foot: {
  20284. height: math.unit(1 / 0.918, "feet"),
  20285. name: "Foot",
  20286. image: {
  20287. source: "./media/characters/jayne-folest/foot.svg"
  20288. }
  20289. },
  20290. },
  20291. [
  20292. {
  20293. name: "Micro",
  20294. height: math.unit(4, "cm")
  20295. },
  20296. {
  20297. name: "Normal",
  20298. height: math.unit(1.75, "meters")
  20299. },
  20300. {
  20301. name: "Macro",
  20302. height: math.unit(47.5, "meters"),
  20303. default: true
  20304. },
  20305. ]
  20306. ))
  20307. characterMakers.push(() => makeCharacter(
  20308. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  20309. {
  20310. front: {
  20311. height: math.unit(180, "cm"),
  20312. weight: math.unit(70, "kg"),
  20313. name: "Front",
  20314. image: {
  20315. source: "./media/characters/algier/front.svg",
  20316. extra: 596 / 572,
  20317. bottom: 0.04
  20318. }
  20319. },
  20320. back: {
  20321. height: math.unit(180, "cm"),
  20322. weight: math.unit(70, "kg"),
  20323. name: "Back",
  20324. image: {
  20325. source: "./media/characters/algier/back.svg",
  20326. extra: 596 / 572,
  20327. bottom: 0.025
  20328. }
  20329. },
  20330. frontdressed: {
  20331. height: math.unit(180, "cm"),
  20332. weight: math.unit(150, "kg"),
  20333. name: "Front (Dressed)",
  20334. image: {
  20335. source: "./media/characters/algier/front-dressed.svg",
  20336. extra: 596 / 572,
  20337. bottom: 0.038
  20338. }
  20339. },
  20340. },
  20341. [
  20342. {
  20343. name: "Micro",
  20344. height: math.unit(5, "cm")
  20345. },
  20346. {
  20347. name: "Normal",
  20348. height: math.unit(180, "cm"),
  20349. default: true
  20350. },
  20351. {
  20352. name: "Macro",
  20353. height: math.unit(64, "m")
  20354. },
  20355. ]
  20356. ))
  20357. characterMakers.push(() => makeCharacter(
  20358. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20359. {
  20360. upright: {
  20361. height: math.unit(7, "feet"),
  20362. weight: math.unit(300, "lb"),
  20363. name: "Upright",
  20364. image: {
  20365. source: "./media/characters/pretzel/upright.svg",
  20366. extra: 534 / 522,
  20367. bottom: 0.065
  20368. }
  20369. },
  20370. sprawling: {
  20371. height: math.unit(3.75, "feet"),
  20372. weight: math.unit(300, "lb"),
  20373. name: "Sprawling",
  20374. image: {
  20375. source: "./media/characters/pretzel/sprawling.svg",
  20376. extra: 314 / 281,
  20377. bottom: 0.1
  20378. }
  20379. },
  20380. tongue: {
  20381. height: math.unit(2, "feet"),
  20382. name: "Tongue",
  20383. image: {
  20384. source: "./media/characters/pretzel/tongue.svg"
  20385. }
  20386. },
  20387. },
  20388. [
  20389. {
  20390. name: "Normal",
  20391. height: math.unit(7, "feet"),
  20392. default: true
  20393. },
  20394. {
  20395. name: "Oversized",
  20396. height: math.unit(15, "feet")
  20397. },
  20398. {
  20399. name: "Huge",
  20400. height: math.unit(30, "feet")
  20401. },
  20402. {
  20403. name: "Macro",
  20404. height: math.unit(250, "feet")
  20405. },
  20406. ]
  20407. ))
  20408. characterMakers.push(() => makeCharacter(
  20409. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20410. {
  20411. sideFront: {
  20412. height: math.unit(5 + 2 / 12, "feet"),
  20413. weight: math.unit(120, "lb"),
  20414. name: "Front Side",
  20415. image: {
  20416. source: "./media/characters/roxi/side-front.svg",
  20417. extra: 2924 / 2717,
  20418. bottom: 0.08
  20419. }
  20420. },
  20421. sideBack: {
  20422. height: math.unit(5 + 2 / 12, "feet"),
  20423. weight: math.unit(120, "lb"),
  20424. name: "Back Side",
  20425. image: {
  20426. source: "./media/characters/roxi/side-back.svg",
  20427. extra: 2904 / 2693,
  20428. bottom: 0.06
  20429. }
  20430. },
  20431. front: {
  20432. height: math.unit(5 + 2 / 12, "feet"),
  20433. weight: math.unit(120, "lb"),
  20434. name: "Front",
  20435. image: {
  20436. source: "./media/characters/roxi/front.svg",
  20437. extra: 2028 / 1907,
  20438. bottom: 0.01
  20439. }
  20440. },
  20441. frontAlt: {
  20442. height: math.unit(5 + 2 / 12, "feet"),
  20443. weight: math.unit(120, "lb"),
  20444. name: "Front (Alt)",
  20445. image: {
  20446. source: "./media/characters/roxi/front-alt.svg",
  20447. extra: 1828 / 1798,
  20448. bottom: 0.01
  20449. }
  20450. },
  20451. sitting: {
  20452. height: math.unit(2.8, "feet"),
  20453. weight: math.unit(120, "lb"),
  20454. name: "Sitting",
  20455. image: {
  20456. source: "./media/characters/roxi/sitting.svg",
  20457. extra: 2660 / 2462,
  20458. bottom: 0.1
  20459. }
  20460. },
  20461. },
  20462. [
  20463. {
  20464. name: "Normal",
  20465. height: math.unit(5 + 2 / 12, "feet"),
  20466. default: true
  20467. },
  20468. ]
  20469. ))
  20470. characterMakers.push(() => makeCharacter(
  20471. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20472. {
  20473. side: {
  20474. height: math.unit(55, "feet"),
  20475. weight: math.unit(153, "tons"),
  20476. name: "Side",
  20477. image: {
  20478. source: "./media/characters/shadow/side.svg",
  20479. extra: 701 / 628,
  20480. bottom: 0.02
  20481. }
  20482. },
  20483. flying: {
  20484. height: math.unit(145, "feet"),
  20485. weight: math.unit(153, "tons"),
  20486. name: "Flying",
  20487. image: {
  20488. source: "./media/characters/shadow/flying.svg"
  20489. }
  20490. },
  20491. },
  20492. [
  20493. {
  20494. name: "Normal",
  20495. height: math.unit(55, "feet"),
  20496. default: true
  20497. },
  20498. ]
  20499. ))
  20500. characterMakers.push(() => makeCharacter(
  20501. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20502. {
  20503. front: {
  20504. height: math.unit(6, "feet"),
  20505. weight: math.unit(200, "lb"),
  20506. name: "Front",
  20507. image: {
  20508. source: "./media/characters/marcie/front.svg",
  20509. extra: 960 / 876,
  20510. bottom: 58 / 1017.87
  20511. }
  20512. },
  20513. },
  20514. [
  20515. {
  20516. name: "Macro",
  20517. height: math.unit(1, "mile"),
  20518. default: true
  20519. },
  20520. ]
  20521. ))
  20522. characterMakers.push(() => makeCharacter(
  20523. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20524. {
  20525. front: {
  20526. height: math.unit(7, "feet"),
  20527. weight: math.unit(200, "lb"),
  20528. name: "Front",
  20529. image: {
  20530. source: "./media/characters/kachina/front.svg",
  20531. extra: 3206/2764,
  20532. bottom: 140/3346
  20533. }
  20534. },
  20535. },
  20536. [
  20537. {
  20538. name: "Normal",
  20539. height: math.unit(7, "feet"),
  20540. default: true
  20541. },
  20542. ]
  20543. ))
  20544. characterMakers.push(() => makeCharacter(
  20545. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20546. {
  20547. looking: {
  20548. height: math.unit(2, "meters"),
  20549. weight: math.unit(300, "kg"),
  20550. name: "Looking",
  20551. image: {
  20552. source: "./media/characters/kash/looking.svg",
  20553. extra: 474 / 344,
  20554. bottom: 0.03
  20555. }
  20556. },
  20557. side: {
  20558. height: math.unit(2, "meters"),
  20559. weight: math.unit(300, "kg"),
  20560. name: "Side",
  20561. image: {
  20562. source: "./media/characters/kash/side.svg",
  20563. extra: 302 / 251,
  20564. bottom: 0.03
  20565. }
  20566. },
  20567. front: {
  20568. height: math.unit(2, "meters"),
  20569. weight: math.unit(300, "kg"),
  20570. name: "Front",
  20571. image: {
  20572. source: "./media/characters/kash/front.svg",
  20573. extra: 495 / 360,
  20574. bottom: 0.015
  20575. }
  20576. },
  20577. },
  20578. [
  20579. {
  20580. name: "Normal",
  20581. height: math.unit(2, "meters"),
  20582. default: true
  20583. },
  20584. {
  20585. name: "Big",
  20586. height: math.unit(3, "meters")
  20587. },
  20588. {
  20589. name: "Large",
  20590. height: math.unit(5, "meters")
  20591. },
  20592. ]
  20593. ))
  20594. characterMakers.push(() => makeCharacter(
  20595. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20596. {
  20597. feeding: {
  20598. height: math.unit(6.7, "feet"),
  20599. weight: math.unit(350, "lb"),
  20600. name: "Feeding",
  20601. image: {
  20602. source: "./media/characters/lalim/feeding.svg",
  20603. }
  20604. },
  20605. },
  20606. [
  20607. {
  20608. name: "Normal",
  20609. height: math.unit(6.7, "feet"),
  20610. default: true
  20611. },
  20612. ]
  20613. ))
  20614. characterMakers.push(() => makeCharacter(
  20615. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20616. {
  20617. front: {
  20618. height: math.unit(9.5, "feet"),
  20619. weight: math.unit(600, "lb"),
  20620. name: "Front",
  20621. image: {
  20622. source: "./media/characters/de'vout/front.svg",
  20623. extra: 1443 / 1328,
  20624. bottom: 0.025
  20625. }
  20626. },
  20627. back: {
  20628. height: math.unit(9.5, "feet"),
  20629. weight: math.unit(600, "lb"),
  20630. name: "Back",
  20631. image: {
  20632. source: "./media/characters/de'vout/back.svg",
  20633. extra: 1443 / 1328
  20634. }
  20635. },
  20636. frontDressed: {
  20637. height: math.unit(9.5, "feet"),
  20638. weight: math.unit(600, "lb"),
  20639. name: "Front (Dressed",
  20640. image: {
  20641. source: "./media/characters/de'vout/front-dressed.svg",
  20642. extra: 1443 / 1328,
  20643. bottom: 0.025
  20644. }
  20645. },
  20646. backDressed: {
  20647. height: math.unit(9.5, "feet"),
  20648. weight: math.unit(600, "lb"),
  20649. name: "Back (Dressed",
  20650. image: {
  20651. source: "./media/characters/de'vout/back-dressed.svg",
  20652. extra: 1443 / 1328
  20653. }
  20654. },
  20655. },
  20656. [
  20657. {
  20658. name: "Normal",
  20659. height: math.unit(9.5, "feet"),
  20660. default: true
  20661. },
  20662. ]
  20663. ))
  20664. characterMakers.push(() => makeCharacter(
  20665. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20666. {
  20667. front: {
  20668. height: math.unit(8, "feet"),
  20669. weight: math.unit(225, "lb"),
  20670. name: "Front",
  20671. image: {
  20672. source: "./media/characters/talana/front.svg",
  20673. extra: 1410 / 1300,
  20674. bottom: 0.015
  20675. }
  20676. },
  20677. frontDressed: {
  20678. height: math.unit(8, "feet"),
  20679. weight: math.unit(225, "lb"),
  20680. name: "Front (Dressed",
  20681. image: {
  20682. source: "./media/characters/talana/front-dressed.svg",
  20683. extra: 1410 / 1300,
  20684. bottom: 0.015
  20685. }
  20686. },
  20687. },
  20688. [
  20689. {
  20690. name: "Normal",
  20691. height: math.unit(8, "feet"),
  20692. default: true
  20693. },
  20694. ]
  20695. ))
  20696. characterMakers.push(() => makeCharacter(
  20697. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20698. {
  20699. side: {
  20700. height: math.unit(7.2, "feet"),
  20701. weight: math.unit(150, "lb"),
  20702. name: "Side",
  20703. image: {
  20704. source: "./media/characters/xeauvok/side.svg",
  20705. extra: 1975 / 1523,
  20706. bottom: 0.07
  20707. }
  20708. },
  20709. },
  20710. [
  20711. {
  20712. name: "Normal",
  20713. height: math.unit(7.2, "feet"),
  20714. default: true
  20715. },
  20716. ]
  20717. ))
  20718. characterMakers.push(() => makeCharacter(
  20719. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20720. {
  20721. side: {
  20722. height: math.unit(4, "meters"),
  20723. weight: math.unit(2200, "kg"),
  20724. name: "Side",
  20725. image: {
  20726. source: "./media/characters/zara/side.svg",
  20727. extra: 765/744,
  20728. bottom: 156/921
  20729. }
  20730. },
  20731. },
  20732. [
  20733. {
  20734. name: "Normal",
  20735. height: math.unit(4, "meters"),
  20736. default: true
  20737. },
  20738. ]
  20739. ))
  20740. characterMakers.push(() => makeCharacter(
  20741. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20742. {
  20743. side: {
  20744. height: math.unit(6, "feet"),
  20745. weight: math.unit(150, "lb"),
  20746. name: "Side",
  20747. image: {
  20748. source: "./media/characters/richard-dragon/side.svg",
  20749. extra: 845 / 340,
  20750. bottom: 0.017
  20751. }
  20752. },
  20753. maw: {
  20754. height: math.unit(2.97, "feet"),
  20755. name: "Maw",
  20756. image: {
  20757. source: "./media/characters/richard-dragon/maw.svg"
  20758. }
  20759. },
  20760. },
  20761. [
  20762. ]
  20763. ))
  20764. characterMakers.push(() => makeCharacter(
  20765. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20766. {
  20767. front: {
  20768. height: math.unit(4, "feet"),
  20769. weight: math.unit(100, "lb"),
  20770. name: "Front",
  20771. image: {
  20772. source: "./media/characters/richard-smeargle/front.svg",
  20773. extra: 2952 / 2820,
  20774. bottom: 0.028
  20775. }
  20776. },
  20777. },
  20778. [
  20779. {
  20780. name: "Normal",
  20781. height: math.unit(4, "feet"),
  20782. default: true
  20783. },
  20784. {
  20785. name: "Dynamax",
  20786. height: math.unit(20, "meters")
  20787. },
  20788. ]
  20789. ))
  20790. characterMakers.push(() => makeCharacter(
  20791. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20792. {
  20793. front: {
  20794. height: math.unit(6, "feet"),
  20795. weight: math.unit(110, "lb"),
  20796. name: "Front",
  20797. image: {
  20798. source: "./media/characters/klay/front.svg",
  20799. extra: 962 / 883,
  20800. bottom: 0.04
  20801. }
  20802. },
  20803. back: {
  20804. height: math.unit(6, "feet"),
  20805. weight: math.unit(110, "lb"),
  20806. name: "Back",
  20807. image: {
  20808. source: "./media/characters/klay/back.svg",
  20809. extra: 962 / 883
  20810. }
  20811. },
  20812. beans: {
  20813. height: math.unit(1.15, "feet"),
  20814. name: "Beans",
  20815. image: {
  20816. source: "./media/characters/klay/beans.svg"
  20817. }
  20818. },
  20819. },
  20820. [
  20821. {
  20822. name: "Micro",
  20823. height: math.unit(6, "inches")
  20824. },
  20825. {
  20826. name: "Mini",
  20827. height: math.unit(3, "feet")
  20828. },
  20829. {
  20830. name: "Normal",
  20831. height: math.unit(6, "feet"),
  20832. default: true
  20833. },
  20834. {
  20835. name: "Big",
  20836. height: math.unit(25, "feet")
  20837. },
  20838. {
  20839. name: "Macro",
  20840. height: math.unit(100, "feet")
  20841. },
  20842. {
  20843. name: "Megamacro",
  20844. height: math.unit(400, "feet")
  20845. },
  20846. ]
  20847. ))
  20848. characterMakers.push(() => makeCharacter(
  20849. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20850. {
  20851. front: {
  20852. height: math.unit(6, "feet"),
  20853. weight: math.unit(160, "lb"),
  20854. name: "Front",
  20855. image: {
  20856. source: "./media/characters/marcus/front.svg",
  20857. extra: 734 / 676,
  20858. bottom: 0.03
  20859. }
  20860. },
  20861. },
  20862. [
  20863. {
  20864. name: "Little",
  20865. height: math.unit(6, "feet")
  20866. },
  20867. {
  20868. name: "Normal",
  20869. height: math.unit(110, "feet"),
  20870. default: true
  20871. },
  20872. {
  20873. name: "Macro",
  20874. height: math.unit(250, "feet")
  20875. },
  20876. {
  20877. name: "Megamacro",
  20878. height: math.unit(1000, "feet")
  20879. },
  20880. ]
  20881. ))
  20882. characterMakers.push(() => makeCharacter(
  20883. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20884. {
  20885. front: {
  20886. height: math.unit(7, "feet"),
  20887. weight: math.unit(275, "lb"),
  20888. name: "Front",
  20889. image: {
  20890. source: "./media/characters/claude-delroute/front.svg",
  20891. extra: 902/827,
  20892. bottom: 26/928
  20893. }
  20894. },
  20895. side: {
  20896. height: math.unit(7, "feet"),
  20897. weight: math.unit(275, "lb"),
  20898. name: "Side",
  20899. image: {
  20900. source: "./media/characters/claude-delroute/side.svg",
  20901. extra: 908/853,
  20902. bottom: 16/924
  20903. }
  20904. },
  20905. back: {
  20906. height: math.unit(7, "feet"),
  20907. weight: math.unit(275, "lb"),
  20908. name: "Back",
  20909. image: {
  20910. source: "./media/characters/claude-delroute/back.svg",
  20911. extra: 911/829,
  20912. bottom: 18/929
  20913. }
  20914. },
  20915. maw: {
  20916. height: math.unit(0.6407, "meters"),
  20917. name: "Maw",
  20918. image: {
  20919. source: "./media/characters/claude-delroute/maw.svg"
  20920. }
  20921. },
  20922. },
  20923. [
  20924. {
  20925. name: "Normal",
  20926. height: math.unit(7, "feet"),
  20927. default: true
  20928. },
  20929. {
  20930. name: "Lorge",
  20931. height: math.unit(20, "feet")
  20932. },
  20933. ]
  20934. ))
  20935. characterMakers.push(() => makeCharacter(
  20936. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20937. {
  20938. front: {
  20939. height: math.unit(8 + 4 / 12, "feet"),
  20940. weight: math.unit(600, "lb"),
  20941. name: "Front",
  20942. image: {
  20943. source: "./media/characters/dragonien/front.svg",
  20944. extra: 100 / 94,
  20945. bottom: 3.3 / 103.3445
  20946. }
  20947. },
  20948. back: {
  20949. height: math.unit(8 + 4 / 12, "feet"),
  20950. weight: math.unit(600, "lb"),
  20951. name: "Back",
  20952. image: {
  20953. source: "./media/characters/dragonien/back.svg",
  20954. extra: 776 / 746,
  20955. bottom: 6.4 / 782.0616
  20956. }
  20957. },
  20958. foot: {
  20959. height: math.unit(1.54, "feet"),
  20960. name: "Foot",
  20961. image: {
  20962. source: "./media/characters/dragonien/foot.svg",
  20963. }
  20964. },
  20965. },
  20966. [
  20967. {
  20968. name: "Normal",
  20969. height: math.unit(8 + 4 / 12, "feet"),
  20970. default: true
  20971. },
  20972. {
  20973. name: "Macro",
  20974. height: math.unit(200, "feet")
  20975. },
  20976. {
  20977. name: "Megamacro",
  20978. height: math.unit(1, "mile")
  20979. },
  20980. {
  20981. name: "Gigamacro",
  20982. height: math.unit(1000, "miles")
  20983. },
  20984. ]
  20985. ))
  20986. characterMakers.push(() => makeCharacter(
  20987. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20988. {
  20989. front: {
  20990. height: math.unit(5 + 2 / 12, "feet"),
  20991. weight: math.unit(110, "lb"),
  20992. name: "Front",
  20993. image: {
  20994. source: "./media/characters/desta/front.svg",
  20995. extra: 767 / 726,
  20996. bottom: 11.7 / 779
  20997. }
  20998. },
  20999. back: {
  21000. height: math.unit(5 + 2 / 12, "feet"),
  21001. weight: math.unit(110, "lb"),
  21002. name: "Back",
  21003. image: {
  21004. source: "./media/characters/desta/back.svg",
  21005. extra: 777 / 728,
  21006. bottom: 6 / 784
  21007. }
  21008. },
  21009. frontAlt: {
  21010. height: math.unit(5 + 2 / 12, "feet"),
  21011. weight: math.unit(110, "lb"),
  21012. name: "Front",
  21013. image: {
  21014. source: "./media/characters/desta/front-alt.svg",
  21015. extra: 1482 / 1417
  21016. }
  21017. },
  21018. side: {
  21019. height: math.unit(5 + 2 / 12, "feet"),
  21020. weight: math.unit(110, "lb"),
  21021. name: "Side",
  21022. image: {
  21023. source: "./media/characters/desta/side.svg",
  21024. extra: 2579 / 2491,
  21025. bottom: 0.053
  21026. }
  21027. },
  21028. },
  21029. [
  21030. {
  21031. name: "Micro",
  21032. height: math.unit(6, "inches")
  21033. },
  21034. {
  21035. name: "Normal",
  21036. height: math.unit(5 + 2 / 12, "feet"),
  21037. default: true
  21038. },
  21039. {
  21040. name: "Macro",
  21041. height: math.unit(62, "feet")
  21042. },
  21043. {
  21044. name: "Megamacro",
  21045. height: math.unit(1800, "feet")
  21046. },
  21047. ]
  21048. ))
  21049. characterMakers.push(() => makeCharacter(
  21050. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  21051. {
  21052. front: {
  21053. height: math.unit(10, "feet"),
  21054. weight: math.unit(700, "lb"),
  21055. name: "Front",
  21056. image: {
  21057. source: "./media/characters/storm-alystar/front.svg",
  21058. extra: 2112 / 1898,
  21059. bottom: 0.034
  21060. }
  21061. },
  21062. },
  21063. [
  21064. {
  21065. name: "Micro",
  21066. height: math.unit(3.5, "inches")
  21067. },
  21068. {
  21069. name: "Normal",
  21070. height: math.unit(10, "feet"),
  21071. default: true
  21072. },
  21073. {
  21074. name: "Macro",
  21075. height: math.unit(400, "feet")
  21076. },
  21077. {
  21078. name: "Deific",
  21079. height: math.unit(60, "miles")
  21080. },
  21081. ]
  21082. ))
  21083. characterMakers.push(() => makeCharacter(
  21084. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  21085. {
  21086. front: {
  21087. height: math.unit(2.35, "meters"),
  21088. weight: math.unit(119, "kg"),
  21089. name: "Front",
  21090. image: {
  21091. source: "./media/characters/ilia/front.svg",
  21092. extra: 1285 / 1255,
  21093. bottom: 0.06
  21094. }
  21095. },
  21096. },
  21097. [
  21098. {
  21099. name: "Normal",
  21100. height: math.unit(2.35, "meters")
  21101. },
  21102. {
  21103. name: "Macro",
  21104. height: math.unit(140, "meters"),
  21105. default: true
  21106. },
  21107. {
  21108. name: "Megamacro",
  21109. height: math.unit(100, "miles")
  21110. },
  21111. ]
  21112. ))
  21113. characterMakers.push(() => makeCharacter(
  21114. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  21115. {
  21116. front: {
  21117. height: math.unit(6 + 5 / 12, "feet"),
  21118. weight: math.unit(190, "lb"),
  21119. name: "Front",
  21120. image: {
  21121. source: "./media/characters/kingdead/front.svg",
  21122. extra: 1228 / 1177
  21123. }
  21124. },
  21125. },
  21126. [
  21127. {
  21128. name: "Micro",
  21129. height: math.unit(7, "inches")
  21130. },
  21131. {
  21132. name: "Normal",
  21133. height: math.unit(6 + 5 / 12, "feet")
  21134. },
  21135. {
  21136. name: "Macro",
  21137. height: math.unit(150, "feet"),
  21138. default: true
  21139. },
  21140. {
  21141. name: "Megamacro",
  21142. height: math.unit(200, "miles")
  21143. },
  21144. ]
  21145. ))
  21146. characterMakers.push(() => makeCharacter(
  21147. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  21148. {
  21149. front: {
  21150. height: math.unit(8, "feet"),
  21151. weight: math.unit(600, "lb"),
  21152. name: "Front",
  21153. image: {
  21154. source: "./media/characters/kyrehx/front.svg",
  21155. extra: 1195 / 1095,
  21156. bottom: 0.034
  21157. }
  21158. },
  21159. },
  21160. [
  21161. {
  21162. name: "Micro",
  21163. height: math.unit(2, "inches")
  21164. },
  21165. {
  21166. name: "Normal",
  21167. height: math.unit(8, "feet"),
  21168. default: true
  21169. },
  21170. {
  21171. name: "Macro",
  21172. height: math.unit(255, "feet")
  21173. },
  21174. ]
  21175. ))
  21176. characterMakers.push(() => makeCharacter(
  21177. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  21178. {
  21179. front: {
  21180. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  21181. weight: math.unit(184, "lb"),
  21182. name: "Front",
  21183. image: {
  21184. source: "./media/characters/xang/front.svg",
  21185. extra: 845 / 755
  21186. }
  21187. },
  21188. },
  21189. [
  21190. {
  21191. name: "Normal",
  21192. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  21193. default: true
  21194. },
  21195. {
  21196. name: "Macro",
  21197. height: math.unit(0.935 * 146, "feet")
  21198. },
  21199. {
  21200. name: "Megamacro",
  21201. height: math.unit(0.935 * 3, "miles")
  21202. },
  21203. ]
  21204. ))
  21205. characterMakers.push(() => makeCharacter(
  21206. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  21207. {
  21208. frontDressed: {
  21209. height: math.unit(5 + 7 / 12, "feet"),
  21210. weight: math.unit(140, "lb"),
  21211. name: "Front (Dressed)",
  21212. image: {
  21213. source: "./media/characters/doc-weardno/front-dressed.svg",
  21214. extra: 263 / 234
  21215. }
  21216. },
  21217. backDressed: {
  21218. height: math.unit(5 + 7 / 12, "feet"),
  21219. weight: math.unit(140, "lb"),
  21220. name: "Back (Dressed)",
  21221. image: {
  21222. source: "./media/characters/doc-weardno/back-dressed.svg",
  21223. extra: 266 / 238
  21224. }
  21225. },
  21226. front: {
  21227. height: math.unit(5 + 7 / 12, "feet"),
  21228. weight: math.unit(140, "lb"),
  21229. name: "Front",
  21230. image: {
  21231. source: "./media/characters/doc-weardno/front.svg",
  21232. extra: 254 / 233
  21233. }
  21234. },
  21235. },
  21236. [
  21237. {
  21238. name: "Micro",
  21239. height: math.unit(3, "inches")
  21240. },
  21241. {
  21242. name: "Normal",
  21243. height: math.unit(5 + 7 / 12, "feet"),
  21244. default: true
  21245. },
  21246. {
  21247. name: "Macro",
  21248. height: math.unit(25, "feet")
  21249. },
  21250. {
  21251. name: "Megamacro",
  21252. height: math.unit(2, "miles")
  21253. },
  21254. ]
  21255. ))
  21256. characterMakers.push(() => makeCharacter(
  21257. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  21258. {
  21259. front: {
  21260. height: math.unit(6 + 2 / 12, "feet"),
  21261. weight: math.unit(153, "lb"),
  21262. name: "Front",
  21263. image: {
  21264. source: "./media/characters/seth-whilst/front.svg",
  21265. bottom: 0.07
  21266. }
  21267. },
  21268. },
  21269. [
  21270. {
  21271. name: "Micro",
  21272. height: math.unit(5, "inches")
  21273. },
  21274. {
  21275. name: "Normal",
  21276. height: math.unit(6 + 2 / 12, "feet"),
  21277. default: true
  21278. },
  21279. ]
  21280. ))
  21281. characterMakers.push(() => makeCharacter(
  21282. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  21283. {
  21284. front: {
  21285. height: math.unit(3, "inches"),
  21286. weight: math.unit(8, "grams"),
  21287. name: "Front",
  21288. image: {
  21289. source: "./media/characters/pocket-jabari/front.svg",
  21290. extra: 1024 / 974,
  21291. bottom: 0.039
  21292. }
  21293. },
  21294. },
  21295. [
  21296. {
  21297. name: "Minimicro",
  21298. height: math.unit(8, "mm")
  21299. },
  21300. {
  21301. name: "Micro",
  21302. height: math.unit(3, "inches"),
  21303. default: true
  21304. },
  21305. {
  21306. name: "Normal",
  21307. height: math.unit(3, "feet")
  21308. },
  21309. ]
  21310. ))
  21311. characterMakers.push(() => makeCharacter(
  21312. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21313. {
  21314. frontDressed: {
  21315. height: math.unit(15, "feet"),
  21316. weight: math.unit(3280, "lb"),
  21317. name: "Front (Dressed)",
  21318. image: {
  21319. source: "./media/characters/sapphy/front-dressed.svg",
  21320. extra: 1951/1654,
  21321. bottom: 194/2145
  21322. },
  21323. form: "anthro",
  21324. default: true
  21325. },
  21326. backDressed: {
  21327. height: math.unit(15, "feet"),
  21328. weight: math.unit(3280, "lb"),
  21329. name: "Back (Dressed)",
  21330. image: {
  21331. source: "./media/characters/sapphy/back-dressed.svg",
  21332. extra: 2058/1918,
  21333. bottom: 125/2183
  21334. },
  21335. form: "anthro"
  21336. },
  21337. frontNude: {
  21338. height: math.unit(15, "feet"),
  21339. weight: math.unit(3280, "lb"),
  21340. name: "Front (Nude)",
  21341. image: {
  21342. source: "./media/characters/sapphy/front-nude.svg",
  21343. extra: 1951/1654,
  21344. bottom: 194/2145
  21345. },
  21346. form: "anthro"
  21347. },
  21348. backNude: {
  21349. height: math.unit(15, "feet"),
  21350. weight: math.unit(3280, "lb"),
  21351. name: "Back (Nude)",
  21352. image: {
  21353. source: "./media/characters/sapphy/back-nude.svg",
  21354. extra: 2058/1918,
  21355. bottom: 125/2183
  21356. },
  21357. form: "anthro"
  21358. },
  21359. full: {
  21360. height: math.unit(15, "feet"),
  21361. weight: math.unit(3280, "lb"),
  21362. name: "Full",
  21363. image: {
  21364. source: "./media/characters/sapphy/full.svg",
  21365. extra: 1396/1317,
  21366. bottom: 44/1440
  21367. },
  21368. form: "anthro"
  21369. },
  21370. dick: {
  21371. height: math.unit(3.8, "feet"),
  21372. name: "Dick",
  21373. image: {
  21374. source: "./media/characters/sapphy/dick.svg"
  21375. },
  21376. form: "anthro"
  21377. },
  21378. feral: {
  21379. height: math.unit(35, "feet"),
  21380. weight: math.unit(160, "tons"),
  21381. name: "Feral",
  21382. image: {
  21383. source: "./media/characters/sapphy/feral.svg",
  21384. extra: 1050/573,
  21385. bottom: 60/1110
  21386. },
  21387. form: "feral",
  21388. default: true
  21389. },
  21390. },
  21391. [
  21392. {
  21393. name: "Normal",
  21394. height: math.unit(15, "feet"),
  21395. form: "anthro"
  21396. },
  21397. {
  21398. name: "Casual Macro",
  21399. height: math.unit(120, "feet"),
  21400. form: "anthro"
  21401. },
  21402. {
  21403. name: "Macro",
  21404. height: math.unit(2150, "feet"),
  21405. default: true,
  21406. form: "anthro"
  21407. },
  21408. {
  21409. name: "Megamacro",
  21410. height: math.unit(8, "miles"),
  21411. form: "anthro"
  21412. },
  21413. {
  21414. name: "Galaxy Mom",
  21415. height: math.unit(6, "megalightyears"),
  21416. form: "anthro"
  21417. },
  21418. {
  21419. name: "Normal",
  21420. height: math.unit(35, "feet"),
  21421. form: "feral",
  21422. default: true
  21423. },
  21424. {
  21425. name: "Macro",
  21426. height: math.unit(300, "feet"),
  21427. form: "feral"
  21428. },
  21429. {
  21430. name: "Galaxy Mom",
  21431. height: math.unit(10, "megalightyears"),
  21432. form: "feral"
  21433. },
  21434. ],
  21435. {
  21436. "anthro": {
  21437. name: "Anthro",
  21438. default: true
  21439. },
  21440. "feral": {
  21441. name: "Feral"
  21442. }
  21443. }
  21444. ))
  21445. characterMakers.push(() => makeCharacter(
  21446. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21447. {
  21448. hyenaFront: {
  21449. height: math.unit(6, "feet"),
  21450. weight: math.unit(190, "lb"),
  21451. name: "Front",
  21452. image: {
  21453. source: "./media/characters/kiro/hyena-front.svg",
  21454. extra: 927/839,
  21455. bottom: 91/1018
  21456. },
  21457. form: "hyena",
  21458. default: true
  21459. },
  21460. hyena_back: {
  21461. height: math.unit(6, "feet"),
  21462. weight: math.unit(190, "lb"),
  21463. name: "Back",
  21464. image: {
  21465. source: "./media/characters/kiro/hyena-back.svg",
  21466. extra: 757/695,
  21467. bottom: 42/799
  21468. },
  21469. form: "hyena",
  21470. },
  21471. hyena_head: {
  21472. height: math.unit(2.07, "feet"),
  21473. name: "Head",
  21474. image: {
  21475. source: "./media/characters/kiro/hyena-head.svg"
  21476. },
  21477. form: "hyena",
  21478. },
  21479. hyena_headAlt: {
  21480. height: math.unit(2.36, "feet"),
  21481. name: "Head (Alt)",
  21482. image: {
  21483. source: "./media/characters/kiro/hyena-head-alt.svg"
  21484. },
  21485. form: "hyena",
  21486. },
  21487. front: {
  21488. height: math.unit(6, "feet"),
  21489. weight: math.unit(170, "lb"),
  21490. name: "Front",
  21491. image: {
  21492. source: "./media/characters/kiro/front.svg",
  21493. extra: 1064 / 1012,
  21494. bottom: 0.052
  21495. },
  21496. form: "folf",
  21497. default: true
  21498. },
  21499. },
  21500. [
  21501. {
  21502. name: "Micro",
  21503. height: math.unit(6, "inches"),
  21504. form: "folf"
  21505. },
  21506. {
  21507. name: "Normal",
  21508. height: math.unit(6, "feet"),
  21509. form: "folf",
  21510. default: true
  21511. },
  21512. {
  21513. name: "Macro",
  21514. height: math.unit(72, "feet"),
  21515. form: "folf"
  21516. },
  21517. {
  21518. name: "Micro",
  21519. height: math.unit(6, "inches"),
  21520. form: "hyena"
  21521. },
  21522. {
  21523. name: "Normal",
  21524. height: math.unit(6, "feet"),
  21525. form: "hyena",
  21526. default: true
  21527. },
  21528. {
  21529. name: "Macro",
  21530. height: math.unit(72, "feet"),
  21531. form: "hyena"
  21532. },
  21533. ],
  21534. {
  21535. "hyena": {
  21536. name: "Hyena",
  21537. default: true
  21538. },
  21539. "folf": {
  21540. name: "Folf",
  21541. },
  21542. }
  21543. ))
  21544. characterMakers.push(() => makeCharacter(
  21545. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21546. {
  21547. front: {
  21548. height: math.unit(5 + 9 / 12, "feet"),
  21549. weight: math.unit(175, "lb"),
  21550. name: "Front",
  21551. image: {
  21552. source: "./media/characters/irishfox/front.svg",
  21553. extra: 1912 / 1680,
  21554. bottom: 0.02
  21555. }
  21556. },
  21557. },
  21558. [
  21559. {
  21560. name: "Nano",
  21561. height: math.unit(1, "mm")
  21562. },
  21563. {
  21564. name: "Micro",
  21565. height: math.unit(2, "inches")
  21566. },
  21567. {
  21568. name: "Normal",
  21569. height: math.unit(5 + 9 / 12, "feet"),
  21570. default: true
  21571. },
  21572. {
  21573. name: "Macro",
  21574. height: math.unit(45, "feet")
  21575. },
  21576. ]
  21577. ))
  21578. characterMakers.push(() => makeCharacter(
  21579. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21580. {
  21581. front: {
  21582. height: math.unit(6 + 1 / 12, "feet"),
  21583. weight: math.unit(75, "lb"),
  21584. name: "Front",
  21585. image: {
  21586. source: "./media/characters/aronai-sieyes/front.svg",
  21587. extra: 1532/1450,
  21588. bottom: 42/1574
  21589. }
  21590. },
  21591. side: {
  21592. height: math.unit(6 + 1 / 12, "feet"),
  21593. weight: math.unit(75, "lb"),
  21594. name: "Side",
  21595. image: {
  21596. source: "./media/characters/aronai-sieyes/side.svg",
  21597. extra: 1422/1365,
  21598. bottom: 148/1570
  21599. }
  21600. },
  21601. back: {
  21602. height: math.unit(6 + 1 / 12, "feet"),
  21603. weight: math.unit(75, "lb"),
  21604. name: "Back",
  21605. image: {
  21606. source: "./media/characters/aronai-sieyes/back.svg",
  21607. extra: 1526/1464,
  21608. bottom: 51/1577
  21609. }
  21610. },
  21611. dressed: {
  21612. height: math.unit(6 + 1 / 12, "feet"),
  21613. weight: math.unit(75, "lb"),
  21614. name: "Dressed",
  21615. image: {
  21616. source: "./media/characters/aronai-sieyes/dressed.svg",
  21617. extra: 1559/1483,
  21618. bottom: 39/1598
  21619. }
  21620. },
  21621. slit: {
  21622. height: math.unit(1.3, "feet"),
  21623. name: "Slit",
  21624. image: {
  21625. source: "./media/characters/aronai-sieyes/slit.svg"
  21626. }
  21627. },
  21628. slitSpread: {
  21629. height: math.unit(0.9, "feet"),
  21630. name: "Slit (Spread)",
  21631. image: {
  21632. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21633. }
  21634. },
  21635. rump: {
  21636. height: math.unit(1.3, "feet"),
  21637. name: "Rump",
  21638. image: {
  21639. source: "./media/characters/aronai-sieyes/rump.svg"
  21640. }
  21641. },
  21642. maw: {
  21643. height: math.unit(1.25, "feet"),
  21644. name: "Maw",
  21645. image: {
  21646. source: "./media/characters/aronai-sieyes/maw.svg"
  21647. }
  21648. },
  21649. feral: {
  21650. height: math.unit(18, "feet"),
  21651. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21652. name: "Feral",
  21653. image: {
  21654. source: "./media/characters/aronai-sieyes/feral.svg",
  21655. extra: 1530 / 1240,
  21656. bottom: 0.035
  21657. }
  21658. },
  21659. },
  21660. [
  21661. {
  21662. name: "Micro",
  21663. height: math.unit(2, "inches")
  21664. },
  21665. {
  21666. name: "Normal",
  21667. height: math.unit(6 + 1 / 12, "feet"),
  21668. default: true
  21669. }
  21670. ]
  21671. ))
  21672. characterMakers.push(() => makeCharacter(
  21673. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21674. {
  21675. front: {
  21676. height: math.unit(12, "feet"),
  21677. weight: math.unit(410, "kg"),
  21678. name: "Front",
  21679. image: {
  21680. source: "./media/characters/xuna/front.svg",
  21681. extra: 2184 / 1980
  21682. }
  21683. },
  21684. side: {
  21685. height: math.unit(12, "feet"),
  21686. weight: math.unit(410, "kg"),
  21687. name: "Side",
  21688. image: {
  21689. source: "./media/characters/xuna/side.svg",
  21690. extra: 2184 / 1980
  21691. }
  21692. },
  21693. back: {
  21694. height: math.unit(12, "feet"),
  21695. weight: math.unit(410, "kg"),
  21696. name: "Back",
  21697. image: {
  21698. source: "./media/characters/xuna/back.svg",
  21699. extra: 2184 / 1980
  21700. }
  21701. },
  21702. },
  21703. [
  21704. {
  21705. name: "Nano glow",
  21706. height: math.unit(10, "nm")
  21707. },
  21708. {
  21709. name: "Micro floof",
  21710. height: math.unit(0.3, "m")
  21711. },
  21712. {
  21713. name: "Huggable softy boi",
  21714. height: math.unit(3.6576, "m"),
  21715. default: true
  21716. },
  21717. {
  21718. name: "Admirable floof",
  21719. height: math.unit(80, "meters")
  21720. },
  21721. {
  21722. name: "Gentle macro",
  21723. height: math.unit(300, "meters")
  21724. },
  21725. {
  21726. name: "Very careful floof",
  21727. height: math.unit(3200, "meters")
  21728. },
  21729. {
  21730. name: "The mega floof",
  21731. height: math.unit(36000, "meters")
  21732. },
  21733. {
  21734. name: "Giga-fur-Wicker",
  21735. height: math.unit(4800000, "meters")
  21736. },
  21737. {
  21738. name: "Licky world",
  21739. height: math.unit(20000000, "meters")
  21740. },
  21741. {
  21742. name: "Floofy cyan sun",
  21743. height: math.unit(1500000000, "meters")
  21744. },
  21745. {
  21746. name: "Milky Wicker",
  21747. height: math.unit(1000000000000000000000, "meters")
  21748. },
  21749. {
  21750. name: "The observing Wicker",
  21751. height: math.unit(999999999999999999999999999, "meters")
  21752. },
  21753. ]
  21754. ))
  21755. characterMakers.push(() => makeCharacter(
  21756. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21757. {
  21758. front: {
  21759. height: math.unit(5 + 9 / 12, "feet"),
  21760. weight: math.unit(150, "lb"),
  21761. name: "Front",
  21762. image: {
  21763. source: "./media/characters/arokha-sieyes/front.svg",
  21764. extra: 1425 / 1284,
  21765. bottom: 0.05
  21766. }
  21767. },
  21768. },
  21769. [
  21770. {
  21771. name: "Normal",
  21772. height: math.unit(5 + 9 / 12, "feet")
  21773. },
  21774. {
  21775. name: "Macro",
  21776. height: math.unit(30, "meters"),
  21777. default: true
  21778. },
  21779. ]
  21780. ))
  21781. characterMakers.push(() => makeCharacter(
  21782. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21783. {
  21784. front: {
  21785. height: math.unit(6, "feet"),
  21786. weight: math.unit(180, "lb"),
  21787. name: "Front",
  21788. image: {
  21789. source: "./media/characters/arokh-sieyes/front.svg",
  21790. extra: 1830 / 1769,
  21791. bottom: 0.01
  21792. }
  21793. },
  21794. },
  21795. [
  21796. {
  21797. name: "Normal",
  21798. height: math.unit(6, "feet")
  21799. },
  21800. {
  21801. name: "Macro",
  21802. height: math.unit(30, "meters"),
  21803. default: true
  21804. },
  21805. ]
  21806. ))
  21807. characterMakers.push(() => makeCharacter(
  21808. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21809. {
  21810. side: {
  21811. height: math.unit(13 + 1 / 12, "feet"),
  21812. weight: math.unit(8.5, "tonnes"),
  21813. preyCapacity: math.unit(36, "people"),
  21814. name: "Side",
  21815. image: {
  21816. source: "./media/characters/goldeneye/side.svg",
  21817. extra: 1139/741,
  21818. bottom: 98/1237
  21819. }
  21820. },
  21821. front: {
  21822. height: math.unit(5.1, "feet"),
  21823. weight: math.unit(8.5, "tonnes"),
  21824. preyCapacity: math.unit(36, "people"),
  21825. name: "Front",
  21826. image: {
  21827. source: "./media/characters/goldeneye/front.svg",
  21828. extra: 635/365,
  21829. bottom: 598/1233
  21830. }
  21831. },
  21832. maw: {
  21833. height: math.unit(6.6, "feet"),
  21834. name: "Maw",
  21835. image: {
  21836. source: "./media/characters/goldeneye/maw.svg"
  21837. }
  21838. },
  21839. headFront: {
  21840. height: math.unit(8, "feet"),
  21841. name: "Head (Front)",
  21842. image: {
  21843. source: "./media/characters/goldeneye/head-front.svg"
  21844. }
  21845. },
  21846. headSide: {
  21847. height: math.unit(6, "feet"),
  21848. name: "Head (Side)",
  21849. image: {
  21850. source: "./media/characters/goldeneye/head-side.svg"
  21851. }
  21852. },
  21853. headBack: {
  21854. height: math.unit(8, "feet"),
  21855. name: "Head (Back)",
  21856. image: {
  21857. source: "./media/characters/goldeneye/head-back.svg"
  21858. }
  21859. },
  21860. paw: {
  21861. height: math.unit(3.4, "feet"),
  21862. name: "Paw",
  21863. image: {
  21864. source: "./media/characters/goldeneye/paw.svg"
  21865. }
  21866. },
  21867. toering: {
  21868. height: math.unit(0.45, "feet"),
  21869. name: "Toering",
  21870. image: {
  21871. source: "./media/characters/goldeneye/toering.svg"
  21872. }
  21873. },
  21874. eyes: {
  21875. height: math.unit(0.5, "feet"),
  21876. name: "Eyes",
  21877. image: {
  21878. source: "./media/characters/goldeneye/eyes.svg"
  21879. }
  21880. },
  21881. },
  21882. [
  21883. {
  21884. name: "Normal",
  21885. height: math.unit(13 + 1 / 12, "feet"),
  21886. default: true
  21887. },
  21888. ]
  21889. ))
  21890. characterMakers.push(() => makeCharacter(
  21891. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21892. {
  21893. front: {
  21894. height: math.unit(6 + 1 / 12, "feet"),
  21895. weight: math.unit(210, "lb"),
  21896. name: "Front",
  21897. image: {
  21898. source: "./media/characters/leonardo-lycheborne/front.svg",
  21899. extra: 776/723,
  21900. bottom: 34/810
  21901. }
  21902. },
  21903. side: {
  21904. height: math.unit(6 + 1 / 12, "feet"),
  21905. weight: math.unit(210, "lb"),
  21906. name: "Side",
  21907. image: {
  21908. source: "./media/characters/leonardo-lycheborne/side.svg",
  21909. extra: 780/728,
  21910. bottom: 12/792
  21911. }
  21912. },
  21913. back: {
  21914. height: math.unit(6 + 1 / 12, "feet"),
  21915. weight: math.unit(210, "lb"),
  21916. name: "Back",
  21917. image: {
  21918. source: "./media/characters/leonardo-lycheborne/back.svg",
  21919. extra: 775/721,
  21920. bottom: 17/792
  21921. }
  21922. },
  21923. hand: {
  21924. height: math.unit(1.08, "feet"),
  21925. name: "Hand",
  21926. image: {
  21927. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21928. }
  21929. },
  21930. foot: {
  21931. height: math.unit(1.32, "feet"),
  21932. name: "Foot",
  21933. image: {
  21934. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21935. }
  21936. },
  21937. maw: {
  21938. height: math.unit(1, "feet"),
  21939. name: "Maw",
  21940. image: {
  21941. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21942. }
  21943. },
  21944. were: {
  21945. height: math.unit(20, "feet"),
  21946. weight: math.unit(7800, "lb"),
  21947. name: "Were",
  21948. image: {
  21949. source: "./media/characters/leonardo-lycheborne/were.svg",
  21950. extra: 1224/1165,
  21951. bottom: 72/1296
  21952. }
  21953. },
  21954. feral: {
  21955. height: math.unit(7.5, "feet"),
  21956. weight: math.unit(600, "lb"),
  21957. name: "Feral",
  21958. image: {
  21959. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21960. extra: 797/702,
  21961. bottom: 139/936
  21962. }
  21963. },
  21964. taur: {
  21965. height: math.unit(11, "feet"),
  21966. weight: math.unit(3300, "lb"),
  21967. name: "Taur",
  21968. image: {
  21969. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21970. extra: 1271/1197,
  21971. bottom: 47/1318
  21972. }
  21973. },
  21974. barghest: {
  21975. height: math.unit(11, "feet"),
  21976. weight: math.unit(1300, "lb"),
  21977. name: "Barghest",
  21978. image: {
  21979. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21980. extra: 1291/1204,
  21981. bottom: 37/1328
  21982. }
  21983. },
  21984. dick: {
  21985. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21986. name: "Dick",
  21987. image: {
  21988. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21989. }
  21990. },
  21991. dickWere: {
  21992. height: math.unit((20) / 3.8, "feet"),
  21993. name: "Dick (Were)",
  21994. image: {
  21995. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21996. }
  21997. },
  21998. },
  21999. [
  22000. {
  22001. name: "Normal",
  22002. height: math.unit(6 + 1 / 12, "feet"),
  22003. default: true
  22004. },
  22005. ]
  22006. ))
  22007. characterMakers.push(() => makeCharacter(
  22008. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  22009. {
  22010. front: {
  22011. height: math.unit(10, "feet"),
  22012. weight: math.unit(350, "lb"),
  22013. name: "Front",
  22014. image: {
  22015. source: "./media/characters/jet/front.svg",
  22016. extra: 2050 / 1980,
  22017. bottom: 0.013
  22018. }
  22019. },
  22020. back: {
  22021. height: math.unit(10, "feet"),
  22022. weight: math.unit(350, "lb"),
  22023. name: "Back",
  22024. image: {
  22025. source: "./media/characters/jet/back.svg",
  22026. extra: 2050 / 1980,
  22027. bottom: 0.013
  22028. }
  22029. },
  22030. },
  22031. [
  22032. {
  22033. name: "Micro",
  22034. height: math.unit(6, "inches")
  22035. },
  22036. {
  22037. name: "Normal",
  22038. height: math.unit(10, "feet"),
  22039. default: true
  22040. },
  22041. {
  22042. name: "Macro",
  22043. height: math.unit(100, "feet")
  22044. },
  22045. ]
  22046. ))
  22047. characterMakers.push(() => makeCharacter(
  22048. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  22049. {
  22050. front: {
  22051. height: math.unit(15, "feet"),
  22052. weight: math.unit(2800, "lb"),
  22053. name: "Front",
  22054. image: {
  22055. source: "./media/characters/tanarath/front.svg",
  22056. extra: 2392 / 2220,
  22057. bottom: 0.03
  22058. }
  22059. },
  22060. back: {
  22061. height: math.unit(15, "feet"),
  22062. weight: math.unit(2800, "lb"),
  22063. name: "Back",
  22064. image: {
  22065. source: "./media/characters/tanarath/back.svg",
  22066. extra: 2392 / 2220,
  22067. bottom: 0.03
  22068. }
  22069. },
  22070. },
  22071. [
  22072. {
  22073. name: "Normal",
  22074. height: math.unit(15, "feet"),
  22075. default: true
  22076. },
  22077. ]
  22078. ))
  22079. characterMakers.push(() => makeCharacter(
  22080. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  22081. {
  22082. front: {
  22083. height: math.unit(7 + 1 / 12, "feet"),
  22084. weight: math.unit(175, "lb"),
  22085. name: "Front",
  22086. image: {
  22087. source: "./media/characters/patty-cattybatty/front.svg",
  22088. extra: 908 / 874,
  22089. bottom: 0.025
  22090. }
  22091. },
  22092. },
  22093. [
  22094. {
  22095. name: "Micro",
  22096. height: math.unit(1, "inch")
  22097. },
  22098. {
  22099. name: "Normal",
  22100. height: math.unit(7 + 1 / 12, "feet")
  22101. },
  22102. {
  22103. name: "Mini Macro",
  22104. height: math.unit(155, "feet")
  22105. },
  22106. {
  22107. name: "Macro",
  22108. height: math.unit(1077, "feet")
  22109. },
  22110. {
  22111. name: "Mega Macro",
  22112. height: math.unit(47650, "feet"),
  22113. default: true
  22114. },
  22115. {
  22116. name: "Giga Macro",
  22117. height: math.unit(440, "miles")
  22118. },
  22119. {
  22120. name: "Tera Macro",
  22121. height: math.unit(8700, "miles")
  22122. },
  22123. {
  22124. name: "Planetary Macro",
  22125. height: math.unit(32700, "miles")
  22126. },
  22127. {
  22128. name: "Solar Macro",
  22129. height: math.unit(550000, "miles")
  22130. },
  22131. {
  22132. name: "Celestial Macro",
  22133. height: math.unit(2.5, "AU")
  22134. },
  22135. ]
  22136. ))
  22137. characterMakers.push(() => makeCharacter(
  22138. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  22139. {
  22140. front: {
  22141. height: math.unit(4 + 5 / 12, "feet"),
  22142. weight: math.unit(90, "lb"),
  22143. name: "Front",
  22144. image: {
  22145. source: "./media/characters/cappu/front.svg",
  22146. extra: 1247 / 1152,
  22147. bottom: 0.012
  22148. }
  22149. },
  22150. },
  22151. [
  22152. {
  22153. name: "Normal",
  22154. height: math.unit(4 + 5 / 12, "feet"),
  22155. default: true
  22156. },
  22157. ]
  22158. ))
  22159. characterMakers.push(() => makeCharacter(
  22160. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  22161. {
  22162. frontDressed: {
  22163. height: math.unit(70, "cm"),
  22164. weight: math.unit(6, "kg"),
  22165. name: "Front (Dressed)",
  22166. image: {
  22167. source: "./media/characters/sebi/front-dressed.svg",
  22168. extra: 713.5 / 686.5,
  22169. bottom: 0.003
  22170. }
  22171. },
  22172. front: {
  22173. height: math.unit(70, "cm"),
  22174. weight: math.unit(5, "kg"),
  22175. name: "Front",
  22176. image: {
  22177. source: "./media/characters/sebi/front.svg",
  22178. extra: 713.5 / 686.5,
  22179. bottom: 0.003
  22180. }
  22181. }
  22182. },
  22183. [
  22184. {
  22185. name: "Normal",
  22186. height: math.unit(70, "cm"),
  22187. default: true
  22188. },
  22189. {
  22190. name: "Macro",
  22191. height: math.unit(8, "meters")
  22192. },
  22193. ]
  22194. ))
  22195. characterMakers.push(() => makeCharacter(
  22196. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  22197. {
  22198. front: {
  22199. height: math.unit(6, "feet"),
  22200. weight: math.unit(150, "lb"),
  22201. name: "Front",
  22202. image: {
  22203. source: "./media/characters/typhek/front.svg",
  22204. extra: 1948 / 1929,
  22205. bottom: 0.025
  22206. }
  22207. },
  22208. side: {
  22209. height: math.unit(6, "feet"),
  22210. weight: math.unit(150, "lb"),
  22211. name: "Side",
  22212. image: {
  22213. source: "./media/characters/typhek/side.svg",
  22214. extra: 2034 / 2010,
  22215. bottom: 0.003
  22216. }
  22217. },
  22218. back: {
  22219. height: math.unit(6, "feet"),
  22220. weight: math.unit(150, "lb"),
  22221. name: "Back",
  22222. image: {
  22223. source: "./media/characters/typhek/back.svg",
  22224. extra: 2005 / 1978,
  22225. bottom: 0.004
  22226. }
  22227. },
  22228. palm: {
  22229. height: math.unit(1.2, "feet"),
  22230. name: "Palm",
  22231. image: {
  22232. source: "./media/characters/typhek/palm.svg"
  22233. }
  22234. },
  22235. fist: {
  22236. height: math.unit(1.1, "feet"),
  22237. name: "Fist",
  22238. image: {
  22239. source: "./media/characters/typhek/fist.svg"
  22240. }
  22241. },
  22242. foot: {
  22243. height: math.unit(1.57, "feet"),
  22244. name: "Foot",
  22245. image: {
  22246. source: "./media/characters/typhek/foot.svg"
  22247. }
  22248. },
  22249. sole: {
  22250. height: math.unit(2.05, "feet"),
  22251. name: "Sole",
  22252. image: {
  22253. source: "./media/characters/typhek/sole.svg"
  22254. }
  22255. },
  22256. },
  22257. [
  22258. {
  22259. name: "Macro",
  22260. height: math.unit(40, "stories"),
  22261. default: true
  22262. },
  22263. {
  22264. name: "Megamacro",
  22265. height: math.unit(1, "mile")
  22266. },
  22267. {
  22268. name: "Gigamacro",
  22269. height: math.unit(4000, "solarradii")
  22270. },
  22271. {
  22272. name: "Universal",
  22273. height: math.unit(1.1, "universes")
  22274. }
  22275. ]
  22276. ))
  22277. characterMakers.push(() => makeCharacter(
  22278. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  22279. {
  22280. side: {
  22281. height: math.unit(5 + 7 / 12, "feet"),
  22282. weight: math.unit(150, "lb"),
  22283. name: "Side",
  22284. image: {
  22285. source: "./media/characters/kassy/side.svg",
  22286. extra: 1280 / 1225,
  22287. bottom: 0.002
  22288. }
  22289. },
  22290. front: {
  22291. height: math.unit(5 + 7 / 12, "feet"),
  22292. weight: math.unit(150, "lb"),
  22293. name: "Front",
  22294. image: {
  22295. source: "./media/characters/kassy/front.svg",
  22296. extra: 1280 / 1225,
  22297. bottom: 0.025
  22298. }
  22299. },
  22300. back: {
  22301. height: math.unit(5 + 7 / 12, "feet"),
  22302. weight: math.unit(150, "lb"),
  22303. name: "Back",
  22304. image: {
  22305. source: "./media/characters/kassy/back.svg",
  22306. extra: 1280 / 1225,
  22307. bottom: 0.002
  22308. }
  22309. },
  22310. foot: {
  22311. height: math.unit(1.266, "feet"),
  22312. name: "Foot",
  22313. image: {
  22314. source: "./media/characters/kassy/foot.svg"
  22315. }
  22316. },
  22317. },
  22318. [
  22319. {
  22320. name: "Normal",
  22321. height: math.unit(5 + 7 / 12, "feet")
  22322. },
  22323. {
  22324. name: "Macro",
  22325. height: math.unit(137, "feet"),
  22326. default: true
  22327. },
  22328. {
  22329. name: "Megamacro",
  22330. height: math.unit(1, "mile")
  22331. },
  22332. ]
  22333. ))
  22334. characterMakers.push(() => makeCharacter(
  22335. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  22336. {
  22337. front: {
  22338. height: math.unit(6 + 1 / 12, "feet"),
  22339. weight: math.unit(200, "lb"),
  22340. name: "Front",
  22341. image: {
  22342. source: "./media/characters/neil/front.svg",
  22343. extra: 1326 / 1250,
  22344. bottom: 0.023
  22345. }
  22346. },
  22347. },
  22348. [
  22349. {
  22350. name: "Normal",
  22351. height: math.unit(6 + 1 / 12, "feet"),
  22352. default: true
  22353. },
  22354. {
  22355. name: "Macro",
  22356. height: math.unit(200, "feet")
  22357. },
  22358. ]
  22359. ))
  22360. characterMakers.push(() => makeCharacter(
  22361. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22362. {
  22363. front: {
  22364. height: math.unit(5 + 9 / 12, "feet"),
  22365. weight: math.unit(190, "lb"),
  22366. name: "Front",
  22367. image: {
  22368. source: "./media/characters/atticus/front.svg",
  22369. extra: 2934 / 2785,
  22370. bottom: 0.025
  22371. }
  22372. },
  22373. },
  22374. [
  22375. {
  22376. name: "Normal",
  22377. height: math.unit(5 + 9 / 12, "feet"),
  22378. default: true
  22379. },
  22380. {
  22381. name: "Macro",
  22382. height: math.unit(180, "feet")
  22383. },
  22384. ]
  22385. ))
  22386. characterMakers.push(() => makeCharacter(
  22387. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22388. {
  22389. side: {
  22390. height: math.unit(9, "feet"),
  22391. weight: math.unit(650, "lb"),
  22392. name: "Side",
  22393. image: {
  22394. source: "./media/characters/milo/side.svg",
  22395. extra: 2644 / 2310,
  22396. bottom: 0.032
  22397. }
  22398. },
  22399. },
  22400. [
  22401. {
  22402. name: "Normal",
  22403. height: math.unit(9, "feet"),
  22404. default: true
  22405. },
  22406. {
  22407. name: "Macro",
  22408. height: math.unit(300, "feet")
  22409. },
  22410. ]
  22411. ))
  22412. characterMakers.push(() => makeCharacter(
  22413. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22414. {
  22415. side: {
  22416. height: math.unit(8, "meters"),
  22417. weight: math.unit(90000, "kg"),
  22418. name: "Side",
  22419. image: {
  22420. source: "./media/characters/ijzer/side.svg",
  22421. extra: 2756 / 1600,
  22422. bottom: 0.01
  22423. }
  22424. },
  22425. },
  22426. [
  22427. {
  22428. name: "Small",
  22429. height: math.unit(3, "meters")
  22430. },
  22431. {
  22432. name: "Normal",
  22433. height: math.unit(8, "meters"),
  22434. default: true
  22435. },
  22436. {
  22437. name: "Normal+",
  22438. height: math.unit(10, "meters")
  22439. },
  22440. {
  22441. name: "Bigger",
  22442. height: math.unit(24, "meters")
  22443. },
  22444. {
  22445. name: "Huge",
  22446. height: math.unit(80, "meters")
  22447. },
  22448. ]
  22449. ))
  22450. characterMakers.push(() => makeCharacter(
  22451. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22452. {
  22453. front: {
  22454. height: math.unit(6 + 2 / 12, "feet"),
  22455. weight: math.unit(153, "lb"),
  22456. name: "Front",
  22457. image: {
  22458. source: "./media/characters/luca-cervicum/front.svg",
  22459. extra: 370 / 327,
  22460. bottom: 0.015
  22461. }
  22462. },
  22463. back: {
  22464. height: math.unit(6 + 2 / 12, "feet"),
  22465. weight: math.unit(153, "lb"),
  22466. name: "Back",
  22467. image: {
  22468. source: "./media/characters/luca-cervicum/back.svg",
  22469. extra: 367 / 333,
  22470. bottom: 0.005
  22471. }
  22472. },
  22473. frontGear: {
  22474. height: math.unit(6 + 2 / 12, "feet"),
  22475. weight: math.unit(173, "lb"),
  22476. name: "Front (Gear)",
  22477. image: {
  22478. source: "./media/characters/luca-cervicum/front-gear.svg",
  22479. extra: 377 / 333,
  22480. bottom: 0.006
  22481. }
  22482. },
  22483. },
  22484. [
  22485. {
  22486. name: "Normal",
  22487. height: math.unit(6 + 2 / 12, "feet"),
  22488. default: true
  22489. },
  22490. ]
  22491. ))
  22492. characterMakers.push(() => makeCharacter(
  22493. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22494. {
  22495. front: {
  22496. height: math.unit(6 + 1 / 12, "feet"),
  22497. weight: math.unit(304, "lb"),
  22498. name: "Front",
  22499. image: {
  22500. source: "./media/characters/oliver/front.svg",
  22501. extra: 157 / 143,
  22502. bottom: 0.08
  22503. }
  22504. },
  22505. },
  22506. [
  22507. {
  22508. name: "Normal",
  22509. height: math.unit(6 + 1 / 12, "feet"),
  22510. default: true
  22511. },
  22512. ]
  22513. ))
  22514. characterMakers.push(() => makeCharacter(
  22515. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22516. {
  22517. front: {
  22518. height: math.unit(5 + 7 / 12, "feet"),
  22519. weight: math.unit(140, "lb"),
  22520. name: "Front",
  22521. image: {
  22522. source: "./media/characters/shane/front.svg",
  22523. extra: 304 / 289,
  22524. bottom: 0.005
  22525. }
  22526. },
  22527. },
  22528. [
  22529. {
  22530. name: "Normal",
  22531. height: math.unit(5 + 7 / 12, "feet"),
  22532. default: true
  22533. },
  22534. ]
  22535. ))
  22536. characterMakers.push(() => makeCharacter(
  22537. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22538. {
  22539. front: {
  22540. height: math.unit(5 + 9 / 12, "feet"),
  22541. weight: math.unit(178, "lb"),
  22542. name: "Front",
  22543. image: {
  22544. source: "./media/characters/shin/front.svg",
  22545. extra: 159 / 151,
  22546. bottom: 0.015
  22547. }
  22548. },
  22549. },
  22550. [
  22551. {
  22552. name: "Normal",
  22553. height: math.unit(5 + 9 / 12, "feet"),
  22554. default: true
  22555. },
  22556. ]
  22557. ))
  22558. characterMakers.push(() => makeCharacter(
  22559. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22560. {
  22561. front: {
  22562. height: math.unit(5 + 10 / 12, "feet"),
  22563. weight: math.unit(168, "lb"),
  22564. name: "Front",
  22565. image: {
  22566. source: "./media/characters/xerxes/front.svg",
  22567. extra: 282 / 260,
  22568. bottom: 0.045
  22569. }
  22570. },
  22571. },
  22572. [
  22573. {
  22574. name: "Normal",
  22575. height: math.unit(5 + 10 / 12, "feet"),
  22576. default: true
  22577. },
  22578. ]
  22579. ))
  22580. characterMakers.push(() => makeCharacter(
  22581. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22582. {
  22583. front: {
  22584. height: math.unit(6 + 7 / 12, "feet"),
  22585. weight: math.unit(208, "lb"),
  22586. name: "Front",
  22587. image: {
  22588. source: "./media/characters/chaska/front.svg",
  22589. extra: 332 / 319,
  22590. bottom: 0.015
  22591. }
  22592. },
  22593. },
  22594. [
  22595. {
  22596. name: "Normal",
  22597. height: math.unit(6 + 7 / 12, "feet"),
  22598. default: true
  22599. },
  22600. ]
  22601. ))
  22602. characterMakers.push(() => makeCharacter(
  22603. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22604. {
  22605. front: {
  22606. height: math.unit(5 + 8 / 12, "feet"),
  22607. weight: math.unit(208, "lb"),
  22608. name: "Front",
  22609. image: {
  22610. source: "./media/characters/enuk/front.svg",
  22611. extra: 437 / 406,
  22612. bottom: 0.02
  22613. }
  22614. },
  22615. },
  22616. [
  22617. {
  22618. name: "Normal",
  22619. height: math.unit(5 + 8 / 12, "feet"),
  22620. default: true
  22621. },
  22622. ]
  22623. ))
  22624. characterMakers.push(() => makeCharacter(
  22625. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22626. {
  22627. front: {
  22628. height: math.unit(5 + 10 / 12, "feet"),
  22629. weight: math.unit(252, "lb"),
  22630. name: "Front",
  22631. image: {
  22632. source: "./media/characters/bruun/front.svg",
  22633. extra: 197 / 187,
  22634. bottom: 0.012
  22635. }
  22636. },
  22637. },
  22638. [
  22639. {
  22640. name: "Normal",
  22641. height: math.unit(5 + 10 / 12, "feet"),
  22642. default: true
  22643. },
  22644. ]
  22645. ))
  22646. characterMakers.push(() => makeCharacter(
  22647. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22648. {
  22649. front: {
  22650. height: math.unit(6 + 10 / 12, "feet"),
  22651. weight: math.unit(255, "lb"),
  22652. name: "Front",
  22653. image: {
  22654. source: "./media/characters/alexeev/front.svg",
  22655. extra: 213 / 200,
  22656. bottom: 0.05
  22657. }
  22658. },
  22659. },
  22660. [
  22661. {
  22662. name: "Normal",
  22663. height: math.unit(6 + 10 / 12, "feet"),
  22664. default: true
  22665. },
  22666. ]
  22667. ))
  22668. characterMakers.push(() => makeCharacter(
  22669. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22670. {
  22671. front: {
  22672. height: math.unit(2 + 8 / 12, "feet"),
  22673. weight: math.unit(22, "lb"),
  22674. name: "Front",
  22675. image: {
  22676. source: "./media/characters/evelyn/front.svg",
  22677. extra: 208 / 180
  22678. }
  22679. },
  22680. },
  22681. [
  22682. {
  22683. name: "Normal",
  22684. height: math.unit(2 + 8 / 12, "feet"),
  22685. default: true
  22686. },
  22687. ]
  22688. ))
  22689. characterMakers.push(() => makeCharacter(
  22690. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22691. {
  22692. front: {
  22693. height: math.unit(5 + 9 / 12, "feet"),
  22694. weight: math.unit(139, "lb"),
  22695. name: "Front",
  22696. image: {
  22697. source: "./media/characters/inca/front.svg",
  22698. extra: 294 / 291,
  22699. bottom: 0.03
  22700. }
  22701. },
  22702. },
  22703. [
  22704. {
  22705. name: "Normal",
  22706. height: math.unit(5 + 9 / 12, "feet"),
  22707. default: true
  22708. },
  22709. ]
  22710. ))
  22711. characterMakers.push(() => makeCharacter(
  22712. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22713. {
  22714. front: {
  22715. height: math.unit(6 + 3 / 12, "feet"),
  22716. weight: math.unit(185, "lb"),
  22717. name: "Front",
  22718. image: {
  22719. source: "./media/characters/mera/front.svg",
  22720. extra: 291 / 277,
  22721. bottom: 0.03
  22722. }
  22723. },
  22724. },
  22725. [
  22726. {
  22727. name: "Normal",
  22728. height: math.unit(6 + 3 / 12, "feet"),
  22729. default: true
  22730. },
  22731. ]
  22732. ))
  22733. characterMakers.push(() => makeCharacter(
  22734. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22735. {
  22736. front: {
  22737. height: math.unit(6 + 7 / 12, "feet"),
  22738. weight: math.unit(160, "lb"),
  22739. name: "Front",
  22740. image: {
  22741. source: "./media/characters/ceres/front.svg",
  22742. extra: 1023 / 950,
  22743. bottom: 0.027
  22744. }
  22745. },
  22746. back: {
  22747. height: math.unit(6 + 7 / 12, "feet"),
  22748. weight: math.unit(160, "lb"),
  22749. name: "Back",
  22750. image: {
  22751. source: "./media/characters/ceres/back.svg",
  22752. extra: 1023 / 950
  22753. }
  22754. },
  22755. },
  22756. [
  22757. {
  22758. name: "Normal",
  22759. height: math.unit(6 + 7 / 12, "feet"),
  22760. default: true
  22761. },
  22762. ]
  22763. ))
  22764. characterMakers.push(() => makeCharacter(
  22765. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22766. {
  22767. front: {
  22768. height: math.unit(5 + 10 / 12, "feet"),
  22769. weight: math.unit(150, "lb"),
  22770. name: "Front",
  22771. image: {
  22772. source: "./media/characters/kris/front.svg",
  22773. extra: 885 / 803,
  22774. bottom: 0.03
  22775. }
  22776. },
  22777. },
  22778. [
  22779. {
  22780. name: "Normal",
  22781. height: math.unit(5 + 10 / 12, "feet"),
  22782. default: true
  22783. },
  22784. ]
  22785. ))
  22786. characterMakers.push(() => makeCharacter(
  22787. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22788. {
  22789. dragon_front: {
  22790. height: math.unit(5, "feet"),
  22791. name: "Front",
  22792. image: {
  22793. source: "./media/characters/taluthus/dragon-front.svg",
  22794. extra: 1203/1098,
  22795. bottom: 46/1249
  22796. },
  22797. form: "dragon",
  22798. default: true
  22799. },
  22800. dragon_maw: {
  22801. height: math.unit(2.35, "feet"),
  22802. name: "Maw",
  22803. image: {
  22804. source: "./media/characters/taluthus/dragon-maw.svg"
  22805. },
  22806. form: "dragon",
  22807. },
  22808. kitsune_front: {
  22809. height: math.unit(7, "feet"),
  22810. name: "Front",
  22811. image: {
  22812. source: "./media/characters/taluthus/kitsune-front.svg",
  22813. extra: 900/841,
  22814. bottom: 65/965
  22815. },
  22816. form: "kitsune",
  22817. default: true
  22818. },
  22819. },
  22820. [
  22821. {
  22822. name: "Normal",
  22823. height: math.unit(5, "feet"),
  22824. form: "dragon",
  22825. default: true,
  22826. },
  22827. {
  22828. name: "Normal",
  22829. height: math.unit(7, "feet"),
  22830. form: "kitsune",
  22831. default: true
  22832. },
  22833. {
  22834. name: "Macro",
  22835. height: math.unit(300, "feet"),
  22836. allForms: true
  22837. },
  22838. ],
  22839. {
  22840. "dragon": {
  22841. name: "Dragon",
  22842. default: true
  22843. },
  22844. "kitsune": {
  22845. name: "Kitsune",
  22846. },
  22847. }
  22848. ))
  22849. characterMakers.push(() => makeCharacter(
  22850. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22851. {
  22852. front: {
  22853. height: math.unit(5 + 9 / 12, "feet"),
  22854. weight: math.unit(145, "lb"),
  22855. name: "Front",
  22856. image: {
  22857. source: "./media/characters/dawn/front.svg",
  22858. extra: 2094 / 2016,
  22859. bottom: 0.025
  22860. }
  22861. },
  22862. back: {
  22863. height: math.unit(5 + 9 / 12, "feet"),
  22864. weight: math.unit(160, "lb"),
  22865. name: "Back",
  22866. image: {
  22867. source: "./media/characters/dawn/back.svg",
  22868. extra: 2112 / 2080,
  22869. bottom: 0.005
  22870. }
  22871. },
  22872. },
  22873. [
  22874. {
  22875. name: "Normal",
  22876. height: math.unit(6 + 7 / 12, "feet"),
  22877. default: true
  22878. },
  22879. ]
  22880. ))
  22881. characterMakers.push(() => makeCharacter(
  22882. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22883. {
  22884. anthro: {
  22885. height: math.unit(8 + 3 / 12, "feet"),
  22886. weight: math.unit(450, "lb"),
  22887. name: "Anthro",
  22888. image: {
  22889. source: "./media/characters/arador/anthro.svg",
  22890. extra: 1835 / 1718,
  22891. bottom: 0.025
  22892. }
  22893. },
  22894. feral: {
  22895. height: math.unit(4, "feet"),
  22896. weight: math.unit(200, "lb"),
  22897. name: "Feral",
  22898. image: {
  22899. source: "./media/characters/arador/feral.svg",
  22900. extra: 1683 / 1514,
  22901. bottom: 0.07
  22902. }
  22903. },
  22904. },
  22905. [
  22906. {
  22907. name: "Normal",
  22908. height: math.unit(8 + 3 / 12, "feet")
  22909. },
  22910. {
  22911. name: "Macro",
  22912. height: math.unit(82.5, "feet"),
  22913. default: true
  22914. },
  22915. ]
  22916. ))
  22917. characterMakers.push(() => makeCharacter(
  22918. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22919. {
  22920. front: {
  22921. height: math.unit(5 + 10 / 12, "feet"),
  22922. weight: math.unit(125, "lb"),
  22923. name: "Front",
  22924. image: {
  22925. source: "./media/characters/dharsi/front.svg",
  22926. extra: 716 / 630,
  22927. bottom: 0.035
  22928. }
  22929. },
  22930. },
  22931. [
  22932. {
  22933. name: "Nano",
  22934. height: math.unit(100, "nm")
  22935. },
  22936. {
  22937. name: "Micro",
  22938. height: math.unit(2, "inches")
  22939. },
  22940. {
  22941. name: "Normal",
  22942. height: math.unit(5 + 10 / 12, "feet"),
  22943. default: true
  22944. },
  22945. {
  22946. name: "Macro",
  22947. height: math.unit(1000, "feet")
  22948. },
  22949. {
  22950. name: "Megamacro",
  22951. height: math.unit(10, "miles")
  22952. },
  22953. {
  22954. name: "Gigamacro",
  22955. height: math.unit(3000, "miles")
  22956. },
  22957. {
  22958. name: "Teramacro",
  22959. height: math.unit(500000, "miles")
  22960. },
  22961. {
  22962. name: "Teramacro+",
  22963. height: math.unit(30, "galaxies")
  22964. },
  22965. ]
  22966. ))
  22967. characterMakers.push(() => makeCharacter(
  22968. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22969. {
  22970. front: {
  22971. height: math.unit(6, "feet"),
  22972. weight: math.unit(150, "lb"),
  22973. name: "Front",
  22974. image: {
  22975. source: "./media/characters/deathy/front.svg",
  22976. extra: 1552 / 1463,
  22977. bottom: 0.025
  22978. }
  22979. },
  22980. side: {
  22981. height: math.unit(6, "feet"),
  22982. weight: math.unit(150, "lb"),
  22983. name: "Side",
  22984. image: {
  22985. source: "./media/characters/deathy/side.svg",
  22986. extra: 1604 / 1455,
  22987. bottom: 0.025
  22988. }
  22989. },
  22990. back: {
  22991. height: math.unit(6, "feet"),
  22992. weight: math.unit(150, "lb"),
  22993. name: "Back",
  22994. image: {
  22995. source: "./media/characters/deathy/back.svg",
  22996. extra: 1580 / 1463,
  22997. bottom: 0.005
  22998. }
  22999. },
  23000. },
  23001. [
  23002. {
  23003. name: "Micro",
  23004. height: math.unit(5, "millimeters")
  23005. },
  23006. {
  23007. name: "Normal",
  23008. height: math.unit(6 + 5 / 12, "feet"),
  23009. default: true
  23010. },
  23011. ]
  23012. ))
  23013. characterMakers.push(() => makeCharacter(
  23014. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  23015. {
  23016. front: {
  23017. height: math.unit(16, "feet"),
  23018. weight: math.unit(4000, "lb"),
  23019. name: "Front",
  23020. image: {
  23021. source: "./media/characters/juniper/front.svg",
  23022. bottom: 0.04
  23023. }
  23024. },
  23025. },
  23026. [
  23027. {
  23028. name: "Normal",
  23029. height: math.unit(16, "feet"),
  23030. default: true
  23031. },
  23032. ]
  23033. ))
  23034. characterMakers.push(() => makeCharacter(
  23035. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  23036. {
  23037. front: {
  23038. height: math.unit(6, "feet"),
  23039. weight: math.unit(150, "lb"),
  23040. name: "Front",
  23041. image: {
  23042. source: "./media/characters/hipster/front.svg",
  23043. extra: 1312 / 1209,
  23044. bottom: 0.025
  23045. }
  23046. },
  23047. back: {
  23048. height: math.unit(6, "feet"),
  23049. weight: math.unit(150, "lb"),
  23050. name: "Back",
  23051. image: {
  23052. source: "./media/characters/hipster/back.svg",
  23053. extra: 1281 / 1196,
  23054. bottom: 0.01
  23055. }
  23056. },
  23057. },
  23058. [
  23059. {
  23060. name: "Micro",
  23061. height: math.unit(1, "mm")
  23062. },
  23063. {
  23064. name: "Normal",
  23065. height: math.unit(4, "inches"),
  23066. default: true
  23067. },
  23068. {
  23069. name: "Macro",
  23070. height: math.unit(500, "feet")
  23071. },
  23072. {
  23073. name: "Megamacro",
  23074. height: math.unit(1000, "miles")
  23075. },
  23076. ]
  23077. ))
  23078. characterMakers.push(() => makeCharacter(
  23079. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  23080. {
  23081. front: {
  23082. height: math.unit(6, "feet"),
  23083. weight: math.unit(150, "lb"),
  23084. name: "Front",
  23085. image: {
  23086. source: "./media/characters/tendirmuldr/front.svg",
  23087. extra: 1878 / 1772,
  23088. bottom: 0.015
  23089. }
  23090. },
  23091. },
  23092. [
  23093. {
  23094. name: "Megamacro",
  23095. height: math.unit(1500, "miles"),
  23096. default: true
  23097. },
  23098. ]
  23099. ))
  23100. characterMakers.push(() => makeCharacter(
  23101. { name: "Mort", species: ["demon"], tags: ["feral"] },
  23102. {
  23103. front: {
  23104. height: math.unit(14, "feet"),
  23105. weight: math.unit(12000, "lb"),
  23106. name: "Front",
  23107. image: {
  23108. source: "./media/characters/mort/front.svg",
  23109. extra: 365 / 318,
  23110. bottom: 0.01
  23111. }
  23112. },
  23113. side: {
  23114. height: math.unit(14, "feet"),
  23115. weight: math.unit(12000, "lb"),
  23116. name: "Side",
  23117. image: {
  23118. source: "./media/characters/mort/side.svg",
  23119. extra: 365 / 318,
  23120. bottom: 0.052
  23121. },
  23122. default: true
  23123. },
  23124. back: {
  23125. height: math.unit(14, "feet"),
  23126. weight: math.unit(12000, "lb"),
  23127. name: "Back",
  23128. image: {
  23129. source: "./media/characters/mort/back.svg",
  23130. extra: 371 / 332,
  23131. bottom: 0.18
  23132. }
  23133. },
  23134. },
  23135. [
  23136. {
  23137. name: "Normal",
  23138. height: math.unit(14, "feet"),
  23139. default: true
  23140. },
  23141. ]
  23142. ))
  23143. characterMakers.push(() => makeCharacter(
  23144. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  23145. {
  23146. front: {
  23147. height: math.unit(8, "feet"),
  23148. weight: math.unit(1, "ton"),
  23149. name: "Front",
  23150. image: {
  23151. source: "./media/characters/lycoa/front.svg",
  23152. extra: 1836/1728,
  23153. bottom: 81/1917
  23154. }
  23155. },
  23156. back: {
  23157. height: math.unit(8, "feet"),
  23158. weight: math.unit(1, "ton"),
  23159. name: "Back",
  23160. image: {
  23161. source: "./media/characters/lycoa/back.svg",
  23162. extra: 1785/1720,
  23163. bottom: 91/1876
  23164. }
  23165. },
  23166. head: {
  23167. height: math.unit(1.6243, "feet"),
  23168. name: "Head",
  23169. image: {
  23170. source: "./media/characters/lycoa/head.svg",
  23171. extra: 1011/782,
  23172. bottom: 0/1011
  23173. }
  23174. },
  23175. tailmaw: {
  23176. height: math.unit(1.9, "feet"),
  23177. name: "Tailmaw",
  23178. image: {
  23179. source: "./media/characters/lycoa/tailmaw.svg"
  23180. }
  23181. },
  23182. tentacles: {
  23183. height: math.unit(2.1, "feet"),
  23184. name: "Tentacles",
  23185. image: {
  23186. source: "./media/characters/lycoa/tentacles.svg"
  23187. }
  23188. },
  23189. dick: {
  23190. height: math.unit(1.73, "feet"),
  23191. name: "Dick",
  23192. image: {
  23193. source: "./media/characters/lycoa/dick.svg"
  23194. }
  23195. },
  23196. },
  23197. [
  23198. {
  23199. name: "Normal",
  23200. height: math.unit(8, "feet"),
  23201. default: true
  23202. },
  23203. {
  23204. name: "Macro",
  23205. height: math.unit(30, "feet")
  23206. },
  23207. ]
  23208. ))
  23209. characterMakers.push(() => makeCharacter(
  23210. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  23211. {
  23212. front: {
  23213. height: math.unit(4 + 2 / 12, "feet"),
  23214. weight: math.unit(70, "lb"),
  23215. name: "Front",
  23216. image: {
  23217. source: "./media/characters/naldara/front.svg",
  23218. extra: 1664/1387,
  23219. bottom: 81/1745
  23220. },
  23221. form: "anthro",
  23222. default: true
  23223. },
  23224. naga: {
  23225. height: math.unit(20, "feet"),
  23226. weight: math.unit(15000, "kg"),
  23227. name: "Front",
  23228. image: {
  23229. source: "./media/characters/naldara/naga.svg",
  23230. extra: 1590/1396,
  23231. bottom: 285/1875
  23232. },
  23233. form: "naga",
  23234. default: true
  23235. },
  23236. },
  23237. [
  23238. {
  23239. name: "Normal",
  23240. height: math.unit(4 + 2 / 12, "feet"),
  23241. form: "anthro",
  23242. default: true
  23243. },
  23244. {
  23245. name: "Normal",
  23246. height: math.unit(20, "feet"),
  23247. form: "naga",
  23248. default: true
  23249. },
  23250. ],
  23251. {
  23252. "anthro": {
  23253. name: "Anthro",
  23254. default: true
  23255. },
  23256. "naga": {
  23257. name: "Naga"
  23258. }
  23259. }
  23260. ))
  23261. characterMakers.push(() => makeCharacter(
  23262. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  23263. {
  23264. front: {
  23265. height: math.unit(13 + 7 / 12, "feet"),
  23266. weight: math.unit(1500, "lb"),
  23267. name: "Front",
  23268. image: {
  23269. source: "./media/characters/briar/front.svg",
  23270. extra: 1223/1157,
  23271. bottom: 123/1346
  23272. }
  23273. },
  23274. },
  23275. [
  23276. {
  23277. name: "Normal",
  23278. height: math.unit(13 + 7 / 12, "feet"),
  23279. default: true
  23280. },
  23281. ]
  23282. ))
  23283. characterMakers.push(() => makeCharacter(
  23284. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  23285. {
  23286. side: {
  23287. height: math.unit(16, "feet"),
  23288. weight: math.unit(500, "lb"),
  23289. name: "Side",
  23290. image: {
  23291. source: "./media/characters/vanguard/side.svg",
  23292. extra: 1022/914,
  23293. bottom: 30/1052
  23294. }
  23295. },
  23296. sideAlt: {
  23297. height: math.unit(10, "feet"),
  23298. weight: math.unit(500, "lb"),
  23299. name: "Side (Alt)",
  23300. image: {
  23301. source: "./media/characters/vanguard/side-alt.svg",
  23302. extra: 502 / 425,
  23303. bottom: 0.087
  23304. }
  23305. },
  23306. },
  23307. [
  23308. {
  23309. name: "Normal",
  23310. height: math.unit(17.71, "feet"),
  23311. default: true
  23312. },
  23313. ]
  23314. ))
  23315. characterMakers.push(() => makeCharacter(
  23316. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  23317. {
  23318. front: {
  23319. height: math.unit(7.5, "feet"),
  23320. weight: math.unit(2, "lb"),
  23321. name: "Front",
  23322. image: {
  23323. source: "./media/characters/artemis/work-safe-front.svg",
  23324. extra: 1192 / 1075,
  23325. bottom: 0.07
  23326. },
  23327. form: "work-safe",
  23328. default: true
  23329. },
  23330. frontNsfw: {
  23331. height: math.unit(7.5, "feet"),
  23332. weight: math.unit(2, "lb"),
  23333. name: "Front",
  23334. image: {
  23335. source: "./media/characters/artemis/calibrating-front.svg",
  23336. extra: 1192 / 1075,
  23337. bottom: 0.07
  23338. },
  23339. form: "calibrating",
  23340. default: true
  23341. },
  23342. frontNsfwer: {
  23343. height: math.unit(7.5, "feet"),
  23344. weight: math.unit(2, "lb"),
  23345. name: "Front",
  23346. image: {
  23347. source: "./media/characters/artemis/oversize-load-front.svg",
  23348. extra: 1192 / 1075,
  23349. bottom: 0.07
  23350. },
  23351. form: "oversize-load",
  23352. default: true
  23353. },
  23354. side: {
  23355. height: math.unit(7.5, "feet"),
  23356. weight: math.unit(2, "lb"),
  23357. name: "Side",
  23358. image: {
  23359. source: "./media/characters/artemis/work-safe-side.svg",
  23360. extra: 1192 / 1075,
  23361. bottom: 0.07
  23362. },
  23363. form: "work-safe"
  23364. },
  23365. sideNsfw: {
  23366. height: math.unit(7.5, "feet"),
  23367. weight: math.unit(2, "lb"),
  23368. name: "Side",
  23369. image: {
  23370. source: "./media/characters/artemis/calibrating-side.svg",
  23371. extra: 1192 / 1075,
  23372. bottom: 0.07
  23373. },
  23374. form: "calibrating"
  23375. },
  23376. sideNsfwer: {
  23377. height: math.unit(7.5, "feet"),
  23378. weight: math.unit(2, "lb"),
  23379. name: "Side",
  23380. image: {
  23381. source: "./media/characters/artemis/oversize-load-side.svg",
  23382. extra: 1192 / 1075,
  23383. bottom: 0.07
  23384. },
  23385. form: "oversize-load"
  23386. },
  23387. maw: {
  23388. height: math.unit(1.1, "feet"),
  23389. name: "Maw",
  23390. image: {
  23391. source: "./media/characters/artemis/maw.svg"
  23392. },
  23393. form: "work-safe"
  23394. },
  23395. stomach: {
  23396. height: math.unit(0.95, "feet"),
  23397. name: "Stomach",
  23398. image: {
  23399. source: "./media/characters/artemis/stomach.svg"
  23400. },
  23401. form: "work-safe"
  23402. },
  23403. dickCanine: {
  23404. height: math.unit(1, "feet"),
  23405. name: "Dick (Canine)",
  23406. image: {
  23407. source: "./media/characters/artemis/dick-canine.svg"
  23408. },
  23409. form: "calibrating"
  23410. },
  23411. dickEquine: {
  23412. height: math.unit(0.85, "feet"),
  23413. name: "Dick (Equine)",
  23414. image: {
  23415. source: "./media/characters/artemis/dick-equine.svg"
  23416. },
  23417. form: "calibrating"
  23418. },
  23419. dickExotic: {
  23420. height: math.unit(0.85, "feet"),
  23421. name: "Dick (Exotic)",
  23422. image: {
  23423. source: "./media/characters/artemis/dick-exotic.svg"
  23424. },
  23425. form: "calibrating"
  23426. },
  23427. dickCanineBigger: {
  23428. height: math.unit(1 * 1.33, "feet"),
  23429. name: "Dick (Canine)",
  23430. image: {
  23431. source: "./media/characters/artemis/dick-canine.svg"
  23432. },
  23433. form: "oversize-load"
  23434. },
  23435. dickEquineBigger: {
  23436. height: math.unit(0.85 * 1.33, "feet"),
  23437. name: "Dick (Equine)",
  23438. image: {
  23439. source: "./media/characters/artemis/dick-equine.svg"
  23440. },
  23441. form: "oversize-load"
  23442. },
  23443. dickExoticBigger: {
  23444. height: math.unit(0.85 * 1.33, "feet"),
  23445. name: "Dick (Exotic)",
  23446. image: {
  23447. source: "./media/characters/artemis/dick-exotic.svg"
  23448. },
  23449. form: "oversize-load"
  23450. },
  23451. },
  23452. [
  23453. {
  23454. name: "Normal",
  23455. height: math.unit(7.5, "feet"),
  23456. form: "work-safe",
  23457. default: true
  23458. },
  23459. {
  23460. name: "Normal",
  23461. height: math.unit(7.5, "feet"),
  23462. form: "calibrating",
  23463. default: true
  23464. },
  23465. {
  23466. name: "Normal",
  23467. height: math.unit(7.5, "feet"),
  23468. form: "oversize-load",
  23469. default: true
  23470. },
  23471. {
  23472. name: "Enlarged",
  23473. height: math.unit(12, "feet"),
  23474. form: "work-safe",
  23475. },
  23476. {
  23477. name: "Enlarged",
  23478. height: math.unit(12, "feet"),
  23479. form: "calibrating",
  23480. },
  23481. {
  23482. name: "Enlarged",
  23483. height: math.unit(12, "feet"),
  23484. form: "oversize-load",
  23485. },
  23486. ],
  23487. {
  23488. "work-safe": {
  23489. name: "Work-Safe",
  23490. default: true
  23491. },
  23492. "calibrating": {
  23493. name: "Calibrating"
  23494. },
  23495. "oversize-load": {
  23496. name: "Oversize Load"
  23497. }
  23498. }
  23499. ))
  23500. characterMakers.push(() => makeCharacter(
  23501. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23502. {
  23503. front: {
  23504. height: math.unit(5 + 3 / 12, "feet"),
  23505. weight: math.unit(160, "lb"),
  23506. name: "Front",
  23507. image: {
  23508. source: "./media/characters/kira/front.svg",
  23509. extra: 906 / 786,
  23510. bottom: 0.01
  23511. }
  23512. },
  23513. back: {
  23514. height: math.unit(5 + 3 / 12, "feet"),
  23515. weight: math.unit(160, "lb"),
  23516. name: "Back",
  23517. image: {
  23518. source: "./media/characters/kira/back.svg",
  23519. extra: 882 / 757,
  23520. bottom: 0.005
  23521. }
  23522. },
  23523. frontDressed: {
  23524. height: math.unit(5 + 3 / 12, "feet"),
  23525. weight: math.unit(160, "lb"),
  23526. name: "Front (Dressed)",
  23527. image: {
  23528. source: "./media/characters/kira/front-dressed.svg",
  23529. extra: 906 / 786,
  23530. bottom: 0.01
  23531. }
  23532. },
  23533. beans: {
  23534. height: math.unit(0.92, "feet"),
  23535. name: "Beans",
  23536. image: {
  23537. source: "./media/characters/kira/beans.svg"
  23538. }
  23539. },
  23540. },
  23541. [
  23542. {
  23543. name: "Normal",
  23544. height: math.unit(5 + 3 / 12, "feet"),
  23545. default: true
  23546. },
  23547. ]
  23548. ))
  23549. characterMakers.push(() => makeCharacter(
  23550. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23551. {
  23552. front: {
  23553. height: math.unit(5 + 4 / 12, "feet"),
  23554. weight: math.unit(145, "lb"),
  23555. name: "Front",
  23556. image: {
  23557. source: "./media/characters/scramble/front.svg",
  23558. extra: 763 / 727,
  23559. bottom: 0.05
  23560. }
  23561. },
  23562. back: {
  23563. height: math.unit(5 + 4 / 12, "feet"),
  23564. weight: math.unit(145, "lb"),
  23565. name: "Back",
  23566. image: {
  23567. source: "./media/characters/scramble/back.svg",
  23568. extra: 826 / 737,
  23569. bottom: 0.002
  23570. }
  23571. },
  23572. },
  23573. [
  23574. {
  23575. name: "Normal",
  23576. height: math.unit(5 + 4 / 12, "feet"),
  23577. default: true
  23578. },
  23579. ]
  23580. ))
  23581. characterMakers.push(() => makeCharacter(
  23582. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23583. {
  23584. side: {
  23585. height: math.unit(6 + 2 / 12, "feet"),
  23586. weight: math.unit(190, "lb"),
  23587. name: "Side",
  23588. image: {
  23589. source: "./media/characters/biscuit/side.svg",
  23590. extra: 858 / 791,
  23591. bottom: 0.044
  23592. }
  23593. },
  23594. },
  23595. [
  23596. {
  23597. name: "Normal",
  23598. height: math.unit(6 + 2 / 12, "feet"),
  23599. default: true
  23600. },
  23601. ]
  23602. ))
  23603. characterMakers.push(() => makeCharacter(
  23604. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23605. {
  23606. front: {
  23607. height: math.unit(5 + 2 / 12, "feet"),
  23608. weight: math.unit(120, "lb"),
  23609. name: "Front",
  23610. image: {
  23611. source: "./media/characters/poffin/front.svg",
  23612. extra: 786 / 680,
  23613. bottom: 0.005
  23614. }
  23615. },
  23616. },
  23617. [
  23618. {
  23619. name: "Normal",
  23620. height: math.unit(5 + 2 / 12, "feet"),
  23621. default: true
  23622. },
  23623. ]
  23624. ))
  23625. characterMakers.push(() => makeCharacter(
  23626. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23627. {
  23628. front: {
  23629. height: math.unit(6 + 3 / 12, "feet"),
  23630. weight: math.unit(519, "lb"),
  23631. name: "Front",
  23632. image: {
  23633. source: "./media/characters/dhari/front.svg",
  23634. extra: 1048 / 946,
  23635. bottom: 0.015
  23636. }
  23637. },
  23638. back: {
  23639. height: math.unit(6 + 3 / 12, "feet"),
  23640. weight: math.unit(519, "lb"),
  23641. name: "Back",
  23642. image: {
  23643. source: "./media/characters/dhari/back.svg",
  23644. extra: 1048 / 931,
  23645. bottom: 0.005
  23646. }
  23647. },
  23648. frontDressed: {
  23649. height: math.unit(6 + 3 / 12, "feet"),
  23650. weight: math.unit(519, "lb"),
  23651. name: "Front (Dressed)",
  23652. image: {
  23653. source: "./media/characters/dhari/front-dressed.svg",
  23654. extra: 1713 / 1546,
  23655. bottom: 0.02
  23656. }
  23657. },
  23658. backDressed: {
  23659. height: math.unit(6 + 3 / 12, "feet"),
  23660. weight: math.unit(519, "lb"),
  23661. name: "Back (Dressed)",
  23662. image: {
  23663. source: "./media/characters/dhari/back-dressed.svg",
  23664. extra: 1699 / 1537,
  23665. bottom: 0.01
  23666. }
  23667. },
  23668. maw: {
  23669. height: math.unit(0.95, "feet"),
  23670. name: "Maw",
  23671. image: {
  23672. source: "./media/characters/dhari/maw.svg"
  23673. }
  23674. },
  23675. wereFront: {
  23676. height: math.unit(12 + 8 / 12, "feet"),
  23677. weight: math.unit(4000, "lb"),
  23678. name: "Front (Were)",
  23679. image: {
  23680. source: "./media/characters/dhari/were-front.svg",
  23681. extra: 1065 / 969,
  23682. bottom: 0.015
  23683. }
  23684. },
  23685. wereBack: {
  23686. height: math.unit(12 + 8 / 12, "feet"),
  23687. weight: math.unit(4000, "lb"),
  23688. name: "Back (Were)",
  23689. image: {
  23690. source: "./media/characters/dhari/were-back.svg",
  23691. extra: 1065 / 969,
  23692. bottom: 0.012
  23693. }
  23694. },
  23695. wereMaw: {
  23696. height: math.unit(0.625, "meters"),
  23697. name: "Maw (Were)",
  23698. image: {
  23699. source: "./media/characters/dhari/were-maw.svg"
  23700. }
  23701. },
  23702. },
  23703. [
  23704. {
  23705. name: "Normal",
  23706. height: math.unit(6 + 3 / 12, "feet"),
  23707. default: true
  23708. },
  23709. ]
  23710. ))
  23711. characterMakers.push(() => makeCharacter(
  23712. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23713. {
  23714. anthro: {
  23715. height: math.unit(5 + 7 / 12, "feet"),
  23716. weight: math.unit(175, "lb"),
  23717. name: "Anthro",
  23718. image: {
  23719. source: "./media/characters/rena-dyne/anthro.svg",
  23720. extra: 1849 / 1785,
  23721. bottom: 0.005
  23722. }
  23723. },
  23724. taur: {
  23725. height: math.unit(15 + 6 / 12, "feet"),
  23726. weight: math.unit(8000, "lb"),
  23727. name: "Taur",
  23728. image: {
  23729. source: "./media/characters/rena-dyne/taur.svg",
  23730. extra: 2315 / 2234,
  23731. bottom: 0.033
  23732. }
  23733. },
  23734. },
  23735. [
  23736. {
  23737. name: "Normal",
  23738. height: math.unit(5 + 7 / 12, "feet"),
  23739. default: true
  23740. },
  23741. ]
  23742. ))
  23743. characterMakers.push(() => makeCharacter(
  23744. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23745. {
  23746. front: {
  23747. height: math.unit(8, "feet"),
  23748. weight: math.unit(600, "lb"),
  23749. name: "Front",
  23750. image: {
  23751. source: "./media/characters/weremeep/front.svg",
  23752. extra: 970/849,
  23753. bottom: 7/977
  23754. }
  23755. },
  23756. },
  23757. [
  23758. {
  23759. name: "Normal",
  23760. height: math.unit(8, "feet"),
  23761. default: true
  23762. },
  23763. {
  23764. name: "Lorg",
  23765. height: math.unit(12, "feet")
  23766. },
  23767. {
  23768. name: "Oh Lawd She Comin'",
  23769. height: math.unit(20, "feet")
  23770. },
  23771. ]
  23772. ))
  23773. characterMakers.push(() => makeCharacter(
  23774. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23775. {
  23776. front: {
  23777. height: math.unit(4, "feet"),
  23778. weight: math.unit(90, "lb"),
  23779. name: "Front",
  23780. image: {
  23781. source: "./media/characters/reza/front.svg",
  23782. extra: 1183 / 1111,
  23783. bottom: 0.017
  23784. }
  23785. },
  23786. back: {
  23787. height: math.unit(4, "feet"),
  23788. weight: math.unit(90, "lb"),
  23789. name: "Back",
  23790. image: {
  23791. source: "./media/characters/reza/back.svg",
  23792. extra: 1183 / 1111,
  23793. bottom: 0.01
  23794. }
  23795. },
  23796. drake: {
  23797. height: math.unit(30, "feet"),
  23798. weight: math.unit(246960, "lb"),
  23799. name: "Drake",
  23800. image: {
  23801. source: "./media/characters/reza/drake.svg",
  23802. extra: 2350 / 2024,
  23803. bottom: 60.7 / 2403
  23804. }
  23805. },
  23806. },
  23807. [
  23808. {
  23809. name: "Normal",
  23810. height: math.unit(4, "feet"),
  23811. default: true
  23812. },
  23813. ]
  23814. ))
  23815. characterMakers.push(() => makeCharacter(
  23816. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23817. {
  23818. side: {
  23819. height: math.unit(15, "feet"),
  23820. weight: math.unit(14, "tons"),
  23821. name: "Side",
  23822. image: {
  23823. source: "./media/characters/athea/side.svg",
  23824. extra: 960 / 540,
  23825. bottom: 0.003
  23826. }
  23827. },
  23828. sitting: {
  23829. height: math.unit(6 * 2.85, "feet"),
  23830. weight: math.unit(14, "tons"),
  23831. name: "Sitting",
  23832. image: {
  23833. source: "./media/characters/athea/sitting.svg",
  23834. extra: 621 / 581,
  23835. bottom: 0.075
  23836. }
  23837. },
  23838. maw: {
  23839. height: math.unit(7.59498031496063, "feet"),
  23840. name: "Maw",
  23841. image: {
  23842. source: "./media/characters/athea/maw.svg"
  23843. }
  23844. },
  23845. },
  23846. [
  23847. {
  23848. name: "Lap Cat",
  23849. height: math.unit(2.5, "feet")
  23850. },
  23851. {
  23852. name: "Minimacro",
  23853. height: math.unit(15, "feet"),
  23854. default: true
  23855. },
  23856. {
  23857. name: "Macro",
  23858. height: math.unit(120, "feet")
  23859. },
  23860. {
  23861. name: "Macro+",
  23862. height: math.unit(640, "feet")
  23863. },
  23864. {
  23865. name: "Colossus",
  23866. height: math.unit(2.2, "miles")
  23867. },
  23868. ]
  23869. ))
  23870. characterMakers.push(() => makeCharacter(
  23871. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23872. {
  23873. front: {
  23874. height: math.unit(8 + 8 / 12, "feet"),
  23875. weight: math.unit(130, "kg"),
  23876. name: "Front",
  23877. image: {
  23878. source: "./media/characters/seroko/front.svg",
  23879. extra: 1385 / 1280,
  23880. bottom: 0.025
  23881. }
  23882. },
  23883. back: {
  23884. height: math.unit(8 + 8 / 12, "feet"),
  23885. weight: math.unit(130, "kg"),
  23886. name: "Back",
  23887. image: {
  23888. source: "./media/characters/seroko/back.svg",
  23889. extra: 1369 / 1238,
  23890. bottom: 0.018
  23891. }
  23892. },
  23893. frontDressed: {
  23894. height: math.unit(8 + 8 / 12, "feet"),
  23895. weight: math.unit(130, "kg"),
  23896. name: "Front (Dressed)",
  23897. image: {
  23898. source: "./media/characters/seroko/front-dressed.svg",
  23899. extra: 1366 / 1275,
  23900. bottom: 0.03
  23901. }
  23902. },
  23903. },
  23904. [
  23905. {
  23906. name: "Normal",
  23907. height: math.unit(8 + 8 / 12, "feet"),
  23908. default: true
  23909. },
  23910. ]
  23911. ))
  23912. characterMakers.push(() => makeCharacter(
  23913. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23914. {
  23915. front: {
  23916. height: math.unit(5.5, "feet"),
  23917. weight: math.unit(160, "lb"),
  23918. name: "Front",
  23919. image: {
  23920. source: "./media/characters/quatzi/front.svg",
  23921. extra: 2346 / 2242,
  23922. bottom: 0.015
  23923. }
  23924. },
  23925. },
  23926. [
  23927. {
  23928. name: "Normal",
  23929. height: math.unit(5.5, "feet"),
  23930. default: true
  23931. },
  23932. {
  23933. name: "Big",
  23934. height: math.unit(7.7, "feet")
  23935. },
  23936. ]
  23937. ))
  23938. characterMakers.push(() => makeCharacter(
  23939. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23940. {
  23941. front: {
  23942. height: math.unit(5 + 11 / 12, "feet"),
  23943. weight: math.unit(180, "lb"),
  23944. name: "Front",
  23945. image: {
  23946. source: "./media/characters/sen/front.svg",
  23947. extra: 1321 / 1254,
  23948. bottom: 0.015
  23949. }
  23950. },
  23951. side: {
  23952. height: math.unit(5 + 11 / 12, "feet"),
  23953. weight: math.unit(180, "lb"),
  23954. name: "Side",
  23955. image: {
  23956. source: "./media/characters/sen/side.svg",
  23957. extra: 1321 / 1254,
  23958. bottom: 0.007
  23959. }
  23960. },
  23961. back: {
  23962. height: math.unit(5 + 11 / 12, "feet"),
  23963. weight: math.unit(180, "lb"),
  23964. name: "Back",
  23965. image: {
  23966. source: "./media/characters/sen/back.svg",
  23967. extra: 1321 / 1254
  23968. }
  23969. },
  23970. },
  23971. [
  23972. {
  23973. name: "Normal",
  23974. height: math.unit(5 + 11 / 12, "feet"),
  23975. default: true
  23976. },
  23977. ]
  23978. ))
  23979. characterMakers.push(() => makeCharacter(
  23980. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23981. {
  23982. front: {
  23983. height: math.unit(166.6, "cm"),
  23984. weight: math.unit(66.6, "kg"),
  23985. name: "Front",
  23986. image: {
  23987. source: "./media/characters/fruity/front.svg",
  23988. extra: 1510 / 1386,
  23989. bottom: 0.04
  23990. }
  23991. },
  23992. back: {
  23993. height: math.unit(166.6, "cm"),
  23994. weight: math.unit(66.6, "lb"),
  23995. name: "Back",
  23996. image: {
  23997. source: "./media/characters/fruity/back.svg",
  23998. extra: 1563 / 1435,
  23999. bottom: 0.005
  24000. }
  24001. },
  24002. },
  24003. [
  24004. {
  24005. name: "Normal",
  24006. height: math.unit(166.6, "cm"),
  24007. default: true
  24008. },
  24009. {
  24010. name: "Demonic",
  24011. height: math.unit(166.6, "feet")
  24012. },
  24013. ]
  24014. ))
  24015. characterMakers.push(() => makeCharacter(
  24016. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  24017. {
  24018. side: {
  24019. height: math.unit(10, "feet"),
  24020. weight: math.unit(500, "lb"),
  24021. name: "Side",
  24022. image: {
  24023. source: "./media/characters/zost/side.svg",
  24024. extra: 2870/2533,
  24025. bottom: 252/3122
  24026. }
  24027. },
  24028. mawFront: {
  24029. height: math.unit(1.08, "meters"),
  24030. name: "Maw (Front)",
  24031. image: {
  24032. source: "./media/characters/zost/maw-front.svg"
  24033. }
  24034. },
  24035. mawSide: {
  24036. height: math.unit(2.66, "feet"),
  24037. name: "Maw (Side)",
  24038. image: {
  24039. source: "./media/characters/zost/maw-side.svg"
  24040. }
  24041. },
  24042. wingspan: {
  24043. height: math.unit(7.4, "feet"),
  24044. name: "Wingspan",
  24045. image: {
  24046. source: "./media/characters/zost/wingspan.svg"
  24047. }
  24048. },
  24049. },
  24050. [
  24051. {
  24052. name: "Normal",
  24053. height: math.unit(10, "feet"),
  24054. default: true
  24055. },
  24056. ]
  24057. ))
  24058. characterMakers.push(() => makeCharacter(
  24059. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  24060. {
  24061. front: {
  24062. height: math.unit(5 + 4 / 12, "feet"),
  24063. weight: math.unit(120, "lb"),
  24064. name: "Front",
  24065. image: {
  24066. source: "./media/characters/luci/front.svg",
  24067. extra: 1985 / 1884,
  24068. bottom: 0.04
  24069. }
  24070. },
  24071. back: {
  24072. height: math.unit(5 + 4 / 12, "feet"),
  24073. weight: math.unit(120, "lb"),
  24074. name: "Back",
  24075. image: {
  24076. source: "./media/characters/luci/back.svg",
  24077. extra: 1892 / 1791,
  24078. bottom: 0.002
  24079. }
  24080. },
  24081. },
  24082. [
  24083. {
  24084. name: "Normal",
  24085. height: math.unit(5 + 4 / 12, "feet"),
  24086. default: true
  24087. },
  24088. ]
  24089. ))
  24090. characterMakers.push(() => makeCharacter(
  24091. { name: "2th", species: ["monster"], tags: ["anthro"] },
  24092. {
  24093. front: {
  24094. height: math.unit(1500, "feet"),
  24095. weight: math.unit(3.8e6, "tons"),
  24096. name: "Front",
  24097. image: {
  24098. source: "./media/characters/2th/front.svg",
  24099. extra: 3489 / 3350,
  24100. bottom: 0.1
  24101. }
  24102. },
  24103. foot: {
  24104. height: math.unit(461, "feet"),
  24105. name: "Foot",
  24106. image: {
  24107. source: "./media/characters/2th/foot.svg"
  24108. }
  24109. },
  24110. },
  24111. [
  24112. {
  24113. name: "\"Micro\"",
  24114. height: math.unit(15 + 7 / 12, "feet")
  24115. },
  24116. {
  24117. name: "Normal",
  24118. height: math.unit(1500, "feet"),
  24119. default: true
  24120. },
  24121. {
  24122. name: "Macro",
  24123. height: math.unit(5000, "feet")
  24124. },
  24125. {
  24126. name: "Megamacro",
  24127. height: math.unit(15, "miles")
  24128. },
  24129. {
  24130. name: "Gigamacro",
  24131. height: math.unit(4000, "miles")
  24132. },
  24133. {
  24134. name: "Galactic",
  24135. height: math.unit(50, "AU")
  24136. },
  24137. ]
  24138. ))
  24139. characterMakers.push(() => makeCharacter(
  24140. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  24141. {
  24142. front: {
  24143. height: math.unit(5 + 6 / 12, "feet"),
  24144. weight: math.unit(220, "lb"),
  24145. name: "Front",
  24146. image: {
  24147. source: "./media/characters/amethyst/front.svg",
  24148. extra: 2078 / 2040,
  24149. bottom: 0.045
  24150. }
  24151. },
  24152. back: {
  24153. height: math.unit(5 + 6 / 12, "feet"),
  24154. weight: math.unit(220, "lb"),
  24155. name: "Back",
  24156. image: {
  24157. source: "./media/characters/amethyst/back.svg",
  24158. extra: 2021 / 1989,
  24159. bottom: 0.02
  24160. }
  24161. },
  24162. },
  24163. [
  24164. {
  24165. name: "Normal",
  24166. height: math.unit(5 + 6 / 12, "feet"),
  24167. default: true
  24168. },
  24169. ]
  24170. ))
  24171. characterMakers.push(() => makeCharacter(
  24172. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  24173. {
  24174. front: {
  24175. height: math.unit(4 + 11 / 12, "feet"),
  24176. weight: math.unit(120, "lb"),
  24177. name: "Front",
  24178. image: {
  24179. source: "./media/characters/yumi-akiyama/front.svg",
  24180. extra: 2638/2432,
  24181. bottom: 70/2708
  24182. }
  24183. },
  24184. back: {
  24185. height: math.unit(4 + 11 / 12, "feet"),
  24186. weight: math.unit(120, "lb"),
  24187. name: "Back",
  24188. image: {
  24189. source: "./media/characters/yumi-akiyama/back.svg",
  24190. extra: 2502/2397,
  24191. bottom: 80/2582
  24192. }
  24193. },
  24194. casual: {
  24195. height: math.unit(4 + 11 / 12, "feet"),
  24196. weight: math.unit(120, "lb"),
  24197. name: "Casual",
  24198. image: {
  24199. source: "./media/characters/yumi-akiyama/casual.svg",
  24200. extra: 958/887,
  24201. bottom: 41/999
  24202. }
  24203. },
  24204. jammies: {
  24205. height: math.unit(4 + 11 / 12, "feet"),
  24206. weight: math.unit(120, "lb"),
  24207. name: "Jammies",
  24208. image: {
  24209. source: "./media/characters/yumi-akiyama/jammies.svg",
  24210. extra: 958/894,
  24211. bottom: 37/995
  24212. }
  24213. },
  24214. warmWeather: {
  24215. height: math.unit(4 + 11 / 12, "feet"),
  24216. weight: math.unit(120, "lb"),
  24217. name: "Warm Weather",
  24218. image: {
  24219. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  24220. extra: 929/865,
  24221. bottom: 76/1005
  24222. }
  24223. },
  24224. mouth: {
  24225. height: math.unit(0.35, "feet"),
  24226. name: "Mouth",
  24227. image: {
  24228. source: "./media/characters/yumi-akiyama/mouth.svg"
  24229. }
  24230. },
  24231. paws: {
  24232. height: math.unit(1.05, "feet"),
  24233. name: "Paws",
  24234. image: {
  24235. source: "./media/characters/yumi-akiyama/paws.svg"
  24236. }
  24237. },
  24238. cockRing: {
  24239. height: math.unit(0.225, "feet"),
  24240. name: "Cock Ring",
  24241. image: {
  24242. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  24243. }
  24244. },
  24245. },
  24246. [
  24247. {
  24248. name: "Galactic",
  24249. height: math.unit(50, "galaxies"),
  24250. default: true
  24251. },
  24252. {
  24253. name: "Universal",
  24254. height: math.unit(100, "universes")
  24255. },
  24256. ]
  24257. ))
  24258. characterMakers.push(() => makeCharacter(
  24259. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  24260. {
  24261. front: {
  24262. height: math.unit(8, "feet"),
  24263. weight: math.unit(500, "lb"),
  24264. name: "Front",
  24265. image: {
  24266. source: "./media/characters/rifter-yrmori/front.svg",
  24267. extra: 1180 / 1125,
  24268. bottom: 0.02
  24269. }
  24270. },
  24271. back: {
  24272. height: math.unit(8, "feet"),
  24273. weight: math.unit(500, "lb"),
  24274. name: "Back",
  24275. image: {
  24276. source: "./media/characters/rifter-yrmori/back.svg",
  24277. extra: 1190 / 1145,
  24278. bottom: 0.001
  24279. }
  24280. },
  24281. wings: {
  24282. height: math.unit(7.75, "feet"),
  24283. weight: math.unit(500, "lb"),
  24284. name: "Wings",
  24285. image: {
  24286. source: "./media/characters/rifter-yrmori/wings.svg",
  24287. extra: 1357 / 1285
  24288. }
  24289. },
  24290. maw: {
  24291. height: math.unit(0.8, "feet"),
  24292. name: "Maw",
  24293. image: {
  24294. source: "./media/characters/rifter-yrmori/maw.svg"
  24295. }
  24296. },
  24297. mawfront: {
  24298. height: math.unit(1.45, "feet"),
  24299. name: "Maw (Front)",
  24300. image: {
  24301. source: "./media/characters/rifter-yrmori/maw-front.svg"
  24302. }
  24303. },
  24304. },
  24305. [
  24306. {
  24307. name: "Normal",
  24308. height: math.unit(8, "feet"),
  24309. default: true
  24310. },
  24311. {
  24312. name: "Macro",
  24313. height: math.unit(42, "meters")
  24314. },
  24315. ]
  24316. ))
  24317. characterMakers.push(() => makeCharacter(
  24318. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  24319. {
  24320. were: {
  24321. height: math.unit(25 + 6 / 12, "feet"),
  24322. weight: math.unit(10000, "lb"),
  24323. name: "Were",
  24324. image: {
  24325. source: "./media/characters/tahajin/were.svg",
  24326. extra: 801 / 770,
  24327. bottom: 0.042
  24328. }
  24329. },
  24330. aquatic: {
  24331. height: math.unit(6 + 4 / 12, "feet"),
  24332. weight: math.unit(160, "lb"),
  24333. name: "Aquatic",
  24334. image: {
  24335. source: "./media/characters/tahajin/aquatic.svg",
  24336. extra: 572 / 542,
  24337. bottom: 0.04
  24338. }
  24339. },
  24340. chow: {
  24341. height: math.unit(8 + 11 / 12, "feet"),
  24342. weight: math.unit(450, "lb"),
  24343. name: "Chow",
  24344. image: {
  24345. source: "./media/characters/tahajin/chow.svg",
  24346. extra: 660 / 640,
  24347. bottom: 0.015
  24348. }
  24349. },
  24350. demiNaga: {
  24351. height: math.unit(6 + 8 / 12, "feet"),
  24352. weight: math.unit(300, "lb"),
  24353. name: "Demi Naga",
  24354. image: {
  24355. source: "./media/characters/tahajin/demi-naga.svg",
  24356. extra: 643 / 615,
  24357. bottom: 0.1
  24358. }
  24359. },
  24360. data: {
  24361. height: math.unit(5, "inches"),
  24362. weight: math.unit(0.1, "lb"),
  24363. name: "Data",
  24364. image: {
  24365. source: "./media/characters/tahajin/data.svg"
  24366. }
  24367. },
  24368. fluu: {
  24369. height: math.unit(5 + 7 / 12, "feet"),
  24370. weight: math.unit(140, "lb"),
  24371. name: "Fluu",
  24372. image: {
  24373. source: "./media/characters/tahajin/fluu.svg",
  24374. extra: 628 / 592,
  24375. bottom: 0.02
  24376. }
  24377. },
  24378. starWarrior: {
  24379. height: math.unit(4 + 5 / 12, "feet"),
  24380. weight: math.unit(50, "lb"),
  24381. name: "Star Warrior",
  24382. image: {
  24383. source: "./media/characters/tahajin/star-warrior.svg"
  24384. }
  24385. },
  24386. },
  24387. [
  24388. {
  24389. name: "Normal",
  24390. height: math.unit(25 + 6 / 12, "feet"),
  24391. default: true
  24392. },
  24393. ]
  24394. ))
  24395. characterMakers.push(() => makeCharacter(
  24396. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24397. {
  24398. front: {
  24399. height: math.unit(8, "feet"),
  24400. weight: math.unit(350, "lb"),
  24401. name: "Front",
  24402. image: {
  24403. source: "./media/characters/gabira/front.svg",
  24404. extra: 1261/1154,
  24405. bottom: 51/1312
  24406. }
  24407. },
  24408. back: {
  24409. height: math.unit(8, "feet"),
  24410. weight: math.unit(350, "lb"),
  24411. name: "Back",
  24412. image: {
  24413. source: "./media/characters/gabira/back.svg",
  24414. extra: 1265/1163,
  24415. bottom: 46/1311
  24416. }
  24417. },
  24418. head: {
  24419. height: math.unit(2.85, "feet"),
  24420. name: "Head",
  24421. image: {
  24422. source: "./media/characters/gabira/head.svg"
  24423. }
  24424. },
  24425. },
  24426. [
  24427. {
  24428. name: "Normal",
  24429. height: math.unit(8, "feet"),
  24430. default: true
  24431. },
  24432. ]
  24433. ))
  24434. characterMakers.push(() => makeCharacter(
  24435. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24436. {
  24437. front: {
  24438. height: math.unit(5 + 3 / 12, "feet"),
  24439. weight: math.unit(137, "lb"),
  24440. name: "Front",
  24441. image: {
  24442. source: "./media/characters/sasha-katraine/front.svg",
  24443. extra: 1745/1694,
  24444. bottom: 37/1782
  24445. }
  24446. },
  24447. back: {
  24448. height: math.unit(5 + 3 / 12, "feet"),
  24449. weight: math.unit(137, "lb"),
  24450. name: "Back",
  24451. image: {
  24452. source: "./media/characters/sasha-katraine/back.svg",
  24453. extra: 1776/1699,
  24454. bottom: 26/1802
  24455. }
  24456. },
  24457. },
  24458. [
  24459. {
  24460. name: "Micro",
  24461. height: math.unit(5, "inches")
  24462. },
  24463. {
  24464. name: "Normal",
  24465. height: math.unit(5 + 3 / 12, "feet"),
  24466. default: true
  24467. },
  24468. ]
  24469. ))
  24470. characterMakers.push(() => makeCharacter(
  24471. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24472. {
  24473. side: {
  24474. height: math.unit(4, "inches"),
  24475. weight: math.unit(200, "grams"),
  24476. name: "Side",
  24477. image: {
  24478. source: "./media/characters/der/side.svg",
  24479. extra: 719 / 400,
  24480. bottom: 30.6 / 749.9187
  24481. }
  24482. },
  24483. },
  24484. [
  24485. {
  24486. name: "Micro",
  24487. height: math.unit(4, "inches"),
  24488. default: true
  24489. },
  24490. ]
  24491. ))
  24492. characterMakers.push(() => makeCharacter(
  24493. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24494. {
  24495. side: {
  24496. height: math.unit(30, "meters"),
  24497. weight: math.unit(700, "tonnes"),
  24498. name: "Side",
  24499. image: {
  24500. source: "./media/characters/fixerdragon/side.svg",
  24501. extra: (1293.0514 - 116.03) / 1106.86,
  24502. bottom: 116.03 / 1293.0514
  24503. }
  24504. },
  24505. },
  24506. [
  24507. {
  24508. name: "Planck",
  24509. height: math.unit(1.6e-35, "meters")
  24510. },
  24511. {
  24512. name: "Micro",
  24513. height: math.unit(0.4, "meters")
  24514. },
  24515. {
  24516. name: "Normal",
  24517. height: math.unit(30, "meters"),
  24518. default: true
  24519. },
  24520. {
  24521. name: "Megamacro",
  24522. height: math.unit(1.2, "megameters")
  24523. },
  24524. {
  24525. name: "Teramacro",
  24526. height: math.unit(130, "terameters")
  24527. },
  24528. {
  24529. name: "Yottamacro",
  24530. height: math.unit(6200, "yottameters")
  24531. },
  24532. ]
  24533. ));
  24534. characterMakers.push(() => makeCharacter(
  24535. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24536. {
  24537. front: {
  24538. height: math.unit(8, "feet"),
  24539. weight: math.unit(250, "lb"),
  24540. name: "Front",
  24541. image: {
  24542. source: "./media/characters/kite/front.svg",
  24543. extra: 456/414,
  24544. bottom: 24/480
  24545. }
  24546. },
  24547. },
  24548. [
  24549. {
  24550. name: "Normal",
  24551. height: math.unit(8, "feet"),
  24552. default: true
  24553. },
  24554. {
  24555. name: "Macro",
  24556. height: math.unit(360, "feet")
  24557. },
  24558. {
  24559. name: "Megamacro",
  24560. height: math.unit(1500, "feet")
  24561. },
  24562. ]
  24563. ))
  24564. characterMakers.push(() => makeCharacter(
  24565. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24566. {
  24567. anthro_front: {
  24568. height: math.unit(5 + 11/12, "feet"),
  24569. weight: math.unit(170, "lb"),
  24570. name: "Front",
  24571. image: {
  24572. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24573. extra: 1735/1585,
  24574. bottom: 96/1831
  24575. },
  24576. form: "anthro",
  24577. default: true
  24578. },
  24579. anthro_back: {
  24580. height: math.unit(5 + 11/12, "feet"),
  24581. weight: math.unit(170, "lb"),
  24582. name: "Back",
  24583. image: {
  24584. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24585. extra: 1749/1607,
  24586. bottom: 28/1777
  24587. },
  24588. form: "anthro"
  24589. },
  24590. anthro_male: {
  24591. height: math.unit(5 + 11/12, "feet"),
  24592. weight: math.unit(170, "lb"),
  24593. name: "Male",
  24594. image: {
  24595. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24596. extra: 1855/1713,
  24597. bottom: 63/1918
  24598. },
  24599. form: "anthro"
  24600. },
  24601. taur_front: {
  24602. height: math.unit(5 + 7/12, "feet"),
  24603. weight: math.unit(170, "lb"),
  24604. name: "Front",
  24605. image: {
  24606. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24607. extra: 1151/1059,
  24608. bottom: 356/1507
  24609. },
  24610. form: "taur",
  24611. default: true
  24612. },
  24613. anthro_frontDressed: {
  24614. height: math.unit(5 + 11/12, "feet"),
  24615. weight: math.unit(170, "lb"),
  24616. name: "Front (Dressed)",
  24617. image: {
  24618. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24619. extra: 1735/1585,
  24620. bottom: 96/1831
  24621. },
  24622. form: "anthro"
  24623. },
  24624. anthro_backDressed: {
  24625. height: math.unit(5 + 11/12, "feet"),
  24626. weight: math.unit(170, "lb"),
  24627. name: "Back (Dressed)",
  24628. image: {
  24629. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24630. extra: 1749/1607,
  24631. bottom: 28/1777
  24632. },
  24633. form: "anthro"
  24634. },
  24635. anthro_maleDressed: {
  24636. height: math.unit(5 + 11/12, "feet"),
  24637. weight: math.unit(170, "lb"),
  24638. name: "Male (Dressed)",
  24639. image: {
  24640. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24641. extra: 1855/1713,
  24642. bottom: 63/1918
  24643. },
  24644. form: "anthro"
  24645. },
  24646. taur_frontDressed: {
  24647. height: math.unit(5 + 7/12, "feet"),
  24648. weight: math.unit(170, "lb"),
  24649. name: "Front (Dressed)",
  24650. image: {
  24651. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24652. extra: 1151/1059,
  24653. bottom: 356/1507
  24654. },
  24655. form: "taur"
  24656. },
  24657. maw: {
  24658. height: math.unit(1.46, "feet"),
  24659. name: "Maw",
  24660. image: {
  24661. source: "./media/characters/poojawa-vynar/maw.svg"
  24662. },
  24663. allForms: true
  24664. },
  24665. head: {
  24666. height: math.unit(2.34, "feet"),
  24667. name: "Head",
  24668. image: {
  24669. source: "./media/characters/poojawa-vynar/head.svg"
  24670. },
  24671. allForms: true
  24672. },
  24673. leftPaw: {
  24674. height: math.unit(1.72, "feet"),
  24675. name: "Left Paw",
  24676. image: {
  24677. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24678. },
  24679. allForms: true
  24680. },
  24681. rightPaw: {
  24682. height: math.unit(1.61, "feet"),
  24683. name: "Right Paw",
  24684. image: {
  24685. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24686. },
  24687. allForms: true
  24688. },
  24689. toering: {
  24690. height: math.unit(2.9, "inches"),
  24691. name: "Toering",
  24692. image: {
  24693. source: "./media/characters/poojawa-vynar/toering.svg"
  24694. },
  24695. allForms: true
  24696. },
  24697. shaft: {
  24698. height: math.unit(0.625, "feet"),
  24699. name: "Shaft",
  24700. image: {
  24701. source: "./media/characters/poojawa-vynar/shaft.svg"
  24702. },
  24703. allForms: true
  24704. },
  24705. spade: {
  24706. height: math.unit(0.42, "feet"),
  24707. name: "Spade",
  24708. image: {
  24709. source: "./media/characters/poojawa-vynar/spade.svg"
  24710. },
  24711. allForms: true
  24712. },
  24713. },
  24714. [
  24715. {
  24716. name: "Shortstack",
  24717. height: math.unit(4, "feet"),
  24718. form: "anthro"
  24719. },
  24720. {
  24721. name: "Normal",
  24722. height: math.unit(5 + 11 / 12, "feet"),
  24723. form: "anthro",
  24724. default: true
  24725. },
  24726. {
  24727. name: "Tauric",
  24728. height: math.unit(4, "meters"),
  24729. form: "taur",
  24730. default: true
  24731. },
  24732. ],
  24733. {
  24734. "anthro": {
  24735. name: "Anthro",
  24736. default: true
  24737. },
  24738. "taur": {
  24739. name: "Taur",
  24740. },
  24741. }
  24742. ))
  24743. characterMakers.push(() => makeCharacter(
  24744. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24745. {
  24746. front: {
  24747. height: math.unit(293, "meters"),
  24748. weight: math.unit(70400, "tons"),
  24749. name: "Front",
  24750. image: {
  24751. source: "./media/characters/violette/front.svg",
  24752. extra: 1227 / 1180,
  24753. bottom: 0.005
  24754. }
  24755. },
  24756. back: {
  24757. height: math.unit(293, "meters"),
  24758. weight: math.unit(70400, "tons"),
  24759. name: "Back",
  24760. image: {
  24761. source: "./media/characters/violette/back.svg",
  24762. extra: 1227 / 1180,
  24763. bottom: 0.005
  24764. }
  24765. },
  24766. },
  24767. [
  24768. {
  24769. name: "Macro",
  24770. height: math.unit(293, "meters"),
  24771. default: true
  24772. },
  24773. ]
  24774. ))
  24775. characterMakers.push(() => makeCharacter(
  24776. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24777. {
  24778. front: {
  24779. height: math.unit(1050, "feet"),
  24780. weight: math.unit(200000, "tons"),
  24781. name: "Front",
  24782. image: {
  24783. source: "./media/characters/alessandra/front.svg",
  24784. extra: 960 / 912,
  24785. bottom: 0.06
  24786. }
  24787. },
  24788. },
  24789. [
  24790. {
  24791. name: "Macro",
  24792. height: math.unit(1050, "feet")
  24793. },
  24794. {
  24795. name: "Macro+",
  24796. height: math.unit(900, "meters"),
  24797. default: true
  24798. },
  24799. ]
  24800. ))
  24801. characterMakers.push(() => makeCharacter(
  24802. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24803. {
  24804. front: {
  24805. height: math.unit(5, "feet"),
  24806. weight: math.unit(187, "lb"),
  24807. name: "Front",
  24808. image: {
  24809. source: "./media/characters/person/front.svg",
  24810. extra: 3087 / 2945,
  24811. bottom: 91 / 3181
  24812. }
  24813. },
  24814. },
  24815. [
  24816. {
  24817. name: "Micro",
  24818. height: math.unit(3, "inches")
  24819. },
  24820. {
  24821. name: "Normal",
  24822. height: math.unit(5, "feet"),
  24823. default: true
  24824. },
  24825. {
  24826. name: "Macro",
  24827. height: math.unit(90, "feet")
  24828. },
  24829. {
  24830. name: "Max Size",
  24831. height: math.unit(280, "feet")
  24832. },
  24833. ]
  24834. ))
  24835. characterMakers.push(() => makeCharacter(
  24836. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24837. {
  24838. front: {
  24839. height: math.unit(12, "feet"),
  24840. weight: math.unit(3200, "lb"),
  24841. name: "Front",
  24842. image: {
  24843. source: "./media/characters/ty/front.svg",
  24844. extra: 753/703,
  24845. bottom: 61/814
  24846. }
  24847. },
  24848. back: {
  24849. height: math.unit(12, "feet"),
  24850. weight: math.unit(3200, "lb"),
  24851. name: "Back",
  24852. image: {
  24853. source: "./media/characters/ty/back.svg",
  24854. extra: 757/707,
  24855. bottom: 16/773
  24856. }
  24857. },
  24858. head: {
  24859. height: math.unit(3.7, "feet"),
  24860. name: "Head",
  24861. image: {
  24862. source: "./media/characters/ty/head.svg"
  24863. }
  24864. },
  24865. hand: {
  24866. height: math.unit(2.38, "feet"),
  24867. name: "Hand",
  24868. image: {
  24869. source: "./media/characters/ty/hand.svg"
  24870. }
  24871. },
  24872. tail: {
  24873. height: math.unit(8.01096641535, "feet"),
  24874. name: "Tail",
  24875. image: {
  24876. source: "./media/characters/ty/tail.svg"
  24877. }
  24878. },
  24879. },
  24880. [
  24881. {
  24882. name: "Normal",
  24883. height: math.unit(12, "feet"),
  24884. default: true
  24885. },
  24886. ]
  24887. ))
  24888. characterMakers.push(() => makeCharacter(
  24889. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24890. {
  24891. front: {
  24892. height: math.unit(5 + 4 / 12, "feet"),
  24893. weight: math.unit(115, "lb"),
  24894. name: "Front",
  24895. image: {
  24896. source: "./media/characters/rocky/front.svg",
  24897. extra: 1012 / 975,
  24898. bottom: 54 / 1066
  24899. }
  24900. },
  24901. },
  24902. [
  24903. {
  24904. name: "Normal",
  24905. height: math.unit(5 + 4 / 12, "feet"),
  24906. default: true
  24907. },
  24908. ]
  24909. ))
  24910. characterMakers.push(() => makeCharacter(
  24911. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24912. {
  24913. upright: {
  24914. height: math.unit(6, "meters"),
  24915. weight: math.unit(4000, "kg"),
  24916. name: "Upright",
  24917. image: {
  24918. source: "./media/characters/ruin/upright.svg",
  24919. extra: 668 / 661,
  24920. bottom: 42 / 799.8396
  24921. }
  24922. },
  24923. },
  24924. [
  24925. {
  24926. name: "Normal",
  24927. height: math.unit(6, "meters"),
  24928. default: true
  24929. },
  24930. ]
  24931. ))
  24932. characterMakers.push(() => makeCharacter(
  24933. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24934. {
  24935. front: {
  24936. height: math.unit(5, "feet"),
  24937. weight: math.unit(106, "lb"),
  24938. name: "Front",
  24939. image: {
  24940. source: "./media/characters/robin/front.svg",
  24941. extra: 862 / 799,
  24942. bottom: 42.4 / 914.8856
  24943. }
  24944. },
  24945. },
  24946. [
  24947. {
  24948. name: "Normal",
  24949. height: math.unit(5, "feet"),
  24950. default: true
  24951. },
  24952. ]
  24953. ))
  24954. characterMakers.push(() => makeCharacter(
  24955. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24956. {
  24957. side: {
  24958. height: math.unit(3, "feet"),
  24959. weight: math.unit(225, "lb"),
  24960. name: "Side",
  24961. image: {
  24962. source: "./media/characters/saian/side.svg",
  24963. extra: 566 / 356,
  24964. bottom: 79.7 / 643
  24965. }
  24966. },
  24967. maw: {
  24968. height: math.unit(2.85, "feet"),
  24969. name: "Maw",
  24970. image: {
  24971. source: "./media/characters/saian/maw.svg"
  24972. }
  24973. },
  24974. },
  24975. [
  24976. {
  24977. name: "Normal",
  24978. height: math.unit(3, "feet"),
  24979. default: true
  24980. },
  24981. ]
  24982. ))
  24983. characterMakers.push(() => makeCharacter(
  24984. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24985. {
  24986. side: {
  24987. height: math.unit(8, "feet"),
  24988. weight: math.unit(300, "lb"),
  24989. name: "Side",
  24990. image: {
  24991. source: "./media/characters/equus-silvermane/side.svg",
  24992. extra: 2176 / 2050,
  24993. bottom: 65.7 / 2245
  24994. }
  24995. },
  24996. front: {
  24997. height: math.unit(8, "feet"),
  24998. weight: math.unit(300, "lb"),
  24999. name: "Front",
  25000. image: {
  25001. source: "./media/characters/equus-silvermane/front.svg",
  25002. extra: 4633 / 4400,
  25003. bottom: 71.3 / 4706.915
  25004. }
  25005. },
  25006. sideStepping: {
  25007. height: math.unit(8, "feet"),
  25008. weight: math.unit(300, "lb"),
  25009. name: "Side (Stepping)",
  25010. image: {
  25011. source: "./media/characters/equus-silvermane/side-stepping.svg",
  25012. extra: 1968 / 1860,
  25013. bottom: 16.4 / 1989
  25014. }
  25015. },
  25016. },
  25017. [
  25018. {
  25019. name: "Normal",
  25020. height: math.unit(8, "feet")
  25021. },
  25022. {
  25023. name: "Minimacro",
  25024. height: math.unit(75, "feet"),
  25025. default: true
  25026. },
  25027. {
  25028. name: "Macro",
  25029. height: math.unit(150, "feet")
  25030. },
  25031. {
  25032. name: "Macro+",
  25033. height: math.unit(1000, "feet")
  25034. },
  25035. {
  25036. name: "Megamacro",
  25037. height: math.unit(1, "mile")
  25038. },
  25039. ]
  25040. ))
  25041. characterMakers.push(() => makeCharacter(
  25042. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  25043. {
  25044. side: {
  25045. height: math.unit(20, "feet"),
  25046. weight: math.unit(30000, "kg"),
  25047. name: "Side",
  25048. image: {
  25049. source: "./media/characters/windar/side.svg",
  25050. extra: 1491 / 1248,
  25051. bottom: 82.56 / 1568
  25052. }
  25053. },
  25054. },
  25055. [
  25056. {
  25057. name: "Normal",
  25058. height: math.unit(20, "feet"),
  25059. default: true
  25060. },
  25061. ]
  25062. ))
  25063. characterMakers.push(() => makeCharacter(
  25064. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  25065. {
  25066. side: {
  25067. height: math.unit(15.66, "feet"),
  25068. weight: math.unit(150, "lb"),
  25069. name: "Side",
  25070. image: {
  25071. source: "./media/characters/melody/side.svg",
  25072. extra: 1097 / 944,
  25073. bottom: 11.8 / 1109
  25074. }
  25075. },
  25076. sideOutfit: {
  25077. height: math.unit(15.66, "feet"),
  25078. weight: math.unit(150, "lb"),
  25079. name: "Side (Outfit)",
  25080. image: {
  25081. source: "./media/characters/melody/side-outfit.svg",
  25082. extra: 1097 / 944,
  25083. bottom: 11.8 / 1109
  25084. }
  25085. },
  25086. },
  25087. [
  25088. {
  25089. name: "Normal",
  25090. height: math.unit(15.66, "feet"),
  25091. default: true
  25092. },
  25093. ]
  25094. ))
  25095. characterMakers.push(() => makeCharacter(
  25096. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  25097. {
  25098. armoredFront: {
  25099. height: math.unit(8, "feet"),
  25100. weight: math.unit(325, "lb"),
  25101. name: "Front",
  25102. image: {
  25103. source: "./media/characters/windera/armored-front.svg",
  25104. extra: 1830/1598,
  25105. bottom: 151/1981
  25106. },
  25107. form: "armored",
  25108. default: true
  25109. },
  25110. macroFront: {
  25111. height: math.unit(70, "feet"),
  25112. weight: math.unit(315453, "lb"),
  25113. name: "Front",
  25114. image: {
  25115. source: "./media/characters/windera/macro-front.svg",
  25116. extra: 963/883,
  25117. bottom: 23/986
  25118. },
  25119. form: "macro",
  25120. default: true
  25121. },
  25122. },
  25123. [
  25124. {
  25125. name: "Normal",
  25126. height: math.unit(8, "feet"),
  25127. default: true,
  25128. form: "armored"
  25129. },
  25130. {
  25131. name: "Normal",
  25132. height: math.unit(70, "feet"),
  25133. default: true,
  25134. form: "macro"
  25135. },
  25136. ],
  25137. {
  25138. "armored": {
  25139. name: "Armored",
  25140. default: true
  25141. },
  25142. "macro": {
  25143. name: "Macro",
  25144. },
  25145. }
  25146. ))
  25147. characterMakers.push(() => makeCharacter(
  25148. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  25149. {
  25150. front: {
  25151. height: math.unit(28.75, "feet"),
  25152. weight: math.unit(2000, "kg"),
  25153. name: "Front",
  25154. image: {
  25155. source: "./media/characters/sonear/front.svg",
  25156. extra: 1041.1 / 964.9,
  25157. bottom: 53.7 / 1096.6
  25158. }
  25159. },
  25160. },
  25161. [
  25162. {
  25163. name: "Normal",
  25164. height: math.unit(28.75, "feet"),
  25165. default: true
  25166. },
  25167. ]
  25168. ))
  25169. characterMakers.push(() => makeCharacter(
  25170. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  25171. {
  25172. side: {
  25173. height: math.unit(25.5, "feet"),
  25174. weight: math.unit(23000, "kg"),
  25175. name: "Side",
  25176. image: {
  25177. source: "./media/characters/kanara/side.svg"
  25178. }
  25179. },
  25180. },
  25181. [
  25182. {
  25183. name: "Normal",
  25184. height: math.unit(25.5, "feet"),
  25185. default: true
  25186. },
  25187. ]
  25188. ))
  25189. characterMakers.push(() => makeCharacter(
  25190. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  25191. {
  25192. side: {
  25193. height: math.unit(10, "feet"),
  25194. weight: math.unit(1000, "kg"),
  25195. name: "Side",
  25196. image: {
  25197. source: "./media/characters/ereus/side.svg",
  25198. extra: 1157 / 959,
  25199. bottom: 153 / 1312.5
  25200. }
  25201. },
  25202. },
  25203. [
  25204. {
  25205. name: "Normal",
  25206. height: math.unit(10, "feet"),
  25207. default: true
  25208. },
  25209. ]
  25210. ))
  25211. characterMakers.push(() => makeCharacter(
  25212. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  25213. {
  25214. side: {
  25215. height: math.unit(4.5, "feet"),
  25216. weight: math.unit(500, "lb"),
  25217. name: "Side",
  25218. image: {
  25219. source: "./media/characters/e-ter/side.svg",
  25220. extra: 1550 / 1248,
  25221. bottom: 146 / 1694
  25222. }
  25223. },
  25224. },
  25225. [
  25226. {
  25227. name: "Normal",
  25228. height: math.unit(4.5, "feet"),
  25229. default: true
  25230. },
  25231. ]
  25232. ))
  25233. characterMakers.push(() => makeCharacter(
  25234. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  25235. {
  25236. side: {
  25237. height: math.unit(9.7, "feet"),
  25238. weight: math.unit(4000, "kg"),
  25239. name: "Side",
  25240. image: {
  25241. source: "./media/characters/yamie/side.svg"
  25242. }
  25243. },
  25244. },
  25245. [
  25246. {
  25247. name: "Normal",
  25248. height: math.unit(9.7, "feet"),
  25249. default: true
  25250. },
  25251. ]
  25252. ))
  25253. characterMakers.push(() => makeCharacter(
  25254. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  25255. {
  25256. front: {
  25257. height: math.unit(50, "feet"),
  25258. weight: math.unit(50000, "kg"),
  25259. name: "Front",
  25260. image: {
  25261. source: "./media/characters/anders/front.svg",
  25262. extra: 570 / 539,
  25263. bottom: 14.7 / 586.7
  25264. }
  25265. },
  25266. },
  25267. [
  25268. {
  25269. name: "Large",
  25270. height: math.unit(50, "feet")
  25271. },
  25272. {
  25273. name: "Macro",
  25274. height: math.unit(2000, "feet"),
  25275. default: true
  25276. },
  25277. {
  25278. name: "Megamacro",
  25279. height: math.unit(12, "miles")
  25280. },
  25281. ]
  25282. ))
  25283. characterMakers.push(() => makeCharacter(
  25284. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  25285. {
  25286. front: {
  25287. height: math.unit(7 + 2 / 12, "feet"),
  25288. weight: math.unit(300, "lb"),
  25289. name: "Front",
  25290. image: {
  25291. source: "./media/characters/reban/front.svg",
  25292. extra: 1287/1212,
  25293. bottom: 148/1435
  25294. }
  25295. },
  25296. head: {
  25297. height: math.unit(1.95, "feet"),
  25298. name: "Head",
  25299. image: {
  25300. source: "./media/characters/reban/head.svg"
  25301. }
  25302. },
  25303. maw: {
  25304. height: math.unit(0.95, "feet"),
  25305. name: "Maw",
  25306. image: {
  25307. source: "./media/characters/reban/maw.svg"
  25308. }
  25309. },
  25310. foot: {
  25311. height: math.unit(1.65, "feet"),
  25312. name: "Foot",
  25313. image: {
  25314. source: "./media/characters/reban/foot.svg"
  25315. }
  25316. },
  25317. dick: {
  25318. height: math.unit(7 / 5, "feet"),
  25319. name: "Dick",
  25320. image: {
  25321. source: "./media/characters/reban/dick.svg"
  25322. }
  25323. },
  25324. },
  25325. [
  25326. {
  25327. name: "Natural Height",
  25328. height: math.unit(7 + 2 / 12, "feet")
  25329. },
  25330. {
  25331. name: "Macro",
  25332. height: math.unit(500, "feet"),
  25333. default: true
  25334. },
  25335. {
  25336. name: "Canon Height",
  25337. height: math.unit(50, "AU")
  25338. },
  25339. ]
  25340. ))
  25341. characterMakers.push(() => makeCharacter(
  25342. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  25343. {
  25344. front: {
  25345. height: math.unit(6, "feet"),
  25346. weight: math.unit(150, "lb"),
  25347. name: "Front",
  25348. image: {
  25349. source: "./media/characters/terrance-keayes/front.svg",
  25350. extra: 1.005,
  25351. bottom: 151 / 1615
  25352. }
  25353. },
  25354. side: {
  25355. height: math.unit(6, "feet"),
  25356. weight: math.unit(150, "lb"),
  25357. name: "Side",
  25358. image: {
  25359. source: "./media/characters/terrance-keayes/side.svg",
  25360. extra: 1.005,
  25361. bottom: 129.4 / 1544
  25362. }
  25363. },
  25364. back: {
  25365. height: math.unit(6, "feet"),
  25366. weight: math.unit(150, "lb"),
  25367. name: "Back",
  25368. image: {
  25369. source: "./media/characters/terrance-keayes/back.svg",
  25370. extra: 1.005,
  25371. bottom: 58.4 / 1557.3
  25372. }
  25373. },
  25374. dick: {
  25375. height: math.unit(6 * 0.208, "feet"),
  25376. name: "Dick",
  25377. image: {
  25378. source: "./media/characters/terrance-keayes/dick.svg"
  25379. }
  25380. },
  25381. },
  25382. [
  25383. {
  25384. name: "Canon Height",
  25385. height: math.unit(35, "miles"),
  25386. default: true
  25387. },
  25388. ]
  25389. ))
  25390. characterMakers.push(() => makeCharacter(
  25391. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25392. {
  25393. front: {
  25394. height: math.unit(6, "feet"),
  25395. weight: math.unit(150, "lb"),
  25396. name: "Front",
  25397. image: {
  25398. source: "./media/characters/ofelia/front.svg",
  25399. extra: 1130/1117,
  25400. bottom: 91/1221
  25401. }
  25402. },
  25403. back: {
  25404. height: math.unit(6, "feet"),
  25405. weight: math.unit(150, "lb"),
  25406. name: "Back",
  25407. image: {
  25408. source: "./media/characters/ofelia/back.svg",
  25409. extra: 1172/1159,
  25410. bottom: 28/1200
  25411. }
  25412. },
  25413. maw: {
  25414. height: math.unit(1, "feet"),
  25415. name: "Maw",
  25416. image: {
  25417. source: "./media/characters/ofelia/maw.svg"
  25418. }
  25419. },
  25420. foot: {
  25421. height: math.unit(1.949, "feet"),
  25422. name: "Foot",
  25423. image: {
  25424. source: "./media/characters/ofelia/foot.svg"
  25425. }
  25426. },
  25427. },
  25428. [
  25429. {
  25430. name: "Canon Height",
  25431. height: math.unit(2000, "miles"),
  25432. default: true
  25433. },
  25434. ]
  25435. ))
  25436. characterMakers.push(() => makeCharacter(
  25437. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25438. {
  25439. front: {
  25440. height: math.unit(6, "feet"),
  25441. weight: math.unit(150, "lb"),
  25442. name: "Front",
  25443. image: {
  25444. source: "./media/characters/samuel/front.svg",
  25445. extra: 265 / 258,
  25446. bottom: 2 / 266.1566
  25447. }
  25448. },
  25449. },
  25450. [
  25451. {
  25452. name: "Macro",
  25453. height: math.unit(100, "feet"),
  25454. default: true
  25455. },
  25456. {
  25457. name: "Full Size",
  25458. height: math.unit(1000, "miles")
  25459. },
  25460. ]
  25461. ))
  25462. characterMakers.push(() => makeCharacter(
  25463. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25464. {
  25465. front: {
  25466. height: math.unit(6, "feet"),
  25467. weight: math.unit(300, "lb"),
  25468. name: "Front",
  25469. image: {
  25470. source: "./media/characters/beishir-kiel/front.svg",
  25471. extra: 569 / 547,
  25472. bottom: 41.9 / 609
  25473. }
  25474. },
  25475. maw: {
  25476. height: math.unit(6 * 0.202, "feet"),
  25477. name: "Maw",
  25478. image: {
  25479. source: "./media/characters/beishir-kiel/maw.svg"
  25480. }
  25481. },
  25482. },
  25483. [
  25484. {
  25485. name: "Macro",
  25486. height: math.unit(300, "feet"),
  25487. default: true
  25488. },
  25489. ]
  25490. ))
  25491. characterMakers.push(() => makeCharacter(
  25492. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25493. {
  25494. front: {
  25495. height: math.unit(5 + 7/12, "feet"),
  25496. weight: math.unit(120, "lb"),
  25497. name: "Front",
  25498. image: {
  25499. source: "./media/characters/logan-grey/front.svg",
  25500. extra: 1836/1738,
  25501. bottom: 108/1944
  25502. }
  25503. },
  25504. back: {
  25505. height: math.unit(5 + 7/12, "feet"),
  25506. weight: math.unit(120, "lb"),
  25507. name: "Back",
  25508. image: {
  25509. source: "./media/characters/logan-grey/back.svg",
  25510. extra: 1880/1794,
  25511. bottom: 24/1904
  25512. }
  25513. },
  25514. frontSfw: {
  25515. height: math.unit(5 + 7/12, "feet"),
  25516. weight: math.unit(120, "lb"),
  25517. name: "Front (SFW)",
  25518. image: {
  25519. source: "./media/characters/logan-grey/front-sfw.svg",
  25520. extra: 1836/1738,
  25521. bottom: 108/1944
  25522. }
  25523. },
  25524. backSfw: {
  25525. height: math.unit(5 + 7/12, "feet"),
  25526. weight: math.unit(120, "lb"),
  25527. name: "Back (SFW)",
  25528. image: {
  25529. source: "./media/characters/logan-grey/back-sfw.svg",
  25530. extra: 1880/1794,
  25531. bottom: 24/1904
  25532. }
  25533. },
  25534. hands: {
  25535. height: math.unit(0.84, "feet"),
  25536. name: "Hands",
  25537. image: {
  25538. source: "./media/characters/logan-grey/hands.svg"
  25539. }
  25540. },
  25541. paws: {
  25542. height: math.unit(0.72, "feet"),
  25543. name: "Paws",
  25544. image: {
  25545. source: "./media/characters/logan-grey/paws.svg"
  25546. }
  25547. },
  25548. cock: {
  25549. height: math.unit(1.45, "feet"),
  25550. name: "Cock",
  25551. image: {
  25552. source: "./media/characters/logan-grey/cock.svg"
  25553. }
  25554. },
  25555. cockAlt: {
  25556. height: math.unit(1.437, "feet"),
  25557. name: "Cock (alt)",
  25558. image: {
  25559. source: "./media/characters/logan-grey/cock-alt.svg"
  25560. }
  25561. },
  25562. },
  25563. [
  25564. {
  25565. name: "Normal",
  25566. height: math.unit(5 + 8 / 12, "feet")
  25567. },
  25568. {
  25569. name: "The 500 Foot Femboy",
  25570. height: math.unit(500, "feet"),
  25571. default: true
  25572. },
  25573. {
  25574. name: "Megmacro",
  25575. height: math.unit(20, "miles")
  25576. },
  25577. ]
  25578. ))
  25579. characterMakers.push(() => makeCharacter(
  25580. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25581. {
  25582. front: {
  25583. height: math.unit(8 + 2 / 12, "feet"),
  25584. weight: math.unit(275, "lb"),
  25585. name: "Front",
  25586. image: {
  25587. source: "./media/characters/draganta/front.svg",
  25588. extra: 1177 / 1135,
  25589. bottom: 33.46 / 1212.1
  25590. }
  25591. },
  25592. },
  25593. [
  25594. {
  25595. name: "Normal",
  25596. height: math.unit(8 + 6 / 12, "feet"),
  25597. default: true
  25598. },
  25599. {
  25600. name: "Macro",
  25601. height: math.unit(150, "feet")
  25602. },
  25603. {
  25604. name: "Megamacro",
  25605. height: math.unit(1000, "miles")
  25606. },
  25607. ]
  25608. ))
  25609. characterMakers.push(() => makeCharacter(
  25610. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25611. {
  25612. front: {
  25613. height: math.unit(1.72, "m"),
  25614. weight: math.unit(80, "lb"),
  25615. name: "Front",
  25616. image: {
  25617. source: "./media/characters/voski/front.svg",
  25618. extra: 2076.22 / 2022.4,
  25619. bottom: 102.7 / 2177.3866
  25620. }
  25621. },
  25622. frontFlaccid: {
  25623. height: math.unit(1.72, "m"),
  25624. weight: math.unit(80, "lb"),
  25625. name: "Front (Flaccid)",
  25626. image: {
  25627. source: "./media/characters/voski/front-flaccid.svg",
  25628. extra: 2076.22 / 2022.4,
  25629. bottom: 102.7 / 2177.3866
  25630. }
  25631. },
  25632. frontErect: {
  25633. height: math.unit(1.72, "m"),
  25634. weight: math.unit(80, "lb"),
  25635. name: "Front (Erect)",
  25636. image: {
  25637. source: "./media/characters/voski/front-erect.svg",
  25638. extra: 2076.22 / 2022.4,
  25639. bottom: 102.7 / 2177.3866
  25640. }
  25641. },
  25642. back: {
  25643. height: math.unit(1.72, "m"),
  25644. weight: math.unit(80, "lb"),
  25645. name: "Back",
  25646. image: {
  25647. source: "./media/characters/voski/back.svg",
  25648. extra: 2104 / 2051,
  25649. bottom: 10.45 / 2113.63
  25650. }
  25651. },
  25652. },
  25653. [
  25654. {
  25655. name: "Normal",
  25656. height: math.unit(1.72, "m")
  25657. },
  25658. {
  25659. name: "Macro",
  25660. height: math.unit(55, "m"),
  25661. default: true
  25662. },
  25663. {
  25664. name: "Macro+",
  25665. height: math.unit(300, "m")
  25666. },
  25667. {
  25668. name: "Macro++",
  25669. height: math.unit(700, "m")
  25670. },
  25671. {
  25672. name: "Macro+++",
  25673. height: math.unit(4500, "m")
  25674. },
  25675. {
  25676. name: "Macro++++",
  25677. height: math.unit(45, "km")
  25678. },
  25679. {
  25680. name: "Macro+++++",
  25681. height: math.unit(1220, "km")
  25682. },
  25683. ]
  25684. ))
  25685. characterMakers.push(() => makeCharacter(
  25686. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25687. {
  25688. front: {
  25689. height: math.unit(2.3, "m"),
  25690. weight: math.unit(304, "kg"),
  25691. name: "Front",
  25692. image: {
  25693. source: "./media/characters/icowom-lee/front.svg",
  25694. extra: 985 / 955,
  25695. bottom: 25.4 / 1012
  25696. }
  25697. },
  25698. fronttentacles: {
  25699. height: math.unit(2.3, "m"),
  25700. weight: math.unit(304, "kg"),
  25701. name: "Front (Tentacles)",
  25702. image: {
  25703. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25704. extra: 985 / 955,
  25705. bottom: 25.4 / 1012
  25706. }
  25707. },
  25708. back: {
  25709. height: math.unit(2.3, "m"),
  25710. weight: math.unit(304, "kg"),
  25711. name: "Back",
  25712. image: {
  25713. source: "./media/characters/icowom-lee/back.svg",
  25714. extra: 975 / 954,
  25715. bottom: 9.5 / 985
  25716. }
  25717. },
  25718. backtentacles: {
  25719. height: math.unit(2.3, "m"),
  25720. weight: math.unit(304, "kg"),
  25721. name: "Back (Tentacles)",
  25722. image: {
  25723. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25724. extra: 975 / 954,
  25725. bottom: 9.5 / 985
  25726. }
  25727. },
  25728. frontDressed: {
  25729. height: math.unit(2.3, "m"),
  25730. weight: math.unit(304, "kg"),
  25731. name: "Front (Dressed)",
  25732. image: {
  25733. source: "./media/characters/icowom-lee/front-dressed.svg",
  25734. extra: 3076 / 2933,
  25735. bottom: 51.4 / 3125.1889
  25736. }
  25737. },
  25738. rump: {
  25739. height: math.unit(0.776, "meters"),
  25740. name: "Rump",
  25741. image: {
  25742. source: "./media/characters/icowom-lee/rump.svg"
  25743. }
  25744. },
  25745. genitals: {
  25746. height: math.unit(0.78, "meters"),
  25747. name: "Genitals",
  25748. image: {
  25749. source: "./media/characters/icowom-lee/genitals.svg"
  25750. }
  25751. },
  25752. },
  25753. [
  25754. {
  25755. name: "Normal",
  25756. height: math.unit(2.3, "meters"),
  25757. default: true
  25758. },
  25759. {
  25760. name: "Macro",
  25761. height: math.unit(94, "meters"),
  25762. default: true
  25763. },
  25764. ]
  25765. ))
  25766. characterMakers.push(() => makeCharacter(
  25767. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25768. {
  25769. front: {
  25770. height: math.unit(22, "meters"),
  25771. weight: math.unit(21000, "kg"),
  25772. name: "Front",
  25773. image: {
  25774. source: "./media/characters/shock-diamond/front.svg",
  25775. extra: 2204 / 2053,
  25776. bottom: 65 / 2239.47
  25777. }
  25778. },
  25779. frontNude: {
  25780. height: math.unit(22, "meters"),
  25781. weight: math.unit(21000, "kg"),
  25782. name: "Front (Nude)",
  25783. image: {
  25784. source: "./media/characters/shock-diamond/front-nude.svg",
  25785. extra: 2514 / 2285,
  25786. bottom: 13 / 2527.56
  25787. }
  25788. },
  25789. },
  25790. [
  25791. {
  25792. name: "Normal",
  25793. height: math.unit(3, "meters")
  25794. },
  25795. {
  25796. name: "Macro",
  25797. height: math.unit(22, "meters"),
  25798. default: true
  25799. },
  25800. ]
  25801. ))
  25802. characterMakers.push(() => makeCharacter(
  25803. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25804. {
  25805. front: {
  25806. height: math.unit(5 + 4/12, "feet"),
  25807. weight: math.unit(125, "lb"),
  25808. name: "Front",
  25809. image: {
  25810. source: "./media/characters/rory/front.svg",
  25811. extra: 1790/1681,
  25812. bottom: 66/1856
  25813. },
  25814. form: "normal",
  25815. default: true
  25816. },
  25817. back: {
  25818. height: math.unit(5 + 4/12, "feet"),
  25819. weight: math.unit(125, "lb"),
  25820. name: "Back",
  25821. image: {
  25822. source: "./media/characters/rory/back.svg",
  25823. extra: 1805/1690,
  25824. bottom: 56/1861
  25825. },
  25826. form: "normal"
  25827. },
  25828. frontDressed: {
  25829. height: math.unit(5 + 4/12, "feet"),
  25830. weight: math.unit(125, "lb"),
  25831. name: "Front (Dressed)",
  25832. image: {
  25833. source: "./media/characters/rory/front-dressed.svg",
  25834. extra: 1790/1681,
  25835. bottom: 66/1856
  25836. },
  25837. form: "normal"
  25838. },
  25839. backDressed: {
  25840. height: math.unit(5 + 4/12, "feet"),
  25841. weight: math.unit(125, "lb"),
  25842. name: "Back (Dressed)",
  25843. image: {
  25844. source: "./media/characters/rory/back-dressed.svg",
  25845. extra: 1805/1690,
  25846. bottom: 56/1861
  25847. },
  25848. form: "normal"
  25849. },
  25850. frontNsfw: {
  25851. height: math.unit(5 + 4/12, "feet"),
  25852. weight: math.unit(125, "lb"),
  25853. name: "Front (NSFW)",
  25854. image: {
  25855. source: "./media/characters/rory/front-nsfw.svg",
  25856. extra: 1790/1681,
  25857. bottom: 66/1856
  25858. },
  25859. form: "normal"
  25860. },
  25861. backNsfw: {
  25862. height: math.unit(5 + 4/12, "feet"),
  25863. weight: math.unit(125, "lb"),
  25864. name: "Back (NSFW)",
  25865. image: {
  25866. source: "./media/characters/rory/back-nsfw.svg",
  25867. extra: 1805/1690,
  25868. bottom: 56/1861
  25869. },
  25870. form: "normal"
  25871. },
  25872. dick: {
  25873. height: math.unit(0.8, "feet"),
  25874. name: "Dick",
  25875. image: {
  25876. source: "./media/characters/rory/dick.svg"
  25877. },
  25878. form: "normal"
  25879. },
  25880. thicc_front: {
  25881. height: math.unit(5 + 4/12, "feet"),
  25882. weight: math.unit(195, "lb"),
  25883. name: "Front",
  25884. image: {
  25885. source: "./media/characters/rory/thicc-front.svg",
  25886. extra: 1220/1100,
  25887. bottom: 103/1323
  25888. },
  25889. form: "thicc",
  25890. default: true
  25891. },
  25892. thicc_back: {
  25893. height: math.unit(5 + 4/12, "feet"),
  25894. weight: math.unit(195, "lb"),
  25895. name: "Back",
  25896. image: {
  25897. source: "./media/characters/rory/thicc-back.svg",
  25898. extra: 1166/1086,
  25899. bottom: 35/1201
  25900. },
  25901. form: "thicc"
  25902. },
  25903. },
  25904. [
  25905. {
  25906. name: "Micro",
  25907. height: math.unit(3, "inches"),
  25908. allForms: true
  25909. },
  25910. {
  25911. name: "Normal",
  25912. height: math.unit(5 + 4/12, "feet"),
  25913. allForms: true,
  25914. default: true
  25915. },
  25916. {
  25917. name: "Macro",
  25918. height: math.unit(90, "feet"),
  25919. allForms: true
  25920. },
  25921. {
  25922. name: "Supercharged",
  25923. height: math.unit(270, "feet"),
  25924. allForms: true
  25925. },
  25926. ],
  25927. {
  25928. "normal": {
  25929. name: "Normal",
  25930. default: true
  25931. },
  25932. "thicc": {
  25933. name: "Thicc",
  25934. },
  25935. }
  25936. ))
  25937. characterMakers.push(() => makeCharacter(
  25938. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25939. {
  25940. front: {
  25941. height: math.unit(5 + 9 / 12, "feet"),
  25942. weight: math.unit(190, "lb"),
  25943. name: "Front",
  25944. image: {
  25945. source: "./media/characters/sprisk/front.svg",
  25946. extra: 1225 / 1180,
  25947. bottom: 42.7 / 1266.4
  25948. }
  25949. },
  25950. frontNsfw: {
  25951. height: math.unit(5 + 9 / 12, "feet"),
  25952. weight: math.unit(190, "lb"),
  25953. name: "Front (NSFW)",
  25954. image: {
  25955. source: "./media/characters/sprisk/front-nsfw.svg",
  25956. extra: 1225 / 1180,
  25957. bottom: 42.7 / 1266.4
  25958. }
  25959. },
  25960. back: {
  25961. height: math.unit(5 + 9 / 12, "feet"),
  25962. weight: math.unit(190, "lb"),
  25963. name: "Back",
  25964. image: {
  25965. source: "./media/characters/sprisk/back.svg",
  25966. extra: 1247 / 1200,
  25967. bottom: 5.6 / 1253.04
  25968. }
  25969. },
  25970. },
  25971. [
  25972. {
  25973. name: "Tiny",
  25974. height: math.unit(2, "inches")
  25975. },
  25976. {
  25977. name: "Normal",
  25978. height: math.unit(5 + 9 / 12, "feet"),
  25979. default: true
  25980. },
  25981. {
  25982. name: "Mini Macro",
  25983. height: math.unit(18, "feet")
  25984. },
  25985. {
  25986. name: "Macro",
  25987. height: math.unit(100, "feet")
  25988. },
  25989. {
  25990. name: "MACRO",
  25991. height: math.unit(50, "miles")
  25992. },
  25993. {
  25994. name: "M A C R O",
  25995. height: math.unit(300, "miles")
  25996. },
  25997. ]
  25998. ))
  25999. characterMakers.push(() => makeCharacter(
  26000. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  26001. {
  26002. side: {
  26003. height: math.unit(15.6, "meters"),
  26004. weight: math.unit(700000, "kg"),
  26005. name: "Side",
  26006. image: {
  26007. source: "./media/characters/bunsen/side.svg",
  26008. extra: 1644 / 358
  26009. }
  26010. },
  26011. foot: {
  26012. height: math.unit(1.611 * 1644 / 358, "meter"),
  26013. name: "Foot",
  26014. image: {
  26015. source: "./media/characters/bunsen/foot.svg"
  26016. }
  26017. },
  26018. },
  26019. [
  26020. {
  26021. name: "Small",
  26022. height: math.unit(10, "feet")
  26023. },
  26024. {
  26025. name: "Normal",
  26026. height: math.unit(15.6, "meters"),
  26027. default: true
  26028. },
  26029. ]
  26030. ))
  26031. characterMakers.push(() => makeCharacter(
  26032. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  26033. {
  26034. front: {
  26035. height: math.unit(4 + 11 / 12, "feet"),
  26036. weight: math.unit(140, "lb"),
  26037. name: "Front",
  26038. image: {
  26039. source: "./media/characters/sesh/front.svg",
  26040. extra: 3420 / 3231,
  26041. bottom: 72 / 3949.5
  26042. }
  26043. },
  26044. },
  26045. [
  26046. {
  26047. name: "Normal",
  26048. height: math.unit(4 + 11 / 12, "feet")
  26049. },
  26050. {
  26051. name: "Grown",
  26052. height: math.unit(15, "feet"),
  26053. default: true
  26054. },
  26055. {
  26056. name: "Macro",
  26057. height: math.unit(1500, "feet")
  26058. },
  26059. {
  26060. name: "Megamacro",
  26061. height: math.unit(30, "miles")
  26062. },
  26063. {
  26064. name: "Continental",
  26065. height: math.unit(3000, "miles")
  26066. },
  26067. {
  26068. name: "Gravity Mass",
  26069. height: math.unit(300000, "miles")
  26070. },
  26071. {
  26072. name: "Planet Buster",
  26073. height: math.unit(30000000, "miles")
  26074. },
  26075. {
  26076. name: "Big",
  26077. height: math.unit(3000000000, "miles")
  26078. },
  26079. ]
  26080. ))
  26081. characterMakers.push(() => makeCharacter(
  26082. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  26083. {
  26084. front: {
  26085. height: math.unit(9, "feet"),
  26086. weight: math.unit(350, "lb"),
  26087. name: "Front",
  26088. image: {
  26089. source: "./media/characters/pepper/front.svg",
  26090. extra: 1448 / 1312,
  26091. bottom: 9.4 / 1457.88
  26092. }
  26093. },
  26094. back: {
  26095. height: math.unit(9, "feet"),
  26096. weight: math.unit(350, "lb"),
  26097. name: "Back",
  26098. image: {
  26099. source: "./media/characters/pepper/back.svg",
  26100. extra: 1423 / 1300,
  26101. bottom: 4.6 / 1429
  26102. }
  26103. },
  26104. maw: {
  26105. height: math.unit(0.932, "feet"),
  26106. name: "Maw",
  26107. image: {
  26108. source: "./media/characters/pepper/maw.svg"
  26109. }
  26110. },
  26111. },
  26112. [
  26113. {
  26114. name: "Normal",
  26115. height: math.unit(9, "feet"),
  26116. default: true
  26117. },
  26118. ]
  26119. ))
  26120. characterMakers.push(() => makeCharacter(
  26121. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  26122. {
  26123. front: {
  26124. height: math.unit(6, "feet"),
  26125. weight: math.unit(150, "lb"),
  26126. name: "Front",
  26127. image: {
  26128. source: "./media/characters/maelstrom/front.svg",
  26129. extra: 2100 / 1883,
  26130. bottom: 94 / 2196.7
  26131. }
  26132. },
  26133. },
  26134. [
  26135. {
  26136. name: "Less Kaiju",
  26137. height: math.unit(200, "feet")
  26138. },
  26139. {
  26140. name: "Kaiju",
  26141. height: math.unit(400, "feet"),
  26142. default: true
  26143. },
  26144. {
  26145. name: "Kaiju-er",
  26146. height: math.unit(600, "feet")
  26147. },
  26148. ]
  26149. ))
  26150. characterMakers.push(() => makeCharacter(
  26151. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  26152. {
  26153. front: {
  26154. height: math.unit(6 + 5 / 12, "feet"),
  26155. weight: math.unit(180, "lb"),
  26156. name: "Front",
  26157. image: {
  26158. source: "./media/characters/lexir/front.svg",
  26159. extra: 180 / 172,
  26160. bottom: 12 / 192
  26161. }
  26162. },
  26163. back: {
  26164. height: math.unit(6 + 5 / 12, "feet"),
  26165. weight: math.unit(180, "lb"),
  26166. name: "Back",
  26167. image: {
  26168. source: "./media/characters/lexir/back.svg",
  26169. extra: 1273/1201,
  26170. bottom: 39/1312
  26171. }
  26172. },
  26173. },
  26174. [
  26175. {
  26176. name: "Very Smal",
  26177. height: math.unit(1, "nm")
  26178. },
  26179. {
  26180. name: "Normal",
  26181. height: math.unit(6 + 5 / 12, "feet"),
  26182. default: true
  26183. },
  26184. {
  26185. name: "Macro",
  26186. height: math.unit(1, "mile")
  26187. },
  26188. {
  26189. name: "Megamacro",
  26190. height: math.unit(50, "miles")
  26191. },
  26192. ]
  26193. ))
  26194. characterMakers.push(() => makeCharacter(
  26195. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  26196. {
  26197. front: {
  26198. height: math.unit(1.5, "meters"),
  26199. weight: math.unit(100, "lb"),
  26200. name: "Front",
  26201. image: {
  26202. source: "./media/characters/maksio/front.svg",
  26203. extra: 1549 / 1531,
  26204. bottom: 123.7 / 1674.5429
  26205. }
  26206. },
  26207. back: {
  26208. height: math.unit(1.5, "meters"),
  26209. weight: math.unit(100, "lb"),
  26210. name: "Back",
  26211. image: {
  26212. source: "./media/characters/maksio/back.svg",
  26213. extra: 1541 / 1509,
  26214. bottom: 97 / 1639
  26215. }
  26216. },
  26217. hand: {
  26218. height: math.unit(0.621, "feet"),
  26219. name: "Hand",
  26220. image: {
  26221. source: "./media/characters/maksio/hand.svg"
  26222. }
  26223. },
  26224. foot: {
  26225. height: math.unit(1.611, "feet"),
  26226. name: "Foot",
  26227. image: {
  26228. source: "./media/characters/maksio/foot.svg"
  26229. }
  26230. },
  26231. },
  26232. [
  26233. {
  26234. name: "Shrunken",
  26235. height: math.unit(10, "cm")
  26236. },
  26237. {
  26238. name: "Normal",
  26239. height: math.unit(150, "cm"),
  26240. default: true
  26241. },
  26242. ]
  26243. ))
  26244. characterMakers.push(() => makeCharacter(
  26245. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  26246. {
  26247. front: {
  26248. height: math.unit(100, "feet"),
  26249. name: "Front",
  26250. image: {
  26251. source: "./media/characters/erza-bear/front.svg",
  26252. extra: 2449 / 2390,
  26253. bottom: 46 / 2494
  26254. }
  26255. },
  26256. back: {
  26257. height: math.unit(100, "feet"),
  26258. name: "Back",
  26259. image: {
  26260. source: "./media/characters/erza-bear/back.svg",
  26261. extra: 2489 / 2430,
  26262. bottom: 85.4 / 2480
  26263. }
  26264. },
  26265. tail: {
  26266. height: math.unit(42, "feet"),
  26267. name: "Tail",
  26268. image: {
  26269. source: "./media/characters/erza-bear/tail.svg"
  26270. }
  26271. },
  26272. tongue: {
  26273. height: math.unit(8, "feet"),
  26274. name: "Tongue",
  26275. image: {
  26276. source: "./media/characters/erza-bear/tongue.svg"
  26277. }
  26278. },
  26279. dick: {
  26280. height: math.unit(10.5, "feet"),
  26281. name: "Dick",
  26282. image: {
  26283. source: "./media/characters/erza-bear/dick.svg"
  26284. }
  26285. },
  26286. dickVertical: {
  26287. height: math.unit(16.9, "feet"),
  26288. name: "Dick (Vertical)",
  26289. image: {
  26290. source: "./media/characters/erza-bear/dick-vertical.svg"
  26291. }
  26292. },
  26293. },
  26294. [
  26295. {
  26296. name: "Macro",
  26297. height: math.unit(100, "feet"),
  26298. default: true
  26299. },
  26300. ]
  26301. ))
  26302. characterMakers.push(() => makeCharacter(
  26303. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  26304. {
  26305. front: {
  26306. height: math.unit(172, "cm"),
  26307. weight: math.unit(73, "kg"),
  26308. name: "Front",
  26309. image: {
  26310. source: "./media/characters/violet-flor/front.svg",
  26311. extra: 1474/1379,
  26312. bottom: 113/1587
  26313. }
  26314. },
  26315. back: {
  26316. height: math.unit(180, "cm"),
  26317. weight: math.unit(73, "kg"),
  26318. name: "Back",
  26319. image: {
  26320. source: "./media/characters/violet-flor/back.svg",
  26321. extra: 1660/1567,
  26322. bottom: 49/1709
  26323. }
  26324. },
  26325. },
  26326. [
  26327. {
  26328. name: "Normal",
  26329. height: math.unit(172, "cm"),
  26330. default: true
  26331. },
  26332. ]
  26333. ))
  26334. characterMakers.push(() => makeCharacter(
  26335. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  26336. {
  26337. front: {
  26338. height: math.unit(6, "feet"),
  26339. weight: math.unit(220, "lb"),
  26340. name: "Front",
  26341. image: {
  26342. source: "./media/characters/lynn-rhea/front.svg",
  26343. extra: 310 / 273
  26344. }
  26345. },
  26346. back: {
  26347. height: math.unit(6, "feet"),
  26348. weight: math.unit(220, "lb"),
  26349. name: "Back",
  26350. image: {
  26351. source: "./media/characters/lynn-rhea/back.svg",
  26352. extra: 310 / 273
  26353. }
  26354. },
  26355. dicks: {
  26356. height: math.unit(0.9, "feet"),
  26357. name: "Dicks",
  26358. image: {
  26359. source: "./media/characters/lynn-rhea/dicks.svg"
  26360. }
  26361. },
  26362. slit: {
  26363. height: math.unit(0.4, "feet"),
  26364. name: "Slit",
  26365. image: {
  26366. source: "./media/characters/lynn-rhea/slit.svg"
  26367. }
  26368. },
  26369. },
  26370. [
  26371. {
  26372. name: "Micro",
  26373. height: math.unit(1, "inch")
  26374. },
  26375. {
  26376. name: "Macro",
  26377. height: math.unit(60, "feet"),
  26378. default: true
  26379. },
  26380. {
  26381. name: "Megamacro",
  26382. height: math.unit(2, "miles")
  26383. },
  26384. {
  26385. name: "Gigamacro",
  26386. height: math.unit(3, "earths")
  26387. },
  26388. {
  26389. name: "Galactic",
  26390. height: math.unit(0.8, "galaxies")
  26391. },
  26392. ]
  26393. ))
  26394. characterMakers.push(() => makeCharacter(
  26395. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26396. {
  26397. front: {
  26398. height: math.unit(1600, "feet"),
  26399. weight: math.unit(85758785169, "kg"),
  26400. name: "Front",
  26401. image: {
  26402. source: "./media/characters/valathos/front.svg",
  26403. extra: 1451 / 1339
  26404. }
  26405. },
  26406. },
  26407. [
  26408. {
  26409. name: "Macro",
  26410. height: math.unit(1600, "feet"),
  26411. default: true
  26412. },
  26413. ]
  26414. ))
  26415. characterMakers.push(() => makeCharacter(
  26416. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26417. {
  26418. front: {
  26419. height: math.unit(7 + 5 / 12, "feet"),
  26420. weight: math.unit(300, "lb"),
  26421. name: "Front",
  26422. image: {
  26423. source: "./media/characters/azula/front.svg",
  26424. extra: 3208 / 2880,
  26425. bottom: 80.2 / 3277
  26426. }
  26427. },
  26428. back: {
  26429. height: math.unit(7 + 5 / 12, "feet"),
  26430. weight: math.unit(300, "lb"),
  26431. name: "Back",
  26432. image: {
  26433. source: "./media/characters/azula/back.svg",
  26434. extra: 3169 / 2822,
  26435. bottom: 150.6 / 3321
  26436. }
  26437. },
  26438. },
  26439. [
  26440. {
  26441. name: "Normal",
  26442. height: math.unit(7 + 5 / 12, "feet"),
  26443. default: true
  26444. },
  26445. {
  26446. name: "Big",
  26447. height: math.unit(20, "feet")
  26448. },
  26449. ]
  26450. ))
  26451. characterMakers.push(() => makeCharacter(
  26452. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26453. {
  26454. front: {
  26455. height: math.unit(5 + 1 / 12, "feet"),
  26456. weight: math.unit(110, "lb"),
  26457. name: "Front",
  26458. image: {
  26459. source: "./media/characters/rupert/front.svg",
  26460. extra: 1549 / 1495,
  26461. bottom: 54.2 / 1604.4
  26462. }
  26463. },
  26464. },
  26465. [
  26466. {
  26467. name: "Normal",
  26468. height: math.unit(5 + 1 / 12, "feet"),
  26469. default: true
  26470. },
  26471. ]
  26472. ))
  26473. characterMakers.push(() => makeCharacter(
  26474. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26475. {
  26476. front: {
  26477. height: math.unit(8 + 4 / 12, "feet"),
  26478. weight: math.unit(350, "lb"),
  26479. name: "Front",
  26480. image: {
  26481. source: "./media/characters/sheera-castellar/front.svg",
  26482. extra: 1957 / 1894,
  26483. bottom: 26.97 / 1975.017
  26484. }
  26485. },
  26486. side: {
  26487. height: math.unit(8 + 4 / 12, "feet"),
  26488. weight: math.unit(350, "lb"),
  26489. name: "Side",
  26490. image: {
  26491. source: "./media/characters/sheera-castellar/side.svg",
  26492. extra: 1957 / 1894
  26493. }
  26494. },
  26495. back: {
  26496. height: math.unit(8 + 4 / 12, "feet"),
  26497. weight: math.unit(350, "lb"),
  26498. name: "Back",
  26499. image: {
  26500. source: "./media/characters/sheera-castellar/back.svg",
  26501. extra: 1957 / 1894
  26502. }
  26503. },
  26504. angled: {
  26505. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26506. weight: math.unit(350, "lb"),
  26507. name: "Angled",
  26508. image: {
  26509. source: "./media/characters/sheera-castellar/angled.svg",
  26510. extra: 1807 / 1707,
  26511. bottom: 68 / 1875
  26512. }
  26513. },
  26514. genitals: {
  26515. height: math.unit(2.2, "feet"),
  26516. name: "Genitals",
  26517. image: {
  26518. source: "./media/characters/sheera-castellar/genitals.svg"
  26519. }
  26520. },
  26521. taur: {
  26522. height: math.unit(10 + 6/12, "feet"),
  26523. name: "Taur",
  26524. image: {
  26525. source: "./media/characters/sheera-castellar/taur.svg",
  26526. extra: 2017/1909,
  26527. bottom: 185/2202
  26528. }
  26529. },
  26530. },
  26531. [
  26532. {
  26533. name: "Normal",
  26534. height: math.unit(8 + 4 / 12, "feet")
  26535. },
  26536. {
  26537. name: "Macro",
  26538. height: math.unit(150, "feet"),
  26539. default: true
  26540. },
  26541. {
  26542. name: "Macro+",
  26543. height: math.unit(800, "feet")
  26544. },
  26545. ]
  26546. ))
  26547. characterMakers.push(() => makeCharacter(
  26548. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26549. {
  26550. front: {
  26551. height: math.unit(6, "feet"),
  26552. weight: math.unit(150, "lb"),
  26553. name: "Front",
  26554. image: {
  26555. source: "./media/characters/jaipur/front.svg",
  26556. extra: 3860 / 3731,
  26557. bottom: 287 / 4140
  26558. }
  26559. },
  26560. back: {
  26561. height: math.unit(6, "feet"),
  26562. weight: math.unit(150, "lb"),
  26563. name: "Back",
  26564. image: {
  26565. source: "./media/characters/jaipur/back.svg",
  26566. extra: 1637/1561,
  26567. bottom: 154/1791
  26568. }
  26569. },
  26570. },
  26571. [
  26572. {
  26573. name: "Normal",
  26574. height: math.unit(1.85, "meters"),
  26575. default: true
  26576. },
  26577. {
  26578. name: "Macro",
  26579. height: math.unit(150, "meters")
  26580. },
  26581. {
  26582. name: "Macro+",
  26583. height: math.unit(0.5, "miles")
  26584. },
  26585. {
  26586. name: "Macro++",
  26587. height: math.unit(2.5, "miles")
  26588. },
  26589. {
  26590. name: "Macro+++",
  26591. height: math.unit(12, "miles")
  26592. },
  26593. {
  26594. name: "Macro++++",
  26595. height: math.unit(120, "miles")
  26596. },
  26597. {
  26598. name: "Macro+++++",
  26599. height: math.unit(1200, "miles")
  26600. },
  26601. ]
  26602. ))
  26603. characterMakers.push(() => makeCharacter(
  26604. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26605. {
  26606. front: {
  26607. height: math.unit(6, "feet"),
  26608. weight: math.unit(150, "lb"),
  26609. name: "Front",
  26610. image: {
  26611. source: "./media/characters/sheila-wolf/front.svg",
  26612. extra: 1931 / 1808,
  26613. bottom: 29.5 / 1960
  26614. }
  26615. },
  26616. dick: {
  26617. height: math.unit(1.464, "feet"),
  26618. name: "Dick",
  26619. image: {
  26620. source: "./media/characters/sheila-wolf/dick.svg"
  26621. }
  26622. },
  26623. muzzle: {
  26624. height: math.unit(0.513, "feet"),
  26625. name: "Muzzle",
  26626. image: {
  26627. source: "./media/characters/sheila-wolf/muzzle.svg"
  26628. }
  26629. },
  26630. },
  26631. [
  26632. {
  26633. name: "Macro",
  26634. height: math.unit(70, "feet"),
  26635. default: true
  26636. },
  26637. ]
  26638. ))
  26639. characterMakers.push(() => makeCharacter(
  26640. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26641. {
  26642. front: {
  26643. height: math.unit(32, "meters"),
  26644. weight: math.unit(300000, "kg"),
  26645. name: "Front",
  26646. image: {
  26647. source: "./media/characters/almor/front.svg",
  26648. extra: 1408 / 1322,
  26649. bottom: 94.6 / 1506.5
  26650. }
  26651. },
  26652. },
  26653. [
  26654. {
  26655. name: "Macro",
  26656. height: math.unit(32, "meters"),
  26657. default: true
  26658. },
  26659. ]
  26660. ))
  26661. characterMakers.push(() => makeCharacter(
  26662. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26663. {
  26664. front: {
  26665. height: math.unit(7, "feet"),
  26666. weight: math.unit(200, "lb"),
  26667. name: "Front",
  26668. image: {
  26669. source: "./media/characters/silver/front.svg",
  26670. extra: 472.1 / 450.5,
  26671. bottom: 26.5 / 499.424
  26672. }
  26673. },
  26674. },
  26675. [
  26676. {
  26677. name: "Normal",
  26678. height: math.unit(7, "feet"),
  26679. default: true
  26680. },
  26681. {
  26682. name: "Macro",
  26683. height: math.unit(800, "feet")
  26684. },
  26685. {
  26686. name: "Megamacro",
  26687. height: math.unit(250, "miles")
  26688. },
  26689. ]
  26690. ))
  26691. characterMakers.push(() => makeCharacter(
  26692. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26693. {
  26694. front: {
  26695. height: math.unit(6, "feet"),
  26696. weight: math.unit(150, "lb"),
  26697. name: "Front",
  26698. image: {
  26699. source: "./media/characters/pliskin/front.svg",
  26700. extra: 1469 / 1359,
  26701. bottom: 70 / 1540
  26702. }
  26703. },
  26704. },
  26705. [
  26706. {
  26707. name: "Micro",
  26708. height: math.unit(3, "inches")
  26709. },
  26710. {
  26711. name: "Normal",
  26712. height: math.unit(5 + 11 / 12, "feet"),
  26713. default: true
  26714. },
  26715. {
  26716. name: "Macro",
  26717. height: math.unit(120, "feet")
  26718. },
  26719. ]
  26720. ))
  26721. characterMakers.push(() => makeCharacter(
  26722. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26723. {
  26724. front: {
  26725. height: math.unit(6, "feet"),
  26726. weight: math.unit(150, "lb"),
  26727. name: "Front",
  26728. image: {
  26729. source: "./media/characters/sammy/front.svg",
  26730. extra: 1193 / 1089,
  26731. bottom: 30.5 / 1226
  26732. }
  26733. },
  26734. },
  26735. [
  26736. {
  26737. name: "Macro",
  26738. height: math.unit(1700, "feet"),
  26739. default: true
  26740. },
  26741. {
  26742. name: "Examacro",
  26743. height: math.unit(2.5e9, "lightyears")
  26744. },
  26745. ]
  26746. ))
  26747. characterMakers.push(() => makeCharacter(
  26748. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26749. {
  26750. front: {
  26751. height: math.unit(21, "meters"),
  26752. weight: math.unit(12, "tonnes"),
  26753. name: "Front",
  26754. image: {
  26755. source: "./media/characters/kuru/front.svg",
  26756. extra: 4301 / 3785,
  26757. bottom: 371.3 / 4691
  26758. }
  26759. },
  26760. },
  26761. [
  26762. {
  26763. name: "Macro",
  26764. height: math.unit(21, "meters"),
  26765. default: true
  26766. },
  26767. ]
  26768. ))
  26769. characterMakers.push(() => makeCharacter(
  26770. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26771. {
  26772. front: {
  26773. height: math.unit(23, "meters"),
  26774. weight: math.unit(12.2, "tonnes"),
  26775. name: "Front",
  26776. image: {
  26777. source: "./media/characters/rakka/front.svg",
  26778. extra: 4670 / 4169,
  26779. bottom: 301 / 4968.7
  26780. }
  26781. },
  26782. },
  26783. [
  26784. {
  26785. name: "Macro",
  26786. height: math.unit(23, "meters"),
  26787. default: true
  26788. },
  26789. ]
  26790. ))
  26791. characterMakers.push(() => makeCharacter(
  26792. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26793. {
  26794. front: {
  26795. height: math.unit(6, "feet"),
  26796. weight: math.unit(150, "lb"),
  26797. name: "Front",
  26798. image: {
  26799. source: "./media/characters/rhys-feline/front.svg",
  26800. extra: 2488 / 2308,
  26801. bottom: 35.67 / 2519.19
  26802. }
  26803. },
  26804. },
  26805. [
  26806. {
  26807. name: "Really Small",
  26808. height: math.unit(1, "nm")
  26809. },
  26810. {
  26811. name: "Micro",
  26812. height: math.unit(4, "inches")
  26813. },
  26814. {
  26815. name: "Normal",
  26816. height: math.unit(4 + 10 / 12, "feet"),
  26817. default: true
  26818. },
  26819. {
  26820. name: "Macro",
  26821. height: math.unit(100, "feet")
  26822. },
  26823. {
  26824. name: "Megamacto",
  26825. height: math.unit(50, "miles")
  26826. },
  26827. ]
  26828. ))
  26829. characterMakers.push(() => makeCharacter(
  26830. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26831. {
  26832. side: {
  26833. height: math.unit(30, "feet"),
  26834. weight: math.unit(35000, "kg"),
  26835. name: "Side",
  26836. image: {
  26837. source: "./media/characters/alydar/side.svg",
  26838. extra: 234 / 222,
  26839. bottom: 6.5 / 241
  26840. }
  26841. },
  26842. front: {
  26843. height: math.unit(30, "feet"),
  26844. weight: math.unit(35000, "kg"),
  26845. name: "Front",
  26846. image: {
  26847. source: "./media/characters/alydar/front.svg",
  26848. extra: 223.37 / 210.2,
  26849. bottom: 22.3 / 246.76
  26850. }
  26851. },
  26852. top: {
  26853. height: math.unit(64.54, "feet"),
  26854. weight: math.unit(35000, "kg"),
  26855. name: "Top",
  26856. image: {
  26857. source: "./media/characters/alydar/top.svg"
  26858. }
  26859. },
  26860. anthro: {
  26861. height: math.unit(30, "feet"),
  26862. weight: math.unit(9000, "kg"),
  26863. name: "Anthro",
  26864. image: {
  26865. source: "./media/characters/alydar/anthro.svg",
  26866. extra: 432 / 421,
  26867. bottom: 7.18 / 440
  26868. }
  26869. },
  26870. maw: {
  26871. height: math.unit(11.693, "feet"),
  26872. name: "Maw",
  26873. image: {
  26874. source: "./media/characters/alydar/maw.svg"
  26875. }
  26876. },
  26877. head: {
  26878. height: math.unit(11.693, "feet"),
  26879. name: "Head",
  26880. image: {
  26881. source: "./media/characters/alydar/head.svg"
  26882. }
  26883. },
  26884. headAlt: {
  26885. height: math.unit(12.861, "feet"),
  26886. name: "Head (Alt)",
  26887. image: {
  26888. source: "./media/characters/alydar/head-alt.svg"
  26889. }
  26890. },
  26891. wing: {
  26892. height: math.unit(20.712, "feet"),
  26893. name: "Wing",
  26894. image: {
  26895. source: "./media/characters/alydar/wing.svg"
  26896. }
  26897. },
  26898. wingFeather: {
  26899. height: math.unit(9.662, "feet"),
  26900. name: "Wing Feather",
  26901. image: {
  26902. source: "./media/characters/alydar/wing-feather.svg"
  26903. }
  26904. },
  26905. countourFeather: {
  26906. height: math.unit(4.154, "feet"),
  26907. name: "Contour Feather",
  26908. image: {
  26909. source: "./media/characters/alydar/contour-feather.svg"
  26910. }
  26911. },
  26912. },
  26913. [
  26914. {
  26915. name: "Diplomatic",
  26916. height: math.unit(13, "feet"),
  26917. default: true
  26918. },
  26919. {
  26920. name: "Small",
  26921. height: math.unit(30, "feet")
  26922. },
  26923. {
  26924. name: "Normal",
  26925. height: math.unit(95, "feet"),
  26926. default: true
  26927. },
  26928. {
  26929. name: "Large",
  26930. height: math.unit(285, "feet")
  26931. },
  26932. {
  26933. name: "Incomprehensible",
  26934. height: math.unit(450, "megameters")
  26935. },
  26936. ]
  26937. ))
  26938. characterMakers.push(() => makeCharacter(
  26939. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26940. {
  26941. side: {
  26942. height: math.unit(11, "feet"),
  26943. weight: math.unit(1750, "kg"),
  26944. name: "Side",
  26945. image: {
  26946. source: "./media/characters/selicia/side.svg",
  26947. extra: 440 / 396,
  26948. bottom: 24.8 / 465.979
  26949. }
  26950. },
  26951. maw: {
  26952. height: math.unit(4.665, "feet"),
  26953. name: "Maw",
  26954. image: {
  26955. source: "./media/characters/selicia/maw.svg"
  26956. }
  26957. },
  26958. },
  26959. [
  26960. {
  26961. name: "Normal",
  26962. height: math.unit(11, "feet"),
  26963. default: true
  26964. },
  26965. ]
  26966. ))
  26967. characterMakers.push(() => makeCharacter(
  26968. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26969. {
  26970. side: {
  26971. height: math.unit(2 + 6 / 12, "feet"),
  26972. weight: math.unit(30, "lb"),
  26973. name: "Side",
  26974. image: {
  26975. source: "./media/characters/layla/side.svg",
  26976. extra: 244 / 188,
  26977. bottom: 18.2 / 262.1
  26978. }
  26979. },
  26980. back: {
  26981. height: math.unit(2 + 6 / 12, "feet"),
  26982. weight: math.unit(30, "lb"),
  26983. name: "Back",
  26984. image: {
  26985. source: "./media/characters/layla/back.svg",
  26986. extra: 308 / 241.5,
  26987. bottom: 8.9 / 316.8
  26988. }
  26989. },
  26990. cumming: {
  26991. height: math.unit(2 + 6 / 12, "feet"),
  26992. weight: math.unit(30, "lb"),
  26993. name: "Cumming",
  26994. image: {
  26995. source: "./media/characters/layla/cumming.svg",
  26996. extra: 342 / 279,
  26997. bottom: 595 / 938
  26998. }
  26999. },
  27000. dickFlaccid: {
  27001. height: math.unit(2.595, "feet"),
  27002. name: "Flaccid Genitals",
  27003. image: {
  27004. source: "./media/characters/layla/dick-flaccid.svg"
  27005. }
  27006. },
  27007. dickErect: {
  27008. height: math.unit(2.359, "feet"),
  27009. name: "Erect Genitals",
  27010. image: {
  27011. source: "./media/characters/layla/dick-erect.svg"
  27012. }
  27013. },
  27014. dragon: {
  27015. height: math.unit(40, "feet"),
  27016. name: "Dragon",
  27017. image: {
  27018. source: "./media/characters/layla/dragon.svg",
  27019. extra: 610/535,
  27020. bottom: 367/977
  27021. }
  27022. },
  27023. taur: {
  27024. height: math.unit(30, "feet"),
  27025. name: "Taur",
  27026. image: {
  27027. source: "./media/characters/layla/taur.svg",
  27028. extra: 1268/1199,
  27029. bottom: 112/1380
  27030. }
  27031. },
  27032. },
  27033. [
  27034. {
  27035. name: "Micro",
  27036. height: math.unit(1, "inch")
  27037. },
  27038. {
  27039. name: "Small",
  27040. height: math.unit(1, "foot")
  27041. },
  27042. {
  27043. name: "Normal",
  27044. height: math.unit(2 + 6 / 12, "feet"),
  27045. default: true
  27046. },
  27047. {
  27048. name: "Macro",
  27049. height: math.unit(200, "feet")
  27050. },
  27051. {
  27052. name: "Megamacro",
  27053. height: math.unit(1000, "miles")
  27054. },
  27055. {
  27056. name: "Planetary",
  27057. height: math.unit(8000, "miles")
  27058. },
  27059. {
  27060. name: "True Layla",
  27061. height: math.unit(200000 * 7, "multiverses")
  27062. },
  27063. ]
  27064. ))
  27065. characterMakers.push(() => makeCharacter(
  27066. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  27067. {
  27068. back: {
  27069. height: math.unit(10.5, "feet"),
  27070. weight: math.unit(800, "lb"),
  27071. name: "Back",
  27072. image: {
  27073. source: "./media/characters/knox/back.svg",
  27074. extra: 1486 / 1089,
  27075. bottom: 107 / 1601.4
  27076. }
  27077. },
  27078. side: {
  27079. height: math.unit(10.5, "feet"),
  27080. weight: math.unit(800, "lb"),
  27081. name: "Side",
  27082. image: {
  27083. source: "./media/characters/knox/side.svg",
  27084. extra: 244 / 218,
  27085. bottom: 14 / 260
  27086. }
  27087. },
  27088. },
  27089. [
  27090. {
  27091. name: "Compact",
  27092. height: math.unit(10.5, "feet"),
  27093. default: true
  27094. },
  27095. {
  27096. name: "Dynamax",
  27097. height: math.unit(210, "feet")
  27098. },
  27099. {
  27100. name: "Full Macro",
  27101. height: math.unit(850, "feet")
  27102. },
  27103. ]
  27104. ))
  27105. characterMakers.push(() => makeCharacter(
  27106. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  27107. {
  27108. front: {
  27109. height: math.unit(28, "feet"),
  27110. weight: math.unit(10500, "lb"),
  27111. name: "Front",
  27112. image: {
  27113. source: "./media/characters/kayda/front.svg",
  27114. extra: 1536 / 1428,
  27115. bottom: 68.7 / 1603
  27116. }
  27117. },
  27118. back: {
  27119. height: math.unit(28, "feet"),
  27120. weight: math.unit(10500, "lb"),
  27121. name: "Back",
  27122. image: {
  27123. source: "./media/characters/kayda/back.svg",
  27124. extra: 1557 / 1464,
  27125. bottom: 39.5 / 1597.49
  27126. }
  27127. },
  27128. dick: {
  27129. height: math.unit(3.858, "feet"),
  27130. name: "Dick",
  27131. image: {
  27132. source: "./media/characters/kayda/dick.svg"
  27133. }
  27134. },
  27135. },
  27136. [
  27137. {
  27138. name: "Macro",
  27139. height: math.unit(28, "feet"),
  27140. default: true
  27141. },
  27142. ]
  27143. ))
  27144. characterMakers.push(() => makeCharacter(
  27145. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  27146. {
  27147. front: {
  27148. height: math.unit(10 + 11 / 12, "feet"),
  27149. weight: math.unit(1400, "lb"),
  27150. name: "Front",
  27151. image: {
  27152. source: "./media/characters/brian/front.svg",
  27153. extra: 737 / 692,
  27154. bottom: 55.4 / 785
  27155. }
  27156. },
  27157. },
  27158. [
  27159. {
  27160. name: "Normal",
  27161. height: math.unit(10 + 11 / 12, "feet"),
  27162. default: true
  27163. },
  27164. ]
  27165. ))
  27166. characterMakers.push(() => makeCharacter(
  27167. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  27168. {
  27169. front: {
  27170. height: math.unit(5 + 8 / 12, "feet"),
  27171. weight: math.unit(140, "lb"),
  27172. name: "Front",
  27173. image: {
  27174. source: "./media/characters/khemri/front.svg",
  27175. extra: 4780 / 4059,
  27176. bottom: 80.1 / 4859.25
  27177. }
  27178. },
  27179. },
  27180. [
  27181. {
  27182. name: "Micro",
  27183. height: math.unit(6, "inches")
  27184. },
  27185. {
  27186. name: "Normal",
  27187. height: math.unit(5 + 8 / 12, "feet"),
  27188. default: true
  27189. },
  27190. ]
  27191. ))
  27192. characterMakers.push(() => makeCharacter(
  27193. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  27194. {
  27195. front: {
  27196. height: math.unit(13, "feet"),
  27197. weight: math.unit(1700, "lb"),
  27198. name: "Front",
  27199. image: {
  27200. source: "./media/characters/felix-braveheart/front.svg",
  27201. extra: 1222 / 1157,
  27202. bottom: 53.2 / 1280
  27203. }
  27204. },
  27205. back: {
  27206. height: math.unit(13, "feet"),
  27207. weight: math.unit(1700, "lb"),
  27208. name: "Back",
  27209. image: {
  27210. source: "./media/characters/felix-braveheart/back.svg",
  27211. extra: 1277 / 1203,
  27212. bottom: 50.2 / 1327
  27213. }
  27214. },
  27215. feral: {
  27216. height: math.unit(6, "feet"),
  27217. weight: math.unit(400, "lb"),
  27218. name: "Feral",
  27219. image: {
  27220. source: "./media/characters/felix-braveheart/feral.svg",
  27221. extra: 682 / 625,
  27222. bottom: 6.9 / 688
  27223. }
  27224. },
  27225. },
  27226. [
  27227. {
  27228. name: "Normal",
  27229. height: math.unit(13, "feet"),
  27230. default: true
  27231. },
  27232. ]
  27233. ))
  27234. characterMakers.push(() => makeCharacter(
  27235. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  27236. {
  27237. side: {
  27238. height: math.unit(5 + 11 / 12, "feet"),
  27239. weight: math.unit(1400, "lb"),
  27240. name: "Side",
  27241. image: {
  27242. source: "./media/characters/shadow-blade/side.svg",
  27243. extra: 1726 / 1267,
  27244. bottom: 58.4 / 1785
  27245. }
  27246. },
  27247. },
  27248. [
  27249. {
  27250. name: "Normal",
  27251. height: math.unit(5 + 11 / 12, "feet"),
  27252. default: true
  27253. },
  27254. ]
  27255. ))
  27256. characterMakers.push(() => makeCharacter(
  27257. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  27258. {
  27259. front: {
  27260. height: math.unit(1 + 6 / 12, "feet"),
  27261. weight: math.unit(25, "lb"),
  27262. name: "Front",
  27263. image: {
  27264. source: "./media/characters/karla-halldor/front.svg",
  27265. extra: 1459 / 1383,
  27266. bottom: 12 / 1472
  27267. }
  27268. },
  27269. },
  27270. [
  27271. {
  27272. name: "Normal",
  27273. height: math.unit(1 + 6 / 12, "feet"),
  27274. default: true
  27275. },
  27276. ]
  27277. ))
  27278. characterMakers.push(() => makeCharacter(
  27279. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  27280. {
  27281. front: {
  27282. height: math.unit(6 + 2 / 12, "feet"),
  27283. weight: math.unit(160, "lb"),
  27284. name: "Front",
  27285. image: {
  27286. source: "./media/characters/ariam/front.svg",
  27287. extra: 1073/976,
  27288. bottom: 52/1125
  27289. }
  27290. },
  27291. back: {
  27292. height: math.unit(6 + 2/12, "feet"),
  27293. weight: math.unit(160, "lb"),
  27294. name: "Back",
  27295. image: {
  27296. source: "./media/characters/ariam/back.svg",
  27297. extra: 1103/1023,
  27298. bottom: 9/1112
  27299. }
  27300. },
  27301. dressed: {
  27302. height: math.unit(6 + 2/12, "feet"),
  27303. weight: math.unit(160, "lb"),
  27304. name: "Dressed",
  27305. image: {
  27306. source: "./media/characters/ariam/dressed.svg",
  27307. extra: 1099/1009,
  27308. bottom: 25/1124
  27309. }
  27310. },
  27311. squatting: {
  27312. height: math.unit(4.1, "feet"),
  27313. weight: math.unit(160, "lb"),
  27314. name: "Squatting",
  27315. image: {
  27316. source: "./media/characters/ariam/squatting.svg",
  27317. extra: 2617 / 2112,
  27318. bottom: 61.2 / 2681,
  27319. }
  27320. },
  27321. },
  27322. [
  27323. {
  27324. name: "Normal",
  27325. height: math.unit(6 + 2 / 12, "feet"),
  27326. default: true
  27327. },
  27328. {
  27329. name: "Normal+",
  27330. height: math.unit(4, "meters")
  27331. },
  27332. {
  27333. name: "Macro",
  27334. height: math.unit(50, "meters")
  27335. },
  27336. {
  27337. name: "Macro+",
  27338. height: math.unit(100, "meters")
  27339. },
  27340. {
  27341. name: "Megamacro",
  27342. height: math.unit(20, "km")
  27343. },
  27344. {
  27345. name: "Caretaker",
  27346. height: math.unit(444, "megameters")
  27347. },
  27348. ]
  27349. ))
  27350. characterMakers.push(() => makeCharacter(
  27351. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  27352. {
  27353. front: {
  27354. height: math.unit(1.67, "meters"),
  27355. weight: math.unit(140, "lb"),
  27356. name: "Front",
  27357. image: {
  27358. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  27359. extra: 438 / 410,
  27360. bottom: 0.75 / 439
  27361. }
  27362. },
  27363. },
  27364. [
  27365. {
  27366. name: "Shrunken",
  27367. height: math.unit(7.6, "cm")
  27368. },
  27369. {
  27370. name: "Human Scale",
  27371. height: math.unit(1.67, "meters")
  27372. },
  27373. {
  27374. name: "Wolxi Scale",
  27375. height: math.unit(36.7, "meters"),
  27376. default: true
  27377. },
  27378. ]
  27379. ))
  27380. characterMakers.push(() => makeCharacter(
  27381. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27382. {
  27383. front: {
  27384. height: math.unit(1.73, "meters"),
  27385. weight: math.unit(240, "lb"),
  27386. name: "Front",
  27387. image: {
  27388. source: "./media/characters/izue-two-mothers/front.svg",
  27389. extra: 469 / 437,
  27390. bottom: 1.24 / 470.6
  27391. }
  27392. },
  27393. },
  27394. [
  27395. {
  27396. name: "Shrunken",
  27397. height: math.unit(7.86, "cm")
  27398. },
  27399. {
  27400. name: "Human Scale",
  27401. height: math.unit(1.73, "meters")
  27402. },
  27403. {
  27404. name: "Wolxi Scale",
  27405. height: math.unit(38, "meters"),
  27406. default: true
  27407. },
  27408. ]
  27409. ))
  27410. characterMakers.push(() => makeCharacter(
  27411. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27412. {
  27413. front: {
  27414. height: math.unit(1.55, "meters"),
  27415. weight: math.unit(120, "lb"),
  27416. name: "Front",
  27417. image: {
  27418. source: "./media/characters/teeku-love-shack/front.svg",
  27419. extra: 387 / 362,
  27420. bottom: 1.51 / 388
  27421. }
  27422. },
  27423. },
  27424. [
  27425. {
  27426. name: "Shrunken",
  27427. height: math.unit(7, "cm")
  27428. },
  27429. {
  27430. name: "Human Scale",
  27431. height: math.unit(1.55, "meters")
  27432. },
  27433. {
  27434. name: "Wolxi Scale",
  27435. height: math.unit(34.1, "meters"),
  27436. default: true
  27437. },
  27438. ]
  27439. ))
  27440. characterMakers.push(() => makeCharacter(
  27441. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27442. {
  27443. front: {
  27444. height: math.unit(1.83, "meters"),
  27445. weight: math.unit(135, "lb"),
  27446. name: "Front",
  27447. image: {
  27448. source: "./media/characters/dejma-the-red/front.svg",
  27449. extra: 480 / 458,
  27450. bottom: 1.8 / 482
  27451. }
  27452. },
  27453. },
  27454. [
  27455. {
  27456. name: "Shrunken",
  27457. height: math.unit(8.3, "cm")
  27458. },
  27459. {
  27460. name: "Human Scale",
  27461. height: math.unit(1.83, "meters")
  27462. },
  27463. {
  27464. name: "Wolxi Scale",
  27465. height: math.unit(40, "meters"),
  27466. default: true
  27467. },
  27468. ]
  27469. ))
  27470. characterMakers.push(() => makeCharacter(
  27471. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27472. {
  27473. front: {
  27474. height: math.unit(1.78, "meters"),
  27475. weight: math.unit(65, "kg"),
  27476. name: "Front",
  27477. image: {
  27478. source: "./media/characters/aki/front.svg",
  27479. extra: 452 / 415
  27480. }
  27481. },
  27482. frontNsfw: {
  27483. height: math.unit(1.78, "meters"),
  27484. weight: math.unit(65, "kg"),
  27485. name: "Front (NSFW)",
  27486. image: {
  27487. source: "./media/characters/aki/front-nsfw.svg",
  27488. extra: 452 / 415
  27489. }
  27490. },
  27491. back: {
  27492. height: math.unit(1.78, "meters"),
  27493. weight: math.unit(65, "kg"),
  27494. name: "Back",
  27495. image: {
  27496. source: "./media/characters/aki/back.svg",
  27497. extra: 452 / 415
  27498. }
  27499. },
  27500. rump: {
  27501. height: math.unit(2.05, "feet"),
  27502. name: "Rump",
  27503. image: {
  27504. source: "./media/characters/aki/rump.svg"
  27505. }
  27506. },
  27507. dick: {
  27508. height: math.unit(0.95, "feet"),
  27509. name: "Dick",
  27510. image: {
  27511. source: "./media/characters/aki/dick.svg"
  27512. }
  27513. },
  27514. },
  27515. [
  27516. {
  27517. name: "Micro",
  27518. height: math.unit(15, "cm")
  27519. },
  27520. {
  27521. name: "Normal",
  27522. height: math.unit(178, "cm"),
  27523. default: true
  27524. },
  27525. {
  27526. name: "Macro",
  27527. height: math.unit(214, "m")
  27528. },
  27529. {
  27530. name: "Macro+",
  27531. height: math.unit(534, "m")
  27532. },
  27533. ]
  27534. ))
  27535. characterMakers.push(() => makeCharacter(
  27536. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27537. {
  27538. front: {
  27539. height: math.unit(5 + 5 / 12, "feet"),
  27540. weight: math.unit(120, "lb"),
  27541. name: "Front",
  27542. image: {
  27543. source: "./media/characters/ari/front.svg",
  27544. extra: 1550/1471,
  27545. bottom: 39/1589
  27546. }
  27547. },
  27548. },
  27549. [
  27550. {
  27551. name: "Normal",
  27552. height: math.unit(5 + 5 / 12, "feet")
  27553. },
  27554. {
  27555. name: "Macro",
  27556. height: math.unit(100, "feet"),
  27557. default: true
  27558. },
  27559. {
  27560. name: "Megamacro",
  27561. height: math.unit(100, "miles")
  27562. },
  27563. {
  27564. name: "Gigamacro",
  27565. height: math.unit(80000, "miles")
  27566. },
  27567. ]
  27568. ))
  27569. characterMakers.push(() => makeCharacter(
  27570. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27571. {
  27572. side: {
  27573. height: math.unit(9, "feet"),
  27574. weight: math.unit(400, "kg"),
  27575. name: "Side",
  27576. image: {
  27577. source: "./media/characters/bolt/side.svg",
  27578. extra: 1126 / 896,
  27579. bottom: 60 / 1187.3,
  27580. }
  27581. },
  27582. },
  27583. [
  27584. {
  27585. name: "Micro",
  27586. height: math.unit(5, "inches")
  27587. },
  27588. {
  27589. name: "Normal",
  27590. height: math.unit(9, "feet"),
  27591. default: true
  27592. },
  27593. {
  27594. name: "Macro",
  27595. height: math.unit(700, "feet")
  27596. },
  27597. {
  27598. name: "Max Size",
  27599. height: math.unit(1.52e22, "yottameters")
  27600. },
  27601. ]
  27602. ))
  27603. characterMakers.push(() => makeCharacter(
  27604. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27605. {
  27606. front: {
  27607. height: math.unit(4.3, "meters"),
  27608. weight: math.unit(3, "tons"),
  27609. name: "Front",
  27610. image: {
  27611. source: "./media/characters/draekon-sylviar/front.svg",
  27612. extra: 2072/1512,
  27613. bottom: 74/2146
  27614. }
  27615. },
  27616. back: {
  27617. height: math.unit(4.3, "meters"),
  27618. weight: math.unit(3, "tons"),
  27619. name: "Back",
  27620. image: {
  27621. source: "./media/characters/draekon-sylviar/back.svg",
  27622. extra: 1639/1483,
  27623. bottom: 41/1680
  27624. }
  27625. },
  27626. feral: {
  27627. height: math.unit(1.15, "meters"),
  27628. weight: math.unit(3, "tons"),
  27629. name: "Feral",
  27630. image: {
  27631. source: "./media/characters/draekon-sylviar/feral.svg",
  27632. extra: 1033/395,
  27633. bottom: 130/1163
  27634. }
  27635. },
  27636. maw: {
  27637. height: math.unit(1.3, "meters"),
  27638. name: "Maw",
  27639. image: {
  27640. source: "./media/characters/draekon-sylviar/maw.svg"
  27641. }
  27642. },
  27643. mawSeparated: {
  27644. height: math.unit(1.53, "meters"),
  27645. name: "Separated Maw",
  27646. image: {
  27647. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27648. }
  27649. },
  27650. tail: {
  27651. height: math.unit(1.15, "meters"),
  27652. name: "Tail",
  27653. image: {
  27654. source: "./media/characters/draekon-sylviar/tail.svg"
  27655. }
  27656. },
  27657. tailDick: {
  27658. height: math.unit(1.15, "meters"),
  27659. name: "Tail (Dick)",
  27660. image: {
  27661. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27662. }
  27663. },
  27664. tailDickSeparated: {
  27665. height: math.unit(1.19, "meters"),
  27666. name: "Tail (Separated Dick)",
  27667. image: {
  27668. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27669. }
  27670. },
  27671. slit: {
  27672. height: math.unit(1, "meters"),
  27673. name: "Slit",
  27674. image: {
  27675. source: "./media/characters/draekon-sylviar/slit.svg"
  27676. }
  27677. },
  27678. dick: {
  27679. height: math.unit(1.15, "meters"),
  27680. name: "Dick",
  27681. image: {
  27682. source: "./media/characters/draekon-sylviar/dick.svg"
  27683. }
  27684. },
  27685. dickSeparated: {
  27686. height: math.unit(1.1, "meters"),
  27687. name: "Separated Dick",
  27688. image: {
  27689. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27690. }
  27691. },
  27692. sheath: {
  27693. height: math.unit(1.15, "meters"),
  27694. name: "Sheath",
  27695. image: {
  27696. source: "./media/characters/draekon-sylviar/sheath.svg"
  27697. }
  27698. },
  27699. },
  27700. [
  27701. {
  27702. name: "Small",
  27703. height: math.unit(4.53 / 2, "meters"),
  27704. default: true
  27705. },
  27706. {
  27707. name: "Normal",
  27708. height: math.unit(4.53, "meters"),
  27709. default: true
  27710. },
  27711. {
  27712. name: "Large",
  27713. height: math.unit(4.53 * 2, "meters"),
  27714. },
  27715. ]
  27716. ))
  27717. characterMakers.push(() => makeCharacter(
  27718. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27719. {
  27720. front: {
  27721. height: math.unit(6 + 2 / 12, "feet"),
  27722. weight: math.unit(180, "lb"),
  27723. name: "Front",
  27724. image: {
  27725. source: "./media/characters/brawler/front.svg",
  27726. extra: 3301 / 3027,
  27727. bottom: 138 / 3439
  27728. }
  27729. },
  27730. },
  27731. [
  27732. {
  27733. name: "Normal",
  27734. height: math.unit(6 + 2 / 12, "feet"),
  27735. default: true
  27736. },
  27737. ]
  27738. ))
  27739. characterMakers.push(() => makeCharacter(
  27740. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27741. {
  27742. front: {
  27743. height: math.unit(11, "feet"),
  27744. weight: math.unit(1000, "lb"),
  27745. name: "Front",
  27746. image: {
  27747. source: "./media/characters/alex/front.svg",
  27748. bottom: 44.5 / 620
  27749. }
  27750. },
  27751. },
  27752. [
  27753. {
  27754. name: "Micro",
  27755. height: math.unit(5, "inches")
  27756. },
  27757. {
  27758. name: "Normal",
  27759. height: math.unit(11, "feet"),
  27760. default: true
  27761. },
  27762. {
  27763. name: "Macro",
  27764. height: math.unit(9.5e9, "feet")
  27765. },
  27766. {
  27767. name: "Max Size",
  27768. height: math.unit(1.4e283, "yottameters")
  27769. },
  27770. ]
  27771. ))
  27772. characterMakers.push(() => makeCharacter(
  27773. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27774. {
  27775. female: {
  27776. height: math.unit(29.9, "m"),
  27777. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27778. name: "Female",
  27779. image: {
  27780. source: "./media/characters/zenari/female.svg",
  27781. extra: 3281.6 / 3217,
  27782. bottom: 72.2 / 3353
  27783. }
  27784. },
  27785. male: {
  27786. height: math.unit(27.7, "m"),
  27787. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27788. name: "Male",
  27789. image: {
  27790. source: "./media/characters/zenari/male.svg",
  27791. extra: 3008 / 2991,
  27792. bottom: 54.6 / 3069
  27793. }
  27794. },
  27795. },
  27796. [
  27797. {
  27798. name: "Macro",
  27799. height: math.unit(29.7, "meters"),
  27800. default: true
  27801. },
  27802. ]
  27803. ))
  27804. characterMakers.push(() => makeCharacter(
  27805. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27806. {
  27807. female: {
  27808. height: math.unit(23.8, "m"),
  27809. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27810. name: "Female",
  27811. image: {
  27812. source: "./media/characters/mactarian/female.svg",
  27813. extra: 2662 / 2569,
  27814. bottom: 73 / 2736
  27815. }
  27816. },
  27817. male: {
  27818. height: math.unit(23.8, "m"),
  27819. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27820. name: "Male",
  27821. image: {
  27822. source: "./media/characters/mactarian/male.svg",
  27823. extra: 2673 / 2600,
  27824. bottom: 76 / 2750
  27825. }
  27826. },
  27827. },
  27828. [
  27829. {
  27830. name: "Macro",
  27831. height: math.unit(23.8, "meters"),
  27832. default: true
  27833. },
  27834. ]
  27835. ))
  27836. characterMakers.push(() => makeCharacter(
  27837. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27838. {
  27839. female: {
  27840. height: math.unit(19.3, "m"),
  27841. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27842. name: "Female",
  27843. image: {
  27844. source: "./media/characters/umok/female.svg",
  27845. extra: 2186 / 2078,
  27846. bottom: 87 / 2277
  27847. }
  27848. },
  27849. male: {
  27850. height: math.unit(19.5, "m"),
  27851. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27852. name: "Male",
  27853. image: {
  27854. source: "./media/characters/umok/male.svg",
  27855. extra: 2233 / 2140,
  27856. bottom: 24.4 / 2258
  27857. }
  27858. },
  27859. },
  27860. [
  27861. {
  27862. name: "Macro",
  27863. height: math.unit(19.3, "meters"),
  27864. default: true
  27865. },
  27866. ]
  27867. ))
  27868. characterMakers.push(() => makeCharacter(
  27869. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27870. {
  27871. female: {
  27872. height: math.unit(26.15, "m"),
  27873. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27874. name: "Female",
  27875. image: {
  27876. source: "./media/characters/joraxian/female.svg",
  27877. extra: 2912 / 2824,
  27878. bottom: 36 / 2956
  27879. }
  27880. },
  27881. male: {
  27882. height: math.unit(25.4, "m"),
  27883. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27884. name: "Male",
  27885. image: {
  27886. source: "./media/characters/joraxian/male.svg",
  27887. extra: 2877 / 2721,
  27888. bottom: 82 / 2967
  27889. }
  27890. },
  27891. },
  27892. [
  27893. {
  27894. name: "Macro",
  27895. height: math.unit(26.15, "meters"),
  27896. default: true
  27897. },
  27898. ]
  27899. ))
  27900. characterMakers.push(() => makeCharacter(
  27901. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27902. {
  27903. female: {
  27904. height: math.unit(21.6, "m"),
  27905. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27906. name: "Female",
  27907. image: {
  27908. source: "./media/characters/sthara/female.svg",
  27909. extra: 2516 / 2347,
  27910. bottom: 21.5 / 2537
  27911. }
  27912. },
  27913. male: {
  27914. height: math.unit(24, "m"),
  27915. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27916. name: "Male",
  27917. image: {
  27918. source: "./media/characters/sthara/male.svg",
  27919. extra: 2732 / 2607,
  27920. bottom: 23 / 2732
  27921. }
  27922. },
  27923. },
  27924. [
  27925. {
  27926. name: "Macro",
  27927. height: math.unit(21.6, "meters"),
  27928. default: true
  27929. },
  27930. ]
  27931. ))
  27932. characterMakers.push(() => makeCharacter(
  27933. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27934. {
  27935. front: {
  27936. height: math.unit(6 + 4 / 12, "feet"),
  27937. weight: math.unit(175, "lb"),
  27938. name: "Front",
  27939. image: {
  27940. source: "./media/characters/luka-bryzant/front.svg",
  27941. extra: 311 / 289,
  27942. bottom: 4 / 315
  27943. }
  27944. },
  27945. back: {
  27946. height: math.unit(6 + 4 / 12, "feet"),
  27947. weight: math.unit(175, "lb"),
  27948. name: "Back",
  27949. image: {
  27950. source: "./media/characters/luka-bryzant/back.svg",
  27951. extra: 311 / 289,
  27952. bottom: 3.8 / 313.7
  27953. }
  27954. },
  27955. },
  27956. [
  27957. {
  27958. name: "Micro",
  27959. height: math.unit(10, "inches")
  27960. },
  27961. {
  27962. name: "Normal",
  27963. height: math.unit(6 + 4 / 12, "feet"),
  27964. default: true
  27965. },
  27966. {
  27967. name: "Large",
  27968. height: math.unit(12, "feet")
  27969. },
  27970. ]
  27971. ))
  27972. characterMakers.push(() => makeCharacter(
  27973. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27974. {
  27975. front: {
  27976. height: math.unit(5 + 7 / 12, "feet"),
  27977. weight: math.unit(185, "lb"),
  27978. name: "Front",
  27979. image: {
  27980. source: "./media/characters/aman-aquila/front.svg",
  27981. extra: 1013 / 976,
  27982. bottom: 45.6 / 1057
  27983. }
  27984. },
  27985. side: {
  27986. height: math.unit(5 + 7 / 12, "feet"),
  27987. weight: math.unit(185, "lb"),
  27988. name: "Side",
  27989. image: {
  27990. source: "./media/characters/aman-aquila/side.svg",
  27991. extra: 1054 / 1011,
  27992. bottom: 15 / 1070
  27993. }
  27994. },
  27995. back: {
  27996. height: math.unit(5 + 7 / 12, "feet"),
  27997. weight: math.unit(185, "lb"),
  27998. name: "Back",
  27999. image: {
  28000. source: "./media/characters/aman-aquila/back.svg",
  28001. extra: 1026 / 970,
  28002. bottom: 12 / 1039
  28003. }
  28004. },
  28005. head: {
  28006. height: math.unit(1.211, "feet"),
  28007. name: "Head",
  28008. image: {
  28009. source: "./media/characters/aman-aquila/head.svg",
  28010. }
  28011. },
  28012. },
  28013. [
  28014. {
  28015. name: "Minimicro",
  28016. height: math.unit(0.057, "inches")
  28017. },
  28018. {
  28019. name: "Micro",
  28020. height: math.unit(7, "inches")
  28021. },
  28022. {
  28023. name: "Mini",
  28024. height: math.unit(3 + 7 / 12, "feet")
  28025. },
  28026. {
  28027. name: "Normal",
  28028. height: math.unit(5 + 7 / 12, "feet"),
  28029. default: true
  28030. },
  28031. {
  28032. name: "Macro",
  28033. height: math.unit(157 + 7 / 12, "feet")
  28034. },
  28035. {
  28036. name: "Megamacro",
  28037. height: math.unit(1557 + 7 / 12, "feet")
  28038. },
  28039. {
  28040. name: "Gigamacro",
  28041. height: math.unit(15557 + 7 / 12, "feet")
  28042. },
  28043. ]
  28044. ))
  28045. characterMakers.push(() => makeCharacter(
  28046. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  28047. {
  28048. front: {
  28049. height: math.unit(3 + 2 / 12, "inches"),
  28050. weight: math.unit(0.3, "ounces"),
  28051. name: "Front",
  28052. image: {
  28053. source: "./media/characters/hiphae/front.svg",
  28054. extra: 1931 / 1683,
  28055. bottom: 24 / 1955
  28056. }
  28057. },
  28058. },
  28059. [
  28060. {
  28061. name: "Normal",
  28062. height: math.unit(3 + 1 / 2, "inches"),
  28063. default: true
  28064. },
  28065. ]
  28066. ))
  28067. characterMakers.push(() => makeCharacter(
  28068. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  28069. {
  28070. front: {
  28071. height: math.unit(5 + 10 / 12, "feet"),
  28072. weight: math.unit(165, "lb"),
  28073. name: "Front",
  28074. image: {
  28075. source: "./media/characters/nicky/front.svg",
  28076. extra: 3144 / 2886,
  28077. bottom: 45.6 / 3192
  28078. }
  28079. },
  28080. back: {
  28081. height: math.unit(5 + 10 / 12, "feet"),
  28082. weight: math.unit(165, "lb"),
  28083. name: "Back",
  28084. image: {
  28085. source: "./media/characters/nicky/back.svg",
  28086. extra: 3055 / 2804,
  28087. bottom: 28.4 / 3087
  28088. }
  28089. },
  28090. frontclothed: {
  28091. height: math.unit(5 + 10 / 12, "feet"),
  28092. weight: math.unit(165, "lb"),
  28093. name: "Front (Clothed)",
  28094. image: {
  28095. source: "./media/characters/nicky/front-clothed.svg",
  28096. extra: 3184.9 / 2926.9,
  28097. bottom: 86.5 / 3239.9
  28098. }
  28099. },
  28100. foot: {
  28101. height: math.unit(1.16, "feet"),
  28102. name: "Foot",
  28103. image: {
  28104. source: "./media/characters/nicky/foot.svg"
  28105. }
  28106. },
  28107. feet: {
  28108. height: math.unit(1.34, "feet"),
  28109. name: "Feet",
  28110. image: {
  28111. source: "./media/characters/nicky/feet.svg"
  28112. }
  28113. },
  28114. maw: {
  28115. height: math.unit(0.9, "feet"),
  28116. name: "Maw",
  28117. image: {
  28118. source: "./media/characters/nicky/maw.svg"
  28119. }
  28120. },
  28121. },
  28122. [
  28123. {
  28124. name: "Normal",
  28125. height: math.unit(5 + 10 / 12, "feet"),
  28126. default: true
  28127. },
  28128. {
  28129. name: "Macro",
  28130. height: math.unit(60, "feet")
  28131. },
  28132. {
  28133. name: "Megamacro",
  28134. height: math.unit(1, "mile")
  28135. },
  28136. ]
  28137. ))
  28138. characterMakers.push(() => makeCharacter(
  28139. { name: "Blair", species: ["seal"], tags: ["taur"] },
  28140. {
  28141. side: {
  28142. height: math.unit(10, "feet"),
  28143. weight: math.unit(600, "lb"),
  28144. name: "Side",
  28145. image: {
  28146. source: "./media/characters/blair/side.svg",
  28147. bottom: 16.6 / 475,
  28148. extra: 458 / 431
  28149. }
  28150. },
  28151. },
  28152. [
  28153. {
  28154. name: "Micro",
  28155. height: math.unit(8, "inches")
  28156. },
  28157. {
  28158. name: "Normal",
  28159. height: math.unit(10, "feet"),
  28160. default: true
  28161. },
  28162. {
  28163. name: "Macro",
  28164. height: math.unit(180, "feet")
  28165. },
  28166. ]
  28167. ))
  28168. characterMakers.push(() => makeCharacter(
  28169. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  28170. {
  28171. front: {
  28172. height: math.unit(5 + 4 / 12, "feet"),
  28173. weight: math.unit(125, "lb"),
  28174. name: "Front",
  28175. image: {
  28176. source: "./media/characters/fisher/front.svg",
  28177. extra: 444 / 390,
  28178. bottom: 2 / 444.8
  28179. }
  28180. },
  28181. },
  28182. [
  28183. {
  28184. name: "Micro",
  28185. height: math.unit(4, "inches")
  28186. },
  28187. {
  28188. name: "Normal",
  28189. height: math.unit(5 + 4 / 12, "feet"),
  28190. default: true
  28191. },
  28192. {
  28193. name: "Macro",
  28194. height: math.unit(100, "feet")
  28195. },
  28196. ]
  28197. ))
  28198. characterMakers.push(() => makeCharacter(
  28199. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  28200. {
  28201. front: {
  28202. height: math.unit(6.71, "feet"),
  28203. weight: math.unit(200, "lb"),
  28204. preyCapacity: math.unit(1000000, "people"),
  28205. name: "Front",
  28206. image: {
  28207. source: "./media/characters/gliss/front.svg",
  28208. extra: 2347 / 2231,
  28209. bottom: 113 / 2462
  28210. }
  28211. },
  28212. hammerspaceSize: {
  28213. height: math.unit(6.71 * 717, "feet"),
  28214. weight: math.unit(200, "lb"),
  28215. preyCapacity: math.unit(1000000, "people"),
  28216. name: "Hammerspace Size",
  28217. image: {
  28218. source: "./media/characters/gliss/front.svg",
  28219. extra: 2347 / 2231,
  28220. bottom: 113 / 2462
  28221. }
  28222. },
  28223. },
  28224. [
  28225. {
  28226. name: "Normal",
  28227. height: math.unit(6.71, "feet"),
  28228. default: true
  28229. },
  28230. ]
  28231. ))
  28232. characterMakers.push(() => makeCharacter(
  28233. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  28234. {
  28235. side: {
  28236. height: math.unit(1.44, "m"),
  28237. weight: math.unit(80, "kg"),
  28238. name: "Side",
  28239. image: {
  28240. source: "./media/characters/dune-anderson/side.svg",
  28241. bottom: 49 / 1426
  28242. }
  28243. },
  28244. },
  28245. [
  28246. {
  28247. name: "Wolf-sized",
  28248. height: math.unit(1.44, "meters")
  28249. },
  28250. {
  28251. name: "Normal",
  28252. height: math.unit(5.05, "meters"),
  28253. default: true
  28254. },
  28255. {
  28256. name: "Big",
  28257. height: math.unit(14.4, "meters")
  28258. },
  28259. {
  28260. name: "Huge",
  28261. height: math.unit(144, "meters")
  28262. },
  28263. ]
  28264. ))
  28265. characterMakers.push(() => makeCharacter(
  28266. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  28267. {
  28268. front: {
  28269. height: math.unit(6, "feet"),
  28270. weight: math.unit(220, "lb"),
  28271. name: "Front",
  28272. image: {
  28273. source: "./media/characters/hind/front.svg",
  28274. extra: 1912/1787,
  28275. bottom: 52/1964
  28276. }
  28277. },
  28278. back: {
  28279. height: math.unit(6, "feet"),
  28280. weight: math.unit(220, "lb"),
  28281. name: "Back",
  28282. image: {
  28283. source: "./media/characters/hind/back.svg",
  28284. extra: 1901/1794,
  28285. bottom: 26/1927
  28286. }
  28287. },
  28288. },
  28289. [
  28290. {
  28291. name: "Normal",
  28292. height: math.unit(6, "feet"),
  28293. default: true
  28294. },
  28295. ]
  28296. ))
  28297. characterMakers.push(() => makeCharacter(
  28298. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  28299. {
  28300. front: {
  28301. height: math.unit(2.1, "meters"),
  28302. weight: math.unit(150, "lb"),
  28303. name: "Front",
  28304. image: {
  28305. source: "./media/characters/tharquench-sizestealer/front.svg",
  28306. extra: 1605/1470,
  28307. bottom: 36/1641
  28308. }
  28309. },
  28310. frontAlt: {
  28311. height: math.unit(2.1, "meters"),
  28312. weight: math.unit(150, "lb"),
  28313. name: "Front (Alt)",
  28314. image: {
  28315. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  28316. extra: 2318 / 2063,
  28317. bottom: 93.4 / 2410
  28318. }
  28319. },
  28320. },
  28321. [
  28322. {
  28323. name: "Nano",
  28324. height: math.unit(1, "mm")
  28325. },
  28326. {
  28327. name: "Micro",
  28328. height: math.unit(1, "cm")
  28329. },
  28330. {
  28331. name: "Normal",
  28332. height: math.unit(2.1, "meters"),
  28333. default: true
  28334. },
  28335. ]
  28336. ))
  28337. characterMakers.push(() => makeCharacter(
  28338. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  28339. {
  28340. front: {
  28341. height: math.unit(7 + 5 / 12, "feet"),
  28342. weight: math.unit(357, "lb"),
  28343. name: "Front",
  28344. image: {
  28345. source: "./media/characters/solex-draconov/front.svg",
  28346. extra: 1993 / 1865,
  28347. bottom: 117 / 2111
  28348. }
  28349. },
  28350. },
  28351. [
  28352. {
  28353. name: "Natural Height",
  28354. height: math.unit(7 + 5 / 12, "feet"),
  28355. default: true
  28356. },
  28357. {
  28358. name: "Macro",
  28359. height: math.unit(350, "feet")
  28360. },
  28361. {
  28362. name: "Macro+",
  28363. height: math.unit(1000, "feet")
  28364. },
  28365. {
  28366. name: "Megamacro",
  28367. height: math.unit(20, "km")
  28368. },
  28369. {
  28370. name: "Megamacro+",
  28371. height: math.unit(1000, "km")
  28372. },
  28373. {
  28374. name: "Gigamacro",
  28375. height: math.unit(2.5, "Gm")
  28376. },
  28377. {
  28378. name: "Teramacro",
  28379. height: math.unit(15, "Tm")
  28380. },
  28381. {
  28382. name: "Galactic",
  28383. height: math.unit(30, "Zm")
  28384. },
  28385. {
  28386. name: "Universal",
  28387. height: math.unit(21000, "Ym")
  28388. },
  28389. {
  28390. name: "Omniversal",
  28391. height: math.unit(9.861e50, "Ym")
  28392. },
  28393. {
  28394. name: "Existential",
  28395. height: math.unit(1e300, "meters")
  28396. },
  28397. ]
  28398. ))
  28399. characterMakers.push(() => makeCharacter(
  28400. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28401. {
  28402. side: {
  28403. height: math.unit(25, "feet"),
  28404. weight: math.unit(90000, "lb"),
  28405. name: "Side",
  28406. image: {
  28407. source: "./media/characters/mandarax/side.svg",
  28408. extra: 614 / 332,
  28409. bottom: 55 / 630
  28410. }
  28411. },
  28412. lounging: {
  28413. height: math.unit(15.4, "feet"),
  28414. weight: math.unit(90000, "lb"),
  28415. name: "Lounging",
  28416. image: {
  28417. source: "./media/characters/mandarax/lounging.svg",
  28418. extra: 817/609,
  28419. bottom: 685/1502
  28420. }
  28421. },
  28422. head: {
  28423. height: math.unit(11.4, "feet"),
  28424. name: "Head",
  28425. image: {
  28426. source: "./media/characters/mandarax/head.svg"
  28427. }
  28428. },
  28429. belly: {
  28430. height: math.unit(33, "feet"),
  28431. name: "Belly",
  28432. preyCapacity: math.unit(500, "people"),
  28433. image: {
  28434. source: "./media/characters/mandarax/belly.svg"
  28435. }
  28436. },
  28437. dick: {
  28438. height: math.unit(8.46, "feet"),
  28439. name: "Dick",
  28440. image: {
  28441. source: "./media/characters/mandarax/dick.svg"
  28442. }
  28443. },
  28444. top: {
  28445. height: math.unit(28, "meters"),
  28446. name: "Top",
  28447. image: {
  28448. source: "./media/characters/mandarax/top.svg"
  28449. }
  28450. },
  28451. },
  28452. [
  28453. {
  28454. name: "Normal",
  28455. height: math.unit(25, "feet"),
  28456. default: true
  28457. },
  28458. ]
  28459. ))
  28460. characterMakers.push(() => makeCharacter(
  28461. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28462. {
  28463. front: {
  28464. height: math.unit(5, "feet"),
  28465. weight: math.unit(90, "lb"),
  28466. name: "Front",
  28467. image: {
  28468. source: "./media/characters/pixil/front.svg",
  28469. extra: 2000 / 1618,
  28470. bottom: 12.3 / 2011
  28471. }
  28472. },
  28473. },
  28474. [
  28475. {
  28476. name: "Normal",
  28477. height: math.unit(5, "feet"),
  28478. default: true
  28479. },
  28480. {
  28481. name: "Megamacro",
  28482. height: math.unit(10, "miles"),
  28483. },
  28484. ]
  28485. ))
  28486. characterMakers.push(() => makeCharacter(
  28487. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28488. {
  28489. front: {
  28490. height: math.unit(7 + 2 / 12, "feet"),
  28491. weight: math.unit(200, "lb"),
  28492. name: "Front",
  28493. image: {
  28494. source: "./media/characters/angel/front.svg",
  28495. extra: 1946/1840,
  28496. bottom: 30/1976
  28497. }
  28498. },
  28499. },
  28500. [
  28501. {
  28502. name: "Normal",
  28503. height: math.unit(7 + 2 / 12, "feet"),
  28504. default: true
  28505. },
  28506. {
  28507. name: "Macro",
  28508. height: math.unit(1000, "feet")
  28509. },
  28510. {
  28511. name: "Megamacro",
  28512. height: math.unit(2, "miles")
  28513. },
  28514. {
  28515. name: "Gigamacro",
  28516. height: math.unit(20, "earths")
  28517. },
  28518. ]
  28519. ))
  28520. characterMakers.push(() => makeCharacter(
  28521. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28522. {
  28523. front: {
  28524. height: math.unit(5, "feet"),
  28525. weight: math.unit(180, "lb"),
  28526. name: "Front",
  28527. image: {
  28528. source: "./media/characters/mekana/front.svg",
  28529. extra: 1671 / 1605,
  28530. bottom: 3.5 / 1691
  28531. }
  28532. },
  28533. side: {
  28534. height: math.unit(5, "feet"),
  28535. weight: math.unit(180, "lb"),
  28536. name: "Side",
  28537. image: {
  28538. source: "./media/characters/mekana/side.svg",
  28539. extra: 1671 / 1605,
  28540. bottom: 3.5 / 1691
  28541. }
  28542. },
  28543. back: {
  28544. height: math.unit(5, "feet"),
  28545. weight: math.unit(180, "lb"),
  28546. name: "Back",
  28547. image: {
  28548. source: "./media/characters/mekana/back.svg",
  28549. extra: 1671 / 1605,
  28550. bottom: 3.5 / 1691
  28551. }
  28552. },
  28553. },
  28554. [
  28555. {
  28556. name: "Normal",
  28557. height: math.unit(5, "feet"),
  28558. default: true
  28559. },
  28560. ]
  28561. ))
  28562. characterMakers.push(() => makeCharacter(
  28563. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28564. {
  28565. front: {
  28566. height: math.unit(4 + 6 / 12, "feet"),
  28567. weight: math.unit(80, "lb"),
  28568. name: "Front",
  28569. image: {
  28570. source: "./media/characters/pixie/front.svg",
  28571. extra: 1924 / 1825,
  28572. bottom: 22.4 / 1946
  28573. }
  28574. },
  28575. },
  28576. [
  28577. {
  28578. name: "Normal",
  28579. height: math.unit(4 + 6 / 12, "feet"),
  28580. default: true
  28581. },
  28582. {
  28583. name: "Macro",
  28584. height: math.unit(40, "feet")
  28585. },
  28586. ]
  28587. ))
  28588. characterMakers.push(() => makeCharacter(
  28589. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28590. {
  28591. front: {
  28592. height: math.unit(2.1, "meters"),
  28593. weight: math.unit(200, "lb"),
  28594. name: "Front",
  28595. image: {
  28596. source: "./media/characters/the-lascivious/front.svg",
  28597. extra: 1 / 0.893,
  28598. bottom: 3.5 / 573.7
  28599. }
  28600. },
  28601. },
  28602. [
  28603. {
  28604. name: "Human Scale",
  28605. height: math.unit(2.1, "meters")
  28606. },
  28607. {
  28608. name: "Wolxi Scale",
  28609. height: math.unit(46.2, "m"),
  28610. default: true
  28611. },
  28612. {
  28613. name: "Boinker of Buildings",
  28614. height: math.unit(10, "km")
  28615. },
  28616. {
  28617. name: "Shagger of Skyscrapers",
  28618. height: math.unit(40, "km")
  28619. },
  28620. {
  28621. name: "Banger of Boroughs",
  28622. height: math.unit(4000, "km")
  28623. },
  28624. {
  28625. name: "Screwer of States",
  28626. height: math.unit(100000, "km")
  28627. },
  28628. {
  28629. name: "Pounder of Planets",
  28630. height: math.unit(2000000, "km")
  28631. },
  28632. ]
  28633. ))
  28634. characterMakers.push(() => makeCharacter(
  28635. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28636. {
  28637. front: {
  28638. height: math.unit(6, "feet"),
  28639. weight: math.unit(150, "lb"),
  28640. name: "Front",
  28641. image: {
  28642. source: "./media/characters/aj/front.svg",
  28643. extra: 2039 / 1562,
  28644. bottom: 40 / 2079
  28645. }
  28646. },
  28647. },
  28648. [
  28649. {
  28650. name: "Normal",
  28651. height: math.unit(11 + 6 / 12, "feet"),
  28652. default: true
  28653. },
  28654. {
  28655. name: "Megamacro",
  28656. height: math.unit(60, "megameters")
  28657. },
  28658. ]
  28659. ))
  28660. characterMakers.push(() => makeCharacter(
  28661. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28662. {
  28663. side: {
  28664. height: math.unit(31 + 8 / 12, "feet"),
  28665. weight: math.unit(75000, "kg"),
  28666. name: "Side",
  28667. image: {
  28668. source: "./media/characters/koros/side.svg",
  28669. extra: 1442 / 1297,
  28670. bottom: 122.7 / 1562
  28671. }
  28672. },
  28673. dicksKingsCrown: {
  28674. height: math.unit(6, "feet"),
  28675. name: "Dicks (King's Crown)",
  28676. image: {
  28677. source: "./media/characters/koros/dicks-kings-crown.svg"
  28678. }
  28679. },
  28680. dicksTailSet: {
  28681. height: math.unit(3, "feet"),
  28682. name: "Dicks (Tail Set)",
  28683. image: {
  28684. source: "./media/characters/koros/dicks-tail-set.svg"
  28685. }
  28686. },
  28687. dickCumming: {
  28688. height: math.unit(7.98, "feet"),
  28689. name: "Dick (Cumming)",
  28690. image: {
  28691. source: "./media/characters/koros/dick-cumming.svg"
  28692. }
  28693. },
  28694. dicksBack: {
  28695. height: math.unit(5.9, "feet"),
  28696. name: "Dicks (Back)",
  28697. image: {
  28698. source: "./media/characters/koros/dicks-back.svg"
  28699. }
  28700. },
  28701. dicksFront: {
  28702. height: math.unit(3.72, "feet"),
  28703. name: "Dicks (Front)",
  28704. image: {
  28705. source: "./media/characters/koros/dicks-front.svg"
  28706. }
  28707. },
  28708. dicksPeeking: {
  28709. height: math.unit(3.0, "feet"),
  28710. name: "Dicks (Peeking)",
  28711. image: {
  28712. source: "./media/characters/koros/dicks-peeking.svg"
  28713. }
  28714. },
  28715. eye: {
  28716. height: math.unit(1.7, "feet"),
  28717. name: "Eye",
  28718. image: {
  28719. source: "./media/characters/koros/eye.svg"
  28720. }
  28721. },
  28722. headFront: {
  28723. height: math.unit(11.69, "feet"),
  28724. name: "Head (Front)",
  28725. image: {
  28726. source: "./media/characters/koros/head-front.svg"
  28727. }
  28728. },
  28729. headSide: {
  28730. height: math.unit(14, "feet"),
  28731. name: "Head (Side)",
  28732. image: {
  28733. source: "./media/characters/koros/head-side.svg"
  28734. }
  28735. },
  28736. leg: {
  28737. height: math.unit(17, "feet"),
  28738. name: "Leg",
  28739. image: {
  28740. source: "./media/characters/koros/leg.svg"
  28741. }
  28742. },
  28743. mawSide: {
  28744. height: math.unit(12.8, "feet"),
  28745. name: "Maw (Side)",
  28746. image: {
  28747. source: "./media/characters/koros/maw-side.svg"
  28748. }
  28749. },
  28750. mawSpitting: {
  28751. height: math.unit(17, "feet"),
  28752. name: "Maw (Spitting)",
  28753. image: {
  28754. source: "./media/characters/koros/maw-spitting.svg"
  28755. }
  28756. },
  28757. slit: {
  28758. height: math.unit(2.8, "feet"),
  28759. name: "Slit",
  28760. image: {
  28761. source: "./media/characters/koros/slit.svg"
  28762. }
  28763. },
  28764. stomach: {
  28765. height: math.unit(6.8, "feet"),
  28766. preyCapacity: math.unit(20, "people"),
  28767. name: "Stomach",
  28768. image: {
  28769. source: "./media/characters/koros/stomach.svg"
  28770. }
  28771. },
  28772. wingspanBottom: {
  28773. height: math.unit(114, "feet"),
  28774. name: "Wingspan (Bottom)",
  28775. image: {
  28776. source: "./media/characters/koros/wingspan-bottom.svg"
  28777. }
  28778. },
  28779. wingspanTop: {
  28780. height: math.unit(104, "feet"),
  28781. name: "Wingspan (Top)",
  28782. image: {
  28783. source: "./media/characters/koros/wingspan-top.svg"
  28784. }
  28785. },
  28786. },
  28787. [
  28788. {
  28789. name: "Normal",
  28790. height: math.unit(31 + 8 / 12, "feet"),
  28791. default: true
  28792. },
  28793. ]
  28794. ))
  28795. characterMakers.push(() => makeCharacter(
  28796. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28797. {
  28798. front: {
  28799. height: math.unit(18 + 5 / 12, "feet"),
  28800. weight: math.unit(3750, "kg"),
  28801. name: "Front",
  28802. image: {
  28803. source: "./media/characters/vexx/front.svg",
  28804. extra: 426 / 396,
  28805. bottom: 31.5 / 458
  28806. }
  28807. },
  28808. maw: {
  28809. height: math.unit(6, "feet"),
  28810. name: "Maw",
  28811. image: {
  28812. source: "./media/characters/vexx/maw.svg"
  28813. }
  28814. },
  28815. },
  28816. [
  28817. {
  28818. name: "Normal",
  28819. height: math.unit(18 + 5 / 12, "feet"),
  28820. default: true
  28821. },
  28822. ]
  28823. ))
  28824. characterMakers.push(() => makeCharacter(
  28825. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28826. {
  28827. front: {
  28828. height: math.unit(17 + 6 / 12, "feet"),
  28829. weight: math.unit(150, "lb"),
  28830. name: "Front",
  28831. image: {
  28832. source: "./media/characters/baadra/front.svg",
  28833. extra: 1694/1553,
  28834. bottom: 179/1873
  28835. }
  28836. },
  28837. frontAlt: {
  28838. height: math.unit(17 + 6 / 12, "feet"),
  28839. weight: math.unit(150, "lb"),
  28840. name: "Front (Alt)",
  28841. image: {
  28842. source: "./media/characters/baadra/front-alt.svg",
  28843. extra: 3137 / 2890,
  28844. bottom: 168.4 / 3305
  28845. }
  28846. },
  28847. back: {
  28848. height: math.unit(17 + 6 / 12, "feet"),
  28849. weight: math.unit(150, "lb"),
  28850. name: "Back",
  28851. image: {
  28852. source: "./media/characters/baadra/back.svg",
  28853. extra: 3142 / 2890,
  28854. bottom: 220 / 3371
  28855. }
  28856. },
  28857. head: {
  28858. height: math.unit(5.45, "feet"),
  28859. name: "Head",
  28860. image: {
  28861. source: "./media/characters/baadra/head.svg"
  28862. }
  28863. },
  28864. headAngry: {
  28865. height: math.unit(4.95, "feet"),
  28866. name: "Head (Angry)",
  28867. image: {
  28868. source: "./media/characters/baadra/head-angry.svg"
  28869. }
  28870. },
  28871. headOpen: {
  28872. height: math.unit(6, "feet"),
  28873. name: "Head (Open)",
  28874. image: {
  28875. source: "./media/characters/baadra/head-open.svg"
  28876. }
  28877. },
  28878. },
  28879. [
  28880. {
  28881. name: "Normal",
  28882. height: math.unit(17 + 6 / 12, "feet"),
  28883. default: true
  28884. },
  28885. ]
  28886. ))
  28887. characterMakers.push(() => makeCharacter(
  28888. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28889. {
  28890. front: {
  28891. height: math.unit(7 + 3 / 12, "feet"),
  28892. weight: math.unit(180, "lb"),
  28893. name: "Front",
  28894. image: {
  28895. source: "./media/characters/juri/front.svg",
  28896. extra: 1401 / 1237,
  28897. bottom: 18.5 / 1418
  28898. }
  28899. },
  28900. side: {
  28901. height: math.unit(7 + 3 / 12, "feet"),
  28902. weight: math.unit(180, "lb"),
  28903. name: "Side",
  28904. image: {
  28905. source: "./media/characters/juri/side.svg",
  28906. extra: 1424 / 1242,
  28907. bottom: 18.5 / 1447
  28908. }
  28909. },
  28910. sitting: {
  28911. height: math.unit(6, "feet"),
  28912. weight: math.unit(180, "lb"),
  28913. name: "Sitting",
  28914. image: {
  28915. source: "./media/characters/juri/sitting.svg",
  28916. extra: 1270 / 1143,
  28917. bottom: 100 / 1343
  28918. }
  28919. },
  28920. back: {
  28921. height: math.unit(7 + 3 / 12, "feet"),
  28922. weight: math.unit(180, "lb"),
  28923. name: "Back",
  28924. image: {
  28925. source: "./media/characters/juri/back.svg",
  28926. extra: 1377 / 1240,
  28927. bottom: 23.7 / 1405
  28928. }
  28929. },
  28930. maw: {
  28931. height: math.unit(2.8, "feet"),
  28932. name: "Maw",
  28933. image: {
  28934. source: "./media/characters/juri/maw.svg"
  28935. }
  28936. },
  28937. stomach: {
  28938. height: math.unit(0.89, "feet"),
  28939. preyCapacity: math.unit(4, "liters"),
  28940. name: "Stomach",
  28941. image: {
  28942. source: "./media/characters/juri/stomach.svg"
  28943. }
  28944. },
  28945. },
  28946. [
  28947. {
  28948. name: "Normal",
  28949. height: math.unit(7 + 3 / 12, "feet"),
  28950. default: true
  28951. },
  28952. ]
  28953. ))
  28954. characterMakers.push(() => makeCharacter(
  28955. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28956. {
  28957. fox: {
  28958. height: math.unit(5 + 6 / 12, "feet"),
  28959. weight: math.unit(140, "lb"),
  28960. name: "Fox",
  28961. image: {
  28962. source: "./media/characters/maxene-sita/fox.svg",
  28963. extra: 146 / 138,
  28964. bottom: 2.1 / 148.19
  28965. }
  28966. },
  28967. foxLaying: {
  28968. height: math.unit(1.70, "feet"),
  28969. weight: math.unit(140, "lb"),
  28970. name: "Fox (Laying)",
  28971. image: {
  28972. source: "./media/characters/maxene-sita/fox-laying.svg",
  28973. extra: 910 / 572,
  28974. bottom: 71 / 981
  28975. }
  28976. },
  28977. kitsune: {
  28978. height: math.unit(10, "feet"),
  28979. weight: math.unit(800, "lb"),
  28980. name: "Kitsune",
  28981. image: {
  28982. source: "./media/characters/maxene-sita/kitsune.svg",
  28983. extra: 185 / 176,
  28984. bottom: 4.7 / 189.9
  28985. }
  28986. },
  28987. hellhound: {
  28988. height: math.unit(10, "feet"),
  28989. weight: math.unit(700, "lb"),
  28990. name: "Hellhound",
  28991. image: {
  28992. source: "./media/characters/maxene-sita/hellhound.svg",
  28993. extra: 1600 / 1545,
  28994. bottom: 81 / 1681
  28995. }
  28996. },
  28997. },
  28998. [
  28999. {
  29000. name: "Normal",
  29001. height: math.unit(5 + 6 / 12, "feet"),
  29002. default: true
  29003. },
  29004. ]
  29005. ))
  29006. characterMakers.push(() => makeCharacter(
  29007. { name: "Maia", species: ["mew"], tags: ["feral"] },
  29008. {
  29009. front: {
  29010. height: math.unit(3 + 4 / 12, "feet"),
  29011. weight: math.unit(70, "lb"),
  29012. name: "Front",
  29013. image: {
  29014. source: "./media/characters/maia/front.svg",
  29015. extra: 227 / 219.5,
  29016. bottom: 40 / 267
  29017. }
  29018. },
  29019. back: {
  29020. height: math.unit(3 + 4 / 12, "feet"),
  29021. weight: math.unit(70, "lb"),
  29022. name: "Back",
  29023. image: {
  29024. source: "./media/characters/maia/back.svg",
  29025. extra: 237 / 225
  29026. }
  29027. },
  29028. },
  29029. [
  29030. {
  29031. name: "Normal",
  29032. height: math.unit(3 + 4 / 12, "feet"),
  29033. default: true
  29034. },
  29035. ]
  29036. ))
  29037. characterMakers.push(() => makeCharacter(
  29038. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  29039. {
  29040. front: {
  29041. height: math.unit(5 + 10 / 12, "feet"),
  29042. weight: math.unit(197, "lb"),
  29043. name: "Front",
  29044. image: {
  29045. source: "./media/characters/jabaro/front.svg",
  29046. extra: 225 / 216,
  29047. bottom: 5.06 / 230
  29048. }
  29049. },
  29050. back: {
  29051. height: math.unit(5 + 10 / 12, "feet"),
  29052. weight: math.unit(197, "lb"),
  29053. name: "Back",
  29054. image: {
  29055. source: "./media/characters/jabaro/back.svg",
  29056. extra: 225 / 219,
  29057. bottom: 1.9 / 227
  29058. }
  29059. },
  29060. },
  29061. [
  29062. {
  29063. name: "Normal",
  29064. height: math.unit(5 + 10 / 12, "feet"),
  29065. default: true
  29066. },
  29067. ]
  29068. ))
  29069. characterMakers.push(() => makeCharacter(
  29070. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  29071. {
  29072. front: {
  29073. height: math.unit(5 + 8 / 12, "feet"),
  29074. weight: math.unit(139, "lb"),
  29075. name: "Front",
  29076. image: {
  29077. source: "./media/characters/risa/front.svg",
  29078. extra: 270 / 260,
  29079. bottom: 11.2 / 282
  29080. }
  29081. },
  29082. back: {
  29083. height: math.unit(5 + 8 / 12, "feet"),
  29084. weight: math.unit(139, "lb"),
  29085. name: "Back",
  29086. image: {
  29087. source: "./media/characters/risa/back.svg",
  29088. extra: 264 / 255,
  29089. bottom: 4 / 268
  29090. }
  29091. },
  29092. },
  29093. [
  29094. {
  29095. name: "Normal",
  29096. height: math.unit(5 + 8 / 12, "feet"),
  29097. default: true
  29098. },
  29099. ]
  29100. ))
  29101. characterMakers.push(() => makeCharacter(
  29102. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  29103. {
  29104. front: {
  29105. height: math.unit(2 + 11 / 12, "feet"),
  29106. weight: math.unit(30, "lb"),
  29107. name: "Front",
  29108. image: {
  29109. source: "./media/characters/weatley/front.svg",
  29110. bottom: 10.7 / 414,
  29111. extra: 403.5 / 362
  29112. }
  29113. },
  29114. back: {
  29115. height: math.unit(2 + 11 / 12, "feet"),
  29116. weight: math.unit(30, "lb"),
  29117. name: "Back",
  29118. image: {
  29119. source: "./media/characters/weatley/back.svg",
  29120. bottom: 10.7 / 414,
  29121. extra: 403.5 / 362
  29122. }
  29123. },
  29124. },
  29125. [
  29126. {
  29127. name: "Normal",
  29128. height: math.unit(2 + 11 / 12, "feet"),
  29129. default: true
  29130. },
  29131. ]
  29132. ))
  29133. characterMakers.push(() => makeCharacter(
  29134. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  29135. {
  29136. front: {
  29137. height: math.unit(5 + 2 / 12, "feet"),
  29138. weight: math.unit(50, "kg"),
  29139. name: "Front",
  29140. image: {
  29141. source: "./media/characters/mercury-crescent/front.svg",
  29142. extra: 1088 / 1033,
  29143. bottom: 18.9 / 1109
  29144. }
  29145. },
  29146. },
  29147. [
  29148. {
  29149. name: "Normal",
  29150. height: math.unit(5 + 2 / 12, "feet"),
  29151. default: true
  29152. },
  29153. ]
  29154. ))
  29155. characterMakers.push(() => makeCharacter(
  29156. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  29157. {
  29158. front: {
  29159. height: math.unit(2, "feet"),
  29160. weight: math.unit(15, "kg"),
  29161. name: "Front",
  29162. image: {
  29163. source: "./media/characters/diamond-jones/front.svg",
  29164. extra: 727/723,
  29165. bottom: 46/773
  29166. }
  29167. },
  29168. },
  29169. [
  29170. {
  29171. name: "Normal",
  29172. height: math.unit(2, "feet"),
  29173. default: true
  29174. },
  29175. ]
  29176. ))
  29177. characterMakers.push(() => makeCharacter(
  29178. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  29179. {
  29180. front: {
  29181. height: math.unit(3, "feet"),
  29182. weight: math.unit(30, "kg"),
  29183. name: "Front",
  29184. image: {
  29185. source: "./media/characters/sweet-bit/front.svg",
  29186. extra: 675 / 567,
  29187. bottom: 27.7 / 703
  29188. }
  29189. },
  29190. },
  29191. [
  29192. {
  29193. name: "Normal",
  29194. height: math.unit(3, "feet"),
  29195. default: true
  29196. },
  29197. ]
  29198. ))
  29199. characterMakers.push(() => makeCharacter(
  29200. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  29201. {
  29202. side: {
  29203. height: math.unit(9.178, "feet"),
  29204. weight: math.unit(500, "lb"),
  29205. name: "Side",
  29206. image: {
  29207. source: "./media/characters/umbrazen/side.svg",
  29208. extra: 1730 / 1473,
  29209. bottom: 34.6 / 1765
  29210. }
  29211. },
  29212. },
  29213. [
  29214. {
  29215. name: "Normal",
  29216. height: math.unit(9.178, "feet"),
  29217. default: true
  29218. },
  29219. ]
  29220. ))
  29221. characterMakers.push(() => makeCharacter(
  29222. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  29223. {
  29224. front: {
  29225. height: math.unit(10, "feet"),
  29226. weight: math.unit(750, "lb"),
  29227. name: "Front",
  29228. image: {
  29229. source: "./media/characters/arlist/front.svg",
  29230. extra: 961 / 778,
  29231. bottom: 6.2 / 986
  29232. }
  29233. },
  29234. },
  29235. [
  29236. {
  29237. name: "Normal",
  29238. height: math.unit(10, "feet"),
  29239. default: true
  29240. },
  29241. ]
  29242. ))
  29243. characterMakers.push(() => makeCharacter(
  29244. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  29245. {
  29246. front: {
  29247. height: math.unit(5 + 1 / 12, "feet"),
  29248. weight: math.unit(110, "lb"),
  29249. name: "Front",
  29250. image: {
  29251. source: "./media/characters/aradel/front.svg",
  29252. extra: 324 / 303,
  29253. bottom: 3.6 / 329.4
  29254. }
  29255. },
  29256. },
  29257. [
  29258. {
  29259. name: "Normal",
  29260. height: math.unit(5 + 1 / 12, "feet"),
  29261. default: true
  29262. },
  29263. ]
  29264. ))
  29265. characterMakers.push(() => makeCharacter(
  29266. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  29267. {
  29268. dressed: {
  29269. height: math.unit(3 + 8 / 12, "feet"),
  29270. weight: math.unit(50, "lb"),
  29271. name: "Dressed",
  29272. image: {
  29273. source: "./media/characters/serryn/dressed.svg",
  29274. extra: 1792 / 1656,
  29275. bottom: 43.5 / 1840
  29276. }
  29277. },
  29278. nude: {
  29279. height: math.unit(3 + 8 / 12, "feet"),
  29280. weight: math.unit(50, "lb"),
  29281. name: "Nude",
  29282. image: {
  29283. source: "./media/characters/serryn/nude.svg",
  29284. extra: 1792 / 1656,
  29285. bottom: 43.5 / 1840
  29286. }
  29287. },
  29288. },
  29289. [
  29290. {
  29291. name: "Normal",
  29292. height: math.unit(3 + 8 / 12, "feet"),
  29293. default: true
  29294. },
  29295. ]
  29296. ))
  29297. characterMakers.push(() => makeCharacter(
  29298. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  29299. {
  29300. front: {
  29301. height: math.unit(7 + 10 / 12, "feet"),
  29302. weight: math.unit(255, "lb"),
  29303. name: "Front",
  29304. image: {
  29305. source: "./media/characters/xavier-thyme/front.svg",
  29306. extra: 3733 / 3642,
  29307. bottom: 131 / 3869
  29308. }
  29309. },
  29310. frontRaven: {
  29311. height: math.unit(7 + 10 / 12, "feet"),
  29312. weight: math.unit(255, "lb"),
  29313. name: "Front (Raven)",
  29314. image: {
  29315. source: "./media/characters/xavier-thyme/front-raven.svg",
  29316. extra: 4385 / 3642,
  29317. bottom: 131 / 4517
  29318. }
  29319. },
  29320. },
  29321. [
  29322. {
  29323. name: "Normal",
  29324. height: math.unit(7 + 10 / 12, "feet"),
  29325. default: true
  29326. },
  29327. ]
  29328. ))
  29329. characterMakers.push(() => makeCharacter(
  29330. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  29331. {
  29332. front: {
  29333. height: math.unit(1.6, "m"),
  29334. weight: math.unit(50, "kg"),
  29335. name: "Front",
  29336. image: {
  29337. source: "./media/characters/kiki/front.svg",
  29338. extra: 4682 / 3610,
  29339. bottom: 115 / 4777
  29340. }
  29341. },
  29342. },
  29343. [
  29344. {
  29345. name: "Normal",
  29346. height: math.unit(1.6, "meters"),
  29347. default: true
  29348. },
  29349. ]
  29350. ))
  29351. characterMakers.push(() => makeCharacter(
  29352. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  29353. {
  29354. front: {
  29355. height: math.unit(50, "m"),
  29356. weight: math.unit(500, "tonnes"),
  29357. name: "Front",
  29358. image: {
  29359. source: "./media/characters/ryoko/front.svg",
  29360. extra: 4632 / 3926,
  29361. bottom: 193 / 4823
  29362. }
  29363. },
  29364. },
  29365. [
  29366. {
  29367. name: "Normal",
  29368. height: math.unit(50, "meters"),
  29369. default: true
  29370. },
  29371. ]
  29372. ))
  29373. characterMakers.push(() => makeCharacter(
  29374. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29375. {
  29376. front: {
  29377. height: math.unit(30, "m"),
  29378. weight: math.unit(22, "tonnes"),
  29379. name: "Front",
  29380. image: {
  29381. source: "./media/characters/elio/front.svg",
  29382. extra: 4582 / 3720,
  29383. bottom: 236 / 4828
  29384. }
  29385. },
  29386. },
  29387. [
  29388. {
  29389. name: "Normal",
  29390. height: math.unit(30, "meters"),
  29391. default: true
  29392. },
  29393. ]
  29394. ))
  29395. characterMakers.push(() => makeCharacter(
  29396. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29397. {
  29398. front: {
  29399. height: math.unit(6 + 3 / 12, "feet"),
  29400. weight: math.unit(120, "lb"),
  29401. name: "Front",
  29402. image: {
  29403. source: "./media/characters/azura/front.svg",
  29404. extra: 1149 / 1135,
  29405. bottom: 45 / 1194
  29406. }
  29407. },
  29408. frontClothed: {
  29409. height: math.unit(6 + 3 / 12, "feet"),
  29410. weight: math.unit(120, "lb"),
  29411. name: "Front (Clothed)",
  29412. image: {
  29413. source: "./media/characters/azura/front-clothed.svg",
  29414. extra: 1149 / 1135,
  29415. bottom: 45 / 1194
  29416. }
  29417. },
  29418. },
  29419. [
  29420. {
  29421. name: "Normal",
  29422. height: math.unit(6 + 3 / 12, "feet"),
  29423. default: true
  29424. },
  29425. {
  29426. name: "Macro",
  29427. height: math.unit(20 + 6 / 12, "feet")
  29428. },
  29429. {
  29430. name: "Megamacro",
  29431. height: math.unit(12, "miles")
  29432. },
  29433. {
  29434. name: "Gigamacro",
  29435. height: math.unit(10000, "miles")
  29436. },
  29437. {
  29438. name: "Teramacro",
  29439. height: math.unit(900000, "miles")
  29440. },
  29441. ]
  29442. ))
  29443. characterMakers.push(() => makeCharacter(
  29444. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29445. {
  29446. front: {
  29447. height: math.unit(12, "feet"),
  29448. weight: math.unit(1, "ton"),
  29449. capacity: math.unit(660000, "gallons"),
  29450. name: "Front",
  29451. image: {
  29452. source: "./media/characters/zeus/front.svg",
  29453. extra: 5005 / 4717,
  29454. bottom: 363 / 5388
  29455. }
  29456. },
  29457. },
  29458. [
  29459. {
  29460. name: "Normal",
  29461. height: math.unit(12, "feet")
  29462. },
  29463. {
  29464. name: "Preferred Size",
  29465. height: math.unit(0.5, "miles"),
  29466. default: true
  29467. },
  29468. {
  29469. name: "Giga Horse",
  29470. height: math.unit(300, "miles")
  29471. },
  29472. {
  29473. name: "Riding Planets",
  29474. height: math.unit(30, "megameters")
  29475. },
  29476. {
  29477. name: "Cosmic Giant",
  29478. height: math.unit(3, "zettameters")
  29479. },
  29480. {
  29481. name: "Breeding God",
  29482. height: math.unit(9.92e22, "yottameters")
  29483. },
  29484. ]
  29485. ))
  29486. characterMakers.push(() => makeCharacter(
  29487. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29488. {
  29489. side: {
  29490. height: math.unit(9, "feet"),
  29491. weight: math.unit(1500, "kg"),
  29492. name: "Side",
  29493. image: {
  29494. source: "./media/characters/fang/side.svg",
  29495. extra: 924 / 866,
  29496. bottom: 47.5 / 972.3
  29497. }
  29498. },
  29499. },
  29500. [
  29501. {
  29502. name: "Normal",
  29503. height: math.unit(9, "feet"),
  29504. default: true
  29505. },
  29506. {
  29507. name: "Macro",
  29508. height: math.unit(75 + 6 / 12, "feet")
  29509. },
  29510. {
  29511. name: "Teramacro",
  29512. height: math.unit(50000, "miles")
  29513. },
  29514. ]
  29515. ))
  29516. characterMakers.push(() => makeCharacter(
  29517. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29518. {
  29519. front: {
  29520. height: math.unit(10, "feet"),
  29521. weight: math.unit(2, "tons"),
  29522. name: "Front",
  29523. image: {
  29524. source: "./media/characters/rekhit/front.svg",
  29525. extra: 2796 / 2590,
  29526. bottom: 225 / 3022
  29527. }
  29528. },
  29529. },
  29530. [
  29531. {
  29532. name: "Normal",
  29533. height: math.unit(10, "feet"),
  29534. default: true
  29535. },
  29536. {
  29537. name: "Macro",
  29538. height: math.unit(500, "feet")
  29539. },
  29540. ]
  29541. ))
  29542. characterMakers.push(() => makeCharacter(
  29543. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29544. {
  29545. front: {
  29546. height: math.unit(7 + 6.451 / 12, "feet"),
  29547. weight: math.unit(310, "lb"),
  29548. name: "Front",
  29549. image: {
  29550. source: "./media/characters/dahlia-verrick/front.svg",
  29551. extra: 1488 / 1365,
  29552. bottom: 6.2 / 1495
  29553. }
  29554. },
  29555. back: {
  29556. height: math.unit(7 + 6.451 / 12, "feet"),
  29557. weight: math.unit(310, "lb"),
  29558. name: "Back",
  29559. image: {
  29560. source: "./media/characters/dahlia-verrick/back.svg",
  29561. extra: 1472 / 1351,
  29562. bottom: 5.28 / 1477
  29563. }
  29564. },
  29565. frontBusiness: {
  29566. height: math.unit(7 + 6.451 / 12, "feet"),
  29567. weight: math.unit(200, "lb"),
  29568. name: "Front (Business)",
  29569. image: {
  29570. source: "./media/characters/dahlia-verrick/front-business.svg",
  29571. extra: 1478 / 1381,
  29572. bottom: 5.5 / 1484
  29573. }
  29574. },
  29575. frontCasual: {
  29576. height: math.unit(7 + 6.451 / 12, "feet"),
  29577. weight: math.unit(200, "lb"),
  29578. name: "Front (Casual)",
  29579. image: {
  29580. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29581. extra: 1478 / 1381,
  29582. bottom: 5.5 / 1484
  29583. }
  29584. },
  29585. },
  29586. [
  29587. {
  29588. name: "Travel-Sized",
  29589. height: math.unit(7.45, "inches")
  29590. },
  29591. {
  29592. name: "Normal",
  29593. height: math.unit(7 + 6.451 / 12, "feet"),
  29594. default: true
  29595. },
  29596. {
  29597. name: "Hitting the Town",
  29598. height: math.unit(37 + 8 / 12, "feet")
  29599. },
  29600. {
  29601. name: "Stomp in the Suburbs",
  29602. height: math.unit(964 + 9.728 / 12, "feet")
  29603. },
  29604. {
  29605. name: "Sit on the City",
  29606. height: math.unit(61747 + 10.592 / 12, "feet")
  29607. },
  29608. {
  29609. name: "Glomp the Globe",
  29610. height: math.unit(252919327 + 4.832 / 12, "feet")
  29611. },
  29612. ]
  29613. ))
  29614. characterMakers.push(() => makeCharacter(
  29615. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29616. {
  29617. front: {
  29618. height: math.unit(6 + 4 / 12, "feet"),
  29619. weight: math.unit(320, "lb"),
  29620. name: "Front",
  29621. image: {
  29622. source: "./media/characters/balina-mahigan/front.svg",
  29623. extra: 447 / 428,
  29624. bottom: 18 / 466
  29625. }
  29626. },
  29627. back: {
  29628. height: math.unit(6 + 4 / 12, "feet"),
  29629. weight: math.unit(320, "lb"),
  29630. name: "Back",
  29631. image: {
  29632. source: "./media/characters/balina-mahigan/back.svg",
  29633. extra: 445 / 428,
  29634. bottom: 4.07 / 448
  29635. }
  29636. },
  29637. arm: {
  29638. height: math.unit(1.88, "feet"),
  29639. name: "Arm",
  29640. image: {
  29641. source: "./media/characters/balina-mahigan/arm.svg"
  29642. }
  29643. },
  29644. backPort: {
  29645. height: math.unit(0.685, "feet"),
  29646. name: "Back Port",
  29647. image: {
  29648. source: "./media/characters/balina-mahigan/back-port.svg"
  29649. }
  29650. },
  29651. hoofpaw: {
  29652. height: math.unit(1.41, "feet"),
  29653. name: "Hoofpaw",
  29654. image: {
  29655. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29656. }
  29657. },
  29658. leftHandBack: {
  29659. height: math.unit(0.938, "feet"),
  29660. name: "Left Hand (Back)",
  29661. image: {
  29662. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29663. }
  29664. },
  29665. leftHandFront: {
  29666. height: math.unit(0.938, "feet"),
  29667. name: "Left Hand (Front)",
  29668. image: {
  29669. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29670. }
  29671. },
  29672. rightHandBack: {
  29673. height: math.unit(0.95, "feet"),
  29674. name: "Right Hand (Back)",
  29675. image: {
  29676. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29677. }
  29678. },
  29679. rightHandFront: {
  29680. height: math.unit(0.95, "feet"),
  29681. name: "Right Hand (Front)",
  29682. image: {
  29683. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29684. }
  29685. },
  29686. },
  29687. [
  29688. {
  29689. name: "Normal",
  29690. height: math.unit(6 + 4 / 12, "feet"),
  29691. default: true
  29692. },
  29693. ]
  29694. ))
  29695. characterMakers.push(() => makeCharacter(
  29696. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29697. {
  29698. front: {
  29699. height: math.unit(6, "feet"),
  29700. weight: math.unit(320, "lb"),
  29701. name: "Front",
  29702. image: {
  29703. source: "./media/characters/balina-mejeri/front.svg",
  29704. extra: 517 / 488,
  29705. bottom: 44.2 / 561
  29706. }
  29707. },
  29708. },
  29709. [
  29710. {
  29711. name: "Normal",
  29712. height: math.unit(6 + 4 / 12, "feet")
  29713. },
  29714. {
  29715. name: "Business",
  29716. height: math.unit(155, "feet"),
  29717. default: true
  29718. },
  29719. ]
  29720. ))
  29721. characterMakers.push(() => makeCharacter(
  29722. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29723. {
  29724. kneeling: {
  29725. height: math.unit(6 + 4 / 12, "feet"),
  29726. weight: math.unit(300 * 20, "lb"),
  29727. name: "Kneeling",
  29728. image: {
  29729. source: "./media/characters/balbarian/kneeling.svg",
  29730. extra: 922 / 862,
  29731. bottom: 42.4 / 965
  29732. }
  29733. },
  29734. },
  29735. [
  29736. {
  29737. name: "Normal",
  29738. height: math.unit(6 + 4 / 12, "feet")
  29739. },
  29740. {
  29741. name: "Treasured",
  29742. height: math.unit(18 + 9 / 12, "feet"),
  29743. default: true
  29744. },
  29745. {
  29746. name: "Macro",
  29747. height: math.unit(900, "feet")
  29748. },
  29749. ]
  29750. ))
  29751. characterMakers.push(() => makeCharacter(
  29752. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29753. {
  29754. front: {
  29755. height: math.unit(6 + 4 / 12, "feet"),
  29756. weight: math.unit(325, "lb"),
  29757. name: "Front",
  29758. image: {
  29759. source: "./media/characters/balina-amarini/front.svg",
  29760. extra: 415 / 403,
  29761. bottom: 19 / 433.4
  29762. }
  29763. },
  29764. back: {
  29765. height: math.unit(6 + 4 / 12, "feet"),
  29766. weight: math.unit(325, "lb"),
  29767. name: "Back",
  29768. image: {
  29769. source: "./media/characters/balina-amarini/back.svg",
  29770. extra: 415 / 403,
  29771. bottom: 13.5 / 432
  29772. }
  29773. },
  29774. overdrive: {
  29775. height: math.unit(6 + 4 / 12, "feet"),
  29776. weight: math.unit(400, "lb"),
  29777. name: "Overdrive",
  29778. image: {
  29779. source: "./media/characters/balina-amarini/overdrive.svg",
  29780. extra: 269 / 259,
  29781. bottom: 12 / 282
  29782. }
  29783. },
  29784. },
  29785. [
  29786. {
  29787. name: "Boom",
  29788. height: math.unit(9 + 10 / 12, "feet"),
  29789. default: true
  29790. },
  29791. {
  29792. name: "Macro",
  29793. height: math.unit(280, "feet")
  29794. },
  29795. ]
  29796. ))
  29797. characterMakers.push(() => makeCharacter(
  29798. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29799. {
  29800. goddess: {
  29801. height: math.unit(600, "feet"),
  29802. weight: math.unit(2000000, "tons"),
  29803. name: "Goddess",
  29804. image: {
  29805. source: "./media/characters/lady-kubwa/goddess.svg",
  29806. extra: 1240.5 / 1223,
  29807. bottom: 22 / 1263
  29808. }
  29809. },
  29810. goddesser: {
  29811. height: math.unit(900, "feet"),
  29812. weight: math.unit(20000000, "lb"),
  29813. name: "Goddess-er",
  29814. image: {
  29815. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29816. extra: 899 / 888,
  29817. bottom: 12.6 / 912
  29818. }
  29819. },
  29820. },
  29821. [
  29822. {
  29823. name: "Macro",
  29824. height: math.unit(600, "feet"),
  29825. default: true
  29826. },
  29827. {
  29828. name: "Megamacro",
  29829. height: math.unit(250, "miles")
  29830. },
  29831. ]
  29832. ))
  29833. characterMakers.push(() => makeCharacter(
  29834. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29835. {
  29836. front: {
  29837. height: math.unit(7 + 7 / 12, "feet"),
  29838. weight: math.unit(250, "lb"),
  29839. name: "Front",
  29840. image: {
  29841. source: "./media/characters/tala-grovehorn/front.svg",
  29842. extra: 2636 / 2525,
  29843. bottom: 147 / 2781
  29844. }
  29845. },
  29846. back: {
  29847. height: math.unit(7 + 7 / 12, "feet"),
  29848. weight: math.unit(250, "lb"),
  29849. name: "Back",
  29850. image: {
  29851. source: "./media/characters/tala-grovehorn/back.svg",
  29852. extra: 2635 / 2539,
  29853. bottom: 100 / 2732.8
  29854. }
  29855. },
  29856. mouth: {
  29857. height: math.unit(1.15, "feet"),
  29858. name: "Mouth",
  29859. image: {
  29860. source: "./media/characters/tala-grovehorn/mouth.svg"
  29861. }
  29862. },
  29863. dick: {
  29864. height: math.unit(2.36, "feet"),
  29865. name: "Dick",
  29866. image: {
  29867. source: "./media/characters/tala-grovehorn/dick.svg"
  29868. }
  29869. },
  29870. slit: {
  29871. height: math.unit(0.61, "feet"),
  29872. name: "Slit",
  29873. image: {
  29874. source: "./media/characters/tala-grovehorn/slit.svg"
  29875. }
  29876. },
  29877. },
  29878. [
  29879. ]
  29880. ))
  29881. characterMakers.push(() => makeCharacter(
  29882. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29883. {
  29884. front: {
  29885. height: math.unit(7 + 7 / 12, "feet"),
  29886. weight: math.unit(225, "lb"),
  29887. name: "Front",
  29888. image: {
  29889. source: "./media/characters/epona/front.svg",
  29890. extra: 2445 / 2290,
  29891. bottom: 251 / 2696
  29892. }
  29893. },
  29894. back: {
  29895. height: math.unit(7 + 7 / 12, "feet"),
  29896. weight: math.unit(225, "lb"),
  29897. name: "Back",
  29898. image: {
  29899. source: "./media/characters/epona/back.svg",
  29900. extra: 2546 / 2408,
  29901. bottom: 44 / 2589
  29902. }
  29903. },
  29904. genitals: {
  29905. height: math.unit(1.5, "feet"),
  29906. name: "Genitals",
  29907. image: {
  29908. source: "./media/characters/epona/genitals.svg"
  29909. }
  29910. },
  29911. },
  29912. [
  29913. {
  29914. name: "Normal",
  29915. height: math.unit(7 + 7 / 12, "feet"),
  29916. default: true
  29917. },
  29918. ]
  29919. ))
  29920. characterMakers.push(() => makeCharacter(
  29921. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29922. {
  29923. front: {
  29924. height: math.unit(7, "feet"),
  29925. weight: math.unit(518, "lb"),
  29926. name: "Front",
  29927. image: {
  29928. source: "./media/characters/avia-bloodbourn/front.svg",
  29929. extra: 1466 / 1350,
  29930. bottom: 65 / 1527
  29931. }
  29932. },
  29933. },
  29934. [
  29935. ]
  29936. ))
  29937. characterMakers.push(() => makeCharacter(
  29938. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29939. {
  29940. front: {
  29941. height: math.unit(9.35, "feet"),
  29942. weight: math.unit(600, "lb"),
  29943. name: "Front",
  29944. image: {
  29945. source: "./media/characters/amera/front.svg",
  29946. extra: 891 / 818,
  29947. bottom: 30 / 922.7
  29948. }
  29949. },
  29950. back: {
  29951. height: math.unit(9.35, "feet"),
  29952. weight: math.unit(600, "lb"),
  29953. name: "Back",
  29954. image: {
  29955. source: "./media/characters/amera/back.svg",
  29956. extra: 876 / 824,
  29957. bottom: 6.8 / 884
  29958. }
  29959. },
  29960. dick: {
  29961. height: math.unit(2.14, "feet"),
  29962. name: "Dick",
  29963. image: {
  29964. source: "./media/characters/amera/dick.svg"
  29965. }
  29966. },
  29967. },
  29968. [
  29969. {
  29970. name: "Normal",
  29971. height: math.unit(9.35, "feet"),
  29972. default: true
  29973. },
  29974. ]
  29975. ))
  29976. characterMakers.push(() => makeCharacter(
  29977. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29978. {
  29979. kneeling: {
  29980. height: math.unit(3 + 4 / 12, "feet"),
  29981. weight: math.unit(90, "lb"),
  29982. name: "Kneeling",
  29983. image: {
  29984. source: "./media/characters/rosewen/kneeling.svg",
  29985. extra: 1835 / 1571,
  29986. bottom: 27.7 / 1862
  29987. }
  29988. },
  29989. },
  29990. [
  29991. {
  29992. name: "Normal",
  29993. height: math.unit(3 + 4 / 12, "feet"),
  29994. default: true
  29995. },
  29996. ]
  29997. ))
  29998. characterMakers.push(() => makeCharacter(
  29999. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  30000. {
  30001. front: {
  30002. height: math.unit(5 + 10 / 12, "feet"),
  30003. weight: math.unit(200, "lb"),
  30004. name: "Front",
  30005. image: {
  30006. source: "./media/characters/sabah/front.svg",
  30007. extra: 849 / 763,
  30008. bottom: 33.9 / 881
  30009. }
  30010. },
  30011. },
  30012. [
  30013. {
  30014. name: "Normal",
  30015. height: math.unit(5 + 10 / 12, "feet"),
  30016. default: true
  30017. },
  30018. ]
  30019. ))
  30020. characterMakers.push(() => makeCharacter(
  30021. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  30022. {
  30023. front: {
  30024. height: math.unit(3 + 5 / 12, "feet"),
  30025. weight: math.unit(40, "kg"),
  30026. name: "Front",
  30027. image: {
  30028. source: "./media/characters/purple-flame/front.svg",
  30029. extra: 1577 / 1412,
  30030. bottom: 97 / 1694
  30031. }
  30032. },
  30033. frontDressed: {
  30034. height: math.unit(3 + 5 / 12, "feet"),
  30035. weight: math.unit(40, "kg"),
  30036. name: "Front (Dressed)",
  30037. image: {
  30038. source: "./media/characters/purple-flame/front-dressed.svg",
  30039. extra: 1577 / 1412,
  30040. bottom: 97 / 1694
  30041. }
  30042. },
  30043. headphones: {
  30044. height: math.unit(0.85, "feet"),
  30045. name: "Headphones",
  30046. image: {
  30047. source: "./media/characters/purple-flame/headphones.svg"
  30048. }
  30049. },
  30050. },
  30051. [
  30052. {
  30053. name: "Really Small",
  30054. height: math.unit(5, "cm")
  30055. },
  30056. {
  30057. name: "Micro",
  30058. height: math.unit(1 + 5 / 12, "feet")
  30059. },
  30060. {
  30061. name: "Normal",
  30062. height: math.unit(3 + 5 / 12, "feet"),
  30063. default: true
  30064. },
  30065. {
  30066. name: "Minimacro",
  30067. height: math.unit(125, "feet")
  30068. },
  30069. {
  30070. name: "Macro",
  30071. height: math.unit(0.5, "miles")
  30072. },
  30073. {
  30074. name: "Megamacro",
  30075. height: math.unit(50, "miles")
  30076. },
  30077. {
  30078. name: "Gigantic",
  30079. height: math.unit(750, "miles")
  30080. },
  30081. {
  30082. name: "Planetary",
  30083. height: math.unit(15000, "miles")
  30084. },
  30085. ]
  30086. ))
  30087. characterMakers.push(() => makeCharacter(
  30088. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  30089. {
  30090. front: {
  30091. height: math.unit(14, "feet"),
  30092. weight: math.unit(959, "lb"),
  30093. name: "Front",
  30094. image: {
  30095. source: "./media/characters/arsenal/front.svg",
  30096. extra: 2357 / 2157,
  30097. bottom: 93 / 2458
  30098. }
  30099. },
  30100. },
  30101. [
  30102. {
  30103. name: "Normal",
  30104. height: math.unit(14, "feet"),
  30105. default: true
  30106. },
  30107. ]
  30108. ))
  30109. characterMakers.push(() => makeCharacter(
  30110. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  30111. {
  30112. front: {
  30113. height: math.unit(6, "feet"),
  30114. weight: math.unit(150, "lb"),
  30115. name: "Front",
  30116. image: {
  30117. source: "./media/characters/adira/front.svg",
  30118. extra: 2121/2013,
  30119. bottom: 206/2327
  30120. }
  30121. },
  30122. },
  30123. [
  30124. {
  30125. name: "Micro",
  30126. height: math.unit(4, "inches"),
  30127. default: true
  30128. },
  30129. {
  30130. name: "Macro",
  30131. height: math.unit(50, "feet")
  30132. },
  30133. ]
  30134. ))
  30135. characterMakers.push(() => makeCharacter(
  30136. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  30137. {
  30138. front: {
  30139. height: math.unit(16, "feet"),
  30140. weight: math.unit(1000, "lb"),
  30141. name: "Front",
  30142. image: {
  30143. source: "./media/characters/grim/front.svg",
  30144. extra: 622 / 614,
  30145. bottom: 18.1 / 642
  30146. }
  30147. },
  30148. back: {
  30149. height: math.unit(16, "feet"),
  30150. weight: math.unit(1000, "lb"),
  30151. name: "Back",
  30152. image: {
  30153. source: "./media/characters/grim/back.svg",
  30154. extra: 610.6 / 602,
  30155. bottom: 40.8 / 652
  30156. }
  30157. },
  30158. hunched: {
  30159. height: math.unit(9.75, "feet"),
  30160. weight: math.unit(1000, "lb"),
  30161. name: "Hunched",
  30162. image: {
  30163. source: "./media/characters/grim/hunched.svg",
  30164. extra: 304 / 297,
  30165. bottom: 35.4 / 394
  30166. }
  30167. },
  30168. },
  30169. [
  30170. {
  30171. name: "Normal",
  30172. height: math.unit(16, "feet"),
  30173. default: true
  30174. },
  30175. ]
  30176. ))
  30177. characterMakers.push(() => makeCharacter(
  30178. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  30179. {
  30180. front: {
  30181. height: math.unit(2.3, "meters"),
  30182. weight: math.unit(300, "lb"),
  30183. name: "Front",
  30184. image: {
  30185. source: "./media/characters/sinja/front-sfw.svg",
  30186. extra: 1393 / 1294,
  30187. bottom: 70 / 1463
  30188. }
  30189. },
  30190. frontNsfw: {
  30191. height: math.unit(2.3, "meters"),
  30192. weight: math.unit(300, "lb"),
  30193. name: "Front (NSFW)",
  30194. image: {
  30195. source: "./media/characters/sinja/front-nsfw.svg",
  30196. extra: 1393 / 1294,
  30197. bottom: 70 / 1463
  30198. }
  30199. },
  30200. back: {
  30201. height: math.unit(2.3, "meters"),
  30202. weight: math.unit(300, "lb"),
  30203. name: "Back",
  30204. image: {
  30205. source: "./media/characters/sinja/back.svg",
  30206. extra: 1393 / 1294,
  30207. bottom: 70 / 1463
  30208. }
  30209. },
  30210. head: {
  30211. height: math.unit(1.771, "feet"),
  30212. name: "Head",
  30213. image: {
  30214. source: "./media/characters/sinja/head.svg"
  30215. }
  30216. },
  30217. slit: {
  30218. height: math.unit(0.8, "feet"),
  30219. name: "Slit",
  30220. image: {
  30221. source: "./media/characters/sinja/slit.svg"
  30222. }
  30223. },
  30224. },
  30225. [
  30226. {
  30227. name: "Normal",
  30228. height: math.unit(2.3, "meters")
  30229. },
  30230. {
  30231. name: "Macro",
  30232. height: math.unit(91, "meters"),
  30233. default: true
  30234. },
  30235. {
  30236. name: "Megamacro",
  30237. height: math.unit(91440, "meters")
  30238. },
  30239. {
  30240. name: "Gigamacro",
  30241. height: math.unit(60960000, "meters")
  30242. },
  30243. {
  30244. name: "Teramacro",
  30245. height: math.unit(9144000000, "meters")
  30246. },
  30247. ]
  30248. ))
  30249. characterMakers.push(() => makeCharacter(
  30250. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  30251. {
  30252. front: {
  30253. height: math.unit(1.7, "meters"),
  30254. weight: math.unit(130, "lb"),
  30255. name: "Front",
  30256. image: {
  30257. source: "./media/characters/kyu/front.svg",
  30258. extra: 415 / 395,
  30259. bottom: 5 / 420
  30260. }
  30261. },
  30262. head: {
  30263. height: math.unit(1.75, "feet"),
  30264. name: "Head",
  30265. image: {
  30266. source: "./media/characters/kyu/head.svg"
  30267. }
  30268. },
  30269. foot: {
  30270. height: math.unit(0.81, "feet"),
  30271. name: "Foot",
  30272. image: {
  30273. source: "./media/characters/kyu/foot.svg"
  30274. }
  30275. },
  30276. },
  30277. [
  30278. {
  30279. name: "Normal",
  30280. height: math.unit(1.7, "meters")
  30281. },
  30282. {
  30283. name: "Macro",
  30284. height: math.unit(131, "feet"),
  30285. default: true
  30286. },
  30287. {
  30288. name: "Megamacro",
  30289. height: math.unit(91440, "meters")
  30290. },
  30291. {
  30292. name: "Gigamacro",
  30293. height: math.unit(60960000, "meters")
  30294. },
  30295. {
  30296. name: "Teramacro",
  30297. height: math.unit(9144000000, "meters")
  30298. },
  30299. ]
  30300. ))
  30301. characterMakers.push(() => makeCharacter(
  30302. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  30303. {
  30304. front: {
  30305. height: math.unit(7 + 1 / 12, "feet"),
  30306. weight: math.unit(250, "lb"),
  30307. name: "Front",
  30308. image: {
  30309. source: "./media/characters/joey/front.svg",
  30310. extra: 1791 / 1537,
  30311. bottom: 28 / 1816
  30312. }
  30313. },
  30314. },
  30315. [
  30316. {
  30317. name: "Micro",
  30318. height: math.unit(3, "inches")
  30319. },
  30320. {
  30321. name: "Normal",
  30322. height: math.unit(7 + 1 / 12, "feet"),
  30323. default: true
  30324. },
  30325. ]
  30326. ))
  30327. characterMakers.push(() => makeCharacter(
  30328. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  30329. {
  30330. front: {
  30331. height: math.unit(165, "cm"),
  30332. weight: math.unit(140, "lb"),
  30333. name: "Front",
  30334. image: {
  30335. source: "./media/characters/sam-evans/front.svg",
  30336. extra: 3417 / 3230,
  30337. bottom: 41.3 / 3417
  30338. }
  30339. },
  30340. frontSixTails: {
  30341. height: math.unit(165, "cm"),
  30342. weight: math.unit(140, "lb"),
  30343. name: "Front-six-tails",
  30344. image: {
  30345. source: "./media/characters/sam-evans/front-six-tails.svg",
  30346. extra: 3417 / 3230,
  30347. bottom: 41.3 / 3417
  30348. }
  30349. },
  30350. back: {
  30351. height: math.unit(165, "cm"),
  30352. weight: math.unit(140, "lb"),
  30353. name: "Back",
  30354. image: {
  30355. source: "./media/characters/sam-evans/back.svg",
  30356. extra: 3227 / 3032,
  30357. bottom: 6.8 / 3234
  30358. }
  30359. },
  30360. face: {
  30361. height: math.unit(0.68, "feet"),
  30362. name: "Face",
  30363. image: {
  30364. source: "./media/characters/sam-evans/face.svg"
  30365. }
  30366. },
  30367. },
  30368. [
  30369. {
  30370. name: "Normal",
  30371. height: math.unit(165, "cm"),
  30372. default: true
  30373. },
  30374. {
  30375. name: "Macro",
  30376. height: math.unit(100, "meters")
  30377. },
  30378. {
  30379. name: "Macro+",
  30380. height: math.unit(800, "meters")
  30381. },
  30382. {
  30383. name: "Macro++",
  30384. height: math.unit(3, "km")
  30385. },
  30386. {
  30387. name: "Macro+++",
  30388. height: math.unit(30, "km")
  30389. },
  30390. ]
  30391. ))
  30392. characterMakers.push(() => makeCharacter(
  30393. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30394. {
  30395. front: {
  30396. height: math.unit(10, "feet"),
  30397. weight: math.unit(750, "lb"),
  30398. name: "Front",
  30399. image: {
  30400. source: "./media/characters/juliet-a/front.svg",
  30401. extra: 1766 / 1720,
  30402. bottom: 43 / 1809
  30403. }
  30404. },
  30405. back: {
  30406. height: math.unit(10, "feet"),
  30407. weight: math.unit(750, "lb"),
  30408. name: "Back",
  30409. image: {
  30410. source: "./media/characters/juliet-a/back.svg",
  30411. extra: 1781 / 1734,
  30412. bottom: 35 / 1810,
  30413. }
  30414. },
  30415. },
  30416. [
  30417. {
  30418. name: "Normal",
  30419. height: math.unit(10, "feet"),
  30420. default: true
  30421. },
  30422. {
  30423. name: "Dragon Form",
  30424. height: math.unit(250, "feet")
  30425. },
  30426. {
  30427. name: "Macro",
  30428. height: math.unit(1000, "feet")
  30429. },
  30430. {
  30431. name: "Megamacro",
  30432. height: math.unit(10000, "feet")
  30433. }
  30434. ]
  30435. ))
  30436. characterMakers.push(() => makeCharacter(
  30437. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30438. {
  30439. regular: {
  30440. height: math.unit(7 + 3 / 12, "feet"),
  30441. weight: math.unit(260, "lb"),
  30442. name: "Regular",
  30443. image: {
  30444. source: "./media/characters/wild/regular.svg",
  30445. extra: 97.45 / 92,
  30446. bottom: 6.8 / 104.3
  30447. }
  30448. },
  30449. biggums: {
  30450. height: math.unit(8 + 6 / 12, "feet"),
  30451. weight: math.unit(425, "lb"),
  30452. name: "Biggums",
  30453. image: {
  30454. source: "./media/characters/wild/biggums.svg",
  30455. extra: 97.45 / 92,
  30456. bottom: 7.5 / 132.34
  30457. }
  30458. },
  30459. mawRegular: {
  30460. height: math.unit(1.24, "feet"),
  30461. name: "Maw (Regular)",
  30462. image: {
  30463. source: "./media/characters/wild/maw.svg"
  30464. }
  30465. },
  30466. mawBiggums: {
  30467. height: math.unit(1.47, "feet"),
  30468. name: "Maw (Biggums)",
  30469. image: {
  30470. source: "./media/characters/wild/maw.svg"
  30471. }
  30472. },
  30473. },
  30474. [
  30475. {
  30476. name: "Normal",
  30477. height: math.unit(7 + 3 / 12, "feet"),
  30478. default: true
  30479. },
  30480. ]
  30481. ))
  30482. characterMakers.push(() => makeCharacter(
  30483. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30484. {
  30485. front: {
  30486. height: math.unit(2.5, "meters"),
  30487. weight: math.unit(200, "kg"),
  30488. name: "Front",
  30489. image: {
  30490. source: "./media/characters/vidar/front.svg",
  30491. extra: 2994 / 2795,
  30492. bottom: 56 / 3061
  30493. }
  30494. },
  30495. back: {
  30496. height: math.unit(2.5, "meters"),
  30497. weight: math.unit(200, "kg"),
  30498. name: "Back",
  30499. image: {
  30500. source: "./media/characters/vidar/back.svg",
  30501. extra: 3131 / 2928,
  30502. bottom: 13.5 / 3141.5
  30503. }
  30504. },
  30505. feral: {
  30506. height: math.unit(2.5, "meters"),
  30507. weight: math.unit(2000, "kg"),
  30508. name: "Feral",
  30509. image: {
  30510. source: "./media/characters/vidar/feral.svg",
  30511. extra: 2790 / 1765,
  30512. bottom: 6 / 2796
  30513. }
  30514. },
  30515. },
  30516. [
  30517. {
  30518. name: "Normal",
  30519. height: math.unit(2.5, "meters"),
  30520. default: true
  30521. },
  30522. {
  30523. name: "Macro",
  30524. height: math.unit(100, "meters")
  30525. },
  30526. ]
  30527. ))
  30528. characterMakers.push(() => makeCharacter(
  30529. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30530. {
  30531. front: {
  30532. height: math.unit(5 + 9 / 12, "feet"),
  30533. weight: math.unit(120, "lb"),
  30534. name: "Front",
  30535. image: {
  30536. source: "./media/characters/ash/front.svg",
  30537. extra: 2189 / 1961,
  30538. bottom: 5.2 / 2194
  30539. }
  30540. },
  30541. },
  30542. [
  30543. {
  30544. name: "Normal",
  30545. height: math.unit(5 + 9 / 12, "feet"),
  30546. default: true
  30547. },
  30548. ]
  30549. ))
  30550. characterMakers.push(() => makeCharacter(
  30551. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30552. {
  30553. front: {
  30554. height: math.unit(9, "feet"),
  30555. weight: math.unit(10000, "lb"),
  30556. name: "Front",
  30557. image: {
  30558. source: "./media/characters/gygabite/front.svg",
  30559. bottom: 31.7 / 537.8,
  30560. extra: 505 / 370
  30561. }
  30562. },
  30563. },
  30564. [
  30565. {
  30566. name: "Normal",
  30567. height: math.unit(9, "feet"),
  30568. default: true
  30569. },
  30570. ]
  30571. ))
  30572. characterMakers.push(() => makeCharacter(
  30573. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30574. {
  30575. front: {
  30576. height: math.unit(12, "feet"),
  30577. weight: math.unit(4000, "lb"),
  30578. name: "Front",
  30579. image: {
  30580. source: "./media/characters/p0tat0/front.svg",
  30581. extra: 1065 / 921,
  30582. bottom: 55.7 / 1121.25
  30583. }
  30584. },
  30585. },
  30586. [
  30587. {
  30588. name: "Normal",
  30589. height: math.unit(12, "feet"),
  30590. default: true
  30591. },
  30592. ]
  30593. ))
  30594. characterMakers.push(() => makeCharacter(
  30595. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30596. {
  30597. side: {
  30598. height: math.unit(6.5, "feet"),
  30599. weight: math.unit(800, "lb"),
  30600. name: "Side",
  30601. image: {
  30602. source: "./media/characters/dusk/side.svg",
  30603. extra: 615 / 373,
  30604. bottom: 53 / 664
  30605. }
  30606. },
  30607. sitting: {
  30608. height: math.unit(7, "feet"),
  30609. weight: math.unit(800, "lb"),
  30610. name: "Sitting",
  30611. image: {
  30612. source: "./media/characters/dusk/sitting.svg",
  30613. extra: 753 / 425,
  30614. bottom: 33 / 774
  30615. }
  30616. },
  30617. head: {
  30618. height: math.unit(6.1, "feet"),
  30619. name: "Head",
  30620. image: {
  30621. source: "./media/characters/dusk/head.svg"
  30622. }
  30623. },
  30624. },
  30625. [
  30626. {
  30627. name: "Normal",
  30628. height: math.unit(7, "feet"),
  30629. default: true
  30630. },
  30631. ]
  30632. ))
  30633. characterMakers.push(() => makeCharacter(
  30634. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30635. {
  30636. front: {
  30637. height: math.unit(15, "feet"),
  30638. weight: math.unit(7000, "lb"),
  30639. name: "Front",
  30640. image: {
  30641. source: "./media/characters/jay-direwolf/front.svg",
  30642. extra: 1810 / 1732,
  30643. bottom: 66 / 1892
  30644. }
  30645. },
  30646. },
  30647. [
  30648. {
  30649. name: "Normal",
  30650. height: math.unit(15, "feet"),
  30651. default: true
  30652. },
  30653. ]
  30654. ))
  30655. characterMakers.push(() => makeCharacter(
  30656. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30657. {
  30658. front: {
  30659. height: math.unit(4 + 9 / 12, "feet"),
  30660. weight: math.unit(130, "lb"),
  30661. name: "Front",
  30662. image: {
  30663. source: "./media/characters/anchovie/front.svg",
  30664. extra: 382 / 350,
  30665. bottom: 25 / 409
  30666. }
  30667. },
  30668. back: {
  30669. height: math.unit(4 + 9 / 12, "feet"),
  30670. weight: math.unit(130, "lb"),
  30671. name: "Back",
  30672. image: {
  30673. source: "./media/characters/anchovie/back.svg",
  30674. extra: 385 / 352,
  30675. bottom: 16.6 / 402
  30676. }
  30677. },
  30678. frontDressed: {
  30679. height: math.unit(4 + 9 / 12, "feet"),
  30680. weight: math.unit(130, "lb"),
  30681. name: "Front (Dressed)",
  30682. image: {
  30683. source: "./media/characters/anchovie/front-dressed.svg",
  30684. extra: 382 / 350,
  30685. bottom: 25 / 409
  30686. }
  30687. },
  30688. backDressed: {
  30689. height: math.unit(4 + 9 / 12, "feet"),
  30690. weight: math.unit(130, "lb"),
  30691. name: "Back (Dressed)",
  30692. image: {
  30693. source: "./media/characters/anchovie/back-dressed.svg",
  30694. extra: 385 / 352,
  30695. bottom: 16.6 / 402
  30696. }
  30697. },
  30698. },
  30699. [
  30700. {
  30701. name: "Micro",
  30702. height: math.unit(6.4, "inches")
  30703. },
  30704. {
  30705. name: "Normal",
  30706. height: math.unit(4 + 9 / 12, "feet"),
  30707. default: true
  30708. },
  30709. ]
  30710. ))
  30711. characterMakers.push(() => makeCharacter(
  30712. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30713. {
  30714. front: {
  30715. height: math.unit(2, "meters"),
  30716. weight: math.unit(180, "lb"),
  30717. name: "Front",
  30718. image: {
  30719. source: "./media/characters/acidrenamon/front.svg",
  30720. extra: 987 / 890,
  30721. bottom: 22.8 / 1009
  30722. }
  30723. },
  30724. back: {
  30725. height: math.unit(2, "meters"),
  30726. weight: math.unit(180, "lb"),
  30727. name: "Back",
  30728. image: {
  30729. source: "./media/characters/acidrenamon/back.svg",
  30730. extra: 983 / 891,
  30731. bottom: 8.4 / 992
  30732. }
  30733. },
  30734. head: {
  30735. height: math.unit(1.92, "feet"),
  30736. name: "Head",
  30737. image: {
  30738. source: "./media/characters/acidrenamon/head.svg"
  30739. }
  30740. },
  30741. rump: {
  30742. height: math.unit(1.72, "feet"),
  30743. name: "Rump",
  30744. image: {
  30745. source: "./media/characters/acidrenamon/rump.svg"
  30746. }
  30747. },
  30748. tail: {
  30749. height: math.unit(4.2, "feet"),
  30750. name: "Tail",
  30751. image: {
  30752. source: "./media/characters/acidrenamon/tail.svg"
  30753. }
  30754. },
  30755. },
  30756. [
  30757. {
  30758. name: "Normal",
  30759. height: math.unit(2, "meters"),
  30760. default: true
  30761. },
  30762. {
  30763. name: "Minimacro",
  30764. height: math.unit(7, "meters")
  30765. },
  30766. {
  30767. name: "Macro",
  30768. height: math.unit(200, "meters")
  30769. },
  30770. {
  30771. name: "Gigamacro",
  30772. height: math.unit(0.2, "earths")
  30773. },
  30774. ]
  30775. ))
  30776. characterMakers.push(() => makeCharacter(
  30777. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30778. {
  30779. front: {
  30780. height: math.unit(152, "feet"),
  30781. name: "Front",
  30782. image: {
  30783. source: "./media/characters/kenzie-lee/front.svg",
  30784. extra: 1869/1774,
  30785. bottom: 128/1997
  30786. }
  30787. },
  30788. side: {
  30789. height: math.unit(86, "feet"),
  30790. name: "Side",
  30791. image: {
  30792. source: "./media/characters/kenzie-lee/side.svg",
  30793. extra: 930/815,
  30794. bottom: 177/1107
  30795. }
  30796. },
  30797. paw: {
  30798. height: math.unit(15, "feet"),
  30799. name: "Paw",
  30800. image: {
  30801. source: "./media/characters/kenzie-lee/paw.svg"
  30802. }
  30803. },
  30804. },
  30805. [
  30806. {
  30807. name: "Kenzie Flea",
  30808. height: math.unit(2, "mm"),
  30809. default: true
  30810. },
  30811. {
  30812. name: "Micro",
  30813. height: math.unit(2, "inches")
  30814. },
  30815. {
  30816. name: "Normal",
  30817. height: math.unit(152, "feet")
  30818. },
  30819. {
  30820. name: "Megamacro",
  30821. height: math.unit(7, "miles")
  30822. },
  30823. {
  30824. name: "Gigamacro",
  30825. height: math.unit(8000, "miles")
  30826. },
  30827. ]
  30828. ))
  30829. characterMakers.push(() => makeCharacter(
  30830. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30831. {
  30832. front: {
  30833. height: math.unit(6, "feet"),
  30834. name: "Front",
  30835. image: {
  30836. source: "./media/characters/withers/front.svg",
  30837. extra: 1935/1760,
  30838. bottom: 72/2007
  30839. }
  30840. },
  30841. back: {
  30842. height: math.unit(6, "feet"),
  30843. name: "Back",
  30844. image: {
  30845. source: "./media/characters/withers/back.svg",
  30846. extra: 1944/1792,
  30847. bottom: 12/1956
  30848. }
  30849. },
  30850. dressed: {
  30851. height: math.unit(6, "feet"),
  30852. name: "Dressed",
  30853. image: {
  30854. source: "./media/characters/withers/dressed.svg",
  30855. extra: 1937/1765,
  30856. bottom: 73/2010
  30857. }
  30858. },
  30859. phase1: {
  30860. height: math.unit(1.1, "feet"),
  30861. name: "Phase 1",
  30862. image: {
  30863. source: "./media/characters/withers/phase-1.svg",
  30864. extra: 1885/1232,
  30865. bottom: 0/1885
  30866. }
  30867. },
  30868. phase2: {
  30869. height: math.unit(1.05, "feet"),
  30870. name: "Phase 2",
  30871. image: {
  30872. source: "./media/characters/withers/phase-2.svg",
  30873. extra: 1792/1090,
  30874. bottom: 0/1792
  30875. }
  30876. },
  30877. partyWipe: {
  30878. height: math.unit(1.1, "feet"),
  30879. name: "Party Wipe",
  30880. image: {
  30881. source: "./media/characters/withers/party-wipe.svg",
  30882. extra: 1864/1207,
  30883. bottom: 0/1864
  30884. }
  30885. },
  30886. },
  30887. [
  30888. {
  30889. name: "Macro",
  30890. height: math.unit(167, "feet"),
  30891. default: true
  30892. },
  30893. {
  30894. name: "Megamacro",
  30895. height: math.unit(15, "miles")
  30896. }
  30897. ]
  30898. ))
  30899. characterMakers.push(() => makeCharacter(
  30900. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30901. {
  30902. front: {
  30903. height: math.unit(6 + 7 / 12, "feet"),
  30904. weight: math.unit(250, "lb"),
  30905. name: "Front",
  30906. image: {
  30907. source: "./media/characters/nemoskii/front.svg",
  30908. extra: 2270 / 1734,
  30909. bottom: 86 / 2354
  30910. }
  30911. },
  30912. back: {
  30913. height: math.unit(6 + 7 / 12, "feet"),
  30914. weight: math.unit(250, "lb"),
  30915. name: "Back",
  30916. image: {
  30917. source: "./media/characters/nemoskii/back.svg",
  30918. extra: 1845 / 1788,
  30919. bottom: 10.5 / 1852
  30920. }
  30921. },
  30922. head: {
  30923. height: math.unit(1.31, "feet"),
  30924. name: "Head",
  30925. image: {
  30926. source: "./media/characters/nemoskii/head.svg"
  30927. }
  30928. },
  30929. },
  30930. [
  30931. {
  30932. name: "Micro",
  30933. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30934. },
  30935. {
  30936. name: "Normal",
  30937. height: math.unit(6 + 7 / 12, "feet"),
  30938. default: true
  30939. },
  30940. {
  30941. name: "Macro",
  30942. height: math.unit((6 + 7 / 12) * 150, "feet")
  30943. },
  30944. {
  30945. name: "Macro+",
  30946. height: math.unit((6 + 7 / 12) * 500, "feet")
  30947. },
  30948. {
  30949. name: "Megamacro",
  30950. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30951. },
  30952. ]
  30953. ))
  30954. characterMakers.push(() => makeCharacter(
  30955. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30956. {
  30957. front: {
  30958. height: math.unit(1, "mile"),
  30959. weight: math.unit(265261.9, "lb"),
  30960. name: "Front",
  30961. image: {
  30962. source: "./media/characters/shui/front.svg",
  30963. extra: 1633 / 1564,
  30964. bottom: 91.5 / 1726
  30965. }
  30966. },
  30967. },
  30968. [
  30969. {
  30970. name: "Macro",
  30971. height: math.unit(1, "mile"),
  30972. default: true
  30973. },
  30974. ]
  30975. ))
  30976. characterMakers.push(() => makeCharacter(
  30977. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30978. {
  30979. front: {
  30980. height: math.unit(12 + 6 / 12, "feet"),
  30981. weight: math.unit(1342, "lb"),
  30982. name: "Front",
  30983. image: {
  30984. source: "./media/characters/arokh-takakura/front.svg",
  30985. extra: 1089 / 1043,
  30986. bottom: 77.4 / 1176.7
  30987. }
  30988. },
  30989. back: {
  30990. height: math.unit(12 + 6 / 12, "feet"),
  30991. weight: math.unit(1342, "lb"),
  30992. name: "Back",
  30993. image: {
  30994. source: "./media/characters/arokh-takakura/back.svg",
  30995. extra: 1046 / 1019,
  30996. bottom: 102 / 1150
  30997. }
  30998. },
  30999. },
  31000. [
  31001. {
  31002. name: "Big",
  31003. height: math.unit(12 + 6 / 12, "feet"),
  31004. default: true
  31005. },
  31006. ]
  31007. ))
  31008. characterMakers.push(() => makeCharacter(
  31009. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  31010. {
  31011. front: {
  31012. height: math.unit(5 + 6 / 12, "feet"),
  31013. weight: math.unit(150, "lb"),
  31014. name: "Front",
  31015. image: {
  31016. source: "./media/characters/theo/front.svg",
  31017. extra: 1184 / 1131,
  31018. bottom: 7.4 / 1191
  31019. }
  31020. },
  31021. },
  31022. [
  31023. {
  31024. name: "Micro",
  31025. height: math.unit(5, "inches")
  31026. },
  31027. {
  31028. name: "Normal",
  31029. height: math.unit(5 + 6 / 12, "feet"),
  31030. default: true
  31031. },
  31032. ]
  31033. ))
  31034. characterMakers.push(() => makeCharacter(
  31035. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  31036. {
  31037. front: {
  31038. height: math.unit(5 + 9 / 12, "feet"),
  31039. weight: math.unit(130, "lb"),
  31040. name: "Front",
  31041. image: {
  31042. source: "./media/characters/cecelia-swift/front.svg",
  31043. extra: 502 / 484,
  31044. bottom: 23 / 523
  31045. }
  31046. },
  31047. back: {
  31048. height: math.unit(5 + 9 / 12, "feet"),
  31049. weight: math.unit(130, "lb"),
  31050. name: "Back",
  31051. image: {
  31052. source: "./media/characters/cecelia-swift/back.svg",
  31053. extra: 499 / 485,
  31054. bottom: 12 / 511
  31055. }
  31056. },
  31057. head: {
  31058. height: math.unit(0.90, "feet"),
  31059. name: "Head",
  31060. image: {
  31061. source: "./media/characters/cecelia-swift/head.svg"
  31062. }
  31063. },
  31064. rump: {
  31065. height: math.unit(1.75, "feet"),
  31066. name: "Rump",
  31067. image: {
  31068. source: "./media/characters/cecelia-swift/rump.svg"
  31069. }
  31070. },
  31071. },
  31072. [
  31073. {
  31074. name: "Normal",
  31075. height: math.unit(5 + 9 / 12, "feet"),
  31076. default: true
  31077. },
  31078. {
  31079. name: "Big",
  31080. height: math.unit(50, "feet")
  31081. },
  31082. {
  31083. name: "Macro",
  31084. height: math.unit(100, "feet")
  31085. },
  31086. {
  31087. name: "Macro+",
  31088. height: math.unit(500, "feet")
  31089. },
  31090. {
  31091. name: "Macro++",
  31092. height: math.unit(1000, "feet")
  31093. },
  31094. ]
  31095. ))
  31096. characterMakers.push(() => makeCharacter(
  31097. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  31098. {
  31099. front: {
  31100. height: math.unit(6, "feet"),
  31101. weight: math.unit(150, "lb"),
  31102. name: "Front",
  31103. image: {
  31104. source: "./media/characters/kaunan/front.svg",
  31105. extra: 2890 / 2523,
  31106. bottom: 49 / 2939
  31107. }
  31108. },
  31109. },
  31110. [
  31111. {
  31112. name: "Macro",
  31113. height: math.unit(150, "feet"),
  31114. default: true
  31115. },
  31116. ]
  31117. ))
  31118. characterMakers.push(() => makeCharacter(
  31119. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  31120. {
  31121. dressed: {
  31122. height: math.unit(175, "cm"),
  31123. weight: math.unit(60, "kg"),
  31124. name: "Dressed",
  31125. image: {
  31126. source: "./media/characters/fei/dressed.svg",
  31127. extra: 1402/1278,
  31128. bottom: 27/1429
  31129. }
  31130. },
  31131. nude: {
  31132. height: math.unit(175, "cm"),
  31133. weight: math.unit(60, "kg"),
  31134. name: "Nude",
  31135. image: {
  31136. source: "./media/characters/fei/nude.svg",
  31137. extra: 1402/1278,
  31138. bottom: 27/1429
  31139. }
  31140. },
  31141. heels: {
  31142. height: math.unit(0.466, "feet"),
  31143. name: "Heels",
  31144. image: {
  31145. source: "./media/characters/fei/heels.svg",
  31146. extra: 156/152,
  31147. bottom: 28/184
  31148. }
  31149. },
  31150. },
  31151. [
  31152. {
  31153. name: "Mortal",
  31154. height: math.unit(175, "cm")
  31155. },
  31156. {
  31157. name: "Normal",
  31158. height: math.unit(3500, "m")
  31159. },
  31160. {
  31161. name: "Stroll",
  31162. height: math.unit(18.4, "km"),
  31163. default: true
  31164. },
  31165. {
  31166. name: "Showoff",
  31167. height: math.unit(175, "km")
  31168. },
  31169. ]
  31170. ))
  31171. characterMakers.push(() => makeCharacter(
  31172. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  31173. {
  31174. front: {
  31175. height: math.unit(7, "feet"),
  31176. weight: math.unit(1000, "kg"),
  31177. name: "Front",
  31178. image: {
  31179. source: "./media/characters/edrax/front.svg",
  31180. extra: 2838 / 2550,
  31181. bottom: 130 / 2968
  31182. }
  31183. },
  31184. },
  31185. [
  31186. {
  31187. name: "Small",
  31188. height: math.unit(7, "feet")
  31189. },
  31190. {
  31191. name: "Normal",
  31192. height: math.unit(1500, "meters")
  31193. },
  31194. {
  31195. name: "Mega",
  31196. height: math.unit(12000000, "km"),
  31197. default: true
  31198. },
  31199. {
  31200. name: "Megamacro",
  31201. height: math.unit(10600000, "lightyears")
  31202. },
  31203. {
  31204. name: "Hypermacro",
  31205. height: math.unit(256, "yottameters")
  31206. },
  31207. ]
  31208. ))
  31209. characterMakers.push(() => makeCharacter(
  31210. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  31211. {
  31212. front: {
  31213. height: math.unit(10, "feet"),
  31214. weight: math.unit(750, "lb"),
  31215. name: "Front",
  31216. image: {
  31217. source: "./media/characters/clove/front.svg",
  31218. extra: 1918/1751,
  31219. bottom: 52/1970
  31220. }
  31221. },
  31222. back: {
  31223. height: math.unit(10, "feet"),
  31224. weight: math.unit(750, "lb"),
  31225. name: "Back",
  31226. image: {
  31227. source: "./media/characters/clove/back.svg",
  31228. extra: 1912/1747,
  31229. bottom: 50/1962
  31230. }
  31231. },
  31232. },
  31233. [
  31234. {
  31235. name: "Normal",
  31236. height: math.unit(10, "feet"),
  31237. default: true
  31238. },
  31239. ]
  31240. ))
  31241. characterMakers.push(() => makeCharacter(
  31242. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31243. {
  31244. front: {
  31245. height: math.unit(4, "feet"),
  31246. weight: math.unit(50, "lb"),
  31247. name: "Front",
  31248. image: {
  31249. source: "./media/characters/alex-rabbit/front.svg",
  31250. extra: 507 / 458,
  31251. bottom: 18.5 / 527
  31252. }
  31253. },
  31254. back: {
  31255. height: math.unit(4, "feet"),
  31256. weight: math.unit(50, "lb"),
  31257. name: "Back",
  31258. image: {
  31259. source: "./media/characters/alex-rabbit/back.svg",
  31260. extra: 502 / 460,
  31261. bottom: 18.9 / 521
  31262. }
  31263. },
  31264. },
  31265. [
  31266. {
  31267. name: "Normal",
  31268. height: math.unit(4, "feet"),
  31269. default: true
  31270. },
  31271. ]
  31272. ))
  31273. characterMakers.push(() => makeCharacter(
  31274. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  31275. {
  31276. front: {
  31277. height: math.unit(1 + 3 / 12, "feet"),
  31278. weight: math.unit(80, "lb"),
  31279. name: "Front",
  31280. image: {
  31281. source: "./media/characters/zander-rose/front.svg",
  31282. extra: 916 / 797,
  31283. bottom: 17 / 933
  31284. }
  31285. },
  31286. back: {
  31287. height: math.unit(1 + 3 / 12, "feet"),
  31288. weight: math.unit(80, "lb"),
  31289. name: "Back",
  31290. image: {
  31291. source: "./media/characters/zander-rose/back.svg",
  31292. extra: 903 / 779,
  31293. bottom: 31 / 934
  31294. }
  31295. },
  31296. },
  31297. [
  31298. {
  31299. name: "Normal",
  31300. height: math.unit(1 + 3 / 12, "feet"),
  31301. default: true
  31302. },
  31303. ]
  31304. ))
  31305. characterMakers.push(() => makeCharacter(
  31306. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  31307. {
  31308. anthro: {
  31309. height: math.unit(6, "feet"),
  31310. weight: math.unit(150, "lb"),
  31311. name: "Anthro",
  31312. image: {
  31313. source: "./media/characters/razz/anthro.svg",
  31314. extra: 1437 / 1343,
  31315. bottom: 48 / 1485
  31316. }
  31317. },
  31318. feral: {
  31319. height: math.unit(6, "feet"),
  31320. weight: math.unit(150, "lb"),
  31321. name: "Feral",
  31322. image: {
  31323. source: "./media/characters/razz/feral.svg",
  31324. extra: 2569 / 1385,
  31325. bottom: 95 / 2664
  31326. }
  31327. },
  31328. },
  31329. [
  31330. {
  31331. name: "Normal",
  31332. height: math.unit(6, "feet"),
  31333. default: true
  31334. },
  31335. ]
  31336. ))
  31337. characterMakers.push(() => makeCharacter(
  31338. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  31339. {
  31340. front: {
  31341. height: math.unit(9 + 4 / 12, "feet"),
  31342. weight: math.unit(500, "lb"),
  31343. name: "Front",
  31344. image: {
  31345. source: "./media/characters/morrigan/front.svg",
  31346. extra: 2707 / 2579,
  31347. bottom: 156 / 2863
  31348. }
  31349. },
  31350. },
  31351. [
  31352. {
  31353. name: "Normal",
  31354. height: math.unit(9 + 4 / 12, "feet"),
  31355. default: true
  31356. },
  31357. ]
  31358. ))
  31359. characterMakers.push(() => makeCharacter(
  31360. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31361. {
  31362. front: {
  31363. height: math.unit(5, "stories"),
  31364. weight: math.unit(4000, "lb"),
  31365. name: "Front",
  31366. image: {
  31367. source: "./media/characters/jenene/front.svg",
  31368. extra: 1780 / 1710,
  31369. bottom: 57 / 1837
  31370. }
  31371. },
  31372. },
  31373. [
  31374. {
  31375. name: "Normal",
  31376. height: math.unit(5, "stories"),
  31377. default: true
  31378. },
  31379. ]
  31380. ))
  31381. characterMakers.push(() => makeCharacter(
  31382. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31383. {
  31384. taurSfw: {
  31385. height: math.unit(10, "meters"),
  31386. weight: math.unit(17500, "kg"),
  31387. name: "Taur",
  31388. image: {
  31389. source: "./media/characters/faey/taur-sfw.svg",
  31390. extra: 1200 / 968,
  31391. bottom: 41 / 1241
  31392. }
  31393. },
  31394. chestmaw: {
  31395. height: math.unit(2.01, "meters"),
  31396. name: "Chestmaw",
  31397. image: {
  31398. source: "./media/characters/faey/chestmaw.svg"
  31399. }
  31400. },
  31401. foot: {
  31402. height: math.unit(2.43, "meters"),
  31403. name: "Foot",
  31404. image: {
  31405. source: "./media/characters/faey/foot.svg"
  31406. }
  31407. },
  31408. jaws: {
  31409. height: math.unit(1.66, "meters"),
  31410. name: "Jaws",
  31411. image: {
  31412. source: "./media/characters/faey/jaws.svg"
  31413. }
  31414. },
  31415. tongues: {
  31416. height: math.unit(2.01, "meters"),
  31417. name: "Tongues",
  31418. image: {
  31419. source: "./media/characters/faey/tongues.svg"
  31420. }
  31421. },
  31422. },
  31423. [
  31424. {
  31425. name: "Small",
  31426. height: math.unit(10, "meters"),
  31427. default: true
  31428. },
  31429. {
  31430. name: "Big",
  31431. height: math.unit(500000, "km")
  31432. },
  31433. ]
  31434. ))
  31435. characterMakers.push(() => makeCharacter(
  31436. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31437. {
  31438. front: {
  31439. height: math.unit(7, "feet"),
  31440. weight: math.unit(275, "lb"),
  31441. name: "Front",
  31442. image: {
  31443. source: "./media/characters/roku/front.svg",
  31444. extra: 903 / 878,
  31445. bottom: 37 / 940
  31446. }
  31447. },
  31448. },
  31449. [
  31450. {
  31451. name: "Normal",
  31452. height: math.unit(7, "feet"),
  31453. default: true
  31454. },
  31455. {
  31456. name: "Macro",
  31457. height: math.unit(500, "feet")
  31458. },
  31459. {
  31460. name: "Megamacro",
  31461. height: math.unit(200, "miles")
  31462. },
  31463. ]
  31464. ))
  31465. characterMakers.push(() => makeCharacter(
  31466. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31467. {
  31468. front: {
  31469. height: math.unit(6 + 2 / 12, "feet"),
  31470. weight: math.unit(150, "lb"),
  31471. name: "Front",
  31472. image: {
  31473. source: "./media/characters/lira/front.svg",
  31474. extra: 1727 / 1605,
  31475. bottom: 26 / 1753
  31476. }
  31477. },
  31478. back: {
  31479. height: math.unit(6 + 2 / 12, "feet"),
  31480. weight: math.unit(150, "lb"),
  31481. name: "Back",
  31482. image: {
  31483. source: "./media/characters/lira/back.svg",
  31484. extra: 1713/1621,
  31485. bottom: 20/1733
  31486. }
  31487. },
  31488. hand: {
  31489. height: math.unit(0.75, "feet"),
  31490. name: "Hand",
  31491. image: {
  31492. source: "./media/characters/lira/hand.svg"
  31493. }
  31494. },
  31495. maw: {
  31496. height: math.unit(0.65, "feet"),
  31497. name: "Maw",
  31498. image: {
  31499. source: "./media/characters/lira/maw.svg"
  31500. }
  31501. },
  31502. pawDigi: {
  31503. height: math.unit(1.6, "feet"),
  31504. name: "Paw Digi",
  31505. image: {
  31506. source: "./media/characters/lira/paw-digi.svg"
  31507. }
  31508. },
  31509. pawPlanti: {
  31510. height: math.unit(1.4, "feet"),
  31511. name: "Paw Planti",
  31512. image: {
  31513. source: "./media/characters/lira/paw-planti.svg"
  31514. }
  31515. },
  31516. },
  31517. [
  31518. {
  31519. name: "Normal",
  31520. height: math.unit(6 + 2 / 12, "feet"),
  31521. default: true
  31522. },
  31523. {
  31524. name: "Macro",
  31525. height: math.unit(100, "feet")
  31526. },
  31527. {
  31528. name: "Macro²",
  31529. height: math.unit(1600, "feet")
  31530. },
  31531. {
  31532. name: "Planetary",
  31533. height: math.unit(20, "earths")
  31534. },
  31535. ]
  31536. ))
  31537. characterMakers.push(() => makeCharacter(
  31538. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31539. {
  31540. front: {
  31541. height: math.unit(6, "feet"),
  31542. weight: math.unit(150, "lb"),
  31543. name: "Front",
  31544. image: {
  31545. source: "./media/characters/hadjet/front.svg",
  31546. extra: 1480 / 1346,
  31547. bottom: 26 / 1506
  31548. }
  31549. },
  31550. frontNsfw: {
  31551. height: math.unit(6, "feet"),
  31552. weight: math.unit(150, "lb"),
  31553. name: "Front (NSFW)",
  31554. image: {
  31555. source: "./media/characters/hadjet/front-nsfw.svg",
  31556. extra: 1440 / 1358,
  31557. bottom: 52 / 1492
  31558. }
  31559. },
  31560. },
  31561. [
  31562. {
  31563. name: "Macro",
  31564. height: math.unit(10, "stories"),
  31565. default: true
  31566. },
  31567. {
  31568. name: "Megamacro",
  31569. height: math.unit(1.5, "miles")
  31570. },
  31571. {
  31572. name: "Megamacro+",
  31573. height: math.unit(5, "miles")
  31574. },
  31575. ]
  31576. ))
  31577. characterMakers.push(() => makeCharacter(
  31578. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31579. {
  31580. side: {
  31581. height: math.unit(106, "feet"),
  31582. weight: math.unit(500, "tonnes"),
  31583. name: "Side",
  31584. image: {
  31585. source: "./media/characters/kodran/side.svg",
  31586. extra: 553 / 480,
  31587. bottom: 33 / 586
  31588. }
  31589. },
  31590. front: {
  31591. height: math.unit(132, "feet"),
  31592. weight: math.unit(500, "tonnes"),
  31593. name: "Front",
  31594. image: {
  31595. source: "./media/characters/kodran/front.svg",
  31596. extra: 667 / 643,
  31597. bottom: 42 / 709
  31598. }
  31599. },
  31600. flying: {
  31601. height: math.unit(350, "feet"),
  31602. weight: math.unit(500, "tonnes"),
  31603. name: "Flying",
  31604. image: {
  31605. source: "./media/characters/kodran/flying.svg"
  31606. }
  31607. },
  31608. foot: {
  31609. height: math.unit(33, "feet"),
  31610. name: "Foot",
  31611. image: {
  31612. source: "./media/characters/kodran/foot.svg"
  31613. }
  31614. },
  31615. footFront: {
  31616. height: math.unit(19, "feet"),
  31617. name: "Foot (Front)",
  31618. image: {
  31619. source: "./media/characters/kodran/foot-front.svg",
  31620. extra: 261 / 261,
  31621. bottom: 91 / 352
  31622. }
  31623. },
  31624. headFront: {
  31625. height: math.unit(53, "feet"),
  31626. name: "Head (Front)",
  31627. image: {
  31628. source: "./media/characters/kodran/head-front.svg"
  31629. }
  31630. },
  31631. headSide: {
  31632. height: math.unit(65, "feet"),
  31633. name: "Head (Side)",
  31634. image: {
  31635. source: "./media/characters/kodran/head-side.svg"
  31636. }
  31637. },
  31638. throat: {
  31639. height: math.unit(79, "feet"),
  31640. name: "Throat",
  31641. image: {
  31642. source: "./media/characters/kodran/throat.svg"
  31643. }
  31644. },
  31645. },
  31646. [
  31647. {
  31648. name: "Large",
  31649. height: math.unit(106, "feet"),
  31650. default: true
  31651. },
  31652. ]
  31653. ))
  31654. characterMakers.push(() => makeCharacter(
  31655. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31656. {
  31657. side: {
  31658. height: math.unit(11, "feet"),
  31659. weight: math.unit(150, "lb"),
  31660. name: "Side",
  31661. image: {
  31662. source: "./media/characters/pyxaron/side.svg",
  31663. extra: 305 / 195,
  31664. bottom: 17 / 322
  31665. }
  31666. },
  31667. },
  31668. [
  31669. {
  31670. name: "Normal",
  31671. height: math.unit(11, "feet"),
  31672. default: true
  31673. },
  31674. ]
  31675. ))
  31676. characterMakers.push(() => makeCharacter(
  31677. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31678. {
  31679. front: {
  31680. height: math.unit(6, "feet"),
  31681. weight: math.unit(150, "lb"),
  31682. name: "Front",
  31683. image: {
  31684. source: "./media/characters/meep/front.svg",
  31685. extra: 88 / 80,
  31686. bottom: 6 / 94
  31687. }
  31688. },
  31689. },
  31690. [
  31691. {
  31692. name: "Fun Sized",
  31693. height: math.unit(2, "inches"),
  31694. default: true
  31695. },
  31696. {
  31697. name: "Friend Sized",
  31698. height: math.unit(8, "inches")
  31699. },
  31700. ]
  31701. ))
  31702. characterMakers.push(() => makeCharacter(
  31703. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31704. {
  31705. front: {
  31706. height: math.unit(15, "feet"),
  31707. weight: math.unit(2500, "lb"),
  31708. name: "Front",
  31709. image: {
  31710. source: "./media/characters/holly-rabbit/front.svg",
  31711. extra: 1433 / 1233,
  31712. bottom: 125 / 1558
  31713. }
  31714. },
  31715. dick: {
  31716. height: math.unit(4.6, "feet"),
  31717. name: "Dick",
  31718. image: {
  31719. source: "./media/characters/holly-rabbit/dick.svg"
  31720. }
  31721. },
  31722. },
  31723. [
  31724. {
  31725. name: "Normal",
  31726. height: math.unit(15, "feet"),
  31727. default: true
  31728. },
  31729. {
  31730. name: "Macro",
  31731. height: math.unit(250, "feet")
  31732. },
  31733. {
  31734. name: "Macro+",
  31735. height: math.unit(2500, "feet")
  31736. },
  31737. ]
  31738. ))
  31739. characterMakers.push(() => makeCharacter(
  31740. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31741. {
  31742. front: {
  31743. height: math.unit(3.02, "meters"),
  31744. weight: math.unit(500, "kg"),
  31745. name: "Front",
  31746. image: {
  31747. source: "./media/characters/drena/front.svg",
  31748. extra: 282 / 243,
  31749. bottom: 8 / 290
  31750. }
  31751. },
  31752. side: {
  31753. height: math.unit(3.02, "meters"),
  31754. weight: math.unit(500, "kg"),
  31755. name: "Side",
  31756. image: {
  31757. source: "./media/characters/drena/side.svg",
  31758. extra: 280 / 245,
  31759. bottom: 10 / 290
  31760. }
  31761. },
  31762. back: {
  31763. height: math.unit(3.02, "meters"),
  31764. weight: math.unit(500, "kg"),
  31765. name: "Back",
  31766. image: {
  31767. source: "./media/characters/drena/back.svg",
  31768. extra: 278 / 243,
  31769. bottom: 2 / 280
  31770. }
  31771. },
  31772. foot: {
  31773. height: math.unit(0.75, "meters"),
  31774. name: "Foot",
  31775. image: {
  31776. source: "./media/characters/drena/foot.svg"
  31777. }
  31778. },
  31779. maw: {
  31780. height: math.unit(0.82, "meters"),
  31781. name: "Maw",
  31782. image: {
  31783. source: "./media/characters/drena/maw.svg"
  31784. }
  31785. },
  31786. eating: {
  31787. height: math.unit(0.75, "meters"),
  31788. name: "Eating",
  31789. image: {
  31790. source: "./media/characters/drena/eating.svg"
  31791. }
  31792. },
  31793. rump: {
  31794. height: math.unit(0.93, "meters"),
  31795. name: "Rump",
  31796. image: {
  31797. source: "./media/characters/drena/rump.svg"
  31798. }
  31799. },
  31800. },
  31801. [
  31802. {
  31803. name: "Normal",
  31804. height: math.unit(3.02, "meters"),
  31805. default: true
  31806. },
  31807. ]
  31808. ))
  31809. characterMakers.push(() => makeCharacter(
  31810. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31811. {
  31812. front: {
  31813. height: math.unit(6 + 4 / 12, "feet"),
  31814. weight: math.unit(250, "lb"),
  31815. name: "Front",
  31816. image: {
  31817. source: "./media/characters/remmyzilla/front.svg",
  31818. extra: 4033 / 3588,
  31819. bottom: 123 / 4156
  31820. }
  31821. },
  31822. back: {
  31823. height: math.unit(6 + 4 / 12, "feet"),
  31824. weight: math.unit(250, "lb"),
  31825. name: "Back",
  31826. image: {
  31827. source: "./media/characters/remmyzilla/back.svg",
  31828. extra: 1696/1602,
  31829. bottom: 63/1759
  31830. }
  31831. },
  31832. paw: {
  31833. height: math.unit(1.73, "feet"),
  31834. name: "Paw",
  31835. image: {
  31836. source: "./media/characters/remmyzilla/paw.svg"
  31837. },
  31838. extraAttributes: {
  31839. "toeSize": {
  31840. name: "Toe Size",
  31841. power: 2,
  31842. type: "area",
  31843. base: math.unit(0.0035, "m^2")
  31844. },
  31845. "padSize": {
  31846. name: "Pad Size",
  31847. power: 2,
  31848. type: "area",
  31849. base: math.unit(0.015, "m^2")
  31850. },
  31851. "pawsize": {
  31852. name: "Paw Size",
  31853. power: 2,
  31854. type: "area",
  31855. base: math.unit(0.072, "m^2")
  31856. },
  31857. }
  31858. },
  31859. maw: {
  31860. height: math.unit(1.73, "feet"),
  31861. name: "Maw",
  31862. image: {
  31863. source: "./media/characters/remmyzilla/maw.svg"
  31864. }
  31865. },
  31866. },
  31867. [
  31868. {
  31869. name: "Normal",
  31870. height: math.unit(6 + 4 / 12, "feet")
  31871. },
  31872. {
  31873. name: "Minimacro",
  31874. height: math.unit(12 + 8 / 12, "feet")
  31875. },
  31876. {
  31877. name: "Normal",
  31878. height: math.unit(640, "feet"),
  31879. default: true
  31880. },
  31881. {
  31882. name: "Megamacro",
  31883. height: math.unit(6400, "feet")
  31884. },
  31885. {
  31886. name: "Gigamacro",
  31887. height: math.unit(64000, "miles")
  31888. },
  31889. ]
  31890. ))
  31891. characterMakers.push(() => makeCharacter(
  31892. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31893. {
  31894. front: {
  31895. height: math.unit(2.5, "meters"),
  31896. weight: math.unit(300, "lb"),
  31897. name: "Front",
  31898. image: {
  31899. source: "./media/characters/lawrence/front.svg",
  31900. extra: 357 / 335,
  31901. bottom: 30 / 387
  31902. }
  31903. },
  31904. back: {
  31905. height: math.unit(2.5, "meters"),
  31906. weight: math.unit(300, "lb"),
  31907. name: "Back",
  31908. image: {
  31909. source: "./media/characters/lawrence/back.svg",
  31910. extra: 357 / 338,
  31911. bottom: 16 / 373
  31912. }
  31913. },
  31914. head: {
  31915. height: math.unit(0.9, "meter"),
  31916. name: "Head",
  31917. image: {
  31918. source: "./media/characters/lawrence/head.svg"
  31919. }
  31920. },
  31921. maw: {
  31922. height: math.unit(0.7, "meter"),
  31923. name: "Maw",
  31924. image: {
  31925. source: "./media/characters/lawrence/maw.svg"
  31926. }
  31927. },
  31928. footBottom: {
  31929. height: math.unit(0.5, "meter"),
  31930. name: "Foot (Bottom)",
  31931. image: {
  31932. source: "./media/characters/lawrence/foot-bottom.svg"
  31933. }
  31934. },
  31935. footTop: {
  31936. height: math.unit(0.5, "meter"),
  31937. name: "Foot (Top)",
  31938. image: {
  31939. source: "./media/characters/lawrence/foot-top.svg"
  31940. }
  31941. },
  31942. },
  31943. [
  31944. {
  31945. name: "Normal",
  31946. height: math.unit(2.5, "meters"),
  31947. default: true
  31948. },
  31949. {
  31950. name: "Macro",
  31951. height: math.unit(95, "meters")
  31952. },
  31953. {
  31954. name: "Megamacro",
  31955. height: math.unit(150, "km")
  31956. },
  31957. ]
  31958. ))
  31959. characterMakers.push(() => makeCharacter(
  31960. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31961. {
  31962. front: {
  31963. height: math.unit(4.2, "meters"),
  31964. preyCapacity: math.unit(50, "m^3"),
  31965. weight: math.unit(30, "tonnes"),
  31966. name: "Front",
  31967. image: {
  31968. source: "./media/characters/sydney/front.svg",
  31969. extra: 1177/1129,
  31970. bottom: 197/1374
  31971. },
  31972. extraAttributes: {
  31973. "length": {
  31974. name: "Length",
  31975. power: 1,
  31976. type: "length",
  31977. base: math.unit(21, "meters")
  31978. },
  31979. }
  31980. },
  31981. },
  31982. [
  31983. {
  31984. name: "Normal",
  31985. height: math.unit(4.2, "meters"),
  31986. default: true
  31987. },
  31988. ]
  31989. ))
  31990. characterMakers.push(() => makeCharacter(
  31991. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31992. {
  31993. back: {
  31994. height: math.unit(201, "feet"),
  31995. name: "Back",
  31996. image: {
  31997. source: "./media/characters/jessica/back.svg",
  31998. extra: 273 / 259,
  31999. bottom: 7 / 280
  32000. }
  32001. },
  32002. },
  32003. [
  32004. {
  32005. name: "Normal",
  32006. height: math.unit(201, "feet"),
  32007. default: true
  32008. },
  32009. {
  32010. name: "Megamacro",
  32011. height: math.unit(8, "miles")
  32012. },
  32013. ]
  32014. ))
  32015. characterMakers.push(() => makeCharacter(
  32016. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  32017. {
  32018. side: {
  32019. height: math.unit(5.6, "m"),
  32020. weight: math.unit(8000, "kg"),
  32021. name: "Side",
  32022. image: {
  32023. source: "./media/characters/victoria/side.svg",
  32024. extra: 1542/1229,
  32025. bottom: 124/1666
  32026. }
  32027. },
  32028. maw: {
  32029. height: math.unit(7.14, "feet"),
  32030. name: "Maw",
  32031. image: {
  32032. source: "./media/characters/victoria/maw.svg"
  32033. }
  32034. },
  32035. },
  32036. [
  32037. {
  32038. name: "Normal",
  32039. height: math.unit(5.6, "m"),
  32040. default: true
  32041. },
  32042. ]
  32043. ))
  32044. characterMakers.push(() => makeCharacter(
  32045. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  32046. {
  32047. front: {
  32048. height: math.unit(5 + 6 / 12, "feet"),
  32049. name: "Front",
  32050. image: {
  32051. source: "./media/characters/cat/cat-front.svg",
  32052. extra: 1422/1262,
  32053. bottom: 61/1483
  32054. },
  32055. form: "cat",
  32056. default: true
  32057. },
  32058. back: {
  32059. height: math.unit(5 + 6 / 12, "feet"),
  32060. name: "Back",
  32061. image: {
  32062. source: "./media/characters/cat/cat-back.svg",
  32063. extra: 1466/1301,
  32064. bottom: 19/1485
  32065. },
  32066. form: "cat"
  32067. },
  32068. taur: {
  32069. height: math.unit(7, "feet"),
  32070. name: "Side",
  32071. image: {
  32072. source: "./media/characters/cat/taur-side.svg",
  32073. extra: 1389/1233,
  32074. bottom: 83/1472
  32075. },
  32076. form: "taur",
  32077. default: true
  32078. },
  32079. lucarioFront: {
  32080. height: math.unit(4, "feet"),
  32081. name: "Front",
  32082. image: {
  32083. source: "./media/characters/cat/lucario-front.svg",
  32084. extra: 1149/1019,
  32085. bottom: 84/1233
  32086. },
  32087. form: "lucario",
  32088. default: true
  32089. },
  32090. lucarioBack: {
  32091. height: math.unit(4, "feet"),
  32092. name: "Back",
  32093. image: {
  32094. source: "./media/characters/cat/lucario-back.svg",
  32095. extra: 1190/1059,
  32096. bottom: 33/1223
  32097. },
  32098. form: "lucario"
  32099. },
  32100. riolu_front: {
  32101. height: math.unit(2 + 4/12, "feet"),
  32102. name: "Front",
  32103. image: {
  32104. source: "./media/characters/cat/riolu-front.svg",
  32105. extra: 1104/956,
  32106. bottom: 70/1174
  32107. },
  32108. form: "riolu",
  32109. default: true
  32110. },
  32111. nickit: {
  32112. height: math.unit(2, "feet"),
  32113. name: "Side",
  32114. image: {
  32115. source: "./media/characters/cat/nickit-side.svg",
  32116. extra: 1087/852,
  32117. bottom: 67/1154
  32118. },
  32119. form: "nickit",
  32120. default: true
  32121. },
  32122. lopunnyFront: {
  32123. height: math.unit(5, "feet"),
  32124. name: "Front",
  32125. image: {
  32126. source: "./media/characters/cat/lopunny-front.svg",
  32127. extra: 1217/1078,
  32128. bottom: 23/1240
  32129. },
  32130. form: "lopunny",
  32131. default: true
  32132. },
  32133. lopunnyBack: {
  32134. height: math.unit(5, "feet"),
  32135. name: "Back",
  32136. image: {
  32137. source: "./media/characters/cat/lopunny-back.svg",
  32138. extra: 1205/1057,
  32139. bottom: 33/1238
  32140. },
  32141. form: "lopunny"
  32142. },
  32143. dog_front: {
  32144. height: math.unit(5 + 9/12, "feet"),
  32145. name: "Front",
  32146. image: {
  32147. source: "./media/characters/cat/dog-front.svg",
  32148. extra: 1403/1309,
  32149. bottom: 31/1434
  32150. },
  32151. form: "dog",
  32152. default: true
  32153. },
  32154. dog_back: {
  32155. height: math.unit(5 + 9/12, "feet"),
  32156. name: "Back",
  32157. image: {
  32158. source: "./media/characters/cat/dog-back.svg",
  32159. extra: 1393/1297,
  32160. bottom: 38/1431
  32161. },
  32162. form: "dog",
  32163. },
  32164. pikachu_front: {
  32165. height: math.unit(2.64, "feet"),
  32166. name: "Front",
  32167. image: {
  32168. source: "./media/characters/cat/pikachu-front.svg",
  32169. extra: 1224/958,
  32170. bottom: 34/1258
  32171. },
  32172. form: "pikachu",
  32173. default: true
  32174. },
  32175. pikachu_back: {
  32176. height: math.unit(2.64, "feet"),
  32177. name: "Back",
  32178. image: {
  32179. source: "./media/characters/cat/pikachu-back.svg",
  32180. extra: 1228/958,
  32181. bottom: 16/1244
  32182. },
  32183. form: "pikachu",
  32184. },
  32185. gigachuFront: {
  32186. height: math.unit(75, "feet"),
  32187. name: "Front",
  32188. image: {
  32189. source: "./media/characters/cat/gigachu-front.svg",
  32190. extra: 1239/1027,
  32191. bottom: 32/1271
  32192. },
  32193. form: "gigachu",
  32194. default: true
  32195. },
  32196. gigachuBack: {
  32197. height: math.unit(75, "feet"),
  32198. name: "Back",
  32199. image: {
  32200. source: "./media/characters/cat/gigachu-back.svg",
  32201. extra: 1229/1030,
  32202. bottom: 9/1238
  32203. },
  32204. form: "gigachu"
  32205. },
  32206. },
  32207. [
  32208. {
  32209. name: "Really small",
  32210. height: math.unit(1, "nm"),
  32211. allForms: true
  32212. },
  32213. {
  32214. name: "Micro",
  32215. height: math.unit(5, "inches"),
  32216. allForms: true
  32217. },
  32218. {
  32219. name: "Normal",
  32220. height: math.unit(5 + 6 / 12, "feet"),
  32221. default: true,
  32222. form: "cat"
  32223. },
  32224. {
  32225. name: "Normal",
  32226. height: math.unit(7, "feet"),
  32227. default: true,
  32228. form: "taur"
  32229. },
  32230. {
  32231. name: "Normal",
  32232. height: math.unit(4, "feet"),
  32233. default: true,
  32234. form: "lucario"
  32235. },
  32236. {
  32237. name: "Normal",
  32238. height: math.unit(2, "feet"),
  32239. default: true,
  32240. form: "nickit"
  32241. },
  32242. {
  32243. name: "Normal",
  32244. height: math.unit(5, "feet"),
  32245. default: true,
  32246. form: "lopunny"
  32247. },
  32248. {
  32249. name: "Normal",
  32250. height: math.unit(2 + 4/12, "feet"),
  32251. default: true,
  32252. form: "riolu"
  32253. },
  32254. {
  32255. name: "Normal",
  32256. height: math.unit(5 + 6 / 12, "feet"),
  32257. default: true,
  32258. form: "dog"
  32259. },
  32260. {
  32261. name: "Macro",
  32262. height: math.unit(50, "feet"),
  32263. allForms: true
  32264. },
  32265. {
  32266. name: "Normal",
  32267. height: math.unit(2.64, "feet"),
  32268. default: true,
  32269. form: "pikachu"
  32270. },
  32271. {
  32272. name: "Dynamax",
  32273. height: math.unit(75, "feet"),
  32274. form: "gigachu",
  32275. default: true
  32276. },
  32277. {
  32278. name: "Macro+",
  32279. height: math.unit(150, "feet"),
  32280. allForms: true
  32281. },
  32282. {
  32283. name: "Megamacro",
  32284. height: math.unit(100, "miles"),
  32285. allForms: true
  32286. },
  32287. ],
  32288. {
  32289. "cat": {
  32290. name: "Cat",
  32291. default: true
  32292. },
  32293. "taur": {
  32294. name: "Taur",
  32295. },
  32296. "lucario": {
  32297. name: "Lucario",
  32298. },
  32299. "riolu": {
  32300. name: "Riolu",
  32301. },
  32302. "nickit": {
  32303. name: "Nickit",
  32304. },
  32305. "lopunny": {
  32306. name: "Lopunny",
  32307. },
  32308. "dog": {
  32309. name: "Dog",
  32310. },
  32311. "pikachu": {
  32312. name: "Pikachu",
  32313. },
  32314. "gigachu": {
  32315. name: "Gigachu",
  32316. ignoreAllFormSizes: true
  32317. }
  32318. }
  32319. ))
  32320. characterMakers.push(() => makeCharacter(
  32321. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  32322. {
  32323. front: {
  32324. height: math.unit(63.4, "meters"),
  32325. weight: math.unit(3.28349e+6, "kilograms"),
  32326. name: "Front",
  32327. image: {
  32328. source: "./media/characters/kirina-violet/front.svg",
  32329. extra: 2812 / 2725,
  32330. bottom: 0 / 2812
  32331. }
  32332. },
  32333. back: {
  32334. height: math.unit(63.4, "meters"),
  32335. weight: math.unit(3.28349e+6, "kilograms"),
  32336. name: "Back",
  32337. image: {
  32338. source: "./media/characters/kirina-violet/back.svg",
  32339. extra: 2812 / 2725,
  32340. bottom: 0 / 2812
  32341. }
  32342. },
  32343. mouth: {
  32344. height: math.unit(4.35, "meters"),
  32345. name: "Mouth",
  32346. image: {
  32347. source: "./media/characters/kirina-violet/mouth.svg"
  32348. }
  32349. },
  32350. paw: {
  32351. height: math.unit(5.6, "meters"),
  32352. name: "Paw",
  32353. image: {
  32354. source: "./media/characters/kirina-violet/paw.svg"
  32355. }
  32356. },
  32357. tail: {
  32358. height: math.unit(18, "meters"),
  32359. name: "Tail",
  32360. image: {
  32361. source: "./media/characters/kirina-violet/tail.svg"
  32362. }
  32363. },
  32364. },
  32365. [
  32366. {
  32367. name: "Macro",
  32368. height: math.unit(63.4, "meters"),
  32369. default: true
  32370. },
  32371. ]
  32372. ))
  32373. characterMakers.push(() => makeCharacter(
  32374. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32375. {
  32376. front: {
  32377. height: math.unit(6, "feet"),
  32378. weight: math.unit(150, "lb"),
  32379. name: "Front",
  32380. image: {
  32381. source: "./media/characters/sfaiyan/front.svg",
  32382. extra: 999 / 978,
  32383. bottom: 5 / 1004
  32384. }
  32385. },
  32386. },
  32387. [
  32388. {
  32389. name: "Normal",
  32390. height: math.unit(1.82, "meters")
  32391. },
  32392. {
  32393. name: "Giant",
  32394. height: math.unit(2.27, "km"),
  32395. default: true
  32396. },
  32397. ]
  32398. ))
  32399. characterMakers.push(() => makeCharacter(
  32400. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32401. {
  32402. front: {
  32403. height: math.unit(179, "cm"),
  32404. weight: math.unit(100, "kg"),
  32405. name: "Front",
  32406. image: {
  32407. source: "./media/characters/raunehkeli/front.svg",
  32408. extra: 1934 / 1926,
  32409. bottom: 0 / 1934
  32410. }
  32411. },
  32412. },
  32413. [
  32414. {
  32415. name: "Normal",
  32416. height: math.unit(179, "cm")
  32417. },
  32418. {
  32419. name: "Maximum",
  32420. height: math.unit(575, "meters"),
  32421. default: true
  32422. },
  32423. ]
  32424. ))
  32425. characterMakers.push(() => makeCharacter(
  32426. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32427. {
  32428. dressed: {
  32429. height: math.unit(6 + 2/12, "feet"),
  32430. weight: math.unit(150, "lb"),
  32431. name: "Dressed",
  32432. image: {
  32433. source: "./media/characters/beatrice-the-behemoth-heathers/dressed.svg",
  32434. extra: 2620/2496,
  32435. bottom: 66/2686
  32436. }
  32437. },
  32438. nude: {
  32439. height: math.unit(6 + 2/12, "feet"),
  32440. weight: math.unit(150, "lb"),
  32441. name: "Nude",
  32442. image: {
  32443. source: "./media/characters/beatrice-the-behemoth-heathers/nude.svg",
  32444. extra: 2620/2496,
  32445. bottom: 66/2686
  32446. }
  32447. },
  32448. },
  32449. [
  32450. {
  32451. name: "Normal",
  32452. height: math.unit(6 + 2 / 12, "feet")
  32453. },
  32454. {
  32455. name: "Max Height",
  32456. height: math.unit(1181, "feet"),
  32457. default: true
  32458. },
  32459. ]
  32460. ))
  32461. characterMakers.push(() => makeCharacter(
  32462. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32463. {
  32464. front: {
  32465. height: math.unit(5 + 6 / 12, "feet"),
  32466. weight: math.unit(108, "lb"),
  32467. name: "Front",
  32468. image: {
  32469. source: "./media/characters/lilith-zott/front.svg",
  32470. extra: 2415/2133,
  32471. bottom: 193/2608
  32472. }
  32473. },
  32474. },
  32475. [
  32476. {
  32477. name: "Base Height",
  32478. height: math.unit(5 + 6 / 12, "feet")
  32479. },
  32480. {
  32481. name: "Preferred Height",
  32482. height: math.unit(200, "feet")
  32483. },
  32484. {
  32485. name: "Max Height",
  32486. height: math.unit(1030, "feet"),
  32487. default: true
  32488. },
  32489. ]
  32490. ))
  32491. characterMakers.push(() => makeCharacter(
  32492. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32493. {
  32494. super: {
  32495. height: math.unit(6 + 2/12, "feet"),
  32496. weight: math.unit(150, "lb"),
  32497. name: "Super",
  32498. image: {
  32499. source: "./media/characters/holly-the-mega-mousky-heathers/super.svg",
  32500. extra: 2555/2387,
  32501. bottom: 50/2605
  32502. }
  32503. },
  32504. casual: {
  32505. height: math.unit(6 + 2/12, "feet"),
  32506. weight: math.unit(150, "lb"),
  32507. name: "Casual",
  32508. image: {
  32509. source: "./media/characters/holly-the-mega-mousky-heathers/casual.svg",
  32510. extra: 2555/2387,
  32511. bottom: 50/2605
  32512. }
  32513. },
  32514. hand: {
  32515. height: math.unit(1.08, "feet"),
  32516. name: "Hand",
  32517. image: {
  32518. source: "./media/characters/holly-the-mega-mousky-heathers/hand.svg"
  32519. }
  32520. },
  32521. paw: {
  32522. height: math.unit(1.33, "feet"),
  32523. name: "Paw",
  32524. image: {
  32525. source: "./media/characters/holly-the-mega-mousky-heathers/paw.svg"
  32526. }
  32527. },
  32528. },
  32529. [
  32530. {
  32531. name: "Normal",
  32532. height: math.unit(6 + 2/12, "feet")
  32533. },
  32534. {
  32535. name: "Preferred Height",
  32536. height: math.unit(220, "feet")
  32537. },
  32538. {
  32539. name: "Max Height",
  32540. height: math.unit(1100, "feet"),
  32541. default: true
  32542. },
  32543. ]
  32544. ))
  32545. characterMakers.push(() => makeCharacter(
  32546. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32547. {
  32548. front: {
  32549. height: math.unit(100, "miles"),
  32550. name: "Front",
  32551. image: {
  32552. source: "./media/characters/sona/front.svg",
  32553. extra: 2433 / 2201,
  32554. bottom: 53 / 2486
  32555. }
  32556. },
  32557. foot: {
  32558. height: math.unit(16.1, "miles"),
  32559. name: "Foot",
  32560. image: {
  32561. source: "./media/characters/sona/foot.svg"
  32562. }
  32563. },
  32564. },
  32565. [
  32566. {
  32567. name: "Macro",
  32568. height: math.unit(100, "miles"),
  32569. default: true
  32570. },
  32571. ]
  32572. ))
  32573. characterMakers.push(() => makeCharacter(
  32574. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32575. {
  32576. front: {
  32577. height: math.unit(6, "feet"),
  32578. weight: math.unit(150, "lb"),
  32579. name: "Front",
  32580. image: {
  32581. source: "./media/characters/bailey/front.svg",
  32582. extra: 1778 / 1724,
  32583. bottom: 30 / 1808
  32584. }
  32585. },
  32586. },
  32587. [
  32588. {
  32589. name: "Micro",
  32590. height: math.unit(4, "inches")
  32591. },
  32592. {
  32593. name: "Normal",
  32594. height: math.unit(5 + 5 / 12, "feet"),
  32595. default: true
  32596. },
  32597. {
  32598. name: "Macro",
  32599. height: math.unit(250, "feet")
  32600. },
  32601. {
  32602. name: "Megamacro",
  32603. height: math.unit(100, "miles")
  32604. },
  32605. ]
  32606. ))
  32607. characterMakers.push(() => makeCharacter(
  32608. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32609. {
  32610. front: {
  32611. height: math.unit(5 + 2 / 12, "feet"),
  32612. weight: math.unit(120, "lb"),
  32613. name: "Front",
  32614. image: {
  32615. source: "./media/characters/snaps/front.svg",
  32616. extra: 2370 / 2177,
  32617. bottom: 48 / 2418
  32618. }
  32619. },
  32620. back: {
  32621. height: math.unit(5 + 2 / 12, "feet"),
  32622. weight: math.unit(120, "lb"),
  32623. name: "Back",
  32624. image: {
  32625. source: "./media/characters/snaps/back.svg",
  32626. extra: 2408 / 2258,
  32627. bottom: 15 / 2423
  32628. }
  32629. },
  32630. },
  32631. [
  32632. {
  32633. name: "Micro",
  32634. height: math.unit(9, "inches")
  32635. },
  32636. {
  32637. name: "Normal",
  32638. height: math.unit(5 + 2 / 12, "feet"),
  32639. default: true
  32640. },
  32641. {
  32642. name: "Mini Macro",
  32643. height: math.unit(10, "feet")
  32644. },
  32645. ]
  32646. ))
  32647. characterMakers.push(() => makeCharacter(
  32648. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32649. {
  32650. front: {
  32651. height: math.unit(1.8, "meters"),
  32652. weight: math.unit(85, "kg"),
  32653. name: "Front",
  32654. image: {
  32655. source: "./media/characters/azteck/front.svg",
  32656. extra: 2815 / 2625,
  32657. bottom: 89 / 2904
  32658. }
  32659. },
  32660. back: {
  32661. height: math.unit(1.8, "meters"),
  32662. weight: math.unit(85, "kg"),
  32663. name: "Back",
  32664. image: {
  32665. source: "./media/characters/azteck/back.svg",
  32666. extra: 2856 / 2648,
  32667. bottom: 85 / 2941
  32668. }
  32669. },
  32670. frontDressed: {
  32671. height: math.unit(1.8, "meters"),
  32672. weight: math.unit(85, "kg"),
  32673. name: "Front (Dressed)",
  32674. image: {
  32675. source: "./media/characters/azteck/front-dressed.svg",
  32676. extra: 2147 / 2003,
  32677. bottom: 68 / 2215
  32678. }
  32679. },
  32680. head: {
  32681. height: math.unit(0.47, "meters"),
  32682. weight: math.unit(85, "kg"),
  32683. name: "Head",
  32684. image: {
  32685. source: "./media/characters/azteck/head.svg"
  32686. }
  32687. },
  32688. },
  32689. [
  32690. {
  32691. name: "Bite sized",
  32692. height: math.unit(16, "cm")
  32693. },
  32694. {
  32695. name: "Normal",
  32696. height: math.unit(1.8, "meters"),
  32697. default: true
  32698. },
  32699. ]
  32700. ))
  32701. characterMakers.push(() => makeCharacter(
  32702. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32703. {
  32704. front: {
  32705. height: math.unit(6, "feet"),
  32706. weight: math.unit(150, "lb"),
  32707. name: "Front",
  32708. image: {
  32709. source: "./media/characters/pidge/front.svg",
  32710. extra: 1936/1820,
  32711. bottom: 0/1936
  32712. }
  32713. },
  32714. back: {
  32715. height: math.unit(6, "feet"),
  32716. weight: math.unit(150, "lb"),
  32717. name: "Back",
  32718. image: {
  32719. source: "./media/characters/pidge/back.svg",
  32720. extra: 1938/1843,
  32721. bottom: 0/1938
  32722. }
  32723. },
  32724. casual: {
  32725. height: math.unit(6, "feet"),
  32726. weight: math.unit(150, "lb"),
  32727. name: "Casual",
  32728. image: {
  32729. source: "./media/characters/pidge/casual.svg",
  32730. extra: 1936/1820,
  32731. bottom: 0/1936
  32732. }
  32733. },
  32734. tech: {
  32735. height: math.unit(6, "feet"),
  32736. weight: math.unit(150, "lb"),
  32737. name: "Tech",
  32738. image: {
  32739. source: "./media/characters/pidge/tech.svg",
  32740. extra: 1802/1682,
  32741. bottom: 0/1802
  32742. }
  32743. },
  32744. head: {
  32745. height: math.unit(1.61, "feet"),
  32746. name: "Head",
  32747. image: {
  32748. source: "./media/characters/pidge/head.svg"
  32749. }
  32750. },
  32751. collar: {
  32752. height: math.unit(0.82, "feet"),
  32753. name: "Collar",
  32754. image: {
  32755. source: "./media/characters/pidge/collar.svg"
  32756. }
  32757. },
  32758. },
  32759. [
  32760. {
  32761. name: "Macro",
  32762. height: math.unit(2, "mile"),
  32763. default: true
  32764. },
  32765. {
  32766. name: "PUPPY",
  32767. height: math.unit(20, "miles")
  32768. },
  32769. ]
  32770. ))
  32771. characterMakers.push(() => makeCharacter(
  32772. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32773. {
  32774. front: {
  32775. height: math.unit(6, "feet"),
  32776. weight: math.unit(150, "lb"),
  32777. name: "Front",
  32778. image: {
  32779. source: "./media/characters/en/front.svg",
  32780. extra: 1697 / 1563,
  32781. bottom: 103 / 1800
  32782. }
  32783. },
  32784. back: {
  32785. height: math.unit(6, "feet"),
  32786. weight: math.unit(150, "lb"),
  32787. name: "Back",
  32788. image: {
  32789. source: "./media/characters/en/back.svg",
  32790. extra: 1700 / 1570,
  32791. bottom: 51 / 1751
  32792. }
  32793. },
  32794. frontDressed: {
  32795. height: math.unit(6, "feet"),
  32796. weight: math.unit(150, "lb"),
  32797. name: "Front (Dressed)",
  32798. image: {
  32799. source: "./media/characters/en/front-dressed.svg",
  32800. extra: 1697 / 1563,
  32801. bottom: 103 / 1800
  32802. }
  32803. },
  32804. backDressed: {
  32805. height: math.unit(6, "feet"),
  32806. weight: math.unit(150, "lb"),
  32807. name: "Back (Dressed)",
  32808. image: {
  32809. source: "./media/characters/en/back-dressed.svg",
  32810. extra: 1700 / 1570,
  32811. bottom: 51 / 1751
  32812. }
  32813. },
  32814. },
  32815. [
  32816. {
  32817. name: "Macro",
  32818. height: math.unit(210, "feet"),
  32819. default: true
  32820. },
  32821. ]
  32822. ))
  32823. characterMakers.push(() => makeCharacter(
  32824. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32825. {
  32826. front: {
  32827. height: math.unit(6, "feet"),
  32828. weight: math.unit(150, "lb"),
  32829. name: "Front",
  32830. image: {
  32831. source: "./media/characters/haze-orris/front.svg",
  32832. extra: 3975 / 3525,
  32833. bottom: 137 / 4112
  32834. }
  32835. },
  32836. },
  32837. [
  32838. {
  32839. name: "Micro",
  32840. height: math.unit(150, "mm"),
  32841. default: true
  32842. },
  32843. ]
  32844. ))
  32845. characterMakers.push(() => makeCharacter(
  32846. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32847. {
  32848. front: {
  32849. height: math.unit(6, "feet"),
  32850. weight: math.unit(150, "lb"),
  32851. name: "Front",
  32852. image: {
  32853. source: "./media/characters/casselene-yaro/front.svg",
  32854. extra: 4721 / 4541,
  32855. bottom: 82 / 4803
  32856. }
  32857. },
  32858. back: {
  32859. height: math.unit(6, "feet"),
  32860. weight: math.unit(150, "lb"),
  32861. name: "Back",
  32862. image: {
  32863. source: "./media/characters/casselene-yaro/back.svg",
  32864. extra: 4569 / 4377,
  32865. bottom: 69 / 4638
  32866. }
  32867. },
  32868. dressed: {
  32869. height: math.unit(6, "feet"),
  32870. weight: math.unit(150, "lb"),
  32871. name: "Dressed",
  32872. image: {
  32873. source: "./media/characters/casselene-yaro/dressed.svg",
  32874. extra: 4721 / 4541,
  32875. bottom: 82 / 4803
  32876. }
  32877. },
  32878. maw: {
  32879. height: math.unit(1, "feet"),
  32880. name: "Maw",
  32881. image: {
  32882. source: "./media/characters/casselene-yaro/maw.svg"
  32883. }
  32884. },
  32885. },
  32886. [
  32887. {
  32888. name: "Macro",
  32889. height: math.unit(190, "feet"),
  32890. default: true
  32891. },
  32892. ]
  32893. ))
  32894. characterMakers.push(() => makeCharacter(
  32895. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32896. {
  32897. front: {
  32898. height: math.unit(10, "feet"),
  32899. weight: math.unit(15015, "lb"),
  32900. name: "Front",
  32901. image: {
  32902. source: "./media/characters/platine/front.svg",
  32903. extra: 1741/1650,
  32904. bottom: 84/1825
  32905. }
  32906. },
  32907. side: {
  32908. height: math.unit(10, "feet"),
  32909. weight: math.unit(15015, "lb"),
  32910. name: "Side",
  32911. image: {
  32912. source: "./media/characters/platine/side.svg",
  32913. extra: 1790/1705,
  32914. bottom: 29/1819
  32915. }
  32916. },
  32917. },
  32918. [
  32919. {
  32920. name: "Normal",
  32921. height: math.unit(10, "feet"),
  32922. default: true
  32923. },
  32924. {
  32925. name: "Macro",
  32926. height: math.unit(100, "feet")
  32927. },
  32928. {
  32929. name: "Megamacro",
  32930. height: math.unit(1000, "feet")
  32931. },
  32932. ]
  32933. ))
  32934. characterMakers.push(() => makeCharacter(
  32935. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32936. {
  32937. front: {
  32938. height: math.unit(15 + 5 / 12, "feet"),
  32939. weight: math.unit(4600, "lb"),
  32940. name: "Front",
  32941. image: {
  32942. source: "./media/characters/neapolitan-ananassa/front.svg",
  32943. extra: 2903 / 2736,
  32944. bottom: 0 / 2903
  32945. }
  32946. },
  32947. side: {
  32948. height: math.unit(15 + 5 / 12, "feet"),
  32949. weight: math.unit(4600, "lb"),
  32950. name: "Side",
  32951. image: {
  32952. source: "./media/characters/neapolitan-ananassa/side.svg",
  32953. extra: 2925 / 2719,
  32954. bottom: 0 / 2925
  32955. }
  32956. },
  32957. back: {
  32958. height: math.unit(15 + 5 / 12, "feet"),
  32959. weight: math.unit(4600, "lb"),
  32960. name: "Back",
  32961. image: {
  32962. source: "./media/characters/neapolitan-ananassa/back.svg",
  32963. extra: 2903 / 2736,
  32964. bottom: 0 / 2903
  32965. }
  32966. },
  32967. },
  32968. [
  32969. {
  32970. name: "Normal",
  32971. height: math.unit(15 + 5 / 12, "feet"),
  32972. default: true
  32973. },
  32974. {
  32975. name: "Post-Millenium",
  32976. height: math.unit(35 + 5 / 12, "feet")
  32977. },
  32978. {
  32979. name: "Post-Era",
  32980. height: math.unit(450 + 5 / 12, "feet")
  32981. },
  32982. ]
  32983. ))
  32984. characterMakers.push(() => makeCharacter(
  32985. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32986. {
  32987. front: {
  32988. height: math.unit(300, "meters"),
  32989. weight: math.unit(125000, "tonnes"),
  32990. name: "Front",
  32991. image: {
  32992. source: "./media/characters/pazuzu/front.svg",
  32993. extra: 877 / 794,
  32994. bottom: 47 / 924
  32995. }
  32996. },
  32997. },
  32998. [
  32999. {
  33000. name: "Macro",
  33001. height: math.unit(300, "meters"),
  33002. default: true
  33003. },
  33004. ]
  33005. ))
  33006. characterMakers.push(() => makeCharacter(
  33007. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  33008. {
  33009. side: {
  33010. height: math.unit(10 + 7 / 12, "feet"),
  33011. weight: math.unit(2.5, "tons"),
  33012. name: "Side",
  33013. image: {
  33014. source: "./media/characters/aasha/side.svg",
  33015. extra: 1345 / 1245,
  33016. bottom: 111 / 1456
  33017. }
  33018. },
  33019. back: {
  33020. height: math.unit(10 + 7 / 12, "feet"),
  33021. weight: math.unit(2.5, "tons"),
  33022. name: "Back",
  33023. image: {
  33024. source: "./media/characters/aasha/back.svg",
  33025. extra: 1133 / 1057,
  33026. bottom: 257 / 1390
  33027. }
  33028. },
  33029. },
  33030. [
  33031. {
  33032. name: "Normal",
  33033. height: math.unit(10 + 7 / 12, "feet"),
  33034. default: true
  33035. },
  33036. ]
  33037. ))
  33038. characterMakers.push(() => makeCharacter(
  33039. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  33040. {
  33041. front: {
  33042. height: math.unit(6 + 3 / 12, "feet"),
  33043. name: "Front",
  33044. image: {
  33045. source: "./media/characters/nevan/front.svg",
  33046. extra: 704 / 704,
  33047. bottom: 28 / 732
  33048. }
  33049. },
  33050. back: {
  33051. height: math.unit(6 + 3 / 12, "feet"),
  33052. name: "Back",
  33053. image: {
  33054. source: "./media/characters/nevan/back.svg",
  33055. extra: 714 / 714,
  33056. bottom: 21 / 735
  33057. }
  33058. },
  33059. frontFlaccid: {
  33060. height: math.unit(6 + 3 / 12, "feet"),
  33061. name: "Front (Flaccid)",
  33062. image: {
  33063. source: "./media/characters/nevan/front-flaccid.svg",
  33064. extra: 704 / 704,
  33065. bottom: 28 / 732
  33066. }
  33067. },
  33068. frontErect: {
  33069. height: math.unit(6 + 3 / 12, "feet"),
  33070. name: "Front (Erect)",
  33071. image: {
  33072. source: "./media/characters/nevan/front-erect.svg",
  33073. extra: 704 / 704,
  33074. bottom: 28 / 732
  33075. }
  33076. },
  33077. backFlaccid: {
  33078. height: math.unit(6 + 3 / 12, "feet"),
  33079. name: "Back (Flaccid)",
  33080. image: {
  33081. source: "./media/characters/nevan/back-flaccid.svg",
  33082. extra: 714 / 714,
  33083. bottom: 21 / 735
  33084. }
  33085. },
  33086. },
  33087. [
  33088. {
  33089. name: "Normal",
  33090. height: math.unit(6 + 3 / 12, "feet"),
  33091. default: true
  33092. },
  33093. ]
  33094. ))
  33095. characterMakers.push(() => makeCharacter(
  33096. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  33097. {
  33098. front: {
  33099. height: math.unit(4, "feet"),
  33100. name: "Front",
  33101. image: {
  33102. source: "./media/characters/arhan/front.svg",
  33103. extra: 3368 / 3133,
  33104. bottom: 0 / 3368
  33105. }
  33106. },
  33107. side: {
  33108. height: math.unit(4, "feet"),
  33109. name: "Side",
  33110. image: {
  33111. source: "./media/characters/arhan/side.svg",
  33112. extra: 3347 / 3105,
  33113. bottom: 0 / 3347
  33114. }
  33115. },
  33116. tongue: {
  33117. height: math.unit(1.42, "feet"),
  33118. name: "Tongue",
  33119. image: {
  33120. source: "./media/characters/arhan/tongue.svg"
  33121. }
  33122. },
  33123. head: {
  33124. height: math.unit(0.85, "feet"),
  33125. name: "Head",
  33126. image: {
  33127. source: "./media/characters/arhan/head.svg"
  33128. }
  33129. },
  33130. },
  33131. [
  33132. {
  33133. name: "Normal",
  33134. height: math.unit(4, "feet"),
  33135. default: true
  33136. },
  33137. ]
  33138. ))
  33139. characterMakers.push(() => makeCharacter(
  33140. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  33141. {
  33142. front: {
  33143. height: math.unit(5 + 7.5 / 12, "feet"),
  33144. weight: math.unit(120, "lb"),
  33145. name: "Front",
  33146. image: {
  33147. source: "./media/characters/digi-duncan/front.svg",
  33148. extra: 330 / 326,
  33149. bottom: 16 / 346
  33150. }
  33151. },
  33152. side: {
  33153. height: math.unit(5 + 7.5 / 12, "feet"),
  33154. weight: math.unit(120, "lb"),
  33155. name: "Side",
  33156. image: {
  33157. source: "./media/characters/digi-duncan/side.svg",
  33158. extra: 341 / 337,
  33159. bottom: 1 / 342
  33160. }
  33161. },
  33162. back: {
  33163. height: math.unit(5 + 7.5 / 12, "feet"),
  33164. weight: math.unit(120, "lb"),
  33165. name: "Back",
  33166. image: {
  33167. source: "./media/characters/digi-duncan/back.svg",
  33168. extra: 330 / 326,
  33169. bottom: 12 / 342
  33170. }
  33171. },
  33172. },
  33173. [
  33174. {
  33175. name: "Speck",
  33176. height: math.unit(0.25, "mm")
  33177. },
  33178. {
  33179. name: "Micro",
  33180. height: math.unit(5, "mm")
  33181. },
  33182. {
  33183. name: "Tiny",
  33184. height: math.unit(0.5, "inches"),
  33185. default: true
  33186. },
  33187. {
  33188. name: "Human",
  33189. height: math.unit(5 + 7.5 / 12, "feet")
  33190. },
  33191. {
  33192. name: "Minigiant",
  33193. height: math.unit(8 + 5.25, "feet")
  33194. },
  33195. {
  33196. name: "Giant",
  33197. height: math.unit(2000, "feet")
  33198. },
  33199. {
  33200. name: "Mega",
  33201. height: math.unit(371.1, "miles")
  33202. },
  33203. ]
  33204. ))
  33205. characterMakers.push(() => makeCharacter(
  33206. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  33207. {
  33208. front: {
  33209. height: math.unit(2, "meters"),
  33210. weight: math.unit(350, "kg"),
  33211. name: "Front",
  33212. image: {
  33213. source: "./media/characters/jagaz-soulbreaker/front.svg",
  33214. extra: 898 / 838,
  33215. bottom: 9 / 907
  33216. }
  33217. },
  33218. },
  33219. [
  33220. {
  33221. name: "Micro",
  33222. height: math.unit(8, "meters")
  33223. },
  33224. {
  33225. name: "Normal",
  33226. height: math.unit(50, "meters"),
  33227. default: true
  33228. },
  33229. {
  33230. name: "Macro",
  33231. height: math.unit(500, "meters")
  33232. },
  33233. ]
  33234. ))
  33235. characterMakers.push(() => makeCharacter(
  33236. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  33237. {
  33238. front: {
  33239. height: math.unit(6 + 6 / 12, "feet"),
  33240. name: "Front",
  33241. image: {
  33242. source: "./media/characters/khardesh/front.svg",
  33243. extra: 1788/1596,
  33244. bottom: 66/1854
  33245. }
  33246. },
  33247. back: {
  33248. height: math.unit(6 + 6 / 12, "feet"),
  33249. name: "Back",
  33250. image: {
  33251. source: "./media/characters/khardesh/back.svg",
  33252. extra: 1781/1584,
  33253. bottom: 68/1849
  33254. }
  33255. },
  33256. },
  33257. [
  33258. {
  33259. name: "Normal",
  33260. height: math.unit(6 + 6 / 12, "feet"),
  33261. default: true
  33262. },
  33263. {
  33264. name: "Normal+",
  33265. height: math.unit(4, "meters")
  33266. },
  33267. {
  33268. name: "Macro",
  33269. height: math.unit(50, "meters")
  33270. },
  33271. {
  33272. name: "Macro+",
  33273. height: math.unit(100, "meters")
  33274. },
  33275. {
  33276. name: "Megamacro",
  33277. height: math.unit(20, "km")
  33278. },
  33279. ]
  33280. ))
  33281. characterMakers.push(() => makeCharacter(
  33282. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  33283. {
  33284. front: {
  33285. height: math.unit(6, "feet"),
  33286. weight: math.unit(150, "lb"),
  33287. name: "Front",
  33288. image: {
  33289. source: "./media/characters/kosho/front.svg",
  33290. extra: 1847 / 1847,
  33291. bottom: 86 / 1933
  33292. }
  33293. },
  33294. },
  33295. [
  33296. {
  33297. name: "Second-stage micro",
  33298. height: math.unit(0.5, "inches")
  33299. },
  33300. {
  33301. name: "First-stage micro",
  33302. height: math.unit(6, "inches")
  33303. },
  33304. {
  33305. name: "Normal",
  33306. height: math.unit(6, "feet"),
  33307. default: true
  33308. },
  33309. {
  33310. name: "First-stage macro",
  33311. height: math.unit(72, "feet")
  33312. },
  33313. {
  33314. name: "Second-stage macro",
  33315. height: math.unit(864, "feet")
  33316. },
  33317. ]
  33318. ))
  33319. characterMakers.push(() => makeCharacter(
  33320. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  33321. {
  33322. normal: {
  33323. height: math.unit(4 + 6 / 12, "feet"),
  33324. name: "Normal",
  33325. image: {
  33326. source: "./media/characters/hydra/normal.svg",
  33327. extra: 2833 / 2634,
  33328. bottom: 68 / 2901
  33329. }
  33330. },
  33331. smol: {
  33332. height: math.unit(0.705, "inches"),
  33333. name: "Smol",
  33334. image: {
  33335. source: "./media/characters/hydra/smol.svg",
  33336. extra: 2715 / 2540,
  33337. bottom: 0 / 2715
  33338. }
  33339. },
  33340. },
  33341. [
  33342. {
  33343. name: "Normal",
  33344. height: math.unit(4 + 6 / 12, "feet"),
  33345. default: true
  33346. }
  33347. ]
  33348. ))
  33349. characterMakers.push(() => makeCharacter(
  33350. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  33351. {
  33352. front: {
  33353. height: math.unit(0.6, "cm"),
  33354. name: "Front",
  33355. image: {
  33356. source: "./media/characters/daz/front.svg",
  33357. extra: 1682 / 1164,
  33358. bottom: 42 / 1724
  33359. }
  33360. },
  33361. },
  33362. [
  33363. {
  33364. name: "Normal",
  33365. height: math.unit(0.6, "cm"),
  33366. default: true
  33367. },
  33368. ]
  33369. ))
  33370. characterMakers.push(() => makeCharacter(
  33371. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  33372. {
  33373. front: {
  33374. height: math.unit(6, "feet"),
  33375. weight: math.unit(235, "lb"),
  33376. name: "Front",
  33377. image: {
  33378. source: "./media/characters/theo-pangolin/front.svg",
  33379. extra: 1996 / 1969,
  33380. bottom: 115 / 2111
  33381. }
  33382. },
  33383. back: {
  33384. height: math.unit(6, "feet"),
  33385. weight: math.unit(235, "lb"),
  33386. name: "Back",
  33387. image: {
  33388. source: "./media/characters/theo-pangolin/back.svg",
  33389. extra: 1979 / 1979,
  33390. bottom: 40 / 2019
  33391. }
  33392. },
  33393. feral: {
  33394. height: math.unit(2, "feet"),
  33395. weight: math.unit(30, "lb"),
  33396. name: "Feral",
  33397. image: {
  33398. source: "./media/characters/theo-pangolin/feral.svg",
  33399. extra: 803 / 791,
  33400. bottom: 181 / 984
  33401. }
  33402. },
  33403. footFive: {
  33404. height: math.unit(1.43, "feet"),
  33405. name: "Foot (Five Toes)",
  33406. image: {
  33407. source: "./media/characters/theo-pangolin/foot-five.svg"
  33408. }
  33409. },
  33410. footFour: {
  33411. height: math.unit(1.43, "feet"),
  33412. name: "Foot (Four Toes)",
  33413. image: {
  33414. source: "./media/characters/theo-pangolin/foot-four.svg"
  33415. }
  33416. },
  33417. handFour: {
  33418. height: math.unit(0.81, "feet"),
  33419. name: "Hand (Four Fingers)",
  33420. image: {
  33421. source: "./media/characters/theo-pangolin/hand-four.svg"
  33422. }
  33423. },
  33424. handThree: {
  33425. height: math.unit(0.81, "feet"),
  33426. name: "Hand (Three Fingers)",
  33427. image: {
  33428. source: "./media/characters/theo-pangolin/hand-three.svg"
  33429. }
  33430. },
  33431. headFront: {
  33432. height: math.unit(1.37, "feet"),
  33433. name: "Head (Front)",
  33434. image: {
  33435. source: "./media/characters/theo-pangolin/head-front.svg"
  33436. }
  33437. },
  33438. headSide: {
  33439. height: math.unit(1.43, "feet"),
  33440. name: "Head (Side)",
  33441. image: {
  33442. source: "./media/characters/theo-pangolin/head-side.svg"
  33443. }
  33444. },
  33445. tongue: {
  33446. height: math.unit(2.29, "feet"),
  33447. name: "Tongue",
  33448. image: {
  33449. source: "./media/characters/theo-pangolin/tongue.svg"
  33450. }
  33451. },
  33452. },
  33453. [
  33454. {
  33455. name: "Normal",
  33456. height: math.unit(6, "feet")
  33457. },
  33458. {
  33459. name: "Macro",
  33460. height: math.unit(400, "feet"),
  33461. default: true
  33462. },
  33463. ]
  33464. ))
  33465. characterMakers.push(() => makeCharacter(
  33466. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33467. {
  33468. front: {
  33469. height: math.unit(6, "inches"),
  33470. weight: math.unit(0.036, "kg"),
  33471. name: "Front",
  33472. image: {
  33473. source: "./media/characters/renée/front.svg",
  33474. extra: 900 / 886,
  33475. bottom: 8 / 908
  33476. }
  33477. },
  33478. },
  33479. [
  33480. {
  33481. name: "Nano",
  33482. height: math.unit(1, "nm")
  33483. },
  33484. {
  33485. name: "Micro",
  33486. height: math.unit(1, "mm")
  33487. },
  33488. {
  33489. name: "Normal",
  33490. height: math.unit(6, "inches")
  33491. },
  33492. {
  33493. name: "Macro",
  33494. height: math.unit(2000, "feet"),
  33495. default: true
  33496. },
  33497. {
  33498. name: "Megamacro",
  33499. height: math.unit(2, "km")
  33500. },
  33501. {
  33502. name: "Gigamacro",
  33503. height: math.unit(2000, "km")
  33504. },
  33505. {
  33506. name: "Teramacro",
  33507. height: math.unit(250000, "km")
  33508. },
  33509. ]
  33510. ))
  33511. characterMakers.push(() => makeCharacter(
  33512. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33513. {
  33514. front: {
  33515. height: math.unit(4, "meters"),
  33516. weight: math.unit(150, "kg"),
  33517. name: "Front",
  33518. image: {
  33519. source: "./media/characters/caledvwlch/front.svg",
  33520. extra: 1757/1537,
  33521. bottom: 31/1788
  33522. }
  33523. },
  33524. side: {
  33525. height: math.unit(4, "meters"),
  33526. weight: math.unit(150, "kg"),
  33527. name: "Side",
  33528. image: {
  33529. source: "./media/characters/caledvwlch/side.svg",
  33530. extra: 1605 / 1536,
  33531. bottom: 31 / 1636
  33532. }
  33533. },
  33534. back: {
  33535. height: math.unit(4, "meters"),
  33536. weight: math.unit(150, "kg"),
  33537. name: "Back",
  33538. image: {
  33539. source: "./media/characters/caledvwlch/back.svg",
  33540. extra: 1635 / 1565,
  33541. bottom: 27 / 1662
  33542. }
  33543. },
  33544. },
  33545. [
  33546. {
  33547. name: "\"Incognito\"",
  33548. height: math.unit(4, "meters")
  33549. },
  33550. {
  33551. name: "Small rampage",
  33552. height: math.unit(600, "meters")
  33553. },
  33554. {
  33555. name: "Mega",
  33556. height: math.unit(30, "km")
  33557. },
  33558. {
  33559. name: "Home-size",
  33560. height: math.unit(50, "km"),
  33561. default: true
  33562. },
  33563. {
  33564. name: "Giga",
  33565. height: math.unit(300, "km")
  33566. },
  33567. {
  33568. name: "Lounging",
  33569. height: math.unit(11000, "km")
  33570. },
  33571. {
  33572. name: "Planet snacking",
  33573. height: math.unit(2000000, "km")
  33574. },
  33575. ]
  33576. ))
  33577. characterMakers.push(() => makeCharacter(
  33578. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33579. {
  33580. front: {
  33581. height: math.unit(6, "feet"),
  33582. weight: math.unit(215, "lb"),
  33583. name: "Front",
  33584. image: {
  33585. source: "./media/characters/sapphire-svell/front.svg",
  33586. extra: 495 / 455,
  33587. bottom: 20 / 515
  33588. }
  33589. },
  33590. back: {
  33591. height: math.unit(6, "feet"),
  33592. weight: math.unit(216, "lb"),
  33593. name: "Back",
  33594. image: {
  33595. source: "./media/characters/sapphire-svell/back.svg",
  33596. extra: 497 / 477,
  33597. bottom: 7 / 504
  33598. }
  33599. },
  33600. maw: {
  33601. height: math.unit(1.57, "feet"),
  33602. name: "Maw",
  33603. image: {
  33604. source: "./media/characters/sapphire-svell/maw.svg"
  33605. }
  33606. },
  33607. foot: {
  33608. height: math.unit(1.07, "feet"),
  33609. name: "Foot",
  33610. image: {
  33611. source: "./media/characters/sapphire-svell/foot.svg"
  33612. }
  33613. },
  33614. toering: {
  33615. height: math.unit(1.7, "inch"),
  33616. name: "Toering",
  33617. image: {
  33618. source: "./media/characters/sapphire-svell/toering.svg"
  33619. }
  33620. },
  33621. },
  33622. [
  33623. {
  33624. name: "Normal",
  33625. height: math.unit(300, "feet"),
  33626. default: true
  33627. },
  33628. {
  33629. name: "Augmented",
  33630. height: math.unit(1250, "feet")
  33631. },
  33632. {
  33633. name: "Unleashed",
  33634. height: math.unit(3000, "feet")
  33635. },
  33636. ]
  33637. ))
  33638. characterMakers.push(() => makeCharacter(
  33639. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33640. {
  33641. side: {
  33642. height: math.unit(2 + 3 / 12, "feet"),
  33643. weight: math.unit(110, "lb"),
  33644. name: "Side",
  33645. image: {
  33646. source: "./media/characters/glitch-flux/side.svg",
  33647. extra: 997 / 805,
  33648. bottom: 20 / 1017
  33649. }
  33650. },
  33651. },
  33652. [
  33653. {
  33654. name: "Normal",
  33655. height: math.unit(2 + 3 / 12, "feet"),
  33656. default: true
  33657. },
  33658. ]
  33659. ))
  33660. characterMakers.push(() => makeCharacter(
  33661. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33662. {
  33663. front: {
  33664. height: math.unit(4, "meters"),
  33665. name: "Front",
  33666. image: {
  33667. source: "./media/characters/mid/front.svg",
  33668. extra: 507 / 476,
  33669. bottom: 17 / 524
  33670. }
  33671. },
  33672. back: {
  33673. height: math.unit(4, "meters"),
  33674. name: "Back",
  33675. image: {
  33676. source: "./media/characters/mid/back.svg",
  33677. extra: 519 / 487,
  33678. bottom: 7 / 526
  33679. }
  33680. },
  33681. stuck: {
  33682. height: math.unit(2.2, "meters"),
  33683. name: "Stuck",
  33684. image: {
  33685. source: "./media/characters/mid/stuck.svg",
  33686. extra: 1951 / 1869,
  33687. bottom: 88 / 2039
  33688. }
  33689. }
  33690. },
  33691. [
  33692. {
  33693. name: "Normal",
  33694. height: math.unit(4, "meters"),
  33695. default: true
  33696. },
  33697. {
  33698. name: "Big",
  33699. height: math.unit(10, "meters")
  33700. },
  33701. {
  33702. name: "Macro",
  33703. height: math.unit(800, "meters")
  33704. },
  33705. {
  33706. name: "Megamacro",
  33707. height: math.unit(100, "km")
  33708. },
  33709. {
  33710. name: "Overgrown",
  33711. height: math.unit(1, "parsec")
  33712. },
  33713. ]
  33714. ))
  33715. characterMakers.push(() => makeCharacter(
  33716. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33717. {
  33718. front: {
  33719. height: math.unit(2.5, "meters"),
  33720. weight: math.unit(225, "kg"),
  33721. name: "Front",
  33722. image: {
  33723. source: "./media/characters/iris/front.svg",
  33724. extra: 3348 / 3251,
  33725. bottom: 205 / 3553
  33726. }
  33727. },
  33728. maw: {
  33729. height: math.unit(0.56, "meter"),
  33730. name: "Maw",
  33731. image: {
  33732. source: "./media/characters/iris/maw.svg"
  33733. }
  33734. },
  33735. },
  33736. [
  33737. {
  33738. name: "Mewter cat",
  33739. height: math.unit(1.2, "meters")
  33740. },
  33741. {
  33742. name: "Normal",
  33743. height: math.unit(2.5, "meters"),
  33744. default: true
  33745. },
  33746. {
  33747. name: "Minimacro",
  33748. height: math.unit(18, "feet")
  33749. },
  33750. {
  33751. name: "Macro",
  33752. height: math.unit(140, "feet")
  33753. },
  33754. {
  33755. name: "Macro+",
  33756. height: math.unit(180, "meters")
  33757. },
  33758. {
  33759. name: "Megamacro",
  33760. height: math.unit(2746, "meters")
  33761. },
  33762. ]
  33763. ))
  33764. characterMakers.push(() => makeCharacter(
  33765. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33766. {
  33767. front: {
  33768. height: math.unit(6, "feet"),
  33769. weight: math.unit(135, "lb"),
  33770. name: "Front",
  33771. image: {
  33772. source: "./media/characters/axel/front.svg",
  33773. extra: 908 / 908,
  33774. bottom: 58 / 966
  33775. }
  33776. },
  33777. side: {
  33778. height: math.unit(6, "feet"),
  33779. weight: math.unit(135, "lb"),
  33780. name: "Side",
  33781. image: {
  33782. source: "./media/characters/axel/side.svg",
  33783. extra: 958 / 958,
  33784. bottom: 11 / 969
  33785. }
  33786. },
  33787. back: {
  33788. height: math.unit(6, "feet"),
  33789. weight: math.unit(135, "lb"),
  33790. name: "Back",
  33791. image: {
  33792. source: "./media/characters/axel/back.svg",
  33793. extra: 887 / 887,
  33794. bottom: 34 / 921
  33795. }
  33796. },
  33797. head: {
  33798. height: math.unit(1.07, "feet"),
  33799. name: "Head",
  33800. image: {
  33801. source: "./media/characters/axel/head.svg"
  33802. }
  33803. },
  33804. beak: {
  33805. height: math.unit(1.4, "feet"),
  33806. name: "Beak",
  33807. image: {
  33808. source: "./media/characters/axel/beak.svg"
  33809. }
  33810. },
  33811. beakSide: {
  33812. height: math.unit(1.4, "feet"),
  33813. name: "Beak Side",
  33814. image: {
  33815. source: "./media/characters/axel/beak-side.svg"
  33816. }
  33817. },
  33818. sheath: {
  33819. height: math.unit(0.5, "feet"),
  33820. name: "Sheath",
  33821. image: {
  33822. source: "./media/characters/axel/sheath.svg"
  33823. }
  33824. },
  33825. dick: {
  33826. height: math.unit(0.98, "feet"),
  33827. name: "Dick",
  33828. image: {
  33829. source: "./media/characters/axel/dick.svg"
  33830. }
  33831. },
  33832. },
  33833. [
  33834. {
  33835. name: "Macro",
  33836. height: math.unit(68, "meters"),
  33837. default: true
  33838. },
  33839. ]
  33840. ))
  33841. characterMakers.push(() => makeCharacter(
  33842. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33843. {
  33844. front: {
  33845. height: math.unit(3.5, "meters"),
  33846. weight: math.unit(1200, "kg"),
  33847. name: "Front",
  33848. image: {
  33849. source: "./media/characters/joanna/front.svg",
  33850. extra: 1596 / 1488,
  33851. bottom: 29 / 1625
  33852. }
  33853. },
  33854. back: {
  33855. height: math.unit(3.5, "meters"),
  33856. weight: math.unit(1200, "kg"),
  33857. name: "Back",
  33858. image: {
  33859. source: "./media/characters/joanna/back.svg",
  33860. extra: 1594 / 1495,
  33861. bottom: 26 / 1620
  33862. }
  33863. },
  33864. frontShorts: {
  33865. height: math.unit(3.5, "meters"),
  33866. weight: math.unit(1200, "kg"),
  33867. name: "Front (Shorts)",
  33868. image: {
  33869. source: "./media/characters/joanna/front-shorts.svg",
  33870. extra: 1596 / 1488,
  33871. bottom: 29 / 1625
  33872. }
  33873. },
  33874. frontBiker: {
  33875. height: math.unit(3.5, "meters"),
  33876. weight: math.unit(1200, "kg"),
  33877. name: "Front (Biker)",
  33878. image: {
  33879. source: "./media/characters/joanna/front-biker.svg",
  33880. extra: 1596 / 1488,
  33881. bottom: 29 / 1625
  33882. }
  33883. },
  33884. backBiker: {
  33885. height: math.unit(3.5, "meters"),
  33886. weight: math.unit(1200, "kg"),
  33887. name: "Back (Biker)",
  33888. image: {
  33889. source: "./media/characters/joanna/back-biker.svg",
  33890. extra: 1594 / 1495,
  33891. bottom: 88 / 1682
  33892. }
  33893. },
  33894. bikeLeft: {
  33895. height: math.unit(2.4, "meters"),
  33896. weight: math.unit(1600, "kg"),
  33897. name: "Bike (Left)",
  33898. image: {
  33899. source: "./media/characters/joanna/bike-left.svg",
  33900. extra: 720 / 720,
  33901. bottom: 8 / 728
  33902. }
  33903. },
  33904. bikeRight: {
  33905. height: math.unit(2.4, "meters"),
  33906. weight: math.unit(1600, "kg"),
  33907. name: "Bike (Right)",
  33908. image: {
  33909. source: "./media/characters/joanna/bike-right.svg",
  33910. extra: 720 / 720,
  33911. bottom: 8 / 728
  33912. }
  33913. },
  33914. },
  33915. [
  33916. {
  33917. name: "Incognito",
  33918. height: math.unit(3.5, "meters")
  33919. },
  33920. {
  33921. name: "Casual Big",
  33922. height: math.unit(200, "meters")
  33923. },
  33924. {
  33925. name: "Macro",
  33926. height: math.unit(600, "meters")
  33927. },
  33928. {
  33929. name: "Original",
  33930. height: math.unit(20, "km"),
  33931. default: true
  33932. },
  33933. {
  33934. name: "Giga",
  33935. height: math.unit(400, "km")
  33936. },
  33937. {
  33938. name: "Lounging",
  33939. height: math.unit(1500, "km")
  33940. },
  33941. {
  33942. name: "Planetary",
  33943. height: math.unit(200000, "km")
  33944. },
  33945. ]
  33946. ))
  33947. characterMakers.push(() => makeCharacter(
  33948. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33949. {
  33950. front: {
  33951. height: math.unit(6, "feet"),
  33952. weight: math.unit(150, "lb"),
  33953. name: "Front",
  33954. image: {
  33955. source: "./media/characters/hugo-sigil/front.svg",
  33956. extra: 522 / 500,
  33957. bottom: 2 / 524
  33958. }
  33959. },
  33960. back: {
  33961. height: math.unit(6, "feet"),
  33962. weight: math.unit(150, "lb"),
  33963. name: "Back",
  33964. image: {
  33965. source: "./media/characters/hugo-sigil/back.svg",
  33966. extra: 519 / 495,
  33967. bottom: 5 / 524
  33968. }
  33969. },
  33970. maw: {
  33971. height: math.unit(1.4, "feet"),
  33972. weight: math.unit(150, "lb"),
  33973. name: "Maw",
  33974. image: {
  33975. source: "./media/characters/hugo-sigil/maw.svg"
  33976. }
  33977. },
  33978. feet: {
  33979. height: math.unit(1.56, "feet"),
  33980. weight: math.unit(150, "lb"),
  33981. name: "Feet",
  33982. image: {
  33983. source: "./media/characters/hugo-sigil/feet.svg",
  33984. extra: 177 / 177,
  33985. bottom: 12 / 189
  33986. }
  33987. },
  33988. },
  33989. [
  33990. {
  33991. name: "Normal",
  33992. height: math.unit(6, "feet")
  33993. },
  33994. {
  33995. name: "Macro",
  33996. height: math.unit(200, "feet"),
  33997. default: true
  33998. },
  33999. ]
  34000. ))
  34001. characterMakers.push(() => makeCharacter(
  34002. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  34003. {
  34004. front: {
  34005. height: math.unit(6, "feet"),
  34006. weight: math.unit(150, "lb"),
  34007. name: "Front",
  34008. image: {
  34009. source: "./media/characters/peri/front.svg",
  34010. extra: 2354 / 2233,
  34011. bottom: 49 / 2403
  34012. }
  34013. },
  34014. },
  34015. [
  34016. {
  34017. name: "Really Small",
  34018. height: math.unit(1, "nm")
  34019. },
  34020. {
  34021. name: "Micro",
  34022. height: math.unit(4, "inches")
  34023. },
  34024. {
  34025. name: "Normal",
  34026. height: math.unit(7, "inches"),
  34027. default: true
  34028. },
  34029. {
  34030. name: "Macro",
  34031. height: math.unit(400, "feet")
  34032. },
  34033. {
  34034. name: "Megamacro",
  34035. height: math.unit(100, "miles")
  34036. },
  34037. ]
  34038. ))
  34039. characterMakers.push(() => makeCharacter(
  34040. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  34041. {
  34042. frontSlim: {
  34043. height: math.unit(7, "feet"),
  34044. name: "Front (Slim)",
  34045. image: {
  34046. source: "./media/characters/issilora/front-slim.svg",
  34047. extra: 529 / 449,
  34048. bottom: 53 / 582
  34049. }
  34050. },
  34051. sideSlim: {
  34052. height: math.unit(7, "feet"),
  34053. name: "Side (Slim)",
  34054. image: {
  34055. source: "./media/characters/issilora/side-slim.svg",
  34056. extra: 570 / 480,
  34057. bottom: 30 / 600
  34058. }
  34059. },
  34060. backSlim: {
  34061. height: math.unit(7, "feet"),
  34062. name: "Back (Slim)",
  34063. image: {
  34064. source: "./media/characters/issilora/back-slim.svg",
  34065. extra: 537 / 455,
  34066. bottom: 46 / 583
  34067. }
  34068. },
  34069. frontBuff: {
  34070. height: math.unit(7, "feet"),
  34071. name: "Front (Buff)",
  34072. image: {
  34073. source: "./media/characters/issilora/front-buff.svg",
  34074. extra: 2310 / 2035,
  34075. bottom: 335 / 2645
  34076. }
  34077. },
  34078. head: {
  34079. height: math.unit(1.94, "feet"),
  34080. name: "Head",
  34081. image: {
  34082. source: "./media/characters/issilora/head.svg"
  34083. }
  34084. },
  34085. },
  34086. [
  34087. {
  34088. name: "Minimum",
  34089. height: math.unit(7, "feet")
  34090. },
  34091. {
  34092. name: "Comfortable",
  34093. height: math.unit(17, "feet")
  34094. },
  34095. {
  34096. name: "Fun Size",
  34097. height: math.unit(47, "feet")
  34098. },
  34099. {
  34100. name: "Natural Macro",
  34101. height: math.unit(137, "feet"),
  34102. default: true
  34103. },
  34104. {
  34105. name: "Maximum Kaiju",
  34106. height: math.unit(397, "feet")
  34107. },
  34108. ]
  34109. ))
  34110. characterMakers.push(() => makeCharacter(
  34111. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  34112. {
  34113. front: {
  34114. height: math.unit(50 + 9/12, "feet"),
  34115. weight: math.unit(32.8, "tons"),
  34116. name: "Front",
  34117. image: {
  34118. source: "./media/characters/irb'iiritaahn/front.svg",
  34119. extra: 1878/1826,
  34120. bottom: 326/2204
  34121. }
  34122. },
  34123. back: {
  34124. height: math.unit(50 + 9/12, "feet"),
  34125. weight: math.unit(32.8, "tons"),
  34126. name: "Back",
  34127. image: {
  34128. source: "./media/characters/irb'iiritaahn/back.svg",
  34129. extra: 2052/2018,
  34130. bottom: 152/2204
  34131. }
  34132. },
  34133. head: {
  34134. height: math.unit(12.86, "feet"),
  34135. name: "Head",
  34136. image: {
  34137. source: "./media/characters/irb'iiritaahn/head.svg"
  34138. }
  34139. },
  34140. maw: {
  34141. height: math.unit(9.66, "feet"),
  34142. name: "Maw",
  34143. image: {
  34144. source: "./media/characters/irb'iiritaahn/maw.svg"
  34145. }
  34146. },
  34147. frontDick: {
  34148. height: math.unit(8.78461, "feet"),
  34149. name: "Front Dick",
  34150. image: {
  34151. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  34152. }
  34153. },
  34154. rearDick: {
  34155. height: math.unit(8.78461, "feet"),
  34156. name: "Rear Dick",
  34157. image: {
  34158. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  34159. }
  34160. },
  34161. rearDickUnfolded: {
  34162. height: math.unit(8.78, "feet"),
  34163. name: "Rear Dick (Unfolded)",
  34164. image: {
  34165. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  34166. }
  34167. },
  34168. wings: {
  34169. height: math.unit(43, "feet"),
  34170. name: "Wings",
  34171. image: {
  34172. source: "./media/characters/irb'iiritaahn/wings.svg"
  34173. }
  34174. },
  34175. },
  34176. [
  34177. {
  34178. name: "Macro",
  34179. height: math.unit(50 + 9/12, "feet"),
  34180. default: true
  34181. },
  34182. ]
  34183. ))
  34184. characterMakers.push(() => makeCharacter(
  34185. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  34186. {
  34187. front: {
  34188. height: math.unit(205, "cm"),
  34189. weight: math.unit(102, "kg"),
  34190. name: "Front",
  34191. image: {
  34192. source: "./media/characters/irbisgreif/front.svg",
  34193. extra: 785/706,
  34194. bottom: 13/798
  34195. }
  34196. },
  34197. back: {
  34198. height: math.unit(205, "cm"),
  34199. weight: math.unit(102, "kg"),
  34200. name: "Back",
  34201. image: {
  34202. source: "./media/characters/irbisgreif/back.svg",
  34203. extra: 713/701,
  34204. bottom: 26/739
  34205. }
  34206. },
  34207. frontDressed: {
  34208. height: math.unit(216, "cm"),
  34209. weight: math.unit(102, "kg"),
  34210. name: "Front (Dressed)",
  34211. image: {
  34212. source: "./media/characters/irbisgreif/front-dressed.svg",
  34213. extra: 902/776,
  34214. bottom: 14/916
  34215. }
  34216. },
  34217. sideDressed: {
  34218. height: math.unit(195, "cm"),
  34219. weight: math.unit(102, "kg"),
  34220. name: "Side (Dressed)",
  34221. image: {
  34222. source: "./media/characters/irbisgreif/side-dressed.svg",
  34223. extra: 788/688,
  34224. bottom: 21/809
  34225. }
  34226. },
  34227. backDressed: {
  34228. height: math.unit(216, "cm"),
  34229. weight: math.unit(102, "kg"),
  34230. name: "Back (Dressed)",
  34231. image: {
  34232. source: "./media/characters/irbisgreif/back-dressed.svg",
  34233. extra: 901/783,
  34234. bottom: 10/911
  34235. }
  34236. },
  34237. dick: {
  34238. height: math.unit(0.49, "feet"),
  34239. name: "Dick",
  34240. image: {
  34241. source: "./media/characters/irbisgreif/dick.svg"
  34242. }
  34243. },
  34244. wingTop: {
  34245. height: math.unit(1.93 , "feet"),
  34246. name: "Wing (Top)",
  34247. image: {
  34248. source: "./media/characters/irbisgreif/wing-top.svg"
  34249. }
  34250. },
  34251. wingBottom: {
  34252. height: math.unit(1.93 , "feet"),
  34253. name: "Wing (Bottom)",
  34254. image: {
  34255. source: "./media/characters/irbisgreif/wing-bottom.svg"
  34256. }
  34257. },
  34258. },
  34259. [
  34260. {
  34261. name: "Normal",
  34262. height: math.unit(216, "cm"),
  34263. default: true
  34264. },
  34265. ]
  34266. ))
  34267. characterMakers.push(() => makeCharacter(
  34268. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  34269. {
  34270. front: {
  34271. height: math.unit(6, "feet"),
  34272. weight: math.unit(150, "lb"),
  34273. name: "Front",
  34274. image: {
  34275. source: "./media/characters/pride/front.svg",
  34276. extra: 1299/1230,
  34277. bottom: 18/1317
  34278. }
  34279. },
  34280. },
  34281. [
  34282. {
  34283. name: "Normal",
  34284. height: math.unit(7, "feet")
  34285. },
  34286. {
  34287. name: "Mini-macro",
  34288. height: math.unit(11, "feet")
  34289. },
  34290. {
  34291. name: "Macro",
  34292. height: math.unit(15, "meters"),
  34293. default: true
  34294. },
  34295. {
  34296. name: "Macro+",
  34297. height: math.unit(40, "meters")
  34298. },
  34299. ]
  34300. ))
  34301. characterMakers.push(() => makeCharacter(
  34302. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  34303. {
  34304. front: {
  34305. height: math.unit(4 + 2 / 12, "feet"),
  34306. weight: math.unit(95, "lb"),
  34307. name: "Front",
  34308. image: {
  34309. source: "./media/characters/vaelophis-nyx/front.svg",
  34310. extra: 2532/2330,
  34311. bottom: 0/2532
  34312. }
  34313. },
  34314. back: {
  34315. height: math.unit(4 + 2 / 12, "feet"),
  34316. weight: math.unit(95, "lb"),
  34317. name: "Back",
  34318. image: {
  34319. source: "./media/characters/vaelophis-nyx/back.svg",
  34320. extra: 2484/2361,
  34321. bottom: 0/2484
  34322. }
  34323. },
  34324. feralSide: {
  34325. height: math.unit(2 + 1/12, "feet"),
  34326. weight: math.unit(20, "lb"),
  34327. name: "Feral (Side)",
  34328. image: {
  34329. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  34330. extra: 1721/1581,
  34331. bottom: 70/1791
  34332. }
  34333. },
  34334. feralLazing: {
  34335. height: math.unit(1.08, "feet"),
  34336. weight: math.unit(20, "lb"),
  34337. name: "Feral (Lazing)",
  34338. image: {
  34339. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  34340. extra: 822/822,
  34341. bottom: 248/1070
  34342. }
  34343. },
  34344. ear: {
  34345. height: math.unit(0.416, "feet"),
  34346. name: "Ear",
  34347. image: {
  34348. source: "./media/characters/vaelophis-nyx/ear.svg"
  34349. }
  34350. },
  34351. eye: {
  34352. height: math.unit(0.0748, "feet"),
  34353. name: "Eye",
  34354. image: {
  34355. source: "./media/characters/vaelophis-nyx/eye.svg"
  34356. }
  34357. },
  34358. mouth: {
  34359. height: math.unit(0.378, "feet"),
  34360. name: "Mouth",
  34361. image: {
  34362. source: "./media/characters/vaelophis-nyx/mouth.svg"
  34363. }
  34364. },
  34365. spade: {
  34366. height: math.unit(0.55, "feet"),
  34367. name: "Spade",
  34368. image: {
  34369. source: "./media/characters/vaelophis-nyx/spade.svg"
  34370. }
  34371. },
  34372. },
  34373. [
  34374. {
  34375. name: "Normal",
  34376. height: math.unit(4 + 2/12, "feet"),
  34377. default: true
  34378. },
  34379. ]
  34380. ))
  34381. characterMakers.push(() => makeCharacter(
  34382. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34383. {
  34384. front: {
  34385. height: math.unit(7, "feet"),
  34386. weight: math.unit(231, "lb"),
  34387. name: "Front",
  34388. image: {
  34389. source: "./media/characters/flux/front.svg",
  34390. extra: 919/871,
  34391. bottom: 0/919
  34392. }
  34393. },
  34394. back: {
  34395. height: math.unit(7, "feet"),
  34396. weight: math.unit(231, "lb"),
  34397. name: "Back",
  34398. image: {
  34399. source: "./media/characters/flux/back.svg",
  34400. extra: 1040/992,
  34401. bottom: 0/1040
  34402. }
  34403. },
  34404. frontDressed: {
  34405. height: math.unit(7, "feet"),
  34406. weight: math.unit(231, "lb"),
  34407. name: "Front (Dressed)",
  34408. image: {
  34409. source: "./media/characters/flux/front-dressed.svg",
  34410. extra: 919/871,
  34411. bottom: 0/919
  34412. }
  34413. },
  34414. feralSide: {
  34415. height: math.unit(5, "feet"),
  34416. weight: math.unit(150, "lb"),
  34417. name: "Feral (Side)",
  34418. image: {
  34419. source: "./media/characters/flux/feral-side.svg",
  34420. extra: 598/528,
  34421. bottom: 28/626
  34422. }
  34423. },
  34424. head: {
  34425. height: math.unit(1.585, "feet"),
  34426. name: "Head",
  34427. image: {
  34428. source: "./media/characters/flux/head.svg"
  34429. }
  34430. },
  34431. headSide: {
  34432. height: math.unit(1.74, "feet"),
  34433. name: "Head (Side)",
  34434. image: {
  34435. source: "./media/characters/flux/head-side.svg"
  34436. }
  34437. },
  34438. headSideFire: {
  34439. height: math.unit(1.76, "feet"),
  34440. name: "Head (Side, Fire)",
  34441. image: {
  34442. source: "./media/characters/flux/head-side-fire.svg"
  34443. }
  34444. },
  34445. },
  34446. [
  34447. {
  34448. name: "Normal",
  34449. height: math.unit(7, "feet"),
  34450. default: true
  34451. },
  34452. ]
  34453. ))
  34454. characterMakers.push(() => makeCharacter(
  34455. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34456. {
  34457. front: {
  34458. height: math.unit(9, "feet"),
  34459. weight: math.unit(1012, "lb"),
  34460. name: "Front",
  34461. image: {
  34462. source: "./media/characters/ulfra-lupae/front.svg",
  34463. extra: 1083/1011,
  34464. bottom: 67/1150
  34465. }
  34466. },
  34467. },
  34468. [
  34469. {
  34470. name: "Micro",
  34471. height: math.unit(6, "inches")
  34472. },
  34473. {
  34474. name: "Socializing",
  34475. height: math.unit(6 + 5/12, "feet")
  34476. },
  34477. {
  34478. name: "Normal",
  34479. height: math.unit(9, "feet"),
  34480. default: true
  34481. },
  34482. {
  34483. name: "Macro",
  34484. height: math.unit(150, "feet")
  34485. },
  34486. ]
  34487. ))
  34488. characterMakers.push(() => makeCharacter(
  34489. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34490. {
  34491. front: {
  34492. height: math.unit(5 + 2/12, "feet"),
  34493. weight: math.unit(120, "lb"),
  34494. name: "Front",
  34495. image: {
  34496. source: "./media/characters/timber/front.svg",
  34497. extra: 2814/2705,
  34498. bottom: 181/2995
  34499. }
  34500. },
  34501. },
  34502. [
  34503. {
  34504. name: "Normal",
  34505. height: math.unit(5 + 2/12, "feet"),
  34506. default: true
  34507. },
  34508. ]
  34509. ))
  34510. characterMakers.push(() => makeCharacter(
  34511. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34512. {
  34513. front: {
  34514. height: math.unit(9, "feet"),
  34515. name: "Front",
  34516. image: {
  34517. source: "./media/characters/nicki/front.svg",
  34518. extra: 1240/990,
  34519. bottom: 45/1285
  34520. },
  34521. form: "anthro",
  34522. default: true
  34523. },
  34524. side: {
  34525. height: math.unit(9, "feet"),
  34526. name: "Side",
  34527. image: {
  34528. source: "./media/characters/nicki/side.svg",
  34529. extra: 1047/973,
  34530. bottom: 61/1108
  34531. },
  34532. form: "anthro"
  34533. },
  34534. back: {
  34535. height: math.unit(9, "feet"),
  34536. name: "Back",
  34537. image: {
  34538. source: "./media/characters/nicki/back.svg",
  34539. extra: 1006/965,
  34540. bottom: 39/1045
  34541. },
  34542. form: "anthro"
  34543. },
  34544. taur: {
  34545. height: math.unit(15, "feet"),
  34546. name: "Taur",
  34547. image: {
  34548. source: "./media/characters/nicki/taur.svg",
  34549. extra: 1592/1347,
  34550. bottom: 0/1592
  34551. },
  34552. form: "taur",
  34553. default: true
  34554. },
  34555. },
  34556. [
  34557. {
  34558. name: "Normal",
  34559. height: math.unit(9, "feet"),
  34560. form: "anthro",
  34561. default: true
  34562. },
  34563. {
  34564. name: "Normal",
  34565. height: math.unit(15, "feet"),
  34566. form: "taur",
  34567. default: true
  34568. }
  34569. ],
  34570. {
  34571. "anthro": {
  34572. name: "Anthro",
  34573. default: true
  34574. },
  34575. "taur": {
  34576. name: "Taur"
  34577. }
  34578. }
  34579. ))
  34580. characterMakers.push(() => makeCharacter(
  34581. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34582. {
  34583. front: {
  34584. height: math.unit(7 + 10/12, "feet"),
  34585. weight: math.unit(3.5, "tons"),
  34586. name: "Front",
  34587. image: {
  34588. source: "./media/characters/lee/front.svg",
  34589. extra: 1773/1615,
  34590. bottom: 86/1859
  34591. }
  34592. },
  34593. hand: {
  34594. height: math.unit(1.78, "feet"),
  34595. name: "Hand",
  34596. image: {
  34597. source: "./media/characters/lee/hand.svg"
  34598. }
  34599. },
  34600. maw: {
  34601. height: math.unit(1.18, "feet"),
  34602. name: "Maw",
  34603. image: {
  34604. source: "./media/characters/lee/maw.svg"
  34605. }
  34606. },
  34607. },
  34608. [
  34609. {
  34610. name: "Normal",
  34611. height: math.unit(7 + 10/12, "feet"),
  34612. default: true
  34613. },
  34614. ]
  34615. ))
  34616. characterMakers.push(() => makeCharacter(
  34617. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34618. {
  34619. front: {
  34620. height: math.unit(9, "feet"),
  34621. name: "Front",
  34622. image: {
  34623. source: "./media/characters/guti/front.svg",
  34624. extra: 4551/4355,
  34625. bottom: 123/4674
  34626. }
  34627. },
  34628. tongue: {
  34629. height: math.unit(1, "feet"),
  34630. name: "Tongue",
  34631. image: {
  34632. source: "./media/characters/guti/tongue.svg"
  34633. }
  34634. },
  34635. paw: {
  34636. height: math.unit(1.18, "feet"),
  34637. name: "Paw",
  34638. image: {
  34639. source: "./media/characters/guti/paw.svg"
  34640. }
  34641. },
  34642. },
  34643. [
  34644. {
  34645. name: "Normal",
  34646. height: math.unit(9, "feet"),
  34647. default: true
  34648. },
  34649. ]
  34650. ))
  34651. characterMakers.push(() => makeCharacter(
  34652. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34653. {
  34654. side: {
  34655. height: math.unit(5, "meters"),
  34656. name: "Side",
  34657. image: {
  34658. source: "./media/characters/vesper/side.svg",
  34659. extra: 1605/1518,
  34660. bottom: 0/1605
  34661. }
  34662. },
  34663. },
  34664. [
  34665. {
  34666. name: "Small",
  34667. height: math.unit(5, "meters")
  34668. },
  34669. {
  34670. name: "Sage",
  34671. height: math.unit(100, "meters"),
  34672. default: true
  34673. },
  34674. {
  34675. name: "Fun Size",
  34676. height: math.unit(600, "meters")
  34677. },
  34678. {
  34679. name: "Goddess",
  34680. height: math.unit(20000, "km")
  34681. },
  34682. {
  34683. name: "Maximum",
  34684. height: math.unit(5, "galaxies")
  34685. },
  34686. ]
  34687. ))
  34688. characterMakers.push(() => makeCharacter(
  34689. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34690. {
  34691. front: {
  34692. height: math.unit(6 + 3/12, "feet"),
  34693. weight: math.unit(190, "lb"),
  34694. name: "Front",
  34695. image: {
  34696. source: "./media/characters/gawain/front.svg",
  34697. extra: 2222/2139,
  34698. bottom: 90/2312
  34699. }
  34700. },
  34701. back: {
  34702. height: math.unit(6 + 3/12, "feet"),
  34703. weight: math.unit(190, "lb"),
  34704. name: "Back",
  34705. image: {
  34706. source: "./media/characters/gawain/back.svg",
  34707. extra: 2199/2111,
  34708. bottom: 73/2272
  34709. }
  34710. },
  34711. },
  34712. [
  34713. {
  34714. name: "Normal",
  34715. height: math.unit(6 + 3/12, "feet"),
  34716. default: true
  34717. },
  34718. ]
  34719. ))
  34720. characterMakers.push(() => makeCharacter(
  34721. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34722. {
  34723. side: {
  34724. height: math.unit(3.5, "meters"),
  34725. weight: math.unit(16000, "lb"),
  34726. name: "Side",
  34727. image: {
  34728. source: "./media/characters/dascalti/side.svg",
  34729. extra: 392/273,
  34730. bottom: 47/439
  34731. }
  34732. },
  34733. breath: {
  34734. height: math.unit(7.4, "feet"),
  34735. name: "Breath",
  34736. image: {
  34737. source: "./media/characters/dascalti/breath.svg"
  34738. }
  34739. },
  34740. fed: {
  34741. height: math.unit(3.6, "meters"),
  34742. weight: math.unit(16000, "lb"),
  34743. name: "Fed",
  34744. image: {
  34745. source: "./media/characters/dascalti/fed.svg",
  34746. extra: 1419/820,
  34747. bottom: 95/1514
  34748. }
  34749. },
  34750. },
  34751. [
  34752. {
  34753. name: "Normal",
  34754. height: math.unit(3.5, "meters"),
  34755. default: true
  34756. },
  34757. ]
  34758. ))
  34759. characterMakers.push(() => makeCharacter(
  34760. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34761. {
  34762. front: {
  34763. height: math.unit(3 + 5/12, "feet"),
  34764. name: "Front",
  34765. image: {
  34766. source: "./media/characters/mauve/front.svg",
  34767. extra: 1126/1033,
  34768. bottom: 65/1191
  34769. }
  34770. },
  34771. side: {
  34772. height: math.unit(3 + 5/12, "feet"),
  34773. name: "Side",
  34774. image: {
  34775. source: "./media/characters/mauve/side.svg",
  34776. extra: 1089/1001,
  34777. bottom: 29/1118
  34778. }
  34779. },
  34780. back: {
  34781. height: math.unit(3 + 5/12, "feet"),
  34782. name: "Back",
  34783. image: {
  34784. source: "./media/characters/mauve/back.svg",
  34785. extra: 1173/1053,
  34786. bottom: 109/1282
  34787. }
  34788. },
  34789. },
  34790. [
  34791. {
  34792. name: "Normal",
  34793. height: math.unit(3 + 5/12, "feet"),
  34794. default: true
  34795. },
  34796. ]
  34797. ))
  34798. characterMakers.push(() => makeCharacter(
  34799. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34800. {
  34801. front: {
  34802. height: math.unit(6 + 3/12, "feet"),
  34803. weight: math.unit(450, "lb"),
  34804. name: "Front",
  34805. image: {
  34806. source: "./media/characters/carlos/front.svg",
  34807. extra: 444/423,
  34808. bottom: 27/471
  34809. }
  34810. },
  34811. },
  34812. [
  34813. {
  34814. name: "Normal",
  34815. height: math.unit(6 + 3/12, "feet"),
  34816. default: true
  34817. },
  34818. ]
  34819. ))
  34820. characterMakers.push(() => makeCharacter(
  34821. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34822. {
  34823. back: {
  34824. height: math.unit(5 + 10/12, "feet"),
  34825. weight: math.unit(200, "lb"),
  34826. name: "Back",
  34827. image: {
  34828. source: "./media/characters/jax/back.svg",
  34829. extra: 764/739,
  34830. bottom: 25/789
  34831. }
  34832. },
  34833. },
  34834. [
  34835. {
  34836. name: "Normal",
  34837. height: math.unit(5 + 10/12, "feet"),
  34838. default: true
  34839. },
  34840. ]
  34841. ))
  34842. characterMakers.push(() => makeCharacter(
  34843. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34844. {
  34845. front: {
  34846. height: math.unit(8, "feet"),
  34847. weight: math.unit(250, "lb"),
  34848. name: "Front",
  34849. image: {
  34850. source: "./media/characters/eikthynir/front.svg",
  34851. extra: 1332/1166,
  34852. bottom: 82/1414
  34853. }
  34854. },
  34855. back: {
  34856. height: math.unit(8, "feet"),
  34857. weight: math.unit(250, "lb"),
  34858. name: "Back",
  34859. image: {
  34860. source: "./media/characters/eikthynir/back.svg",
  34861. extra: 1342/1190,
  34862. bottom: 19/1361
  34863. }
  34864. },
  34865. dick: {
  34866. height: math.unit(2.35, "feet"),
  34867. name: "Dick",
  34868. image: {
  34869. source: "./media/characters/eikthynir/dick.svg"
  34870. }
  34871. },
  34872. },
  34873. [
  34874. {
  34875. name: "Normal",
  34876. height: math.unit(8, "feet"),
  34877. default: true
  34878. },
  34879. ]
  34880. ))
  34881. characterMakers.push(() => makeCharacter(
  34882. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34883. {
  34884. front: {
  34885. height: math.unit(99, "meters"),
  34886. weight: math.unit(13000, "tons"),
  34887. name: "Front",
  34888. image: {
  34889. source: "./media/characters/zlmos/front.svg",
  34890. extra: 2202/1992,
  34891. bottom: 315/2517
  34892. }
  34893. },
  34894. },
  34895. [
  34896. {
  34897. name: "Macro",
  34898. height: math.unit(99, "meters"),
  34899. default: true
  34900. },
  34901. ]
  34902. ))
  34903. characterMakers.push(() => makeCharacter(
  34904. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34905. {
  34906. front: {
  34907. height: math.unit(6 + 5/12, "feet"),
  34908. name: "Front",
  34909. image: {
  34910. source: "./media/characters/purri/front.svg",
  34911. extra: 1698/1610,
  34912. bottom: 32/1730
  34913. }
  34914. },
  34915. frontAlt: {
  34916. height: math.unit(6 + 5/12, "feet"),
  34917. name: "Front (Alt)",
  34918. image: {
  34919. source: "./media/characters/purri/front-alt.svg",
  34920. extra: 450/420,
  34921. bottom: 26/476
  34922. }
  34923. },
  34924. boots: {
  34925. height: math.unit(5.5, "feet"),
  34926. name: "Boots",
  34927. image: {
  34928. source: "./media/characters/purri/boots.svg",
  34929. extra: 905/853,
  34930. bottom: 18/923
  34931. },
  34932. extraAttributes: {
  34933. "shoeSize": {
  34934. name: "Shoe Size",
  34935. power: 1,
  34936. type: "length",
  34937. base: math.unit(12, "ShoeSizeMensUS")
  34938. },
  34939. "platformHeight": {
  34940. name: "Platform Height",
  34941. power: 1,
  34942. type: "length",
  34943. base: math.unit(2, "inches")
  34944. },
  34945. }
  34946. },
  34947. lying: {
  34948. height: math.unit(2, "feet"),
  34949. name: "Lying",
  34950. image: {
  34951. source: "./media/characters/purri/lying.svg",
  34952. extra: 940/843,
  34953. bottom: 146/1086
  34954. }
  34955. },
  34956. devious: {
  34957. height: math.unit(1.77, "feet"),
  34958. name: "Devious",
  34959. image: {
  34960. source: "./media/characters/purri/devious.svg",
  34961. extra: 1440/1155,
  34962. bottom: 147/1587
  34963. }
  34964. },
  34965. bean: {
  34966. height: math.unit(1.94, "feet"),
  34967. name: "Bean",
  34968. image: {
  34969. source: "./media/characters/purri/bean.svg"
  34970. }
  34971. },
  34972. },
  34973. [
  34974. {
  34975. name: "Micro",
  34976. height: math.unit(1, "mm")
  34977. },
  34978. {
  34979. name: "Normal",
  34980. height: math.unit(6 + 5/12, "feet"),
  34981. default: true
  34982. },
  34983. {
  34984. name: "Macro :3c",
  34985. height: math.unit(2, "miles")
  34986. },
  34987. ]
  34988. ))
  34989. characterMakers.push(() => makeCharacter(
  34990. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34991. {
  34992. front: {
  34993. height: math.unit(6 + 2/12, "feet"),
  34994. weight: math.unit(250, "lb"),
  34995. name: "Front",
  34996. image: {
  34997. source: "./media/characters/moonlight/front.svg",
  34998. extra: 1044/908,
  34999. bottom: 56/1100
  35000. }
  35001. },
  35002. feral: {
  35003. height: math.unit(3 + 1/12, "feet"),
  35004. weight: math.unit(50, "kg"),
  35005. name: "Feral",
  35006. image: {
  35007. source: "./media/characters/moonlight/feral.svg",
  35008. extra: 3705/2791,
  35009. bottom: 145/3850
  35010. }
  35011. },
  35012. paw: {
  35013. height: math.unit(1, "feet"),
  35014. name: "Paw",
  35015. image: {
  35016. source: "./media/characters/moonlight/paw.svg"
  35017. }
  35018. },
  35019. paws: {
  35020. height: math.unit(0.98, "feet"),
  35021. name: "Paws",
  35022. image: {
  35023. source: "./media/characters/moonlight/paws.svg",
  35024. extra: 939/939,
  35025. bottom: 50/989
  35026. }
  35027. },
  35028. mouth: {
  35029. height: math.unit(0.48, "feet"),
  35030. name: "Mouth",
  35031. image: {
  35032. source: "./media/characters/moonlight/mouth.svg"
  35033. }
  35034. },
  35035. dick: {
  35036. height: math.unit(1.46, "feet"),
  35037. name: "Dick",
  35038. image: {
  35039. source: "./media/characters/moonlight/dick.svg"
  35040. }
  35041. },
  35042. },
  35043. [
  35044. {
  35045. name: "Normal",
  35046. height: math.unit(6 + 2/12, "feet"),
  35047. default: true
  35048. },
  35049. {
  35050. name: "Macro",
  35051. height: math.unit(300, "feet")
  35052. },
  35053. {
  35054. name: "Macro+",
  35055. height: math.unit(1, "mile")
  35056. },
  35057. {
  35058. name: "Mt. Moon",
  35059. height: math.unit(5, "miles")
  35060. },
  35061. {
  35062. name: "Megamacro",
  35063. height: math.unit(15, "miles")
  35064. },
  35065. ]
  35066. ))
  35067. characterMakers.push(() => makeCharacter(
  35068. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  35069. {
  35070. back: {
  35071. height: math.unit(6, "feet"),
  35072. weight: math.unit(150, "lb"),
  35073. name: "Back",
  35074. image: {
  35075. source: "./media/characters/sylen/back.svg",
  35076. extra: 1335/1273,
  35077. bottom: 107/1442
  35078. }
  35079. },
  35080. },
  35081. [
  35082. {
  35083. name: "Normal",
  35084. height: math.unit(5 + 5/12, "feet")
  35085. },
  35086. {
  35087. name: "Megamacro",
  35088. height: math.unit(3, "miles"),
  35089. default: true
  35090. },
  35091. ]
  35092. ))
  35093. characterMakers.push(() => makeCharacter(
  35094. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  35095. {
  35096. front: {
  35097. height: math.unit(6, "feet"),
  35098. weight: math.unit(190, "lb"),
  35099. name: "Front",
  35100. image: {
  35101. source: "./media/characters/huttser/front.svg",
  35102. extra: 1152/1058,
  35103. bottom: 23/1175
  35104. }
  35105. },
  35106. side: {
  35107. height: math.unit(6, "feet"),
  35108. weight: math.unit(190, "lb"),
  35109. name: "Side",
  35110. image: {
  35111. source: "./media/characters/huttser/side.svg",
  35112. extra: 1174/1065,
  35113. bottom: 18/1192
  35114. }
  35115. },
  35116. back: {
  35117. height: math.unit(6, "feet"),
  35118. weight: math.unit(190, "lb"),
  35119. name: "Back",
  35120. image: {
  35121. source: "./media/characters/huttser/back.svg",
  35122. extra: 1158/1056,
  35123. bottom: 12/1170
  35124. }
  35125. },
  35126. },
  35127. [
  35128. ]
  35129. ))
  35130. characterMakers.push(() => makeCharacter(
  35131. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  35132. {
  35133. side: {
  35134. height: math.unit(12 + 9/12, "feet"),
  35135. weight: math.unit(15000, "lb"),
  35136. name: "Side",
  35137. image: {
  35138. source: "./media/characters/faan/side.svg",
  35139. extra: 2747/2697,
  35140. bottom: 0/2747
  35141. }
  35142. },
  35143. front: {
  35144. height: math.unit(12 + 9/12, "feet"),
  35145. weight: math.unit(15000, "lb"),
  35146. name: "Front",
  35147. image: {
  35148. source: "./media/characters/faan/front.svg",
  35149. extra: 607/571,
  35150. bottom: 24/631
  35151. }
  35152. },
  35153. head: {
  35154. height: math.unit(2.85, "feet"),
  35155. name: "Head",
  35156. image: {
  35157. source: "./media/characters/faan/head.svg"
  35158. }
  35159. },
  35160. headAlt: {
  35161. height: math.unit(3.13, "feet"),
  35162. name: "Head (Alt)",
  35163. image: {
  35164. source: "./media/characters/faan/head-alt.svg"
  35165. }
  35166. },
  35167. },
  35168. [
  35169. {
  35170. name: "Normal",
  35171. height: math.unit(12 + 9/12, "feet"),
  35172. default: true
  35173. },
  35174. ]
  35175. ))
  35176. characterMakers.push(() => makeCharacter(
  35177. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  35178. {
  35179. front: {
  35180. height: math.unit(6, "feet"),
  35181. weight: math.unit(300, "lb"),
  35182. name: "Front",
  35183. image: {
  35184. source: "./media/characters/tanio/front.svg",
  35185. extra: 711/673,
  35186. bottom: 25/736
  35187. }
  35188. },
  35189. },
  35190. [
  35191. {
  35192. name: "Normal",
  35193. height: math.unit(6, "feet"),
  35194. default: true
  35195. },
  35196. ]
  35197. ))
  35198. characterMakers.push(() => makeCharacter(
  35199. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  35200. {
  35201. front: {
  35202. height: math.unit(3, "inches"),
  35203. name: "Front",
  35204. image: {
  35205. source: "./media/characters/noboru/front.svg",
  35206. extra: 1039/932,
  35207. bottom: 18/1057
  35208. }
  35209. },
  35210. },
  35211. [
  35212. {
  35213. name: "Micro",
  35214. height: math.unit(3, "inches"),
  35215. default: true
  35216. },
  35217. ]
  35218. ))
  35219. characterMakers.push(() => makeCharacter(
  35220. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  35221. {
  35222. front: {
  35223. height: math.unit(1.85, "meters"),
  35224. weight: math.unit(80, "kg"),
  35225. name: "Front",
  35226. image: {
  35227. source: "./media/characters/daniel-barrett/front.svg",
  35228. extra: 355/337,
  35229. bottom: 9/364
  35230. }
  35231. },
  35232. },
  35233. [
  35234. {
  35235. name: "Pico",
  35236. height: math.unit(0.0433, "mm")
  35237. },
  35238. {
  35239. name: "Nano",
  35240. height: math.unit(1.5, "mm")
  35241. },
  35242. {
  35243. name: "Micro",
  35244. height: math.unit(5.3, "cm"),
  35245. default: true
  35246. },
  35247. {
  35248. name: "Normal",
  35249. height: math.unit(1.85, "meters")
  35250. },
  35251. {
  35252. name: "Macro",
  35253. height: math.unit(64.7, "meters")
  35254. },
  35255. {
  35256. name: "Megamacro",
  35257. height: math.unit(2.26, "km")
  35258. },
  35259. {
  35260. name: "Gigamacro",
  35261. height: math.unit(79, "km")
  35262. },
  35263. {
  35264. name: "Teramacro",
  35265. height: math.unit(2765, "km")
  35266. },
  35267. {
  35268. name: "Petamacro",
  35269. height: math.unit(96678, "km")
  35270. },
  35271. ]
  35272. ))
  35273. characterMakers.push(() => makeCharacter(
  35274. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  35275. {
  35276. front: {
  35277. height: math.unit(30, "meters"),
  35278. weight: math.unit(400, "tons"),
  35279. name: "Front",
  35280. image: {
  35281. source: "./media/characters/zeel/front.svg",
  35282. extra: 2599/2599,
  35283. bottom: 226/2825
  35284. }
  35285. },
  35286. },
  35287. [
  35288. {
  35289. name: "Macro",
  35290. height: math.unit(30, "meters"),
  35291. default: true
  35292. },
  35293. ]
  35294. ))
  35295. characterMakers.push(() => makeCharacter(
  35296. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  35297. {
  35298. front: {
  35299. height: math.unit(6 + 7/12, "feet"),
  35300. weight: math.unit(210, "lb"),
  35301. name: "Front",
  35302. image: {
  35303. source: "./media/characters/tarn/front.svg",
  35304. extra: 3517/3220,
  35305. bottom: 91/3608
  35306. }
  35307. },
  35308. back: {
  35309. height: math.unit(6 + 7/12, "feet"),
  35310. weight: math.unit(210, "lb"),
  35311. name: "Back",
  35312. image: {
  35313. source: "./media/characters/tarn/back.svg",
  35314. extra: 3566/3241,
  35315. bottom: 34/3600
  35316. }
  35317. },
  35318. dick: {
  35319. height: math.unit(1.65, "feet"),
  35320. name: "Dick",
  35321. image: {
  35322. source: "./media/characters/tarn/dick.svg"
  35323. }
  35324. },
  35325. paw: {
  35326. height: math.unit(1.80, "feet"),
  35327. name: "Paw",
  35328. image: {
  35329. source: "./media/characters/tarn/paw.svg"
  35330. }
  35331. },
  35332. tongue: {
  35333. height: math.unit(0.97, "feet"),
  35334. name: "Tongue",
  35335. image: {
  35336. source: "./media/characters/tarn/tongue.svg"
  35337. }
  35338. },
  35339. },
  35340. [
  35341. {
  35342. name: "Micro",
  35343. height: math.unit(4, "inches")
  35344. },
  35345. {
  35346. name: "Normal",
  35347. height: math.unit(6 + 7/12, "feet"),
  35348. default: true
  35349. },
  35350. {
  35351. name: "Macro",
  35352. height: math.unit(300, "feet")
  35353. },
  35354. ]
  35355. ))
  35356. characterMakers.push(() => makeCharacter(
  35357. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  35358. {
  35359. front: {
  35360. height: math.unit(5 + 7/12, "feet"),
  35361. weight: math.unit(80, "kg"),
  35362. name: "Front",
  35363. image: {
  35364. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  35365. extra: 3023/2865,
  35366. bottom: 33/3056
  35367. }
  35368. },
  35369. back: {
  35370. height: math.unit(5 + 7/12, "feet"),
  35371. weight: math.unit(80, "kg"),
  35372. name: "Back",
  35373. image: {
  35374. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  35375. extra: 3020/2886,
  35376. bottom: 30/3050
  35377. }
  35378. },
  35379. dick: {
  35380. height: math.unit(0.98, "feet"),
  35381. name: "Dick",
  35382. image: {
  35383. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35384. }
  35385. },
  35386. anatomy: {
  35387. height: math.unit(2.86, "feet"),
  35388. name: "Anatomy",
  35389. image: {
  35390. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35391. }
  35392. },
  35393. },
  35394. [
  35395. {
  35396. name: "Really Small",
  35397. height: math.unit(2, "inches")
  35398. },
  35399. {
  35400. name: "Micro",
  35401. height: math.unit(5.583, "inches")
  35402. },
  35403. {
  35404. name: "Normal",
  35405. height: math.unit(5 + 7/12, "feet"),
  35406. default: true
  35407. },
  35408. {
  35409. name: "Macro",
  35410. height: math.unit(67, "feet")
  35411. },
  35412. {
  35413. name: "Megamacro",
  35414. height: math.unit(134, "feet")
  35415. },
  35416. ]
  35417. ))
  35418. characterMakers.push(() => makeCharacter(
  35419. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35420. {
  35421. front: {
  35422. height: math.unit(9, "feet"),
  35423. weight: math.unit(120, "lb"),
  35424. name: "Front",
  35425. image: {
  35426. source: "./media/characters/sally/front.svg",
  35427. extra: 1506/1349,
  35428. bottom: 66/1572
  35429. }
  35430. },
  35431. },
  35432. [
  35433. {
  35434. name: "Normal",
  35435. height: math.unit(9, "feet"),
  35436. default: true
  35437. },
  35438. ]
  35439. ))
  35440. characterMakers.push(() => makeCharacter(
  35441. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35442. {
  35443. front: {
  35444. height: math.unit(8, "feet"),
  35445. weight: math.unit(900, "lb"),
  35446. name: "Front",
  35447. image: {
  35448. source: "./media/characters/owen/front.svg",
  35449. extra: 1761/1657,
  35450. bottom: 74/1835
  35451. }
  35452. },
  35453. side: {
  35454. height: math.unit(8, "feet"),
  35455. weight: math.unit(900, "lb"),
  35456. name: "Side",
  35457. image: {
  35458. source: "./media/characters/owen/side.svg",
  35459. extra: 1797/1734,
  35460. bottom: 30/1827
  35461. }
  35462. },
  35463. back: {
  35464. height: math.unit(8, "feet"),
  35465. weight: math.unit(900, "lb"),
  35466. name: "Back",
  35467. image: {
  35468. source: "./media/characters/owen/back.svg",
  35469. extra: 1796/1706,
  35470. bottom: 59/1855
  35471. }
  35472. },
  35473. maw: {
  35474. height: math.unit(1.76, "feet"),
  35475. name: "Maw",
  35476. image: {
  35477. source: "./media/characters/owen/maw.svg"
  35478. }
  35479. },
  35480. },
  35481. [
  35482. {
  35483. name: "Normal",
  35484. height: math.unit(8, "feet"),
  35485. default: true
  35486. },
  35487. ]
  35488. ))
  35489. characterMakers.push(() => makeCharacter(
  35490. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35491. {
  35492. front: {
  35493. height: math.unit(4, "feet"),
  35494. weight: math.unit(400, "lb"),
  35495. name: "Front",
  35496. image: {
  35497. source: "./media/characters/ryth/front.svg",
  35498. extra: 1920/1748,
  35499. bottom: 42/1962
  35500. }
  35501. },
  35502. back: {
  35503. height: math.unit(4, "feet"),
  35504. weight: math.unit(400, "lb"),
  35505. name: "Back",
  35506. image: {
  35507. source: "./media/characters/ryth/back.svg",
  35508. extra: 1897/1690,
  35509. bottom: 89/1986
  35510. }
  35511. },
  35512. mouth: {
  35513. height: math.unit(1.39, "feet"),
  35514. name: "Mouth",
  35515. image: {
  35516. source: "./media/characters/ryth/mouth.svg"
  35517. }
  35518. },
  35519. tailmaw: {
  35520. height: math.unit(1.23, "feet"),
  35521. name: "Tailmaw",
  35522. image: {
  35523. source: "./media/characters/ryth/tailmaw.svg"
  35524. }
  35525. },
  35526. goia: {
  35527. height: math.unit(4, "meters"),
  35528. weight: math.unit(10800, "lb"),
  35529. name: "Goia",
  35530. image: {
  35531. source: "./media/characters/ryth/goia.svg",
  35532. extra: 745/640,
  35533. bottom: 107/852
  35534. }
  35535. },
  35536. goiaFront: {
  35537. height: math.unit(4, "meters"),
  35538. weight: math.unit(10800, "lb"),
  35539. name: "Goia (Front)",
  35540. image: {
  35541. source: "./media/characters/ryth/goia-front.svg",
  35542. extra: 750/586,
  35543. bottom: 114/864
  35544. }
  35545. },
  35546. goiaMaw: {
  35547. height: math.unit(5.55, "feet"),
  35548. name: "Goia Maw",
  35549. image: {
  35550. source: "./media/characters/ryth/goia-maw.svg"
  35551. }
  35552. },
  35553. goiaForepaw: {
  35554. height: math.unit(3.5, "feet"),
  35555. name: "Goia Forepaw",
  35556. image: {
  35557. source: "./media/characters/ryth/goia-forepaw.svg"
  35558. }
  35559. },
  35560. goiaHindpaw: {
  35561. height: math.unit(5.55, "feet"),
  35562. name: "Goia Hindpaw",
  35563. image: {
  35564. source: "./media/characters/ryth/goia-hindpaw.svg"
  35565. }
  35566. },
  35567. },
  35568. [
  35569. {
  35570. name: "Normal",
  35571. height: math.unit(4, "feet"),
  35572. default: true
  35573. },
  35574. ]
  35575. ))
  35576. characterMakers.push(() => makeCharacter(
  35577. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35578. {
  35579. front: {
  35580. height: math.unit(7, "feet"),
  35581. weight: math.unit(180, "lb"),
  35582. name: "Front",
  35583. image: {
  35584. source: "./media/characters/necrolance/front.svg",
  35585. extra: 1062/947,
  35586. bottom: 41/1103
  35587. }
  35588. },
  35589. back: {
  35590. height: math.unit(7, "feet"),
  35591. weight: math.unit(180, "lb"),
  35592. name: "Back",
  35593. image: {
  35594. source: "./media/characters/necrolance/back.svg",
  35595. extra: 1045/984,
  35596. bottom: 14/1059
  35597. }
  35598. },
  35599. wing: {
  35600. height: math.unit(2.67, "feet"),
  35601. name: "Wing",
  35602. image: {
  35603. source: "./media/characters/necrolance/wing.svg"
  35604. }
  35605. },
  35606. },
  35607. [
  35608. {
  35609. name: "Normal",
  35610. height: math.unit(7, "feet"),
  35611. default: true
  35612. },
  35613. ]
  35614. ))
  35615. characterMakers.push(() => makeCharacter(
  35616. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35617. {
  35618. front: {
  35619. height: math.unit(76, "meters"),
  35620. weight: math.unit(30000, "tons"),
  35621. name: "Front",
  35622. image: {
  35623. source: "./media/characters/tyler/front.svg",
  35624. extra: 1640/1640,
  35625. bottom: 114/1754
  35626. }
  35627. },
  35628. },
  35629. [
  35630. {
  35631. name: "Macro",
  35632. height: math.unit(76, "meters"),
  35633. default: true
  35634. },
  35635. ]
  35636. ))
  35637. characterMakers.push(() => makeCharacter(
  35638. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35639. {
  35640. front: {
  35641. height: math.unit(4 + 11/12, "feet"),
  35642. weight: math.unit(132, "lb"),
  35643. name: "Front",
  35644. image: {
  35645. source: "./media/characters/icey/front.svg",
  35646. extra: 2750/2550,
  35647. bottom: 33/2783
  35648. }
  35649. },
  35650. back: {
  35651. height: math.unit(4 + 11/12, "feet"),
  35652. weight: math.unit(132, "lb"),
  35653. name: "Back",
  35654. image: {
  35655. source: "./media/characters/icey/back.svg",
  35656. extra: 2624/2481,
  35657. bottom: 35/2659
  35658. }
  35659. },
  35660. },
  35661. [
  35662. {
  35663. name: "Normal",
  35664. height: math.unit(4 + 11/12, "feet"),
  35665. default: true
  35666. },
  35667. ]
  35668. ))
  35669. characterMakers.push(() => makeCharacter(
  35670. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35671. {
  35672. front: {
  35673. height: math.unit(100, "feet"),
  35674. weight: math.unit(0, "lb"),
  35675. name: "Front",
  35676. image: {
  35677. source: "./media/characters/smile/front.svg",
  35678. extra: 2983/2912,
  35679. bottom: 162/3145
  35680. }
  35681. },
  35682. back: {
  35683. height: math.unit(100, "feet"),
  35684. weight: math.unit(0, "lb"),
  35685. name: "Back",
  35686. image: {
  35687. source: "./media/characters/smile/back.svg",
  35688. extra: 3143/3031,
  35689. bottom: 91/3234
  35690. }
  35691. },
  35692. head: {
  35693. height: math.unit(26.3, "feet"),
  35694. weight: math.unit(0, "lb"),
  35695. name: "Head",
  35696. image: {
  35697. source: "./media/characters/smile/head.svg"
  35698. }
  35699. },
  35700. collar: {
  35701. height: math.unit(5.3, "feet"),
  35702. weight: math.unit(0, "lb"),
  35703. name: "Collar",
  35704. image: {
  35705. source: "./media/characters/smile/collar.svg"
  35706. }
  35707. },
  35708. },
  35709. [
  35710. {
  35711. name: "Macro",
  35712. height: math.unit(100, "feet"),
  35713. default: true
  35714. },
  35715. ]
  35716. ))
  35717. characterMakers.push(() => makeCharacter(
  35718. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35719. {
  35720. dragon: {
  35721. height: math.unit(26, "feet"),
  35722. weight: math.unit(36, "tons"),
  35723. name: "Dragon",
  35724. image: {
  35725. source: "./media/characters/arimphae/dragon.svg",
  35726. extra: 1574/983,
  35727. bottom: 357/1931
  35728. }
  35729. },
  35730. drake: {
  35731. height: math.unit(9, "feet"),
  35732. weight: math.unit(1.5, "tons"),
  35733. name: "Drake",
  35734. image: {
  35735. source: "./media/characters/arimphae/drake.svg",
  35736. extra: 1120/925,
  35737. bottom: 435/1555
  35738. }
  35739. },
  35740. },
  35741. [
  35742. {
  35743. name: "Small",
  35744. height: math.unit(26*5/9, "feet")
  35745. },
  35746. {
  35747. name: "Normal",
  35748. height: math.unit(26, "feet"),
  35749. default: true
  35750. },
  35751. ]
  35752. ))
  35753. characterMakers.push(() => makeCharacter(
  35754. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35755. {
  35756. front: {
  35757. height: math.unit(8 + 9/12, "feet"),
  35758. name: "Front",
  35759. image: {
  35760. source: "./media/characters/xander/front.svg",
  35761. extra: 1237/974,
  35762. bottom: 94/1331
  35763. }
  35764. },
  35765. },
  35766. [
  35767. {
  35768. name: "Normal",
  35769. height: math.unit(8 + 9/12, "feet"),
  35770. default: true
  35771. },
  35772. {
  35773. name: "Gaze Grabber",
  35774. height: math.unit(13 + 8/12, "feet")
  35775. },
  35776. {
  35777. name: "Jaw Dropper",
  35778. height: math.unit(27, "feet")
  35779. },
  35780. {
  35781. name: "Show Stopper",
  35782. height: math.unit(136, "feet")
  35783. },
  35784. {
  35785. name: "Superstar",
  35786. height: math.unit(1.9e6, "miles")
  35787. },
  35788. ]
  35789. ))
  35790. characterMakers.push(() => makeCharacter(
  35791. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35792. {
  35793. side: {
  35794. height: math.unit(2100, "feet"),
  35795. name: "Side",
  35796. image: {
  35797. source: "./media/characters/osiris/side.svg",
  35798. extra: 1105/939,
  35799. bottom: 167/1272
  35800. }
  35801. },
  35802. },
  35803. [
  35804. {
  35805. name: "Macro",
  35806. height: math.unit(2100, "feet"),
  35807. default: true
  35808. },
  35809. ]
  35810. ))
  35811. characterMakers.push(() => makeCharacter(
  35812. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35813. {
  35814. front: {
  35815. height: math.unit(6 + 8/12, "feet"),
  35816. weight: math.unit(225, "lb"),
  35817. name: "Front",
  35818. image: {
  35819. source: "./media/characters/rhys-londe/front.svg",
  35820. extra: 2258/2141,
  35821. bottom: 188/2446
  35822. }
  35823. },
  35824. back: {
  35825. height: math.unit(6 + 8/12, "feet"),
  35826. weight: math.unit(225, "lb"),
  35827. name: "Back",
  35828. image: {
  35829. source: "./media/characters/rhys-londe/back.svg",
  35830. extra: 2237/2137,
  35831. bottom: 63/2300
  35832. }
  35833. },
  35834. frontNsfw: {
  35835. height: math.unit(6 + 8/12, "feet"),
  35836. weight: math.unit(225, "lb"),
  35837. name: "Front (NSFW)",
  35838. image: {
  35839. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35840. extra: 2258/2141,
  35841. bottom: 188/2446
  35842. }
  35843. },
  35844. backNsfw: {
  35845. height: math.unit(6 + 8/12, "feet"),
  35846. weight: math.unit(225, "lb"),
  35847. name: "Back (NSFW)",
  35848. image: {
  35849. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35850. extra: 2237/2137,
  35851. bottom: 63/2300
  35852. }
  35853. },
  35854. dick: {
  35855. height: math.unit(30, "inches"),
  35856. name: "Dick",
  35857. image: {
  35858. source: "./media/characters/rhys-londe/dick.svg"
  35859. }
  35860. },
  35861. maw: {
  35862. height: math.unit(1.6, "feet"),
  35863. name: "Maw",
  35864. image: {
  35865. source: "./media/characters/rhys-londe/maw.svg"
  35866. }
  35867. },
  35868. },
  35869. [
  35870. {
  35871. name: "Normal",
  35872. height: math.unit(6 + 8/12, "feet"),
  35873. default: true
  35874. },
  35875. ]
  35876. ))
  35877. characterMakers.push(() => makeCharacter(
  35878. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35879. {
  35880. front: {
  35881. height: math.unit(3 + 10/12, "feet"),
  35882. weight: math.unit(90, "lb"),
  35883. name: "Front",
  35884. image: {
  35885. source: "./media/characters/taivas-ensim/front.svg",
  35886. extra: 1327/1216,
  35887. bottom: 96/1423
  35888. }
  35889. },
  35890. back: {
  35891. height: math.unit(3 + 10/12, "feet"),
  35892. weight: math.unit(90, "lb"),
  35893. name: "Back",
  35894. image: {
  35895. source: "./media/characters/taivas-ensim/back.svg",
  35896. extra: 1355/1247,
  35897. bottom: 11/1366
  35898. }
  35899. },
  35900. frontNsfw: {
  35901. height: math.unit(3 + 10/12, "feet"),
  35902. weight: math.unit(90, "lb"),
  35903. name: "Front (NSFW)",
  35904. image: {
  35905. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35906. extra: 1327/1216,
  35907. bottom: 96/1423
  35908. }
  35909. },
  35910. backNsfw: {
  35911. height: math.unit(3 + 10/12, "feet"),
  35912. weight: math.unit(90, "lb"),
  35913. name: "Back (NSFW)",
  35914. image: {
  35915. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35916. extra: 1355/1247,
  35917. bottom: 11/1366
  35918. }
  35919. },
  35920. },
  35921. [
  35922. {
  35923. name: "Normal",
  35924. height: math.unit(3 + 10/12, "feet"),
  35925. default: true
  35926. },
  35927. ]
  35928. ))
  35929. characterMakers.push(() => makeCharacter(
  35930. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35931. {
  35932. front: {
  35933. height: math.unit(9 + 6/12, "feet"),
  35934. weight: math.unit(940, "lb"),
  35935. name: "Front",
  35936. image: {
  35937. source: "./media/characters/byliss/front.svg",
  35938. extra: 1327/1290,
  35939. bottom: 82/1409
  35940. }
  35941. },
  35942. back: {
  35943. height: math.unit(9 + 6/12, "feet"),
  35944. weight: math.unit(940, "lb"),
  35945. name: "Back",
  35946. image: {
  35947. source: "./media/characters/byliss/back.svg",
  35948. extra: 1376/1349,
  35949. bottom: 9/1385
  35950. }
  35951. },
  35952. frontNsfw: {
  35953. height: math.unit(9 + 6/12, "feet"),
  35954. weight: math.unit(940, "lb"),
  35955. name: "Front (NSFW)",
  35956. image: {
  35957. source: "./media/characters/byliss/front-nsfw.svg",
  35958. extra: 1327/1290,
  35959. bottom: 82/1409
  35960. }
  35961. },
  35962. backNsfw: {
  35963. height: math.unit(9 + 6/12, "feet"),
  35964. weight: math.unit(940, "lb"),
  35965. name: "Back (NSFW)",
  35966. image: {
  35967. source: "./media/characters/byliss/back-nsfw.svg",
  35968. extra: 1376/1349,
  35969. bottom: 9/1385
  35970. }
  35971. },
  35972. },
  35973. [
  35974. {
  35975. name: "Normal",
  35976. height: math.unit(9 + 6/12, "feet"),
  35977. default: true
  35978. },
  35979. ]
  35980. ))
  35981. characterMakers.push(() => makeCharacter(
  35982. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35983. {
  35984. front: {
  35985. height: math.unit(5 + 2/12, "feet"),
  35986. weight: math.unit(200, "lb"),
  35987. name: "Front",
  35988. image: {
  35989. source: "./media/characters/noraly/front.svg",
  35990. extra: 4985/4773,
  35991. bottom: 150/5135
  35992. }
  35993. },
  35994. full: {
  35995. height: math.unit(5 + 2/12, "feet"),
  35996. weight: math.unit(164, "lb"),
  35997. name: "Full",
  35998. image: {
  35999. source: "./media/characters/noraly/full.svg",
  36000. extra: 1114/1059,
  36001. bottom: 35/1149
  36002. }
  36003. },
  36004. fuller: {
  36005. height: math.unit(5 + 2/12, "feet"),
  36006. weight: math.unit(230, "lb"),
  36007. name: "Fuller",
  36008. image: {
  36009. source: "./media/characters/noraly/fuller.svg",
  36010. extra: 1114/1059,
  36011. bottom: 35/1149
  36012. }
  36013. },
  36014. fullest: {
  36015. height: math.unit(5 + 2/12, "feet"),
  36016. weight: math.unit(300, "lb"),
  36017. name: "Fullest",
  36018. image: {
  36019. source: "./media/characters/noraly/fullest.svg",
  36020. extra: 1114/1059,
  36021. bottom: 35/1149
  36022. }
  36023. },
  36024. },
  36025. [
  36026. {
  36027. name: "Normal",
  36028. height: math.unit(5 + 2/12, "feet"),
  36029. default: true
  36030. },
  36031. ]
  36032. ))
  36033. characterMakers.push(() => makeCharacter(
  36034. { name: "Pera", species: ["snake"], tags: ["naga"] },
  36035. {
  36036. front: {
  36037. height: math.unit(5 + 2/12, "feet"),
  36038. weight: math.unit(210, "lb"),
  36039. name: "Front",
  36040. image: {
  36041. source: "./media/characters/pera/front.svg",
  36042. extra: 1560/1531,
  36043. bottom: 165/1725
  36044. }
  36045. },
  36046. back: {
  36047. height: math.unit(5 + 2/12, "feet"),
  36048. weight: math.unit(210, "lb"),
  36049. name: "Back",
  36050. image: {
  36051. source: "./media/characters/pera/back.svg",
  36052. extra: 1523/1493,
  36053. bottom: 152/1675
  36054. }
  36055. },
  36056. dick: {
  36057. height: math.unit(2.4, "feet"),
  36058. name: "Dick",
  36059. image: {
  36060. source: "./media/characters/pera/dick.svg"
  36061. }
  36062. },
  36063. },
  36064. [
  36065. {
  36066. name: "Normal",
  36067. height: math.unit(5 + 2/12, "feet"),
  36068. default: true
  36069. },
  36070. ]
  36071. ))
  36072. characterMakers.push(() => makeCharacter(
  36073. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  36074. {
  36075. front: {
  36076. height: math.unit(12, "feet"),
  36077. weight: math.unit(3200, "lb"),
  36078. name: "Front",
  36079. image: {
  36080. source: "./media/characters/julian/front.svg",
  36081. extra: 2962/2701,
  36082. bottom: 184/3146
  36083. }
  36084. },
  36085. maw: {
  36086. height: math.unit(5.35, "feet"),
  36087. name: "Maw",
  36088. image: {
  36089. source: "./media/characters/julian/maw.svg"
  36090. }
  36091. },
  36092. paw: {
  36093. height: math.unit(3.07, "feet"),
  36094. name: "Paw",
  36095. image: {
  36096. source: "./media/characters/julian/paw.svg"
  36097. }
  36098. },
  36099. },
  36100. [
  36101. {
  36102. name: "Actual Size",
  36103. height: math.unit(1e-8, "angstroms")
  36104. },
  36105. {
  36106. name: "Max Size",
  36107. height: math.unit(0.01, "mm"),
  36108. default: true
  36109. },
  36110. ]
  36111. ))
  36112. characterMakers.push(() => makeCharacter(
  36113. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  36114. {
  36115. solgooleo: {
  36116. height: math.unit(4, "meters"),
  36117. weight: math.unit(6000*1.5, "kg"),
  36118. volume: math.unit(6000, "liters"),
  36119. name: "Solgooleo",
  36120. image: {
  36121. source: "./media/characters/pi/solgooleo.svg",
  36122. extra: 388/331,
  36123. bottom: 29/417
  36124. }
  36125. },
  36126. },
  36127. [
  36128. {
  36129. name: "Normal",
  36130. height: math.unit(4, "meters"),
  36131. default: true
  36132. },
  36133. ]
  36134. ))
  36135. characterMakers.push(() => makeCharacter(
  36136. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  36137. {
  36138. front: {
  36139. height: math.unit(8, "feet"),
  36140. weight: math.unit(4, "tons"),
  36141. name: "Front",
  36142. image: {
  36143. source: "./media/characters/shaun/front.svg",
  36144. extra: 503/495,
  36145. bottom: 20/523
  36146. }
  36147. },
  36148. back: {
  36149. height: math.unit(8, "feet"),
  36150. weight: math.unit(4, "tons"),
  36151. name: "Back",
  36152. image: {
  36153. source: "./media/characters/shaun/back.svg",
  36154. extra: 487/480,
  36155. bottom: 20/507
  36156. }
  36157. },
  36158. },
  36159. [
  36160. {
  36161. name: "Lorg",
  36162. height: math.unit(8, "feet"),
  36163. default: true
  36164. },
  36165. ]
  36166. ))
  36167. characterMakers.push(() => makeCharacter(
  36168. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  36169. {
  36170. frontAnthro: {
  36171. height: math.unit(7, "feet"),
  36172. name: "Front",
  36173. image: {
  36174. source: "./media/characters/sini/front-anthro.svg",
  36175. extra: 726/678,
  36176. bottom: 35/761
  36177. },
  36178. form: "anthro",
  36179. default: true
  36180. },
  36181. backAnthro: {
  36182. height: math.unit(7, "feet"),
  36183. name: "Back",
  36184. image: {
  36185. source: "./media/characters/sini/back-anthro.svg",
  36186. extra: 743/701,
  36187. bottom: 12/755
  36188. },
  36189. form: "anthro",
  36190. },
  36191. frontAnthroNsfw: {
  36192. height: math.unit(7, "feet"),
  36193. name: "Front (NSFW)",
  36194. image: {
  36195. source: "./media/characters/sini/front-anthro-nsfw.svg",
  36196. extra: 726/678,
  36197. bottom: 35/761
  36198. },
  36199. form: "anthro"
  36200. },
  36201. backAnthroNsfw: {
  36202. height: math.unit(7, "feet"),
  36203. name: "Back (NSFW)",
  36204. image: {
  36205. source: "./media/characters/sini/back-anthro-nsfw.svg",
  36206. extra: 743/701,
  36207. bottom: 12/755
  36208. },
  36209. form: "anthro",
  36210. },
  36211. mawAnthro: {
  36212. height: math.unit(2.14, "feet"),
  36213. name: "Maw",
  36214. image: {
  36215. source: "./media/characters/sini/maw-anthro.svg"
  36216. },
  36217. form: "anthro"
  36218. },
  36219. dick: {
  36220. height: math.unit(1.45, "feet"),
  36221. name: "Dick",
  36222. image: {
  36223. source: "./media/characters/sini/dick-anthro.svg"
  36224. },
  36225. form: "anthro"
  36226. },
  36227. feral: {
  36228. height: math.unit(16, "feet"),
  36229. name: "Feral",
  36230. image: {
  36231. source: "./media/characters/sini/feral.svg",
  36232. extra: 814/605,
  36233. bottom: 11/825
  36234. },
  36235. form: "feral",
  36236. default: true
  36237. },
  36238. feralNsfw: {
  36239. height: math.unit(16, "feet"),
  36240. name: "Feral (NSFW)",
  36241. image: {
  36242. source: "./media/characters/sini/feral-nsfw.svg",
  36243. extra: 814/605,
  36244. bottom: 11/825
  36245. },
  36246. form: "feral"
  36247. },
  36248. mawFeral: {
  36249. height: math.unit(5.66, "feet"),
  36250. name: "Maw",
  36251. image: {
  36252. source: "./media/characters/sini/maw-feral.svg"
  36253. },
  36254. form: "feral",
  36255. },
  36256. pawFeral: {
  36257. height: math.unit(5.17, "feet"),
  36258. name: "Paw",
  36259. image: {
  36260. source: "./media/characters/sini/paw-feral.svg"
  36261. },
  36262. form: "feral",
  36263. },
  36264. rumpFeral: {
  36265. height: math.unit(13.11, "feet"),
  36266. name: "Rump",
  36267. image: {
  36268. source: "./media/characters/sini/rump-feral.svg"
  36269. },
  36270. form: "feral",
  36271. },
  36272. dickFeral: {
  36273. height: math.unit(1, "feet"),
  36274. name: "Dick",
  36275. image: {
  36276. source: "./media/characters/sini/dick-feral.svg"
  36277. },
  36278. form: "feral",
  36279. },
  36280. eyeFeral: {
  36281. height: math.unit(1.23, "feet"),
  36282. name: "Eye",
  36283. image: {
  36284. source: "./media/characters/sini/eye-feral.svg"
  36285. },
  36286. form: "feral",
  36287. },
  36288. },
  36289. [
  36290. {
  36291. name: "Normal",
  36292. height: math.unit(7, "feet"),
  36293. default: true,
  36294. form: "anthro"
  36295. },
  36296. {
  36297. name: "Normal",
  36298. height: math.unit(16, "feet"),
  36299. default: true,
  36300. form: "feral"
  36301. },
  36302. ],
  36303. {
  36304. "anthro": {
  36305. name: "Anthro",
  36306. default: true
  36307. },
  36308. "feral": {
  36309. name: "Feral",
  36310. }
  36311. }
  36312. ))
  36313. characterMakers.push(() => makeCharacter(
  36314. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  36315. {
  36316. side: {
  36317. height: math.unit(47.2, "meters"),
  36318. weight: math.unit(10000, "tons"),
  36319. name: "Side",
  36320. image: {
  36321. source: "./media/characters/raylldo/side.svg",
  36322. extra: 2363/642,
  36323. bottom: 221/2584
  36324. }
  36325. },
  36326. top: {
  36327. height: math.unit(240, "meters"),
  36328. weight: math.unit(10000, "tons"),
  36329. name: "Top",
  36330. image: {
  36331. source: "./media/characters/raylldo/top.svg"
  36332. }
  36333. },
  36334. bottom: {
  36335. height: math.unit(240, "meters"),
  36336. weight: math.unit(10000, "tons"),
  36337. name: "Bottom",
  36338. image: {
  36339. source: "./media/characters/raylldo/bottom.svg"
  36340. }
  36341. },
  36342. head: {
  36343. height: math.unit(38.6, "meters"),
  36344. name: "Head",
  36345. image: {
  36346. source: "./media/characters/raylldo/head.svg",
  36347. extra: 1335/1112,
  36348. bottom: 0/1335
  36349. }
  36350. },
  36351. maw: {
  36352. height: math.unit(16.37, "meters"),
  36353. name: "Maw",
  36354. image: {
  36355. source: "./media/characters/raylldo/maw.svg",
  36356. extra: 883/660,
  36357. bottom: 0/883
  36358. },
  36359. extraAttributes: {
  36360. preyCapacity: {
  36361. name: "Capacity",
  36362. power: 3,
  36363. type: "volume",
  36364. base: math.unit(1000, "people")
  36365. },
  36366. tongueSize: {
  36367. name: "Tongue Size",
  36368. power: 2,
  36369. type: "area",
  36370. base: math.unit(21, "m^2")
  36371. }
  36372. }
  36373. },
  36374. forepaw: {
  36375. height: math.unit(18, "meters"),
  36376. name: "Forepaw",
  36377. image: {
  36378. source: "./media/characters/raylldo/forepaw.svg"
  36379. }
  36380. },
  36381. hindpaw: {
  36382. height: math.unit(23, "meters"),
  36383. name: "Hindpaw",
  36384. image: {
  36385. source: "./media/characters/raylldo/hindpaw.svg"
  36386. }
  36387. },
  36388. genitals: {
  36389. height: math.unit(42, "meters"),
  36390. name: "Genitals",
  36391. image: {
  36392. source: "./media/characters/raylldo/genitals.svg"
  36393. }
  36394. },
  36395. },
  36396. [
  36397. {
  36398. name: "Normal",
  36399. height: math.unit(47.2, "meters"),
  36400. default: true
  36401. },
  36402. ]
  36403. ))
  36404. characterMakers.push(() => makeCharacter(
  36405. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36406. {
  36407. anthroFront: {
  36408. height: math.unit(9, "feet"),
  36409. weight: math.unit(600, "lb"),
  36410. name: "Anthro (Front)",
  36411. image: {
  36412. source: "./media/characters/glint/anthro-front.svg",
  36413. extra: 1097/1018,
  36414. bottom: 28/1125
  36415. }
  36416. },
  36417. anthroBack: {
  36418. height: math.unit(9, "feet"),
  36419. weight: math.unit(600, "lb"),
  36420. name: "Anthro (Back)",
  36421. image: {
  36422. source: "./media/characters/glint/anthro-back.svg",
  36423. extra: 1154/997,
  36424. bottom: 36/1190
  36425. }
  36426. },
  36427. feral: {
  36428. height: math.unit(11, "feet"),
  36429. weight: math.unit(50000, "lb"),
  36430. name: "Feral",
  36431. image: {
  36432. source: "./media/characters/glint/feral.svg",
  36433. extra: 3035/1585,
  36434. bottom: 1169/4204
  36435. }
  36436. },
  36437. dickAnthro: {
  36438. height: math.unit(0.7, "meters"),
  36439. name: "Dick (Anthro)",
  36440. image: {
  36441. source: "./media/characters/glint/dick-anthro.svg"
  36442. }
  36443. },
  36444. dickFeral: {
  36445. height: math.unit(2.65, "meters"),
  36446. name: "Dick (Feral)",
  36447. image: {
  36448. source: "./media/characters/glint/dick-feral.svg"
  36449. }
  36450. },
  36451. slitHidden: {
  36452. height: math.unit(5.85, "meters"),
  36453. name: "Slit (Hidden)",
  36454. image: {
  36455. source: "./media/characters/glint/slit-hidden.svg"
  36456. }
  36457. },
  36458. slitErect: {
  36459. height: math.unit(5.85, "meters"),
  36460. name: "Slit (Erect)",
  36461. image: {
  36462. source: "./media/characters/glint/slit-erect.svg"
  36463. }
  36464. },
  36465. mawAnthro: {
  36466. height: math.unit(0.63, "meters"),
  36467. name: "Maw (Anthro)",
  36468. image: {
  36469. source: "./media/characters/glint/maw.svg"
  36470. }
  36471. },
  36472. mawFeral: {
  36473. height: math.unit(2.89, "meters"),
  36474. name: "Maw (Feral)",
  36475. image: {
  36476. source: "./media/characters/glint/maw.svg"
  36477. }
  36478. },
  36479. },
  36480. [
  36481. {
  36482. name: "Normal",
  36483. height: math.unit(9, "feet"),
  36484. default: true
  36485. },
  36486. ]
  36487. ))
  36488. characterMakers.push(() => makeCharacter(
  36489. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36490. {
  36491. side: {
  36492. height: math.unit(15, "feet"),
  36493. weight: math.unit(5000, "kg"),
  36494. name: "Side",
  36495. image: {
  36496. source: "./media/characters/kairne/side.svg",
  36497. extra: 979/811,
  36498. bottom: 13/992
  36499. }
  36500. },
  36501. front: {
  36502. height: math.unit(15, "feet"),
  36503. weight: math.unit(5000, "kg"),
  36504. name: "Front",
  36505. image: {
  36506. source: "./media/characters/kairne/front.svg",
  36507. extra: 908/814,
  36508. bottom: 26/934
  36509. }
  36510. },
  36511. sideNsfw: {
  36512. height: math.unit(15, "feet"),
  36513. weight: math.unit(5000, "kg"),
  36514. name: "Side (NSFW)",
  36515. image: {
  36516. source: "./media/characters/kairne/side-nsfw.svg",
  36517. extra: 979/811,
  36518. bottom: 13/992
  36519. }
  36520. },
  36521. frontNsfw: {
  36522. height: math.unit(15, "feet"),
  36523. weight: math.unit(5000, "kg"),
  36524. name: "Front (NSFW)",
  36525. image: {
  36526. source: "./media/characters/kairne/front-nsfw.svg",
  36527. extra: 908/814,
  36528. bottom: 26/934
  36529. }
  36530. },
  36531. dickCaged: {
  36532. height: math.unit(0.65, "meters"),
  36533. name: "Dick (Caged)",
  36534. image: {
  36535. source: "./media/characters/kairne/dick-caged.svg"
  36536. }
  36537. },
  36538. dick: {
  36539. height: math.unit(0.79, "meters"),
  36540. name: "Dick",
  36541. image: {
  36542. source: "./media/characters/kairne/dick.svg"
  36543. }
  36544. },
  36545. genitals: {
  36546. height: math.unit(1.29, "meters"),
  36547. name: "Genitals",
  36548. image: {
  36549. source: "./media/characters/kairne/genitals.svg"
  36550. }
  36551. },
  36552. maw: {
  36553. height: math.unit(1.73, "meters"),
  36554. name: "Maw",
  36555. image: {
  36556. source: "./media/characters/kairne/maw.svg"
  36557. }
  36558. },
  36559. },
  36560. [
  36561. {
  36562. name: "Normal",
  36563. height: math.unit(15, "feet"),
  36564. default: true
  36565. },
  36566. ]
  36567. ))
  36568. characterMakers.push(() => makeCharacter(
  36569. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36570. {
  36571. front: {
  36572. height: math.unit(5 + 8/12, "feet"),
  36573. weight: math.unit(139, "lb"),
  36574. name: "Front",
  36575. image: {
  36576. source: "./media/characters/biscuit-jackal/front.svg",
  36577. extra: 2106/1961,
  36578. bottom: 58/2164
  36579. }
  36580. },
  36581. back: {
  36582. height: math.unit(5 + 8/12, "feet"),
  36583. weight: math.unit(139, "lb"),
  36584. name: "Back",
  36585. image: {
  36586. source: "./media/characters/biscuit-jackal/back.svg",
  36587. extra: 2132/1976,
  36588. bottom: 57/2189
  36589. }
  36590. },
  36591. werejackal: {
  36592. height: math.unit(6 + 3/12, "feet"),
  36593. weight: math.unit(188, "lb"),
  36594. name: "Werejackal",
  36595. image: {
  36596. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36597. extra: 2373/2178,
  36598. bottom: 53/2426
  36599. }
  36600. },
  36601. },
  36602. [
  36603. {
  36604. name: "Normal",
  36605. height: math.unit(5 + 8/12, "feet"),
  36606. default: true
  36607. },
  36608. ]
  36609. ))
  36610. characterMakers.push(() => makeCharacter(
  36611. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36612. {
  36613. front: {
  36614. height: math.unit(140, "cm"),
  36615. weight: math.unit(45, "kg"),
  36616. name: "Front",
  36617. image: {
  36618. source: "./media/characters/tayra-white/front.svg",
  36619. extra: 2229/2192,
  36620. bottom: 75/2304
  36621. }
  36622. },
  36623. },
  36624. [
  36625. {
  36626. name: "Normal",
  36627. height: math.unit(140, "cm"),
  36628. default: true
  36629. },
  36630. ]
  36631. ))
  36632. characterMakers.push(() => makeCharacter(
  36633. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36634. {
  36635. front: {
  36636. height: math.unit(4 + 5/12, "feet"),
  36637. name: "Front",
  36638. image: {
  36639. source: "./media/characters/scoop/front.svg",
  36640. extra: 1257/1136,
  36641. bottom: 69/1326
  36642. }
  36643. },
  36644. back: {
  36645. height: math.unit(4 + 5/12, "feet"),
  36646. name: "Back",
  36647. image: {
  36648. source: "./media/characters/scoop/back.svg",
  36649. extra: 1321/1152,
  36650. bottom: 32/1353
  36651. }
  36652. },
  36653. maw: {
  36654. height: math.unit(0.68, "feet"),
  36655. name: "Maw",
  36656. image: {
  36657. source: "./media/characters/scoop/maw.svg"
  36658. }
  36659. },
  36660. },
  36661. [
  36662. {
  36663. name: "Really Small",
  36664. height: math.unit(1, "mm")
  36665. },
  36666. {
  36667. name: "Micro",
  36668. height: math.unit(1, "inch")
  36669. },
  36670. {
  36671. name: "Normal",
  36672. height: math.unit(4 + 5/12, "feet"),
  36673. default: true
  36674. },
  36675. {
  36676. name: "Macro",
  36677. height: math.unit(200, "feet")
  36678. },
  36679. {
  36680. name: "Megamacro",
  36681. height: math.unit(3240, "feet")
  36682. },
  36683. {
  36684. name: "Teramacro",
  36685. height: math.unit(2500, "miles")
  36686. },
  36687. ]
  36688. ))
  36689. characterMakers.push(() => makeCharacter(
  36690. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36691. {
  36692. front: {
  36693. height: math.unit(15 + 7/12, "feet"),
  36694. weight: math.unit(1150, "tons"),
  36695. name: "Front",
  36696. image: {
  36697. source: "./media/characters/saphinara/front.svg",
  36698. extra: 1837/1643,
  36699. bottom: 84/1921
  36700. },
  36701. form: "normal",
  36702. default: true
  36703. },
  36704. side: {
  36705. height: math.unit(15 + 7/12, "feet"),
  36706. weight: math.unit(1150, "tons"),
  36707. name: "Side",
  36708. image: {
  36709. source: "./media/characters/saphinara/side.svg",
  36710. extra: 605/547,
  36711. bottom: 6/611
  36712. },
  36713. form: "normal"
  36714. },
  36715. back: {
  36716. height: math.unit(15 + 7/12, "feet"),
  36717. weight: math.unit(1150, "tons"),
  36718. name: "Back",
  36719. image: {
  36720. source: "./media/characters/saphinara/back.svg",
  36721. extra: 591/531,
  36722. bottom: 13/604
  36723. },
  36724. form: "normal"
  36725. },
  36726. frontTail: {
  36727. height: math.unit(15 + 7/12, "feet"),
  36728. weight: math.unit(1150, "tons"),
  36729. name: "Front (Full Tail)",
  36730. image: {
  36731. source: "./media/characters/saphinara/front-tail.svg",
  36732. extra: 2256/1630,
  36733. bottom: 261/2517
  36734. },
  36735. form: "normal"
  36736. },
  36737. insides: {
  36738. height: math.unit(11.92, "feet"),
  36739. name: "Insides",
  36740. image: {
  36741. source: "./media/characters/saphinara/insides.svg"
  36742. },
  36743. form: "normal"
  36744. },
  36745. head: {
  36746. height: math.unit(4.17, "feet"),
  36747. name: "Head",
  36748. image: {
  36749. source: "./media/characters/saphinara/head.svg"
  36750. },
  36751. form: "normal"
  36752. },
  36753. tongue: {
  36754. height: math.unit(4.60, "feet"),
  36755. name: "Tongue",
  36756. image: {
  36757. source: "./media/characters/saphinara/tongue.svg"
  36758. },
  36759. form: "normal"
  36760. },
  36761. headEnraged: {
  36762. height: math.unit(5.55, "feet"),
  36763. name: "Head (Enraged)",
  36764. image: {
  36765. source: "./media/characters/saphinara/head-enraged.svg"
  36766. },
  36767. form: "normal"
  36768. },
  36769. wings: {
  36770. height: math.unit(11.95, "feet"),
  36771. name: "Wings",
  36772. image: {
  36773. source: "./media/characters/saphinara/wings.svg"
  36774. },
  36775. form: "normal"
  36776. },
  36777. feathers: {
  36778. height: math.unit(8.92, "feet"),
  36779. name: "Feathers",
  36780. image: {
  36781. source: "./media/characters/saphinara/feathers.svg"
  36782. },
  36783. form: "normal"
  36784. },
  36785. shackles: {
  36786. height: math.unit(2, "feet"),
  36787. name: "Shackles",
  36788. image: {
  36789. source: "./media/characters/saphinara/shackles.svg"
  36790. },
  36791. form: "normal"
  36792. },
  36793. eyes: {
  36794. height: math.unit(1.331, "feet"),
  36795. name: "Eyes",
  36796. image: {
  36797. source: "./media/characters/saphinara/eyes.svg"
  36798. },
  36799. form: "normal"
  36800. },
  36801. eyesEnraged: {
  36802. height: math.unit(1.331, "feet"),
  36803. name: "Eyes (Enraged)",
  36804. image: {
  36805. source: "./media/characters/saphinara/eyes-enraged.svg"
  36806. },
  36807. form: "normal"
  36808. },
  36809. trueFormSide: {
  36810. height: math.unit(200, "feet"),
  36811. weight: math.unit(1e7, "tons"),
  36812. name: "Side",
  36813. image: {
  36814. source: "./media/characters/saphinara/true-form-side.svg",
  36815. extra: 1399/770,
  36816. bottom: 97/1496
  36817. },
  36818. form: "true-form",
  36819. default: true
  36820. },
  36821. trueFormMaw: {
  36822. height: math.unit(71.5, "feet"),
  36823. name: "Maw",
  36824. image: {
  36825. source: "./media/characters/saphinara/true-form-maw.svg",
  36826. extra: 2302/1453,
  36827. bottom: 0/2302
  36828. },
  36829. form: "true-form"
  36830. },
  36831. meowberusSide: {
  36832. height: math.unit(75, "feet"),
  36833. weight: math.unit(180000, "kg"),
  36834. preyCapacity: math.unit(50000, "people"),
  36835. name: "Side",
  36836. image: {
  36837. source: "./media/characters/saphinara/meowberus-side.svg",
  36838. extra: 1400/711,
  36839. bottom: 126/1526
  36840. },
  36841. form: "meowberus",
  36842. extraAttributes: {
  36843. "pawArea": {
  36844. name: "Paw Size",
  36845. power: 2,
  36846. type: "area",
  36847. base: math.unit(35, "m^2")
  36848. }
  36849. }
  36850. },
  36851. },
  36852. [
  36853. {
  36854. name: "Normal",
  36855. height: math.unit(15 + 7/12, "feet"),
  36856. default: true,
  36857. form: "normal"
  36858. },
  36859. {
  36860. name: "Angry",
  36861. height: math.unit(30 + 6/12, "feet"),
  36862. form: "normal"
  36863. },
  36864. {
  36865. name: "Enraged",
  36866. height: math.unit(102 + 1/12, "feet"),
  36867. form: "normal"
  36868. },
  36869. {
  36870. name: "True",
  36871. height: math.unit(200, "feet"),
  36872. default: true,
  36873. form: "true-form"
  36874. },
  36875. {
  36876. name: "Normal",
  36877. height: math.unit(75, "feet"),
  36878. default: true,
  36879. form: "meowberus"
  36880. },
  36881. ],
  36882. {
  36883. "normal": {
  36884. name: "Normal",
  36885. default: true
  36886. },
  36887. "true-form": {
  36888. name: "True Form"
  36889. },
  36890. "meowberus": {
  36891. name: "Meowberus",
  36892. },
  36893. }
  36894. ))
  36895. characterMakers.push(() => makeCharacter(
  36896. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36897. {
  36898. front: {
  36899. height: math.unit(6 + 8/12, "feet"),
  36900. weight: math.unit(300, "lb"),
  36901. name: "Front",
  36902. image: {
  36903. source: "./media/characters/jrain/front.svg",
  36904. extra: 3039/2865,
  36905. bottom: 399/3438
  36906. }
  36907. },
  36908. back: {
  36909. height: math.unit(6 + 8/12, "feet"),
  36910. weight: math.unit(300, "lb"),
  36911. name: "Back",
  36912. image: {
  36913. source: "./media/characters/jrain/back.svg",
  36914. extra: 3089/2938,
  36915. bottom: 172/3261
  36916. }
  36917. },
  36918. head: {
  36919. height: math.unit(2.14, "feet"),
  36920. name: "Head",
  36921. image: {
  36922. source: "./media/characters/jrain/head.svg"
  36923. }
  36924. },
  36925. maw: {
  36926. height: math.unit(1.77, "feet"),
  36927. name: "Maw",
  36928. image: {
  36929. source: "./media/characters/jrain/maw.svg"
  36930. }
  36931. },
  36932. leftHand: {
  36933. height: math.unit(1.1, "feet"),
  36934. name: "Left Hand",
  36935. image: {
  36936. source: "./media/characters/jrain/left-hand.svg"
  36937. }
  36938. },
  36939. rightHand: {
  36940. height: math.unit(1.1, "feet"),
  36941. name: "Right Hand",
  36942. image: {
  36943. source: "./media/characters/jrain/right-hand.svg"
  36944. }
  36945. },
  36946. eye: {
  36947. height: math.unit(0.35, "feet"),
  36948. name: "Eye",
  36949. image: {
  36950. source: "./media/characters/jrain/eye.svg"
  36951. }
  36952. },
  36953. },
  36954. [
  36955. {
  36956. name: "Normal",
  36957. height: math.unit(6 + 8/12, "feet"),
  36958. default: true
  36959. },
  36960. {
  36961. name: "Casually Large",
  36962. height: math.unit(25, "feet")
  36963. },
  36964. {
  36965. name: "Giant",
  36966. height: math.unit(100, "feet")
  36967. },
  36968. {
  36969. name: "Kaiju",
  36970. height: math.unit(300, "feet")
  36971. },
  36972. ]
  36973. ))
  36974. characterMakers.push(() => makeCharacter(
  36975. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36976. {
  36977. dragon: {
  36978. height: math.unit(5, "meters"),
  36979. name: "Dragon",
  36980. image: {
  36981. source: "./media/characters/sabrina/dragon.svg",
  36982. extra: 3670 / 2365,
  36983. bottom: 333 / 4003
  36984. }
  36985. },
  36986. gryphon: {
  36987. height: math.unit(3, "meters"),
  36988. name: "Gryphon",
  36989. image: {
  36990. source: "./media/characters/sabrina/gryphon.svg",
  36991. extra: 1576 / 945,
  36992. bottom: 71 / 1647
  36993. }
  36994. },
  36995. snake: {
  36996. height: math.unit(12, "meters"),
  36997. name: "Snake",
  36998. image: {
  36999. source: "./media/characters/sabrina/snake.svg",
  37000. extra: 1758 / 1320,
  37001. bottom: 186 / 1944
  37002. }
  37003. },
  37004. collar: {
  37005. height: math.unit(1.86, "meters"),
  37006. name: "Collar",
  37007. image: {
  37008. source: "./media/characters/sabrina/collar.svg"
  37009. }
  37010. },
  37011. eye: {
  37012. height: math.unit(0.53, "meters"),
  37013. name: "Eye",
  37014. image: {
  37015. source: "./media/characters/sabrina/eye.svg"
  37016. }
  37017. },
  37018. foot: {
  37019. height: math.unit(1.86, "meters"),
  37020. name: "Foot",
  37021. image: {
  37022. source: "./media/characters/sabrina/foot.svg"
  37023. }
  37024. },
  37025. hand: {
  37026. height: math.unit(1.32, "meters"),
  37027. name: "Hand",
  37028. image: {
  37029. source: "./media/characters/sabrina/hand.svg"
  37030. }
  37031. },
  37032. head: {
  37033. height: math.unit(2.44, "meters"),
  37034. name: "Head",
  37035. image: {
  37036. source: "./media/characters/sabrina/head.svg"
  37037. }
  37038. },
  37039. headAngry: {
  37040. height: math.unit(2.44, "meters"),
  37041. name: "Head (Angry))",
  37042. image: {
  37043. source: "./media/characters/sabrina/head-angry.svg"
  37044. }
  37045. },
  37046. maw: {
  37047. height: math.unit(1.65, "meters"),
  37048. name: "Maw",
  37049. image: {
  37050. source: "./media/characters/sabrina/maw.svg"
  37051. }
  37052. },
  37053. spikes: {
  37054. height: math.unit(1.69, "meters"),
  37055. name: "Spikes",
  37056. image: {
  37057. source: "./media/characters/sabrina/spikes.svg"
  37058. }
  37059. },
  37060. stomach: {
  37061. height: math.unit(1.15, "meters"),
  37062. name: "Stomach",
  37063. image: {
  37064. source: "./media/characters/sabrina/stomach.svg"
  37065. }
  37066. },
  37067. tongue: {
  37068. height: math.unit(1.27, "meters"),
  37069. name: "Tongue",
  37070. image: {
  37071. source: "./media/characters/sabrina/tongue.svg"
  37072. }
  37073. },
  37074. wingDorsal: {
  37075. height: math.unit(4.85, "meters"),
  37076. name: "Wing (Dorsal)",
  37077. image: {
  37078. source: "./media/characters/sabrina/wing-dorsal.svg"
  37079. }
  37080. },
  37081. wingVentral: {
  37082. height: math.unit(4.85, "meters"),
  37083. name: "Wing (Ventral)",
  37084. image: {
  37085. source: "./media/characters/sabrina/wing-ventral.svg"
  37086. }
  37087. },
  37088. },
  37089. [
  37090. {
  37091. name: "Normal",
  37092. height: math.unit(5, "meters"),
  37093. default: true
  37094. },
  37095. ]
  37096. ))
  37097. characterMakers.push(() => makeCharacter(
  37098. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  37099. {
  37100. frontMaid: {
  37101. height: math.unit(5 + 5/12, "feet"),
  37102. weight: math.unit(130, "lb"),
  37103. name: "Front (Maid)",
  37104. image: {
  37105. source: "./media/characters/midnight-tales/front-maid.svg",
  37106. extra: 489/454,
  37107. bottom: 61/550
  37108. }
  37109. },
  37110. frontFormal: {
  37111. height: math.unit(5 + 5/12, "feet"),
  37112. weight: math.unit(130, "lb"),
  37113. name: "Front (Formal)",
  37114. image: {
  37115. source: "./media/characters/midnight-tales/front-formal.svg",
  37116. extra: 489/454,
  37117. bottom: 61/550
  37118. }
  37119. },
  37120. back: {
  37121. height: math.unit(5 + 5/12, "feet"),
  37122. weight: math.unit(130, "lb"),
  37123. name: "Back",
  37124. image: {
  37125. source: "./media/characters/midnight-tales/back.svg",
  37126. extra: 498/456,
  37127. bottom: 33/531
  37128. }
  37129. },
  37130. frontBeast: {
  37131. height: math.unit(40, "feet"),
  37132. weight: math.unit(64000, "lb"),
  37133. name: "Front (Beast)",
  37134. image: {
  37135. source: "./media/characters/midnight-tales/front-beast.svg",
  37136. extra: 927/860,
  37137. bottom: 53/980
  37138. }
  37139. },
  37140. backBeast: {
  37141. height: math.unit(40, "feet"),
  37142. weight: math.unit(64000, "lb"),
  37143. name: "Back (Beast)",
  37144. image: {
  37145. source: "./media/characters/midnight-tales/back-beast.svg",
  37146. extra: 929/855,
  37147. bottom: 16/945
  37148. }
  37149. },
  37150. footBeast: {
  37151. height: math.unit(6.7, "feet"),
  37152. name: "Foot (Beast)",
  37153. image: {
  37154. source: "./media/characters/midnight-tales/foot-beast.svg"
  37155. }
  37156. },
  37157. headBeast: {
  37158. height: math.unit(8, "feet"),
  37159. name: "Head (Beast)",
  37160. image: {
  37161. source: "./media/characters/midnight-tales/head-beast.svg"
  37162. }
  37163. },
  37164. },
  37165. [
  37166. {
  37167. name: "Normal",
  37168. height: math.unit(5 + 5 / 12, "feet"),
  37169. default: true
  37170. },
  37171. {
  37172. name: "Macro",
  37173. height: math.unit(25, "feet")
  37174. },
  37175. ]
  37176. ))
  37177. characterMakers.push(() => makeCharacter(
  37178. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  37179. {
  37180. front: {
  37181. height: math.unit(6 + 2/12, "feet"),
  37182. weight: math.unit(115, "kg"),
  37183. preyCapacity: math.unit(3, "people"),
  37184. name: "Front",
  37185. image: {
  37186. source: "./media/characters/argon/front.svg",
  37187. extra: 2009/1935,
  37188. bottom: 118/2127
  37189. },
  37190. extraAttributes: {
  37191. "tailLength": {
  37192. name: "Tail Length",
  37193. power: 1,
  37194. type: "length",
  37195. base: math.unit(6, "feet")
  37196. },
  37197. "tailWeight": {
  37198. name: "Tail Weight",
  37199. power: 3,
  37200. type: "mass",
  37201. base: math.unit(40, "kg")
  37202. },
  37203. }
  37204. },
  37205. back: {
  37206. height: math.unit(6 + 2/12, "feet"),
  37207. weight: math.unit(115, "kg"),
  37208. preyCapacity: math.unit(3, "people"),
  37209. name: "Back",
  37210. image: {
  37211. source: "./media/characters/argon/back.svg",
  37212. extra: 2047/1992,
  37213. bottom: 20/2067
  37214. },
  37215. extraAttributes: {
  37216. "tailLength": {
  37217. name: "Tail Length",
  37218. power: 1,
  37219. type: "length",
  37220. base: math.unit(6, "feet")
  37221. },
  37222. "tailWeight": {
  37223. name: "Tail Weight",
  37224. power: 3,
  37225. type: "mass",
  37226. base: math.unit(40, "kg")
  37227. },
  37228. }
  37229. },
  37230. frontDressed: {
  37231. height: math.unit(6 + 2/12, "feet"),
  37232. weight: math.unit(115, "kg"),
  37233. preyCapacity: math.unit(3, "people"),
  37234. name: "Front (Dressed)",
  37235. image: {
  37236. source: "./media/characters/argon/front-dressed.svg",
  37237. extra: 2009/1935,
  37238. bottom: 118/2127
  37239. },
  37240. extraAttributes: {
  37241. "tailLength": {
  37242. name: "Tail Length",
  37243. power: 1,
  37244. type: "length",
  37245. base: math.unit(6, "feet")
  37246. },
  37247. "tailWeight": {
  37248. name: "Tail Weight",
  37249. power: 3,
  37250. type: "mass",
  37251. base: math.unit(40, "kg")
  37252. },
  37253. }
  37254. },
  37255. },
  37256. [
  37257. {
  37258. name: "Minimum",
  37259. height: math.unit(2 + 8/12, "feet")
  37260. },
  37261. {
  37262. name: "Normal",
  37263. height: math.unit(6 + 2/12, "feet"),
  37264. default: true
  37265. },
  37266. {
  37267. name: "Maximum",
  37268. height: math.unit(20, "feet")
  37269. },
  37270. ]
  37271. ))
  37272. characterMakers.push(() => makeCharacter(
  37273. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  37274. {
  37275. front: {
  37276. height: math.unit(8 + 6/12, "feet"),
  37277. weight: math.unit(1150, "lb"),
  37278. name: "Front",
  37279. image: {
  37280. source: "./media/characters/kichi/front.svg",
  37281. extra: 1267/1164,
  37282. bottom: 61/1328
  37283. }
  37284. },
  37285. back: {
  37286. height: math.unit(8 + 6/12, "feet"),
  37287. weight: math.unit(1150, "lb"),
  37288. name: "Back",
  37289. image: {
  37290. source: "./media/characters/kichi/back.svg",
  37291. extra: 1273/1166,
  37292. bottom: 33/1306
  37293. }
  37294. },
  37295. },
  37296. [
  37297. {
  37298. name: "Normal",
  37299. height: math.unit(8 + 6/12, "feet"),
  37300. default: true
  37301. },
  37302. ]
  37303. ))
  37304. characterMakers.push(() => makeCharacter(
  37305. { name: "Manetel Greyscale", species: ["dragoyle"], tags: ["anthro"] },
  37306. {
  37307. front: {
  37308. height: math.unit(6, "feet"),
  37309. weight: math.unit(210, "lb"),
  37310. name: "Front",
  37311. image: {
  37312. source: "./media/characters/manetel-greyscale/front.svg",
  37313. extra: 483/444,
  37314. bottom: 22/505
  37315. },
  37316. extraAttributes: {
  37317. "tailLength": {
  37318. name: "Tail Length",
  37319. power: 1,
  37320. type: "length",
  37321. base: math.unit(6.5, "feet")
  37322. },
  37323. }
  37324. },
  37325. side: {
  37326. height: math.unit(6, "feet"),
  37327. weight: math.unit(210, "lb"),
  37328. name: "Side",
  37329. image: {
  37330. source: "./media/characters/manetel-greyscale/side.svg",
  37331. extra: 478/426,
  37332. bottom: 20/498
  37333. },
  37334. extraAttributes: {
  37335. "tailLength": {
  37336. name: "Tail Length",
  37337. power: 1,
  37338. type: "length",
  37339. base: math.unit(6.5, "feet")
  37340. },
  37341. }
  37342. },
  37343. back: {
  37344. height: math.unit(6, "feet"),
  37345. weight: math.unit(210, "lb"),
  37346. name: "Back",
  37347. image: {
  37348. source: "./media/characters/manetel-greyscale/back.svg",
  37349. extra: 482/445,
  37350. bottom: 12/494
  37351. },
  37352. extraAttributes: {
  37353. "tailLength": {
  37354. name: "Tail Length",
  37355. power: 1,
  37356. type: "length",
  37357. base: math.unit(6.5, "feet")
  37358. },
  37359. }
  37360. },
  37361. },
  37362. [
  37363. {
  37364. name: "Micro",
  37365. height: math.unit(2, "inches")
  37366. },
  37367. {
  37368. name: "Normal",
  37369. height: math.unit(6, "feet"),
  37370. default: true
  37371. },
  37372. {
  37373. name: "Macro",
  37374. height: math.unit(117, "feet")
  37375. },
  37376. ]
  37377. ))
  37378. characterMakers.push(() => makeCharacter(
  37379. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  37380. {
  37381. side: {
  37382. height: math.unit(5 + 1/12, "feet"),
  37383. weight: math.unit(418, "lb"),
  37384. name: "Side",
  37385. image: {
  37386. source: "./media/characters/softpurr/side.svg",
  37387. extra: 1993/1945,
  37388. bottom: 134/2127
  37389. }
  37390. },
  37391. front: {
  37392. height: math.unit(5 + 1/12, "feet"),
  37393. weight: math.unit(418, "lb"),
  37394. name: "Front",
  37395. image: {
  37396. source: "./media/characters/softpurr/front.svg",
  37397. extra: 1950/1856,
  37398. bottom: 174/2124
  37399. }
  37400. },
  37401. paw: {
  37402. height: math.unit(1, "feet"),
  37403. name: "Paw",
  37404. image: {
  37405. source: "./media/characters/softpurr/paw.svg"
  37406. }
  37407. },
  37408. },
  37409. [
  37410. {
  37411. name: "Normal",
  37412. height: math.unit(5 + 1/12, "feet"),
  37413. default: true
  37414. },
  37415. ]
  37416. ))
  37417. characterMakers.push(() => makeCharacter(
  37418. { name: "Anahita", species: ["sea-serpent"], tags: ["anthro"] },
  37419. {
  37420. front: {
  37421. height: math.unit(300, "meters"),
  37422. name: "Front",
  37423. image: {
  37424. source: "./media/characters/anahita/front.svg",
  37425. extra: 609/576,
  37426. bottom: 51/660
  37427. }
  37428. },
  37429. },
  37430. [
  37431. {
  37432. name: "Macro",
  37433. height: math.unit(300, "meters"),
  37434. default: true
  37435. },
  37436. ]
  37437. ))
  37438. characterMakers.push(() => makeCharacter(
  37439. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  37440. {
  37441. front: {
  37442. height: math.unit(4 + 10/12, "feet"),
  37443. weight: math.unit(160, "lb"),
  37444. name: "Front",
  37445. image: {
  37446. source: "./media/characters/chip-mouse/front.svg",
  37447. extra: 3528/3408,
  37448. bottom: 0/3528
  37449. }
  37450. },
  37451. frontNsfw: {
  37452. height: math.unit(4 + 10/12, "feet"),
  37453. weight: math.unit(160, "lb"),
  37454. name: "Front (NSFW)",
  37455. image: {
  37456. source: "./media/characters/chip-mouse/front-nsfw.svg",
  37457. extra: 3528/3408,
  37458. bottom: 0/3528
  37459. }
  37460. },
  37461. },
  37462. [
  37463. {
  37464. name: "Normal",
  37465. height: math.unit(4 + 10/12, "feet"),
  37466. default: true
  37467. },
  37468. ]
  37469. ))
  37470. characterMakers.push(() => makeCharacter(
  37471. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37472. {
  37473. side: {
  37474. height: math.unit(10, "feet"),
  37475. weight: math.unit(14000, "lb"),
  37476. name: "Side",
  37477. image: {
  37478. source: "./media/characters/kremm/side.svg",
  37479. extra: 1390/1053,
  37480. bottom: 90/1480
  37481. }
  37482. },
  37483. gut: {
  37484. height: math.unit(5.8, "feet"),
  37485. name: "Gut",
  37486. image: {
  37487. source: "./media/characters/kremm/gut.svg"
  37488. }
  37489. },
  37490. ass: {
  37491. height: math.unit(6.1, "feet"),
  37492. name: "Ass",
  37493. image: {
  37494. source: "./media/characters/kremm/ass.svg"
  37495. }
  37496. },
  37497. jaws: {
  37498. height: math.unit(2.2, "feet"),
  37499. name: "Jaws",
  37500. image: {
  37501. source: "./media/characters/kremm/jaws.svg"
  37502. }
  37503. },
  37504. dick: {
  37505. height: math.unit(4.26, "feet"),
  37506. name: "Dick",
  37507. image: {
  37508. source: "./media/characters/kremm/dick.svg"
  37509. }
  37510. },
  37511. },
  37512. [
  37513. {
  37514. name: "Normal",
  37515. height: math.unit(10, "feet"),
  37516. default: true
  37517. },
  37518. ]
  37519. ))
  37520. characterMakers.push(() => makeCharacter(
  37521. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37522. {
  37523. front: {
  37524. height: math.unit(30, "stories"),
  37525. name: "Front",
  37526. image: {
  37527. source: "./media/characters/kai/front.svg",
  37528. extra: 1892/1718,
  37529. bottom: 162/2054
  37530. }
  37531. },
  37532. },
  37533. [
  37534. {
  37535. name: "Macro",
  37536. height: math.unit(30, "stories"),
  37537. default: true
  37538. },
  37539. ]
  37540. ))
  37541. characterMakers.push(() => makeCharacter(
  37542. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37543. {
  37544. front: {
  37545. height: math.unit(6 + 4/12, "feet"),
  37546. weight: math.unit(145, "lb"),
  37547. name: "Front",
  37548. image: {
  37549. source: "./media/characters/sykes/front.svg",
  37550. extra: 1321 / 1187,
  37551. bottom: 66 / 1387
  37552. }
  37553. },
  37554. back: {
  37555. height: math.unit(6 + 4/12, "feet"),
  37556. weight: math.unit(145, "lb"),
  37557. name: "Back",
  37558. image: {
  37559. source: "./media/characters/sykes/back.svg",
  37560. extra: 1326/1181,
  37561. bottom: 31/1357
  37562. }
  37563. },
  37564. traditionalOutfit: {
  37565. height: math.unit(6 + 4/12, "feet"),
  37566. weight: math.unit(145, "lb"),
  37567. name: "Traditional Outfit",
  37568. image: {
  37569. source: "./media/characters/sykes/traditional-outfit.svg",
  37570. extra: 1321 / 1187,
  37571. bottom: 66 / 1387
  37572. }
  37573. },
  37574. adventureOutfit: {
  37575. height: math.unit(6 + 4/12, "feet"),
  37576. weight: math.unit(145, "lb"),
  37577. name: "Adventure Outfit",
  37578. image: {
  37579. source: "./media/characters/sykes/adventure-outfit.svg",
  37580. extra: 1321 / 1187,
  37581. bottom: 66 / 1387
  37582. }
  37583. },
  37584. handLeft: {
  37585. height: math.unit(0.9, "feet"),
  37586. name: "Hand (Left)",
  37587. image: {
  37588. source: "./media/characters/sykes/hand-left.svg"
  37589. }
  37590. },
  37591. handRight: {
  37592. height: math.unit(0.839, "feet"),
  37593. name: "Hand (Right)",
  37594. image: {
  37595. source: "./media/characters/sykes/hand-right.svg"
  37596. }
  37597. },
  37598. leftFoot: {
  37599. height: math.unit(1.2, "feet"),
  37600. name: "Foot (Left)",
  37601. image: {
  37602. source: "./media/characters/sykes/foot-left.svg"
  37603. }
  37604. },
  37605. rightFoot: {
  37606. height: math.unit(1.2, "feet"),
  37607. name: "Foot (Right)",
  37608. image: {
  37609. source: "./media/characters/sykes/foot-right.svg"
  37610. }
  37611. },
  37612. maw: {
  37613. height: math.unit(1.93, "feet"),
  37614. name: "Maw",
  37615. image: {
  37616. source: "./media/characters/sykes/maw.svg"
  37617. }
  37618. },
  37619. teeth: {
  37620. height: math.unit(0.51, "feet"),
  37621. name: "Teeth",
  37622. image: {
  37623. source: "./media/characters/sykes/teeth.svg"
  37624. }
  37625. },
  37626. tongue: {
  37627. height: math.unit(2.13, "feet"),
  37628. name: "Tongue",
  37629. image: {
  37630. source: "./media/characters/sykes/tongue.svg"
  37631. }
  37632. },
  37633. uvula: {
  37634. height: math.unit(0.16, "feet"),
  37635. name: "Uvula",
  37636. image: {
  37637. source: "./media/characters/sykes/uvula.svg"
  37638. }
  37639. },
  37640. collar: {
  37641. height: math.unit(0.287, "feet"),
  37642. name: "Collar",
  37643. image: {
  37644. source: "./media/characters/sykes/collar.svg"
  37645. }
  37646. },
  37647. tail: {
  37648. height: math.unit(3.8, "feet"),
  37649. name: "Tail",
  37650. image: {
  37651. source: "./media/characters/sykes/tail.svg"
  37652. }
  37653. },
  37654. },
  37655. [
  37656. {
  37657. name: "Shrunken",
  37658. height: math.unit(5, "inches")
  37659. },
  37660. {
  37661. name: "Normal",
  37662. height: math.unit(6 + 4 / 12, "feet"),
  37663. default: true
  37664. },
  37665. {
  37666. name: "Big",
  37667. height: math.unit(15, "feet")
  37668. },
  37669. ]
  37670. ))
  37671. characterMakers.push(() => makeCharacter(
  37672. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37673. {
  37674. front: {
  37675. height: math.unit(5 + 8/12, "feet"),
  37676. weight: math.unit(190, "lb"),
  37677. name: "Front",
  37678. image: {
  37679. source: "./media/characters/oven-otter/front.svg",
  37680. extra: 1809/1740,
  37681. bottom: 181/1990
  37682. }
  37683. },
  37684. back: {
  37685. height: math.unit(5 + 8/12, "feet"),
  37686. weight: math.unit(190, "lb"),
  37687. name: "Back",
  37688. image: {
  37689. source: "./media/characters/oven-otter/back.svg",
  37690. extra: 1709/1635,
  37691. bottom: 118/1827
  37692. }
  37693. },
  37694. hand: {
  37695. height: math.unit(1.07, "feet"),
  37696. name: "Hand",
  37697. image: {
  37698. source: "./media/characters/oven-otter/hand.svg"
  37699. }
  37700. },
  37701. beans: {
  37702. height: math.unit(1.74, "feet"),
  37703. name: "Beans",
  37704. image: {
  37705. source: "./media/characters/oven-otter/beans.svg"
  37706. }
  37707. },
  37708. },
  37709. [
  37710. {
  37711. name: "Micro",
  37712. height: math.unit(0.5, "inches")
  37713. },
  37714. {
  37715. name: "Normal",
  37716. height: math.unit(5 + 8/12, "feet"),
  37717. default: true
  37718. },
  37719. {
  37720. name: "Macro",
  37721. height: math.unit(250, "feet")
  37722. },
  37723. {
  37724. name: "Really High",
  37725. height: math.unit(420, "feet")
  37726. },
  37727. ]
  37728. ))
  37729. characterMakers.push(() => makeCharacter(
  37730. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37731. {
  37732. front: {
  37733. height: math.unit(5, "meters"),
  37734. weight: math.unit(292000000000000, "kg"),
  37735. name: "Front",
  37736. image: {
  37737. source: "./media/characters/devourer/front.svg",
  37738. extra: 1800/1733,
  37739. bottom: 211/2011
  37740. }
  37741. },
  37742. maw: {
  37743. height: math.unit(1.1, "meter"),
  37744. name: "Maw",
  37745. image: {
  37746. source: "./media/characters/devourer/maw.svg"
  37747. }
  37748. },
  37749. },
  37750. [
  37751. {
  37752. name: "Small",
  37753. height: math.unit(3, "meters")
  37754. },
  37755. {
  37756. name: "Large",
  37757. height: math.unit(5, "meters"),
  37758. default: true
  37759. },
  37760. {
  37761. name: "Macro",
  37762. height: math.unit(20, "meters")
  37763. },
  37764. ]
  37765. ))
  37766. characterMakers.push(() => makeCharacter(
  37767. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37768. {
  37769. front: {
  37770. height: math.unit(6, "feet"),
  37771. weight: math.unit(400, "lb"),
  37772. name: "Front",
  37773. image: {
  37774. source: "./media/characters/ellarby/front.svg",
  37775. extra: 1909/1763,
  37776. bottom: 80/1989
  37777. }
  37778. },
  37779. back: {
  37780. height: math.unit(6, "feet"),
  37781. weight: math.unit(400, "lb"),
  37782. name: "Back",
  37783. image: {
  37784. source: "./media/characters/ellarby/back.svg",
  37785. extra: 1914/1784,
  37786. bottom: 172/2086
  37787. }
  37788. },
  37789. },
  37790. [
  37791. {
  37792. name: "Mischief",
  37793. height: math.unit(18, "inches")
  37794. },
  37795. {
  37796. name: "Trouble",
  37797. height: math.unit(12, "feet")
  37798. },
  37799. {
  37800. name: "Havoc",
  37801. height: math.unit(200, "feet"),
  37802. default: true
  37803. },
  37804. {
  37805. name: "Pandemonium",
  37806. height: math.unit(1, "mile")
  37807. },
  37808. {
  37809. name: "Catastrophe",
  37810. height: math.unit(100, "miles")
  37811. },
  37812. ]
  37813. ))
  37814. characterMakers.push(() => makeCharacter(
  37815. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37816. {
  37817. front: {
  37818. height: math.unit(4.7, "meters"),
  37819. weight: math.unit(6500, "kg"),
  37820. name: "Front",
  37821. image: {
  37822. source: "./media/characters/vex/front.svg",
  37823. extra: 1288/1140,
  37824. bottom: 100/1388
  37825. }
  37826. },
  37827. },
  37828. [
  37829. {
  37830. name: "Normal",
  37831. height: math.unit(4.7, "meters"),
  37832. default: true
  37833. },
  37834. ]
  37835. ))
  37836. characterMakers.push(() => makeCharacter(
  37837. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37838. {
  37839. normal: {
  37840. height: math.unit(6, "feet"),
  37841. weight: math.unit(350, "lb"),
  37842. name: "Normal",
  37843. image: {
  37844. source: "./media/characters/teshy/normal.svg",
  37845. extra: 1795/1735,
  37846. bottom: 16/1811
  37847. }
  37848. },
  37849. monsterFront: {
  37850. height: math.unit(12, "feet"),
  37851. weight: math.unit(4700, "lb"),
  37852. name: "Monster (Front)",
  37853. image: {
  37854. source: "./media/characters/teshy/monster-front.svg",
  37855. extra: 2042/2034,
  37856. bottom: 128/2170
  37857. }
  37858. },
  37859. monsterSide: {
  37860. height: math.unit(12, "feet"),
  37861. weight: math.unit(4700, "lb"),
  37862. name: "Monster (Side)",
  37863. image: {
  37864. source: "./media/characters/teshy/monster-side.svg",
  37865. extra: 2067/2056,
  37866. bottom: 70/2137
  37867. }
  37868. },
  37869. monsterBack: {
  37870. height: math.unit(12, "feet"),
  37871. weight: math.unit(4700, "lb"),
  37872. name: "Monster (Back)",
  37873. image: {
  37874. source: "./media/characters/teshy/monster-back.svg",
  37875. extra: 1921/1914,
  37876. bottom: 171/2092
  37877. }
  37878. },
  37879. },
  37880. [
  37881. {
  37882. name: "Normal",
  37883. height: math.unit(6, "feet"),
  37884. default: true
  37885. },
  37886. ]
  37887. ))
  37888. characterMakers.push(() => makeCharacter(
  37889. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37890. {
  37891. front: {
  37892. height: math.unit(6, "feet"),
  37893. name: "Front",
  37894. image: {
  37895. source: "./media/characters/ramey/front.svg",
  37896. extra: 790/787,
  37897. bottom: 27/817
  37898. }
  37899. },
  37900. },
  37901. [
  37902. {
  37903. name: "Normal",
  37904. height: math.unit(6, "feet"),
  37905. default: true
  37906. },
  37907. ]
  37908. ))
  37909. characterMakers.push(() => makeCharacter(
  37910. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37911. {
  37912. front: {
  37913. height: math.unit(5 + 5/12, "feet"),
  37914. weight: math.unit(120, "lb"),
  37915. name: "Front",
  37916. image: {
  37917. source: "./media/characters/phirae/front.svg",
  37918. extra: 2491/2436,
  37919. bottom: 38/2529
  37920. }
  37921. },
  37922. },
  37923. [
  37924. {
  37925. name: "Normal",
  37926. height: math.unit(5 + 5/12, "feet"),
  37927. default: true
  37928. },
  37929. ]
  37930. ))
  37931. characterMakers.push(() => makeCharacter(
  37932. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37933. {
  37934. front: {
  37935. height: math.unit(5 + 3/12, "feet"),
  37936. name: "Front",
  37937. image: {
  37938. source: "./media/characters/stagglas/front.svg",
  37939. extra: 962/882,
  37940. bottom: 53/1015
  37941. }
  37942. },
  37943. feral: {
  37944. height: math.unit(335, "cm"),
  37945. name: "Feral",
  37946. image: {
  37947. source: "./media/characters/stagglas/feral.svg",
  37948. extra: 1732/1090,
  37949. bottom: 48/1780
  37950. }
  37951. },
  37952. },
  37953. [
  37954. {
  37955. name: "Normal",
  37956. height: math.unit(5 + 3/12, "feet"),
  37957. default: true
  37958. },
  37959. ]
  37960. ))
  37961. characterMakers.push(() => makeCharacter(
  37962. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37963. {
  37964. front: {
  37965. height: math.unit(5 + 4/12, "feet"),
  37966. weight: math.unit(145, "lb"),
  37967. name: "Front",
  37968. image: {
  37969. source: "./media/characters/starra/front.svg",
  37970. extra: 1790/1691,
  37971. bottom: 91/1881
  37972. }
  37973. },
  37974. },
  37975. [
  37976. {
  37977. name: "Normal",
  37978. height: math.unit(5 + 4/12, "feet"),
  37979. default: true
  37980. },
  37981. ]
  37982. ))
  37983. characterMakers.push(() => makeCharacter(
  37984. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37985. {
  37986. front: {
  37987. height: math.unit(3.5, "meters"),
  37988. name: "Front",
  37989. image: {
  37990. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37991. extra: 1248/972,
  37992. bottom: 38/1286
  37993. }
  37994. },
  37995. },
  37996. [
  37997. {
  37998. name: "Normal",
  37999. height: math.unit(3.5, "meters"),
  38000. default: true
  38001. },
  38002. ]
  38003. ))
  38004. characterMakers.push(() => makeCharacter(
  38005. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  38006. {
  38007. side: {
  38008. height: math.unit(8 + 2/12, "feet"),
  38009. weight: math.unit(1240, "lb"),
  38010. name: "Side",
  38011. image: {
  38012. source: "./media/characters/mika-valentine/side.svg",
  38013. extra: 2670/2501,
  38014. bottom: 250/2920
  38015. }
  38016. },
  38017. },
  38018. [
  38019. {
  38020. name: "Normal",
  38021. height: math.unit(8 + 2/12, "feet"),
  38022. default: true
  38023. },
  38024. ]
  38025. ))
  38026. characterMakers.push(() => makeCharacter(
  38027. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  38028. {
  38029. front: {
  38030. height: math.unit(7 + 2/12, "feet"),
  38031. name: "Front",
  38032. image: {
  38033. source: "./media/characters/xoltol/front.svg",
  38034. extra: 2212/2124,
  38035. bottom: 84/2296
  38036. }
  38037. },
  38038. side: {
  38039. height: math.unit(7 + 2/12, "feet"),
  38040. name: "Side",
  38041. image: {
  38042. source: "./media/characters/xoltol/side.svg",
  38043. extra: 2273/2197,
  38044. bottom: 26/2299
  38045. }
  38046. },
  38047. hand: {
  38048. height: math.unit(2.5, "feet"),
  38049. name: "Hand",
  38050. image: {
  38051. source: "./media/characters/xoltol/hand.svg"
  38052. }
  38053. },
  38054. },
  38055. [
  38056. {
  38057. name: "Small-ish",
  38058. height: math.unit(5 + 11/12, "feet")
  38059. },
  38060. {
  38061. name: "Normal",
  38062. height: math.unit(7 + 2/12, "feet")
  38063. },
  38064. {
  38065. name: "\"Macro\"",
  38066. height: math.unit(14 + 9/12, "feet"),
  38067. default: true
  38068. },
  38069. {
  38070. name: "Alternate Height",
  38071. height: math.unit(20, "feet")
  38072. },
  38073. {
  38074. name: "Actually Macro",
  38075. height: math.unit(100, "feet")
  38076. },
  38077. ]
  38078. ))
  38079. characterMakers.push(() => makeCharacter(
  38080. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  38081. {
  38082. front: {
  38083. height: math.unit(5 + 2/12, "feet"),
  38084. weight: math.unit(75, "kg"),
  38085. name: "Front",
  38086. image: {
  38087. source: "./media/characters/kotetsu-redwood/front.svg",
  38088. extra: 1053/942,
  38089. bottom: 60/1113
  38090. }
  38091. },
  38092. },
  38093. [
  38094. {
  38095. name: "Normal",
  38096. height: math.unit(5 + 2/12, "feet"),
  38097. default: true
  38098. },
  38099. ]
  38100. ))
  38101. characterMakers.push(() => makeCharacter(
  38102. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  38103. {
  38104. front: {
  38105. height: math.unit(2.4, "meters"),
  38106. weight: math.unit(125, "kg"),
  38107. name: "Front",
  38108. image: {
  38109. source: "./media/characters/lilith/front.svg",
  38110. extra: 1590/1513,
  38111. bottom: 203/1793
  38112. }
  38113. },
  38114. },
  38115. [
  38116. {
  38117. name: "Humanoid",
  38118. height: math.unit(2.4, "meters")
  38119. },
  38120. {
  38121. name: "Normal",
  38122. height: math.unit(6, "meters"),
  38123. default: true
  38124. },
  38125. {
  38126. name: "Largest",
  38127. height: math.unit(55, "meters")
  38128. },
  38129. ]
  38130. ))
  38131. characterMakers.push(() => makeCharacter(
  38132. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  38133. {
  38134. front: {
  38135. height: math.unit(8 + 4/12, "feet"),
  38136. weight: math.unit(535, "lb"),
  38137. name: "Front",
  38138. image: {
  38139. source: "./media/characters/beh'kah-bolger/front.svg",
  38140. extra: 1660/1603,
  38141. bottom: 37/1697
  38142. }
  38143. },
  38144. },
  38145. [
  38146. {
  38147. name: "Normal",
  38148. height: math.unit(8 + 4/12, "feet"),
  38149. default: true
  38150. },
  38151. {
  38152. name: "Kaiju",
  38153. height: math.unit(250, "feet")
  38154. },
  38155. {
  38156. name: "Still Growing",
  38157. height: math.unit(10, "miles")
  38158. },
  38159. {
  38160. name: "Continental",
  38161. height: math.unit(5000, "miles")
  38162. },
  38163. {
  38164. name: "Final Form",
  38165. height: math.unit(2500000, "miles")
  38166. },
  38167. ]
  38168. ))
  38169. characterMakers.push(() => makeCharacter(
  38170. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  38171. {
  38172. front: {
  38173. height: math.unit(7 + 2/12, "feet"),
  38174. weight: math.unit(230, "kg"),
  38175. name: "Front",
  38176. image: {
  38177. source: "./media/characters/tatyana-milewska/front.svg",
  38178. extra: 1199/1150,
  38179. bottom: 86/1285
  38180. }
  38181. },
  38182. },
  38183. [
  38184. {
  38185. name: "Normal",
  38186. height: math.unit(7 + 2/12, "feet"),
  38187. default: true
  38188. },
  38189. {
  38190. name: "Big",
  38191. height: math.unit(12, "feet")
  38192. },
  38193. {
  38194. name: "Minimacro",
  38195. height: math.unit(20, "feet")
  38196. },
  38197. {
  38198. name: "Macro",
  38199. height: math.unit(120, "feet")
  38200. },
  38201. ]
  38202. ))
  38203. characterMakers.push(() => makeCharacter(
  38204. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  38205. {
  38206. front: {
  38207. height: math.unit(7 + 8/12, "feet"),
  38208. weight: math.unit(152, "kg"),
  38209. name: "Front",
  38210. image: {
  38211. source: "./media/characters/helen-arri/front.svg",
  38212. extra: 440/423,
  38213. bottom: 14/454
  38214. }
  38215. },
  38216. back: {
  38217. height: math.unit(7 + 8/12, "feet"),
  38218. weight: math.unit(152, "kg"),
  38219. name: "Back",
  38220. image: {
  38221. source: "./media/characters/helen-arri/back.svg",
  38222. extra: 443/426,
  38223. bottom: 8/451
  38224. }
  38225. },
  38226. },
  38227. [
  38228. {
  38229. name: "Normal",
  38230. height: math.unit(7 + 8/12, "feet"),
  38231. default: true
  38232. },
  38233. {
  38234. name: "Big",
  38235. height: math.unit(14, "feet")
  38236. },
  38237. {
  38238. name: "Minimacro",
  38239. height: math.unit(24, "feet")
  38240. },
  38241. {
  38242. name: "Macro",
  38243. height: math.unit(140, "feet")
  38244. },
  38245. ]
  38246. ))
  38247. characterMakers.push(() => makeCharacter(
  38248. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  38249. {
  38250. front: {
  38251. height: math.unit(6, "meters"),
  38252. name: "Front",
  38253. image: {
  38254. source: "./media/characters/ehanu-rehu/front.svg",
  38255. extra: 1800/1800,
  38256. bottom: 59/1859
  38257. }
  38258. },
  38259. },
  38260. [
  38261. {
  38262. name: "Normal",
  38263. height: math.unit(6, "meters"),
  38264. default: true
  38265. },
  38266. ]
  38267. ))
  38268. characterMakers.push(() => makeCharacter(
  38269. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  38270. {
  38271. front: {
  38272. height: math.unit(7 + 3/12, "feet"),
  38273. name: "Front",
  38274. image: {
  38275. source: "./media/characters/renholder/front.svg",
  38276. extra: 3096/2960,
  38277. bottom: 250/3346
  38278. }
  38279. },
  38280. },
  38281. [
  38282. {
  38283. name: "Normal Bat",
  38284. height: math.unit(7 + 3/12, "feet"),
  38285. default: true
  38286. },
  38287. {
  38288. name: "Slightly Tall Bat",
  38289. height: math.unit(100, "feet")
  38290. },
  38291. {
  38292. name: "Big Bat",
  38293. height: math.unit(1000, "feet")
  38294. },
  38295. {
  38296. name: "City-Sized Bat",
  38297. height: math.unit(200000, "feet")
  38298. },
  38299. {
  38300. name: "Bigger Bat",
  38301. height: math.unit(10000, "miles")
  38302. },
  38303. {
  38304. name: "Solar Sized Bat",
  38305. height: math.unit(100, "AU")
  38306. },
  38307. {
  38308. name: "Galactic Bat",
  38309. height: math.unit(200000, "lightyears")
  38310. },
  38311. {
  38312. name: "Universally Known Bat",
  38313. height: math.unit(1, "universe")
  38314. },
  38315. ]
  38316. ))
  38317. characterMakers.push(() => makeCharacter(
  38318. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  38319. {
  38320. front: {
  38321. height: math.unit(6 + 11/12, "feet"),
  38322. weight: math.unit(250, "lb"),
  38323. name: "Front",
  38324. image: {
  38325. source: "./media/characters/cookiecat/front.svg",
  38326. extra: 893/827,
  38327. bottom: 14/907
  38328. }
  38329. },
  38330. },
  38331. [
  38332. {
  38333. name: "Micro",
  38334. height: math.unit(3, "inches")
  38335. },
  38336. {
  38337. name: "Normal",
  38338. height: math.unit(6 + 11/12, "feet"),
  38339. default: true
  38340. },
  38341. {
  38342. name: "Macro",
  38343. height: math.unit(100, "feet")
  38344. },
  38345. {
  38346. name: "Macro+",
  38347. height: math.unit(404, "feet")
  38348. },
  38349. {
  38350. name: "Megamacro",
  38351. height: math.unit(165, "miles")
  38352. },
  38353. {
  38354. name: "Planetary",
  38355. height: math.unit(4600, "miles")
  38356. },
  38357. ]
  38358. ))
  38359. characterMakers.push(() => makeCharacter(
  38360. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  38361. {
  38362. front: {
  38363. height: math.unit(10 + 3/12, "feet"),
  38364. weight: math.unit(1500, "lb"),
  38365. name: "Front",
  38366. image: {
  38367. source: "./media/characters/tux-kusanagi/front.svg",
  38368. extra: 944/840,
  38369. bottom: 39/983
  38370. }
  38371. },
  38372. back: {
  38373. height: math.unit(10 + 3/12, "feet"),
  38374. weight: math.unit(1500, "lb"),
  38375. name: "Back",
  38376. image: {
  38377. source: "./media/characters/tux-kusanagi/back.svg",
  38378. extra: 941/842,
  38379. bottom: 28/969
  38380. }
  38381. },
  38382. rump: {
  38383. height: math.unit(5.25, "feet"),
  38384. name: "Rump",
  38385. image: {
  38386. source: "./media/characters/tux-kusanagi/rump.svg"
  38387. }
  38388. },
  38389. beak: {
  38390. height: math.unit(1.54, "feet"),
  38391. name: "Beak",
  38392. image: {
  38393. source: "./media/characters/tux-kusanagi/beak.svg"
  38394. }
  38395. },
  38396. },
  38397. [
  38398. {
  38399. name: "Normal",
  38400. height: math.unit(10 + 3/12, "feet"),
  38401. default: true
  38402. },
  38403. ]
  38404. ))
  38405. characterMakers.push(() => makeCharacter(
  38406. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  38407. {
  38408. front: {
  38409. height: math.unit(58, "feet"),
  38410. weight: math.unit(200, "tons"),
  38411. name: "Front",
  38412. image: {
  38413. source: "./media/characters/uzarmazari/front.svg",
  38414. extra: 1575/1455,
  38415. bottom: 152/1727
  38416. }
  38417. },
  38418. back: {
  38419. height: math.unit(58, "feet"),
  38420. weight: math.unit(200, "tons"),
  38421. name: "Back",
  38422. image: {
  38423. source: "./media/characters/uzarmazari/back.svg",
  38424. extra: 1585/1510,
  38425. bottom: 157/1742
  38426. }
  38427. },
  38428. head: {
  38429. height: math.unit(26, "feet"),
  38430. name: "Head",
  38431. image: {
  38432. source: "./media/characters/uzarmazari/head.svg"
  38433. }
  38434. },
  38435. },
  38436. [
  38437. {
  38438. name: "Normal",
  38439. height: math.unit(58, "feet"),
  38440. default: true
  38441. },
  38442. ]
  38443. ))
  38444. characterMakers.push(() => makeCharacter(
  38445. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  38446. {
  38447. side: {
  38448. height: math.unit(15, "feet"),
  38449. name: "Side",
  38450. image: {
  38451. source: "./media/characters/akitu/side.svg",
  38452. extra: 1421/1321,
  38453. bottom: 157/1578
  38454. }
  38455. },
  38456. front: {
  38457. height: math.unit(15, "feet"),
  38458. name: "Front",
  38459. image: {
  38460. source: "./media/characters/akitu/front.svg",
  38461. extra: 1435/1326,
  38462. bottom: 232/1667
  38463. }
  38464. },
  38465. },
  38466. [
  38467. {
  38468. name: "Normal",
  38469. height: math.unit(15, "feet"),
  38470. default: true
  38471. },
  38472. ]
  38473. ))
  38474. characterMakers.push(() => makeCharacter(
  38475. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38476. {
  38477. front: {
  38478. height: math.unit(10 + 8/12, "feet"),
  38479. name: "Front",
  38480. image: {
  38481. source: "./media/characters/azalie-croixland/front.svg",
  38482. extra: 1972/1856,
  38483. bottom: 31/2003
  38484. }
  38485. },
  38486. },
  38487. [
  38488. {
  38489. name: "Original Height",
  38490. height: math.unit(5 + 4/12, "feet")
  38491. },
  38492. {
  38493. name: "Normal Height",
  38494. height: math.unit(10 + 8/12, "feet"),
  38495. default: true
  38496. },
  38497. ]
  38498. ))
  38499. characterMakers.push(() => makeCharacter(
  38500. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38501. {
  38502. side: {
  38503. height: math.unit(7 + 1/12, "feet"),
  38504. weight: math.unit(245, "lb"),
  38505. name: "Side",
  38506. image: {
  38507. source: "./media/characters/kavus-kazian/side.svg",
  38508. extra: 349/342,
  38509. bottom: 15/364
  38510. }
  38511. },
  38512. },
  38513. [
  38514. {
  38515. name: "Normal",
  38516. height: math.unit(7 + 1/12, "feet"),
  38517. default: true
  38518. },
  38519. ]
  38520. ))
  38521. characterMakers.push(() => makeCharacter(
  38522. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38523. {
  38524. normalFront: {
  38525. height: math.unit(5 + 11/12, "feet"),
  38526. name: "Front",
  38527. image: {
  38528. source: "./media/characters/moonlight-rose/normal-front.svg",
  38529. extra: 1980/1825,
  38530. bottom: 18/1998
  38531. },
  38532. form: "normal",
  38533. default: true
  38534. },
  38535. normalBack: {
  38536. height: math.unit(5 + 11/12, "feet"),
  38537. name: "Back",
  38538. image: {
  38539. source: "./media/characters/moonlight-rose/normal-back.svg",
  38540. extra: 2010/1839,
  38541. bottom: 10/2020
  38542. },
  38543. form: "normal"
  38544. },
  38545. demonFront: {
  38546. height: math.unit(1.5, "earths"),
  38547. name: "Front",
  38548. image: {
  38549. source: "./media/characters/moonlight-rose/demon.svg",
  38550. extra: 1400/1294,
  38551. bottom: 45/1445
  38552. },
  38553. form: "demon",
  38554. default: true
  38555. },
  38556. terraFront: {
  38557. height: math.unit(1.5, "earths"),
  38558. name: "Front",
  38559. image: {
  38560. source: "./media/characters/moonlight-rose/terra.svg"
  38561. },
  38562. form: "terra",
  38563. default: true
  38564. },
  38565. jupiterFront: {
  38566. height: math.unit(69911*2, "km"),
  38567. name: "Front",
  38568. image: {
  38569. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38570. extra: 1367/1286,
  38571. bottom: 55/1422
  38572. },
  38573. form: "jupiter",
  38574. default: true
  38575. },
  38576. neptuneFront: {
  38577. height: math.unit(24622*2, "feet"),
  38578. name: "Front",
  38579. image: {
  38580. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38581. extra: 1851/1712,
  38582. bottom: 0/1851
  38583. },
  38584. form: "neptune",
  38585. default: true
  38586. },
  38587. },
  38588. [
  38589. {
  38590. name: "\"Natural\" Height",
  38591. height: math.unit(5 + 11/12, "feet"),
  38592. form: "normal"
  38593. },
  38594. {
  38595. name: "Smallest comfortable size",
  38596. height: math.unit(40, "meters"),
  38597. form: "normal"
  38598. },
  38599. {
  38600. name: "Common size",
  38601. height: math.unit(50, "km"),
  38602. form: "normal",
  38603. default: true
  38604. },
  38605. {
  38606. name: "Normal",
  38607. height: math.unit(1.5, "earths"),
  38608. form: "demon",
  38609. default: true
  38610. },
  38611. {
  38612. name: "Universal",
  38613. height: math.unit(15, "universes"),
  38614. form: "demon"
  38615. },
  38616. {
  38617. name: "Earth",
  38618. height: math.unit(1.5, "earths"),
  38619. form: "terra",
  38620. default: true
  38621. },
  38622. {
  38623. name: "Super Earth",
  38624. height: math.unit(67.5, "earths"),
  38625. form: "terra"
  38626. },
  38627. {
  38628. name: "Doesn't fit in a solar system...",
  38629. height: math.unit(1, "galaxy"),
  38630. form: "terra"
  38631. },
  38632. {
  38633. name: "Saturn",
  38634. height: math.unit(58232*2, "km"),
  38635. form: "jupiter"
  38636. },
  38637. {
  38638. name: "Jupiter",
  38639. height: math.unit(69911*2, "km"),
  38640. form: "jupiter",
  38641. default: true
  38642. },
  38643. {
  38644. name: "HD 100546 b",
  38645. height: math.unit(482938, "km"),
  38646. form: "jupiter"
  38647. },
  38648. {
  38649. name: "Enceladus",
  38650. height: math.unit(513*2, "km"),
  38651. form: "neptune"
  38652. },
  38653. {
  38654. name: "Europe",
  38655. height: math.unit(1560*2, "km"),
  38656. form: "neptune"
  38657. },
  38658. {
  38659. name: "Neptune",
  38660. height: math.unit(24622*2, "km"),
  38661. form: "neptune",
  38662. default: true
  38663. },
  38664. {
  38665. name: "CoRoT-9b",
  38666. height: math.unit(75067*2, "km"),
  38667. form: "neptune"
  38668. },
  38669. ],
  38670. {
  38671. "normal": {
  38672. name: "Normal",
  38673. default: true
  38674. },
  38675. "demon": {
  38676. name: "Demon"
  38677. },
  38678. "terra": {
  38679. name: "Terra"
  38680. },
  38681. "jupiter": {
  38682. name: "Jupiter"
  38683. },
  38684. "neptune": {
  38685. name: "Neptune"
  38686. }
  38687. }
  38688. ))
  38689. characterMakers.push(() => makeCharacter(
  38690. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38691. {
  38692. front: {
  38693. height: math.unit(16, "feet"),
  38694. weight: math.unit(610, "kg"),
  38695. name: "Front",
  38696. image: {
  38697. source: "./media/characters/huckle/front.svg",
  38698. extra: 1731/1625,
  38699. bottom: 33/1764
  38700. }
  38701. },
  38702. back: {
  38703. height: math.unit(16, "feet"),
  38704. weight: math.unit(610, "kg"),
  38705. name: "Back",
  38706. image: {
  38707. source: "./media/characters/huckle/back.svg",
  38708. extra: 1738/1651,
  38709. bottom: 37/1775
  38710. }
  38711. },
  38712. laughing: {
  38713. height: math.unit(3.75, "feet"),
  38714. name: "Laughing",
  38715. image: {
  38716. source: "./media/characters/huckle/laughing.svg"
  38717. }
  38718. },
  38719. angry: {
  38720. height: math.unit(4.15, "feet"),
  38721. name: "Angry",
  38722. image: {
  38723. source: "./media/characters/huckle/angry.svg"
  38724. }
  38725. },
  38726. },
  38727. [
  38728. {
  38729. name: "Normal",
  38730. height: math.unit(16, "feet"),
  38731. default: true
  38732. },
  38733. {
  38734. name: "Mini Macro",
  38735. height: math.unit(463, "feet")
  38736. },
  38737. {
  38738. name: "Macro",
  38739. height: math.unit(1680, "meters")
  38740. },
  38741. {
  38742. name: "Mega Macro",
  38743. height: math.unit(175, "km")
  38744. },
  38745. {
  38746. name: "Terra Macro",
  38747. height: math.unit(32, "gigameters")
  38748. },
  38749. {
  38750. name: "Multiverse+",
  38751. height: math.unit(2.56e23, "yottameters")
  38752. },
  38753. ]
  38754. ))
  38755. characterMakers.push(() => makeCharacter(
  38756. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38757. {
  38758. front: {
  38759. height: math.unit(6 + 9/12, "feet"),
  38760. weight: math.unit(280, "lb"),
  38761. name: "Front",
  38762. image: {
  38763. source: "./media/characters/candy/front.svg",
  38764. extra: 234/217,
  38765. bottom: 11/245
  38766. }
  38767. },
  38768. },
  38769. [
  38770. {
  38771. name: "Really Small",
  38772. height: math.unit(0.1, "nm")
  38773. },
  38774. {
  38775. name: "Micro",
  38776. height: math.unit(2, "inches")
  38777. },
  38778. {
  38779. name: "Normal",
  38780. height: math.unit(6 + 9/12, "feet"),
  38781. default: true
  38782. },
  38783. {
  38784. name: "Small Macro",
  38785. height: math.unit(69, "feet")
  38786. },
  38787. {
  38788. name: "Macro",
  38789. height: math.unit(160, "feet")
  38790. },
  38791. {
  38792. name: "Megamacro",
  38793. height: math.unit(22000, "miles")
  38794. },
  38795. {
  38796. name: "Gigamacro",
  38797. height: math.unit(50000, "miles")
  38798. },
  38799. ]
  38800. ))
  38801. characterMakers.push(() => makeCharacter(
  38802. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38803. {
  38804. front: {
  38805. height: math.unit(4, "feet"),
  38806. weight: math.unit(90, "lb"),
  38807. name: "Front",
  38808. image: {
  38809. source: "./media/characters/joey-mcdonald/front.svg",
  38810. extra: 1059/852,
  38811. bottom: 33/1092
  38812. }
  38813. },
  38814. back: {
  38815. height: math.unit(4, "feet"),
  38816. weight: math.unit(90, "lb"),
  38817. name: "Back",
  38818. image: {
  38819. source: "./media/characters/joey-mcdonald/back.svg",
  38820. extra: 1077/879,
  38821. bottom: 5/1082
  38822. }
  38823. },
  38824. frontKobold: {
  38825. height: math.unit(4, "feet"),
  38826. weight: math.unit(100, "lb"),
  38827. name: "Front (Kobold)",
  38828. image: {
  38829. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38830. extra: 1480/1367,
  38831. bottom: 0/1480
  38832. }
  38833. },
  38834. backKobold: {
  38835. height: math.unit(4, "feet"),
  38836. weight: math.unit(100, "lb"),
  38837. name: "Back (Kobold)",
  38838. image: {
  38839. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38840. extra: 1449/1361,
  38841. bottom: 0/1449
  38842. }
  38843. },
  38844. },
  38845. [
  38846. {
  38847. name: "Normal",
  38848. height: math.unit(4, "feet"),
  38849. default: true
  38850. },
  38851. ]
  38852. ))
  38853. characterMakers.push(() => makeCharacter(
  38854. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38855. {
  38856. front: {
  38857. height: math.unit(12 + 6/12, "feet"),
  38858. name: "Front",
  38859. image: {
  38860. source: "./media/characters/kass-lockheed/front.svg",
  38861. extra: 354/343,
  38862. bottom: 9/363
  38863. }
  38864. },
  38865. back: {
  38866. height: math.unit(12 + 6/12, "feet"),
  38867. name: "Back",
  38868. image: {
  38869. source: "./media/characters/kass-lockheed/back.svg",
  38870. extra: 364/352,
  38871. bottom: 3/367
  38872. }
  38873. },
  38874. dick: {
  38875. height: math.unit(3.12, "feet"),
  38876. name: "Dick",
  38877. image: {
  38878. source: "./media/characters/kass-lockheed/dick.svg"
  38879. }
  38880. },
  38881. head: {
  38882. height: math.unit(2.6, "feet"),
  38883. name: "Head",
  38884. image: {
  38885. source: "./media/characters/kass-lockheed/head.svg"
  38886. }
  38887. },
  38888. bleh: {
  38889. height: math.unit(2.85, "feet"),
  38890. name: "Bleh",
  38891. image: {
  38892. source: "./media/characters/kass-lockheed/bleh.svg"
  38893. }
  38894. },
  38895. smug: {
  38896. height: math.unit(2.85, "feet"),
  38897. name: "Smug",
  38898. image: {
  38899. source: "./media/characters/kass-lockheed/smug.svg"
  38900. }
  38901. },
  38902. },
  38903. [
  38904. {
  38905. name: "Normal",
  38906. height: math.unit(12 + 6/12, "feet"),
  38907. default: true
  38908. },
  38909. ]
  38910. ))
  38911. characterMakers.push(() => makeCharacter(
  38912. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38913. {
  38914. front: {
  38915. height: math.unit(6 + 2/12, "feet"),
  38916. name: "Front",
  38917. image: {
  38918. source: "./media/characters/taylor/front.svg",
  38919. extra: 639/495,
  38920. bottom: 12/651
  38921. }
  38922. },
  38923. },
  38924. [
  38925. {
  38926. name: "Normal",
  38927. height: math.unit(6 + 2/12, "feet"),
  38928. default: true
  38929. },
  38930. {
  38931. name: "Big",
  38932. height: math.unit(15, "feet")
  38933. },
  38934. {
  38935. name: "Lorg",
  38936. height: math.unit(80, "feet")
  38937. },
  38938. {
  38939. name: "Too Lorg",
  38940. height: math.unit(120, "feet")
  38941. },
  38942. ]
  38943. ))
  38944. characterMakers.push(() => makeCharacter(
  38945. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38946. {
  38947. front: {
  38948. height: math.unit(15, "feet"),
  38949. name: "Front",
  38950. image: {
  38951. source: "./media/characters/kaizer/front.svg",
  38952. extra: 1612/1436,
  38953. bottom: 43/1655
  38954. }
  38955. },
  38956. },
  38957. [
  38958. {
  38959. name: "Normal",
  38960. height: math.unit(15, "feet"),
  38961. default: true
  38962. },
  38963. ]
  38964. ))
  38965. characterMakers.push(() => makeCharacter(
  38966. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38967. {
  38968. front: {
  38969. height: math.unit(2, "feet"),
  38970. weight: math.unit(30, "lb"),
  38971. name: "Front",
  38972. image: {
  38973. source: "./media/characters/sandy/front.svg",
  38974. extra: 1439/1307,
  38975. bottom: 194/1633
  38976. }
  38977. },
  38978. },
  38979. [
  38980. {
  38981. name: "Normal",
  38982. height: math.unit(2, "feet"),
  38983. default: true
  38984. },
  38985. ]
  38986. ))
  38987. characterMakers.push(() => makeCharacter(
  38988. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38989. {
  38990. front: {
  38991. height: math.unit(3, "feet"),
  38992. name: "Front",
  38993. image: {
  38994. source: "./media/characters/mellvi/front.svg",
  38995. extra: 1831/1630,
  38996. bottom: 58/1889
  38997. }
  38998. },
  38999. },
  39000. [
  39001. {
  39002. name: "Normal",
  39003. height: math.unit(3, "feet"),
  39004. default: true
  39005. },
  39006. ]
  39007. ))
  39008. characterMakers.push(() => makeCharacter(
  39009. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  39010. {
  39011. front: {
  39012. height: math.unit(5 + 11/12, "feet"),
  39013. weight: math.unit(200, "lb"),
  39014. name: "Front",
  39015. image: {
  39016. source: "./media/characters/shirou/front.svg",
  39017. extra: 2491/2383,
  39018. bottom: 189/2680
  39019. }
  39020. },
  39021. back: {
  39022. height: math.unit(5 + 11/12, "feet"),
  39023. weight: math.unit(200, "lb"),
  39024. name: "Back",
  39025. image: {
  39026. source: "./media/characters/shirou/back.svg",
  39027. extra: 2554/2450,
  39028. bottom: 76/2630
  39029. }
  39030. },
  39031. },
  39032. [
  39033. {
  39034. name: "Normal",
  39035. height: math.unit(5 + 11/12, "feet"),
  39036. default: true
  39037. },
  39038. ]
  39039. ))
  39040. characterMakers.push(() => makeCharacter(
  39041. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  39042. {
  39043. front: {
  39044. height: math.unit(6 + 3/12, "feet"),
  39045. weight: math.unit(177, "lb"),
  39046. name: "Front",
  39047. image: {
  39048. source: "./media/characters/noryu/front.svg",
  39049. extra: 973/885,
  39050. bottom: 10/983
  39051. }
  39052. },
  39053. },
  39054. [
  39055. {
  39056. name: "Normal",
  39057. height: math.unit(6 + 3/12, "feet"),
  39058. default: true
  39059. },
  39060. ]
  39061. ))
  39062. characterMakers.push(() => makeCharacter(
  39063. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  39064. {
  39065. front: {
  39066. height: math.unit(5 + 6/12, "feet"),
  39067. weight: math.unit(170, "lb"),
  39068. name: "Front",
  39069. image: {
  39070. source: "./media/characters/mevolas-rubenido/front.svg",
  39071. extra: 2109/1901,
  39072. bottom: 96/2205
  39073. }
  39074. },
  39075. },
  39076. [
  39077. {
  39078. name: "Normal",
  39079. height: math.unit(5 + 6/12, "feet"),
  39080. default: true
  39081. },
  39082. ]
  39083. ))
  39084. characterMakers.push(() => makeCharacter(
  39085. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  39086. {
  39087. front: {
  39088. height: math.unit(100, "feet"),
  39089. name: "Front",
  39090. image: {
  39091. source: "./media/characters/dee/front.svg",
  39092. extra: 2153/2036,
  39093. bottom: 59/2212
  39094. }
  39095. },
  39096. back: {
  39097. height: math.unit(100, "feet"),
  39098. name: "Back",
  39099. image: {
  39100. source: "./media/characters/dee/back.svg",
  39101. extra: 2183/2058,
  39102. bottom: 75/2258
  39103. }
  39104. },
  39105. foot: {
  39106. height: math.unit(19.43, "feet"),
  39107. name: "Foot",
  39108. image: {
  39109. source: "./media/characters/dee/foot.svg"
  39110. }
  39111. },
  39112. hoof: {
  39113. height: math.unit(20.6, "feet"),
  39114. name: "Hoof",
  39115. image: {
  39116. source: "./media/characters/dee/hoof.svg"
  39117. }
  39118. },
  39119. },
  39120. [
  39121. {
  39122. name: "Macro",
  39123. height: math.unit(100, "feet"),
  39124. default: true
  39125. },
  39126. ]
  39127. ))
  39128. characterMakers.push(() => makeCharacter(
  39129. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  39130. {
  39131. front: {
  39132. height: math.unit(5 + 6/12, "feet"),
  39133. name: "Front",
  39134. image: {
  39135. source: "./media/characters/teh/front.svg",
  39136. extra: 1002/847,
  39137. bottom: 62/1064
  39138. }
  39139. },
  39140. },
  39141. [
  39142. {
  39143. name: "Normal",
  39144. height: math.unit(5 + 6/12, "feet"),
  39145. default: true
  39146. },
  39147. ]
  39148. ))
  39149. characterMakers.push(() => makeCharacter(
  39150. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  39151. {
  39152. side: {
  39153. height: math.unit(6 + 1/12, "feet"),
  39154. weight: math.unit(204, "lb"),
  39155. name: "Side",
  39156. image: {
  39157. source: "./media/characters/quicksilver-ayukoti/side.svg",
  39158. extra: 974/775,
  39159. bottom: 169/1143
  39160. }
  39161. },
  39162. sitting: {
  39163. height: math.unit(6 + 2/12, "feet"),
  39164. weight: math.unit(204, "lb"),
  39165. name: "Sitting",
  39166. image: {
  39167. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  39168. extra: 1175/964,
  39169. bottom: 378/1553
  39170. }
  39171. },
  39172. },
  39173. [
  39174. {
  39175. name: "Normal",
  39176. height: math.unit(6 + 1/12, "feet"),
  39177. default: true
  39178. },
  39179. ]
  39180. ))
  39181. characterMakers.push(() => makeCharacter(
  39182. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  39183. {
  39184. front: {
  39185. height: math.unit(6, "inches"),
  39186. name: "Front",
  39187. image: {
  39188. source: "./media/characters/tululi/front.svg",
  39189. extra: 1997/1876,
  39190. bottom: 20/2017
  39191. }
  39192. },
  39193. },
  39194. [
  39195. {
  39196. name: "Normal",
  39197. height: math.unit(6, "inches"),
  39198. default: true
  39199. },
  39200. ]
  39201. ))
  39202. characterMakers.push(() => makeCharacter(
  39203. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  39204. {
  39205. front: {
  39206. height: math.unit(4 + 1/12, "feet"),
  39207. name: "Front",
  39208. image: {
  39209. source: "./media/characters/star/front.svg",
  39210. extra: 1493/1189,
  39211. bottom: 48/1541
  39212. }
  39213. },
  39214. },
  39215. [
  39216. {
  39217. name: "Normal",
  39218. height: math.unit(4 + 1/12, "feet"),
  39219. default: true
  39220. },
  39221. ]
  39222. ))
  39223. characterMakers.push(() => makeCharacter(
  39224. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  39225. {
  39226. front: {
  39227. height: math.unit(6 + 3/12, "feet"),
  39228. name: "Front",
  39229. image: {
  39230. source: "./media/characters/comet/front.svg",
  39231. extra: 1681/1462,
  39232. bottom: 26/1707
  39233. }
  39234. },
  39235. },
  39236. [
  39237. {
  39238. name: "Normal",
  39239. height: math.unit(6 + 3/12, "feet"),
  39240. default: true
  39241. },
  39242. ]
  39243. ))
  39244. characterMakers.push(() => makeCharacter(
  39245. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  39246. {
  39247. front: {
  39248. height: math.unit(950, "feet"),
  39249. name: "Front",
  39250. image: {
  39251. source: "./media/characters/vortex/front.svg",
  39252. extra: 1497/1434,
  39253. bottom: 56/1553
  39254. }
  39255. },
  39256. maw: {
  39257. height: math.unit(285, "feet"),
  39258. name: "Maw",
  39259. image: {
  39260. source: "./media/characters/vortex/maw.svg"
  39261. }
  39262. },
  39263. },
  39264. [
  39265. {
  39266. name: "Macro",
  39267. height: math.unit(950, "feet"),
  39268. default: true
  39269. },
  39270. ]
  39271. ))
  39272. characterMakers.push(() => makeCharacter(
  39273. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  39274. {
  39275. front: {
  39276. height: math.unit(600, "feet"),
  39277. weight: math.unit(0.02, "grams"),
  39278. name: "Front",
  39279. image: {
  39280. source: "./media/characters/doodle/front.svg",
  39281. extra: 1578/1413,
  39282. bottom: 37/1615
  39283. }
  39284. },
  39285. },
  39286. [
  39287. {
  39288. name: "Macro",
  39289. height: math.unit(600, "feet"),
  39290. default: true
  39291. },
  39292. ]
  39293. ))
  39294. characterMakers.push(() => makeCharacter(
  39295. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  39296. {
  39297. front: {
  39298. height: math.unit(6 + 6/12, "feet"),
  39299. name: "Front",
  39300. image: {
  39301. source: "./media/characters/jai/front.svg",
  39302. extra: 1645/1534,
  39303. bottom: 115/1760
  39304. }
  39305. },
  39306. },
  39307. [
  39308. {
  39309. name: "Normal",
  39310. height: math.unit(6 + 6/12, "feet"),
  39311. default: true
  39312. },
  39313. ]
  39314. ))
  39315. characterMakers.push(() => makeCharacter(
  39316. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  39317. {
  39318. front: {
  39319. height: math.unit(6 + 8/12, "feet"),
  39320. name: "Front",
  39321. image: {
  39322. source: "./media/characters/pixel/front.svg",
  39323. extra: 1900/1735,
  39324. bottom: 63/1963
  39325. }
  39326. },
  39327. },
  39328. [
  39329. {
  39330. name: "Normal",
  39331. height: math.unit(6 + 8/12, "feet"),
  39332. default: true
  39333. },
  39334. ]
  39335. ))
  39336. characterMakers.push(() => makeCharacter(
  39337. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  39338. {
  39339. back: {
  39340. height: math.unit(4 + 1/12, "feet"),
  39341. weight: math.unit(75, "lb"),
  39342. name: "Back",
  39343. image: {
  39344. source: "./media/characters/rhett/back.svg",
  39345. extra: 930/878,
  39346. bottom: 25/955
  39347. }
  39348. },
  39349. front: {
  39350. height: math.unit(4 + 1/12, "feet"),
  39351. weight: math.unit(75, "lb"),
  39352. name: "Front",
  39353. image: {
  39354. source: "./media/characters/rhett/front.svg",
  39355. extra: 1682/1586,
  39356. bottom: 92/1774
  39357. }
  39358. },
  39359. },
  39360. [
  39361. {
  39362. name: "Micro",
  39363. height: math.unit(8, "inches")
  39364. },
  39365. {
  39366. name: "Tiny",
  39367. height: math.unit(2, "feet")
  39368. },
  39369. {
  39370. name: "Normal",
  39371. height: math.unit(4 + 1/12, "feet"),
  39372. default: true
  39373. },
  39374. ]
  39375. ))
  39376. characterMakers.push(() => makeCharacter(
  39377. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  39378. {
  39379. front: {
  39380. height: math.unit(3 + 3/12, "feet"),
  39381. name: "Front",
  39382. image: {
  39383. source: "./media/characters/penny/front.svg",
  39384. extra: 1406/1311,
  39385. bottom: 26/1432
  39386. }
  39387. },
  39388. },
  39389. [
  39390. {
  39391. name: "Normal",
  39392. height: math.unit(3 + 3/12, "feet"),
  39393. default: true
  39394. },
  39395. ]
  39396. ))
  39397. characterMakers.push(() => makeCharacter(
  39398. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  39399. {
  39400. front: {
  39401. height: math.unit(4 + 11/12, "feet"),
  39402. name: "Front",
  39403. image: {
  39404. source: "./media/characters/monty/front.svg",
  39405. extra: 1479/1209,
  39406. bottom: 0/1479
  39407. }
  39408. },
  39409. },
  39410. [
  39411. {
  39412. name: "Normal",
  39413. height: math.unit(4 + 11/12, "feet"),
  39414. default: true
  39415. },
  39416. ]
  39417. ))
  39418. characterMakers.push(() => makeCharacter(
  39419. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  39420. {
  39421. front: {
  39422. height: math.unit(8 + 4/12, "feet"),
  39423. name: "Front",
  39424. image: {
  39425. source: "./media/characters/sterling/front.svg",
  39426. extra: 1420/1236,
  39427. bottom: 27/1447
  39428. }
  39429. },
  39430. },
  39431. [
  39432. {
  39433. name: "Normal",
  39434. height: math.unit(8 + 4/12, "feet"),
  39435. default: true
  39436. },
  39437. ]
  39438. ))
  39439. characterMakers.push(() => makeCharacter(
  39440. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  39441. {
  39442. front: {
  39443. height: math.unit(15, "feet"),
  39444. name: "Front",
  39445. image: {
  39446. source: "./media/characters/marble/front.svg",
  39447. extra: 973/937,
  39448. bottom: 32/1005
  39449. }
  39450. },
  39451. },
  39452. [
  39453. {
  39454. name: "Normal",
  39455. height: math.unit(15, "feet"),
  39456. default: true
  39457. },
  39458. ]
  39459. ))
  39460. characterMakers.push(() => makeCharacter(
  39461. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  39462. {
  39463. front: {
  39464. height: math.unit(3, "inches"),
  39465. name: "Front",
  39466. image: {
  39467. source: "./media/characters/powder/front.svg",
  39468. extra: 1504/1334,
  39469. bottom: 518/2022
  39470. }
  39471. },
  39472. },
  39473. [
  39474. {
  39475. name: "Normal",
  39476. height: math.unit(3, "inches"),
  39477. default: true
  39478. },
  39479. ]
  39480. ))
  39481. characterMakers.push(() => makeCharacter(
  39482. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39483. {
  39484. front: {
  39485. height: math.unit(4 + 5/12, "feet"),
  39486. name: "Front",
  39487. image: {
  39488. source: "./media/characters/joey-raccoon/front.svg",
  39489. extra: 1273/1197,
  39490. bottom: 0/1273
  39491. }
  39492. },
  39493. },
  39494. [
  39495. {
  39496. name: "Normal",
  39497. height: math.unit(4 + 5/12, "feet"),
  39498. default: true
  39499. },
  39500. ]
  39501. ))
  39502. characterMakers.push(() => makeCharacter(
  39503. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39504. {
  39505. front: {
  39506. height: math.unit(8 + 4/12, "feet"),
  39507. name: "Front",
  39508. image: {
  39509. source: "./media/characters/vick/front.svg",
  39510. extra: 2187/2118,
  39511. bottom: 47/2234
  39512. }
  39513. },
  39514. },
  39515. [
  39516. {
  39517. name: "Normal",
  39518. height: math.unit(8 + 4/12, "feet"),
  39519. default: true
  39520. },
  39521. ]
  39522. ))
  39523. characterMakers.push(() => makeCharacter(
  39524. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39525. {
  39526. front: {
  39527. height: math.unit(5 + 5/12, "feet"),
  39528. name: "Front",
  39529. image: {
  39530. source: "./media/characters/mitsy/front.svg",
  39531. extra: 1842/1695,
  39532. bottom: 0/1842
  39533. }
  39534. },
  39535. },
  39536. [
  39537. {
  39538. name: "Normal",
  39539. height: math.unit(5 + 5/12, "feet"),
  39540. default: true
  39541. },
  39542. ]
  39543. ))
  39544. characterMakers.push(() => makeCharacter(
  39545. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39546. {
  39547. front: {
  39548. height: math.unit(6 + 3/12, "feet"),
  39549. name: "Front",
  39550. image: {
  39551. source: "./media/characters/silvy/front.svg",
  39552. extra: 1995/1836,
  39553. bottom: 225/2220
  39554. }
  39555. },
  39556. },
  39557. [
  39558. {
  39559. name: "Normal",
  39560. height: math.unit(6 + 3/12, "feet"),
  39561. default: true
  39562. },
  39563. ]
  39564. ))
  39565. characterMakers.push(() => makeCharacter(
  39566. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39567. {
  39568. front: {
  39569. height: math.unit(3 + 8/12, "feet"),
  39570. name: "Front",
  39571. image: {
  39572. source: "./media/characters/rodney/front.svg",
  39573. extra: 1956/1747,
  39574. bottom: 31/1987
  39575. }
  39576. },
  39577. frontDressed: {
  39578. height: math.unit(2.9, "feet"),
  39579. name: "Front (Dressed)",
  39580. image: {
  39581. source: "./media/characters/rodney/front-dressed.svg",
  39582. extra: 1382/1241,
  39583. bottom: 385/1767
  39584. }
  39585. },
  39586. },
  39587. [
  39588. {
  39589. name: "Normal",
  39590. height: math.unit(3 + 8/12, "feet"),
  39591. default: true
  39592. },
  39593. ]
  39594. ))
  39595. characterMakers.push(() => makeCharacter(
  39596. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39597. {
  39598. front: {
  39599. height: math.unit(5 + 9/12, "feet"),
  39600. weight: math.unit(194, "lbs"),
  39601. name: "Front",
  39602. image: {
  39603. source: "./media/characters/zakail-sudekai/front.svg",
  39604. extra: 2696/2533,
  39605. bottom: 248/2944
  39606. }
  39607. },
  39608. maw: {
  39609. height: math.unit(1.35, "feet"),
  39610. name: "Maw",
  39611. image: {
  39612. source: "./media/characters/zakail-sudekai/maw.svg"
  39613. }
  39614. },
  39615. },
  39616. [
  39617. {
  39618. name: "Normal",
  39619. height: math.unit(5 + 9/12, "feet"),
  39620. default: true
  39621. },
  39622. ]
  39623. ))
  39624. characterMakers.push(() => makeCharacter(
  39625. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39626. {
  39627. front: {
  39628. height: math.unit(8 + 4/12, "feet"),
  39629. weight: math.unit(1200, "lb"),
  39630. name: "Front",
  39631. image: {
  39632. source: "./media/characters/eleanor/front.svg",
  39633. extra: 1226/1192,
  39634. bottom: 52/1278
  39635. }
  39636. },
  39637. back: {
  39638. height: math.unit(8 + 4/12, "feet"),
  39639. weight: math.unit(1200, "lb"),
  39640. name: "Back",
  39641. image: {
  39642. source: "./media/characters/eleanor/back.svg",
  39643. extra: 1242/1184,
  39644. bottom: 60/1302
  39645. }
  39646. },
  39647. head: {
  39648. height: math.unit(2.62, "feet"),
  39649. name: "Head",
  39650. image: {
  39651. source: "./media/characters/eleanor/head.svg"
  39652. }
  39653. },
  39654. },
  39655. [
  39656. {
  39657. name: "Normal",
  39658. height: math.unit(8 + 4/12, "feet"),
  39659. default: true
  39660. },
  39661. ]
  39662. ))
  39663. characterMakers.push(() => makeCharacter(
  39664. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39665. {
  39666. front: {
  39667. height: math.unit(8 + 4/12, "feet"),
  39668. weight: math.unit(750, "lb"),
  39669. name: "Front",
  39670. image: {
  39671. source: "./media/characters/tanya/front.svg",
  39672. extra: 1749/1615,
  39673. bottom: 33/1782
  39674. }
  39675. },
  39676. },
  39677. [
  39678. {
  39679. name: "Normal",
  39680. height: math.unit(8 + 4/12, "feet"),
  39681. default: true
  39682. },
  39683. ]
  39684. ))
  39685. characterMakers.push(() => makeCharacter(
  39686. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39687. {
  39688. front: {
  39689. height: math.unit(5, "feet"),
  39690. weight: math.unit(225, "lb"),
  39691. name: "Front",
  39692. image: {
  39693. source: "./media/characters/cindy/front.svg",
  39694. extra: 1320/1250,
  39695. bottom: 42/1362
  39696. }
  39697. },
  39698. frontDressed: {
  39699. height: math.unit(5, "feet"),
  39700. weight: math.unit(225, "lb"),
  39701. name: "Front (Dressed)",
  39702. image: {
  39703. source: "./media/characters/cindy/front-dressed.svg",
  39704. extra: 1320/1250,
  39705. bottom: 42/1362
  39706. }
  39707. },
  39708. back: {
  39709. height: math.unit(5, "feet"),
  39710. weight: math.unit(225, "lb"),
  39711. name: "Back",
  39712. image: {
  39713. source: "./media/characters/cindy/back.svg",
  39714. extra: 1384/1346,
  39715. bottom: 14/1398
  39716. }
  39717. },
  39718. },
  39719. [
  39720. {
  39721. name: "Normal",
  39722. height: math.unit(5, "feet"),
  39723. default: true
  39724. },
  39725. ]
  39726. ))
  39727. characterMakers.push(() => makeCharacter(
  39728. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39729. {
  39730. front: {
  39731. height: math.unit(6 + 9/12, "feet"),
  39732. weight: math.unit(440, "lb"),
  39733. name: "Front",
  39734. image: {
  39735. source: "./media/characters/wilbur-owen/front.svg",
  39736. extra: 1575/1448,
  39737. bottom: 72/1647
  39738. }
  39739. },
  39740. back: {
  39741. height: math.unit(6 + 9/12, "feet"),
  39742. weight: math.unit(440, "lb"),
  39743. name: "Back",
  39744. image: {
  39745. source: "./media/characters/wilbur-owen/back.svg",
  39746. extra: 1578/1445,
  39747. bottom: 36/1614
  39748. }
  39749. },
  39750. },
  39751. [
  39752. {
  39753. name: "Normal",
  39754. height: math.unit(6 + 9/12, "feet"),
  39755. default: true
  39756. },
  39757. ]
  39758. ))
  39759. characterMakers.push(() => makeCharacter(
  39760. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39761. {
  39762. front: {
  39763. height: math.unit(6 + 5/12, "feet"),
  39764. weight: math.unit(650, "lb"),
  39765. name: "Front",
  39766. image: {
  39767. source: "./media/characters/keegan/front.svg",
  39768. extra: 2387/2198,
  39769. bottom: 33/2420
  39770. }
  39771. },
  39772. side: {
  39773. height: math.unit(6 + 5/12, "feet"),
  39774. weight: math.unit(650, "lb"),
  39775. name: "Side",
  39776. image: {
  39777. source: "./media/characters/keegan/side.svg",
  39778. extra: 2390/2202,
  39779. bottom: 47/2437
  39780. }
  39781. },
  39782. back: {
  39783. height: math.unit(6 + 5/12, "feet"),
  39784. weight: math.unit(650, "lb"),
  39785. name: "Back",
  39786. image: {
  39787. source: "./media/characters/keegan/back.svg",
  39788. extra: 2418/2268,
  39789. bottom: 15/2433
  39790. }
  39791. },
  39792. frontSfw: {
  39793. height: math.unit(6 + 5/12, "feet"),
  39794. weight: math.unit(650, "lb"),
  39795. name: "Front (SFW)",
  39796. image: {
  39797. source: "./media/characters/keegan/front-sfw.svg",
  39798. extra: 2387/2198,
  39799. bottom: 33/2420
  39800. }
  39801. },
  39802. beans: {
  39803. height: math.unit(1.85, "feet"),
  39804. name: "Beans",
  39805. image: {
  39806. source: "./media/characters/keegan/beans.svg"
  39807. }
  39808. },
  39809. },
  39810. [
  39811. {
  39812. name: "Normal",
  39813. height: math.unit(6 + 5/12, "feet"),
  39814. default: true
  39815. },
  39816. ]
  39817. ))
  39818. characterMakers.push(() => makeCharacter(
  39819. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39820. {
  39821. front: {
  39822. height: math.unit(9, "feet"),
  39823. name: "Front",
  39824. image: {
  39825. source: "./media/characters/colton/front.svg",
  39826. extra: 1589/1326,
  39827. bottom: 139/1728
  39828. }
  39829. },
  39830. },
  39831. [
  39832. {
  39833. name: "Normal",
  39834. height: math.unit(9, "feet"),
  39835. default: true
  39836. },
  39837. ]
  39838. ))
  39839. characterMakers.push(() => makeCharacter(
  39840. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39841. {
  39842. front: {
  39843. height: math.unit(2 + 9/12, "feet"),
  39844. name: "Front",
  39845. image: {
  39846. source: "./media/characters/bora/front.svg",
  39847. extra: 1265/1250,
  39848. bottom: 24/1289
  39849. }
  39850. },
  39851. },
  39852. [
  39853. {
  39854. name: "Normal",
  39855. height: math.unit(2 + 9/12, "feet"),
  39856. default: true
  39857. },
  39858. ]
  39859. ))
  39860. characterMakers.push(() => makeCharacter(
  39861. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39862. {
  39863. front: {
  39864. height: math.unit(8, "feet"),
  39865. name: "Front",
  39866. image: {
  39867. source: "./media/characters/myu-myu/front.svg",
  39868. extra: 1949/1857,
  39869. bottom: 90/2039
  39870. }
  39871. },
  39872. },
  39873. [
  39874. {
  39875. name: "Normal",
  39876. height: math.unit(8, "feet"),
  39877. default: true
  39878. },
  39879. {
  39880. name: "Big",
  39881. height: math.unit(15, "feet")
  39882. },
  39883. {
  39884. name: "BIG",
  39885. height: math.unit(25, "feet")
  39886. },
  39887. ]
  39888. ))
  39889. characterMakers.push(() => makeCharacter(
  39890. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39891. {
  39892. side: {
  39893. height: math.unit(7 + 5/12, "feet"),
  39894. weight: math.unit(2800, "lb"),
  39895. name: "Side",
  39896. image: {
  39897. source: "./media/characters/haloren/side.svg",
  39898. extra: 1793/409,
  39899. bottom: 59/1852
  39900. }
  39901. },
  39902. frontPaw: {
  39903. height: math.unit(2.36, "feet"),
  39904. name: "Front paw",
  39905. image: {
  39906. source: "./media/characters/haloren/front-paw.svg"
  39907. }
  39908. },
  39909. hindPaw: {
  39910. height: math.unit(3.18, "feet"),
  39911. name: "Hind paw",
  39912. image: {
  39913. source: "./media/characters/haloren/hind-paw.svg"
  39914. }
  39915. },
  39916. maw: {
  39917. height: math.unit(5.05, "feet"),
  39918. name: "Maw",
  39919. image: {
  39920. source: "./media/characters/haloren/maw.svg"
  39921. }
  39922. },
  39923. dick: {
  39924. height: math.unit(2.90, "feet"),
  39925. name: "Dick",
  39926. image: {
  39927. source: "./media/characters/haloren/dick.svg"
  39928. }
  39929. },
  39930. },
  39931. [
  39932. {
  39933. name: "Normal",
  39934. height: math.unit(7 + 5/12, "feet"),
  39935. default: true
  39936. },
  39937. {
  39938. name: "Enhanced",
  39939. height: math.unit(14 + 3/12, "feet")
  39940. },
  39941. ]
  39942. ))
  39943. characterMakers.push(() => makeCharacter(
  39944. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39945. {
  39946. front: {
  39947. height: math.unit(171, "cm"),
  39948. name: "Front",
  39949. image: {
  39950. source: "./media/characters/kimmy/front.svg",
  39951. extra: 1491/1435,
  39952. bottom: 53/1544
  39953. }
  39954. },
  39955. },
  39956. [
  39957. {
  39958. name: "Small",
  39959. height: math.unit(9, "cm")
  39960. },
  39961. {
  39962. name: "Normal",
  39963. height: math.unit(171, "cm"),
  39964. default: true
  39965. },
  39966. ]
  39967. ))
  39968. characterMakers.push(() => makeCharacter(
  39969. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39970. {
  39971. front: {
  39972. height: math.unit(8, "feet"),
  39973. weight: math.unit(300, "lb"),
  39974. name: "Front",
  39975. image: {
  39976. source: "./media/characters/galeboomer/front.svg",
  39977. extra: 4651/4415,
  39978. bottom: 162/4813
  39979. }
  39980. },
  39981. back: {
  39982. height: math.unit(8, "feet"),
  39983. weight: math.unit(300, "lb"),
  39984. name: "Back",
  39985. image: {
  39986. source: "./media/characters/galeboomer/back.svg",
  39987. extra: 4544/4314,
  39988. bottom: 16/4560
  39989. }
  39990. },
  39991. frontAlt: {
  39992. height: math.unit(8, "feet"),
  39993. weight: math.unit(300, "lb"),
  39994. name: "Front (Alt)",
  39995. image: {
  39996. source: "./media/characters/galeboomer/front-alt.svg",
  39997. extra: 4458/4228,
  39998. bottom: 68/4526
  39999. }
  40000. },
  40001. maw: {
  40002. height: math.unit(1.2, "feet"),
  40003. name: "Maw",
  40004. image: {
  40005. source: "./media/characters/galeboomer/maw.svg"
  40006. }
  40007. },
  40008. },
  40009. [
  40010. {
  40011. name: "Normal",
  40012. height: math.unit(8, "feet"),
  40013. default: true
  40014. },
  40015. ]
  40016. ))
  40017. characterMakers.push(() => makeCharacter(
  40018. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  40019. {
  40020. front: {
  40021. height: math.unit(5 + 9/12, "feet"),
  40022. weight: math.unit(120, "lb"),
  40023. name: "Front",
  40024. image: {
  40025. source: "./media/characters/chyr/front.svg",
  40026. extra: 1323/1254,
  40027. bottom: 63/1386
  40028. }
  40029. },
  40030. back: {
  40031. height: math.unit(5 + 9/12, "feet"),
  40032. weight: math.unit(120, "lb"),
  40033. name: "Back",
  40034. image: {
  40035. source: "./media/characters/chyr/back.svg",
  40036. extra: 1323/1252,
  40037. bottom: 48/1371
  40038. }
  40039. },
  40040. },
  40041. [
  40042. {
  40043. name: "Normal",
  40044. height: math.unit(5 + 9/12, "feet"),
  40045. default: true
  40046. },
  40047. ]
  40048. ))
  40049. characterMakers.push(() => makeCharacter(
  40050. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  40051. {
  40052. front: {
  40053. height: math.unit(7, "feet"),
  40054. weight: math.unit(310, "lb"),
  40055. name: "Front",
  40056. image: {
  40057. source: "./media/characters/solarus/front.svg",
  40058. extra: 2415/2021,
  40059. bottom: 103/2518
  40060. }
  40061. },
  40062. back: {
  40063. height: math.unit(7, "feet"),
  40064. weight: math.unit(310, "lb"),
  40065. name: "Back",
  40066. image: {
  40067. source: "./media/characters/solarus/back.svg",
  40068. extra: 2463/2089,
  40069. bottom: 79/2542
  40070. }
  40071. },
  40072. },
  40073. [
  40074. {
  40075. name: "Normal",
  40076. height: math.unit(7, "feet"),
  40077. default: true
  40078. },
  40079. ]
  40080. ))
  40081. characterMakers.push(() => makeCharacter(
  40082. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  40083. {
  40084. front: {
  40085. height: math.unit(16, "feet"),
  40086. name: "Front",
  40087. image: {
  40088. source: "./media/characters/mutsuju-koizaemon/front.svg",
  40089. extra: 1844/1780,
  40090. bottom: 58/1902
  40091. }
  40092. },
  40093. winterCoat: {
  40094. height: math.unit(16, "feet"),
  40095. name: "Winter Coat",
  40096. image: {
  40097. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  40098. extra: 1807/1775,
  40099. bottom: 69/1876
  40100. }
  40101. },
  40102. },
  40103. [
  40104. {
  40105. name: "Normal",
  40106. height: math.unit(16, "feet"),
  40107. default: true
  40108. },
  40109. {
  40110. name: "Chicago Size",
  40111. height: math.unit(560, "feet")
  40112. },
  40113. ]
  40114. ))
  40115. characterMakers.push(() => makeCharacter(
  40116. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  40117. {
  40118. front: {
  40119. height: math.unit(11 + 6/12, "feet"),
  40120. weight: math.unit(1366, "lb"),
  40121. name: "Front",
  40122. image: {
  40123. source: "./media/characters/lexor/front.svg",
  40124. extra: 1560/1481,
  40125. bottom: 211/1771
  40126. }
  40127. },
  40128. back: {
  40129. height: math.unit(11 + 6/12, "feet"),
  40130. weight: math.unit(1366, "lb"),
  40131. name: "Back",
  40132. image: {
  40133. source: "./media/characters/lexor/back.svg",
  40134. extra: 1614/1533,
  40135. bottom: 76/1690
  40136. }
  40137. },
  40138. maw: {
  40139. height: math.unit(3, "feet"),
  40140. name: "Maw",
  40141. image: {
  40142. source: "./media/characters/lexor/maw.svg"
  40143. }
  40144. },
  40145. dick: {
  40146. height: math.unit(2.59, "feet"),
  40147. name: "Dick",
  40148. image: {
  40149. source: "./media/characters/lexor/dick.svg"
  40150. }
  40151. },
  40152. },
  40153. [
  40154. {
  40155. name: "Normal",
  40156. height: math.unit(11 + 6/12, "feet"),
  40157. default: true
  40158. },
  40159. ]
  40160. ))
  40161. characterMakers.push(() => makeCharacter(
  40162. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  40163. {
  40164. front: {
  40165. height: math.unit(5 + 8/12, "feet"),
  40166. name: "Front",
  40167. image: {
  40168. source: "./media/characters/magnum/front.svg",
  40169. extra: 942/855,
  40170. bottom: 26/968
  40171. }
  40172. },
  40173. },
  40174. [
  40175. {
  40176. name: "Normal",
  40177. height: math.unit(5 + 8/12, "feet"),
  40178. default: true
  40179. },
  40180. ]
  40181. ))
  40182. characterMakers.push(() => makeCharacter(
  40183. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  40184. {
  40185. front: {
  40186. height: math.unit(18 + 4/12, "feet"),
  40187. weight: math.unit(1500, "kg"),
  40188. name: "Front",
  40189. image: {
  40190. source: "./media/characters/solas-sharpsman/front.svg",
  40191. extra: 1698/1589,
  40192. bottom: 0/1698
  40193. }
  40194. },
  40195. },
  40196. [
  40197. {
  40198. name: "Normal",
  40199. height: math.unit(18 + 4/12, "feet"),
  40200. default: true
  40201. },
  40202. ]
  40203. ))
  40204. characterMakers.push(() => makeCharacter(
  40205. { name: "October", species: ["tiger"], tags: ["anthro"] },
  40206. {
  40207. front: {
  40208. height: math.unit(5 + 5/12, "feet"),
  40209. weight: math.unit(180, "lb"),
  40210. name: "Front",
  40211. image: {
  40212. source: "./media/characters/october/front.svg",
  40213. extra: 1800/1650,
  40214. bottom: 0/1800
  40215. }
  40216. },
  40217. frontNsfw: {
  40218. height: math.unit(5 + 5/12, "feet"),
  40219. weight: math.unit(180, "lb"),
  40220. name: "Front (NSFW)",
  40221. image: {
  40222. source: "./media/characters/october/front-nsfw.svg",
  40223. extra: 1392/1307,
  40224. bottom: 42/1434
  40225. }
  40226. },
  40227. },
  40228. [
  40229. {
  40230. name: "Normal",
  40231. height: math.unit(5 + 5/12, "feet"),
  40232. default: true
  40233. },
  40234. ]
  40235. ))
  40236. characterMakers.push(() => makeCharacter(
  40237. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  40238. {
  40239. front: {
  40240. height: math.unit(8 + 6/12, "feet"),
  40241. name: "Front",
  40242. image: {
  40243. source: "./media/characters/essynkardi/front.svg",
  40244. extra: 1541/1457,
  40245. bottom: 47/1588
  40246. }
  40247. },
  40248. },
  40249. [
  40250. {
  40251. name: "Normal",
  40252. height: math.unit(8 + 6/12, "feet"),
  40253. default: true
  40254. },
  40255. ]
  40256. ))
  40257. characterMakers.push(() => makeCharacter(
  40258. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  40259. {
  40260. front: {
  40261. height: math.unit(6 + 6/12, "feet"),
  40262. weight: math.unit(7, "lb"),
  40263. name: "Front",
  40264. image: {
  40265. source: "./media/characters/icky/front.svg",
  40266. extra: 813/782,
  40267. bottom: 66/879
  40268. }
  40269. },
  40270. back: {
  40271. height: math.unit(6 + 6/12, "feet"),
  40272. weight: math.unit(7, "lb"),
  40273. name: "Back",
  40274. image: {
  40275. source: "./media/characters/icky/back.svg",
  40276. extra: 754/735,
  40277. bottom: 56/810
  40278. }
  40279. },
  40280. },
  40281. [
  40282. {
  40283. name: "Normal",
  40284. height: math.unit(6 + 6/12, "feet"),
  40285. default: true
  40286. },
  40287. ]
  40288. ))
  40289. characterMakers.push(() => makeCharacter(
  40290. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  40291. {
  40292. front: {
  40293. height: math.unit(15, "feet"),
  40294. name: "Front",
  40295. image: {
  40296. source: "./media/characters/rojas/front.svg",
  40297. extra: 1462/1408,
  40298. bottom: 95/1557
  40299. }
  40300. },
  40301. back: {
  40302. height: math.unit(15, "feet"),
  40303. name: "Back",
  40304. image: {
  40305. source: "./media/characters/rojas/back.svg",
  40306. extra: 1023/954,
  40307. bottom: 28/1051
  40308. }
  40309. },
  40310. },
  40311. [
  40312. {
  40313. name: "Normal",
  40314. height: math.unit(15, "feet"),
  40315. default: true
  40316. },
  40317. ]
  40318. ))
  40319. characterMakers.push(() => makeCharacter(
  40320. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  40321. {
  40322. frontHuman: {
  40323. height: math.unit(5 + 7/12, "feet"),
  40324. name: "Front (Human)",
  40325. image: {
  40326. source: "./media/characters/alek-dryagan/front-human.svg",
  40327. extra: 1687/1667,
  40328. bottom: 69/1756
  40329. }
  40330. },
  40331. backHuman: {
  40332. height: math.unit(5 + 7/12, "feet"),
  40333. name: "Back (Human)",
  40334. image: {
  40335. source: "./media/characters/alek-dryagan/back-human.svg",
  40336. extra: 1670/1649,
  40337. bottom: 65/1735
  40338. }
  40339. },
  40340. frontDemi: {
  40341. height: math.unit(65, "feet"),
  40342. name: "Front (Demi)",
  40343. image: {
  40344. source: "./media/characters/alek-dryagan/front-demi.svg",
  40345. extra: 1669/1642,
  40346. bottom: 49/1718
  40347. }
  40348. },
  40349. backDemi: {
  40350. height: math.unit(65, "feet"),
  40351. name: "Back (Demi)",
  40352. image: {
  40353. source: "./media/characters/alek-dryagan/back-demi.svg",
  40354. extra: 1658/1637,
  40355. bottom: 40/1698
  40356. }
  40357. },
  40358. mawHuman: {
  40359. height: math.unit(0.3, "feet"),
  40360. name: "Maw (Human)",
  40361. image: {
  40362. source: "./media/characters/alek-dryagan/maw-human.svg"
  40363. }
  40364. },
  40365. mawDemi: {
  40366. height: math.unit(3.8, "feet"),
  40367. name: "Maw (Demi)",
  40368. image: {
  40369. source: "./media/characters/alek-dryagan/maw-demi.svg"
  40370. }
  40371. },
  40372. },
  40373. [
  40374. {
  40375. name: "Normal",
  40376. height: math.unit(5 + 7/12, "feet"),
  40377. default: true
  40378. },
  40379. ]
  40380. ))
  40381. characterMakers.push(() => makeCharacter(
  40382. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  40383. {
  40384. frontHuman: {
  40385. height: math.unit(5 + 2/12, "feet"),
  40386. name: "Front (Human)",
  40387. image: {
  40388. source: "./media/characters/gen/front-human.svg",
  40389. extra: 1627/1538,
  40390. bottom: 71/1698
  40391. }
  40392. },
  40393. backHuman: {
  40394. height: math.unit(5 + 2/12, "feet"),
  40395. name: "Back (Human)",
  40396. image: {
  40397. source: "./media/characters/gen/back-human.svg",
  40398. extra: 1638/1548,
  40399. bottom: 69/1707
  40400. }
  40401. },
  40402. frontDemi: {
  40403. height: math.unit(5 + 2/12, "feet"),
  40404. name: "Front (Demi)",
  40405. image: {
  40406. source: "./media/characters/gen/front-demi.svg",
  40407. extra: 1627/1538,
  40408. bottom: 71/1698
  40409. }
  40410. },
  40411. backDemi: {
  40412. height: math.unit(5 + 2/12, "feet"),
  40413. name: "Back (Demi)",
  40414. image: {
  40415. source: "./media/characters/gen/back-demi.svg",
  40416. extra: 1638/1548,
  40417. bottom: 69/1707
  40418. }
  40419. },
  40420. },
  40421. [
  40422. {
  40423. name: "Normal",
  40424. height: math.unit(5 + 2/12, "feet"),
  40425. default: true
  40426. },
  40427. ]
  40428. ))
  40429. characterMakers.push(() => makeCharacter(
  40430. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  40431. {
  40432. frontImp: {
  40433. height: math.unit(1 + 11/12, "feet"),
  40434. name: "Front (Imp)",
  40435. image: {
  40436. source: "./media/characters/max-kobold/front-imp.svg",
  40437. extra: 1238/1134,
  40438. bottom: 81/1319
  40439. }
  40440. },
  40441. backImp: {
  40442. height: math.unit(1 + 11/12, "feet"),
  40443. name: "Back (Imp)",
  40444. image: {
  40445. source: "./media/characters/max-kobold/back-imp.svg",
  40446. extra: 1334/1175,
  40447. bottom: 34/1368
  40448. }
  40449. },
  40450. frontDemi: {
  40451. height: math.unit(5 + 9/12, "feet"),
  40452. name: "Front (Demi)",
  40453. image: {
  40454. source: "./media/characters/max-kobold/front-demi.svg",
  40455. extra: 1715/1685,
  40456. bottom: 54/1769
  40457. }
  40458. },
  40459. backDemi: {
  40460. height: math.unit(5 + 9/12, "feet"),
  40461. name: "Back (Demi)",
  40462. image: {
  40463. source: "./media/characters/max-kobold/back-demi.svg",
  40464. extra: 1752/1729,
  40465. bottom: 41/1793
  40466. }
  40467. },
  40468. handImp: {
  40469. height: math.unit(0.45, "feet"),
  40470. name: "Hand (Imp)",
  40471. image: {
  40472. source: "./media/characters/max-kobold/hand.svg"
  40473. }
  40474. },
  40475. pawImp: {
  40476. height: math.unit(0.46, "feet"),
  40477. name: "Paw (Imp)",
  40478. image: {
  40479. source: "./media/characters/max-kobold/paw.svg"
  40480. }
  40481. },
  40482. handDemi: {
  40483. height: math.unit(0.80, "feet"),
  40484. name: "Hand (Demi)",
  40485. image: {
  40486. source: "./media/characters/max-kobold/hand.svg"
  40487. }
  40488. },
  40489. pawDemi: {
  40490. height: math.unit(1.1, "feet"),
  40491. name: "Paw (Demi)",
  40492. image: {
  40493. source: "./media/characters/max-kobold/paw.svg"
  40494. }
  40495. },
  40496. headImp: {
  40497. height: math.unit(1.33, "feet"),
  40498. name: "Head (Imp)",
  40499. image: {
  40500. source: "./media/characters/max-kobold/head-imp.svg"
  40501. }
  40502. },
  40503. mawImp: {
  40504. height: math.unit(0.75, "feet"),
  40505. name: "Maw (Imp)",
  40506. image: {
  40507. source: "./media/characters/max-kobold/maw-imp.svg"
  40508. }
  40509. },
  40510. mawDemi: {
  40511. height: math.unit(0.42, "feet"),
  40512. name: "Maw (Demi)",
  40513. image: {
  40514. source: "./media/characters/max-kobold/maw-demi.svg"
  40515. }
  40516. },
  40517. },
  40518. [
  40519. {
  40520. name: "Normal",
  40521. height: math.unit(1 + 11/12, "feet"),
  40522. default: true
  40523. },
  40524. ]
  40525. ))
  40526. characterMakers.push(() => makeCharacter(
  40527. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40528. {
  40529. front: {
  40530. height: math.unit(7 + 5/12, "feet"),
  40531. name: "Front",
  40532. image: {
  40533. source: "./media/characters/carbon/front.svg",
  40534. extra: 1754/1689,
  40535. bottom: 65/1819
  40536. }
  40537. },
  40538. back: {
  40539. height: math.unit(7 + 5/12, "feet"),
  40540. name: "Back",
  40541. image: {
  40542. source: "./media/characters/carbon/back.svg",
  40543. extra: 1762/1695,
  40544. bottom: 24/1786
  40545. }
  40546. },
  40547. frontGigantamax: {
  40548. height: math.unit(150, "feet"),
  40549. name: "Front (Gigantamax)",
  40550. image: {
  40551. source: "./media/characters/carbon/front-gigantamax.svg",
  40552. extra: 1826/1669,
  40553. bottom: 59/1885
  40554. }
  40555. },
  40556. backGigantamax: {
  40557. height: math.unit(150, "feet"),
  40558. name: "Back (Gigantamax)",
  40559. image: {
  40560. source: "./media/characters/carbon/back-gigantamax.svg",
  40561. extra: 1796/1653,
  40562. bottom: 53/1849
  40563. }
  40564. },
  40565. maw: {
  40566. height: math.unit(0.48, "feet"),
  40567. name: "Maw",
  40568. image: {
  40569. source: "./media/characters/carbon/maw.svg"
  40570. }
  40571. },
  40572. mawGigantamax: {
  40573. height: math.unit(7.5, "feet"),
  40574. name: "Maw (Gigantamax)",
  40575. image: {
  40576. source: "./media/characters/carbon/maw-gigantamax.svg"
  40577. }
  40578. },
  40579. },
  40580. [
  40581. {
  40582. name: "Normal",
  40583. height: math.unit(7 + 5/12, "feet"),
  40584. default: true
  40585. },
  40586. ]
  40587. ))
  40588. characterMakers.push(() => makeCharacter(
  40589. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40590. {
  40591. front: {
  40592. height: math.unit(6, "feet"),
  40593. name: "Front",
  40594. image: {
  40595. source: "./media/characters/maverick/front.svg",
  40596. extra: 1672/1661,
  40597. bottom: 85/1757
  40598. }
  40599. },
  40600. back: {
  40601. height: math.unit(6, "feet"),
  40602. name: "Back",
  40603. image: {
  40604. source: "./media/characters/maverick/back.svg",
  40605. extra: 1642/1631,
  40606. bottom: 38/1680
  40607. }
  40608. },
  40609. },
  40610. [
  40611. {
  40612. name: "Normal",
  40613. height: math.unit(6, "feet"),
  40614. default: true
  40615. },
  40616. ]
  40617. ))
  40618. characterMakers.push(() => makeCharacter(
  40619. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40620. {
  40621. front: {
  40622. height: math.unit(15, "feet"),
  40623. weight: math.unit(615, "lb"),
  40624. name: "Front",
  40625. image: {
  40626. source: "./media/characters/grockle/front.svg",
  40627. extra: 1535/1427,
  40628. bottom: 56/1591
  40629. }
  40630. },
  40631. },
  40632. [
  40633. {
  40634. name: "Normal",
  40635. height: math.unit(15, "feet"),
  40636. default: true
  40637. },
  40638. {
  40639. name: "Large",
  40640. height: math.unit(150, "feet")
  40641. },
  40642. {
  40643. name: "Macro",
  40644. height: math.unit(1876, "feet")
  40645. },
  40646. {
  40647. name: "Mega Macro",
  40648. height: math.unit(121940, "feet")
  40649. },
  40650. {
  40651. name: "Giga Macro",
  40652. height: math.unit(750, "km")
  40653. },
  40654. {
  40655. name: "Tera Macro",
  40656. height: math.unit(750000, "km")
  40657. },
  40658. {
  40659. name: "Galactic",
  40660. height: math.unit(1.4e5, "km")
  40661. },
  40662. {
  40663. name: "Godlike",
  40664. height: math.unit(9.8e280, "galaxies")
  40665. },
  40666. ]
  40667. ))
  40668. characterMakers.push(() => makeCharacter(
  40669. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40670. {
  40671. front: {
  40672. height: math.unit(11, "meters"),
  40673. weight: math.unit(20, "tonnes"),
  40674. name: "Front",
  40675. image: {
  40676. source: "./media/characters/alistair/front.svg",
  40677. extra: 1265/1009,
  40678. bottom: 93/1358
  40679. }
  40680. },
  40681. },
  40682. [
  40683. {
  40684. name: "Normal",
  40685. height: math.unit(11, "meters"),
  40686. default: true
  40687. },
  40688. ]
  40689. ))
  40690. characterMakers.push(() => makeCharacter(
  40691. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40692. {
  40693. front: {
  40694. height: math.unit(5 + 8/12, "feet"),
  40695. name: "Front",
  40696. image: {
  40697. source: "./media/characters/haruka/front.svg",
  40698. extra: 2012/1952,
  40699. bottom: 0/2012
  40700. }
  40701. },
  40702. },
  40703. [
  40704. {
  40705. name: "Normal",
  40706. height: math.unit(5 + 8/12, "feet"),
  40707. default: true
  40708. },
  40709. ]
  40710. ))
  40711. characterMakers.push(() => makeCharacter(
  40712. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40713. {
  40714. back: {
  40715. height: math.unit(9, "feet"),
  40716. name: "Back",
  40717. image: {
  40718. source: "./media/characters/vivian-sylveon/back.svg",
  40719. extra: 1853/1714,
  40720. bottom: 0/1853
  40721. }
  40722. },
  40723. hyper: {
  40724. height: math.unit(5.58, "feet"),
  40725. name: "Hyper",
  40726. preyCapacity: math.unit(2.80616218797, "m^3"),
  40727. image: {
  40728. source: "./media/characters/vivian-sylveon/hyper.svg",
  40729. extra: 999/676,
  40730. bottom: 697/1696
  40731. },
  40732. },
  40733. paw: {
  40734. height: math.unit(1.8, "feet"),
  40735. name: "Paw",
  40736. image: {
  40737. source: "./media/characters/vivian-sylveon/paw.svg"
  40738. }
  40739. },
  40740. danger: {
  40741. height: math.unit(7.5, "feet"),
  40742. name: "DANGER",
  40743. image: {
  40744. source: "./media/characters/vivian-sylveon/danger.svg"
  40745. }
  40746. },
  40747. },
  40748. [
  40749. {
  40750. name: "Normal",
  40751. height: math.unit(10, "feet"),
  40752. default: true
  40753. },
  40754. {
  40755. name: "Macro",
  40756. height: math.unit(500, "feet")
  40757. },
  40758. {
  40759. name: "Megamacro",
  40760. height: math.unit(600, "miles")
  40761. },
  40762. {
  40763. name: "Gigamacro",
  40764. height: math.unit(30000, "miles")
  40765. },
  40766. ]
  40767. ))
  40768. characterMakers.push(() => makeCharacter(
  40769. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40770. {
  40771. anthro: {
  40772. height: math.unit(5 + 10/12, "feet"),
  40773. weight: math.unit(100, "lb"),
  40774. name: "Anthro",
  40775. image: {
  40776. source: "./media/characters/daiki/anthro.svg",
  40777. extra: 1115/1027,
  40778. bottom: 69/1184
  40779. }
  40780. },
  40781. feral: {
  40782. height: math.unit(200, "feet"),
  40783. name: "Feral",
  40784. image: {
  40785. source: "./media/characters/daiki/feral.svg",
  40786. extra: 1256/313,
  40787. bottom: 39/1295
  40788. }
  40789. },
  40790. feralHead: {
  40791. height: math.unit(171, "feet"),
  40792. name: "Feral Head",
  40793. image: {
  40794. source: "./media/characters/daiki/feral-head.svg"
  40795. }
  40796. },
  40797. manaDragon: {
  40798. height: math.unit(170, "meters"),
  40799. name: "Mana Dragon",
  40800. image: {
  40801. source: "./media/characters/daiki/mana-dragon.svg",
  40802. extra: 763/420,
  40803. bottom: 97/860
  40804. }
  40805. },
  40806. },
  40807. [
  40808. {
  40809. name: "Normal",
  40810. height: math.unit(5 + 10/12, "feet"),
  40811. default: true
  40812. },
  40813. ]
  40814. ))
  40815. characterMakers.push(() => makeCharacter(
  40816. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40817. {
  40818. fullyEquippedFront: {
  40819. height: math.unit(3 + 1/12, "feet"),
  40820. weight: math.unit(24, "lb"),
  40821. name: "Fully Equipped (Front)",
  40822. image: {
  40823. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40824. extra: 687/605,
  40825. bottom: 18/705
  40826. }
  40827. },
  40828. fullyEquippedBack: {
  40829. height: math.unit(3 + 1/12, "feet"),
  40830. weight: math.unit(24, "lb"),
  40831. name: "Fully Equipped (Back)",
  40832. image: {
  40833. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40834. extra: 689/590,
  40835. bottom: 18/707
  40836. }
  40837. },
  40838. dailyWear: {
  40839. height: math.unit(3 + 1/12, "feet"),
  40840. weight: math.unit(24, "lb"),
  40841. name: "Daily Wear",
  40842. image: {
  40843. source: "./media/characters/tea-spot/daily-wear.svg",
  40844. extra: 701/620,
  40845. bottom: 21/722
  40846. }
  40847. },
  40848. maidWork: {
  40849. height: math.unit(3 + 1/12, "feet"),
  40850. weight: math.unit(24, "lb"),
  40851. name: "Maid Work",
  40852. image: {
  40853. source: "./media/characters/tea-spot/maid-work.svg",
  40854. extra: 693/609,
  40855. bottom: 15/708
  40856. }
  40857. },
  40858. },
  40859. [
  40860. {
  40861. name: "Normal",
  40862. height: math.unit(3 + 1/12, "feet"),
  40863. default: true
  40864. },
  40865. ]
  40866. ))
  40867. characterMakers.push(() => makeCharacter(
  40868. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40869. {
  40870. front: {
  40871. height: math.unit(175, "cm"),
  40872. weight: math.unit(75, "kg"),
  40873. name: "Front",
  40874. image: {
  40875. source: "./media/characters/chee/front.svg",
  40876. extra: 1796/1740,
  40877. bottom: 40/1836
  40878. }
  40879. },
  40880. },
  40881. [
  40882. {
  40883. name: "Micro-Micro",
  40884. height: math.unit(1, "nm")
  40885. },
  40886. {
  40887. name: "Micro-erst",
  40888. height: math.unit(1, "micrometer")
  40889. },
  40890. {
  40891. name: "Micro-er",
  40892. height: math.unit(1, "cm")
  40893. },
  40894. {
  40895. name: "Normal",
  40896. height: math.unit(175, "cm"),
  40897. default: true
  40898. },
  40899. {
  40900. name: "Macro",
  40901. height: math.unit(100, "m")
  40902. },
  40903. {
  40904. name: "Macro-er",
  40905. height: math.unit(1, "km")
  40906. },
  40907. {
  40908. name: "Macro-erst",
  40909. height: math.unit(10, "km")
  40910. },
  40911. {
  40912. name: "Macro-Macro",
  40913. height: math.unit(100, "km")
  40914. },
  40915. ]
  40916. ))
  40917. characterMakers.push(() => makeCharacter(
  40918. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40919. {
  40920. front: {
  40921. height: math.unit(11 + 9/12, "feet"),
  40922. weight: math.unit(935, "lb"),
  40923. name: "Front",
  40924. image: {
  40925. source: "./media/characters/kingsley/front.svg",
  40926. extra: 1803/1674,
  40927. bottom: 127/1930
  40928. }
  40929. },
  40930. frontNude: {
  40931. height: math.unit(11 + 9/12, "feet"),
  40932. weight: math.unit(935, "lb"),
  40933. name: "Front (Nude)",
  40934. image: {
  40935. source: "./media/characters/kingsley/front-nude.svg",
  40936. extra: 1803/1674,
  40937. bottom: 127/1930
  40938. }
  40939. },
  40940. },
  40941. [
  40942. {
  40943. name: "Normal",
  40944. height: math.unit(11 + 9/12, "feet"),
  40945. default: true
  40946. },
  40947. ]
  40948. ))
  40949. characterMakers.push(() => makeCharacter(
  40950. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40951. {
  40952. side: {
  40953. height: math.unit(9, "feet"),
  40954. name: "Side",
  40955. image: {
  40956. source: "./media/characters/rymel/side.svg",
  40957. extra: 792/469,
  40958. bottom: 121/913
  40959. }
  40960. },
  40961. maw: {
  40962. height: math.unit(2.4, "meters"),
  40963. name: "Maw",
  40964. image: {
  40965. source: "./media/characters/rymel/maw.svg"
  40966. }
  40967. },
  40968. },
  40969. [
  40970. {
  40971. name: "House Drake",
  40972. height: math.unit(2, "feet")
  40973. },
  40974. {
  40975. name: "Reduced",
  40976. height: math.unit(4.5, "feet")
  40977. },
  40978. {
  40979. name: "Normal",
  40980. height: math.unit(9, "feet"),
  40981. default: true
  40982. },
  40983. ]
  40984. ))
  40985. characterMakers.push(() => makeCharacter(
  40986. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40987. {
  40988. front: {
  40989. height: math.unit(1.74, "meters"),
  40990. weight: math.unit(55, "kg"),
  40991. name: "Front",
  40992. image: {
  40993. source: "./media/characters/rubus/front.svg",
  40994. extra: 1894/1742,
  40995. bottom: 44/1938
  40996. }
  40997. },
  40998. },
  40999. [
  41000. {
  41001. name: "Normal",
  41002. height: math.unit(1.74, "meters"),
  41003. default: true
  41004. },
  41005. ]
  41006. ))
  41007. characterMakers.push(() => makeCharacter(
  41008. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  41009. {
  41010. front: {
  41011. height: math.unit(5 + 2/12, "feet"),
  41012. weight: math.unit(112, "lb"),
  41013. name: "Front",
  41014. image: {
  41015. source: "./media/characters/cassie-kingston/front.svg",
  41016. extra: 1438/1390,
  41017. bottom: 47/1485
  41018. }
  41019. },
  41020. },
  41021. [
  41022. {
  41023. name: "Normal",
  41024. height: math.unit(5 + 2/12, "feet"),
  41025. default: true
  41026. },
  41027. {
  41028. name: "Macro",
  41029. height: math.unit(128, "feet")
  41030. },
  41031. {
  41032. name: "Megamacro",
  41033. height: math.unit(2.56, "miles")
  41034. },
  41035. ]
  41036. ))
  41037. characterMakers.push(() => makeCharacter(
  41038. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  41039. {
  41040. front: {
  41041. height: math.unit(7, "feet"),
  41042. name: "Front",
  41043. image: {
  41044. source: "./media/characters/fox/front.svg",
  41045. extra: 1798/1703,
  41046. bottom: 55/1853
  41047. }
  41048. },
  41049. back: {
  41050. height: math.unit(7, "feet"),
  41051. name: "Back",
  41052. image: {
  41053. source: "./media/characters/fox/back.svg",
  41054. extra: 1748/1649,
  41055. bottom: 32/1780
  41056. }
  41057. },
  41058. head: {
  41059. height: math.unit(1.95, "feet"),
  41060. name: "Head",
  41061. image: {
  41062. source: "./media/characters/fox/head.svg"
  41063. }
  41064. },
  41065. dick: {
  41066. height: math.unit(1.33, "feet"),
  41067. name: "Dick",
  41068. image: {
  41069. source: "./media/characters/fox/dick.svg"
  41070. }
  41071. },
  41072. foot: {
  41073. height: math.unit(1, "feet"),
  41074. name: "Foot",
  41075. image: {
  41076. source: "./media/characters/fox/foot.svg"
  41077. }
  41078. },
  41079. paw: {
  41080. height: math.unit(0.92, "feet"),
  41081. name: "Paw",
  41082. image: {
  41083. source: "./media/characters/fox/paw.svg"
  41084. }
  41085. },
  41086. },
  41087. [
  41088. {
  41089. name: "Small",
  41090. height: math.unit(3, "inches")
  41091. },
  41092. {
  41093. name: "\"Realistic\"",
  41094. height: math.unit(7, "feet")
  41095. },
  41096. {
  41097. name: "Normal",
  41098. height: math.unit(150, "feet"),
  41099. default: true
  41100. },
  41101. {
  41102. name: "BIG",
  41103. height: math.unit(1200, "feet")
  41104. },
  41105. {
  41106. name: "👀",
  41107. height: math.unit(5, "miles")
  41108. },
  41109. {
  41110. name: "👀👀👀",
  41111. height: math.unit(64, "miles")
  41112. },
  41113. ]
  41114. ))
  41115. characterMakers.push(() => makeCharacter(
  41116. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  41117. {
  41118. front: {
  41119. height: math.unit(625, "feet"),
  41120. name: "Front",
  41121. image: {
  41122. source: "./media/characters/asonja-rossa/front.svg",
  41123. extra: 1833/1686,
  41124. bottom: 24/1857
  41125. }
  41126. },
  41127. back: {
  41128. height: math.unit(625, "feet"),
  41129. name: "Back",
  41130. image: {
  41131. source: "./media/characters/asonja-rossa/back.svg",
  41132. extra: 1852/1753,
  41133. bottom: 26/1878
  41134. }
  41135. },
  41136. },
  41137. [
  41138. {
  41139. name: "Macro",
  41140. height: math.unit(625, "feet"),
  41141. default: true
  41142. },
  41143. ]
  41144. ))
  41145. characterMakers.push(() => makeCharacter(
  41146. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  41147. {
  41148. side: {
  41149. height: math.unit(8, "feet"),
  41150. name: "Side",
  41151. image: {
  41152. source: "./media/characters/rezukii/side.svg",
  41153. extra: 979/542,
  41154. bottom: 87/1066
  41155. }
  41156. },
  41157. sitting: {
  41158. height: math.unit(14.6, "feet"),
  41159. name: "Sitting",
  41160. image: {
  41161. source: "./media/characters/rezukii/sitting.svg",
  41162. extra: 1023/813,
  41163. bottom: 45/1068
  41164. }
  41165. },
  41166. },
  41167. [
  41168. {
  41169. name: "Tiny",
  41170. height: math.unit(2, "feet")
  41171. },
  41172. {
  41173. name: "Smol",
  41174. height: math.unit(4, "feet")
  41175. },
  41176. {
  41177. name: "Normal",
  41178. height: math.unit(8, "feet"),
  41179. default: true
  41180. },
  41181. {
  41182. name: "Big",
  41183. height: math.unit(12, "feet")
  41184. },
  41185. {
  41186. name: "Macro",
  41187. height: math.unit(30, "feet")
  41188. },
  41189. ]
  41190. ))
  41191. characterMakers.push(() => makeCharacter(
  41192. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  41193. {
  41194. front: {
  41195. height: math.unit(14, "feet"),
  41196. weight: math.unit(9.5, "tonnes"),
  41197. name: "Front",
  41198. image: {
  41199. source: "./media/characters/dawnheart/front.svg",
  41200. extra: 2792/2675,
  41201. bottom: 64/2856
  41202. }
  41203. },
  41204. },
  41205. [
  41206. {
  41207. name: "Normal",
  41208. height: math.unit(14, "feet"),
  41209. default: true
  41210. },
  41211. ]
  41212. ))
  41213. characterMakers.push(() => makeCharacter(
  41214. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  41215. {
  41216. front: {
  41217. height: math.unit(1.7, "m"),
  41218. name: "Front",
  41219. image: {
  41220. source: "./media/characters/gladi/front.svg",
  41221. extra: 1460/1362,
  41222. bottom: 19/1479
  41223. }
  41224. },
  41225. back: {
  41226. height: math.unit(1.7, "m"),
  41227. name: "Back",
  41228. image: {
  41229. source: "./media/characters/gladi/back.svg",
  41230. extra: 1459/1357,
  41231. bottom: 12/1471
  41232. }
  41233. },
  41234. feral: {
  41235. height: math.unit(2.05, "m"),
  41236. name: "Feral",
  41237. image: {
  41238. source: "./media/characters/gladi/feral.svg",
  41239. extra: 821/557,
  41240. bottom: 91/912
  41241. }
  41242. },
  41243. },
  41244. [
  41245. {
  41246. name: "Shortest",
  41247. height: math.unit(70, "cm")
  41248. },
  41249. {
  41250. name: "Normal",
  41251. height: math.unit(1.7, "m")
  41252. },
  41253. {
  41254. name: "Macro",
  41255. height: math.unit(10, "m"),
  41256. default: true
  41257. },
  41258. {
  41259. name: "Tallest",
  41260. height: math.unit(200, "m")
  41261. },
  41262. ]
  41263. ))
  41264. characterMakers.push(() => makeCharacter(
  41265. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  41266. {
  41267. front: {
  41268. height: math.unit(5 + 7/12, "feet"),
  41269. weight: math.unit(2, "tons"),
  41270. name: "Front",
  41271. image: {
  41272. source: "./media/characters/erdno/front.svg",
  41273. extra: 1234/1129,
  41274. bottom: 35/1269
  41275. }
  41276. },
  41277. angled: {
  41278. height: math.unit(5 + 7/12, "feet"),
  41279. weight: math.unit(2, "tons"),
  41280. name: "Angled",
  41281. image: {
  41282. source: "./media/characters/erdno/angled.svg",
  41283. extra: 1185/1139,
  41284. bottom: 36/1221
  41285. }
  41286. },
  41287. side: {
  41288. height: math.unit(5 + 7/12, "feet"),
  41289. weight: math.unit(2, "tons"),
  41290. name: "Side",
  41291. image: {
  41292. source: "./media/characters/erdno/side.svg",
  41293. extra: 1191/1144,
  41294. bottom: 40/1231
  41295. }
  41296. },
  41297. back: {
  41298. height: math.unit(5 + 7/12, "feet"),
  41299. weight: math.unit(2, "tons"),
  41300. name: "Back",
  41301. image: {
  41302. source: "./media/characters/erdno/back.svg",
  41303. extra: 1202/1146,
  41304. bottom: 17/1219
  41305. }
  41306. },
  41307. frontNsfw: {
  41308. height: math.unit(5 + 7/12, "feet"),
  41309. weight: math.unit(2, "tons"),
  41310. name: "Front (NSFW)",
  41311. image: {
  41312. source: "./media/characters/erdno/front-nsfw.svg",
  41313. extra: 1234/1129,
  41314. bottom: 35/1269
  41315. }
  41316. },
  41317. angledNsfw: {
  41318. height: math.unit(5 + 7/12, "feet"),
  41319. weight: math.unit(2, "tons"),
  41320. name: "Angled (NSFW)",
  41321. image: {
  41322. source: "./media/characters/erdno/angled-nsfw.svg",
  41323. extra: 1185/1139,
  41324. bottom: 36/1221
  41325. }
  41326. },
  41327. sideNsfw: {
  41328. height: math.unit(5 + 7/12, "feet"),
  41329. weight: math.unit(2, "tons"),
  41330. name: "Side (NSFW)",
  41331. image: {
  41332. source: "./media/characters/erdno/side-nsfw.svg",
  41333. extra: 1191/1144,
  41334. bottom: 40/1231
  41335. }
  41336. },
  41337. backNsfw: {
  41338. height: math.unit(5 + 7/12, "feet"),
  41339. weight: math.unit(2, "tons"),
  41340. name: "Back (NSFW)",
  41341. image: {
  41342. source: "./media/characters/erdno/back-nsfw.svg",
  41343. extra: 1202/1146,
  41344. bottom: 17/1219
  41345. }
  41346. },
  41347. frontHyper: {
  41348. height: math.unit(5 + 7/12, "feet"),
  41349. weight: math.unit(2, "tons"),
  41350. name: "Front (Hyper)",
  41351. image: {
  41352. source: "./media/characters/erdno/front-hyper.svg",
  41353. extra: 1298/1136,
  41354. bottom: 35/1333
  41355. }
  41356. },
  41357. },
  41358. [
  41359. {
  41360. name: "Normal",
  41361. height: math.unit(5 + 7/12, "feet"),
  41362. default: true
  41363. },
  41364. {
  41365. name: "Big",
  41366. height: math.unit(5.7, "meters")
  41367. },
  41368. {
  41369. name: "Macro",
  41370. height: math.unit(5.7, "kilometers")
  41371. },
  41372. {
  41373. name: "Megamacro",
  41374. height: math.unit(5.7, "earths")
  41375. },
  41376. ]
  41377. ))
  41378. characterMakers.push(() => makeCharacter(
  41379. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  41380. {
  41381. front: {
  41382. height: math.unit(5 + 10/12, "feet"),
  41383. weight: math.unit(150, "lb"),
  41384. name: "Front",
  41385. image: {
  41386. source: "./media/characters/jamie/front.svg",
  41387. extra: 1908/1768,
  41388. bottom: 19/1927
  41389. }
  41390. },
  41391. },
  41392. [
  41393. {
  41394. name: "Minimum",
  41395. height: math.unit(2, "cm")
  41396. },
  41397. {
  41398. name: "Micro",
  41399. height: math.unit(3, "inches")
  41400. },
  41401. {
  41402. name: "Normal",
  41403. height: math.unit(5 + 10/12, "feet"),
  41404. default: true
  41405. },
  41406. {
  41407. name: "Macro",
  41408. height: math.unit(150, "feet")
  41409. },
  41410. {
  41411. name: "Megamacro",
  41412. height: math.unit(10000, "m")
  41413. },
  41414. ]
  41415. ))
  41416. characterMakers.push(() => makeCharacter(
  41417. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  41418. {
  41419. front: {
  41420. height: math.unit(2, "meters"),
  41421. weight: math.unit(100, "kg"),
  41422. name: "Front",
  41423. image: {
  41424. source: "./media/characters/shiron/front.svg",
  41425. extra: 2103/1985,
  41426. bottom: 98/2201
  41427. }
  41428. },
  41429. back: {
  41430. height: math.unit(2, "meters"),
  41431. weight: math.unit(100, "kg"),
  41432. name: "Back",
  41433. image: {
  41434. source: "./media/characters/shiron/back.svg",
  41435. extra: 2110/2015,
  41436. bottom: 89/2199
  41437. }
  41438. },
  41439. hand: {
  41440. height: math.unit(0.96, "feet"),
  41441. name: "Hand",
  41442. image: {
  41443. source: "./media/characters/shiron/hand.svg"
  41444. }
  41445. },
  41446. foot: {
  41447. height: math.unit(1.464, "feet"),
  41448. name: "Foot",
  41449. image: {
  41450. source: "./media/characters/shiron/foot.svg"
  41451. }
  41452. },
  41453. },
  41454. [
  41455. {
  41456. name: "Normal",
  41457. height: math.unit(2, "meters")
  41458. },
  41459. {
  41460. name: "Macro",
  41461. height: math.unit(500, "meters"),
  41462. default: true
  41463. },
  41464. {
  41465. name: "Megamacro",
  41466. height: math.unit(20, "km")
  41467. },
  41468. ]
  41469. ))
  41470. characterMakers.push(() => makeCharacter(
  41471. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41472. {
  41473. front: {
  41474. height: math.unit(6, "feet"),
  41475. name: "Front",
  41476. image: {
  41477. source: "./media/characters/sam/front.svg",
  41478. extra: 849/826,
  41479. bottom: 19/868
  41480. }
  41481. },
  41482. },
  41483. [
  41484. {
  41485. name: "Normal",
  41486. height: math.unit(6, "feet"),
  41487. default: true
  41488. },
  41489. ]
  41490. ))
  41491. characterMakers.push(() => makeCharacter(
  41492. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41493. {
  41494. front: {
  41495. height: math.unit(8 + 4/12, "feet"),
  41496. weight: math.unit(122, "kg"),
  41497. name: "Front",
  41498. image: {
  41499. source: "./media/characters/namori-kurogawa/front.svg",
  41500. extra: 1894/1576,
  41501. bottom: 34/1928
  41502. }
  41503. },
  41504. },
  41505. [
  41506. {
  41507. name: "Normal",
  41508. height: math.unit(8 + 4/12, "feet"),
  41509. default: true
  41510. },
  41511. ]
  41512. ))
  41513. characterMakers.push(() => makeCharacter(
  41514. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41515. {
  41516. front: {
  41517. height: math.unit(9, "feet"),
  41518. weight: math.unit(621, "lb"),
  41519. name: "Front",
  41520. image: {
  41521. source: "./media/characters/unmru/front.svg",
  41522. extra: 1853/1747,
  41523. bottom: 73/1926
  41524. }
  41525. },
  41526. side: {
  41527. height: math.unit(9, "feet"),
  41528. weight: math.unit(621, "lb"),
  41529. name: "Side",
  41530. image: {
  41531. source: "./media/characters/unmru/side.svg",
  41532. extra: 1781/1671,
  41533. bottom: 127/1908
  41534. }
  41535. },
  41536. back: {
  41537. height: math.unit(9, "feet"),
  41538. weight: math.unit(621, "lb"),
  41539. name: "Back",
  41540. image: {
  41541. source: "./media/characters/unmru/back.svg",
  41542. extra: 1894/1765,
  41543. bottom: 75/1969
  41544. }
  41545. },
  41546. dick: {
  41547. height: math.unit(3, "feet"),
  41548. weight: math.unit(35, "lb"),
  41549. name: "Dick",
  41550. image: {
  41551. source: "./media/characters/unmru/dick.svg"
  41552. }
  41553. },
  41554. },
  41555. [
  41556. {
  41557. name: "Normal",
  41558. height: math.unit(9, "feet")
  41559. },
  41560. {
  41561. name: "Natural",
  41562. height: math.unit(27, "feet"),
  41563. default: true
  41564. },
  41565. {
  41566. name: "Giant",
  41567. height: math.unit(90, "feet")
  41568. },
  41569. {
  41570. name: "Kaiju",
  41571. height: math.unit(270, "feet")
  41572. },
  41573. {
  41574. name: "Macro",
  41575. height: math.unit(900, "feet")
  41576. },
  41577. {
  41578. name: "Macro+",
  41579. height: math.unit(2700, "feet")
  41580. },
  41581. {
  41582. name: "Megamacro",
  41583. height: math.unit(9000, "feet")
  41584. },
  41585. {
  41586. name: "City-Crushing",
  41587. height: math.unit(27000, "feet")
  41588. },
  41589. {
  41590. name: "Mountain-Mashing",
  41591. height: math.unit(90000, "feet")
  41592. },
  41593. {
  41594. name: "Earth-Eclipsing",
  41595. height: math.unit(2.7e8, "feet")
  41596. },
  41597. {
  41598. name: "Sol-Swallowing",
  41599. height: math.unit(9e10, "feet")
  41600. },
  41601. {
  41602. name: "Majoris-Munching",
  41603. height: math.unit(2.7e13, "feet")
  41604. },
  41605. ]
  41606. ))
  41607. characterMakers.push(() => makeCharacter(
  41608. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41609. {
  41610. front: {
  41611. height: math.unit(1, "inch"),
  41612. name: "Front",
  41613. image: {
  41614. source: "./media/characters/squeaks-mouse/front.svg",
  41615. extra: 352/308,
  41616. bottom: 25/377
  41617. }
  41618. },
  41619. },
  41620. [
  41621. {
  41622. name: "Micro",
  41623. height: math.unit(1, "inch"),
  41624. default: true
  41625. },
  41626. ]
  41627. ))
  41628. characterMakers.push(() => makeCharacter(
  41629. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41630. {
  41631. side: {
  41632. height: math.unit(35, "feet"),
  41633. name: "Side",
  41634. image: {
  41635. source: "./media/characters/sayko/side.svg",
  41636. extra: 1697/1021,
  41637. bottom: 82/1779
  41638. }
  41639. },
  41640. head: {
  41641. height: math.unit(16, "feet"),
  41642. name: "Head",
  41643. image: {
  41644. source: "./media/characters/sayko/head.svg"
  41645. }
  41646. },
  41647. forepaw: {
  41648. height: math.unit(7.85, "feet"),
  41649. name: "Forepaw",
  41650. image: {
  41651. source: "./media/characters/sayko/forepaw.svg"
  41652. }
  41653. },
  41654. hindpaw: {
  41655. height: math.unit(8.8, "feet"),
  41656. name: "Hindpaw",
  41657. image: {
  41658. source: "./media/characters/sayko/hindpaw.svg"
  41659. }
  41660. },
  41661. },
  41662. [
  41663. {
  41664. name: "Normal",
  41665. height: math.unit(35, "feet"),
  41666. default: true
  41667. },
  41668. {
  41669. name: "Colossus",
  41670. height: math.unit(100, "meters")
  41671. },
  41672. {
  41673. name: "\"Small\" Deity",
  41674. height: math.unit(1, "km")
  41675. },
  41676. {
  41677. name: "\"Large\" Deity",
  41678. height: math.unit(15, "km")
  41679. },
  41680. ]
  41681. ))
  41682. characterMakers.push(() => makeCharacter(
  41683. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41684. {
  41685. front: {
  41686. height: math.unit(6, "feet"),
  41687. weight: math.unit(250, "lb"),
  41688. name: "Front",
  41689. image: {
  41690. source: "./media/characters/mukiro/front.svg",
  41691. extra: 1368/1310,
  41692. bottom: 34/1402
  41693. }
  41694. },
  41695. },
  41696. [
  41697. {
  41698. name: "Normal",
  41699. height: math.unit(6, "feet"),
  41700. default: true
  41701. },
  41702. ]
  41703. ))
  41704. characterMakers.push(() => makeCharacter(
  41705. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41706. {
  41707. front: {
  41708. height: math.unit(12 + 4/12, "feet"),
  41709. name: "Front",
  41710. image: {
  41711. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41712. extra: 1346/1311,
  41713. bottom: 65/1411
  41714. }
  41715. },
  41716. },
  41717. [
  41718. {
  41719. name: "Base",
  41720. height: math.unit(12 + 4/12, "feet"),
  41721. default: true
  41722. },
  41723. {
  41724. name: "Macro",
  41725. height: math.unit(150, "feet")
  41726. },
  41727. {
  41728. name: "Mega",
  41729. height: math.unit(2, "miles")
  41730. },
  41731. {
  41732. name: "Demi God",
  41733. height: math.unit(4, "AU")
  41734. },
  41735. {
  41736. name: "God Size",
  41737. height: math.unit(1, "universe")
  41738. },
  41739. ]
  41740. ))
  41741. characterMakers.push(() => makeCharacter(
  41742. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41743. {
  41744. front: {
  41745. height: math.unit(3 + 3/12, "feet"),
  41746. weight: math.unit(88, "lb"),
  41747. name: "Front",
  41748. image: {
  41749. source: "./media/characters/trey/front.svg",
  41750. extra: 1815/1509,
  41751. bottom: 60/1875
  41752. }
  41753. },
  41754. },
  41755. [
  41756. {
  41757. name: "Normal",
  41758. height: math.unit(3 + 3/12, "feet"),
  41759. default: true
  41760. },
  41761. ]
  41762. ))
  41763. characterMakers.push(() => makeCharacter(
  41764. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41765. {
  41766. front: {
  41767. height: math.unit(4, "meters"),
  41768. name: "Front",
  41769. image: {
  41770. source: "./media/characters/adelonda/front.svg",
  41771. extra: 1077/982,
  41772. bottom: 39/1116
  41773. }
  41774. },
  41775. back: {
  41776. height: math.unit(4, "meters"),
  41777. name: "Back",
  41778. image: {
  41779. source: "./media/characters/adelonda/back.svg",
  41780. extra: 1105/1003,
  41781. bottom: 25/1130
  41782. }
  41783. },
  41784. feral: {
  41785. height: math.unit(40/1.5, "meters"),
  41786. name: "Feral",
  41787. image: {
  41788. source: "./media/characters/adelonda/feral.svg",
  41789. extra: 597/271,
  41790. bottom: 387/984
  41791. }
  41792. },
  41793. },
  41794. [
  41795. {
  41796. name: "Normal",
  41797. height: math.unit(4, "meters"),
  41798. default: true
  41799. },
  41800. ]
  41801. ))
  41802. characterMakers.push(() => makeCharacter(
  41803. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41804. {
  41805. front: {
  41806. height: math.unit(8 + 4/12, "feet"),
  41807. weight: math.unit(670, "lb"),
  41808. name: "Front",
  41809. image: {
  41810. source: "./media/characters/acadiel/front.svg",
  41811. extra: 1901/1595,
  41812. bottom: 142/2043
  41813. }
  41814. },
  41815. },
  41816. [
  41817. {
  41818. name: "Normal",
  41819. height: math.unit(8 + 4/12, "feet"),
  41820. default: true
  41821. },
  41822. {
  41823. name: "Macro",
  41824. height: math.unit(200, "feet")
  41825. },
  41826. ]
  41827. ))
  41828. characterMakers.push(() => makeCharacter(
  41829. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41830. {
  41831. front: {
  41832. height: math.unit(6 + 2/12, "feet"),
  41833. weight: math.unit(185, "lb"),
  41834. name: "Front",
  41835. image: {
  41836. source: "./media/characters/kayne-ein/front.svg",
  41837. extra: 1780/1560,
  41838. bottom: 81/1861
  41839. }
  41840. },
  41841. },
  41842. [
  41843. {
  41844. name: "Normal",
  41845. height: math.unit(6 + 2/12, "feet"),
  41846. default: true
  41847. },
  41848. {
  41849. name: "Transformation Stage",
  41850. height: math.unit(15, "feet")
  41851. },
  41852. {
  41853. name: "Macro",
  41854. height: math.unit(150, "feet")
  41855. },
  41856. {
  41857. name: "Earth's Shadow",
  41858. height: math.unit(6200, "miles")
  41859. },
  41860. {
  41861. name: "Universal Demon",
  41862. height: math.unit(28e9, "parsecs")
  41863. },
  41864. {
  41865. name: "Multiverse God",
  41866. height: math.unit(3, "multiverses")
  41867. },
  41868. ]
  41869. ))
  41870. characterMakers.push(() => makeCharacter(
  41871. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41872. {
  41873. front: {
  41874. height: math.unit(5 + 5/12, "feet"),
  41875. name: "Front",
  41876. image: {
  41877. source: "./media/characters/fawn/front.svg",
  41878. extra: 1873/1731,
  41879. bottom: 95/1968
  41880. }
  41881. },
  41882. back: {
  41883. height: math.unit(5 + 5/12, "feet"),
  41884. name: "Back",
  41885. image: {
  41886. source: "./media/characters/fawn/back.svg",
  41887. extra: 1813/1700,
  41888. bottom: 14/1827
  41889. }
  41890. },
  41891. hoof: {
  41892. height: math.unit(1.45, "feet"),
  41893. name: "Hoof",
  41894. image: {
  41895. source: "./media/characters/fawn/hoof.svg"
  41896. }
  41897. },
  41898. },
  41899. [
  41900. {
  41901. name: "Normal",
  41902. height: math.unit(5 + 5/12, "feet"),
  41903. default: true
  41904. },
  41905. ]
  41906. ))
  41907. characterMakers.push(() => makeCharacter(
  41908. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41909. {
  41910. front: {
  41911. height: math.unit(2 + 5/12, "feet"),
  41912. name: "Front",
  41913. image: {
  41914. source: "./media/characters/orion/front.svg",
  41915. extra: 1366/1304,
  41916. bottom: 43/1409
  41917. }
  41918. },
  41919. paw: {
  41920. height: math.unit(0.52, "feet"),
  41921. name: "Paw",
  41922. image: {
  41923. source: "./media/characters/orion/paw.svg"
  41924. }
  41925. },
  41926. },
  41927. [
  41928. {
  41929. name: "Normal",
  41930. height: math.unit(2 + 5/12, "feet"),
  41931. default: true
  41932. },
  41933. ]
  41934. ))
  41935. characterMakers.push(() => makeCharacter(
  41936. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41937. {
  41938. front: {
  41939. height: math.unit(5 + 10/12, "feet"),
  41940. name: "Front",
  41941. image: {
  41942. source: "./media/characters/vera/front.svg",
  41943. extra: 1680/1575,
  41944. bottom: 49/1729
  41945. }
  41946. },
  41947. back: {
  41948. height: math.unit(5 + 10/12, "feet"),
  41949. name: "Back",
  41950. image: {
  41951. source: "./media/characters/vera/back.svg",
  41952. extra: 1700/1588,
  41953. bottom: 18/1718
  41954. }
  41955. },
  41956. arcanine: {
  41957. height: math.unit(6 + 8/12, "feet"),
  41958. name: "Arcanine",
  41959. image: {
  41960. source: "./media/characters/vera/arcanine.svg",
  41961. extra: 1590/1511,
  41962. bottom: 71/1661
  41963. }
  41964. },
  41965. maw: {
  41966. height: math.unit(0.82, "feet"),
  41967. name: "Maw",
  41968. image: {
  41969. source: "./media/characters/vera/maw.svg"
  41970. }
  41971. },
  41972. mawArcanine: {
  41973. height: math.unit(0.97, "feet"),
  41974. name: "Maw (Arcanine)",
  41975. image: {
  41976. source: "./media/characters/vera/maw-arcanine.svg"
  41977. }
  41978. },
  41979. paw: {
  41980. height: math.unit(0.75, "feet"),
  41981. name: "Paw",
  41982. image: {
  41983. source: "./media/characters/vera/paw.svg"
  41984. }
  41985. },
  41986. pawprint: {
  41987. height: math.unit(0.52, "feet"),
  41988. name: "Pawprint",
  41989. image: {
  41990. source: "./media/characters/vera/pawprint.svg"
  41991. }
  41992. },
  41993. },
  41994. [
  41995. {
  41996. name: "Normal",
  41997. height: math.unit(5 + 10/12, "feet"),
  41998. default: true
  41999. },
  42000. {
  42001. name: "Macro",
  42002. height: math.unit(75, "feet")
  42003. },
  42004. ]
  42005. ))
  42006. characterMakers.push(() => makeCharacter(
  42007. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  42008. {
  42009. front: {
  42010. height: math.unit(4, "feet"),
  42011. weight: math.unit(40, "lb"),
  42012. name: "Front",
  42013. image: {
  42014. source: "./media/characters/orvan-rabbit/front.svg",
  42015. extra: 1896/1642,
  42016. bottom: 29/1925
  42017. }
  42018. },
  42019. },
  42020. [
  42021. {
  42022. name: "Normal",
  42023. height: math.unit(4, "feet"),
  42024. default: true
  42025. },
  42026. ]
  42027. ))
  42028. characterMakers.push(() => makeCharacter(
  42029. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  42030. {
  42031. front: {
  42032. height: math.unit(6, "feet"),
  42033. weight: math.unit(168, "lb"),
  42034. name: "Front",
  42035. image: {
  42036. source: "./media/characters/lisa/front.svg",
  42037. extra: 2065/1867,
  42038. bottom: 46/2111
  42039. }
  42040. },
  42041. back: {
  42042. height: math.unit(6, "feet"),
  42043. weight: math.unit(168, "lb"),
  42044. name: "Back",
  42045. image: {
  42046. source: "./media/characters/lisa/back.svg",
  42047. extra: 1982/1838,
  42048. bottom: 29/2011
  42049. }
  42050. },
  42051. maw: {
  42052. height: math.unit(0.81, "feet"),
  42053. name: "Maw",
  42054. image: {
  42055. source: "./media/characters/lisa/maw.svg"
  42056. }
  42057. },
  42058. paw: {
  42059. height: math.unit(0.9, "feet"),
  42060. name: "Paw",
  42061. image: {
  42062. source: "./media/characters/lisa/paw.svg"
  42063. }
  42064. },
  42065. caribousune: {
  42066. height: math.unit(7 + 2/12, "feet"),
  42067. weight: math.unit(268, "lb"),
  42068. name: "Caribousune",
  42069. image: {
  42070. source: "./media/characters/lisa/caribousune.svg",
  42071. extra: 1843/1633,
  42072. bottom: 29/1872
  42073. }
  42074. },
  42075. frontCaribousune: {
  42076. height: math.unit(7 + 2/12, "feet"),
  42077. weight: math.unit(268, "lb"),
  42078. name: "Front (Caribousune)",
  42079. image: {
  42080. source: "./media/characters/lisa/front-caribousune.svg",
  42081. extra: 1818/1638,
  42082. bottom: 52/1870
  42083. }
  42084. },
  42085. sideCaribousune: {
  42086. height: math.unit(7 + 2/12, "feet"),
  42087. weight: math.unit(268, "lb"),
  42088. name: "Side (Caribousune)",
  42089. image: {
  42090. source: "./media/characters/lisa/side-caribousune.svg",
  42091. extra: 1851/1635,
  42092. bottom: 16/1867
  42093. }
  42094. },
  42095. backCaribousune: {
  42096. height: math.unit(7 + 2/12, "feet"),
  42097. weight: math.unit(268, "lb"),
  42098. name: "Back (Caribousune)",
  42099. image: {
  42100. source: "./media/characters/lisa/back-caribousune.svg",
  42101. extra: 1801/1604,
  42102. bottom: 44/1845
  42103. }
  42104. },
  42105. caribou: {
  42106. height: math.unit(7 + 2/12, "feet"),
  42107. weight: math.unit(268, "lb"),
  42108. name: "Caribou",
  42109. image: {
  42110. source: "./media/characters/lisa/caribou.svg",
  42111. extra: 1843/1633,
  42112. bottom: 29/1872
  42113. }
  42114. },
  42115. frontCaribou: {
  42116. height: math.unit(7 + 2/12, "feet"),
  42117. weight: math.unit(268, "lb"),
  42118. name: "Front (Caribou)",
  42119. image: {
  42120. source: "./media/characters/lisa/front-caribou.svg",
  42121. extra: 1818/1638,
  42122. bottom: 52/1870
  42123. }
  42124. },
  42125. sideCaribou: {
  42126. height: math.unit(7 + 2/12, "feet"),
  42127. weight: math.unit(268, "lb"),
  42128. name: "Side (Caribou)",
  42129. image: {
  42130. source: "./media/characters/lisa/side-caribou.svg",
  42131. extra: 1851/1635,
  42132. bottom: 16/1867
  42133. }
  42134. },
  42135. backCaribou: {
  42136. height: math.unit(7 + 2/12, "feet"),
  42137. weight: math.unit(268, "lb"),
  42138. name: "Back (Caribou)",
  42139. image: {
  42140. source: "./media/characters/lisa/back-caribou.svg",
  42141. extra: 1801/1604,
  42142. bottom: 44/1845
  42143. }
  42144. },
  42145. mawCaribou: {
  42146. height: math.unit(1.45, "feet"),
  42147. name: "Maw (Caribou)",
  42148. image: {
  42149. source: "./media/characters/lisa/maw-caribou.svg"
  42150. }
  42151. },
  42152. mawCaribousune: {
  42153. height: math.unit(1.45, "feet"),
  42154. name: "Maw (Caribousune)",
  42155. image: {
  42156. source: "./media/characters/lisa/maw-caribousune.svg"
  42157. }
  42158. },
  42159. pawCaribousune: {
  42160. height: math.unit(1.61, "feet"),
  42161. name: "Paw (Caribou)",
  42162. image: {
  42163. source: "./media/characters/lisa/paw-caribousune.svg"
  42164. }
  42165. },
  42166. },
  42167. [
  42168. {
  42169. name: "Normal",
  42170. height: math.unit(6, "feet")
  42171. },
  42172. {
  42173. name: "God Size",
  42174. height: math.unit(72, "feet"),
  42175. default: true
  42176. },
  42177. {
  42178. name: "Towering",
  42179. height: math.unit(288, "feet")
  42180. },
  42181. {
  42182. name: "City Size",
  42183. height: math.unit(48384, "feet")
  42184. },
  42185. {
  42186. name: "Continental",
  42187. height: math.unit(4200, "miles")
  42188. },
  42189. {
  42190. name: "Planet Eater",
  42191. height: math.unit(42, "earths")
  42192. },
  42193. {
  42194. name: "Star Swallower",
  42195. height: math.unit(42, "solarradii")
  42196. },
  42197. {
  42198. name: "System Swallower",
  42199. height: math.unit(84000, "AU")
  42200. },
  42201. {
  42202. name: "Galaxy Gobbler",
  42203. height: math.unit(42, "galaxies")
  42204. },
  42205. {
  42206. name: "Universe Devourer",
  42207. height: math.unit(42, "universes")
  42208. },
  42209. {
  42210. name: "Multiverse Muncher",
  42211. height: math.unit(42, "multiverses")
  42212. },
  42213. ]
  42214. ))
  42215. characterMakers.push(() => makeCharacter(
  42216. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  42217. {
  42218. front: {
  42219. height: math.unit(36, "feet"),
  42220. name: "Front",
  42221. image: {
  42222. source: "./media/characters/shadow-rat/front.svg",
  42223. extra: 1845/1758,
  42224. bottom: 83/1928
  42225. }
  42226. },
  42227. },
  42228. [
  42229. {
  42230. name: "Macro",
  42231. height: math.unit(36, "feet"),
  42232. default: true
  42233. },
  42234. ]
  42235. ))
  42236. characterMakers.push(() => makeCharacter(
  42237. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  42238. {
  42239. side: {
  42240. height: math.unit(8, "feet"),
  42241. weight: math.unit(2630, "lb"),
  42242. name: "Side",
  42243. image: {
  42244. source: "./media/characters/torallia/side.svg",
  42245. extra: 2164/2021,
  42246. bottom: 371/2535
  42247. }
  42248. },
  42249. },
  42250. [
  42251. {
  42252. name: "Mortal Interaction",
  42253. height: math.unit(8, "feet")
  42254. },
  42255. {
  42256. name: "Natural",
  42257. height: math.unit(24, "feet"),
  42258. default: true
  42259. },
  42260. {
  42261. name: "Giant",
  42262. height: math.unit(80, "feet")
  42263. },
  42264. {
  42265. name: "Kaiju",
  42266. height: math.unit(240, "feet")
  42267. },
  42268. {
  42269. name: "Macro",
  42270. height: math.unit(800, "feet")
  42271. },
  42272. {
  42273. name: "Macro+",
  42274. height: math.unit(2400, "feet")
  42275. },
  42276. {
  42277. name: "Macro++",
  42278. height: math.unit(8000, "feet")
  42279. },
  42280. {
  42281. name: "City-Crushing",
  42282. height: math.unit(24000, "feet")
  42283. },
  42284. {
  42285. name: "Mountain-Mashing",
  42286. height: math.unit(80000, "feet")
  42287. },
  42288. {
  42289. name: "District Demolisher",
  42290. height: math.unit(240000, "feet")
  42291. },
  42292. {
  42293. name: "Tri-County Terror",
  42294. height: math.unit(800000, "feet")
  42295. },
  42296. {
  42297. name: "State Smasher",
  42298. height: math.unit(2.4e6, "feet")
  42299. },
  42300. {
  42301. name: "Nation Nemesis",
  42302. height: math.unit(8e6, "feet")
  42303. },
  42304. {
  42305. name: "Continent Cracker",
  42306. height: math.unit(2.4e7, "feet")
  42307. },
  42308. {
  42309. name: "Planet-Pillaging",
  42310. height: math.unit(8e7, "feet")
  42311. },
  42312. {
  42313. name: "Earth-Eclipsing",
  42314. height: math.unit(2.4e8, "feet")
  42315. },
  42316. {
  42317. name: "Jovian-Jostling",
  42318. height: math.unit(8e8, "feet")
  42319. },
  42320. {
  42321. name: "Gas Giant Gulper",
  42322. height: math.unit(2.4e9, "feet")
  42323. },
  42324. {
  42325. name: "Astral Annihilator",
  42326. height: math.unit(8e9, "feet")
  42327. },
  42328. {
  42329. name: "Celestial Conqueror",
  42330. height: math.unit(2.4e10, "feet")
  42331. },
  42332. {
  42333. name: "Sol-Swallowing",
  42334. height: math.unit(8e10, "feet")
  42335. },
  42336. {
  42337. name: "Hunter of the Heavens",
  42338. height: math.unit(2.4e13, "feet")
  42339. },
  42340. ]
  42341. ))
  42342. characterMakers.push(() => makeCharacter(
  42343. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  42344. {
  42345. front: {
  42346. height: math.unit(10, "feet"),
  42347. weight: math.unit(844, "kilograms"),
  42348. name: "Front",
  42349. image: {
  42350. source: "./media/characters/rebecca-pawlson/front.svg",
  42351. extra: 1196/1099,
  42352. bottom: 81/1277
  42353. },
  42354. extraAttributes: {
  42355. "pawSize": {
  42356. name: "Paw Size",
  42357. power: 2,
  42358. type: "area",
  42359. base: math.unit(0.2 * 0.375, "meters^2")
  42360. },
  42361. "handSize": {
  42362. name: "Hand Size",
  42363. power: 2,
  42364. type: "area",
  42365. base: math.unit(0.2 * 0.35, "meters^2")
  42366. },
  42367. "breastDiameter": {
  42368. name: "Breast Diameter",
  42369. power: 1,
  42370. type: "length",
  42371. base: math.unit(0.5, "meters")
  42372. },
  42373. "breastVolume": {
  42374. name: "Breast Volume",
  42375. power: 3,
  42376. type: "volume",
  42377. base: math.unit(0.065, "m^3")
  42378. },
  42379. "breastMass": {
  42380. name: "Breast Mass",
  42381. power: 3,
  42382. type: "mass",
  42383. base: math.unit(65, "kg")
  42384. },
  42385. "nippleDiameter": {
  42386. name: "Nipple Diameter",
  42387. power: 1,
  42388. type: "length",
  42389. base: math.unit(0.1, "meters")
  42390. },
  42391. }
  42392. },
  42393. back: {
  42394. height: math.unit(10, "feet"),
  42395. weight: math.unit(844, "kilograms"),
  42396. name: "Back",
  42397. image: {
  42398. source: "./media/characters/rebecca-pawlson/back.svg",
  42399. extra: 879/776,
  42400. bottom: 43/922
  42401. },
  42402. extraAttributes: {
  42403. "pawSize": {
  42404. name: "Paw Size",
  42405. power: 2,
  42406. type: "area",
  42407. base: math.unit(0.2 * 0.375, "meters^2")
  42408. },
  42409. "handSize": {
  42410. name: "Hand Size",
  42411. power: 2,
  42412. type: "area",
  42413. base: math.unit(0.2 * 0.35, "meters^2")
  42414. },
  42415. "breastDiameter": {
  42416. name: "Breast Diameter",
  42417. power: 1,
  42418. type: "length",
  42419. base: math.unit(0.5, "meters")
  42420. },
  42421. "breastVolume": {
  42422. name: "Breast Volume",
  42423. power: 3,
  42424. type: "volume",
  42425. base: math.unit(0.065, "m^3")
  42426. },
  42427. "breastMass": {
  42428. name: "Breast Mass",
  42429. power: 3,
  42430. type: "mass",
  42431. base: math.unit(65, "kg")
  42432. },
  42433. "nippleDiameter": {
  42434. name: "Nipple Diameter",
  42435. power: 1,
  42436. type: "length",
  42437. base: math.unit(0.1, "meters")
  42438. },
  42439. }
  42440. },
  42441. },
  42442. [
  42443. {
  42444. name: "Normal",
  42445. height: math.unit(6 + 8/12, "feet")
  42446. },
  42447. {
  42448. name: "Mini Macro",
  42449. height: math.unit(10, "feet"),
  42450. default: true
  42451. },
  42452. {
  42453. name: "Macro",
  42454. height: math.unit(100, "feet")
  42455. },
  42456. {
  42457. name: "Mega Macro",
  42458. height: math.unit(2500, "feet")
  42459. },
  42460. {
  42461. name: "Giga Macro",
  42462. height: math.unit(50, "miles")
  42463. },
  42464. ]
  42465. ))
  42466. characterMakers.push(() => makeCharacter(
  42467. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42468. {
  42469. front: {
  42470. height: math.unit(7 + 6/12, "feet"),
  42471. weight: math.unit(600, "lb"),
  42472. name: "Front",
  42473. image: {
  42474. source: "./media/characters/moxie-nova/front.svg",
  42475. extra: 1734/1652,
  42476. bottom: 41/1775
  42477. }
  42478. },
  42479. },
  42480. [
  42481. {
  42482. name: "Normal",
  42483. height: math.unit(7 + 6/12, "feet"),
  42484. default: true
  42485. },
  42486. ]
  42487. ))
  42488. characterMakers.push(() => makeCharacter(
  42489. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42490. {
  42491. goat: {
  42492. height: math.unit(4, "feet"),
  42493. weight: math.unit(180, "lb"),
  42494. name: "Goat",
  42495. image: {
  42496. source: "./media/characters/tiffany/goat.svg",
  42497. extra: 1845/1595,
  42498. bottom: 106/1951
  42499. }
  42500. },
  42501. front: {
  42502. height: math.unit(5, "feet"),
  42503. weight: math.unit(150, "lb"),
  42504. name: "Foxcoon",
  42505. image: {
  42506. source: "./media/characters/tiffany/foxcoon.svg",
  42507. extra: 1941/1845,
  42508. bottom: 58/1999
  42509. }
  42510. },
  42511. },
  42512. [
  42513. {
  42514. name: "Normal",
  42515. height: math.unit(5, "feet"),
  42516. default: true
  42517. },
  42518. ]
  42519. ))
  42520. characterMakers.push(() => makeCharacter(
  42521. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42522. {
  42523. front: {
  42524. height: math.unit(8, "feet"),
  42525. weight: math.unit(300, "lb"),
  42526. name: "Front",
  42527. image: {
  42528. source: "./media/characters/raxinath/front.svg",
  42529. extra: 1407/1309,
  42530. bottom: 39/1446
  42531. }
  42532. },
  42533. back: {
  42534. height: math.unit(8, "feet"),
  42535. weight: math.unit(300, "lb"),
  42536. name: "Back",
  42537. image: {
  42538. source: "./media/characters/raxinath/back.svg",
  42539. extra: 1405/1315,
  42540. bottom: 9/1414
  42541. }
  42542. },
  42543. },
  42544. [
  42545. {
  42546. name: "Speck",
  42547. height: math.unit(0.5, "nm")
  42548. },
  42549. {
  42550. name: "Micro",
  42551. height: math.unit(3, "inches")
  42552. },
  42553. {
  42554. name: "Kobold",
  42555. height: math.unit(3, "feet")
  42556. },
  42557. {
  42558. name: "Normal",
  42559. height: math.unit(8, "feet"),
  42560. default: true
  42561. },
  42562. {
  42563. name: "Giant",
  42564. height: math.unit(50, "feet")
  42565. },
  42566. {
  42567. name: "Macro",
  42568. height: math.unit(1000, "feet")
  42569. },
  42570. {
  42571. name: "Megamacro",
  42572. height: math.unit(1, "mile")
  42573. },
  42574. ]
  42575. ))
  42576. characterMakers.push(() => makeCharacter(
  42577. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42578. {
  42579. front: {
  42580. height: math.unit(10, "feet"),
  42581. weight: math.unit(1442, "lb"),
  42582. name: "Front",
  42583. image: {
  42584. source: "./media/characters/mal-dragon/front.svg",
  42585. extra: 1515/1444,
  42586. bottom: 113/1628
  42587. }
  42588. },
  42589. back: {
  42590. height: math.unit(10, "feet"),
  42591. weight: math.unit(1442, "lb"),
  42592. name: "Back",
  42593. image: {
  42594. source: "./media/characters/mal-dragon/back.svg",
  42595. extra: 1527/1434,
  42596. bottom: 25/1552
  42597. }
  42598. },
  42599. },
  42600. [
  42601. {
  42602. name: "Mortal Interaction",
  42603. height: math.unit(10, "feet"),
  42604. default: true
  42605. },
  42606. {
  42607. name: "Large",
  42608. height: math.unit(30, "feet")
  42609. },
  42610. {
  42611. name: "Kaiju",
  42612. height: math.unit(300, "feet")
  42613. },
  42614. {
  42615. name: "Megamacro",
  42616. height: math.unit(10000, "feet")
  42617. },
  42618. {
  42619. name: "Continent Cracker",
  42620. height: math.unit(30000000, "feet")
  42621. },
  42622. {
  42623. name: "Sol-Swallowing",
  42624. height: math.unit(1e11, "feet")
  42625. },
  42626. {
  42627. name: "Light Universal",
  42628. height: math.unit(5, "universes")
  42629. },
  42630. {
  42631. name: "Universe Atoms",
  42632. height: math.unit(1.829e9, "universes")
  42633. },
  42634. {
  42635. name: "Light Multiversal",
  42636. height: math.unit(5, "multiverses")
  42637. },
  42638. {
  42639. name: "Multiverse Atoms",
  42640. height: math.unit(1.829e9, "multiverses")
  42641. },
  42642. {
  42643. name: "Fabric of Time",
  42644. height: math.unit(1e262, "multiverses")
  42645. },
  42646. ]
  42647. ))
  42648. characterMakers.push(() => makeCharacter(
  42649. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42650. {
  42651. front: {
  42652. height: math.unit(9, "feet"),
  42653. weight: math.unit(1050, "lb"),
  42654. name: "Front",
  42655. image: {
  42656. source: "./media/characters/tabitha/front.svg",
  42657. extra: 2083/1994,
  42658. bottom: 68/2151
  42659. }
  42660. },
  42661. },
  42662. [
  42663. {
  42664. name: "Baseline",
  42665. height: math.unit(9, "feet"),
  42666. default: true
  42667. },
  42668. {
  42669. name: "Giant",
  42670. height: math.unit(90, "feet")
  42671. },
  42672. {
  42673. name: "Macro",
  42674. height: math.unit(900, "feet")
  42675. },
  42676. {
  42677. name: "Megamacro",
  42678. height: math.unit(9000, "feet")
  42679. },
  42680. {
  42681. name: "City-Crushing",
  42682. height: math.unit(27000, "feet")
  42683. },
  42684. {
  42685. name: "Mountain-Mashing",
  42686. height: math.unit(90000, "feet")
  42687. },
  42688. {
  42689. name: "Nation Nemesis",
  42690. height: math.unit(9e6, "feet")
  42691. },
  42692. {
  42693. name: "Continent Cracker",
  42694. height: math.unit(27e6, "feet")
  42695. },
  42696. {
  42697. name: "Earth-Eclipsing",
  42698. height: math.unit(2.7e8, "feet")
  42699. },
  42700. {
  42701. name: "Gas Giant Gulper",
  42702. height: math.unit(2.7e9, "feet")
  42703. },
  42704. {
  42705. name: "Sol-Swallowing",
  42706. height: math.unit(9e10, "feet")
  42707. },
  42708. {
  42709. name: "Galaxy Gulper",
  42710. height: math.unit(9, "galaxies")
  42711. },
  42712. {
  42713. name: "Cosmos Churner",
  42714. height: math.unit(9, "universes")
  42715. },
  42716. ]
  42717. ))
  42718. characterMakers.push(() => makeCharacter(
  42719. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42720. {
  42721. front: {
  42722. height: math.unit(160, "cm"),
  42723. weight: math.unit(55, "kg"),
  42724. name: "Front",
  42725. image: {
  42726. source: "./media/characters/tow/front.svg",
  42727. extra: 1751/1722,
  42728. bottom: 74/1825
  42729. }
  42730. },
  42731. },
  42732. [
  42733. {
  42734. name: "Norm",
  42735. height: math.unit(160, "cm")
  42736. },
  42737. {
  42738. name: "Casual",
  42739. height: math.unit(3200, "m"),
  42740. default: true
  42741. },
  42742. {
  42743. name: "Show-Off",
  42744. height: math.unit(160, "km")
  42745. },
  42746. ]
  42747. ))
  42748. characterMakers.push(() => makeCharacter(
  42749. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42750. {
  42751. front: {
  42752. height: math.unit(7 + 11/12, "feet"),
  42753. weight: math.unit(342.8, "lb"),
  42754. name: "Front",
  42755. image: {
  42756. source: "./media/characters/vivian-orca-dragon/front.svg",
  42757. extra: 1890/1865,
  42758. bottom: 28/1918
  42759. }
  42760. },
  42761. },
  42762. [
  42763. {
  42764. name: "Micro",
  42765. height: math.unit(5, "inches")
  42766. },
  42767. {
  42768. name: "Normal",
  42769. height: math.unit(7 + 11/12, "feet"),
  42770. default: true
  42771. },
  42772. {
  42773. name: "Macro",
  42774. height: math.unit(395 + 7/12, "feet")
  42775. },
  42776. ]
  42777. ))
  42778. characterMakers.push(() => makeCharacter(
  42779. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42780. {
  42781. side: {
  42782. height: math.unit(10, "feet"),
  42783. weight: math.unit(1442, "lb"),
  42784. name: "Side",
  42785. image: {
  42786. source: "./media/characters/lotherakon/side.svg",
  42787. extra: 1604/1497,
  42788. bottom: 89/1693
  42789. }
  42790. },
  42791. },
  42792. [
  42793. {
  42794. name: "Mortal Interaction",
  42795. height: math.unit(10, "feet")
  42796. },
  42797. {
  42798. name: "Large",
  42799. height: math.unit(30, "feet"),
  42800. default: true
  42801. },
  42802. {
  42803. name: "Giant",
  42804. height: math.unit(100, "feet")
  42805. },
  42806. {
  42807. name: "Kaiju",
  42808. height: math.unit(300, "feet")
  42809. },
  42810. {
  42811. name: "Macro",
  42812. height: math.unit(1000, "feet")
  42813. },
  42814. {
  42815. name: "Macro+",
  42816. height: math.unit(3000, "feet")
  42817. },
  42818. {
  42819. name: "Megamacro",
  42820. height: math.unit(10000, "feet")
  42821. },
  42822. {
  42823. name: "City-Crushing",
  42824. height: math.unit(30000, "feet")
  42825. },
  42826. {
  42827. name: "Continent Cracker",
  42828. height: math.unit(30e6, "feet")
  42829. },
  42830. {
  42831. name: "Earth Eclipsing",
  42832. height: math.unit(3e8, "feet")
  42833. },
  42834. {
  42835. name: "Gas Giant Gulper",
  42836. height: math.unit(3e9, "feet")
  42837. },
  42838. {
  42839. name: "Sol-Swallowing",
  42840. height: math.unit(1e11, "feet")
  42841. },
  42842. {
  42843. name: "System Swallower",
  42844. height: math.unit(3e14, "feet")
  42845. },
  42846. {
  42847. name: "Galaxy Gulper",
  42848. height: math.unit(10, "galaxies")
  42849. },
  42850. {
  42851. name: "Light Universal",
  42852. height: math.unit(5, "universes")
  42853. },
  42854. {
  42855. name: "Universe Palm",
  42856. height: math.unit(20, "universes")
  42857. },
  42858. {
  42859. name: "Light Multiversal",
  42860. height: math.unit(5, "multiverses")
  42861. },
  42862. {
  42863. name: "Multiverse Palm",
  42864. height: math.unit(20, "multiverses")
  42865. },
  42866. {
  42867. name: "Inferno Incarnate",
  42868. height: math.unit(1e7, "multiverses")
  42869. },
  42870. ]
  42871. ))
  42872. characterMakers.push(() => makeCharacter(
  42873. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42874. {
  42875. front: {
  42876. height: math.unit(8, "feet"),
  42877. weight: math.unit(1200, "lb"),
  42878. name: "Front",
  42879. image: {
  42880. source: "./media/characters/malithee/front.svg",
  42881. extra: 1675/1640,
  42882. bottom: 162/1837
  42883. }
  42884. },
  42885. },
  42886. [
  42887. {
  42888. name: "Mortal Interaction",
  42889. height: math.unit(8, "feet"),
  42890. default: true
  42891. },
  42892. {
  42893. name: "Large",
  42894. height: math.unit(24, "feet")
  42895. },
  42896. {
  42897. name: "Kaiju",
  42898. height: math.unit(240, "feet")
  42899. },
  42900. {
  42901. name: "Megamacro",
  42902. height: math.unit(8000, "feet")
  42903. },
  42904. {
  42905. name: "Continent Cracker",
  42906. height: math.unit(24e6, "feet")
  42907. },
  42908. {
  42909. name: "Earth-Eclipsing",
  42910. height: math.unit(2.4e8, "feet")
  42911. },
  42912. {
  42913. name: "Sol-Swallowing",
  42914. height: math.unit(8e10, "feet")
  42915. },
  42916. {
  42917. name: "Galaxy Gulper",
  42918. height: math.unit(8, "galaxies")
  42919. },
  42920. {
  42921. name: "Light Universal",
  42922. height: math.unit(4, "universes")
  42923. },
  42924. {
  42925. name: "Universe Atoms",
  42926. height: math.unit(1.829e9, "universes")
  42927. },
  42928. {
  42929. name: "Light Multiversal",
  42930. height: math.unit(4, "multiverses")
  42931. },
  42932. {
  42933. name: "Multiverse Atoms",
  42934. height: math.unit(1.829e9, "multiverses")
  42935. },
  42936. {
  42937. name: "Nigh-Omnipresence",
  42938. height: math.unit(8e261, "multiverses")
  42939. },
  42940. ]
  42941. ))
  42942. characterMakers.push(() => makeCharacter(
  42943. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42944. {
  42945. front: {
  42946. height: math.unit(10, "feet"),
  42947. weight: math.unit(1500, "lb"),
  42948. name: "Front",
  42949. image: {
  42950. source: "./media/characters/miles-thestia/front.svg",
  42951. extra: 1812/1727,
  42952. bottom: 86/1898
  42953. }
  42954. },
  42955. back: {
  42956. height: math.unit(10, "feet"),
  42957. weight: math.unit(1500, "lb"),
  42958. name: "Back",
  42959. image: {
  42960. source: "./media/characters/miles-thestia/back.svg",
  42961. extra: 1799/1690,
  42962. bottom: 47/1846
  42963. }
  42964. },
  42965. frontNsfw: {
  42966. height: math.unit(10, "feet"),
  42967. weight: math.unit(1500, "lb"),
  42968. name: "Front (NSFW)",
  42969. image: {
  42970. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42971. extra: 1812/1727,
  42972. bottom: 86/1898
  42973. }
  42974. },
  42975. },
  42976. [
  42977. {
  42978. name: "Mini-Macro",
  42979. height: math.unit(10, "feet"),
  42980. default: true
  42981. },
  42982. ]
  42983. ))
  42984. characterMakers.push(() => makeCharacter(
  42985. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42986. {
  42987. front: {
  42988. height: math.unit(25, "feet"),
  42989. name: "Front",
  42990. image: {
  42991. source: "./media/characters/titan-s-wulf/front.svg",
  42992. extra: 1560/1484,
  42993. bottom: 76/1636
  42994. }
  42995. },
  42996. },
  42997. [
  42998. {
  42999. name: "Smallest",
  43000. height: math.unit(25, "feet"),
  43001. default: true
  43002. },
  43003. {
  43004. name: "Normal",
  43005. height: math.unit(200, "feet")
  43006. },
  43007. {
  43008. name: "Macro",
  43009. height: math.unit(200000, "feet")
  43010. },
  43011. {
  43012. name: "Multiversal Original",
  43013. height: math.unit(10000, "multiverses")
  43014. },
  43015. ]
  43016. ))
  43017. characterMakers.push(() => makeCharacter(
  43018. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  43019. {
  43020. front: {
  43021. height: math.unit(8, "feet"),
  43022. weight: math.unit(553, "lb"),
  43023. name: "Front",
  43024. image: {
  43025. source: "./media/characters/tawendeh/front.svg",
  43026. extra: 2365/2268,
  43027. bottom: 83/2448
  43028. }
  43029. },
  43030. frontClothed: {
  43031. height: math.unit(8, "feet"),
  43032. weight: math.unit(553, "lb"),
  43033. name: "Front (Clothed)",
  43034. image: {
  43035. source: "./media/characters/tawendeh/front-clothed.svg",
  43036. extra: 2365/2268,
  43037. bottom: 83/2448
  43038. }
  43039. },
  43040. back: {
  43041. height: math.unit(8, "feet"),
  43042. weight: math.unit(553, "lb"),
  43043. name: "Back",
  43044. image: {
  43045. source: "./media/characters/tawendeh/back.svg",
  43046. extra: 2397/2294,
  43047. bottom: 42/2439
  43048. }
  43049. },
  43050. },
  43051. [
  43052. {
  43053. name: "Mortal Interaction",
  43054. height: math.unit(8, "feet"),
  43055. default: true
  43056. },
  43057. {
  43058. name: "Giant",
  43059. height: math.unit(80, "feet")
  43060. },
  43061. {
  43062. name: "Macro",
  43063. height: math.unit(800, "feet")
  43064. },
  43065. {
  43066. name: "Megamacro",
  43067. height: math.unit(8000, "feet")
  43068. },
  43069. {
  43070. name: "City-Crushing",
  43071. height: math.unit(24000, "feet")
  43072. },
  43073. {
  43074. name: "Mountain-Mashing",
  43075. height: math.unit(80000, "feet")
  43076. },
  43077. {
  43078. name: "Nation Nemesis",
  43079. height: math.unit(8e6, "feet")
  43080. },
  43081. {
  43082. name: "Continent Cracker",
  43083. height: math.unit(24e6, "feet")
  43084. },
  43085. {
  43086. name: "Earth-Eclipsing",
  43087. height: math.unit(2.4e8, "feet")
  43088. },
  43089. {
  43090. name: "Gas Giant Gulper",
  43091. height: math.unit(2.4e9, "feet")
  43092. },
  43093. {
  43094. name: "Sol-Swallowing",
  43095. height: math.unit(8e10, "feet")
  43096. },
  43097. {
  43098. name: "Galaxy Gulper",
  43099. height: math.unit(8, "galaxies")
  43100. },
  43101. {
  43102. name: "Cosmos Churner",
  43103. height: math.unit(8, "universes")
  43104. },
  43105. {
  43106. name: "Omnipotent Otter",
  43107. height: math.unit(80, "universes")
  43108. },
  43109. ]
  43110. ))
  43111. characterMakers.push(() => makeCharacter(
  43112. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  43113. {
  43114. front: {
  43115. height: math.unit(2.6, "meters"),
  43116. weight: math.unit(900, "kg"),
  43117. name: "Front",
  43118. image: {
  43119. source: "./media/characters/neesha/front.svg",
  43120. extra: 1803/1653,
  43121. bottom: 128/1931
  43122. }
  43123. },
  43124. },
  43125. [
  43126. {
  43127. name: "Normal",
  43128. height: math.unit(2.6, "meters"),
  43129. default: true
  43130. },
  43131. {
  43132. name: "Macro",
  43133. height: math.unit(50, "meters")
  43134. },
  43135. ]
  43136. ))
  43137. characterMakers.push(() => makeCharacter(
  43138. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  43139. {
  43140. front: {
  43141. height: math.unit(5, "feet"),
  43142. weight: math.unit(185, "lb"),
  43143. name: "Front",
  43144. image: {
  43145. source: "./media/characters/kyera/front.svg",
  43146. extra: 1875/1790,
  43147. bottom: 96/1971
  43148. }
  43149. },
  43150. },
  43151. [
  43152. {
  43153. name: "Normal",
  43154. height: math.unit(5, "feet"),
  43155. default: true
  43156. },
  43157. ]
  43158. ))
  43159. characterMakers.push(() => makeCharacter(
  43160. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  43161. {
  43162. front: {
  43163. height: math.unit(7 + 6/12, "feet"),
  43164. weight: math.unit(540, "lb"),
  43165. name: "Front",
  43166. image: {
  43167. source: "./media/characters/yuko/front.svg",
  43168. extra: 1282/1222,
  43169. bottom: 101/1383
  43170. }
  43171. },
  43172. frontClothed: {
  43173. height: math.unit(7 + 6/12, "feet"),
  43174. weight: math.unit(540, "lb"),
  43175. name: "Front (Clothed)",
  43176. image: {
  43177. source: "./media/characters/yuko/front-clothed.svg",
  43178. extra: 1282/1222,
  43179. bottom: 101/1383
  43180. }
  43181. },
  43182. },
  43183. [
  43184. {
  43185. name: "Normal",
  43186. height: math.unit(7 + 6/12, "feet"),
  43187. default: true
  43188. },
  43189. {
  43190. name: "Macro",
  43191. height: math.unit(26 + 9/12, "feet")
  43192. },
  43193. {
  43194. name: "Megamacro",
  43195. height: math.unit(300, "feet")
  43196. },
  43197. {
  43198. name: "Gigamacro",
  43199. height: math.unit(5000, "feet")
  43200. },
  43201. {
  43202. name: "Planetary",
  43203. height: math.unit(10000, "miles")
  43204. },
  43205. ]
  43206. ))
  43207. characterMakers.push(() => makeCharacter(
  43208. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  43209. {
  43210. front: {
  43211. height: math.unit(8 + 2/12, "feet"),
  43212. weight: math.unit(600, "lb"),
  43213. name: "Front",
  43214. image: {
  43215. source: "./media/characters/deam-nitrel/front.svg",
  43216. extra: 1308/1234,
  43217. bottom: 125/1433
  43218. }
  43219. },
  43220. },
  43221. [
  43222. {
  43223. name: "Normal",
  43224. height: math.unit(8 + 2/12, "feet"),
  43225. default: true
  43226. },
  43227. ]
  43228. ))
  43229. characterMakers.push(() => makeCharacter(
  43230. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  43231. {
  43232. front: {
  43233. height: math.unit(6.1, "feet"),
  43234. weight: math.unit(180, "lb"),
  43235. name: "Front",
  43236. image: {
  43237. source: "./media/characters/skyress/front.svg",
  43238. extra: 1045/915,
  43239. bottom: 28/1073
  43240. }
  43241. },
  43242. maw: {
  43243. height: math.unit(1, "feet"),
  43244. name: "Maw",
  43245. image: {
  43246. source: "./media/characters/skyress/maw.svg"
  43247. }
  43248. },
  43249. },
  43250. [
  43251. {
  43252. name: "Normal",
  43253. height: math.unit(6.1, "feet"),
  43254. default: true
  43255. },
  43256. {
  43257. name: "Macro",
  43258. height: math.unit(200, "feet")
  43259. },
  43260. ]
  43261. ))
  43262. characterMakers.push(() => makeCharacter(
  43263. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  43264. {
  43265. front: {
  43266. height: math.unit(4 + 2/12, "feet"),
  43267. weight: math.unit(40, "kg"),
  43268. name: "Front",
  43269. image: {
  43270. source: "./media/characters/amethyst-jones/front.svg",
  43271. extra: 1220/1150,
  43272. bottom: 101/1321
  43273. }
  43274. },
  43275. },
  43276. [
  43277. {
  43278. name: "Normal",
  43279. height: math.unit(4 + 2/12, "feet"),
  43280. default: true
  43281. },
  43282. ]
  43283. ))
  43284. characterMakers.push(() => makeCharacter(
  43285. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  43286. {
  43287. front: {
  43288. height: math.unit(1.7, "m"),
  43289. weight: math.unit(135, "lb"),
  43290. name: "Front",
  43291. image: {
  43292. source: "./media/characters/jade/front.svg",
  43293. extra: 1818/1767,
  43294. bottom: 32/1850
  43295. }
  43296. },
  43297. back: {
  43298. height: math.unit(1.7, "m"),
  43299. weight: math.unit(135, "lb"),
  43300. name: "Back",
  43301. image: {
  43302. source: "./media/characters/jade/back.svg",
  43303. extra: 1869/1809,
  43304. bottom: 35/1904
  43305. }
  43306. },
  43307. hand: {
  43308. height: math.unit(0.24, "m"),
  43309. name: "Hand",
  43310. image: {
  43311. source: "./media/characters/jade/hand.svg"
  43312. }
  43313. },
  43314. foot: {
  43315. height: math.unit(0.263, "m"),
  43316. name: "Foot",
  43317. image: {
  43318. source: "./media/characters/jade/foot.svg"
  43319. }
  43320. },
  43321. dick: {
  43322. height: math.unit(0.47, "m"),
  43323. name: "Dick",
  43324. image: {
  43325. source: "./media/characters/jade/dick.svg"
  43326. }
  43327. },
  43328. },
  43329. [
  43330. {
  43331. name: "Micro",
  43332. height: math.unit(22, "cm")
  43333. },
  43334. {
  43335. name: "Normal",
  43336. height: math.unit(1.7, "m"),
  43337. default: true
  43338. },
  43339. {
  43340. name: "Macro",
  43341. height: math.unit(152, "m")
  43342. },
  43343. ]
  43344. ))
  43345. characterMakers.push(() => makeCharacter(
  43346. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  43347. {
  43348. front: {
  43349. height: math.unit(100, "miles"),
  43350. weight: math.unit(20000, "tons"),
  43351. name: "Front",
  43352. image: {
  43353. source: "./media/characters/cookie/front.svg",
  43354. extra: 1125/1070,
  43355. bottom: 30/1155
  43356. }
  43357. },
  43358. },
  43359. [
  43360. {
  43361. name: "Big",
  43362. height: math.unit(50, "feet")
  43363. },
  43364. {
  43365. name: "Macro",
  43366. height: math.unit(100, "miles"),
  43367. default: true
  43368. },
  43369. {
  43370. name: "Megamacro",
  43371. height: math.unit(90000, "miles")
  43372. },
  43373. ]
  43374. ))
  43375. characterMakers.push(() => makeCharacter(
  43376. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  43377. {
  43378. front: {
  43379. height: math.unit(6, "feet"),
  43380. weight: math.unit(145, "lb"),
  43381. name: "Front",
  43382. image: {
  43383. source: "./media/characters/farzian/front.svg",
  43384. extra: 1902/1693,
  43385. bottom: 108/2010
  43386. }
  43387. },
  43388. },
  43389. [
  43390. {
  43391. name: "Macro",
  43392. height: math.unit(500, "feet"),
  43393. default: true
  43394. },
  43395. ]
  43396. ))
  43397. characterMakers.push(() => makeCharacter(
  43398. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  43399. {
  43400. front: {
  43401. height: math.unit(3 + 6/12, "feet"),
  43402. weight: math.unit(50, "lb"),
  43403. name: "Front",
  43404. image: {
  43405. source: "./media/characters/kimberly-tilson/front.svg",
  43406. extra: 1400/1322,
  43407. bottom: 36/1436
  43408. }
  43409. },
  43410. back: {
  43411. height: math.unit(3 + 6/12, "feet"),
  43412. weight: math.unit(50, "lb"),
  43413. name: "Back",
  43414. image: {
  43415. source: "./media/characters/kimberly-tilson/back.svg",
  43416. extra: 1370/1307,
  43417. bottom: 20/1390
  43418. }
  43419. },
  43420. },
  43421. [
  43422. {
  43423. name: "Normal",
  43424. height: math.unit(3 + 6/12, "feet"),
  43425. default: true
  43426. },
  43427. ]
  43428. ))
  43429. characterMakers.push(() => makeCharacter(
  43430. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  43431. {
  43432. front: {
  43433. height: math.unit(350, "meters"),
  43434. weight: math.unit(7.57059e+8, "lb"),
  43435. name: "Front",
  43436. image: {
  43437. source: "./media/characters/harthos/front.svg",
  43438. extra: 455/446,
  43439. bottom: 15/470
  43440. },
  43441. form: "peacekeeper",
  43442. default: true
  43443. },
  43444. allusus_front: {
  43445. height: math.unit(270, "meters"),
  43446. weight: math.unit(3.47550e+8, "lb"),
  43447. name: "Front",
  43448. image: {
  43449. source: "./media/characters/harthos/allusus-front.svg",
  43450. extra: 455/446,
  43451. bottom: 15/470
  43452. },
  43453. form: "allusus",
  43454. },
  43455. },
  43456. [
  43457. {
  43458. name: "Macro",
  43459. height: math.unit(350, "meters"),
  43460. default: true,
  43461. form: "peacekeeper"
  43462. },
  43463. {
  43464. name: "Macro",
  43465. height: math.unit(270, "meters"),
  43466. default: true,
  43467. form: "allusus"
  43468. },
  43469. ],
  43470. {
  43471. "peacekeeper": {
  43472. name: "Peacekeeper",
  43473. default: true
  43474. },
  43475. "allusus": {
  43476. name: "Allusus",
  43477. },
  43478. }
  43479. ))
  43480. characterMakers.push(() => makeCharacter(
  43481. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43482. {
  43483. front: {
  43484. height: math.unit(15, "feet"),
  43485. name: "Front",
  43486. image: {
  43487. source: "./media/characters/hypatia/front.svg",
  43488. extra: 1653/1591,
  43489. bottom: 79/1732
  43490. }
  43491. },
  43492. },
  43493. [
  43494. {
  43495. name: "Normal",
  43496. height: math.unit(15, "feet")
  43497. },
  43498. {
  43499. name: "Small",
  43500. height: math.unit(300, "feet")
  43501. },
  43502. {
  43503. name: "Macro",
  43504. height: math.unit(2500, "feet"),
  43505. default: true
  43506. },
  43507. {
  43508. name: "Mega Macro",
  43509. height: math.unit(1500, "miles")
  43510. },
  43511. {
  43512. name: "Giga Macro",
  43513. height: math.unit(1.5e6, "miles")
  43514. },
  43515. ]
  43516. ))
  43517. characterMakers.push(() => makeCharacter(
  43518. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43519. {
  43520. front: {
  43521. height: math.unit(6, "feet"),
  43522. weight: math.unit(200, "lb"),
  43523. name: "Front",
  43524. image: {
  43525. source: "./media/characters/wulver/front.svg",
  43526. extra: 1724/1632,
  43527. bottom: 130/1854
  43528. }
  43529. },
  43530. frontNsfw: {
  43531. height: math.unit(6, "feet"),
  43532. weight: math.unit(200, "lb"),
  43533. name: "Front (NSFW)",
  43534. image: {
  43535. source: "./media/characters/wulver/front-nsfw.svg",
  43536. extra: 1724/1632,
  43537. bottom: 130/1854
  43538. }
  43539. },
  43540. },
  43541. [
  43542. {
  43543. name: "Human-Sized",
  43544. height: math.unit(6, "feet")
  43545. },
  43546. {
  43547. name: "Normal",
  43548. height: math.unit(4, "meters"),
  43549. default: true
  43550. },
  43551. {
  43552. name: "Large",
  43553. height: math.unit(6, "m")
  43554. },
  43555. ]
  43556. ))
  43557. characterMakers.push(() => makeCharacter(
  43558. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43559. {
  43560. front: {
  43561. height: math.unit(7, "feet"),
  43562. name: "Front",
  43563. image: {
  43564. source: "./media/characters/maru/front.svg",
  43565. extra: 1595/1570,
  43566. bottom: 0/1595
  43567. }
  43568. },
  43569. },
  43570. [
  43571. {
  43572. name: "Normal",
  43573. height: math.unit(7, "feet"),
  43574. default: true
  43575. },
  43576. {
  43577. name: "Macro",
  43578. height: math.unit(700, "feet")
  43579. },
  43580. {
  43581. name: "Mega Macro",
  43582. height: math.unit(25, "miles")
  43583. },
  43584. ]
  43585. ))
  43586. characterMakers.push(() => makeCharacter(
  43587. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43588. {
  43589. front: {
  43590. height: math.unit(6, "feet"),
  43591. weight: math.unit(170, "lb"),
  43592. name: "Front",
  43593. image: {
  43594. source: "./media/characters/xenon/front.svg",
  43595. extra: 1376/1305,
  43596. bottom: 56/1432
  43597. }
  43598. },
  43599. back: {
  43600. height: math.unit(6, "feet"),
  43601. weight: math.unit(170, "lb"),
  43602. name: "Back",
  43603. image: {
  43604. source: "./media/characters/xenon/back.svg",
  43605. extra: 1328/1259,
  43606. bottom: 95/1423
  43607. }
  43608. },
  43609. maw: {
  43610. height: math.unit(0.52, "feet"),
  43611. name: "Maw",
  43612. image: {
  43613. source: "./media/characters/xenon/maw.svg"
  43614. }
  43615. },
  43616. handLeft: {
  43617. height: math.unit(0.82 * 169 / 153, "feet"),
  43618. name: "Hand (Left)",
  43619. image: {
  43620. source: "./media/characters/xenon/hand-left.svg"
  43621. }
  43622. },
  43623. handRight: {
  43624. height: math.unit(0.82, "feet"),
  43625. name: "Hand (Right)",
  43626. image: {
  43627. source: "./media/characters/xenon/hand-right.svg"
  43628. }
  43629. },
  43630. footLeft: {
  43631. height: math.unit(1.13, "feet"),
  43632. name: "Foot (Left)",
  43633. image: {
  43634. source: "./media/characters/xenon/foot-left.svg"
  43635. }
  43636. },
  43637. footRight: {
  43638. height: math.unit(1.13 * 194 / 196, "feet"),
  43639. name: "Foot (Right)",
  43640. image: {
  43641. source: "./media/characters/xenon/foot-right.svg"
  43642. }
  43643. },
  43644. },
  43645. [
  43646. {
  43647. name: "Micro",
  43648. height: math.unit(0.8, "inches")
  43649. },
  43650. {
  43651. name: "Normal",
  43652. height: math.unit(6, "feet")
  43653. },
  43654. {
  43655. name: "Macro",
  43656. height: math.unit(50, "feet"),
  43657. default: true
  43658. },
  43659. {
  43660. name: "Macro+",
  43661. height: math.unit(250, "feet")
  43662. },
  43663. {
  43664. name: "Megamacro",
  43665. height: math.unit(1500, "feet")
  43666. },
  43667. ]
  43668. ))
  43669. characterMakers.push(() => makeCharacter(
  43670. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43671. {
  43672. front: {
  43673. height: math.unit(7 + 5/12, "feet"),
  43674. name: "Front",
  43675. image: {
  43676. source: "./media/characters/zane/front.svg",
  43677. extra: 1260/1203,
  43678. bottom: 94/1354
  43679. }
  43680. },
  43681. back: {
  43682. height: math.unit(5.05, "feet"),
  43683. name: "Back",
  43684. image: {
  43685. source: "./media/characters/zane/back.svg",
  43686. extra: 893/829,
  43687. bottom: 30/923
  43688. }
  43689. },
  43690. werewolf: {
  43691. height: math.unit(11, "feet"),
  43692. name: "Werewolf",
  43693. image: {
  43694. source: "./media/characters/zane/werewolf.svg",
  43695. extra: 1383/1323,
  43696. bottom: 89/1472
  43697. }
  43698. },
  43699. foot: {
  43700. height: math.unit(1.46, "feet"),
  43701. name: "Foot",
  43702. image: {
  43703. source: "./media/characters/zane/foot.svg"
  43704. }
  43705. },
  43706. footFront: {
  43707. height: math.unit(0.784, "feet"),
  43708. name: "Foot (Front)",
  43709. image: {
  43710. source: "./media/characters/zane/foot-front.svg"
  43711. }
  43712. },
  43713. dick: {
  43714. height: math.unit(1.95, "feet"),
  43715. name: "Dick",
  43716. image: {
  43717. source: "./media/characters/zane/dick.svg"
  43718. }
  43719. },
  43720. dickWerewolf: {
  43721. height: math.unit(3.77, "feet"),
  43722. name: "Dick (Werewolf)",
  43723. image: {
  43724. source: "./media/characters/zane/dick.svg"
  43725. }
  43726. },
  43727. },
  43728. [
  43729. {
  43730. name: "Normal",
  43731. height: math.unit(7 + 5/12, "feet"),
  43732. default: true
  43733. },
  43734. ]
  43735. ))
  43736. characterMakers.push(() => makeCharacter(
  43737. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43738. {
  43739. front: {
  43740. height: math.unit(6 + 2/12, "feet"),
  43741. weight: math.unit(284, "lb"),
  43742. name: "Front",
  43743. image: {
  43744. source: "./media/characters/benni-desparque/front.svg",
  43745. extra: 878/729,
  43746. bottom: 58/936
  43747. }
  43748. },
  43749. back: {
  43750. height: math.unit(6 + 2/12, "feet"),
  43751. weight: math.unit(284, "lb"),
  43752. name: "Back",
  43753. image: {
  43754. source: "./media/characters/benni-desparque/back.svg",
  43755. extra: 901/756,
  43756. bottom: 51/952
  43757. }
  43758. },
  43759. dressed: {
  43760. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43761. weight: math.unit(284, "lb"),
  43762. name: "Dressed",
  43763. image: {
  43764. source: "./media/characters/benni-desparque/dressed.svg",
  43765. extra: 1514/1276,
  43766. bottom: 65/1579
  43767. }
  43768. },
  43769. hand: {
  43770. height: math.unit(1.28, "feet"),
  43771. name: "Hand",
  43772. image: {
  43773. source: "./media/characters/benni-desparque/hand.svg"
  43774. }
  43775. },
  43776. foot: {
  43777. height: math.unit(1.53, "feet"),
  43778. name: "Foot",
  43779. image: {
  43780. source: "./media/characters/benni-desparque/foot.svg"
  43781. }
  43782. },
  43783. aiControlUnit: {
  43784. height: math.unit(0.175, "feet"),
  43785. name: "AI Control Unit",
  43786. image: {
  43787. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43788. }
  43789. },
  43790. },
  43791. [
  43792. {
  43793. name: "Civilian",
  43794. height: math.unit(6 + 2/12, "feet")
  43795. },
  43796. {
  43797. name: "Normal",
  43798. height: math.unit(98, "feet"),
  43799. default: true
  43800. },
  43801. {
  43802. name: "Kaiju Fighter",
  43803. height: math.unit(268, "feet")
  43804. },
  43805. ]
  43806. ))
  43807. characterMakers.push(() => makeCharacter(
  43808. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43809. {
  43810. front: {
  43811. height: math.unit(5, "feet"),
  43812. weight: math.unit(105, "lb"),
  43813. name: "Front",
  43814. image: {
  43815. source: "./media/characters/maxine/front.svg",
  43816. extra: 1386/1250,
  43817. bottom: 71/1457
  43818. }
  43819. },
  43820. },
  43821. [
  43822. {
  43823. name: "Normal",
  43824. height: math.unit(5, "feet"),
  43825. default: true
  43826. },
  43827. ]
  43828. ))
  43829. characterMakers.push(() => makeCharacter(
  43830. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43831. {
  43832. front: {
  43833. height: math.unit(11 + 7/12, "feet"),
  43834. weight: math.unit(9576, "lb"),
  43835. name: "Front",
  43836. image: {
  43837. source: "./media/characters/scaly/front.svg",
  43838. extra: 888/867,
  43839. bottom: 36/924
  43840. }
  43841. },
  43842. },
  43843. [
  43844. {
  43845. name: "Normal",
  43846. height: math.unit(11 + 7/12, "feet"),
  43847. default: true
  43848. },
  43849. ]
  43850. ))
  43851. characterMakers.push(() => makeCharacter(
  43852. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43853. {
  43854. front: {
  43855. height: math.unit(6 + 3/12, "feet"),
  43856. name: "Front",
  43857. image: {
  43858. source: "./media/characters/saelria/front.svg",
  43859. extra: 1243/1138,
  43860. bottom: 46/1289
  43861. }
  43862. },
  43863. },
  43864. [
  43865. {
  43866. name: "Micro",
  43867. height: math.unit(6, "inches"),
  43868. },
  43869. {
  43870. name: "Normal",
  43871. height: math.unit(6 + 3/12, "feet"),
  43872. default: true
  43873. },
  43874. {
  43875. name: "Macro",
  43876. height: math.unit(25, "feet")
  43877. },
  43878. ]
  43879. ))
  43880. characterMakers.push(() => makeCharacter(
  43881. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43882. {
  43883. front: {
  43884. height: math.unit(80, "meters"),
  43885. weight: math.unit(7000, "tonnes"),
  43886. name: "Front",
  43887. image: {
  43888. source: "./media/characters/tef/front.svg",
  43889. extra: 2036/1991,
  43890. bottom: 54/2090
  43891. }
  43892. },
  43893. back: {
  43894. height: math.unit(80, "meters"),
  43895. weight: math.unit(7000, "tonnes"),
  43896. name: "Back",
  43897. image: {
  43898. source: "./media/characters/tef/back.svg",
  43899. extra: 2036/1991,
  43900. bottom: 54/2090
  43901. }
  43902. },
  43903. },
  43904. [
  43905. {
  43906. name: "Macro",
  43907. height: math.unit(80, "meters"),
  43908. default: true
  43909. },
  43910. ]
  43911. ))
  43912. characterMakers.push(() => makeCharacter(
  43913. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43914. {
  43915. front: {
  43916. height: math.unit(13, "feet"),
  43917. weight: math.unit(6, "tons"),
  43918. name: "Front",
  43919. image: {
  43920. source: "./media/characters/rover/front.svg",
  43921. extra: 1233/1156,
  43922. bottom: 50/1283
  43923. }
  43924. },
  43925. back: {
  43926. height: math.unit(13, "feet"),
  43927. weight: math.unit(6, "tons"),
  43928. name: "Back",
  43929. image: {
  43930. source: "./media/characters/rover/back.svg",
  43931. extra: 1327/1258,
  43932. bottom: 39/1366
  43933. }
  43934. },
  43935. },
  43936. [
  43937. {
  43938. name: "Normal",
  43939. height: math.unit(13, "feet"),
  43940. default: true
  43941. },
  43942. {
  43943. name: "Macro",
  43944. height: math.unit(1300, "feet")
  43945. },
  43946. {
  43947. name: "Megamacro",
  43948. height: math.unit(1300, "miles")
  43949. },
  43950. {
  43951. name: "Gigamacro",
  43952. height: math.unit(1300000, "miles")
  43953. },
  43954. ]
  43955. ))
  43956. characterMakers.push(() => makeCharacter(
  43957. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43958. {
  43959. front: {
  43960. height: math.unit(10, "feet"),
  43961. weight: math.unit(500, "lb"),
  43962. name: "Front",
  43963. image: {
  43964. source: "./media/characters/ariz/front.svg",
  43965. extra: 461/450,
  43966. bottom: 16/477
  43967. }
  43968. },
  43969. },
  43970. [
  43971. {
  43972. name: "MiniMacro",
  43973. height: math.unit(10, "feet"),
  43974. default: true
  43975. },
  43976. ]
  43977. ))
  43978. characterMakers.push(() => makeCharacter(
  43979. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43980. {
  43981. front: {
  43982. height: math.unit(6, "feet"),
  43983. weight: math.unit(140, "lb"),
  43984. name: "Front",
  43985. image: {
  43986. source: "./media/characters/sigrun/front.svg",
  43987. extra: 1418/1359,
  43988. bottom: 27/1445
  43989. }
  43990. },
  43991. },
  43992. [
  43993. {
  43994. name: "Macro",
  43995. height: math.unit(35, "feet"),
  43996. default: true
  43997. },
  43998. ]
  43999. ))
  44000. characterMakers.push(() => makeCharacter(
  44001. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  44002. {
  44003. front: {
  44004. height: math.unit(6, "feet"),
  44005. weight: math.unit(150, "lb"),
  44006. name: "Front",
  44007. image: {
  44008. source: "./media/characters/numin/front.svg",
  44009. extra: 1433/1388,
  44010. bottom: 12/1445
  44011. }
  44012. },
  44013. },
  44014. [
  44015. {
  44016. name: "Macro",
  44017. height: math.unit(21.5, "km"),
  44018. default: true
  44019. },
  44020. ]
  44021. ))
  44022. characterMakers.push(() => makeCharacter(
  44023. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  44024. {
  44025. front: {
  44026. height: math.unit(6, "feet"),
  44027. weight: math.unit(463, "lb"),
  44028. name: "Front",
  44029. image: {
  44030. source: "./media/characters/melwa/front.svg",
  44031. extra: 1307/1248,
  44032. bottom: 93/1400
  44033. }
  44034. },
  44035. },
  44036. [
  44037. {
  44038. name: "Macro",
  44039. height: math.unit(50, "meters"),
  44040. default: true
  44041. },
  44042. ]
  44043. ))
  44044. characterMakers.push(() => makeCharacter(
  44045. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  44046. {
  44047. front: {
  44048. height: math.unit(325, "feet"),
  44049. name: "Front",
  44050. image: {
  44051. source: "./media/characters/zorkaiju/front.svg",
  44052. extra: 1955/1814,
  44053. bottom: 40/1995
  44054. }
  44055. },
  44056. frontExtended: {
  44057. height: math.unit(325, "feet"),
  44058. name: "Front (Extended)",
  44059. image: {
  44060. source: "./media/characters/zorkaiju/front-extended.svg",
  44061. extra: 1955/1814,
  44062. bottom: 40/1995
  44063. }
  44064. },
  44065. side: {
  44066. height: math.unit(325, "feet"),
  44067. name: "Side",
  44068. image: {
  44069. source: "./media/characters/zorkaiju/side.svg",
  44070. extra: 1495/1396,
  44071. bottom: 17/1512
  44072. }
  44073. },
  44074. sideExtended: {
  44075. height: math.unit(325, "feet"),
  44076. name: "Side (Extended)",
  44077. image: {
  44078. source: "./media/characters/zorkaiju/side-extended.svg",
  44079. extra: 1495/1396,
  44080. bottom: 17/1512
  44081. }
  44082. },
  44083. back: {
  44084. height: math.unit(325, "feet"),
  44085. name: "Back",
  44086. image: {
  44087. source: "./media/characters/zorkaiju/back.svg",
  44088. extra: 1959/1821,
  44089. bottom: 31/1990
  44090. }
  44091. },
  44092. backExtended: {
  44093. height: math.unit(325, "feet"),
  44094. name: "Back (Extended)",
  44095. image: {
  44096. source: "./media/characters/zorkaiju/back-extended.svg",
  44097. extra: 1959/1821,
  44098. bottom: 31/1990
  44099. }
  44100. },
  44101. hand: {
  44102. height: math.unit(58.4, "feet"),
  44103. name: "Hand",
  44104. image: {
  44105. source: "./media/characters/zorkaiju/hand.svg"
  44106. }
  44107. },
  44108. handExtended: {
  44109. height: math.unit(61.4, "feet"),
  44110. name: "Hand (Extended)",
  44111. image: {
  44112. source: "./media/characters/zorkaiju/hand-extended.svg"
  44113. }
  44114. },
  44115. foot: {
  44116. height: math.unit(95, "feet"),
  44117. name: "Foot",
  44118. image: {
  44119. source: "./media/characters/zorkaiju/foot.svg"
  44120. }
  44121. },
  44122. leftArm: {
  44123. height: math.unit(59, "feet"),
  44124. name: "Left Arm",
  44125. image: {
  44126. source: "./media/characters/zorkaiju/left-arm.svg"
  44127. }
  44128. },
  44129. rightArm: {
  44130. height: math.unit(59, "feet"),
  44131. name: "Right Arm",
  44132. image: {
  44133. source: "./media/characters/zorkaiju/right-arm.svg"
  44134. }
  44135. },
  44136. leftArmExtended: {
  44137. height: math.unit(59 * 1.033546, "feet"),
  44138. name: "Left Arm (Extended)",
  44139. image: {
  44140. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  44141. }
  44142. },
  44143. rightArmExtended: {
  44144. height: math.unit(59 * 1.0496, "feet"),
  44145. name: "Right Arm (Extended)",
  44146. image: {
  44147. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  44148. }
  44149. },
  44150. tail: {
  44151. height: math.unit(104, "feet"),
  44152. name: "Tail",
  44153. image: {
  44154. source: "./media/characters/zorkaiju/tail.svg"
  44155. }
  44156. },
  44157. tailExtended: {
  44158. height: math.unit(104, "feet"),
  44159. name: "Tail (Extended)",
  44160. image: {
  44161. source: "./media/characters/zorkaiju/tail-extended.svg"
  44162. }
  44163. },
  44164. tailBottom: {
  44165. height: math.unit(104, "feet"),
  44166. name: "Tail Bottom",
  44167. image: {
  44168. source: "./media/characters/zorkaiju/tail-bottom.svg"
  44169. }
  44170. },
  44171. crystal: {
  44172. height: math.unit(27.54, "feet"),
  44173. name: "Crystal",
  44174. image: {
  44175. source: "./media/characters/zorkaiju/crystal.svg"
  44176. }
  44177. },
  44178. },
  44179. [
  44180. {
  44181. name: "Kaiju",
  44182. height: math.unit(325, "feet"),
  44183. default: true
  44184. },
  44185. ]
  44186. ))
  44187. characterMakers.push(() => makeCharacter(
  44188. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  44189. {
  44190. front: {
  44191. height: math.unit(6 + 1/12, "feet"),
  44192. weight: math.unit(115, "lb"),
  44193. name: "Front",
  44194. image: {
  44195. source: "./media/characters/bailey-belfry/front.svg",
  44196. extra: 1240/1121,
  44197. bottom: 101/1341
  44198. }
  44199. },
  44200. },
  44201. [
  44202. {
  44203. name: "Normal",
  44204. height: math.unit(6 + 1/12, "feet"),
  44205. default: true
  44206. },
  44207. ]
  44208. ))
  44209. characterMakers.push(() => makeCharacter(
  44210. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  44211. {
  44212. side: {
  44213. height: math.unit(4, "meters"),
  44214. weight: math.unit(250, "kg"),
  44215. name: "Side",
  44216. image: {
  44217. source: "./media/characters/blacky/side.svg",
  44218. extra: 1027/919,
  44219. bottom: 43/1070
  44220. }
  44221. },
  44222. maw: {
  44223. height: math.unit(1, "meters"),
  44224. name: "Maw",
  44225. image: {
  44226. source: "./media/characters/blacky/maw.svg"
  44227. }
  44228. },
  44229. paw: {
  44230. height: math.unit(1, "meters"),
  44231. name: "Paw",
  44232. image: {
  44233. source: "./media/characters/blacky/paw.svg"
  44234. }
  44235. },
  44236. },
  44237. [
  44238. {
  44239. name: "Normal",
  44240. height: math.unit(4, "meters"),
  44241. default: true
  44242. },
  44243. ]
  44244. ))
  44245. characterMakers.push(() => makeCharacter(
  44246. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  44247. {
  44248. front: {
  44249. height: math.unit(170, "cm"),
  44250. weight: math.unit(66, "kg"),
  44251. name: "Front",
  44252. image: {
  44253. source: "./media/characters/thux-ei/front.svg",
  44254. extra: 1109/1011,
  44255. bottom: 8/1117
  44256. }
  44257. },
  44258. },
  44259. [
  44260. {
  44261. name: "Normal",
  44262. height: math.unit(170, "cm"),
  44263. default: true
  44264. },
  44265. ]
  44266. ))
  44267. characterMakers.push(() => makeCharacter(
  44268. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  44269. {
  44270. front: {
  44271. height: math.unit(5, "feet"),
  44272. weight: math.unit(120, "lb"),
  44273. name: "Front",
  44274. image: {
  44275. source: "./media/characters/roxanne-voltaire/front.svg",
  44276. extra: 1901/1779,
  44277. bottom: 53/1954
  44278. }
  44279. },
  44280. },
  44281. [
  44282. {
  44283. name: "Normal",
  44284. height: math.unit(5, "feet"),
  44285. default: true
  44286. },
  44287. {
  44288. name: "Giant",
  44289. height: math.unit(50, "feet")
  44290. },
  44291. {
  44292. name: "Titan",
  44293. height: math.unit(500, "feet")
  44294. },
  44295. {
  44296. name: "Macro",
  44297. height: math.unit(5000, "feet")
  44298. },
  44299. {
  44300. name: "Megamacro",
  44301. height: math.unit(50000, "feet")
  44302. },
  44303. {
  44304. name: "Gigamacro",
  44305. height: math.unit(500000, "feet")
  44306. },
  44307. {
  44308. name: "Teramacro",
  44309. height: math.unit(5e6, "feet")
  44310. },
  44311. ]
  44312. ))
  44313. characterMakers.push(() => makeCharacter(
  44314. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  44315. {
  44316. front: {
  44317. height: math.unit(6 + 2/12, "feet"),
  44318. name: "Front",
  44319. image: {
  44320. source: "./media/characters/squeaks/front.svg",
  44321. extra: 1823/1768,
  44322. bottom: 138/1961
  44323. }
  44324. },
  44325. },
  44326. [
  44327. {
  44328. name: "Micro",
  44329. height: math.unit(0.5, "inches")
  44330. },
  44331. {
  44332. name: "Normal",
  44333. height: math.unit(6 + 2/12, "feet"),
  44334. default: true
  44335. },
  44336. {
  44337. name: "Macro",
  44338. height: math.unit(600, "feet")
  44339. },
  44340. ]
  44341. ))
  44342. characterMakers.push(() => makeCharacter(
  44343. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  44344. {
  44345. front: {
  44346. height: math.unit(1.72, "meters"),
  44347. name: "Front",
  44348. image: {
  44349. source: "./media/characters/archinger/front.svg",
  44350. extra: 1861/1675,
  44351. bottom: 125/1986
  44352. }
  44353. },
  44354. back: {
  44355. height: math.unit(1.72, "meters"),
  44356. name: "Back",
  44357. image: {
  44358. source: "./media/characters/archinger/back.svg",
  44359. extra: 1844/1701,
  44360. bottom: 104/1948
  44361. }
  44362. },
  44363. cock: {
  44364. height: math.unit(0.59, "feet"),
  44365. name: "Cock",
  44366. image: {
  44367. source: "./media/characters/archinger/cock.svg"
  44368. }
  44369. },
  44370. },
  44371. [
  44372. {
  44373. name: "Normal",
  44374. height: math.unit(1.72, "meters"),
  44375. default: true
  44376. },
  44377. {
  44378. name: "Macro",
  44379. height: math.unit(84, "meters")
  44380. },
  44381. {
  44382. name: "Macro+",
  44383. height: math.unit(112, "meters")
  44384. },
  44385. {
  44386. name: "Macro++",
  44387. height: math.unit(960, "meters")
  44388. },
  44389. {
  44390. name: "Macro+++",
  44391. height: math.unit(4, "km")
  44392. },
  44393. {
  44394. name: "Macro++++",
  44395. height: math.unit(48, "km")
  44396. },
  44397. {
  44398. name: "Macro+++++",
  44399. height: math.unit(4500, "km")
  44400. },
  44401. ]
  44402. ))
  44403. characterMakers.push(() => makeCharacter(
  44404. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  44405. {
  44406. front: {
  44407. height: math.unit(5 + 5/12, "feet"),
  44408. name: "Front",
  44409. image: {
  44410. source: "./media/characters/alsnapz/front.svg",
  44411. extra: 1157/1065,
  44412. bottom: 42/1199
  44413. }
  44414. },
  44415. },
  44416. [
  44417. {
  44418. name: "Normal",
  44419. height: math.unit(5 + 5/12, "feet"),
  44420. default: true
  44421. },
  44422. ]
  44423. ))
  44424. characterMakers.push(() => makeCharacter(
  44425. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  44426. {
  44427. side: {
  44428. height: math.unit(3.2, "earths"),
  44429. name: "Side",
  44430. image: {
  44431. source: "./media/characters/mag/side.svg",
  44432. extra: 1331/1008,
  44433. bottom: 52/1383
  44434. }
  44435. },
  44436. wing: {
  44437. height: math.unit(1.94, "earths"),
  44438. name: "Wing",
  44439. image: {
  44440. source: "./media/characters/mag/wing.svg"
  44441. }
  44442. },
  44443. dick: {
  44444. height: math.unit(1.8, "earths"),
  44445. name: "Dick",
  44446. image: {
  44447. source: "./media/characters/mag/dick.svg"
  44448. }
  44449. },
  44450. ass: {
  44451. height: math.unit(1.33, "earths"),
  44452. name: "Ass",
  44453. image: {
  44454. source: "./media/characters/mag/ass.svg"
  44455. }
  44456. },
  44457. head: {
  44458. height: math.unit(1.1, "earths"),
  44459. name: "Head",
  44460. image: {
  44461. source: "./media/characters/mag/head.svg"
  44462. }
  44463. },
  44464. maw: {
  44465. height: math.unit(1.62, "earths"),
  44466. name: "Maw",
  44467. image: {
  44468. source: "./media/characters/mag/maw.svg"
  44469. }
  44470. },
  44471. },
  44472. [
  44473. {
  44474. name: "Small",
  44475. height: math.unit(162, "feet")
  44476. },
  44477. {
  44478. name: "Normal",
  44479. height: math.unit(3.2, "earths"),
  44480. default: true
  44481. },
  44482. ]
  44483. ))
  44484. characterMakers.push(() => makeCharacter(
  44485. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44486. {
  44487. front: {
  44488. height: math.unit(512, "feet"),
  44489. weight: math.unit(63509, "tonnes"),
  44490. name: "Front",
  44491. image: {
  44492. source: "./media/characters/vorrel-harroc/front.svg",
  44493. extra: 1075/1063,
  44494. bottom: 62/1137
  44495. }
  44496. },
  44497. },
  44498. [
  44499. {
  44500. name: "Normal",
  44501. height: math.unit(10, "feet")
  44502. },
  44503. {
  44504. name: "Macro",
  44505. height: math.unit(512, "feet"),
  44506. default: true
  44507. },
  44508. {
  44509. name: "Megamacro",
  44510. height: math.unit(256, "miles")
  44511. },
  44512. {
  44513. name: "Gigamacro",
  44514. height: math.unit(4096, "miles")
  44515. },
  44516. ]
  44517. ))
  44518. characterMakers.push(() => makeCharacter(
  44519. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44520. {
  44521. side: {
  44522. height: math.unit(50, "feet"),
  44523. name: "Side",
  44524. image: {
  44525. source: "./media/characters/froimar/side.svg",
  44526. extra: 855/638,
  44527. bottom: 99/954
  44528. }
  44529. },
  44530. },
  44531. [
  44532. {
  44533. name: "Macro",
  44534. height: math.unit(50, "feet"),
  44535. default: true
  44536. },
  44537. ]
  44538. ))
  44539. characterMakers.push(() => makeCharacter(
  44540. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44541. {
  44542. front: {
  44543. height: math.unit(210, "miles"),
  44544. name: "Front",
  44545. image: {
  44546. source: "./media/characters/timothy/front.svg",
  44547. extra: 1007/943,
  44548. bottom: 62/1069
  44549. }
  44550. },
  44551. frontSkirt: {
  44552. height: math.unit(210, "miles"),
  44553. name: "Front (Skirt)",
  44554. image: {
  44555. source: "./media/characters/timothy/front-skirt.svg",
  44556. extra: 1007/943,
  44557. bottom: 62/1069
  44558. }
  44559. },
  44560. frontCoat: {
  44561. height: math.unit(210, "miles"),
  44562. name: "Front (Coat)",
  44563. image: {
  44564. source: "./media/characters/timothy/front-coat.svg",
  44565. extra: 1007/943,
  44566. bottom: 62/1069
  44567. }
  44568. },
  44569. },
  44570. [
  44571. {
  44572. name: "Macro",
  44573. height: math.unit(210, "miles"),
  44574. default: true
  44575. },
  44576. {
  44577. name: "Megamacro",
  44578. height: math.unit(210000, "miles")
  44579. },
  44580. ]
  44581. ))
  44582. characterMakers.push(() => makeCharacter(
  44583. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44584. {
  44585. front: {
  44586. height: math.unit(188, "feet"),
  44587. name: "Front",
  44588. image: {
  44589. source: "./media/characters/pyotr/front.svg",
  44590. extra: 1912/1826,
  44591. bottom: 18/1930
  44592. }
  44593. },
  44594. },
  44595. [
  44596. {
  44597. name: "Macro",
  44598. height: math.unit(188, "feet"),
  44599. default: true
  44600. },
  44601. {
  44602. name: "Megamacro",
  44603. height: math.unit(8, "miles")
  44604. },
  44605. ]
  44606. ))
  44607. characterMakers.push(() => makeCharacter(
  44608. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44609. {
  44610. side: {
  44611. height: math.unit(10, "feet"),
  44612. weight: math.unit(4500, "lb"),
  44613. name: "Side",
  44614. image: {
  44615. source: "./media/characters/ackart/side.svg",
  44616. extra: 1776/1668,
  44617. bottom: 116/1892
  44618. }
  44619. },
  44620. },
  44621. [
  44622. {
  44623. name: "Normal",
  44624. height: math.unit(10, "feet"),
  44625. default: true
  44626. },
  44627. ]
  44628. ))
  44629. characterMakers.push(() => makeCharacter(
  44630. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44631. {
  44632. side: {
  44633. height: math.unit(21, "feet"),
  44634. name: "Side",
  44635. image: {
  44636. source: "./media/characters/nolow/side.svg",
  44637. extra: 1484/1434,
  44638. bottom: 85/1569
  44639. }
  44640. },
  44641. sideErect: {
  44642. height: math.unit(21, "feet"),
  44643. name: "Side (Erect)",
  44644. image: {
  44645. source: "./media/characters/nolow/side-erect.svg",
  44646. extra: 1484/1434,
  44647. bottom: 85/1569
  44648. }
  44649. },
  44650. },
  44651. [
  44652. {
  44653. name: "Regular",
  44654. height: math.unit(12, "feet")
  44655. },
  44656. {
  44657. name: "Big Chee",
  44658. height: math.unit(21, "feet"),
  44659. default: true
  44660. },
  44661. ]
  44662. ))
  44663. characterMakers.push(() => makeCharacter(
  44664. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44665. {
  44666. front: {
  44667. height: math.unit(7, "feet"),
  44668. weight: math.unit(250, "lb"),
  44669. name: "Front",
  44670. image: {
  44671. source: "./media/characters/nines/front.svg",
  44672. extra: 1741/1607,
  44673. bottom: 41/1782
  44674. }
  44675. },
  44676. side: {
  44677. height: math.unit(7, "feet"),
  44678. weight: math.unit(250, "lb"),
  44679. name: "Side",
  44680. image: {
  44681. source: "./media/characters/nines/side.svg",
  44682. extra: 1854/1735,
  44683. bottom: 93/1947
  44684. }
  44685. },
  44686. back: {
  44687. height: math.unit(7, "feet"),
  44688. weight: math.unit(250, "lb"),
  44689. name: "Back",
  44690. image: {
  44691. source: "./media/characters/nines/back.svg",
  44692. extra: 1748/1615,
  44693. bottom: 20/1768
  44694. }
  44695. },
  44696. },
  44697. [
  44698. {
  44699. name: "Megamacro",
  44700. height: math.unit(99, "km"),
  44701. default: true
  44702. },
  44703. ]
  44704. ))
  44705. characterMakers.push(() => makeCharacter(
  44706. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44707. {
  44708. front: {
  44709. height: math.unit(5 + 10/12, "feet"),
  44710. weight: math.unit(210, "lb"),
  44711. name: "Front",
  44712. image: {
  44713. source: "./media/characters/zenith/front.svg",
  44714. extra: 1531/1452,
  44715. bottom: 198/1729
  44716. }
  44717. },
  44718. back: {
  44719. height: math.unit(5 + 10/12, "feet"),
  44720. weight: math.unit(210, "lb"),
  44721. name: "Back",
  44722. image: {
  44723. source: "./media/characters/zenith/back.svg",
  44724. extra: 1571/1487,
  44725. bottom: 75/1646
  44726. }
  44727. },
  44728. },
  44729. [
  44730. {
  44731. name: "Normal",
  44732. height: math.unit(5 + 10/12, "feet"),
  44733. default: true
  44734. }
  44735. ]
  44736. ))
  44737. characterMakers.push(() => makeCharacter(
  44738. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44739. {
  44740. front: {
  44741. height: math.unit(4, "feet"),
  44742. weight: math.unit(60, "lb"),
  44743. name: "Front",
  44744. image: {
  44745. source: "./media/characters/jasper/front.svg",
  44746. extra: 1450/1379,
  44747. bottom: 19/1469
  44748. }
  44749. },
  44750. },
  44751. [
  44752. {
  44753. name: "Normal",
  44754. height: math.unit(4, "feet"),
  44755. default: true
  44756. },
  44757. ]
  44758. ))
  44759. characterMakers.push(() => makeCharacter(
  44760. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44761. {
  44762. front: {
  44763. height: math.unit(6 + 5/12, "feet"),
  44764. weight: math.unit(290, "lb"),
  44765. name: "Front",
  44766. image: {
  44767. source: "./media/characters/tiberius-thyben/front.svg",
  44768. extra: 757/739,
  44769. bottom: 39/796
  44770. }
  44771. },
  44772. },
  44773. [
  44774. {
  44775. name: "Micro",
  44776. height: math.unit(1.5, "inches")
  44777. },
  44778. {
  44779. name: "Normal",
  44780. height: math.unit(6 + 5/12, "feet"),
  44781. default: true
  44782. },
  44783. {
  44784. name: "Macro",
  44785. height: math.unit(300, "feet")
  44786. },
  44787. ]
  44788. ))
  44789. characterMakers.push(() => makeCharacter(
  44790. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44791. {
  44792. front: {
  44793. height: math.unit(5 + 6/12, "feet"),
  44794. weight: math.unit(60, "kg"),
  44795. name: "Front",
  44796. image: {
  44797. source: "./media/characters/sabre/front.svg",
  44798. extra: 738/671,
  44799. bottom: 27/765
  44800. }
  44801. },
  44802. },
  44803. [
  44804. {
  44805. name: "Teeny",
  44806. height: math.unit(2, "inches")
  44807. },
  44808. {
  44809. name: "Smol",
  44810. height: math.unit(8, "inches")
  44811. },
  44812. {
  44813. name: "Normal",
  44814. height: math.unit(5 + 6/12, "feet"),
  44815. default: true
  44816. },
  44817. {
  44818. name: "Mini-Macro",
  44819. height: math.unit(15, "feet")
  44820. },
  44821. {
  44822. name: "Macro",
  44823. height: math.unit(50, "feet")
  44824. },
  44825. ]
  44826. ))
  44827. characterMakers.push(() => makeCharacter(
  44828. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44829. {
  44830. front: {
  44831. height: math.unit(6 + 4/12, "feet"),
  44832. weight: math.unit(170, "lb"),
  44833. name: "Front",
  44834. image: {
  44835. source: "./media/characters/charlie/front.svg",
  44836. extra: 1348/1228,
  44837. bottom: 15/1363
  44838. }
  44839. },
  44840. },
  44841. [
  44842. {
  44843. name: "Macro",
  44844. height: math.unit(1700, "meters"),
  44845. default: true
  44846. },
  44847. {
  44848. name: "MegaMacro",
  44849. height: math.unit(20400, "meters")
  44850. },
  44851. ]
  44852. ))
  44853. characterMakers.push(() => makeCharacter(
  44854. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44855. {
  44856. front: {
  44857. height: math.unit(1.96, "meters"),
  44858. weight: math.unit(220, "lb"),
  44859. name: "Front",
  44860. image: {
  44861. source: "./media/characters/susan-grant/front.svg",
  44862. extra: 482/478,
  44863. bottom: 7/489
  44864. }
  44865. },
  44866. },
  44867. [
  44868. {
  44869. name: "Normal",
  44870. height: math.unit(1.96, "meters"),
  44871. default: true
  44872. },
  44873. {
  44874. name: "Macro",
  44875. height: math.unit(76.2, "meters")
  44876. },
  44877. {
  44878. name: "MegaMacro",
  44879. height: math.unit(305, "meters")
  44880. },
  44881. {
  44882. name: "GigaMacro",
  44883. height: math.unit(1220, "meters")
  44884. },
  44885. {
  44886. name: "SuperMacro",
  44887. height: math.unit(4878, "meters")
  44888. },
  44889. ]
  44890. ))
  44891. characterMakers.push(() => makeCharacter(
  44892. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44893. {
  44894. front: {
  44895. height: math.unit(5 + 4/12, "feet"),
  44896. weight: math.unit(110, "lb"),
  44897. name: "Front",
  44898. image: {
  44899. source: "./media/characters/axel-isanov/front.svg",
  44900. extra: 1096/1065,
  44901. bottom: 13/1109
  44902. }
  44903. },
  44904. },
  44905. [
  44906. {
  44907. name: "Normal",
  44908. height: math.unit(5 + 4/12, "feet"),
  44909. default: true
  44910. },
  44911. ]
  44912. ))
  44913. characterMakers.push(() => makeCharacter(
  44914. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44915. {
  44916. front: {
  44917. height: math.unit(9, "feet"),
  44918. weight: math.unit(467, "lb"),
  44919. name: "Front",
  44920. image: {
  44921. source: "./media/characters/necahual/front.svg",
  44922. extra: 920/873,
  44923. bottom: 26/946
  44924. }
  44925. },
  44926. back: {
  44927. height: math.unit(9, "feet"),
  44928. weight: math.unit(467, "lb"),
  44929. name: "Back",
  44930. image: {
  44931. source: "./media/characters/necahual/back.svg",
  44932. extra: 930/884,
  44933. bottom: 16/946
  44934. }
  44935. },
  44936. frontUnderwear: {
  44937. height: math.unit(9, "feet"),
  44938. weight: math.unit(467, "lb"),
  44939. name: "Front (Underwear)",
  44940. image: {
  44941. source: "./media/characters/necahual/front-underwear.svg",
  44942. extra: 920/873,
  44943. bottom: 26/946
  44944. }
  44945. },
  44946. frontDressed: {
  44947. height: math.unit(9, "feet"),
  44948. weight: math.unit(467, "lb"),
  44949. name: "Front (Dressed)",
  44950. image: {
  44951. source: "./media/characters/necahual/front-dressed.svg",
  44952. extra: 920/873,
  44953. bottom: 26/946
  44954. }
  44955. },
  44956. },
  44957. [
  44958. {
  44959. name: "Comprsesed",
  44960. height: math.unit(9, "feet")
  44961. },
  44962. {
  44963. name: "Natural",
  44964. height: math.unit(15, "feet"),
  44965. default: true
  44966. },
  44967. {
  44968. name: "Boosted",
  44969. height: math.unit(50, "feet")
  44970. },
  44971. {
  44972. name: "Boosted+",
  44973. height: math.unit(150, "feet")
  44974. },
  44975. {
  44976. name: "Max",
  44977. height: math.unit(500, "feet")
  44978. },
  44979. ]
  44980. ))
  44981. characterMakers.push(() => makeCharacter(
  44982. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44983. {
  44984. front: {
  44985. height: math.unit(22 + 1/12, "feet"),
  44986. weight: math.unit(3200, "lb"),
  44987. name: "Front",
  44988. image: {
  44989. source: "./media/characters/theo-acacia/front.svg",
  44990. extra: 1796/1741,
  44991. bottom: 83/1879
  44992. }
  44993. },
  44994. frontUnderwear: {
  44995. height: math.unit(22 + 1/12, "feet"),
  44996. weight: math.unit(3200, "lb"),
  44997. name: "Front (Underwear)",
  44998. image: {
  44999. source: "./media/characters/theo-acacia/front-underwear.svg",
  45000. extra: 1796/1741,
  45001. bottom: 83/1879
  45002. }
  45003. },
  45004. frontNude: {
  45005. height: math.unit(22 + 1/12, "feet"),
  45006. weight: math.unit(3200, "lb"),
  45007. name: "Front (Nude)",
  45008. image: {
  45009. source: "./media/characters/theo-acacia/front-nude.svg",
  45010. extra: 1796/1741,
  45011. bottom: 83/1879
  45012. }
  45013. },
  45014. },
  45015. [
  45016. {
  45017. name: "Normal",
  45018. height: math.unit(22 + 1/12, "feet"),
  45019. default: true
  45020. },
  45021. ]
  45022. ))
  45023. characterMakers.push(() => makeCharacter(
  45024. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  45025. {
  45026. front: {
  45027. height: math.unit(20, "feet"),
  45028. name: "Front",
  45029. image: {
  45030. source: "./media/characters/astra/front.svg",
  45031. extra: 1850/1714,
  45032. bottom: 106/1956
  45033. }
  45034. },
  45035. frontUndressed: {
  45036. height: math.unit(20, "feet"),
  45037. name: "Front (Undressed)",
  45038. image: {
  45039. source: "./media/characters/astra/front-undressed.svg",
  45040. extra: 1926/1749,
  45041. bottom: 0/1926
  45042. }
  45043. },
  45044. hand: {
  45045. height: math.unit(1.53, "feet"),
  45046. name: "Hand",
  45047. image: {
  45048. source: "./media/characters/astra/hand.svg"
  45049. }
  45050. },
  45051. paw: {
  45052. height: math.unit(1.53, "feet"),
  45053. name: "Paw",
  45054. image: {
  45055. source: "./media/characters/astra/paw.svg"
  45056. }
  45057. },
  45058. },
  45059. [
  45060. {
  45061. name: "Smallest",
  45062. height: math.unit(20, "feet")
  45063. },
  45064. {
  45065. name: "Normal",
  45066. height: math.unit(1e9, "miles"),
  45067. default: true
  45068. },
  45069. {
  45070. name: "Larger",
  45071. height: math.unit(5, "multiverses")
  45072. },
  45073. {
  45074. name: "Largest",
  45075. height: math.unit(1e9, "multiverses")
  45076. },
  45077. ]
  45078. ))
  45079. characterMakers.push(() => makeCharacter(
  45080. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  45081. {
  45082. front: {
  45083. height: math.unit(8, "feet"),
  45084. name: "Front",
  45085. image: {
  45086. source: "./media/characters/breanna/front.svg",
  45087. extra: 1912/1632,
  45088. bottom: 33/1945
  45089. }
  45090. },
  45091. },
  45092. [
  45093. {
  45094. name: "Smallest",
  45095. height: math.unit(8, "feet")
  45096. },
  45097. {
  45098. name: "Normal",
  45099. height: math.unit(1, "mile"),
  45100. default: true
  45101. },
  45102. {
  45103. name: "Maximum",
  45104. height: math.unit(1500000000000, "lightyears")
  45105. },
  45106. ]
  45107. ))
  45108. characterMakers.push(() => makeCharacter(
  45109. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  45110. {
  45111. front: {
  45112. height: math.unit(5 + 11/12, "feet"),
  45113. weight: math.unit(155, "lb"),
  45114. name: "Front",
  45115. image: {
  45116. source: "./media/characters/cai/front.svg",
  45117. extra: 1823/1702,
  45118. bottom: 32/1855
  45119. }
  45120. },
  45121. back: {
  45122. height: math.unit(5 + 11/12, "feet"),
  45123. weight: math.unit(155, "lb"),
  45124. name: "Back",
  45125. image: {
  45126. source: "./media/characters/cai/back.svg",
  45127. extra: 1809/1708,
  45128. bottom: 31/1840
  45129. }
  45130. },
  45131. },
  45132. [
  45133. {
  45134. name: "Normal",
  45135. height: math.unit(5 + 11/12, "feet"),
  45136. default: true
  45137. },
  45138. {
  45139. name: "Big",
  45140. height: math.unit(15, "feet")
  45141. },
  45142. {
  45143. name: "Macro",
  45144. height: math.unit(200, "feet")
  45145. },
  45146. ]
  45147. ))
  45148. characterMakers.push(() => makeCharacter(
  45149. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  45150. {
  45151. front: {
  45152. height: math.unit(5 + 6/12, "feet"),
  45153. weight: math.unit(160, "lb"),
  45154. name: "Front",
  45155. image: {
  45156. source: "./media/characters/zanna-virtuedòttir/front.svg",
  45157. extra: 1227/1174,
  45158. bottom: 37/1264
  45159. }
  45160. },
  45161. },
  45162. [
  45163. {
  45164. name: "Macro",
  45165. height: math.unit(444, "meters"),
  45166. default: true
  45167. },
  45168. ]
  45169. ))
  45170. characterMakers.push(() => makeCharacter(
  45171. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  45172. {
  45173. front: {
  45174. height: math.unit(18 + 7/12, "feet"),
  45175. name: "Front",
  45176. image: {
  45177. source: "./media/characters/rex/front.svg",
  45178. extra: 1941/1807,
  45179. bottom: 66/2007
  45180. }
  45181. },
  45182. back: {
  45183. height: math.unit(18 + 7/12, "feet"),
  45184. name: "Back",
  45185. image: {
  45186. source: "./media/characters/rex/back.svg",
  45187. extra: 1937/1822,
  45188. bottom: 42/1979
  45189. }
  45190. },
  45191. boot: {
  45192. height: math.unit(3.45, "feet"),
  45193. name: "Boot",
  45194. image: {
  45195. source: "./media/characters/rex/boot.svg"
  45196. }
  45197. },
  45198. paw: {
  45199. height: math.unit(4.17, "feet"),
  45200. name: "Paw",
  45201. image: {
  45202. source: "./media/characters/rex/paw.svg"
  45203. }
  45204. },
  45205. head: {
  45206. height: math.unit(6.728, "feet"),
  45207. name: "Head",
  45208. image: {
  45209. source: "./media/characters/rex/head.svg"
  45210. }
  45211. },
  45212. },
  45213. [
  45214. {
  45215. name: "Nano",
  45216. height: math.unit(18 + 7/12, "feet")
  45217. },
  45218. {
  45219. name: "Micro",
  45220. height: math.unit(1.5, "megameters")
  45221. },
  45222. {
  45223. name: "Normal",
  45224. height: math.unit(440, "megameters"),
  45225. default: true
  45226. },
  45227. {
  45228. name: "Macro",
  45229. height: math.unit(2.5, "gigameters")
  45230. },
  45231. {
  45232. name: "Gigamacro",
  45233. height: math.unit(2, "galaxies")
  45234. },
  45235. ]
  45236. ))
  45237. characterMakers.push(() => makeCharacter(
  45238. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  45239. {
  45240. side: {
  45241. height: math.unit(32, "feet"),
  45242. weight: math.unit(250000, "lb"),
  45243. name: "Side",
  45244. image: {
  45245. source: "./media/characters/silverwing/side.svg",
  45246. extra: 1100/1019,
  45247. bottom: 204/1304
  45248. }
  45249. },
  45250. },
  45251. [
  45252. {
  45253. name: "Normal",
  45254. height: math.unit(32, "feet"),
  45255. default: true
  45256. },
  45257. ]
  45258. ))
  45259. characterMakers.push(() => makeCharacter(
  45260. { name: "Tristan Hawthorne", species: ["skunk", "raichu", "umbreon"], tags: ["anthro"] },
  45261. {
  45262. skunkFront: {
  45263. height: math.unit(4 + 6/12, "feet"),
  45264. weight: math.unit(120, "lb"),
  45265. name: "Front",
  45266. image: {
  45267. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  45268. extra: 330/318,
  45269. bottom: 25/355
  45270. },
  45271. form: "skunk",
  45272. default: true
  45273. },
  45274. alolanUmbraichu_front: {
  45275. height: math.unit(2 + 6/12, "feet"),
  45276. name: "Front",
  45277. image: {
  45278. source: "./media/characters/tristan-hawthorne/alolan-umbraichu-front.svg",
  45279. extra: 389/350,
  45280. bottom: 33/422
  45281. },
  45282. form: "alolan-umbraichu",
  45283. default: true
  45284. },
  45285. },
  45286. [
  45287. {
  45288. name: "Normal",
  45289. height: math.unit(4 + 6/12, "feet"),
  45290. form: "skunk",
  45291. default: true
  45292. },
  45293. {
  45294. name: "Normal",
  45295. height: math.unit(2 + 6/12, "feet"),
  45296. form: "alolan-umbraichu",
  45297. default: true
  45298. },
  45299. ],
  45300. {
  45301. "skunk": {
  45302. name: "Skunk",
  45303. default: true
  45304. },
  45305. "alolan-umbraichu": {
  45306. name: "Alolan Umbraichu",
  45307. },
  45308. }
  45309. ))
  45310. characterMakers.push(() => makeCharacter(
  45311. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  45312. {
  45313. front: {
  45314. height: math.unit(5 + 11/12, "feet"),
  45315. weight: math.unit(190, "lb"),
  45316. name: "Front",
  45317. image: {
  45318. source: "./media/characters/mizu/front.svg",
  45319. extra: 1988/1788,
  45320. bottom: 14/2002
  45321. }
  45322. },
  45323. },
  45324. [
  45325. {
  45326. name: "Normal",
  45327. height: math.unit(5 + 11/12, "feet"),
  45328. default: true
  45329. },
  45330. ]
  45331. ))
  45332. characterMakers.push(() => makeCharacter(
  45333. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  45334. {
  45335. front: {
  45336. height: math.unit(1.7, "feet"),
  45337. weight: math.unit(50, "lb"),
  45338. name: "Front",
  45339. image: {
  45340. source: "./media/characters/dechroma/front.svg",
  45341. extra: 1095/859,
  45342. bottom: 64/1159
  45343. }
  45344. },
  45345. },
  45346. [
  45347. {
  45348. name: "Normal",
  45349. height: math.unit(1.7, "feet"),
  45350. default: true
  45351. },
  45352. ]
  45353. ))
  45354. characterMakers.push(() => makeCharacter(
  45355. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  45356. {
  45357. side: {
  45358. height: math.unit(30, "feet"),
  45359. name: "Side",
  45360. image: {
  45361. source: "./media/characters/veluren-thanazel/side.svg",
  45362. extra: 1611/633,
  45363. bottom: 118/1729
  45364. }
  45365. },
  45366. front: {
  45367. height: math.unit(30, "feet"),
  45368. name: "Front",
  45369. image: {
  45370. source: "./media/characters/veluren-thanazel/front.svg",
  45371. extra: 1486/636,
  45372. bottom: 238/1724
  45373. }
  45374. },
  45375. head: {
  45376. height: math.unit(21.4, "feet"),
  45377. name: "Head",
  45378. image: {
  45379. source: "./media/characters/veluren-thanazel/head.svg"
  45380. }
  45381. },
  45382. genitals: {
  45383. height: math.unit(19.4, "feet"),
  45384. name: "Genitals",
  45385. image: {
  45386. source: "./media/characters/veluren-thanazel/genitals.svg"
  45387. }
  45388. },
  45389. },
  45390. [
  45391. {
  45392. name: "Social",
  45393. height: math.unit(6, "feet")
  45394. },
  45395. {
  45396. name: "Play",
  45397. height: math.unit(12, "feet")
  45398. },
  45399. {
  45400. name: "True",
  45401. height: math.unit(30, "feet"),
  45402. default: true
  45403. },
  45404. ]
  45405. ))
  45406. characterMakers.push(() => makeCharacter(
  45407. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  45408. {
  45409. front: {
  45410. height: math.unit(7 + 6/12, "feet"),
  45411. weight: math.unit(500, "kg"),
  45412. name: "Front",
  45413. image: {
  45414. source: "./media/characters/arcturas/front.svg",
  45415. extra: 1700/1500,
  45416. bottom: 145/1845
  45417. }
  45418. },
  45419. },
  45420. [
  45421. {
  45422. name: "Normal",
  45423. height: math.unit(7 + 6/12, "feet"),
  45424. default: true
  45425. },
  45426. ]
  45427. ))
  45428. characterMakers.push(() => makeCharacter(
  45429. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  45430. {
  45431. side: {
  45432. height: math.unit(6, "feet"),
  45433. weight: math.unit(2, "tons"),
  45434. name: "Side",
  45435. image: {
  45436. source: "./media/characters/vitaen/side.svg",
  45437. extra: 1157/617,
  45438. bottom: 122/1279
  45439. }
  45440. },
  45441. },
  45442. [
  45443. {
  45444. name: "Normal",
  45445. height: math.unit(6, "feet"),
  45446. default: true
  45447. },
  45448. ]
  45449. ))
  45450. characterMakers.push(() => makeCharacter(
  45451. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  45452. {
  45453. front: {
  45454. height: math.unit(19, "feet"),
  45455. name: "Front",
  45456. image: {
  45457. source: "./media/characters/fia-dreamweaver/front.svg",
  45458. extra: 1630/1504,
  45459. bottom: 25/1655
  45460. }
  45461. },
  45462. },
  45463. [
  45464. {
  45465. name: "Normal",
  45466. height: math.unit(19, "feet"),
  45467. default: true
  45468. },
  45469. ]
  45470. ))
  45471. characterMakers.push(() => makeCharacter(
  45472. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45473. {
  45474. front: {
  45475. height: math.unit(5 + 4/12, "feet"),
  45476. name: "Front",
  45477. image: {
  45478. source: "./media/characters/artan/front.svg",
  45479. extra: 1618/1535,
  45480. bottom: 46/1664
  45481. }
  45482. },
  45483. back: {
  45484. height: math.unit(5 + 4/12, "feet"),
  45485. name: "Back",
  45486. image: {
  45487. source: "./media/characters/artan/back.svg",
  45488. extra: 1618/1543,
  45489. bottom: 31/1649
  45490. }
  45491. },
  45492. },
  45493. [
  45494. {
  45495. name: "Normal",
  45496. height: math.unit(5 + 4/12, "feet"),
  45497. default: true
  45498. },
  45499. ]
  45500. ))
  45501. characterMakers.push(() => makeCharacter(
  45502. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45503. {
  45504. side: {
  45505. height: math.unit(182, "cm"),
  45506. weight: math.unit(1000, "lb"),
  45507. name: "Side",
  45508. image: {
  45509. source: "./media/characters/silver-dragon/side.svg",
  45510. extra: 710/287,
  45511. bottom: 88/798
  45512. }
  45513. },
  45514. },
  45515. [
  45516. {
  45517. name: "Normal",
  45518. height: math.unit(182, "cm"),
  45519. default: true
  45520. },
  45521. ]
  45522. ))
  45523. characterMakers.push(() => makeCharacter(
  45524. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45525. {
  45526. side: {
  45527. height: math.unit(6 + 6/12, "feet"),
  45528. weight: math.unit(1.5, "tons"),
  45529. name: "Side",
  45530. image: {
  45531. source: "./media/characters/zephyr/side.svg",
  45532. extra: 1436/603,
  45533. bottom: 105/1541
  45534. }
  45535. },
  45536. },
  45537. [
  45538. {
  45539. name: "Normal",
  45540. height: math.unit(6 + 6/12, "feet"),
  45541. default: true
  45542. },
  45543. ]
  45544. ))
  45545. characterMakers.push(() => makeCharacter(
  45546. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45547. {
  45548. side: {
  45549. height: math.unit(1, "feet"),
  45550. name: "Side",
  45551. image: {
  45552. source: "./media/characters/vixye/side.svg",
  45553. extra: 632/541,
  45554. bottom: 0/632
  45555. }
  45556. },
  45557. },
  45558. [
  45559. {
  45560. name: "Normal",
  45561. height: math.unit(1, "feet"),
  45562. default: true
  45563. },
  45564. {
  45565. name: "True",
  45566. height: math.unit(1e15, "multiverses")
  45567. },
  45568. ]
  45569. ))
  45570. characterMakers.push(() => makeCharacter(
  45571. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45572. {
  45573. front: {
  45574. height: math.unit(8 + 2/12, "feet"),
  45575. weight: math.unit(650, "lb"),
  45576. name: "Front",
  45577. image: {
  45578. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45579. extra: 1174/1137,
  45580. bottom: 82/1256
  45581. }
  45582. },
  45583. back: {
  45584. height: math.unit(8 + 2/12, "feet"),
  45585. weight: math.unit(650, "lb"),
  45586. name: "Back",
  45587. image: {
  45588. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45589. extra: 1204/1157,
  45590. bottom: 46/1250
  45591. }
  45592. },
  45593. },
  45594. [
  45595. {
  45596. name: "Wildform",
  45597. height: math.unit(8 + 2/12, "feet"),
  45598. default: true
  45599. },
  45600. ]
  45601. ))
  45602. characterMakers.push(() => makeCharacter(
  45603. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45604. {
  45605. front: {
  45606. height: math.unit(18, "feet"),
  45607. name: "Front",
  45608. image: {
  45609. source: "./media/characters/cyphin/front.svg",
  45610. extra: 970/886,
  45611. bottom: 42/1012
  45612. }
  45613. },
  45614. back: {
  45615. height: math.unit(18, "feet"),
  45616. name: "Back",
  45617. image: {
  45618. source: "./media/characters/cyphin/back.svg",
  45619. extra: 1009/894,
  45620. bottom: 24/1033
  45621. }
  45622. },
  45623. head: {
  45624. height: math.unit(5.05, "feet"),
  45625. name: "Head",
  45626. image: {
  45627. source: "./media/characters/cyphin/head.svg"
  45628. }
  45629. },
  45630. tailbud: {
  45631. height: math.unit(5, "feet"),
  45632. name: "Tailbud",
  45633. image: {
  45634. source: "./media/characters/cyphin/tailbud.svg"
  45635. }
  45636. },
  45637. },
  45638. [
  45639. ]
  45640. ))
  45641. characterMakers.push(() => makeCharacter(
  45642. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45643. {
  45644. side: {
  45645. height: math.unit(10, "feet"),
  45646. weight: math.unit(6, "tons"),
  45647. name: "Side",
  45648. image: {
  45649. source: "./media/characters/raijin/side.svg",
  45650. extra: 1529/613,
  45651. bottom: 337/1866
  45652. }
  45653. },
  45654. },
  45655. [
  45656. {
  45657. name: "Normal",
  45658. height: math.unit(10, "feet"),
  45659. default: true
  45660. },
  45661. ]
  45662. ))
  45663. characterMakers.push(() => makeCharacter(
  45664. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45665. {
  45666. side: {
  45667. height: math.unit(9, "feet"),
  45668. name: "Side",
  45669. image: {
  45670. source: "./media/characters/nilghais/side.svg",
  45671. extra: 1047/744,
  45672. bottom: 91/1138
  45673. }
  45674. },
  45675. head: {
  45676. height: math.unit(3.14, "feet"),
  45677. name: "Head",
  45678. image: {
  45679. source: "./media/characters/nilghais/head.svg"
  45680. }
  45681. },
  45682. mouth: {
  45683. height: math.unit(4.6, "feet"),
  45684. name: "Mouth",
  45685. image: {
  45686. source: "./media/characters/nilghais/mouth.svg"
  45687. }
  45688. },
  45689. wings: {
  45690. height: math.unit(24, "feet"),
  45691. name: "Wings",
  45692. image: {
  45693. source: "./media/characters/nilghais/wings.svg"
  45694. }
  45695. },
  45696. ass: {
  45697. height: math.unit(6.12, "feet"),
  45698. name: "Ass",
  45699. image: {
  45700. source: "./media/characters/nilghais/ass.svg"
  45701. }
  45702. },
  45703. },
  45704. [
  45705. {
  45706. name: "Normal",
  45707. height: math.unit(9, "feet"),
  45708. default: true
  45709. },
  45710. ]
  45711. ))
  45712. characterMakers.push(() => makeCharacter(
  45713. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45714. {
  45715. regular: {
  45716. height: math.unit(16 + 2/12, "feet"),
  45717. weight: math.unit(2300, "lb"),
  45718. name: "Regular",
  45719. image: {
  45720. source: "./media/characters/zolgar/regular.svg",
  45721. extra: 1246/1004,
  45722. bottom: 124/1370
  45723. }
  45724. },
  45725. boxers: {
  45726. height: math.unit(16 + 2/12, "feet"),
  45727. weight: math.unit(2300, "lb"),
  45728. name: "Boxers",
  45729. image: {
  45730. source: "./media/characters/zolgar/boxers.svg",
  45731. extra: 1246/1004,
  45732. bottom: 124/1370
  45733. }
  45734. },
  45735. armored: {
  45736. height: math.unit(16 + 2/12, "feet"),
  45737. weight: math.unit(2300, "lb"),
  45738. name: "Armored",
  45739. image: {
  45740. source: "./media/characters/zolgar/armored.svg",
  45741. extra: 1246/1004,
  45742. bottom: 124/1370
  45743. }
  45744. },
  45745. goth: {
  45746. height: math.unit(16 + 2/12, "feet"),
  45747. weight: math.unit(2300, "lb"),
  45748. name: "Goth",
  45749. image: {
  45750. source: "./media/characters/zolgar/goth.svg",
  45751. extra: 1246/1004,
  45752. bottom: 124/1370
  45753. }
  45754. },
  45755. },
  45756. [
  45757. {
  45758. name: "Shrunken Down",
  45759. height: math.unit(9 + 2/12, "feet")
  45760. },
  45761. {
  45762. name: "Normal",
  45763. height: math.unit(16 + 2/12, "feet"),
  45764. default: true
  45765. },
  45766. ]
  45767. ))
  45768. characterMakers.push(() => makeCharacter(
  45769. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45770. {
  45771. front: {
  45772. height: math.unit(6, "feet"),
  45773. weight: math.unit(168, "lb"),
  45774. name: "Front",
  45775. image: {
  45776. source: "./media/characters/luca/front.svg",
  45777. extra: 841/667,
  45778. bottom: 102/943
  45779. }
  45780. },
  45781. },
  45782. [
  45783. {
  45784. name: "Normal",
  45785. height: math.unit(6, "feet"),
  45786. default: true
  45787. },
  45788. ]
  45789. ))
  45790. characterMakers.push(() => makeCharacter(
  45791. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45792. {
  45793. side: {
  45794. height: math.unit(7 + 3/12, "feet"),
  45795. weight: math.unit(312, "lb"),
  45796. name: "Side",
  45797. image: {
  45798. source: "./media/characters/zezo/side.svg",
  45799. extra: 1192/1067,
  45800. bottom: 63/1255
  45801. }
  45802. },
  45803. },
  45804. [
  45805. {
  45806. name: "Normal",
  45807. height: math.unit(7 + 3/12, "feet"),
  45808. default: true
  45809. },
  45810. ]
  45811. ))
  45812. characterMakers.push(() => makeCharacter(
  45813. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45814. {
  45815. front: {
  45816. height: math.unit(5 + 5/12, "feet"),
  45817. weight: math.unit(170, "lb"),
  45818. name: "Front",
  45819. image: {
  45820. source: "./media/characters/mayso/front.svg",
  45821. extra: 1215/1108,
  45822. bottom: 16/1231
  45823. }
  45824. },
  45825. },
  45826. [
  45827. {
  45828. name: "Normal",
  45829. height: math.unit(5 + 5/12, "feet"),
  45830. default: true
  45831. },
  45832. ]
  45833. ))
  45834. characterMakers.push(() => makeCharacter(
  45835. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45836. {
  45837. front: {
  45838. height: math.unit(4 + 3/12, "feet"),
  45839. weight: math.unit(80, "lb"),
  45840. name: "Front",
  45841. image: {
  45842. source: "./media/characters/hess/front.svg",
  45843. extra: 1200/1123,
  45844. bottom: 16/1216
  45845. }
  45846. },
  45847. },
  45848. [
  45849. {
  45850. name: "Normal",
  45851. height: math.unit(4 + 3/12, "feet"),
  45852. default: true
  45853. },
  45854. ]
  45855. ))
  45856. characterMakers.push(() => makeCharacter(
  45857. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45858. {
  45859. front: {
  45860. height: math.unit(1.9, "meters"),
  45861. name: "Front",
  45862. image: {
  45863. source: "./media/characters/ashgar/front.svg",
  45864. extra: 1177/1146,
  45865. bottom: 99/1276
  45866. }
  45867. },
  45868. back: {
  45869. height: math.unit(1.9, "meters"),
  45870. name: "Back",
  45871. image: {
  45872. source: "./media/characters/ashgar/back.svg",
  45873. extra: 1201/1183,
  45874. bottom: 53/1254
  45875. }
  45876. },
  45877. feral: {
  45878. height: math.unit(1.4, "meters"),
  45879. name: "Feral",
  45880. image: {
  45881. source: "./media/characters/ashgar/feral.svg",
  45882. extra: 370/345,
  45883. bottom: 45/415
  45884. }
  45885. },
  45886. },
  45887. [
  45888. {
  45889. name: "Normal",
  45890. height: math.unit(1.9, "meters"),
  45891. default: true
  45892. },
  45893. ]
  45894. ))
  45895. characterMakers.push(() => makeCharacter(
  45896. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45897. {
  45898. regular: {
  45899. height: math.unit(6, "feet"),
  45900. weight: math.unit(220, "lb"),
  45901. name: "Regular",
  45902. image: {
  45903. source: "./media/characters/phillip/regular.svg",
  45904. extra: 1373/1277,
  45905. bottom: 75/1448
  45906. }
  45907. },
  45908. dressed: {
  45909. height: math.unit(6, "feet"),
  45910. weight: math.unit(220, "lb"),
  45911. name: "Dressed",
  45912. image: {
  45913. source: "./media/characters/phillip/dressed.svg",
  45914. extra: 1373/1277,
  45915. bottom: 75/1448
  45916. }
  45917. },
  45918. paw: {
  45919. height: math.unit(1.44, "feet"),
  45920. name: "Paw",
  45921. image: {
  45922. source: "./media/characters/phillip/paw.svg"
  45923. }
  45924. },
  45925. },
  45926. [
  45927. {
  45928. name: "Normal",
  45929. height: math.unit(6, "feet"),
  45930. default: true
  45931. },
  45932. ]
  45933. ))
  45934. characterMakers.push(() => makeCharacter(
  45935. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45936. {
  45937. side: {
  45938. height: math.unit(42, "feet"),
  45939. name: "Side",
  45940. image: {
  45941. source: "./media/characters/uvula/side.svg",
  45942. extra: 683/586,
  45943. bottom: 60/743
  45944. }
  45945. },
  45946. front: {
  45947. height: math.unit(42, "feet"),
  45948. name: "Front",
  45949. image: {
  45950. source: "./media/characters/uvula/front.svg",
  45951. extra: 705/613,
  45952. bottom: 54/759
  45953. }
  45954. },
  45955. maw: {
  45956. height: math.unit(23.5, "feet"),
  45957. name: "Maw",
  45958. image: {
  45959. source: "./media/characters/uvula/maw.svg"
  45960. }
  45961. },
  45962. },
  45963. [
  45964. {
  45965. name: "Original Size",
  45966. height: math.unit(14, "inches")
  45967. },
  45968. {
  45969. name: "Human Size",
  45970. height: math.unit(6, "feet")
  45971. },
  45972. {
  45973. name: "Big",
  45974. height: math.unit(42, "feet"),
  45975. default: true
  45976. },
  45977. {
  45978. name: "Bigger",
  45979. height: math.unit(100, "feet")
  45980. },
  45981. ]
  45982. ))
  45983. characterMakers.push(() => makeCharacter(
  45984. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45985. {
  45986. front: {
  45987. height: math.unit(5 + 11/12, "feet"),
  45988. name: "Front",
  45989. image: {
  45990. source: "./media/characters/lannah/front.svg",
  45991. extra: 1208/1113,
  45992. bottom: 97/1305
  45993. }
  45994. },
  45995. },
  45996. [
  45997. {
  45998. name: "Normal",
  45999. height: math.unit(5 + 11/12, "feet"),
  46000. default: true
  46001. },
  46002. ]
  46003. ))
  46004. characterMakers.push(() => makeCharacter(
  46005. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  46006. {
  46007. front: {
  46008. height: math.unit(6 + 3/12, "feet"),
  46009. weight: math.unit(3.5, "tons"),
  46010. name: "Front",
  46011. image: {
  46012. source: "./media/characters/emberflame/front.svg",
  46013. extra: 1198/672,
  46014. bottom: 82/1280
  46015. }
  46016. },
  46017. side: {
  46018. height: math.unit(6 + 3/12, "feet"),
  46019. weight: math.unit(3.5, "tons"),
  46020. name: "Side",
  46021. image: {
  46022. source: "./media/characters/emberflame/side.svg",
  46023. extra: 938/527,
  46024. bottom: 56/994
  46025. }
  46026. },
  46027. },
  46028. [
  46029. {
  46030. name: "Normal",
  46031. height: math.unit(6 + 3/12, "feet"),
  46032. default: true
  46033. },
  46034. ]
  46035. ))
  46036. characterMakers.push(() => makeCharacter(
  46037. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  46038. {
  46039. side: {
  46040. height: math.unit(17.5, "feet"),
  46041. weight: math.unit(35, "tons"),
  46042. name: "Side",
  46043. image: {
  46044. source: "./media/characters/sophie-ambrose/side.svg",
  46045. extra: 1573/1242,
  46046. bottom: 71/1644
  46047. }
  46048. },
  46049. maw: {
  46050. height: math.unit(7.4, "feet"),
  46051. name: "Maw",
  46052. image: {
  46053. source: "./media/characters/sophie-ambrose/maw.svg"
  46054. }
  46055. },
  46056. },
  46057. [
  46058. {
  46059. name: "Normal",
  46060. height: math.unit(17.5, "feet"),
  46061. default: true
  46062. },
  46063. ]
  46064. ))
  46065. characterMakers.push(() => makeCharacter(
  46066. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  46067. {
  46068. front: {
  46069. height: math.unit(280, "feet"),
  46070. weight: math.unit(550, "tons"),
  46071. name: "Front",
  46072. image: {
  46073. source: "./media/characters/king-mugi/front.svg",
  46074. extra: 1102/947,
  46075. bottom: 104/1206
  46076. }
  46077. },
  46078. },
  46079. [
  46080. {
  46081. name: "King Mugi",
  46082. height: math.unit(280, "feet"),
  46083. default: true
  46084. },
  46085. ]
  46086. ))
  46087. characterMakers.push(() => makeCharacter(
  46088. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  46089. {
  46090. female: {
  46091. height: math.unit(300, "meters"),
  46092. name: "Front",
  46093. image: {
  46094. source: "./media/characters/nova-fox/female.svg",
  46095. extra: 664/632,
  46096. bottom: 51/715
  46097. },
  46098. form: "female",
  46099. default: true
  46100. },
  46101. male: {
  46102. height: math.unit(300, "meters"),
  46103. name: "Front",
  46104. image: {
  46105. source: "./media/characters/nova-fox/male.svg",
  46106. extra: 663/631,
  46107. bottom: 30/693
  46108. },
  46109. form: "male",
  46110. default: true
  46111. },
  46112. },
  46113. [
  46114. {
  46115. name: "Macro",
  46116. height: math.unit(300, "meters"),
  46117. default: true,
  46118. allForms: true
  46119. },
  46120. ],
  46121. {
  46122. "female": {
  46123. name: "Female",
  46124. default: true
  46125. },
  46126. "male": {
  46127. name: "Male",
  46128. },
  46129. }
  46130. ))
  46131. characterMakers.push(() => makeCharacter(
  46132. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  46133. {
  46134. front: {
  46135. height: math.unit(6 + 3/12, "feet"),
  46136. weight: math.unit(170, "lb"),
  46137. name: "Front",
  46138. image: {
  46139. source: "./media/characters/sam-bat/front.svg",
  46140. extra: 1601/1411,
  46141. bottom: 125/1726
  46142. }
  46143. },
  46144. back: {
  46145. height: math.unit(6 + 3/12, "feet"),
  46146. weight: math.unit(170, "lb"),
  46147. name: "Back",
  46148. image: {
  46149. source: "./media/characters/sam-bat/back.svg",
  46150. extra: 1577/1405,
  46151. bottom: 58/1635
  46152. }
  46153. },
  46154. },
  46155. [
  46156. {
  46157. name: "Normal",
  46158. height: math.unit(6 + 3/12, "feet"),
  46159. default: true
  46160. },
  46161. ]
  46162. ))
  46163. characterMakers.push(() => makeCharacter(
  46164. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  46165. {
  46166. front: {
  46167. height: math.unit(59, "feet"),
  46168. weight: math.unit(40000, "lb"),
  46169. name: "Front",
  46170. image: {
  46171. source: "./media/characters/inari/front.svg",
  46172. extra: 1884/1350,
  46173. bottom: 95/1979
  46174. }
  46175. },
  46176. },
  46177. [
  46178. {
  46179. name: "Gigantamax",
  46180. height: math.unit(59, "feet"),
  46181. default: true
  46182. },
  46183. ]
  46184. ))
  46185. characterMakers.push(() => makeCharacter(
  46186. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  46187. {
  46188. front: {
  46189. height: math.unit(5 + 8/12, "feet"),
  46190. name: "Front",
  46191. image: {
  46192. source: "./media/characters/elizabeth/front.svg",
  46193. extra: 1395/1298,
  46194. bottom: 54/1449
  46195. }
  46196. },
  46197. mouth: {
  46198. height: math.unit(1.97, "feet"),
  46199. name: "Mouth",
  46200. image: {
  46201. source: "./media/characters/elizabeth/mouth.svg"
  46202. }
  46203. },
  46204. foot: {
  46205. height: math.unit(1.17, "feet"),
  46206. name: "Foot",
  46207. image: {
  46208. source: "./media/characters/elizabeth/foot.svg"
  46209. }
  46210. },
  46211. },
  46212. [
  46213. {
  46214. name: "Normal",
  46215. height: math.unit(5 + 8/12, "feet"),
  46216. default: true
  46217. },
  46218. {
  46219. name: "Minimacro",
  46220. height: math.unit(18, "feet")
  46221. },
  46222. {
  46223. name: "Macro",
  46224. height: math.unit(180, "feet")
  46225. },
  46226. ]
  46227. ))
  46228. characterMakers.push(() => makeCharacter(
  46229. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  46230. {
  46231. front: {
  46232. height: math.unit(5 + 2/12, "feet"),
  46233. name: "Front",
  46234. image: {
  46235. source: "./media/characters/october-gossamer/front.svg",
  46236. extra: 505/454,
  46237. bottom: 7/512
  46238. }
  46239. },
  46240. back: {
  46241. height: math.unit(5 + 2/12, "feet"),
  46242. name: "Back",
  46243. image: {
  46244. source: "./media/characters/october-gossamer/back.svg",
  46245. extra: 501/454,
  46246. bottom: 11/512
  46247. }
  46248. },
  46249. },
  46250. [
  46251. {
  46252. name: "Normal",
  46253. height: math.unit(5 + 2/12, "feet"),
  46254. default: true
  46255. },
  46256. ]
  46257. ))
  46258. characterMakers.push(() => makeCharacter(
  46259. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  46260. {
  46261. front: {
  46262. height: math.unit(5, "feet"),
  46263. name: "Front",
  46264. image: {
  46265. source: "./media/characters/epiglottis/front.svg",
  46266. extra: 923/849,
  46267. bottom: 17/940
  46268. }
  46269. },
  46270. },
  46271. [
  46272. {
  46273. name: "Original Size",
  46274. height: math.unit(10, "inches")
  46275. },
  46276. {
  46277. name: "Human Size",
  46278. height: math.unit(5, "feet"),
  46279. default: true
  46280. },
  46281. {
  46282. name: "Big",
  46283. height: math.unit(25, "feet")
  46284. },
  46285. {
  46286. name: "Bigger",
  46287. height: math.unit(50, "feet")
  46288. },
  46289. {
  46290. name: "oh lawd",
  46291. height: math.unit(75, "feet")
  46292. },
  46293. ]
  46294. ))
  46295. characterMakers.push(() => makeCharacter(
  46296. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  46297. {
  46298. front: {
  46299. height: math.unit(2 + 4/12, "feet"),
  46300. weight: math.unit(60, "lb"),
  46301. name: "Front",
  46302. image: {
  46303. source: "./media/characters/lerm/front.svg",
  46304. extra: 796/790,
  46305. bottom: 79/875
  46306. }
  46307. },
  46308. },
  46309. [
  46310. {
  46311. name: "Normal",
  46312. height: math.unit(2 + 4/12, "feet"),
  46313. default: true
  46314. },
  46315. ]
  46316. ))
  46317. characterMakers.push(() => makeCharacter(
  46318. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  46319. {
  46320. front: {
  46321. height: math.unit(5.5, "feet"),
  46322. weight: math.unit(130, "lb"),
  46323. name: "Front",
  46324. image: {
  46325. source: "./media/characters/xena-nebadon/front.svg",
  46326. extra: 1828/1730,
  46327. bottom: 79/1907
  46328. }
  46329. },
  46330. },
  46331. [
  46332. {
  46333. name: "Tiny Puppy",
  46334. height: math.unit(3, "inches")
  46335. },
  46336. {
  46337. name: "Normal",
  46338. height: math.unit(5.5, "feet"),
  46339. default: true
  46340. },
  46341. {
  46342. name: "Lotta Lady",
  46343. height: math.unit(12, "feet")
  46344. },
  46345. {
  46346. name: "Pretty Big",
  46347. height: math.unit(100, "feet")
  46348. },
  46349. {
  46350. name: "Big",
  46351. height: math.unit(500, "feet")
  46352. },
  46353. {
  46354. name: "Skyscraper Toys",
  46355. height: math.unit(2500, "feet")
  46356. },
  46357. {
  46358. name: "Plane Catcher",
  46359. height: math.unit(8, "miles")
  46360. },
  46361. {
  46362. name: "Planet Toys",
  46363. height: math.unit(15, "earths")
  46364. },
  46365. {
  46366. name: "Stardust",
  46367. height: math.unit(0.25, "galaxies")
  46368. },
  46369. {
  46370. name: "Snacks",
  46371. height: math.unit(70, "universes")
  46372. },
  46373. ]
  46374. ))
  46375. characterMakers.push(() => makeCharacter(
  46376. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  46377. {
  46378. front: {
  46379. height: math.unit(1.6, "meters"),
  46380. weight: math.unit(60, "kg"),
  46381. name: "Front",
  46382. image: {
  46383. source: "./media/characters/bounty/front.svg",
  46384. extra: 1426/1308,
  46385. bottom: 15/1441
  46386. }
  46387. },
  46388. back: {
  46389. height: math.unit(1.6, "meters"),
  46390. weight: math.unit(60, "kg"),
  46391. name: "Back",
  46392. image: {
  46393. source: "./media/characters/bounty/back.svg",
  46394. extra: 1417/1307,
  46395. bottom: 8/1425
  46396. }
  46397. },
  46398. },
  46399. [
  46400. {
  46401. name: "Normal",
  46402. height: math.unit(1.6, "meters"),
  46403. default: true
  46404. },
  46405. {
  46406. name: "Macro",
  46407. height: math.unit(300, "meters")
  46408. },
  46409. ]
  46410. ))
  46411. characterMakers.push(() => makeCharacter(
  46412. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  46413. {
  46414. front: {
  46415. height: math.unit(2 + 8/12, "feet"),
  46416. weight: math.unit(15, "lb"),
  46417. name: "Front",
  46418. image: {
  46419. source: "./media/characters/mochi/front.svg",
  46420. extra: 1022/852,
  46421. bottom: 435/1457
  46422. }
  46423. },
  46424. back: {
  46425. height: math.unit(2 + 8/12, "feet"),
  46426. weight: math.unit(15, "lb"),
  46427. name: "Back",
  46428. image: {
  46429. source: "./media/characters/mochi/back.svg",
  46430. extra: 1335/1119,
  46431. bottom: 39/1374
  46432. }
  46433. },
  46434. bird: {
  46435. height: math.unit(2 + 8/12, "feet"),
  46436. weight: math.unit(15, "lb"),
  46437. name: "Bird",
  46438. image: {
  46439. source: "./media/characters/mochi/bird.svg",
  46440. extra: 1251/1113,
  46441. bottom: 178/1429
  46442. }
  46443. },
  46444. kaiju: {
  46445. height: math.unit(154, "feet"),
  46446. weight: math.unit(1e7, "lb"),
  46447. name: "Kaiju",
  46448. image: {
  46449. source: "./media/characters/mochi/kaiju.svg",
  46450. extra: 460/324,
  46451. bottom: 40/500
  46452. }
  46453. },
  46454. head: {
  46455. height: math.unit(1.21, "feet"),
  46456. name: "Head",
  46457. image: {
  46458. source: "./media/characters/mochi/head.svg"
  46459. }
  46460. },
  46461. alternateTail: {
  46462. height: math.unit(2 + 8/12, "feet"),
  46463. weight: math.unit(45, "lb"),
  46464. name: "Alternate Tail",
  46465. image: {
  46466. source: "./media/characters/mochi/alternate-tail.svg",
  46467. extra: 139/76,
  46468. bottom: 45/184
  46469. }
  46470. },
  46471. },
  46472. [
  46473. {
  46474. name: "Micro",
  46475. height: math.unit(2, "inches")
  46476. },
  46477. {
  46478. name: "Normal",
  46479. height: math.unit(2 + 8/12, "feet"),
  46480. default: true
  46481. },
  46482. {
  46483. name: "Macro",
  46484. height: math.unit(106, "feet")
  46485. },
  46486. ]
  46487. ))
  46488. characterMakers.push(() => makeCharacter(
  46489. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46490. {
  46491. front: {
  46492. height: math.unit(5.67, "feet"),
  46493. weight: math.unit(135, "lb"),
  46494. name: "Front",
  46495. image: {
  46496. source: "./media/characters/sarel/front.svg",
  46497. extra: 865/788,
  46498. bottom: 97/962
  46499. }
  46500. },
  46501. back: {
  46502. height: math.unit(5.67, "feet"),
  46503. weight: math.unit(135, "lb"),
  46504. name: "Back",
  46505. image: {
  46506. source: "./media/characters/sarel/back.svg",
  46507. extra: 857/777,
  46508. bottom: 32/889
  46509. }
  46510. },
  46511. chozoan: {
  46512. height: math.unit(5.67, "feet"),
  46513. weight: math.unit(135, "lb"),
  46514. name: "Chozoan",
  46515. image: {
  46516. source: "./media/characters/sarel/chozoan.svg",
  46517. extra: 865/788,
  46518. bottom: 97/962
  46519. }
  46520. },
  46521. current: {
  46522. height: math.unit(5.67, "feet"),
  46523. weight: math.unit(135, "lb"),
  46524. name: "Current",
  46525. image: {
  46526. source: "./media/characters/sarel/current.svg",
  46527. extra: 865/788,
  46528. bottom: 97/962
  46529. }
  46530. },
  46531. head: {
  46532. height: math.unit(1.77, "feet"),
  46533. name: "Head",
  46534. image: {
  46535. source: "./media/characters/sarel/head.svg"
  46536. }
  46537. },
  46538. claws: {
  46539. height: math.unit(1.8, "feet"),
  46540. name: "Claws",
  46541. image: {
  46542. source: "./media/characters/sarel/claws.svg"
  46543. }
  46544. },
  46545. clawsAlt: {
  46546. height: math.unit(1.8, "feet"),
  46547. name: "Claws (Alt)",
  46548. image: {
  46549. source: "./media/characters/sarel/claws-alt.svg"
  46550. }
  46551. },
  46552. },
  46553. [
  46554. {
  46555. name: "Normal",
  46556. height: math.unit(5.67, "feet"),
  46557. default: true
  46558. },
  46559. ]
  46560. ))
  46561. characterMakers.push(() => makeCharacter(
  46562. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46563. {
  46564. front: {
  46565. height: math.unit(5500, "feet"),
  46566. name: "Front",
  46567. image: {
  46568. source: "./media/characters/alyonia/front.svg",
  46569. extra: 1200/1135,
  46570. bottom: 29/1229
  46571. }
  46572. },
  46573. back: {
  46574. height: math.unit(5500, "feet"),
  46575. name: "Back",
  46576. image: {
  46577. source: "./media/characters/alyonia/back.svg",
  46578. extra: 1205/1138,
  46579. bottom: 10/1215
  46580. }
  46581. },
  46582. },
  46583. [
  46584. {
  46585. name: "Small",
  46586. height: math.unit(10, "feet")
  46587. },
  46588. {
  46589. name: "Macro",
  46590. height: math.unit(500, "feet")
  46591. },
  46592. {
  46593. name: "Mega Macro",
  46594. height: math.unit(5500, "feet"),
  46595. default: true
  46596. },
  46597. {
  46598. name: "Mega Macro+",
  46599. height: math.unit(500000, "feet")
  46600. },
  46601. {
  46602. name: "Giga Macro",
  46603. height: math.unit(3000, "miles")
  46604. },
  46605. {
  46606. name: "Tera Macro",
  46607. height: math.unit(2.8e6, "miles")
  46608. },
  46609. {
  46610. name: "Galactic",
  46611. height: math.unit(120000, "lightyears")
  46612. },
  46613. ]
  46614. ))
  46615. characterMakers.push(() => makeCharacter(
  46616. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46617. {
  46618. werewolf: {
  46619. height: math.unit(8, "feet"),
  46620. weight: math.unit(425, "lb"),
  46621. name: "Werewolf",
  46622. image: {
  46623. source: "./media/characters/autumn/werewolf.svg",
  46624. extra: 2154/2031,
  46625. bottom: 160/2314
  46626. }
  46627. },
  46628. human: {
  46629. height: math.unit(5 + 8/12, "feet"),
  46630. weight: math.unit(150, "lb"),
  46631. name: "Human",
  46632. image: {
  46633. source: "./media/characters/autumn/human.svg",
  46634. extra: 1200/1149,
  46635. bottom: 30/1230
  46636. }
  46637. },
  46638. },
  46639. [
  46640. {
  46641. name: "Normal",
  46642. height: math.unit(8, "feet"),
  46643. default: true
  46644. },
  46645. ]
  46646. ))
  46647. characterMakers.push(() => makeCharacter(
  46648. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46649. {
  46650. front: {
  46651. height: math.unit(8 + 5/12, "feet"),
  46652. weight: math.unit(825, "lb"),
  46653. name: "Front",
  46654. image: {
  46655. source: "./media/characters/cobalt-charizard/front.svg",
  46656. extra: 1268/1155,
  46657. bottom: 122/1390
  46658. }
  46659. },
  46660. side: {
  46661. height: math.unit(8 + 5/12, "feet"),
  46662. weight: math.unit(825, "lb"),
  46663. name: "Side",
  46664. image: {
  46665. source: "./media/characters/cobalt-charizard/side.svg",
  46666. extra: 1348/1257,
  46667. bottom: 58/1406
  46668. }
  46669. },
  46670. gMax: {
  46671. height: math.unit(134 + 11/12, "feet"),
  46672. name: "G-Max",
  46673. image: {
  46674. source: "./media/characters/cobalt-charizard/g-max.svg",
  46675. extra: 1835/1541,
  46676. bottom: 151/1986
  46677. }
  46678. },
  46679. },
  46680. [
  46681. {
  46682. name: "Normal",
  46683. height: math.unit(8 + 5/12, "feet"),
  46684. default: true
  46685. },
  46686. ]
  46687. ))
  46688. characterMakers.push(() => makeCharacter(
  46689. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46690. {
  46691. front: {
  46692. height: math.unit(6 + 3/12, "feet"),
  46693. weight: math.unit(210, "lb"),
  46694. name: "Front",
  46695. image: {
  46696. source: "./media/characters/stella/front.svg",
  46697. extra: 3549/3335,
  46698. bottom: 51/3600
  46699. }
  46700. },
  46701. },
  46702. [
  46703. {
  46704. name: "Normal",
  46705. height: math.unit(6 + 3/12, "feet"),
  46706. default: true
  46707. },
  46708. ]
  46709. ))
  46710. characterMakers.push(() => makeCharacter(
  46711. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46712. {
  46713. front: {
  46714. height: math.unit(5, "feet"),
  46715. weight: math.unit(90, "lb"),
  46716. name: "Front",
  46717. image: {
  46718. source: "./media/characters/riley-bishop/front.svg",
  46719. extra: 1450/1428,
  46720. bottom: 152/1602
  46721. }
  46722. },
  46723. },
  46724. [
  46725. {
  46726. name: "Normal",
  46727. height: math.unit(5, "feet"),
  46728. default: true
  46729. },
  46730. ]
  46731. ))
  46732. characterMakers.push(() => makeCharacter(
  46733. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46734. {
  46735. side: {
  46736. height: math.unit(8 + 2/12, "feet"),
  46737. weight: math.unit(500, "kg"),
  46738. name: "Side",
  46739. image: {
  46740. source: "./media/characters/theo-arcanine/side.svg",
  46741. extra: 1342/1074,
  46742. bottom: 111/1453
  46743. }
  46744. },
  46745. },
  46746. [
  46747. {
  46748. name: "Normal",
  46749. height: math.unit(8 + 2/12, "feet"),
  46750. default: true
  46751. },
  46752. ]
  46753. ))
  46754. characterMakers.push(() => makeCharacter(
  46755. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46756. {
  46757. front: {
  46758. height: math.unit(4, "feet"),
  46759. name: "Front",
  46760. image: {
  46761. source: "./media/characters/kali/front.svg",
  46762. extra: 1074/867,
  46763. bottom: 34/1108
  46764. }
  46765. },
  46766. back: {
  46767. height: math.unit(4, "feet"),
  46768. name: "Back",
  46769. image: {
  46770. source: "./media/characters/kali/back.svg",
  46771. extra: 1068/863,
  46772. bottom: 26/1094
  46773. }
  46774. },
  46775. frontAlt: {
  46776. height: math.unit(4, "feet"),
  46777. name: "Front (Alt)",
  46778. image: {
  46779. source: "./media/characters/kali/front-alt.svg",
  46780. extra: 1921/1357,
  46781. bottom: 70/1991
  46782. }
  46783. },
  46784. },
  46785. [
  46786. {
  46787. name: "Normal",
  46788. height: math.unit(4, "feet"),
  46789. default: true
  46790. },
  46791. {
  46792. name: "Big'vali",
  46793. height: math.unit(11, "feet")
  46794. },
  46795. {
  46796. name: "Macro",
  46797. height: math.unit(32, "meters")
  46798. },
  46799. {
  46800. name: "Macro+",
  46801. height: math.unit(150, "meters")
  46802. },
  46803. {
  46804. name: "Megamacro",
  46805. height: math.unit(7500, "meters")
  46806. },
  46807. {
  46808. name: "Megamacro+",
  46809. height: math.unit(80, "kilometers")
  46810. },
  46811. ]
  46812. ))
  46813. characterMakers.push(() => makeCharacter(
  46814. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46815. {
  46816. side: {
  46817. height: math.unit(5 + 11/12, "feet"),
  46818. weight: math.unit(236, "lb"),
  46819. name: "Side",
  46820. image: {
  46821. source: "./media/characters/gapp/side.svg",
  46822. extra: 775/340,
  46823. bottom: 58/833
  46824. }
  46825. },
  46826. mouth: {
  46827. height: math.unit(2.98, "feet"),
  46828. name: "Mouth",
  46829. image: {
  46830. source: "./media/characters/gapp/mouth.svg"
  46831. }
  46832. },
  46833. },
  46834. [
  46835. {
  46836. name: "Normal",
  46837. height: math.unit(5 + 1/12, "feet"),
  46838. default: true
  46839. },
  46840. ]
  46841. ))
  46842. characterMakers.push(() => makeCharacter(
  46843. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46844. {
  46845. front: {
  46846. height: math.unit(6, "feet"),
  46847. name: "Front",
  46848. image: {
  46849. source: "./media/characters/persephone/front.svg",
  46850. extra: 1895/1717,
  46851. bottom: 96/1991
  46852. }
  46853. },
  46854. back: {
  46855. height: math.unit(6, "feet"),
  46856. name: "Back",
  46857. image: {
  46858. source: "./media/characters/persephone/back.svg",
  46859. extra: 1868/1679,
  46860. bottom: 26/1894
  46861. }
  46862. },
  46863. casual: {
  46864. height: math.unit(6, "feet"),
  46865. name: "Casual",
  46866. image: {
  46867. source: "./media/characters/persephone/casual.svg",
  46868. extra: 1713/1541,
  46869. bottom: 76/1789
  46870. }
  46871. },
  46872. gaming: {
  46873. height: math.unit(3.55, "feet"),
  46874. name: "Gaming",
  46875. image: {
  46876. source: "./media/characters/persephone/gaming.svg",
  46877. extra: 1242/1038,
  46878. bottom: 66/1308
  46879. }
  46880. },
  46881. head: {
  46882. height: math.unit(2.15, "feet"),
  46883. name: "😐",
  46884. image: {
  46885. source: "./media/characters/persephone/head.svg"
  46886. }
  46887. },
  46888. talking: {
  46889. height: math.unit(2.5, "feet"),
  46890. name: "💬",
  46891. image: {
  46892. source: "./media/characters/persephone/talking.svg"
  46893. }
  46894. },
  46895. hmm: {
  46896. height: math.unit(2.28, "feet"),
  46897. name: "🤨",
  46898. image: {
  46899. source: "./media/characters/persephone/hmm.svg"
  46900. }
  46901. },
  46902. },
  46903. [
  46904. {
  46905. name: "Human Size",
  46906. height: math.unit(6, "feet")
  46907. },
  46908. {
  46909. name: "Big Steppy",
  46910. height: math.unit(600, "meters"),
  46911. default: true
  46912. },
  46913. {
  46914. name: "Galaxy Brain",
  46915. height: math.unit(1, "zettameter")
  46916. },
  46917. ]
  46918. ))
  46919. characterMakers.push(() => makeCharacter(
  46920. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46921. {
  46922. front: {
  46923. height: math.unit(1.85, "meters"),
  46924. name: "Front",
  46925. image: {
  46926. source: "./media/characters/riley-foxthing/front.svg",
  46927. extra: 1495/1354,
  46928. bottom: 122/1617
  46929. }
  46930. },
  46931. frontAlt: {
  46932. height: math.unit(1.85, "meters"),
  46933. name: "Front (Alt)",
  46934. image: {
  46935. source: "./media/characters/riley-foxthing/front-alt.svg",
  46936. extra: 1572/1389,
  46937. bottom: 116/1688
  46938. }
  46939. },
  46940. },
  46941. [
  46942. {
  46943. name: "Normal Sized",
  46944. height: math.unit(1.85, "meters"),
  46945. default: true
  46946. },
  46947. {
  46948. name: "Quite Sizable",
  46949. height: math.unit(5, "meters")
  46950. },
  46951. {
  46952. name: "Rather Large",
  46953. height: math.unit(20, "meters")
  46954. },
  46955. {
  46956. name: "Macro",
  46957. height: math.unit(450, "meters")
  46958. },
  46959. {
  46960. name: "Giga",
  46961. height: math.unit(5, "km")
  46962. },
  46963. ]
  46964. ))
  46965. characterMakers.push(() => makeCharacter(
  46966. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46967. {
  46968. front: {
  46969. height: math.unit(6, "feet"),
  46970. weight: math.unit(200, "lb"),
  46971. name: "Front",
  46972. image: {
  46973. source: "./media/characters/blizzard/front.svg",
  46974. extra: 1136/990,
  46975. bottom: 136/1272
  46976. }
  46977. },
  46978. back: {
  46979. height: math.unit(6, "feet"),
  46980. weight: math.unit(200, "lb"),
  46981. name: "Back",
  46982. image: {
  46983. source: "./media/characters/blizzard/back.svg",
  46984. extra: 1175/1034,
  46985. bottom: 97/1272
  46986. }
  46987. },
  46988. sitting: {
  46989. height: math.unit(3.725, "feet"),
  46990. weight: math.unit(200, "lb"),
  46991. name: "Sitting",
  46992. image: {
  46993. source: "./media/characters/blizzard/sitting.svg",
  46994. extra: 581/485,
  46995. bottom: 90/671
  46996. }
  46997. },
  46998. frontWizard: {
  46999. height: math.unit(7.9, "feet"),
  47000. weight: math.unit(200, "lb"),
  47001. name: "Front (Wizard)",
  47002. image: {
  47003. source: "./media/characters/blizzard/front-wizard.svg"
  47004. }
  47005. },
  47006. backWizard: {
  47007. height: math.unit(7.9, "feet"),
  47008. weight: math.unit(200, "lb"),
  47009. name: "Back (Wizard)",
  47010. image: {
  47011. source: "./media/characters/blizzard/back-wizard.svg"
  47012. }
  47013. },
  47014. frontNsfw: {
  47015. height: math.unit(6, "feet"),
  47016. weight: math.unit(200, "lb"),
  47017. name: "Front (NSFW)",
  47018. image: {
  47019. source: "./media/characters/blizzard/front-nsfw.svg",
  47020. extra: 1136/990,
  47021. bottom: 136/1272
  47022. }
  47023. },
  47024. backNsfw: {
  47025. height: math.unit(6, "feet"),
  47026. weight: math.unit(200, "lb"),
  47027. name: "Back (NSFW)",
  47028. image: {
  47029. source: "./media/characters/blizzard/back-nsfw.svg",
  47030. extra: 1175/1034,
  47031. bottom: 97/1272
  47032. }
  47033. },
  47034. sittingNsfw: {
  47035. height: math.unit(3.725, "feet"),
  47036. weight: math.unit(200, "lb"),
  47037. name: "Sitting (NSFW)",
  47038. image: {
  47039. source: "./media/characters/blizzard/sitting-nsfw.svg",
  47040. extra: 581/485,
  47041. bottom: 90/671
  47042. }
  47043. },
  47044. wizardFrontNsfw: {
  47045. height: math.unit(7.9, "feet"),
  47046. weight: math.unit(200, "lb"),
  47047. name: "Wizard (Front, NSFW)",
  47048. image: {
  47049. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  47050. }
  47051. },
  47052. },
  47053. [
  47054. {
  47055. name: "Normal",
  47056. height: math.unit(6, "feet"),
  47057. default: true
  47058. },
  47059. ]
  47060. ))
  47061. characterMakers.push(() => makeCharacter(
  47062. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  47063. {
  47064. front: {
  47065. height: math.unit(5 + 2/12, "feet"),
  47066. name: "Front",
  47067. image: {
  47068. source: "./media/characters/lumi/front.svg",
  47069. extra: 1328/1268,
  47070. bottom: 103/1431
  47071. }
  47072. },
  47073. back: {
  47074. height: math.unit(5 + 2/12, "feet"),
  47075. name: "Back",
  47076. image: {
  47077. source: "./media/characters/lumi/back.svg",
  47078. extra: 1381/1327,
  47079. bottom: 43/1424
  47080. }
  47081. },
  47082. },
  47083. [
  47084. {
  47085. name: "Normal",
  47086. height: math.unit(5 + 2/12, "feet"),
  47087. default: true
  47088. },
  47089. ]
  47090. ))
  47091. characterMakers.push(() => makeCharacter(
  47092. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  47093. {
  47094. front: {
  47095. height: math.unit(5 + 9/12, "feet"),
  47096. name: "Front",
  47097. image: {
  47098. source: "./media/characters/aliya-cotton/front.svg",
  47099. extra: 577/564,
  47100. bottom: 29/606
  47101. }
  47102. },
  47103. },
  47104. [
  47105. {
  47106. name: "Normal",
  47107. height: math.unit(5 + 9/12, "feet"),
  47108. default: true
  47109. },
  47110. ]
  47111. ))
  47112. characterMakers.push(() => makeCharacter(
  47113. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  47114. {
  47115. front: {
  47116. height: math.unit(2.7, "meters"),
  47117. weight: math.unit(25000, "lb"),
  47118. name: "Front",
  47119. image: {
  47120. source: "./media/characters/noah-luxray/front.svg",
  47121. extra: 1644/825,
  47122. bottom: 339/1983
  47123. }
  47124. },
  47125. side: {
  47126. height: math.unit(2.97, "meters"),
  47127. weight: math.unit(25000, "lb"),
  47128. name: "Side",
  47129. image: {
  47130. source: "./media/characters/noah-luxray/side.svg",
  47131. extra: 1319/650,
  47132. bottom: 163/1482
  47133. }
  47134. },
  47135. dick: {
  47136. height: math.unit(7.4, "feet"),
  47137. weight: math.unit(2500, "lb"),
  47138. name: "Dick",
  47139. image: {
  47140. source: "./media/characters/noah-luxray/dick.svg"
  47141. }
  47142. },
  47143. dickAlt: {
  47144. height: math.unit(10.83, "feet"),
  47145. weight: math.unit(2500, "lb"),
  47146. name: "Dick (Alt)",
  47147. image: {
  47148. source: "./media/characters/noah-luxray/dick-alt.svg"
  47149. }
  47150. },
  47151. },
  47152. [
  47153. {
  47154. name: "BIG",
  47155. height: math.unit(2.7, "meters"),
  47156. default: true
  47157. },
  47158. ]
  47159. ))
  47160. characterMakers.push(() => makeCharacter(
  47161. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  47162. {
  47163. standing: {
  47164. height: math.unit(183, "cm"),
  47165. weight: math.unit(68, "kg"),
  47166. name: "Standing",
  47167. image: {
  47168. source: "./media/characters/arion/standing.svg",
  47169. extra: 1869/1807,
  47170. bottom: 93/1962
  47171. }
  47172. },
  47173. reclining: {
  47174. height: math.unit(70.5, "cm"),
  47175. weight: math.unit(68, "lb"),
  47176. name: "Reclining",
  47177. image: {
  47178. source: "./media/characters/arion/reclining.svg",
  47179. extra: 937/870,
  47180. bottom: 63/1000
  47181. }
  47182. },
  47183. },
  47184. [
  47185. {
  47186. name: "Colossus Size, Low",
  47187. height: math.unit(33, "meters"),
  47188. default: true
  47189. },
  47190. {
  47191. name: "Colossus Size, Mid",
  47192. height: math.unit(52, "meters")
  47193. },
  47194. {
  47195. name: "Colossus Size, High",
  47196. height: math.unit(60, "meters")
  47197. },
  47198. {
  47199. name: "Titan Size, Low",
  47200. height: math.unit(91, "meters"),
  47201. },
  47202. {
  47203. name: "Titan Size, Mid",
  47204. height: math.unit(122, "meters")
  47205. },
  47206. {
  47207. name: "Titan Size, High",
  47208. height: math.unit(162, "meters")
  47209. },
  47210. ]
  47211. ))
  47212. characterMakers.push(() => makeCharacter(
  47213. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  47214. {
  47215. front: {
  47216. height: math.unit(53, "meters"),
  47217. name: "Front",
  47218. image: {
  47219. source: "./media/characters/stellar-marbey/front.svg",
  47220. extra: 1913/1805,
  47221. bottom: 92/2005
  47222. }
  47223. },
  47224. back: {
  47225. height: math.unit(53, "meters"),
  47226. name: "Back",
  47227. image: {
  47228. source: "./media/characters/stellar-marbey/back.svg",
  47229. extra: 1960/1851,
  47230. bottom: 28/1988
  47231. }
  47232. },
  47233. mouth: {
  47234. height: math.unit(3.5, "meters"),
  47235. name: "Mouth",
  47236. image: {
  47237. source: "./media/characters/stellar-marbey/mouth.svg"
  47238. }
  47239. },
  47240. },
  47241. [
  47242. {
  47243. name: "Macro",
  47244. height: math.unit(53, "meters"),
  47245. default: true
  47246. },
  47247. ]
  47248. ))
  47249. characterMakers.push(() => makeCharacter(
  47250. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  47251. {
  47252. front: {
  47253. height: math.unit(8 + 1/12, "feet"),
  47254. weight: math.unit(233, "lb"),
  47255. name: "Front",
  47256. image: {
  47257. source: "./media/characters/matsu/front.svg",
  47258. extra: 832/772,
  47259. bottom: 40/872
  47260. }
  47261. },
  47262. back: {
  47263. height: math.unit(8 + 1/12, "feet"),
  47264. weight: math.unit(233, "lb"),
  47265. name: "Back",
  47266. image: {
  47267. source: "./media/characters/matsu/back.svg",
  47268. extra: 839/780,
  47269. bottom: 47/886
  47270. }
  47271. },
  47272. },
  47273. [
  47274. {
  47275. name: "Normal",
  47276. height: math.unit(8 + 1/12, "feet"),
  47277. default: true
  47278. },
  47279. ]
  47280. ))
  47281. characterMakers.push(() => makeCharacter(
  47282. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  47283. {
  47284. front: {
  47285. height: math.unit(4, "feet"),
  47286. weight: math.unit(148, "lb"),
  47287. name: "Front",
  47288. image: {
  47289. source: "./media/characters/thiz/front.svg",
  47290. extra: 1913/1748,
  47291. bottom: 62/1975
  47292. }
  47293. },
  47294. },
  47295. [
  47296. {
  47297. name: "Normal",
  47298. height: math.unit(4, "feet"),
  47299. default: true
  47300. },
  47301. ]
  47302. ))
  47303. characterMakers.push(() => makeCharacter(
  47304. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  47305. {
  47306. front: {
  47307. height: math.unit(7 + 6/12, "feet"),
  47308. weight: math.unit(267, "lb"),
  47309. name: "Front",
  47310. image: {
  47311. source: "./media/characters/marcel/front.svg",
  47312. extra: 1221/1096,
  47313. bottom: 76/1297
  47314. }
  47315. },
  47316. },
  47317. [
  47318. {
  47319. name: "Normal",
  47320. height: math.unit(7 + 6/12, "feet"),
  47321. default: true
  47322. },
  47323. ]
  47324. ))
  47325. characterMakers.push(() => makeCharacter(
  47326. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  47327. {
  47328. side: {
  47329. height: math.unit(42, "meters"),
  47330. name: "Side",
  47331. image: {
  47332. source: "./media/characters/flake/side.svg",
  47333. extra: 1525/1306,
  47334. bottom: 209/1734
  47335. }
  47336. },
  47337. },
  47338. [
  47339. {
  47340. name: "Normal",
  47341. height: math.unit(42, "meters"),
  47342. default: true
  47343. },
  47344. ]
  47345. ))
  47346. characterMakers.push(() => makeCharacter(
  47347. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  47348. {
  47349. dressed: {
  47350. height: math.unit(6 + 4/12, "feet"),
  47351. weight: math.unit(520, "lb"),
  47352. name: "Dressed",
  47353. image: {
  47354. source: "./media/characters/someonne/dressed.svg",
  47355. extra: 1020/1010,
  47356. bottom: 178/1198
  47357. }
  47358. },
  47359. undressed: {
  47360. height: math.unit(6 + 4/12, "feet"),
  47361. weight: math.unit(520, "lb"),
  47362. name: "Undressed",
  47363. image: {
  47364. source: "./media/characters/someonne/undressed.svg",
  47365. extra: 1019/1014,
  47366. bottom: 169/1188
  47367. }
  47368. },
  47369. },
  47370. [
  47371. {
  47372. name: "Normal",
  47373. height: math.unit(6 + 4/12, "feet"),
  47374. default: true
  47375. },
  47376. ]
  47377. ))
  47378. characterMakers.push(() => makeCharacter(
  47379. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  47380. {
  47381. front: {
  47382. height: math.unit(3, "feet"),
  47383. weight: math.unit(30, "lb"),
  47384. name: "Front",
  47385. image: {
  47386. source: "./media/characters/till/front.svg",
  47387. extra: 892/823,
  47388. bottom: 55/947
  47389. }
  47390. },
  47391. },
  47392. [
  47393. {
  47394. name: "Normal",
  47395. height: math.unit(3, "feet"),
  47396. default: true
  47397. },
  47398. ]
  47399. ))
  47400. characterMakers.push(() => makeCharacter(
  47401. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  47402. {
  47403. front: {
  47404. height: math.unit(9 + 8/12, "feet"),
  47405. weight: math.unit(800, "lb"),
  47406. name: "Front",
  47407. image: {
  47408. source: "./media/characters/sydney-heki/front.svg",
  47409. extra: 1360/1300,
  47410. bottom: 22/1382
  47411. }
  47412. },
  47413. back: {
  47414. height: math.unit(9 + 8/12, "feet"),
  47415. weight: math.unit(800, "lb"),
  47416. name: "Back",
  47417. image: {
  47418. source: "./media/characters/sydney-heki/back.svg",
  47419. extra: 1356/1293,
  47420. bottom: 12/1368
  47421. }
  47422. },
  47423. frontDressed: {
  47424. height: math.unit(9 + 8/12, "feet"),
  47425. weight: math.unit(800, "lb"),
  47426. name: "Front (Dressed)",
  47427. image: {
  47428. source: "./media/characters/sydney-heki/front-dressed.svg",
  47429. extra: 1360/1300,
  47430. bottom: 22/1382
  47431. }
  47432. },
  47433. },
  47434. [
  47435. {
  47436. name: "Normal",
  47437. height: math.unit(9 + 8/12, "feet"),
  47438. default: true
  47439. },
  47440. {
  47441. name: "Macro",
  47442. height: math.unit(500, "feet")
  47443. },
  47444. {
  47445. name: "Megamacro",
  47446. height: math.unit(3.6, "miles")
  47447. },
  47448. ]
  47449. ))
  47450. characterMakers.push(() => makeCharacter(
  47451. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  47452. {
  47453. front: {
  47454. height: math.unit(200, "cm"),
  47455. weight: math.unit(250, "lb"),
  47456. name: "Front",
  47457. image: {
  47458. source: "./media/characters/fowler-karlsson/front.svg",
  47459. extra: 897/845,
  47460. bottom: 123/1020
  47461. }
  47462. },
  47463. back: {
  47464. height: math.unit(200, "cm"),
  47465. weight: math.unit(250, "lb"),
  47466. name: "Back",
  47467. image: {
  47468. source: "./media/characters/fowler-karlsson/back.svg",
  47469. extra: 999/944,
  47470. bottom: 26/1025
  47471. }
  47472. },
  47473. dick: {
  47474. height: math.unit(1.92, "feet"),
  47475. weight: math.unit(150, "lb"),
  47476. name: "Dick",
  47477. image: {
  47478. source: "./media/characters/fowler-karlsson/dick.svg"
  47479. }
  47480. },
  47481. },
  47482. [
  47483. {
  47484. name: "Normal",
  47485. height: math.unit(200, "cm"),
  47486. default: true
  47487. },
  47488. {
  47489. name: "Smaller Macro",
  47490. height: math.unit(90, "m")
  47491. },
  47492. {
  47493. name: "Macro",
  47494. height: math.unit(150, "m")
  47495. },
  47496. {
  47497. name: "Bigger Macro",
  47498. height: math.unit(300, "m")
  47499. },
  47500. ]
  47501. ))
  47502. characterMakers.push(() => makeCharacter(
  47503. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47504. {
  47505. side: {
  47506. height: math.unit(8 + 2/12, "feet"),
  47507. weight: math.unit(1, "tonne"),
  47508. name: "Side",
  47509. image: {
  47510. source: "./media/characters/rylide/side.svg",
  47511. extra: 1318/1034,
  47512. bottom: 106/1424
  47513. }
  47514. },
  47515. sitting: {
  47516. height: math.unit(303, "cm"),
  47517. weight: math.unit(1, "tonne"),
  47518. name: "Sitting",
  47519. image: {
  47520. source: "./media/characters/rylide/sitting.svg",
  47521. extra: 1303/1103,
  47522. bottom: 36/1339
  47523. }
  47524. },
  47525. },
  47526. [
  47527. {
  47528. name: "Normal",
  47529. height: math.unit(8 + 2/12, "feet"),
  47530. default: true
  47531. },
  47532. ]
  47533. ))
  47534. characterMakers.push(() => makeCharacter(
  47535. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47536. {
  47537. front: {
  47538. height: math.unit(5 + 10/12, "feet"),
  47539. weight: math.unit(160, "lb"),
  47540. name: "Front",
  47541. image: {
  47542. source: "./media/characters/pudask/front.svg",
  47543. extra: 1616/1590,
  47544. bottom: 161/1777
  47545. }
  47546. },
  47547. },
  47548. [
  47549. {
  47550. name: "Ferret Height",
  47551. height: math.unit(2 + 5/12, "feet")
  47552. },
  47553. {
  47554. name: "Canon Height",
  47555. height: math.unit(5 + 10/12, "feet"),
  47556. default: true
  47557. },
  47558. ]
  47559. ))
  47560. characterMakers.push(() => makeCharacter(
  47561. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47562. {
  47563. front: {
  47564. height: math.unit(3 + 6/12, "feet"),
  47565. weight: math.unit(60, "lb"),
  47566. name: "Front",
  47567. image: {
  47568. source: "./media/characters/ramita/front.svg",
  47569. extra: 1402/1232,
  47570. bottom: 62/1464
  47571. }
  47572. },
  47573. dressed: {
  47574. height: math.unit(3 + 6/12, "feet"),
  47575. weight: math.unit(60, "lb"),
  47576. name: "Dressed",
  47577. image: {
  47578. source: "./media/characters/ramita/dressed.svg",
  47579. extra: 1534/1249,
  47580. bottom: 50/1584
  47581. }
  47582. },
  47583. },
  47584. [
  47585. {
  47586. name: "Normal",
  47587. height: math.unit(3 + 6/12, "feet"),
  47588. default: true
  47589. },
  47590. ]
  47591. ))
  47592. characterMakers.push(() => makeCharacter(
  47593. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47594. {
  47595. front: {
  47596. height: math.unit(8, "feet"),
  47597. name: "Front",
  47598. image: {
  47599. source: "./media/characters/ark/front.svg",
  47600. extra: 772/693,
  47601. bottom: 45/817
  47602. }
  47603. },
  47604. },
  47605. [
  47606. {
  47607. name: "Normal",
  47608. height: math.unit(8, "feet"),
  47609. default: true
  47610. },
  47611. ]
  47612. ))
  47613. characterMakers.push(() => makeCharacter(
  47614. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47615. {
  47616. front: {
  47617. height: math.unit(6, "feet"),
  47618. weight: math.unit(250, "lb"),
  47619. volume: math.unit(5/8, "gallons"),
  47620. name: "Front",
  47621. image: {
  47622. source: "./media/characters/ludwig-horn/front.svg",
  47623. extra: 1782/1635,
  47624. bottom: 96/1878
  47625. }
  47626. },
  47627. back: {
  47628. height: math.unit(6, "feet"),
  47629. weight: math.unit(250, "lb"),
  47630. volume: math.unit(5/8, "gallons"),
  47631. name: "Back",
  47632. image: {
  47633. source: "./media/characters/ludwig-horn/back.svg",
  47634. extra: 1874/1729,
  47635. bottom: 27/1901
  47636. }
  47637. },
  47638. dick: {
  47639. height: math.unit(1.05, "feet"),
  47640. weight: math.unit(15, "lb"),
  47641. volume: math.unit(5/8, "gallons"),
  47642. name: "Dick",
  47643. image: {
  47644. source: "./media/characters/ludwig-horn/dick.svg"
  47645. }
  47646. },
  47647. },
  47648. [
  47649. {
  47650. name: "Small",
  47651. height: math.unit(6, "feet")
  47652. },
  47653. {
  47654. name: "Typical",
  47655. height: math.unit(12, "feet"),
  47656. default: true
  47657. },
  47658. {
  47659. name: "Building",
  47660. height: math.unit(80, "feet")
  47661. },
  47662. {
  47663. name: "Town",
  47664. height: math.unit(800, "feet")
  47665. },
  47666. {
  47667. name: "Kingdom",
  47668. height: math.unit(80000, "feet")
  47669. },
  47670. {
  47671. name: "Planet",
  47672. height: math.unit(8000000, "feet")
  47673. },
  47674. {
  47675. name: "Universe",
  47676. height: math.unit(8000000000, "feet")
  47677. },
  47678. {
  47679. name: "Transcended",
  47680. height: math.unit(8e27, "feet")
  47681. },
  47682. ]
  47683. ))
  47684. characterMakers.push(() => makeCharacter(
  47685. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47686. {
  47687. front: {
  47688. height: math.unit(5, "feet"),
  47689. weight: math.unit(50, "kg"),
  47690. name: "Front",
  47691. image: {
  47692. source: "./media/characters/biot-avery/front.svg",
  47693. extra: 1295/1232,
  47694. bottom: 86/1381
  47695. }
  47696. },
  47697. },
  47698. [
  47699. {
  47700. name: "Normal",
  47701. height: math.unit(5, "feet"),
  47702. default: true
  47703. },
  47704. ]
  47705. ))
  47706. characterMakers.push(() => makeCharacter(
  47707. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47708. {
  47709. front: {
  47710. height: math.unit(6, "feet"),
  47711. name: "Front",
  47712. image: {
  47713. source: "./media/characters/kitsune-kiro/front.svg",
  47714. extra: 1270/1158,
  47715. bottom: 42/1312
  47716. }
  47717. },
  47718. frontAlt: {
  47719. height: math.unit(6, "feet"),
  47720. name: "Front (Alt)",
  47721. image: {
  47722. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47723. extra: 1130/1081,
  47724. bottom: 36/1166
  47725. }
  47726. },
  47727. },
  47728. [
  47729. {
  47730. name: "Smol",
  47731. height: math.unit(3, "feet")
  47732. },
  47733. {
  47734. name: "Normal",
  47735. height: math.unit(6, "feet"),
  47736. default: true
  47737. },
  47738. ]
  47739. ))
  47740. characterMakers.push(() => makeCharacter(
  47741. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47742. {
  47743. front: {
  47744. height: math.unit(6, "feet"),
  47745. weight: math.unit(125, "lb"),
  47746. name: "Front",
  47747. image: {
  47748. source: "./media/characters/jack-thatcher/front.svg",
  47749. extra: 1474/1370,
  47750. bottom: 26/1500
  47751. }
  47752. },
  47753. back: {
  47754. height: math.unit(6, "feet"),
  47755. weight: math.unit(125, "lb"),
  47756. name: "Back",
  47757. image: {
  47758. source: "./media/characters/jack-thatcher/back.svg",
  47759. extra: 1489/1384,
  47760. bottom: 18/1507
  47761. }
  47762. },
  47763. },
  47764. [
  47765. {
  47766. name: "Normal",
  47767. height: math.unit(6, "feet"),
  47768. default: true
  47769. },
  47770. {
  47771. name: "Macro",
  47772. height: math.unit(75, "feet")
  47773. },
  47774. {
  47775. name: "Macro-er",
  47776. height: math.unit(250, "feet")
  47777. },
  47778. ]
  47779. ))
  47780. characterMakers.push(() => makeCharacter(
  47781. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47782. {
  47783. front: {
  47784. height: math.unit(7, "feet"),
  47785. weight: math.unit(110, "kg"),
  47786. name: "Front",
  47787. image: {
  47788. source: "./media/characters/max-hyper/front.svg",
  47789. extra: 1969/1881,
  47790. bottom: 49/2018
  47791. }
  47792. },
  47793. },
  47794. [
  47795. {
  47796. name: "Normal",
  47797. height: math.unit(7, "feet"),
  47798. default: true
  47799. },
  47800. ]
  47801. ))
  47802. characterMakers.push(() => makeCharacter(
  47803. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47804. {
  47805. front: {
  47806. height: math.unit(5 + 5/12, "feet"),
  47807. weight: math.unit(160, "lb"),
  47808. name: "Front",
  47809. image: {
  47810. source: "./media/characters/spook/front.svg",
  47811. extra: 794/791,
  47812. bottom: 54/848
  47813. }
  47814. },
  47815. back: {
  47816. height: math.unit(5 + 5/12, "feet"),
  47817. weight: math.unit(160, "lb"),
  47818. name: "Back",
  47819. image: {
  47820. source: "./media/characters/spook/back.svg",
  47821. extra: 812/798,
  47822. bottom: 32/844
  47823. }
  47824. },
  47825. },
  47826. [
  47827. {
  47828. name: "Normal",
  47829. height: math.unit(5 + 5/12, "feet"),
  47830. default: true
  47831. },
  47832. ]
  47833. ))
  47834. characterMakers.push(() => makeCharacter(
  47835. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47836. {
  47837. front: {
  47838. height: math.unit(18, "feet"),
  47839. name: "Front",
  47840. image: {
  47841. source: "./media/characters/xeaduulix/front.svg",
  47842. extra: 1380/1166,
  47843. bottom: 110/1490
  47844. }
  47845. },
  47846. back: {
  47847. height: math.unit(18, "feet"),
  47848. name: "Back",
  47849. image: {
  47850. source: "./media/characters/xeaduulix/back.svg",
  47851. extra: 1592/1170,
  47852. bottom: 128/1720
  47853. }
  47854. },
  47855. frontNsfw: {
  47856. height: math.unit(18, "feet"),
  47857. name: "Front (NSFW)",
  47858. image: {
  47859. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47860. extra: 1380/1166,
  47861. bottom: 110/1490
  47862. }
  47863. },
  47864. backNsfw: {
  47865. height: math.unit(18, "feet"),
  47866. name: "Back (NSFW)",
  47867. image: {
  47868. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47869. extra: 1592/1170,
  47870. bottom: 128/1720
  47871. }
  47872. },
  47873. },
  47874. [
  47875. {
  47876. name: "Normal",
  47877. height: math.unit(18, "feet"),
  47878. default: true
  47879. },
  47880. ]
  47881. ))
  47882. characterMakers.push(() => makeCharacter(
  47883. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47884. {
  47885. spreadWings: {
  47886. height: math.unit(20, "feet"),
  47887. name: "Spread Wings",
  47888. image: {
  47889. source: "./media/characters/fledge/spread-wings.svg",
  47890. extra: 693/635,
  47891. bottom: 26/719
  47892. }
  47893. },
  47894. front: {
  47895. height: math.unit(20, "feet"),
  47896. name: "Front",
  47897. image: {
  47898. source: "./media/characters/fledge/front.svg",
  47899. extra: 684/637,
  47900. bottom: 18/702
  47901. }
  47902. },
  47903. frontAlt: {
  47904. height: math.unit(20, "feet"),
  47905. name: "Front (Alt)",
  47906. image: {
  47907. source: "./media/characters/fledge/front-alt.svg",
  47908. extra: 708/664,
  47909. bottom: 13/721
  47910. }
  47911. },
  47912. back: {
  47913. height: math.unit(20, "feet"),
  47914. name: "Back",
  47915. image: {
  47916. source: "./media/characters/fledge/back.svg",
  47917. extra: 718/634,
  47918. bottom: 22/740
  47919. }
  47920. },
  47921. head: {
  47922. height: math.unit(5.55, "feet"),
  47923. name: "Head",
  47924. image: {
  47925. source: "./media/characters/fledge/head.svg"
  47926. }
  47927. },
  47928. headAlt: {
  47929. height: math.unit(5.1, "feet"),
  47930. name: "Head (Alt)",
  47931. image: {
  47932. source: "./media/characters/fledge/head-alt.svg"
  47933. }
  47934. },
  47935. },
  47936. [
  47937. {
  47938. name: "Small",
  47939. height: math.unit(6 + 2/12, "feet")
  47940. },
  47941. {
  47942. name: "Big",
  47943. height: math.unit(20, "feet"),
  47944. default: true
  47945. },
  47946. {
  47947. name: "Giant",
  47948. height: math.unit(100, "feet")
  47949. },
  47950. {
  47951. name: "Macro",
  47952. height: math.unit(200, "feet")
  47953. },
  47954. ]
  47955. ))
  47956. characterMakers.push(() => makeCharacter(
  47957. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47958. {
  47959. front: {
  47960. height: math.unit(1, "meter"),
  47961. name: "Front",
  47962. image: {
  47963. source: "./media/characters/atlas-morenai/front.svg",
  47964. extra: 1275/1043,
  47965. bottom: 19/1294
  47966. }
  47967. },
  47968. back: {
  47969. height: math.unit(1, "meter"),
  47970. name: "Back",
  47971. image: {
  47972. source: "./media/characters/atlas-morenai/back.svg",
  47973. extra: 1141/1001,
  47974. bottom: 25/1166
  47975. }
  47976. },
  47977. },
  47978. [
  47979. {
  47980. name: "Normal",
  47981. height: math.unit(1, "meter"),
  47982. default: true
  47983. },
  47984. {
  47985. name: "Magic-Infused",
  47986. height: math.unit(5, "meters")
  47987. },
  47988. ]
  47989. ))
  47990. characterMakers.push(() => makeCharacter(
  47991. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47992. {
  47993. front: {
  47994. height: math.unit(5, "meters"),
  47995. name: "Front",
  47996. image: {
  47997. source: "./media/characters/cintia/front.svg",
  47998. extra: 1312/1228,
  47999. bottom: 38/1350
  48000. }
  48001. },
  48002. back: {
  48003. height: math.unit(5, "meters"),
  48004. name: "Back",
  48005. image: {
  48006. source: "./media/characters/cintia/back.svg",
  48007. extra: 1260/1166,
  48008. bottom: 98/1358
  48009. }
  48010. },
  48011. frontDick: {
  48012. height: math.unit(5, "meters"),
  48013. name: "Front (Dick)",
  48014. image: {
  48015. source: "./media/characters/cintia/front-dick.svg",
  48016. extra: 1312/1228,
  48017. bottom: 38/1350
  48018. }
  48019. },
  48020. backDick: {
  48021. height: math.unit(5, "meters"),
  48022. name: "Back (Dick)",
  48023. image: {
  48024. source: "./media/characters/cintia/back-dick.svg",
  48025. extra: 1260/1166,
  48026. bottom: 98/1358
  48027. }
  48028. },
  48029. bust: {
  48030. height: math.unit(1.97, "meters"),
  48031. name: "Bust",
  48032. image: {
  48033. source: "./media/characters/cintia/bust.svg",
  48034. extra: 617/565,
  48035. bottom: 0/617
  48036. }
  48037. },
  48038. },
  48039. [
  48040. {
  48041. name: "Normal",
  48042. height: math.unit(5, "meters"),
  48043. default: true
  48044. },
  48045. ]
  48046. ))
  48047. characterMakers.push(() => makeCharacter(
  48048. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  48049. {
  48050. side: {
  48051. height: math.unit(100, "feet"),
  48052. name: "Side",
  48053. image: {
  48054. source: "./media/characters/denora/side.svg",
  48055. extra: 875/803,
  48056. bottom: 9/884
  48057. }
  48058. },
  48059. },
  48060. [
  48061. {
  48062. name: "Standard",
  48063. height: math.unit(100, "feet"),
  48064. default: true
  48065. },
  48066. {
  48067. name: "Grand",
  48068. height: math.unit(1000, "feet")
  48069. },
  48070. {
  48071. name: "Conquering",
  48072. height: math.unit(10000, "feet")
  48073. },
  48074. ]
  48075. ))
  48076. characterMakers.push(() => makeCharacter(
  48077. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  48078. {
  48079. front: {
  48080. height: math.unit(8 + 5/12, "feet"),
  48081. weight: math.unit(700, "lb"),
  48082. name: "Front",
  48083. image: {
  48084. source: "./media/characters/kiva/front.svg",
  48085. extra: 419/406,
  48086. bottom: 30/449
  48087. }
  48088. },
  48089. sideDressed: {
  48090. height: math.unit(8 + 5/12, "feet"),
  48091. weight: math.unit(700, "lb"),
  48092. name: "Side (Dressed)",
  48093. image: {
  48094. source: "./media/characters/kiva/side-dressed.svg",
  48095. extra: 1102/1055,
  48096. bottom: 60/1162
  48097. }
  48098. },
  48099. sideNude: {
  48100. height: math.unit(8 + 5/12, "feet"),
  48101. weight: math.unit(700, "lb"),
  48102. name: "Side (Nude)",
  48103. image: {
  48104. source: "./media/characters/kiva/side-nude.svg",
  48105. extra: 1102/1055,
  48106. bottom: 60/1162
  48107. }
  48108. },
  48109. },
  48110. [
  48111. {
  48112. name: "Base Height",
  48113. height: math.unit(8 + 5/12, "feet"),
  48114. default: true
  48115. },
  48116. {
  48117. name: "Macro",
  48118. height: math.unit(100, "feet")
  48119. },
  48120. {
  48121. name: "Max",
  48122. height: math.unit(3280, "feet")
  48123. },
  48124. ]
  48125. ))
  48126. characterMakers.push(() => makeCharacter(
  48127. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  48128. {
  48129. front: {
  48130. height: math.unit(6 + 8/12, "feet"),
  48131. weight: math.unit(250, "lb"),
  48132. name: "Front",
  48133. image: {
  48134. source: "./media/characters/ztragon/front.svg",
  48135. extra: 1825/1684,
  48136. bottom: 98/1923
  48137. }
  48138. },
  48139. },
  48140. [
  48141. {
  48142. name: "Normal",
  48143. height: math.unit(6 + 8/12, "feet"),
  48144. default: true
  48145. },
  48146. {
  48147. name: "Macro",
  48148. height: math.unit(80, "feet")
  48149. },
  48150. ]
  48151. ))
  48152. characterMakers.push(() => makeCharacter(
  48153. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  48154. {
  48155. front: {
  48156. height: math.unit(10.4, "feet"),
  48157. weight: math.unit(2, "tons"),
  48158. name: "Front",
  48159. image: {
  48160. source: "./media/characters/yesenia/front.svg",
  48161. extra: 1479/1474,
  48162. bottom: 233/1712
  48163. }
  48164. },
  48165. },
  48166. [
  48167. {
  48168. name: "Normal",
  48169. height: math.unit(10.4, "feet"),
  48170. default: true
  48171. },
  48172. ]
  48173. ))
  48174. characterMakers.push(() => makeCharacter(
  48175. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  48176. {
  48177. normal: {
  48178. height: math.unit(6 + 1/12, "feet"),
  48179. weight: math.unit(180, "lb"),
  48180. name: "Normal",
  48181. image: {
  48182. source: "./media/characters/leanne-lycheborne/normal.svg",
  48183. extra: 1748/1660,
  48184. bottom: 98/1846
  48185. }
  48186. },
  48187. were: {
  48188. height: math.unit(12, "feet"),
  48189. weight: math.unit(1600, "lb"),
  48190. name: "Were",
  48191. image: {
  48192. source: "./media/characters/leanne-lycheborne/were.svg",
  48193. extra: 1485/1432,
  48194. bottom: 66/1551
  48195. }
  48196. },
  48197. },
  48198. [
  48199. {
  48200. name: "Normal",
  48201. height: math.unit(6 + 1/12, "feet"),
  48202. default: true
  48203. },
  48204. ]
  48205. ))
  48206. characterMakers.push(() => makeCharacter(
  48207. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  48208. {
  48209. side: {
  48210. height: math.unit(13, "feet"),
  48211. name: "Side",
  48212. image: {
  48213. source: "./media/characters/kira-tyler/side.svg",
  48214. extra: 693/393,
  48215. bottom: 58/751
  48216. }
  48217. },
  48218. },
  48219. [
  48220. {
  48221. name: "Normal",
  48222. height: math.unit(13, "feet"),
  48223. default: true
  48224. },
  48225. ]
  48226. ))
  48227. characterMakers.push(() => makeCharacter(
  48228. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  48229. {
  48230. front: {
  48231. height: math.unit(10.3, "feet"),
  48232. weight: math.unit(150, "lb"),
  48233. name: "Front",
  48234. image: {
  48235. source: "./media/characters/blaze/front.svg",
  48236. extra: 1378/1286,
  48237. bottom: 172/1550
  48238. }
  48239. },
  48240. },
  48241. [
  48242. {
  48243. name: "Normal",
  48244. height: math.unit(10.3, "feet"),
  48245. default: true
  48246. },
  48247. ]
  48248. ))
  48249. characterMakers.push(() => makeCharacter(
  48250. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  48251. {
  48252. side: {
  48253. height: math.unit(2, "meters"),
  48254. weight: math.unit(400, "kg"),
  48255. name: "Side",
  48256. image: {
  48257. source: "./media/characters/anu/side.svg",
  48258. extra: 506/394,
  48259. bottom: 18/524
  48260. }
  48261. },
  48262. },
  48263. [
  48264. {
  48265. name: "Humanoid",
  48266. height: math.unit(2, "meters")
  48267. },
  48268. {
  48269. name: "Normal",
  48270. height: math.unit(5, "meters"),
  48271. default: true
  48272. },
  48273. ]
  48274. ))
  48275. characterMakers.push(() => makeCharacter(
  48276. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  48277. {
  48278. front: {
  48279. height: math.unit(5 + 5/12, "feet"),
  48280. weight: math.unit(170, "lb"),
  48281. name: "Front",
  48282. image: {
  48283. source: "./media/characters/synx-the-lynx/front.svg",
  48284. extra: 1893/1745,
  48285. bottom: 17/1910
  48286. }
  48287. },
  48288. side: {
  48289. height: math.unit(5 + 5/12, "feet"),
  48290. weight: math.unit(170, "lb"),
  48291. name: "Side",
  48292. image: {
  48293. source: "./media/characters/synx-the-lynx/side.svg",
  48294. extra: 1884/1740,
  48295. bottom: 39/1923
  48296. }
  48297. },
  48298. back: {
  48299. height: math.unit(5 + 5/12, "feet"),
  48300. weight: math.unit(170, "lb"),
  48301. name: "Back",
  48302. image: {
  48303. source: "./media/characters/synx-the-lynx/back.svg",
  48304. extra: 1903/1755,
  48305. bottom: 14/1917
  48306. }
  48307. },
  48308. },
  48309. [
  48310. {
  48311. name: "Normal",
  48312. height: math.unit(5 + 5/12, "feet"),
  48313. default: true
  48314. },
  48315. ]
  48316. ))
  48317. characterMakers.push(() => makeCharacter(
  48318. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  48319. {
  48320. back: {
  48321. height: math.unit(15, "feet"),
  48322. name: "Back",
  48323. image: {
  48324. source: "./media/characters/nadezda-fex/back.svg",
  48325. extra: 1695/1481,
  48326. bottom: 25/1720
  48327. }
  48328. },
  48329. },
  48330. [
  48331. {
  48332. name: "Normal",
  48333. height: math.unit(15, "feet"),
  48334. default: true
  48335. },
  48336. {
  48337. name: "Macro",
  48338. height: math.unit(2.5, "miles")
  48339. },
  48340. {
  48341. name: "Goddess",
  48342. height: math.unit(2, "multiverses")
  48343. },
  48344. ]
  48345. ))
  48346. characterMakers.push(() => makeCharacter(
  48347. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  48348. {
  48349. front: {
  48350. height: math.unit(216, "cm"),
  48351. name: "Front",
  48352. image: {
  48353. source: "./media/characters/lev/front.svg",
  48354. extra: 1728/1670,
  48355. bottom: 82/1810
  48356. }
  48357. },
  48358. back: {
  48359. height: math.unit(216, "cm"),
  48360. name: "Back",
  48361. image: {
  48362. source: "./media/characters/lev/back.svg",
  48363. extra: 1738/1675,
  48364. bottom: 24/1762
  48365. }
  48366. },
  48367. dressed: {
  48368. height: math.unit(216, "cm"),
  48369. name: "Dressed",
  48370. image: {
  48371. source: "./media/characters/lev/dressed.svg",
  48372. extra: 1397/1351,
  48373. bottom: 73/1470
  48374. }
  48375. },
  48376. head: {
  48377. height: math.unit(0.51, "meter"),
  48378. name: "Head",
  48379. image: {
  48380. source: "./media/characters/lev/head.svg"
  48381. }
  48382. },
  48383. },
  48384. [
  48385. {
  48386. name: "Normal",
  48387. height: math.unit(216, "cm"),
  48388. default: true
  48389. },
  48390. {
  48391. name: "Relatively Macro",
  48392. height: math.unit(80, "meters")
  48393. },
  48394. {
  48395. name: "Megamacro",
  48396. height: math.unit(21600, "meters")
  48397. },
  48398. {
  48399. name: "Megamacro+",
  48400. height: math.unit(64800, "meters")
  48401. },
  48402. ]
  48403. ))
  48404. characterMakers.push(() => makeCharacter(
  48405. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  48406. {
  48407. front: {
  48408. height: math.unit(2, "meters"),
  48409. weight: math.unit(80, "kg"),
  48410. name: "Front",
  48411. image: {
  48412. source: "./media/characters/moka/front.svg",
  48413. extra: 1337/1255,
  48414. bottom: 58/1395
  48415. }
  48416. },
  48417. },
  48418. [
  48419. {
  48420. name: "Micro",
  48421. height: math.unit(15, "cm")
  48422. },
  48423. {
  48424. name: "Normal",
  48425. height: math.unit(2, "meters"),
  48426. default: true
  48427. },
  48428. {
  48429. name: "Macro",
  48430. height: math.unit(20, "meters"),
  48431. },
  48432. ]
  48433. ))
  48434. characterMakers.push(() => makeCharacter(
  48435. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  48436. {
  48437. front: {
  48438. height: math.unit(9, "feet"),
  48439. weight: math.unit(240, "lb"),
  48440. name: "Front",
  48441. image: {
  48442. source: "./media/characters/kuzco/front.svg",
  48443. extra: 1593/1487,
  48444. bottom: 32/1625
  48445. }
  48446. },
  48447. side: {
  48448. height: math.unit(9, "feet"),
  48449. weight: math.unit(240, "lb"),
  48450. name: "Side",
  48451. image: {
  48452. source: "./media/characters/kuzco/side.svg",
  48453. extra: 1575/1485,
  48454. bottom: 30/1605
  48455. }
  48456. },
  48457. back: {
  48458. height: math.unit(9, "feet"),
  48459. weight: math.unit(240, "lb"),
  48460. name: "Back",
  48461. image: {
  48462. source: "./media/characters/kuzco/back.svg",
  48463. extra: 1603/1514,
  48464. bottom: 14/1617
  48465. }
  48466. },
  48467. },
  48468. [
  48469. {
  48470. name: "Normal",
  48471. height: math.unit(9, "feet"),
  48472. default: true
  48473. },
  48474. ]
  48475. ))
  48476. characterMakers.push(() => makeCharacter(
  48477. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48478. {
  48479. side: {
  48480. height: math.unit(2, "meters"),
  48481. weight: math.unit(300, "kg"),
  48482. name: "Side",
  48483. image: {
  48484. source: "./media/characters/ceruleus/side.svg",
  48485. extra: 1068/974,
  48486. bottom: 126/1194
  48487. }
  48488. },
  48489. maw: {
  48490. height: math.unit(0.8125, "meter"),
  48491. name: "Maw",
  48492. image: {
  48493. source: "./media/characters/ceruleus/maw.svg"
  48494. }
  48495. },
  48496. },
  48497. [
  48498. {
  48499. name: "Normal",
  48500. height: math.unit(16, "meters"),
  48501. default: true
  48502. },
  48503. ]
  48504. ))
  48505. characterMakers.push(() => makeCharacter(
  48506. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48507. {
  48508. front: {
  48509. height: math.unit(9, "feet"),
  48510. weight: math.unit(500, "kg"),
  48511. name: "Front",
  48512. image: {
  48513. source: "./media/characters/acouya/front.svg",
  48514. extra: 1660/1473,
  48515. bottom: 28/1688
  48516. }
  48517. },
  48518. },
  48519. [
  48520. {
  48521. name: "Normal",
  48522. height: math.unit(9, "feet"),
  48523. default: true
  48524. },
  48525. ]
  48526. ))
  48527. characterMakers.push(() => makeCharacter(
  48528. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48529. {
  48530. front: {
  48531. height: math.unit(5 + 6/12, "feet"),
  48532. weight: math.unit(195, "lb"),
  48533. name: "Front",
  48534. image: {
  48535. source: "./media/characters/vant/front.svg",
  48536. extra: 1396/1320,
  48537. bottom: 20/1416
  48538. }
  48539. },
  48540. back: {
  48541. height: math.unit(5 + 6/12, "feet"),
  48542. weight: math.unit(195, "lb"),
  48543. name: "Back",
  48544. image: {
  48545. source: "./media/characters/vant/back.svg",
  48546. extra: 1396/1320,
  48547. bottom: 20/1416
  48548. }
  48549. },
  48550. maw: {
  48551. height: math.unit(0.75, "feet"),
  48552. name: "Maw",
  48553. image: {
  48554. source: "./media/characters/vant/maw.svg"
  48555. }
  48556. },
  48557. paw: {
  48558. height: math.unit(1.07, "feet"),
  48559. name: "Paw",
  48560. image: {
  48561. source: "./media/characters/vant/paw.svg"
  48562. }
  48563. },
  48564. },
  48565. [
  48566. {
  48567. name: "Micro",
  48568. height: math.unit(0.25, "inches")
  48569. },
  48570. {
  48571. name: "Normal",
  48572. height: math.unit(5 + 6/12, "feet"),
  48573. default: true
  48574. },
  48575. {
  48576. name: "Macro",
  48577. height: math.unit(75, "feet")
  48578. },
  48579. ]
  48580. ))
  48581. characterMakers.push(() => makeCharacter(
  48582. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48583. {
  48584. front: {
  48585. height: math.unit(30, "meters"),
  48586. weight: math.unit(363, "tons"),
  48587. name: "Front",
  48588. image: {
  48589. source: "./media/characters/ahra/front.svg",
  48590. extra: 1914/1814,
  48591. bottom: 46/1960
  48592. }
  48593. },
  48594. },
  48595. [
  48596. {
  48597. name: "Macro",
  48598. height: math.unit(30, "meters"),
  48599. default: true
  48600. },
  48601. ]
  48602. ))
  48603. characterMakers.push(() => makeCharacter(
  48604. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48605. {
  48606. undressed: {
  48607. height: math.unit(2, "m"),
  48608. weight: math.unit(250, "kg"),
  48609. name: "Undressed",
  48610. image: {
  48611. source: "./media/characters/coriander/undressed.svg",
  48612. extra: 1757/1606,
  48613. bottom: 107/1864
  48614. }
  48615. },
  48616. dressed: {
  48617. height: math.unit(2, "m"),
  48618. weight: math.unit(250, "kg"),
  48619. name: "Dressed",
  48620. image: {
  48621. source: "./media/characters/coriander/dressed.svg",
  48622. extra: 1757/1606,
  48623. bottom: 107/1864
  48624. }
  48625. },
  48626. },
  48627. [
  48628. {
  48629. name: "Normal",
  48630. height: math.unit(4, "meters"),
  48631. default: true
  48632. },
  48633. {
  48634. name: "XL",
  48635. height: math.unit(6, "meters")
  48636. },
  48637. {
  48638. name: "XXL",
  48639. height: math.unit(8, "meters")
  48640. },
  48641. ]
  48642. ))
  48643. characterMakers.push(() => makeCharacter(
  48644. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48645. {
  48646. front: {
  48647. height: math.unit(6, "feet"),
  48648. name: "Front",
  48649. image: {
  48650. source: "./media/characters/syrinx/front.svg",
  48651. extra: 1557/1259,
  48652. bottom: 171/1728
  48653. }
  48654. },
  48655. },
  48656. [
  48657. {
  48658. name: "Normal",
  48659. height: math.unit(6 + 3/12, "feet"),
  48660. default: true
  48661. },
  48662. ]
  48663. ))
  48664. characterMakers.push(() => makeCharacter(
  48665. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48666. {
  48667. front: {
  48668. height: math.unit(11 + 6/12, "feet"),
  48669. weight: math.unit(1.5, "tons"),
  48670. name: "Front",
  48671. image: {
  48672. source: "./media/characters/bor/front.svg",
  48673. extra: 1189/1109,
  48674. bottom: 170/1359
  48675. }
  48676. },
  48677. },
  48678. [
  48679. {
  48680. name: "Normal",
  48681. height: math.unit(11 + 6/12, "feet"),
  48682. default: true
  48683. },
  48684. {
  48685. name: "Macro",
  48686. height: math.unit(32 + 9/12, "feet")
  48687. },
  48688. ]
  48689. ))
  48690. characterMakers.push(() => makeCharacter(
  48691. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48692. {
  48693. anthro: {
  48694. height: math.unit(9, "feet"),
  48695. weight: math.unit(2076, "lb"),
  48696. name: "Anthro",
  48697. image: {
  48698. source: "./media/characters/abacus/anthro.svg",
  48699. extra: 1540/1494,
  48700. bottom: 233/1773
  48701. }
  48702. },
  48703. pigeon: {
  48704. height: math.unit(1, "feet"),
  48705. name: "Pigeon",
  48706. image: {
  48707. source: "./media/characters/abacus/pigeon.svg",
  48708. extra: 528/525,
  48709. bottom: 46/574
  48710. }
  48711. },
  48712. },
  48713. [
  48714. {
  48715. name: "Normal",
  48716. height: math.unit(9, "feet"),
  48717. default: true
  48718. },
  48719. ]
  48720. ))
  48721. characterMakers.push(() => makeCharacter(
  48722. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48723. {
  48724. side: {
  48725. height: math.unit(6, "feet"),
  48726. name: "Side",
  48727. image: {
  48728. source: "./media/characters/delkhan/side.svg",
  48729. extra: 1884/1786,
  48730. bottom: 308/2192
  48731. }
  48732. },
  48733. head: {
  48734. height: math.unit(3.38, "feet"),
  48735. name: "Head",
  48736. image: {
  48737. source: "./media/characters/delkhan/head.svg"
  48738. }
  48739. },
  48740. },
  48741. [
  48742. {
  48743. name: "Normal",
  48744. height: math.unit(72, "feet"),
  48745. default: true
  48746. },
  48747. {
  48748. name: "Giant",
  48749. height: math.unit(172, "feet")
  48750. },
  48751. ]
  48752. ))
  48753. characterMakers.push(() => makeCharacter(
  48754. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48755. {
  48756. standing: {
  48757. height: math.unit(6, "feet"),
  48758. name: "Standing",
  48759. image: {
  48760. source: "./media/characters/euchidat/standing.svg",
  48761. extra: 1612/1553,
  48762. bottom: 116/1728
  48763. }
  48764. },
  48765. leaning: {
  48766. height: math.unit(6, "feet"),
  48767. name: "Leaning",
  48768. image: {
  48769. source: "./media/characters/euchidat/leaning.svg",
  48770. extra: 1719/1674,
  48771. bottom: 27/1746
  48772. }
  48773. },
  48774. },
  48775. [
  48776. {
  48777. name: "Normal",
  48778. height: math.unit(175, "feet"),
  48779. default: true
  48780. },
  48781. {
  48782. name: "Megamacro",
  48783. height: math.unit(190, "miles")
  48784. },
  48785. {
  48786. name: "Gigamacro",
  48787. height: math.unit(190000, "miles")
  48788. },
  48789. ]
  48790. ))
  48791. characterMakers.push(() => makeCharacter(
  48792. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48793. {
  48794. front: {
  48795. height: math.unit(6, "feet"),
  48796. weight: math.unit(150, "lb"),
  48797. name: "Front",
  48798. image: {
  48799. source: "./media/characters/rebecca-stack/front.svg",
  48800. extra: 1256/1201,
  48801. bottom: 18/1274
  48802. }
  48803. },
  48804. },
  48805. [
  48806. {
  48807. name: "Normal",
  48808. height: math.unit(5 + 8/12, "feet"),
  48809. default: true
  48810. },
  48811. {
  48812. name: "Demolitionist",
  48813. height: math.unit(200, "feet")
  48814. },
  48815. {
  48816. name: "Out of Control",
  48817. height: math.unit(2, "miles")
  48818. },
  48819. {
  48820. name: "Giga",
  48821. height: math.unit(7200, "miles")
  48822. },
  48823. ]
  48824. ))
  48825. characterMakers.push(() => makeCharacter(
  48826. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48827. {
  48828. front: {
  48829. height: math.unit(6, "feet"),
  48830. weight: math.unit(150, "lb"),
  48831. name: "Front",
  48832. image: {
  48833. source: "./media/characters/jenny-cartwright/front.svg",
  48834. extra: 1384/1376,
  48835. bottom: 58/1442
  48836. }
  48837. },
  48838. },
  48839. [
  48840. {
  48841. name: "Normal",
  48842. height: math.unit(6 + 7/12, "feet"),
  48843. default: true
  48844. },
  48845. {
  48846. name: "Librarian",
  48847. height: math.unit(55, "feet")
  48848. },
  48849. {
  48850. name: "Sightseer",
  48851. height: math.unit(50, "miles")
  48852. },
  48853. {
  48854. name: "Giga",
  48855. height: math.unit(30000, "miles")
  48856. },
  48857. ]
  48858. ))
  48859. characterMakers.push(() => makeCharacter(
  48860. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48861. {
  48862. nude: {
  48863. height: math.unit(8, "feet"),
  48864. weight: math.unit(225, "lb"),
  48865. name: "Nude",
  48866. image: {
  48867. source: "./media/characters/marvy/nude.svg",
  48868. extra: 1900/1683,
  48869. bottom: 89/1989
  48870. }
  48871. },
  48872. dressed: {
  48873. height: math.unit(8, "feet"),
  48874. weight: math.unit(225, "lb"),
  48875. name: "Dressed",
  48876. image: {
  48877. source: "./media/characters/marvy/dressed.svg",
  48878. extra: 1900/1683,
  48879. bottom: 89/1989
  48880. }
  48881. },
  48882. head: {
  48883. height: math.unit(2.85, "feet"),
  48884. name: "Head",
  48885. image: {
  48886. source: "./media/characters/marvy/head.svg"
  48887. }
  48888. },
  48889. },
  48890. [
  48891. {
  48892. name: "Normal",
  48893. height: math.unit(8, "feet"),
  48894. default: true
  48895. },
  48896. ]
  48897. ))
  48898. characterMakers.push(() => makeCharacter(
  48899. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48900. {
  48901. front: {
  48902. height: math.unit(8, "feet"),
  48903. weight: math.unit(250, "lb"),
  48904. name: "Front",
  48905. image: {
  48906. source: "./media/characters/leah/front.svg",
  48907. extra: 1257/1149,
  48908. bottom: 109/1366
  48909. }
  48910. },
  48911. },
  48912. [
  48913. {
  48914. name: "Normal",
  48915. height: math.unit(8, "feet"),
  48916. default: true
  48917. },
  48918. {
  48919. name: "Minimacro",
  48920. height: math.unit(40, "feet")
  48921. },
  48922. {
  48923. name: "Macro",
  48924. height: math.unit(124, "feet")
  48925. },
  48926. {
  48927. name: "Megamacro",
  48928. height: math.unit(850, "feet")
  48929. },
  48930. ]
  48931. ))
  48932. characterMakers.push(() => makeCharacter(
  48933. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48934. {
  48935. side: {
  48936. height: math.unit(13 + 6/12, "feet"),
  48937. weight: math.unit(3200, "lb"),
  48938. name: "Side",
  48939. image: {
  48940. source: "./media/characters/alvir/side.svg",
  48941. extra: 896/589,
  48942. bottom: 26/922
  48943. }
  48944. },
  48945. },
  48946. [
  48947. {
  48948. name: "Normal",
  48949. height: math.unit(13 + 6/12, "feet"),
  48950. default: true
  48951. },
  48952. ]
  48953. ))
  48954. characterMakers.push(() => makeCharacter(
  48955. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48956. {
  48957. front: {
  48958. height: math.unit(5 + 4/12, "feet"),
  48959. weight: math.unit(236, "lb"),
  48960. name: "Front",
  48961. image: {
  48962. source: "./media/characters/zaina-khalil/front.svg",
  48963. extra: 1533/1485,
  48964. bottom: 94/1627
  48965. }
  48966. },
  48967. side: {
  48968. height: math.unit(5 + 4/12, "feet"),
  48969. weight: math.unit(236, "lb"),
  48970. name: "Side",
  48971. image: {
  48972. source: "./media/characters/zaina-khalil/side.svg",
  48973. extra: 1537/1498,
  48974. bottom: 66/1603
  48975. }
  48976. },
  48977. back: {
  48978. height: math.unit(5 + 4/12, "feet"),
  48979. weight: math.unit(236, "lb"),
  48980. name: "Back",
  48981. image: {
  48982. source: "./media/characters/zaina-khalil/back.svg",
  48983. extra: 1546/1494,
  48984. bottom: 89/1635
  48985. }
  48986. },
  48987. },
  48988. [
  48989. {
  48990. name: "Normal",
  48991. height: math.unit(5 + 4/12, "feet"),
  48992. default: true
  48993. },
  48994. ]
  48995. ))
  48996. characterMakers.push(() => makeCharacter(
  48997. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48998. {
  48999. side: {
  49000. height: math.unit(12, "feet"),
  49001. weight: math.unit(4000, "lb"),
  49002. name: "Side",
  49003. image: {
  49004. source: "./media/characters/terry/side.svg",
  49005. extra: 1518/1439,
  49006. bottom: 149/1667
  49007. }
  49008. },
  49009. },
  49010. [
  49011. {
  49012. name: "Normal",
  49013. height: math.unit(12, "feet"),
  49014. default: true
  49015. },
  49016. ]
  49017. ))
  49018. characterMakers.push(() => makeCharacter(
  49019. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  49020. {
  49021. front: {
  49022. height: math.unit(12, "feet"),
  49023. weight: math.unit(1500, "lb"),
  49024. name: "Front",
  49025. image: {
  49026. source: "./media/characters/kahea/front.svg",
  49027. extra: 1722/1617,
  49028. bottom: 179/1901
  49029. }
  49030. },
  49031. },
  49032. [
  49033. {
  49034. name: "Normal",
  49035. height: math.unit(12, "feet"),
  49036. default: true
  49037. },
  49038. ]
  49039. ))
  49040. characterMakers.push(() => makeCharacter(
  49041. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  49042. {
  49043. demonFront: {
  49044. height: math.unit(36, "feet"),
  49045. name: "Front",
  49046. image: {
  49047. source: "./media/characters/alex-xuria/demon-front.svg",
  49048. extra: 1705/1673,
  49049. bottom: 198/1903
  49050. },
  49051. form: "demon",
  49052. default: true
  49053. },
  49054. demonBack: {
  49055. height: math.unit(36, "feet"),
  49056. name: "Back",
  49057. image: {
  49058. source: "./media/characters/alex-xuria/demon-back.svg",
  49059. extra: 1725/1693,
  49060. bottom: 70/1795
  49061. },
  49062. form: "demon"
  49063. },
  49064. demonHead: {
  49065. height: math.unit(2.14, "meters"),
  49066. name: "Head",
  49067. image: {
  49068. source: "./media/characters/alex-xuria/demon-head.svg"
  49069. },
  49070. form: "demon"
  49071. },
  49072. demonHand: {
  49073. height: math.unit(1.61, "meters"),
  49074. name: "Hand",
  49075. image: {
  49076. source: "./media/characters/alex-xuria/demon-hand.svg"
  49077. },
  49078. form: "demon"
  49079. },
  49080. demonPaw: {
  49081. height: math.unit(1.35, "meters"),
  49082. name: "Paw",
  49083. image: {
  49084. source: "./media/characters/alex-xuria/demon-paw.svg"
  49085. },
  49086. form: "demon"
  49087. },
  49088. demonFoot: {
  49089. height: math.unit(2.2, "meters"),
  49090. name: "Foot",
  49091. image: {
  49092. source: "./media/characters/alex-xuria/demon-foot.svg"
  49093. },
  49094. form: "demon"
  49095. },
  49096. demonCock: {
  49097. height: math.unit(1.74, "meters"),
  49098. name: "Cock",
  49099. image: {
  49100. source: "./media/characters/alex-xuria/demon-cock.svg"
  49101. },
  49102. form: "demon"
  49103. },
  49104. demonTailClosed: {
  49105. height: math.unit(1.47, "meters"),
  49106. name: "Tail (Closed)",
  49107. image: {
  49108. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  49109. },
  49110. form: "demon"
  49111. },
  49112. demonTailOpen: {
  49113. height: math.unit(2.85, "meters"),
  49114. name: "Tail (Open)",
  49115. image: {
  49116. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  49117. },
  49118. form: "demon"
  49119. },
  49120. incubusFront: {
  49121. height: math.unit(12, "feet"),
  49122. name: "Front",
  49123. image: {
  49124. source: "./media/characters/alex-xuria/incubus-front.svg",
  49125. extra: 1754/1677,
  49126. bottom: 125/1879
  49127. },
  49128. form: "incubus",
  49129. default: true
  49130. },
  49131. incubusBack: {
  49132. height: math.unit(12, "feet"),
  49133. name: "Back",
  49134. image: {
  49135. source: "./media/characters/alex-xuria/incubus-back.svg",
  49136. extra: 1702/1647,
  49137. bottom: 30/1732
  49138. },
  49139. form: "incubus"
  49140. },
  49141. incubusHead: {
  49142. height: math.unit(3.45, "feet"),
  49143. name: "Head",
  49144. image: {
  49145. source: "./media/characters/alex-xuria/incubus-head.svg"
  49146. },
  49147. form: "incubus"
  49148. },
  49149. rabbitFront: {
  49150. height: math.unit(6, "feet"),
  49151. name: "Front",
  49152. image: {
  49153. source: "./media/characters/alex-xuria/rabbit-front.svg",
  49154. extra: 1369/1349,
  49155. bottom: 45/1414
  49156. },
  49157. form: "rabbit",
  49158. default: true
  49159. },
  49160. rabbitSide: {
  49161. height: math.unit(6, "feet"),
  49162. name: "Side",
  49163. image: {
  49164. source: "./media/characters/alex-xuria/rabbit-side.svg",
  49165. extra: 1370/1356,
  49166. bottom: 37/1407
  49167. },
  49168. form: "rabbit"
  49169. },
  49170. rabbitBack: {
  49171. height: math.unit(6, "feet"),
  49172. name: "Back",
  49173. image: {
  49174. source: "./media/characters/alex-xuria/rabbit-back.svg",
  49175. extra: 1375/1358,
  49176. bottom: 43/1418
  49177. },
  49178. form: "rabbit"
  49179. },
  49180. },
  49181. [
  49182. {
  49183. name: "Normal",
  49184. height: math.unit(6, "feet"),
  49185. default: true,
  49186. form: "rabbit"
  49187. },
  49188. {
  49189. name: "Incubus",
  49190. height: math.unit(12, "feet"),
  49191. default: true,
  49192. form: "incubus"
  49193. },
  49194. {
  49195. name: "Demon",
  49196. height: math.unit(36, "feet"),
  49197. default: true,
  49198. form: "demon"
  49199. }
  49200. ],
  49201. {
  49202. "demon": {
  49203. name: "Demon",
  49204. default: true
  49205. },
  49206. "incubus": {
  49207. name: "Incubus",
  49208. },
  49209. "rabbit": {
  49210. name: "Rabbit"
  49211. }
  49212. }
  49213. ))
  49214. characterMakers.push(() => makeCharacter(
  49215. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  49216. {
  49217. front: {
  49218. height: math.unit(7 + 5/12, "feet"),
  49219. weight: math.unit(510, "lb"),
  49220. name: "Front",
  49221. image: {
  49222. source: "./media/characters/syrup/front.svg",
  49223. extra: 932/916,
  49224. bottom: 26/958
  49225. }
  49226. },
  49227. },
  49228. [
  49229. {
  49230. name: "Normal",
  49231. height: math.unit(7 + 5/12, "feet"),
  49232. default: true
  49233. },
  49234. {
  49235. name: "Big",
  49236. height: math.unit(50, "feet")
  49237. },
  49238. {
  49239. name: "Macro",
  49240. height: math.unit(300, "feet")
  49241. },
  49242. {
  49243. name: "Megamacro",
  49244. height: math.unit(1, "mile")
  49245. },
  49246. ]
  49247. ))
  49248. characterMakers.push(() => makeCharacter(
  49249. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  49250. {
  49251. front: {
  49252. height: math.unit(6 + 9/12, "feet"),
  49253. name: "Front",
  49254. image: {
  49255. source: "./media/characters/zeimne/front.svg",
  49256. extra: 1969/1806,
  49257. bottom: 53/2022
  49258. }
  49259. },
  49260. },
  49261. [
  49262. {
  49263. name: "Normal",
  49264. height: math.unit(6 + 9/12, "feet"),
  49265. default: true
  49266. },
  49267. {
  49268. name: "Giant",
  49269. height: math.unit(550, "feet")
  49270. },
  49271. {
  49272. name: "Mega",
  49273. height: math.unit(3, "miles")
  49274. },
  49275. {
  49276. name: "Giga",
  49277. height: math.unit(250, "miles")
  49278. },
  49279. {
  49280. name: "Tera",
  49281. height: math.unit(1, "AU")
  49282. },
  49283. ]
  49284. ))
  49285. characterMakers.push(() => makeCharacter(
  49286. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  49287. {
  49288. front: {
  49289. height: math.unit(5 + 2/12, "feet"),
  49290. name: "Front",
  49291. image: {
  49292. source: "./media/characters/grar/front.svg",
  49293. extra: 1331/1119,
  49294. bottom: 60/1391
  49295. }
  49296. },
  49297. back: {
  49298. height: math.unit(5 + 2/12, "feet"),
  49299. name: "Back",
  49300. image: {
  49301. source: "./media/characters/grar/back.svg",
  49302. extra: 1385/1169,
  49303. bottom: 23/1408
  49304. }
  49305. },
  49306. },
  49307. [
  49308. {
  49309. name: "Normal",
  49310. height: math.unit(5 + 2/12, "feet"),
  49311. default: true
  49312. },
  49313. ]
  49314. ))
  49315. characterMakers.push(() => makeCharacter(
  49316. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  49317. {
  49318. front: {
  49319. height: math.unit(13 + 7/12, "feet"),
  49320. weight: math.unit(2200, "lb"),
  49321. name: "Front",
  49322. image: {
  49323. source: "./media/characters/endraya/front.svg",
  49324. extra: 1289/1215,
  49325. bottom: 50/1339
  49326. }
  49327. },
  49328. nude: {
  49329. height: math.unit(13 + 7/12, "feet"),
  49330. weight: math.unit(2200, "lb"),
  49331. name: "Nude",
  49332. image: {
  49333. source: "./media/characters/endraya/nude.svg",
  49334. extra: 1247/1171,
  49335. bottom: 40/1287
  49336. }
  49337. },
  49338. head: {
  49339. height: math.unit(2.6, "feet"),
  49340. name: "Head",
  49341. image: {
  49342. source: "./media/characters/endraya/head.svg"
  49343. }
  49344. },
  49345. slit: {
  49346. height: math.unit(3.4, "feet"),
  49347. name: "Slit",
  49348. image: {
  49349. source: "./media/characters/endraya/slit.svg"
  49350. }
  49351. },
  49352. },
  49353. [
  49354. {
  49355. name: "Normal",
  49356. height: math.unit(13 + 7/12, "feet"),
  49357. default: true
  49358. },
  49359. {
  49360. name: "Macro",
  49361. height: math.unit(200, "feet")
  49362. },
  49363. ]
  49364. ))
  49365. characterMakers.push(() => makeCharacter(
  49366. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  49367. {
  49368. front: {
  49369. height: math.unit(1.81, "meters"),
  49370. weight: math.unit(69, "kg"),
  49371. name: "Front",
  49372. image: {
  49373. source: "./media/characters/rodryana/front.svg",
  49374. extra: 2002/1921,
  49375. bottom: 53/2055
  49376. }
  49377. },
  49378. back: {
  49379. height: math.unit(1.81, "meters"),
  49380. weight: math.unit(69, "kg"),
  49381. name: "Back",
  49382. image: {
  49383. source: "./media/characters/rodryana/back.svg",
  49384. extra: 1993/1926,
  49385. bottom: 48/2041
  49386. }
  49387. },
  49388. maw: {
  49389. height: math.unit(0.19769417475, "meters"),
  49390. name: "Maw",
  49391. image: {
  49392. source: "./media/characters/rodryana/maw.svg"
  49393. }
  49394. },
  49395. slit: {
  49396. height: math.unit(0.31631067961, "meters"),
  49397. name: "Slit",
  49398. image: {
  49399. source: "./media/characters/rodryana/slit.svg"
  49400. }
  49401. },
  49402. },
  49403. [
  49404. {
  49405. name: "Normal",
  49406. height: math.unit(1.81, "meters")
  49407. },
  49408. {
  49409. name: "Mini Macro",
  49410. height: math.unit(181, "meters")
  49411. },
  49412. {
  49413. name: "Macro",
  49414. height: math.unit(452, "meters"),
  49415. default: true
  49416. },
  49417. {
  49418. name: "Mega Macro",
  49419. height: math.unit(1.375, "km")
  49420. },
  49421. {
  49422. name: "Giga Macro",
  49423. height: math.unit(13.575, "km")
  49424. },
  49425. ]
  49426. ))
  49427. characterMakers.push(() => makeCharacter(
  49428. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  49429. {
  49430. front: {
  49431. height: math.unit(6, "feet"),
  49432. weight: math.unit(1000, "lb"),
  49433. name: "Front",
  49434. image: {
  49435. source: "./media/characters/asaya/front.svg",
  49436. extra: 1460/1200,
  49437. bottom: 71/1531
  49438. }
  49439. },
  49440. },
  49441. [
  49442. {
  49443. name: "Normal",
  49444. height: math.unit(8, "km"),
  49445. default: true
  49446. },
  49447. ]
  49448. ))
  49449. characterMakers.push(() => makeCharacter(
  49450. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  49451. {
  49452. front: {
  49453. height: math.unit(3.5, "meters"),
  49454. name: "Front",
  49455. image: {
  49456. source: "./media/characters/sarzu-and-israz/front.svg",
  49457. extra: 1570/1558,
  49458. bottom: 150/1720
  49459. },
  49460. },
  49461. back: {
  49462. height: math.unit(3.5, "meters"),
  49463. name: "Back",
  49464. image: {
  49465. source: "./media/characters/sarzu-and-israz/back.svg",
  49466. extra: 1523/1509,
  49467. bottom: 132/1655
  49468. },
  49469. },
  49470. frontFemale: {
  49471. height: math.unit(3.5, "meters"),
  49472. name: "Front (Female)",
  49473. image: {
  49474. source: "./media/characters/sarzu-and-israz/front-female.svg",
  49475. extra: 1570/1558,
  49476. bottom: 150/1720
  49477. },
  49478. },
  49479. frontHerm: {
  49480. height: math.unit(3.5, "meters"),
  49481. name: "Front (Herm)",
  49482. image: {
  49483. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49484. extra: 1570/1558,
  49485. bottom: 150/1720
  49486. },
  49487. },
  49488. },
  49489. [
  49490. {
  49491. name: "Normal",
  49492. height: math.unit(3.5, "meters"),
  49493. default: true,
  49494. },
  49495. {
  49496. name: "Macro",
  49497. height: math.unit(65.5, "meters"),
  49498. },
  49499. ],
  49500. ))
  49501. characterMakers.push(() => makeCharacter(
  49502. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49503. {
  49504. front: {
  49505. height: math.unit(6, "feet"),
  49506. weight: math.unit(250, "lb"),
  49507. name: "Front",
  49508. image: {
  49509. source: "./media/characters/zenimma/front.svg",
  49510. extra: 1346/1320,
  49511. bottom: 58/1404
  49512. }
  49513. },
  49514. back: {
  49515. height: math.unit(6, "feet"),
  49516. weight: math.unit(250, "lb"),
  49517. name: "Back",
  49518. image: {
  49519. source: "./media/characters/zenimma/back.svg",
  49520. extra: 1324/1308,
  49521. bottom: 44/1368
  49522. }
  49523. },
  49524. dick: {
  49525. height: math.unit(1.44, "feet"),
  49526. name: "Dick",
  49527. image: {
  49528. source: "./media/characters/zenimma/dick.svg"
  49529. }
  49530. },
  49531. },
  49532. [
  49533. {
  49534. name: "Canon Height",
  49535. height: math.unit(66, "miles"),
  49536. default: true
  49537. },
  49538. ]
  49539. ))
  49540. characterMakers.push(() => makeCharacter(
  49541. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49542. {
  49543. nude: {
  49544. height: math.unit(6, "feet"),
  49545. weight: math.unit(150, "lb"),
  49546. name: "Nude",
  49547. image: {
  49548. source: "./media/characters/shavon/nude.svg",
  49549. extra: 1242/1096,
  49550. bottom: 98/1340
  49551. }
  49552. },
  49553. dressed: {
  49554. height: math.unit(6, "feet"),
  49555. weight: math.unit(150, "lb"),
  49556. name: "Dressed",
  49557. image: {
  49558. source: "./media/characters/shavon/dressed.svg",
  49559. extra: 1242/1096,
  49560. bottom: 98/1340
  49561. }
  49562. },
  49563. },
  49564. [
  49565. {
  49566. name: "Macro",
  49567. height: math.unit(255, "feet"),
  49568. default: true
  49569. },
  49570. ]
  49571. ))
  49572. characterMakers.push(() => makeCharacter(
  49573. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49574. {
  49575. front: {
  49576. height: math.unit(6, "feet"),
  49577. name: "Front",
  49578. image: {
  49579. source: "./media/characters/steph/front.svg",
  49580. extra: 1430/1330,
  49581. bottom: 54/1484
  49582. }
  49583. },
  49584. },
  49585. [
  49586. {
  49587. name: "Normal",
  49588. height: math.unit(6, "feet"),
  49589. default: true
  49590. },
  49591. ]
  49592. ))
  49593. characterMakers.push(() => makeCharacter(
  49594. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49595. {
  49596. front: {
  49597. height: math.unit(9, "feet"),
  49598. weight: math.unit(400, "lb"),
  49599. name: "Front",
  49600. image: {
  49601. source: "./media/characters/kil'aman/front.svg",
  49602. extra: 1210/1159,
  49603. bottom: 109/1319
  49604. }
  49605. },
  49606. head: {
  49607. height: math.unit(2.14, "feet"),
  49608. name: "Head",
  49609. image: {
  49610. source: "./media/characters/kil'aman/head.svg"
  49611. }
  49612. },
  49613. maw: {
  49614. height: math.unit(1.21, "feet"),
  49615. name: "Maw",
  49616. image: {
  49617. source: "./media/characters/kil'aman/maw.svg"
  49618. }
  49619. },
  49620. foot: {
  49621. height: math.unit(1.7, "feet"),
  49622. name: "Foot",
  49623. image: {
  49624. source: "./media/characters/kil'aman/foot.svg"
  49625. }
  49626. },
  49627. dick: {
  49628. height: math.unit(2.1, "feet"),
  49629. name: "Dick",
  49630. image: {
  49631. source: "./media/characters/kil'aman/dick.svg"
  49632. }
  49633. },
  49634. },
  49635. [
  49636. {
  49637. name: "Normal",
  49638. height: math.unit(9, "feet")
  49639. },
  49640. {
  49641. name: "Canon Height",
  49642. height: math.unit(10, "miles"),
  49643. default: true
  49644. },
  49645. {
  49646. name: "Maximum",
  49647. height: math.unit(6e9, "miles")
  49648. },
  49649. ]
  49650. ))
  49651. characterMakers.push(() => makeCharacter(
  49652. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49653. {
  49654. front: {
  49655. height: math.unit(90, "feet"),
  49656. weight: math.unit(675000, "lb"),
  49657. name: "Front",
  49658. image: {
  49659. source: "./media/characters/qadan/front.svg",
  49660. extra: 1012/1004,
  49661. bottom: 78/1090
  49662. }
  49663. },
  49664. back: {
  49665. height: math.unit(90, "feet"),
  49666. weight: math.unit(675000, "lb"),
  49667. name: "Back",
  49668. image: {
  49669. source: "./media/characters/qadan/back.svg",
  49670. extra: 1042/1031,
  49671. bottom: 55/1097
  49672. }
  49673. },
  49674. armored: {
  49675. height: math.unit(90, "feet"),
  49676. weight: math.unit(675000, "lb"),
  49677. name: "Armored",
  49678. image: {
  49679. source: "./media/characters/qadan/armored.svg",
  49680. extra: 1047/1037,
  49681. bottom: 48/1095
  49682. }
  49683. },
  49684. },
  49685. [
  49686. {
  49687. name: "Normal",
  49688. height: math.unit(90, "feet"),
  49689. default: true
  49690. },
  49691. ]
  49692. ))
  49693. characterMakers.push(() => makeCharacter(
  49694. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49695. {
  49696. front: {
  49697. height: math.unit(6, "feet"),
  49698. weight: math.unit(225, "lb"),
  49699. name: "Front",
  49700. image: {
  49701. source: "./media/characters/brooke/front.svg",
  49702. extra: 1050/1010,
  49703. bottom: 66/1116
  49704. }
  49705. },
  49706. back: {
  49707. height: math.unit(6, "feet"),
  49708. weight: math.unit(225, "lb"),
  49709. name: "Back",
  49710. image: {
  49711. source: "./media/characters/brooke/back.svg",
  49712. extra: 1053/1013,
  49713. bottom: 41/1094
  49714. }
  49715. },
  49716. dressed: {
  49717. height: math.unit(6, "feet"),
  49718. weight: math.unit(225, "lb"),
  49719. name: "Dressed",
  49720. image: {
  49721. source: "./media/characters/brooke/dressed.svg",
  49722. extra: 1050/1010,
  49723. bottom: 66/1116
  49724. }
  49725. },
  49726. },
  49727. [
  49728. {
  49729. name: "Canon Height",
  49730. height: math.unit(500, "miles"),
  49731. default: true
  49732. },
  49733. ]
  49734. ))
  49735. characterMakers.push(() => makeCharacter(
  49736. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49737. {
  49738. front: {
  49739. height: math.unit(6 + 2/12, "feet"),
  49740. weight: math.unit(210, "lb"),
  49741. name: "Front",
  49742. image: {
  49743. source: "./media/characters/wubs/front.svg",
  49744. extra: 1345/1325,
  49745. bottom: 70/1415
  49746. }
  49747. },
  49748. back: {
  49749. height: math.unit(6 + 2/12, "feet"),
  49750. weight: math.unit(210, "lb"),
  49751. name: "Back",
  49752. image: {
  49753. source: "./media/characters/wubs/back.svg",
  49754. extra: 1296/1275,
  49755. bottom: 58/1354
  49756. }
  49757. },
  49758. },
  49759. [
  49760. {
  49761. name: "Normal",
  49762. height: math.unit(6 + 2/12, "feet"),
  49763. default: true
  49764. },
  49765. {
  49766. name: "Macro",
  49767. height: math.unit(1000, "feet")
  49768. },
  49769. {
  49770. name: "Megamacro",
  49771. height: math.unit(1, "mile")
  49772. },
  49773. ]
  49774. ))
  49775. characterMakers.push(() => makeCharacter(
  49776. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49777. {
  49778. front: {
  49779. height: math.unit(4, "feet"),
  49780. weight: math.unit(120, "lb"),
  49781. name: "Front",
  49782. image: {
  49783. source: "./media/characters/blue/front.svg",
  49784. extra: 1636/1525,
  49785. bottom: 43/1679
  49786. }
  49787. },
  49788. back: {
  49789. height: math.unit(4, "feet"),
  49790. weight: math.unit(120, "lb"),
  49791. name: "Back",
  49792. image: {
  49793. source: "./media/characters/blue/back.svg",
  49794. extra: 1660/1560,
  49795. bottom: 57/1717
  49796. }
  49797. },
  49798. paws: {
  49799. height: math.unit(0.826, "feet"),
  49800. name: "Paws",
  49801. image: {
  49802. source: "./media/characters/blue/paws.svg"
  49803. }
  49804. },
  49805. },
  49806. [
  49807. {
  49808. name: "Micro",
  49809. height: math.unit(3, "inches")
  49810. },
  49811. {
  49812. name: "Normal",
  49813. height: math.unit(4, "feet"),
  49814. default: true
  49815. },
  49816. {
  49817. name: "Femenine Form",
  49818. height: math.unit(14, "feet")
  49819. },
  49820. {
  49821. name: "Werebat Form",
  49822. height: math.unit(18, "feet")
  49823. },
  49824. ]
  49825. ))
  49826. characterMakers.push(() => makeCharacter(
  49827. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49828. {
  49829. female: {
  49830. height: math.unit(7 + 4/12, "feet"),
  49831. weight: math.unit(243, "lb"),
  49832. name: "Female",
  49833. image: {
  49834. source: "./media/characters/kaya/female.svg",
  49835. extra: 975/898,
  49836. bottom: 34/1009
  49837. }
  49838. },
  49839. herm: {
  49840. height: math.unit(7 + 4/12, "feet"),
  49841. weight: math.unit(243, "lb"),
  49842. name: "Herm",
  49843. image: {
  49844. source: "./media/characters/kaya/herm.svg",
  49845. extra: 975/898,
  49846. bottom: 34/1009
  49847. }
  49848. },
  49849. },
  49850. [
  49851. {
  49852. name: "Normal",
  49853. height: math.unit(7 + 4/12, "feet"),
  49854. default: true
  49855. },
  49856. ]
  49857. ))
  49858. characterMakers.push(() => makeCharacter(
  49859. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49860. {
  49861. female: {
  49862. height: math.unit(9 + 4/12, "feet"),
  49863. weight: math.unit(398, "lb"),
  49864. name: "Female",
  49865. image: {
  49866. source: "./media/characters/kassandra/female.svg",
  49867. extra: 908/839,
  49868. bottom: 61/969
  49869. }
  49870. },
  49871. intersex: {
  49872. height: math.unit(9 + 4/12, "feet"),
  49873. weight: math.unit(398, "lb"),
  49874. name: "Intersex",
  49875. image: {
  49876. source: "./media/characters/kassandra/intersex.svg",
  49877. extra: 908/839,
  49878. bottom: 61/969
  49879. }
  49880. },
  49881. },
  49882. [
  49883. {
  49884. name: "Normal",
  49885. height: math.unit(9 + 4/12, "feet"),
  49886. default: true
  49887. },
  49888. ]
  49889. ))
  49890. characterMakers.push(() => makeCharacter(
  49891. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49892. {
  49893. front: {
  49894. height: math.unit(3, "meters"),
  49895. name: "Front",
  49896. image: {
  49897. source: "./media/characters/amy/front.svg",
  49898. extra: 1380/1343,
  49899. bottom: 70/1450
  49900. }
  49901. },
  49902. back: {
  49903. height: math.unit(3, "meters"),
  49904. name: "Back",
  49905. image: {
  49906. source: "./media/characters/amy/back.svg",
  49907. extra: 1380/1347,
  49908. bottom: 66/1446
  49909. }
  49910. },
  49911. },
  49912. [
  49913. {
  49914. name: "Normal",
  49915. height: math.unit(3, "meters"),
  49916. default: true
  49917. },
  49918. ]
  49919. ))
  49920. characterMakers.push(() => makeCharacter(
  49921. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49922. {
  49923. side: {
  49924. height: math.unit(47, "cm"),
  49925. weight: math.unit(10.8, "kg"),
  49926. name: "Side",
  49927. image: {
  49928. source: "./media/characters/alphaschakal/side.svg",
  49929. extra: 1058/568,
  49930. bottom: 62/1120
  49931. }
  49932. },
  49933. back: {
  49934. height: math.unit(78, "cm"),
  49935. weight: math.unit(10.8, "kg"),
  49936. name: "Back",
  49937. image: {
  49938. source: "./media/characters/alphaschakal/back.svg",
  49939. extra: 1102/942,
  49940. bottom: 185/1287
  49941. }
  49942. },
  49943. head: {
  49944. height: math.unit(28, "cm"),
  49945. name: "Head",
  49946. image: {
  49947. source: "./media/characters/alphaschakal/head.svg",
  49948. extra: 696/508,
  49949. bottom: 0/696
  49950. }
  49951. },
  49952. paw: {
  49953. height: math.unit(16, "cm"),
  49954. name: "Paw",
  49955. image: {
  49956. source: "./media/characters/alphaschakal/paw.svg"
  49957. }
  49958. },
  49959. },
  49960. [
  49961. {
  49962. name: "Normal",
  49963. height: math.unit(47, "cm"),
  49964. default: true
  49965. },
  49966. {
  49967. name: "Macro",
  49968. height: math.unit(340, "cm")
  49969. },
  49970. ]
  49971. ))
  49972. characterMakers.push(() => makeCharacter(
  49973. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49974. {
  49975. front: {
  49976. height: math.unit(36, "earths"),
  49977. name: "Front",
  49978. image: {
  49979. source: "./media/characters/ecobyss/front.svg",
  49980. extra: 1282/1215,
  49981. bottom: 11/1293
  49982. }
  49983. },
  49984. back: {
  49985. height: math.unit(36, "earths"),
  49986. name: "Back",
  49987. image: {
  49988. source: "./media/characters/ecobyss/back.svg",
  49989. extra: 1291/1222,
  49990. bottom: 8/1299
  49991. }
  49992. },
  49993. },
  49994. [
  49995. {
  49996. name: "Normal",
  49997. height: math.unit(36, "earths"),
  49998. default: true
  49999. },
  50000. ]
  50001. ))
  50002. characterMakers.push(() => makeCharacter(
  50003. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  50004. {
  50005. front: {
  50006. height: math.unit(12, "feet"),
  50007. name: "Front",
  50008. image: {
  50009. source: "./media/characters/vasuk/front.svg",
  50010. extra: 1326/1207,
  50011. bottom: 64/1390
  50012. }
  50013. },
  50014. },
  50015. [
  50016. {
  50017. name: "Normal",
  50018. height: math.unit(12, "feet"),
  50019. default: true
  50020. },
  50021. ]
  50022. ))
  50023. characterMakers.push(() => makeCharacter(
  50024. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  50025. {
  50026. side: {
  50027. height: math.unit(100, "feet"),
  50028. name: "Side",
  50029. image: {
  50030. source: "./media/characters/linneaus/side.svg",
  50031. extra: 987/807,
  50032. bottom: 47/1034
  50033. }
  50034. },
  50035. },
  50036. [
  50037. {
  50038. name: "Macro",
  50039. height: math.unit(100, "feet"),
  50040. default: true
  50041. },
  50042. ]
  50043. ))
  50044. characterMakers.push(() => makeCharacter(
  50045. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  50046. {
  50047. front: {
  50048. height: math.unit(8, "feet"),
  50049. weight: math.unit(1200, "lb"),
  50050. name: "Front",
  50051. image: {
  50052. source: "./media/characters/nyterious-daligdig/front.svg",
  50053. extra: 1284/1094,
  50054. bottom: 84/1368
  50055. }
  50056. },
  50057. back: {
  50058. height: math.unit(8, "feet"),
  50059. weight: math.unit(1200, "lb"),
  50060. name: "Back",
  50061. image: {
  50062. source: "./media/characters/nyterious-daligdig/back.svg",
  50063. extra: 1301/1121,
  50064. bottom: 129/1430
  50065. }
  50066. },
  50067. mouth: {
  50068. height: math.unit(1.464, "feet"),
  50069. name: "Mouth",
  50070. image: {
  50071. source: "./media/characters/nyterious-daligdig/mouth.svg"
  50072. }
  50073. },
  50074. },
  50075. [
  50076. {
  50077. name: "Small",
  50078. height: math.unit(8, "feet"),
  50079. default: true
  50080. },
  50081. {
  50082. name: "Normal",
  50083. height: math.unit(15, "feet")
  50084. },
  50085. {
  50086. name: "Macro",
  50087. height: math.unit(90, "feet")
  50088. },
  50089. ]
  50090. ))
  50091. characterMakers.push(() => makeCharacter(
  50092. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  50093. {
  50094. front: {
  50095. height: math.unit(7 + 4/12, "feet"),
  50096. weight: math.unit(252, "lb"),
  50097. name: "Front",
  50098. image: {
  50099. source: "./media/characters/bandel/front.svg",
  50100. extra: 1946/1775,
  50101. bottom: 26/1972
  50102. }
  50103. },
  50104. back: {
  50105. height: math.unit(7 + 4/12, "feet"),
  50106. weight: math.unit(252, "lb"),
  50107. name: "Back",
  50108. image: {
  50109. source: "./media/characters/bandel/back.svg",
  50110. extra: 1940/1770,
  50111. bottom: 25/1965
  50112. }
  50113. },
  50114. maw: {
  50115. height: math.unit(2.15, "feet"),
  50116. name: "Maw",
  50117. image: {
  50118. source: "./media/characters/bandel/maw.svg"
  50119. }
  50120. },
  50121. stomach: {
  50122. height: math.unit(1.95, "feet"),
  50123. name: "Stomach",
  50124. image: {
  50125. source: "./media/characters/bandel/stomach.svg"
  50126. }
  50127. },
  50128. },
  50129. [
  50130. {
  50131. name: "Normal",
  50132. height: math.unit(7 + 4/12, "feet"),
  50133. default: true
  50134. },
  50135. ]
  50136. ))
  50137. characterMakers.push(() => makeCharacter(
  50138. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  50139. {
  50140. front: {
  50141. height: math.unit(10 + 5/12, "feet"),
  50142. weight: math.unit(773.5, "kg"),
  50143. name: "Front",
  50144. image: {
  50145. source: "./media/characters/zed/front.svg",
  50146. extra: 987/941,
  50147. bottom: 52/1039
  50148. }
  50149. },
  50150. },
  50151. [
  50152. {
  50153. name: "Short",
  50154. height: math.unit(5 + 4/12, "feet")
  50155. },
  50156. {
  50157. name: "Average",
  50158. height: math.unit(10 + 5/12, "feet"),
  50159. default: true
  50160. },
  50161. {
  50162. name: "Mini-Macro",
  50163. height: math.unit(24 + 9/12, "feet")
  50164. },
  50165. {
  50166. name: "Macro",
  50167. height: math.unit(249, "feet")
  50168. },
  50169. {
  50170. name: "Mega-Macro",
  50171. height: math.unit(12490, "feet")
  50172. },
  50173. {
  50174. name: "Giga-Macro",
  50175. height: math.unit(24.9, "miles")
  50176. },
  50177. {
  50178. name: "Tera-Macro",
  50179. height: math.unit(24900, "miles")
  50180. },
  50181. {
  50182. name: "Cosmic Scale",
  50183. height: math.unit(38.9, "lightyears")
  50184. },
  50185. {
  50186. name: "Universal Scale",
  50187. height: math.unit(138e12, "lightyears")
  50188. },
  50189. ]
  50190. ))
  50191. characterMakers.push(() => makeCharacter(
  50192. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  50193. {
  50194. front: {
  50195. height: math.unit(1561, "inches"),
  50196. name: "Front",
  50197. image: {
  50198. source: "./media/characters/ivan/front.svg",
  50199. extra: 1126/1071,
  50200. bottom: 26/1152
  50201. }
  50202. },
  50203. back: {
  50204. height: math.unit(1561, "inches"),
  50205. name: "Back",
  50206. image: {
  50207. source: "./media/characters/ivan/back.svg",
  50208. extra: 1134/1079,
  50209. bottom: 30/1164
  50210. }
  50211. },
  50212. },
  50213. [
  50214. {
  50215. name: "Normal",
  50216. height: math.unit(1561, "inches"),
  50217. default: true
  50218. },
  50219. ]
  50220. ))
  50221. characterMakers.push(() => makeCharacter(
  50222. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  50223. {
  50224. front: {
  50225. height: math.unit(5 + 7/12, "feet"),
  50226. weight: math.unit(150, "lb"),
  50227. name: "Front",
  50228. image: {
  50229. source: "./media/characters/robin-arctic-hare/front.svg",
  50230. extra: 1148/974,
  50231. bottom: 20/1168
  50232. }
  50233. },
  50234. },
  50235. [
  50236. {
  50237. name: "Normal",
  50238. height: math.unit(5 + 7/12, "feet"),
  50239. default: true
  50240. },
  50241. ]
  50242. ))
  50243. characterMakers.push(() => makeCharacter(
  50244. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  50245. {
  50246. side: {
  50247. height: math.unit(5, "feet"),
  50248. name: "Side",
  50249. image: {
  50250. source: "./media/characters/birch/side.svg",
  50251. extra: 985/796,
  50252. bottom: 111/1096
  50253. }
  50254. },
  50255. },
  50256. [
  50257. {
  50258. name: "Normal",
  50259. height: math.unit(5, "feet"),
  50260. default: true
  50261. },
  50262. ]
  50263. ))
  50264. characterMakers.push(() => makeCharacter(
  50265. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  50266. {
  50267. front: {
  50268. height: math.unit(4, "feet"),
  50269. name: "Front",
  50270. image: {
  50271. source: "./media/characters/rasp/front.svg",
  50272. extra: 561/478,
  50273. bottom: 74/635
  50274. }
  50275. },
  50276. },
  50277. [
  50278. {
  50279. name: "Normal",
  50280. height: math.unit(4, "feet"),
  50281. default: true
  50282. },
  50283. ]
  50284. ))
  50285. characterMakers.push(() => makeCharacter(
  50286. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  50287. {
  50288. front: {
  50289. height: math.unit(4 + 6/12, "feet"),
  50290. name: "Front",
  50291. image: {
  50292. source: "./media/characters/agatha/front.svg",
  50293. extra: 947/933,
  50294. bottom: 42/989
  50295. }
  50296. },
  50297. back: {
  50298. height: math.unit(4 + 6/12, "feet"),
  50299. name: "Back",
  50300. image: {
  50301. source: "./media/characters/agatha/back.svg",
  50302. extra: 935/922,
  50303. bottom: 48/983
  50304. }
  50305. },
  50306. },
  50307. [
  50308. {
  50309. name: "Normal",
  50310. height: math.unit(4 + 6 /12, "feet"),
  50311. default: true
  50312. },
  50313. {
  50314. name: "Max Size",
  50315. height: math.unit(500, "feet")
  50316. },
  50317. ]
  50318. ))
  50319. characterMakers.push(() => makeCharacter(
  50320. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  50321. {
  50322. side: {
  50323. height: math.unit(30, "feet"),
  50324. name: "Side",
  50325. image: {
  50326. source: "./media/characters/roggy/side.svg",
  50327. extra: 909/643,
  50328. bottom: 63/972
  50329. }
  50330. },
  50331. lounging: {
  50332. height: math.unit(20, "feet"),
  50333. name: "Lounging",
  50334. image: {
  50335. source: "./media/characters/roggy/lounging.svg",
  50336. extra: 643/479,
  50337. bottom: 145/788
  50338. }
  50339. },
  50340. handpaw: {
  50341. height: math.unit(13.1, "feet"),
  50342. name: "Handpaw",
  50343. image: {
  50344. source: "./media/characters/roggy/handpaw.svg"
  50345. }
  50346. },
  50347. footpaw: {
  50348. height: math.unit(15.8, "feet"),
  50349. name: "Footpaw",
  50350. image: {
  50351. source: "./media/characters/roggy/footpaw.svg"
  50352. }
  50353. },
  50354. },
  50355. [
  50356. {
  50357. name: "Menacing",
  50358. height: math.unit(30, "feet"),
  50359. default: true
  50360. },
  50361. ]
  50362. ))
  50363. characterMakers.push(() => makeCharacter(
  50364. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  50365. {
  50366. front: {
  50367. height: math.unit(5 + 7/12, "feet"),
  50368. weight: math.unit(135, "lb"),
  50369. name: "Front",
  50370. image: {
  50371. source: "./media/characters/naomi/front.svg",
  50372. extra: 1209/1154,
  50373. bottom: 129/1338
  50374. }
  50375. },
  50376. back: {
  50377. height: math.unit(5 + 7/12, "feet"),
  50378. weight: math.unit(135, "lb"),
  50379. name: "Back",
  50380. image: {
  50381. source: "./media/characters/naomi/back.svg",
  50382. extra: 1252/1190,
  50383. bottom: 23/1275
  50384. }
  50385. },
  50386. },
  50387. [
  50388. {
  50389. name: "Normal",
  50390. height: math.unit(5 + 7 /12, "feet"),
  50391. default: true
  50392. },
  50393. ]
  50394. ))
  50395. characterMakers.push(() => makeCharacter(
  50396. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  50397. {
  50398. side: {
  50399. height: math.unit(35, "meters"),
  50400. name: "Side",
  50401. image: {
  50402. source: "./media/characters/kimpi/side.svg",
  50403. extra: 419/382,
  50404. bottom: 63/482
  50405. }
  50406. },
  50407. hand: {
  50408. height: math.unit(8.96, "meters"),
  50409. name: "Hand",
  50410. image: {
  50411. source: "./media/characters/kimpi/hand.svg"
  50412. }
  50413. },
  50414. },
  50415. [
  50416. {
  50417. name: "Normal",
  50418. height: math.unit(35, "meters"),
  50419. default: true
  50420. },
  50421. ]
  50422. ))
  50423. characterMakers.push(() => makeCharacter(
  50424. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  50425. {
  50426. front: {
  50427. height: math.unit(4 + 4/12, "feet"),
  50428. name: "Front",
  50429. image: {
  50430. source: "./media/characters/pepper-purrloin/front.svg",
  50431. extra: 1141/1024,
  50432. bottom: 21/1162
  50433. }
  50434. },
  50435. },
  50436. [
  50437. {
  50438. name: "Normal",
  50439. height: math.unit(4 + 4/12, "feet"),
  50440. default: true
  50441. },
  50442. ]
  50443. ))
  50444. characterMakers.push(() => makeCharacter(
  50445. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  50446. {
  50447. front: {
  50448. height: math.unit(6 + 2/12, "feet"),
  50449. name: "Front",
  50450. image: {
  50451. source: "./media/characters/raphael/front.svg",
  50452. extra: 1101/962,
  50453. bottom: 59/1160
  50454. }
  50455. },
  50456. },
  50457. [
  50458. {
  50459. name: "Normal",
  50460. height: math.unit(6 + 2/12, "feet"),
  50461. default: true
  50462. },
  50463. ]
  50464. ))
  50465. characterMakers.push(() => makeCharacter(
  50466. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  50467. {
  50468. front: {
  50469. height: math.unit(6, "feet"),
  50470. weight: math.unit(150, "lb"),
  50471. name: "Front",
  50472. image: {
  50473. source: "./media/characters/victor-williams/front.svg",
  50474. extra: 1894/1825,
  50475. bottom: 67/1961
  50476. }
  50477. },
  50478. },
  50479. [
  50480. {
  50481. name: "Normal",
  50482. height: math.unit(6, "feet"),
  50483. default: true
  50484. },
  50485. ]
  50486. ))
  50487. characterMakers.push(() => makeCharacter(
  50488. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50489. {
  50490. front: {
  50491. height: math.unit(5 + 8/12, "feet"),
  50492. weight: math.unit(150, "lb"),
  50493. name: "Front",
  50494. image: {
  50495. source: "./media/characters/rachel/front.svg",
  50496. extra: 1902/1787,
  50497. bottom: 46/1948
  50498. }
  50499. },
  50500. },
  50501. [
  50502. {
  50503. name: "Base Height",
  50504. height: math.unit(5 + 8/12, "feet"),
  50505. default: true
  50506. },
  50507. {
  50508. name: "Macro",
  50509. height: math.unit(200, "feet")
  50510. },
  50511. {
  50512. name: "Mega Macro",
  50513. height: math.unit(1, "mile")
  50514. },
  50515. {
  50516. name: "Giga Macro",
  50517. height: math.unit(1500, "miles")
  50518. },
  50519. {
  50520. name: "Tera Macro",
  50521. height: math.unit(8000, "miles")
  50522. },
  50523. {
  50524. name: "Tera Macro+",
  50525. height: math.unit(2e5, "miles")
  50526. },
  50527. ]
  50528. ))
  50529. characterMakers.push(() => makeCharacter(
  50530. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50531. {
  50532. front: {
  50533. height: math.unit(6.5, "feet"),
  50534. name: "Front",
  50535. image: {
  50536. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50537. extra: 860/819,
  50538. bottom: 307/1167
  50539. }
  50540. },
  50541. back: {
  50542. height: math.unit(6.5, "feet"),
  50543. name: "Back",
  50544. image: {
  50545. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50546. extra: 880/837,
  50547. bottom: 395/1275
  50548. }
  50549. },
  50550. sleeping: {
  50551. height: math.unit(2.79, "feet"),
  50552. name: "Sleeping",
  50553. image: {
  50554. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50555. extra: 465/383,
  50556. bottom: 263/728
  50557. }
  50558. },
  50559. maw: {
  50560. height: math.unit(2.52, "feet"),
  50561. name: "Maw",
  50562. image: {
  50563. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50564. }
  50565. },
  50566. },
  50567. [
  50568. {
  50569. name: "Normal",
  50570. height: math.unit(6.5, "feet"),
  50571. default: true
  50572. },
  50573. ]
  50574. ))
  50575. characterMakers.push(() => makeCharacter(
  50576. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50577. {
  50578. front: {
  50579. height: math.unit(5, "feet"),
  50580. name: "Front",
  50581. image: {
  50582. source: "./media/characters/nova-nerium/front.svg",
  50583. extra: 1548/1392,
  50584. bottom: 374/1922
  50585. }
  50586. },
  50587. back: {
  50588. height: math.unit(5, "feet"),
  50589. name: "Back",
  50590. image: {
  50591. source: "./media/characters/nova-nerium/back.svg",
  50592. extra: 1658/1468,
  50593. bottom: 257/1915
  50594. }
  50595. },
  50596. },
  50597. [
  50598. {
  50599. name: "Normal",
  50600. height: math.unit(5, "feet"),
  50601. default: true
  50602. },
  50603. ]
  50604. ))
  50605. characterMakers.push(() => makeCharacter(
  50606. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50607. {
  50608. front: {
  50609. height: math.unit(5 + 4/12, "feet"),
  50610. name: "Front",
  50611. image: {
  50612. source: "./media/characters/ashe-pyriph/front.svg",
  50613. extra: 1935/1747,
  50614. bottom: 60/1995
  50615. }
  50616. },
  50617. },
  50618. [
  50619. {
  50620. name: "Normal",
  50621. height: math.unit(5 + 4/12, "feet"),
  50622. default: true
  50623. },
  50624. ]
  50625. ))
  50626. characterMakers.push(() => makeCharacter(
  50627. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50628. {
  50629. front: {
  50630. height: math.unit(8.7, "feet"),
  50631. name: "Front",
  50632. image: {
  50633. source: "./media/characters/flicker-wisp/front.svg",
  50634. extra: 1835/1613,
  50635. bottom: 449/2284
  50636. }
  50637. },
  50638. side: {
  50639. height: math.unit(8.7, "feet"),
  50640. name: "Side",
  50641. image: {
  50642. source: "./media/characters/flicker-wisp/side.svg",
  50643. extra: 1841/1642,
  50644. bottom: 336/2177
  50645. },
  50646. default: true
  50647. },
  50648. maw: {
  50649. height: math.unit(3.35, "feet"),
  50650. name: "Maw",
  50651. image: {
  50652. source: "./media/characters/flicker-wisp/maw.svg",
  50653. extra: 2338/1506,
  50654. bottom: 0/2338
  50655. }
  50656. },
  50657. ovipositor: {
  50658. height: math.unit(4.95, "feet"),
  50659. name: "Ovipositor",
  50660. image: {
  50661. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50662. }
  50663. },
  50664. egg: {
  50665. height: math.unit(0.385, "feet"),
  50666. weight: math.unit(2, "lb"),
  50667. name: "Egg",
  50668. image: {
  50669. source: "./media/characters/flicker-wisp/egg.svg"
  50670. }
  50671. },
  50672. },
  50673. [
  50674. {
  50675. name: "Normal",
  50676. height: math.unit(8.7, "feet"),
  50677. default: true
  50678. },
  50679. ]
  50680. ))
  50681. characterMakers.push(() => makeCharacter(
  50682. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50683. {
  50684. side: {
  50685. height: math.unit(11, "feet"),
  50686. name: "Side",
  50687. image: {
  50688. source: "./media/characters/faefnul/side.svg",
  50689. extra: 1100/1007,
  50690. bottom: 0/1100
  50691. }
  50692. },
  50693. },
  50694. [
  50695. {
  50696. name: "Normal",
  50697. height: math.unit(11, "feet"),
  50698. default: true
  50699. },
  50700. ]
  50701. ))
  50702. characterMakers.push(() => makeCharacter(
  50703. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50704. {
  50705. front: {
  50706. height: math.unit(6 + 2/12, "feet"),
  50707. name: "Front",
  50708. image: {
  50709. source: "./media/characters/shady/front.svg",
  50710. extra: 502/461,
  50711. bottom: 9/511
  50712. }
  50713. },
  50714. kneeling: {
  50715. height: math.unit(4.6, "feet"),
  50716. name: "Kneeling",
  50717. image: {
  50718. source: "./media/characters/shady/kneeling.svg",
  50719. extra: 1328/1219,
  50720. bottom: 117/1445
  50721. }
  50722. },
  50723. maw: {
  50724. height: math.unit(2, "feet"),
  50725. name: "Maw",
  50726. image: {
  50727. source: "./media/characters/shady/maw.svg"
  50728. }
  50729. },
  50730. },
  50731. [
  50732. {
  50733. name: "Nano",
  50734. height: math.unit(1, "mm")
  50735. },
  50736. {
  50737. name: "Micro",
  50738. height: math.unit(12, "mm")
  50739. },
  50740. {
  50741. name: "Tiny",
  50742. height: math.unit(3, "inches")
  50743. },
  50744. {
  50745. name: "Normal",
  50746. height: math.unit(6 + 2/12, "feet"),
  50747. default: true
  50748. },
  50749. {
  50750. name: "Big",
  50751. height: math.unit(15, "feet")
  50752. },
  50753. {
  50754. name: "Macro",
  50755. height: math.unit(150, "feet")
  50756. },
  50757. {
  50758. name: "Titanic",
  50759. height: math.unit(500, "feet")
  50760. },
  50761. ]
  50762. ))
  50763. characterMakers.push(() => makeCharacter(
  50764. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50765. {
  50766. front: {
  50767. height: math.unit(12, "feet"),
  50768. name: "Front",
  50769. image: {
  50770. source: "./media/characters/fenrir/front.svg",
  50771. extra: 968/875,
  50772. bottom: 22/990
  50773. }
  50774. },
  50775. },
  50776. [
  50777. {
  50778. name: "Big",
  50779. height: math.unit(12, "feet"),
  50780. default: true
  50781. },
  50782. ]
  50783. ))
  50784. characterMakers.push(() => makeCharacter(
  50785. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50786. {
  50787. front: {
  50788. height: math.unit(5 + 4/12, "feet"),
  50789. name: "Front",
  50790. image: {
  50791. source: "./media/characters/makar/front.svg",
  50792. extra: 1181/1112,
  50793. bottom: 78/1259
  50794. }
  50795. },
  50796. },
  50797. [
  50798. {
  50799. name: "Normal",
  50800. height: math.unit(5 + 4/12, "feet"),
  50801. default: true
  50802. },
  50803. ]
  50804. ))
  50805. characterMakers.push(() => makeCharacter(
  50806. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50807. {
  50808. front: {
  50809. height: math.unit(5 + 7/12, "feet"),
  50810. name: "Front",
  50811. image: {
  50812. source: "./media/characters/callow/front.svg",
  50813. extra: 1482/1304,
  50814. bottom: 23/1505
  50815. }
  50816. },
  50817. back: {
  50818. height: math.unit(5 + 7/12, "feet"),
  50819. name: "Back",
  50820. image: {
  50821. source: "./media/characters/callow/back.svg",
  50822. extra: 1484/1296,
  50823. bottom: 25/1509
  50824. }
  50825. },
  50826. },
  50827. [
  50828. {
  50829. name: "Micro",
  50830. height: math.unit(3, "inches"),
  50831. default: true
  50832. },
  50833. {
  50834. name: "Normal",
  50835. height: math.unit(5 + 7/12, "feet")
  50836. },
  50837. ]
  50838. ))
  50839. characterMakers.push(() => makeCharacter(
  50840. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50841. {
  50842. front: {
  50843. height: math.unit(6 + 2/12, "feet"),
  50844. name: "Front",
  50845. image: {
  50846. source: "./media/characters/natel/front.svg",
  50847. extra: 1833/1692,
  50848. bottom: 166/1999
  50849. }
  50850. },
  50851. },
  50852. [
  50853. {
  50854. name: "Normal",
  50855. height: math.unit(6 + 2/12, "feet"),
  50856. default: true
  50857. },
  50858. ]
  50859. ))
  50860. characterMakers.push(() => makeCharacter(
  50861. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50862. {
  50863. front: {
  50864. height: math.unit(1.75, "meters"),
  50865. name: "Front",
  50866. image: {
  50867. source: "./media/characters/misu/front.svg",
  50868. extra: 1690/1558,
  50869. bottom: 234/1924
  50870. }
  50871. },
  50872. back: {
  50873. height: math.unit(1.75, "meters"),
  50874. name: "Back",
  50875. image: {
  50876. source: "./media/characters/misu/back.svg",
  50877. extra: 1762/1618,
  50878. bottom: 146/1908
  50879. }
  50880. },
  50881. frontNude: {
  50882. height: math.unit(1.75, "meters"),
  50883. name: "Front (Nude)",
  50884. image: {
  50885. source: "./media/characters/misu/front-nude.svg",
  50886. extra: 1690/1558,
  50887. bottom: 234/1924
  50888. }
  50889. },
  50890. backNude: {
  50891. height: math.unit(1.75, "meters"),
  50892. name: "Back (Nude)",
  50893. image: {
  50894. source: "./media/characters/misu/back-nude.svg",
  50895. extra: 1762/1618,
  50896. bottom: 146/1908
  50897. }
  50898. },
  50899. frontErect: {
  50900. height: math.unit(1.75, "meters"),
  50901. name: "Front (Erect)",
  50902. image: {
  50903. source: "./media/characters/misu/front-erect.svg",
  50904. extra: 1690/1558,
  50905. bottom: 234/1924
  50906. }
  50907. },
  50908. maw: {
  50909. height: math.unit(0.47, "meters"),
  50910. name: "Maw",
  50911. image: {
  50912. source: "./media/characters/misu/maw.svg"
  50913. }
  50914. },
  50915. head: {
  50916. height: math.unit(0.35, "meters"),
  50917. name: "Head",
  50918. image: {
  50919. source: "./media/characters/misu/head.svg"
  50920. }
  50921. },
  50922. rear: {
  50923. height: math.unit(0.47, "meters"),
  50924. name: "Rear",
  50925. image: {
  50926. source: "./media/characters/misu/rear.svg"
  50927. }
  50928. },
  50929. },
  50930. [
  50931. {
  50932. name: "Normal",
  50933. height: math.unit(1.75, "meters")
  50934. },
  50935. {
  50936. name: "Not good for the people",
  50937. height: math.unit(42, "meters")
  50938. },
  50939. {
  50940. name: "Not good for the neighborhood",
  50941. height: math.unit(135, "meters")
  50942. },
  50943. {
  50944. name: "Bit bigger problem",
  50945. height: math.unit(380, "meters"),
  50946. default: true
  50947. },
  50948. {
  50949. name: "Not good for the city",
  50950. height: math.unit(1.5, "km")
  50951. },
  50952. {
  50953. name: "Not good for the county",
  50954. height: math.unit(5.5, "km")
  50955. },
  50956. {
  50957. name: "Not good for the state",
  50958. height: math.unit(25, "km")
  50959. },
  50960. {
  50961. name: "Not good for the country",
  50962. height: math.unit(125, "km")
  50963. },
  50964. {
  50965. name: "Not good for the continent",
  50966. height: math.unit(2100, "km")
  50967. },
  50968. {
  50969. name: "Not good for the planet",
  50970. height: math.unit(35000, "km")
  50971. },
  50972. {
  50973. name: "Just no",
  50974. height: math.unit(8.5e18, "km")
  50975. },
  50976. ]
  50977. ))
  50978. characterMakers.push(() => makeCharacter(
  50979. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50980. {
  50981. front: {
  50982. height: math.unit(6.5, "feet"),
  50983. name: "Front",
  50984. image: {
  50985. source: "./media/characters/poppy/front.svg",
  50986. extra: 1878/1812,
  50987. bottom: 43/1921
  50988. }
  50989. },
  50990. feet: {
  50991. height: math.unit(1.06, "feet"),
  50992. name: "Feet",
  50993. image: {
  50994. source: "./media/characters/poppy/feet.svg",
  50995. extra: 1083/1083,
  50996. bottom: 87/1170
  50997. }
  50998. },
  50999. },
  51000. [
  51001. {
  51002. name: "Human",
  51003. height: math.unit(6.5, "feet")
  51004. },
  51005. {
  51006. name: "Default",
  51007. height: math.unit(300, "feet"),
  51008. default: true
  51009. },
  51010. {
  51011. name: "Huge",
  51012. height: math.unit(850, "feet")
  51013. },
  51014. {
  51015. name: "Mega",
  51016. height: math.unit(8000, "feet")
  51017. },
  51018. {
  51019. name: "Giga",
  51020. height: math.unit(300, "miles")
  51021. },
  51022. ]
  51023. ))
  51024. characterMakers.push(() => makeCharacter(
  51025. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  51026. {
  51027. bipedal: {
  51028. height: math.unit(7, "feet"),
  51029. name: "Bipedal",
  51030. image: {
  51031. source: "./media/characters/zener/bipedal.svg",
  51032. extra: 874/805,
  51033. bottom: 109/983
  51034. }
  51035. },
  51036. quadrupedal: {
  51037. height: math.unit(4.64, "feet"),
  51038. name: "Quadrupedal",
  51039. image: {
  51040. source: "./media/characters/zener/quadrupedal.svg",
  51041. extra: 638/507,
  51042. bottom: 190/828
  51043. }
  51044. },
  51045. cock: {
  51046. height: math.unit(18, "inches"),
  51047. name: "Cock",
  51048. image: {
  51049. source: "./media/characters/zener/cock.svg"
  51050. }
  51051. },
  51052. },
  51053. [
  51054. {
  51055. name: "Normal",
  51056. height: math.unit(7, "feet"),
  51057. default: true
  51058. },
  51059. ]
  51060. ))
  51061. characterMakers.push(() => makeCharacter(
  51062. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  51063. {
  51064. nude: {
  51065. height: math.unit(5 + 6/12, "feet"),
  51066. name: "Nude",
  51067. image: {
  51068. source: "./media/characters/charlie-dog/nude.svg",
  51069. extra: 768/734,
  51070. bottom: 26/794
  51071. }
  51072. },
  51073. dressed: {
  51074. height: math.unit(5 + 6/12, "feet"),
  51075. name: "Dressed",
  51076. image: {
  51077. source: "./media/characters/charlie-dog/dressed.svg",
  51078. extra: 768/734,
  51079. bottom: 26/794
  51080. }
  51081. },
  51082. },
  51083. [
  51084. {
  51085. name: "Normal",
  51086. height: math.unit(5 + 6/12, "feet"),
  51087. default: true
  51088. },
  51089. ]
  51090. ))
  51091. characterMakers.push(() => makeCharacter(
  51092. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  51093. {
  51094. front: {
  51095. height: math.unit(6 + 4/12, "feet"),
  51096. name: "Front",
  51097. image: {
  51098. source: "./media/characters/ir'istrasz/front.svg",
  51099. extra: 1014/977,
  51100. bottom: 65/1079
  51101. }
  51102. },
  51103. back: {
  51104. height: math.unit(6 + 4/12, "feet"),
  51105. name: "Back",
  51106. image: {
  51107. source: "./media/characters/ir'istrasz/back.svg",
  51108. extra: 1024/992,
  51109. bottom: 34/1058
  51110. }
  51111. },
  51112. },
  51113. [
  51114. {
  51115. name: "Normal",
  51116. height: math.unit(6 + 4/12, "feet"),
  51117. default: true
  51118. },
  51119. ]
  51120. ))
  51121. characterMakers.push(() => makeCharacter(
  51122. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  51123. {
  51124. front: {
  51125. height: math.unit(5 + 8/12, "feet"),
  51126. name: "Front",
  51127. image: {
  51128. source: "./media/characters/dee-ditto/front.svg",
  51129. extra: 1874/1785,
  51130. bottom: 68/1942
  51131. }
  51132. },
  51133. back: {
  51134. height: math.unit(5 + 8/12, "feet"),
  51135. name: "Back",
  51136. image: {
  51137. source: "./media/characters/dee-ditto/back.svg",
  51138. extra: 1870/1783,
  51139. bottom: 77/1947
  51140. }
  51141. },
  51142. },
  51143. [
  51144. {
  51145. name: "Normal",
  51146. height: math.unit(5 + 8/12, "feet"),
  51147. default: true
  51148. },
  51149. ]
  51150. ))
  51151. characterMakers.push(() => makeCharacter(
  51152. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  51153. {
  51154. front: {
  51155. height: math.unit(7 + 6/12, "feet"),
  51156. name: "Front",
  51157. image: {
  51158. source: "./media/characters/fey/front.svg",
  51159. extra: 995/979,
  51160. bottom: 30/1025
  51161. }
  51162. },
  51163. back: {
  51164. height: math.unit(7 + 6/12, "feet"),
  51165. name: "Back",
  51166. image: {
  51167. source: "./media/characters/fey/back.svg",
  51168. extra: 1079/1008,
  51169. bottom: 5/1084
  51170. }
  51171. },
  51172. dressed: {
  51173. height: math.unit(7 + 6/12, "feet"),
  51174. name: "Dressed",
  51175. image: {
  51176. source: "./media/characters/fey/dressed.svg",
  51177. extra: 995/979,
  51178. bottom: 30/1025
  51179. }
  51180. },
  51181. },
  51182. [
  51183. {
  51184. name: "Normal",
  51185. height: math.unit(7 + 6/12, "feet"),
  51186. default: true
  51187. },
  51188. ]
  51189. ))
  51190. characterMakers.push(() => makeCharacter(
  51191. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  51192. {
  51193. standing: {
  51194. height: math.unit(17, "feet"),
  51195. name: "Standing",
  51196. image: {
  51197. source: "./media/characters/aster/standing.svg",
  51198. extra: 1798/1598,
  51199. bottom: 117/1915
  51200. }
  51201. },
  51202. },
  51203. [
  51204. {
  51205. name: "Normal",
  51206. height: math.unit(17, "feet"),
  51207. default: true
  51208. },
  51209. {
  51210. name: "Homewrecker",
  51211. height: math.unit(95, "feet")
  51212. },
  51213. {
  51214. name: "Planet Devourer",
  51215. height: math.unit(1008000, "miles")
  51216. },
  51217. ]
  51218. ))
  51219. characterMakers.push(() => makeCharacter(
  51220. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  51221. {
  51222. front: {
  51223. height: math.unit(6 + 5/12, "feet"),
  51224. weight: math.unit(265, "lb"),
  51225. name: "Front",
  51226. image: {
  51227. source: "./media/characters/devon-childs/front.svg",
  51228. extra: 1795/1721,
  51229. bottom: 41/1836
  51230. }
  51231. },
  51232. side: {
  51233. height: math.unit(6 + 5/12, "feet"),
  51234. weight: math.unit(265, "lb"),
  51235. name: "Side",
  51236. image: {
  51237. source: "./media/characters/devon-childs/side.svg",
  51238. extra: 1812/1738,
  51239. bottom: 30/1842
  51240. }
  51241. },
  51242. back: {
  51243. height: math.unit(6 + 5/12, "feet"),
  51244. weight: math.unit(265, "lb"),
  51245. name: "Back",
  51246. image: {
  51247. source: "./media/characters/devon-childs/back.svg",
  51248. extra: 1808/1735,
  51249. bottom: 23/1831
  51250. }
  51251. },
  51252. hand: {
  51253. height: math.unit(1.464, "feet"),
  51254. name: "Hand",
  51255. image: {
  51256. source: "./media/characters/devon-childs/hand.svg"
  51257. }
  51258. },
  51259. foot: {
  51260. height: math.unit(1.6, "feet"),
  51261. name: "Foot",
  51262. image: {
  51263. source: "./media/characters/devon-childs/foot.svg"
  51264. }
  51265. },
  51266. },
  51267. [
  51268. {
  51269. name: "Micro",
  51270. height: math.unit(7, "cm")
  51271. },
  51272. {
  51273. name: "Normal",
  51274. height: math.unit(6 + 5/12, "feet"),
  51275. default: true
  51276. },
  51277. {
  51278. name: "Macro",
  51279. height: math.unit(154, "feet")
  51280. },
  51281. ]
  51282. ))
  51283. characterMakers.push(() => makeCharacter(
  51284. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  51285. {
  51286. front: {
  51287. height: math.unit(6, "feet"),
  51288. weight: math.unit(180, "lb"),
  51289. name: "Front",
  51290. image: {
  51291. source: "./media/characters/lydemox-vir/front.svg",
  51292. extra: 1632/1435,
  51293. bottom: 58/1690
  51294. }
  51295. },
  51296. frontSFW: {
  51297. height: math.unit(6, "feet"),
  51298. weight: math.unit(180, "lb"),
  51299. name: "Front (SFW)",
  51300. image: {
  51301. source: "./media/characters/lydemox-vir/front-sfw.svg",
  51302. extra: 1632/1435,
  51303. bottom: 58/1690
  51304. }
  51305. },
  51306. back: {
  51307. height: math.unit(6, "feet"),
  51308. weight: math.unit(180, "lb"),
  51309. name: "Back",
  51310. image: {
  51311. source: "./media/characters/lydemox-vir/back.svg",
  51312. extra: 1593/1408,
  51313. bottom: 31/1624
  51314. }
  51315. },
  51316. paw: {
  51317. height: math.unit(1.85, "feet"),
  51318. name: "Paw",
  51319. image: {
  51320. source: "./media/characters/lydemox-vir/paw.svg"
  51321. }
  51322. },
  51323. dick: {
  51324. height: math.unit(1.8, "feet"),
  51325. name: "Dick",
  51326. image: {
  51327. source: "./media/characters/lydemox-vir/dick.svg"
  51328. }
  51329. },
  51330. },
  51331. [
  51332. {
  51333. name: "Macro",
  51334. height: math.unit(100, "feet"),
  51335. default: true
  51336. },
  51337. {
  51338. name: "Teramacro",
  51339. height: math.unit(1, "earth")
  51340. },
  51341. {
  51342. name: "Planetary",
  51343. height: math.unit(20, "earths")
  51344. },
  51345. ]
  51346. ))
  51347. characterMakers.push(() => makeCharacter(
  51348. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  51349. {
  51350. front: {
  51351. height: math.unit(15 + 8/12, "feet"),
  51352. weight: math.unit(1237, "kg"),
  51353. name: "Front",
  51354. image: {
  51355. source: "./media/characters/mia/front.svg",
  51356. extra: 1573/1446,
  51357. bottom: 58/1631
  51358. }
  51359. },
  51360. },
  51361. [
  51362. {
  51363. name: "Small",
  51364. height: math.unit(9 + 5/12, "feet")
  51365. },
  51366. {
  51367. name: "Normal",
  51368. height: math.unit(15 + 8/12, "feet"),
  51369. default: true
  51370. },
  51371. ]
  51372. ))
  51373. characterMakers.push(() => makeCharacter(
  51374. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  51375. {
  51376. front: {
  51377. height: math.unit(10 + 6/12, "feet"),
  51378. weight: math.unit(1.3, "tons"),
  51379. name: "Front",
  51380. image: {
  51381. source: "./media/characters/mr-graves/front.svg",
  51382. extra: 1779/1695,
  51383. bottom: 198/1977
  51384. }
  51385. },
  51386. },
  51387. [
  51388. {
  51389. name: "Normal",
  51390. height: math.unit(10 + 6 /12, "feet"),
  51391. default: true
  51392. },
  51393. ]
  51394. ))
  51395. characterMakers.push(() => makeCharacter(
  51396. { name: "Jess", species: ["human"], tags: ["anthro"] },
  51397. {
  51398. dressedFront: {
  51399. height: math.unit(5 + 8/12, "feet"),
  51400. weight: math.unit(125, "lb"),
  51401. name: "Dressed (Front)",
  51402. image: {
  51403. source: "./media/characters/jess/dressed-front.svg",
  51404. extra: 1176/1152,
  51405. bottom: 42/1218
  51406. }
  51407. },
  51408. dressedSide: {
  51409. height: math.unit(5 + 8/12, "feet"),
  51410. weight: math.unit(125, "lb"),
  51411. name: "Dressed (Side)",
  51412. image: {
  51413. source: "./media/characters/jess/dressed-side.svg",
  51414. extra: 1204/1190,
  51415. bottom: 6/1210
  51416. }
  51417. },
  51418. nudeFront: {
  51419. height: math.unit(5 + 8/12, "feet"),
  51420. weight: math.unit(125, "lb"),
  51421. name: "Nude (Front)",
  51422. image: {
  51423. source: "./media/characters/jess/nude-front.svg",
  51424. extra: 1176/1152,
  51425. bottom: 42/1218
  51426. }
  51427. },
  51428. nudeSide: {
  51429. height: math.unit(5 + 8/12, "feet"),
  51430. weight: math.unit(125, "lb"),
  51431. name: "Nude (Side)",
  51432. image: {
  51433. source: "./media/characters/jess/nude-side.svg",
  51434. extra: 1204/1190,
  51435. bottom: 6/1210
  51436. }
  51437. },
  51438. organsFront: {
  51439. height: math.unit(2.83799342105, "feet"),
  51440. name: "Organs (Front)",
  51441. image: {
  51442. source: "./media/characters/jess/organs-front.svg"
  51443. }
  51444. },
  51445. organsSide: {
  51446. height: math.unit(2.64225290474, "feet"),
  51447. name: "Organs (Side)",
  51448. image: {
  51449. source: "./media/characters/jess/organs-side.svg"
  51450. }
  51451. },
  51452. digestiveTractFront: {
  51453. height: math.unit(2.8106580871, "feet"),
  51454. name: "Digestive Tract (Front)",
  51455. image: {
  51456. source: "./media/characters/jess/digestive-tract-front.svg"
  51457. }
  51458. },
  51459. digestiveTractSide: {
  51460. height: math.unit(2.54365045014, "feet"),
  51461. name: "Digestive Tract (Side)",
  51462. image: {
  51463. source: "./media/characters/jess/digestive-tract-side.svg"
  51464. }
  51465. },
  51466. respiratorySystemFront: {
  51467. height: math.unit(1.11196233456, "feet"),
  51468. name: "Respiratory System (Front)",
  51469. image: {
  51470. source: "./media/characters/jess/respiratory-system-front.svg"
  51471. }
  51472. },
  51473. respiratorySystemSide: {
  51474. height: math.unit(0.89327966297, "feet"),
  51475. name: "Respiratory System (Side)",
  51476. image: {
  51477. source: "./media/characters/jess/respiratory-system-side.svg"
  51478. }
  51479. },
  51480. urinaryTractFront: {
  51481. height: math.unit(1.16126356186, "feet"),
  51482. name: "Urinary Tract (Front)",
  51483. image: {
  51484. source: "./media/characters/jess/urinary-tract-front.svg"
  51485. }
  51486. },
  51487. urinaryTractSide: {
  51488. height: math.unit(1.20910039627, "feet"),
  51489. name: "Urinary Tract (Side)",
  51490. image: {
  51491. source: "./media/characters/jess/urinary-tract-side.svg"
  51492. }
  51493. },
  51494. reproductiveOrgansFront: {
  51495. height: math.unit(0.48422591566, "feet"),
  51496. name: "Reproductive Organs (Front)",
  51497. image: {
  51498. source: "./media/characters/jess/reproductive-organs-front.svg"
  51499. }
  51500. },
  51501. reproductiveOrgansSide: {
  51502. height: math.unit(0.61553314481, "feet"),
  51503. name: "Reproductive Organs (Side)",
  51504. image: {
  51505. source: "./media/characters/jess/reproductive-organs-side.svg"
  51506. }
  51507. },
  51508. breastsFront: {
  51509. height: math.unit(0.47690395121, "feet"),
  51510. name: "Breasts (Front)",
  51511. image: {
  51512. source: "./media/characters/jess/breasts-front.svg"
  51513. }
  51514. },
  51515. breastsSide: {
  51516. height: math.unit(0.30556998307, "feet"),
  51517. name: "Breasts (Side)",
  51518. image: {
  51519. source: "./media/characters/jess/breasts-side.svg"
  51520. }
  51521. },
  51522. heartFront: {
  51523. height: math.unit(0.53011022622, "feet"),
  51524. name: "Heart (Front)",
  51525. image: {
  51526. source: "./media/characters/jess/heart-front.svg"
  51527. }
  51528. },
  51529. heartSide: {
  51530. height: math.unit(0.51790695213, "feet"),
  51531. name: "Heart (Side)",
  51532. image: {
  51533. source: "./media/characters/jess/heart-side.svg"
  51534. }
  51535. },
  51536. earsAndNoseFront: {
  51537. height: math.unit(0.29385483995, "feet"),
  51538. name: "Ears and Nose (Front)",
  51539. image: {
  51540. source: "./media/characters/jess/ears-and-nose-front.svg"
  51541. }
  51542. },
  51543. earsAndNoseSide: {
  51544. height: math.unit(0.18109658741, "feet"),
  51545. name: "Ears and Nose (Side)",
  51546. image: {
  51547. source: "./media/characters/jess/ears-and-nose-side.svg"
  51548. }
  51549. },
  51550. },
  51551. [
  51552. {
  51553. name: "Normal",
  51554. height: math.unit(5 + 8/12, "feet"),
  51555. default: true
  51556. },
  51557. ]
  51558. ))
  51559. characterMakers.push(() => makeCharacter(
  51560. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51561. {
  51562. front: {
  51563. height: math.unit(6, "feet"),
  51564. weight: math.unit(6.64467e-7, "grams"),
  51565. name: "Front",
  51566. image: {
  51567. source: "./media/characters/wimpering/front.svg",
  51568. extra: 597/587,
  51569. bottom: 34/631
  51570. }
  51571. },
  51572. },
  51573. [
  51574. {
  51575. name: "Micro",
  51576. height: math.unit(0.4, "mm"),
  51577. default: true
  51578. },
  51579. ]
  51580. ))
  51581. characterMakers.push(() => makeCharacter(
  51582. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51583. {
  51584. front: {
  51585. height: math.unit(5 + 2/12, "feet"),
  51586. weight: math.unit(110, "lb"),
  51587. name: "Front",
  51588. image: {
  51589. source: "./media/characters/keltre/front.svg",
  51590. extra: 1099/1057,
  51591. bottom: 22/1121
  51592. }
  51593. },
  51594. back: {
  51595. height: math.unit(5 + 2/12, "feet"),
  51596. weight: math.unit(110, "lb"),
  51597. name: "Back",
  51598. image: {
  51599. source: "./media/characters/keltre/back.svg",
  51600. extra: 1095/1053,
  51601. bottom: 17/1112
  51602. }
  51603. },
  51604. dressed: {
  51605. height: math.unit(5 + 2/12, "feet"),
  51606. weight: math.unit(110, "lb"),
  51607. name: "Dressed",
  51608. image: {
  51609. source: "./media/characters/keltre/dressed.svg",
  51610. extra: 1099/1057,
  51611. bottom: 22/1121
  51612. }
  51613. },
  51614. winter: {
  51615. height: math.unit(5 + 2/12, "feet"),
  51616. weight: math.unit(110, "lb"),
  51617. name: "Winter",
  51618. image: {
  51619. source: "./media/characters/keltre/winter.svg",
  51620. extra: 1099/1057,
  51621. bottom: 22/1121
  51622. }
  51623. },
  51624. head: {
  51625. height: math.unit(1.61 * 0.86, "feet"),
  51626. name: "Head",
  51627. image: {
  51628. source: "./media/characters/keltre/head.svg",
  51629. extra: 534/421,
  51630. bottom: 0/534
  51631. }
  51632. },
  51633. hand: {
  51634. height: math.unit(1.3 * 0.86, "feet"),
  51635. name: "Hand",
  51636. image: {
  51637. source: "./media/characters/keltre/hand.svg"
  51638. }
  51639. },
  51640. foot: {
  51641. height: math.unit(1.8 * 0.86, "feet"),
  51642. name: "Foot",
  51643. image: {
  51644. source: "./media/characters/keltre/foot.svg"
  51645. }
  51646. },
  51647. },
  51648. [
  51649. {
  51650. name: "Fine",
  51651. height: math.unit(1, "inch")
  51652. },
  51653. {
  51654. name: "Dimnutive",
  51655. height: math.unit(4, "inches")
  51656. },
  51657. {
  51658. name: "Tiny",
  51659. height: math.unit(1, "foot")
  51660. },
  51661. {
  51662. name: "Small",
  51663. height: math.unit(3, "feet")
  51664. },
  51665. {
  51666. name: "Normal",
  51667. height: math.unit(5 + 2/12, "feet"),
  51668. default: true
  51669. },
  51670. ]
  51671. ))
  51672. characterMakers.push(() => makeCharacter(
  51673. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51674. {
  51675. front: {
  51676. height: math.unit(6 + 2/12, "feet"),
  51677. name: "Front",
  51678. image: {
  51679. source: "./media/characters/nox/front.svg",
  51680. extra: 1917/1830,
  51681. bottom: 74/1991
  51682. }
  51683. },
  51684. back: {
  51685. height: math.unit(6 + 2/12, "feet"),
  51686. name: "Back",
  51687. image: {
  51688. source: "./media/characters/nox/back.svg",
  51689. extra: 1896/1815,
  51690. bottom: 21/1917
  51691. }
  51692. },
  51693. head: {
  51694. height: math.unit(1.1, "feet"),
  51695. name: "Head",
  51696. image: {
  51697. source: "./media/characters/nox/head.svg",
  51698. extra: 874/704,
  51699. bottom: 0/874
  51700. }
  51701. },
  51702. tattoo: {
  51703. height: math.unit(0.729, "feet"),
  51704. name: "Tattoo",
  51705. image: {
  51706. source: "./media/characters/nox/tattoo.svg"
  51707. }
  51708. },
  51709. },
  51710. [
  51711. {
  51712. name: "Normal",
  51713. height: math.unit(6 + 2/12, "feet")
  51714. },
  51715. {
  51716. name: "Gigamacro",
  51717. height: math.unit(2, "earths"),
  51718. default: true
  51719. },
  51720. {
  51721. name: "Cosmic",
  51722. height: math.unit(867, "yottameters")
  51723. },
  51724. ]
  51725. ))
  51726. characterMakers.push(() => makeCharacter(
  51727. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51728. {
  51729. front: {
  51730. height: math.unit(6, "feet"),
  51731. weight: math.unit(150, "lb"),
  51732. name: "Front",
  51733. image: {
  51734. source: "./media/characters/caspian/front.svg",
  51735. extra: 1443/1359,
  51736. bottom: 0/1443
  51737. }
  51738. },
  51739. back: {
  51740. height: math.unit(6, "feet"),
  51741. weight: math.unit(150, "lb"),
  51742. name: "Back",
  51743. image: {
  51744. source: "./media/characters/caspian/back.svg",
  51745. extra: 1379/1309,
  51746. bottom: 0/1379
  51747. }
  51748. },
  51749. head: {
  51750. height: math.unit(0.9, "feet"),
  51751. name: "Head",
  51752. image: {
  51753. source: "./media/characters/caspian/head.svg",
  51754. extra: 692/492,
  51755. bottom: 0/692
  51756. }
  51757. },
  51758. headAlt: {
  51759. height: math.unit(0.95, "feet"),
  51760. name: "Head (Alt)",
  51761. image: {
  51762. source: "./media/characters/caspian/head-alt.svg",
  51763. extra: 668/508,
  51764. bottom: 0/668
  51765. }
  51766. },
  51767. hand: {
  51768. height: math.unit(0.8, "feet"),
  51769. name: "Hand",
  51770. image: {
  51771. source: "./media/characters/caspian/hand.svg"
  51772. }
  51773. },
  51774. paw: {
  51775. height: math.unit(0.95, "feet"),
  51776. name: "Paw",
  51777. image: {
  51778. source: "./media/characters/caspian/paw.svg"
  51779. }
  51780. },
  51781. },
  51782. [
  51783. {
  51784. name: "Normal",
  51785. height: math.unit(162, "feet"),
  51786. default: true
  51787. },
  51788. ]
  51789. ))
  51790. characterMakers.push(() => makeCharacter(
  51791. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51792. {
  51793. front: {
  51794. height: math.unit(6, "feet"),
  51795. name: "Front",
  51796. image: {
  51797. source: "./media/characters/myra-aisling/front.svg",
  51798. extra: 1268/1166,
  51799. bottom: 73/1341
  51800. }
  51801. },
  51802. back: {
  51803. height: math.unit(6, "feet"),
  51804. name: "Back",
  51805. image: {
  51806. source: "./media/characters/myra-aisling/back.svg",
  51807. extra: 1249/1149,
  51808. bottom: 79/1328
  51809. }
  51810. },
  51811. dressed: {
  51812. height: math.unit(6, "feet"),
  51813. name: "Dressed",
  51814. image: {
  51815. source: "./media/characters/myra-aisling/dressed.svg",
  51816. extra: 1290/1189,
  51817. bottom: 47/1337
  51818. }
  51819. },
  51820. hand: {
  51821. height: math.unit(1.1, "feet"),
  51822. name: "Hand",
  51823. image: {
  51824. source: "./media/characters/myra-aisling/hand.svg"
  51825. }
  51826. },
  51827. paw: {
  51828. height: math.unit(1.23, "feet"),
  51829. name: "Paw",
  51830. image: {
  51831. source: "./media/characters/myra-aisling/paw.svg"
  51832. }
  51833. },
  51834. },
  51835. [
  51836. {
  51837. name: "Normal",
  51838. height: math.unit(160, "feet"),
  51839. default: true
  51840. },
  51841. ]
  51842. ))
  51843. characterMakers.push(() => makeCharacter(
  51844. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51845. {
  51846. front: {
  51847. height: math.unit(6, "feet"),
  51848. name: "Front",
  51849. image: {
  51850. source: "./media/characters/tenley-sidero/front.svg",
  51851. extra: 1365/1276,
  51852. bottom: 47/1412
  51853. }
  51854. },
  51855. back: {
  51856. height: math.unit(6, "feet"),
  51857. name: "Back",
  51858. image: {
  51859. source: "./media/characters/tenley-sidero/back.svg",
  51860. extra: 1383/1283,
  51861. bottom: 35/1418
  51862. }
  51863. },
  51864. dressed: {
  51865. height: math.unit(6, "feet"),
  51866. name: "Dressed",
  51867. image: {
  51868. source: "./media/characters/tenley-sidero/dressed.svg",
  51869. extra: 1364/1275,
  51870. bottom: 42/1406
  51871. }
  51872. },
  51873. head: {
  51874. height: math.unit(1.47, "feet"),
  51875. name: "Head",
  51876. image: {
  51877. source: "./media/characters/tenley-sidero/head.svg",
  51878. extra: 610/490,
  51879. bottom: 0/610
  51880. }
  51881. },
  51882. },
  51883. [
  51884. {
  51885. name: "Normal",
  51886. height: math.unit(154, "feet"),
  51887. default: true
  51888. },
  51889. ]
  51890. ))
  51891. characterMakers.push(() => makeCharacter(
  51892. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51893. {
  51894. front: {
  51895. height: math.unit(5, "inches"),
  51896. name: "Front",
  51897. image: {
  51898. source: "./media/characters/mallory/front.svg",
  51899. extra: 1919/1678,
  51900. bottom: 29/1948
  51901. }
  51902. },
  51903. hand: {
  51904. height: math.unit(0.73, "inches"),
  51905. name: "Hand",
  51906. image: {
  51907. source: "./media/characters/mallory/hand.svg"
  51908. }
  51909. },
  51910. paw: {
  51911. height: math.unit(0.68, "inches"),
  51912. name: "Paw",
  51913. image: {
  51914. source: "./media/characters/mallory/paw.svg"
  51915. }
  51916. },
  51917. },
  51918. [
  51919. {
  51920. name: "Small",
  51921. height: math.unit(5, "inches"),
  51922. default: true
  51923. },
  51924. ]
  51925. ))
  51926. characterMakers.push(() => makeCharacter(
  51927. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51928. {
  51929. naked: {
  51930. height: math.unit(6, "feet"),
  51931. name: "Naked",
  51932. image: {
  51933. source: "./media/characters/mab/naked.svg",
  51934. extra: 1855/1757,
  51935. bottom: 208/2063
  51936. }
  51937. },
  51938. outside: {
  51939. height: math.unit(6, "feet"),
  51940. name: "Outside",
  51941. image: {
  51942. source: "./media/characters/mab/outside.svg",
  51943. extra: 1855/1757,
  51944. bottom: 208/2063
  51945. }
  51946. },
  51947. party: {
  51948. height: math.unit(6, "feet"),
  51949. name: "Party",
  51950. image: {
  51951. source: "./media/characters/mab/party.svg",
  51952. extra: 1855/1757,
  51953. bottom: 208/2063
  51954. }
  51955. },
  51956. },
  51957. [
  51958. {
  51959. name: "Normal",
  51960. height: math.unit(165, "feet"),
  51961. default: true
  51962. },
  51963. ]
  51964. ))
  51965. characterMakers.push(() => makeCharacter(
  51966. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51967. {
  51968. feral: {
  51969. height: math.unit(12, "feet"),
  51970. weight: math.unit(20000, "lb"),
  51971. name: "Side",
  51972. image: {
  51973. source: "./media/characters/winter/feral.svg",
  51974. extra: 1286/943,
  51975. bottom: 112/1398
  51976. },
  51977. form: "feral",
  51978. default: true
  51979. },
  51980. feralNsfw: {
  51981. height: math.unit(12, "feet"),
  51982. weight: math.unit(20000, "lb"),
  51983. name: "Side (NSFW)",
  51984. image: {
  51985. source: "./media/characters/winter/feral-nsfw.svg",
  51986. extra: 1286/943,
  51987. bottom: 112/1398
  51988. },
  51989. form: "feral"
  51990. },
  51991. dick: {
  51992. height: math.unit(3.79, "feet"),
  51993. name: "Dick",
  51994. image: {
  51995. source: "./media/characters/winter/dick.svg"
  51996. },
  51997. form: "feral"
  51998. },
  51999. anthro: {
  52000. height: math.unit(12, "feet"),
  52001. weight: math.unit(10, "tons"),
  52002. name: "Anthro",
  52003. image: {
  52004. source: "./media/characters/winter/anthro.svg",
  52005. extra: 1701/1553,
  52006. bottom: 64/1765
  52007. },
  52008. form: "anthro",
  52009. default: true
  52010. },
  52011. },
  52012. [
  52013. {
  52014. name: "Big",
  52015. height: math.unit(12, "feet"),
  52016. default: true,
  52017. form: "feral"
  52018. },
  52019. {
  52020. name: "Big",
  52021. height: math.unit(12, "feet"),
  52022. default: true,
  52023. form: "anthro"
  52024. },
  52025. ],
  52026. {
  52027. "feral": {
  52028. name: "Feral",
  52029. default: true
  52030. },
  52031. "anthro": {
  52032. name: "Anthro"
  52033. }
  52034. }
  52035. ))
  52036. characterMakers.push(() => makeCharacter(
  52037. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  52038. {
  52039. front: {
  52040. height: math.unit(4.1, "inches"),
  52041. name: "Front",
  52042. image: {
  52043. source: "./media/characters/alto/front.svg",
  52044. extra: 736/627,
  52045. bottom: 90/826
  52046. }
  52047. },
  52048. },
  52049. [
  52050. {
  52051. name: "Normal",
  52052. height: math.unit(4.1, "inches"),
  52053. default: true
  52054. },
  52055. ]
  52056. ))
  52057. characterMakers.push(() => makeCharacter(
  52058. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  52059. {
  52060. sitting: {
  52061. height: math.unit(3, "feet"),
  52062. name: "Sitting",
  52063. image: {
  52064. source: "./media/characters/ratstrid-v/sitting.svg",
  52065. extra: 355/310,
  52066. bottom: 136/491
  52067. }
  52068. },
  52069. },
  52070. [
  52071. {
  52072. name: "Normal",
  52073. height: math.unit(3, "feet"),
  52074. default: true
  52075. },
  52076. ]
  52077. ))
  52078. characterMakers.push(() => makeCharacter(
  52079. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  52080. {
  52081. back: {
  52082. height: math.unit(6, "feet"),
  52083. weight: math.unit(450, "lb"),
  52084. name: "Back",
  52085. image: {
  52086. source: "./media/characters/siz/back.svg",
  52087. extra: 1449/1274,
  52088. bottom: 13/1462
  52089. }
  52090. },
  52091. },
  52092. [
  52093. {
  52094. name: "Smallest",
  52095. height: math.unit(18 + 3/12, "feet")
  52096. },
  52097. {
  52098. name: "Modest",
  52099. height: math.unit(56 + 8/12, "feet"),
  52100. default: true
  52101. },
  52102. {
  52103. name: "Largest",
  52104. height: math.unit(3590, "feet")
  52105. },
  52106. ]
  52107. ))
  52108. characterMakers.push(() => makeCharacter(
  52109. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  52110. {
  52111. front: {
  52112. height: math.unit(5 + 9/12, "feet"),
  52113. weight: math.unit(150, "lb"),
  52114. name: "Front",
  52115. image: {
  52116. source: "./media/characters/ven/front.svg",
  52117. extra: 1372/1320,
  52118. bottom: 73/1445
  52119. }
  52120. },
  52121. side: {
  52122. height: math.unit(5 + 9/12, "feet"),
  52123. weight: math.unit(1150, "lb"),
  52124. name: "Side",
  52125. image: {
  52126. source: "./media/characters/ven/side.svg",
  52127. extra: 1119/1070,
  52128. bottom: 42/1161
  52129. },
  52130. default: true
  52131. },
  52132. },
  52133. [
  52134. {
  52135. name: "Normal",
  52136. height: math.unit(5 + 9/12, "feet"),
  52137. default: true
  52138. },
  52139. ]
  52140. ))
  52141. characterMakers.push(() => makeCharacter(
  52142. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  52143. {
  52144. front: {
  52145. height: math.unit(12, "feet"),
  52146. weight: math.unit(1000, "kg"),
  52147. name: "Front",
  52148. image: {
  52149. source: "./media/characters/maple/front.svg",
  52150. extra: 1193/1081,
  52151. bottom: 22/1215
  52152. }
  52153. },
  52154. },
  52155. [
  52156. {
  52157. name: "Compressed",
  52158. height: math.unit(7, "feet")
  52159. },
  52160. {
  52161. name: "Normal",
  52162. height: math.unit(12, "feet"),
  52163. default: true
  52164. },
  52165. ]
  52166. ))
  52167. characterMakers.push(() => makeCharacter(
  52168. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  52169. {
  52170. front: {
  52171. height: math.unit(9, "feet"),
  52172. weight: math.unit(1500, "lb"),
  52173. name: "Front",
  52174. image: {
  52175. source: "./media/characters/nora/front.svg",
  52176. extra: 1348/1286,
  52177. bottom: 218/1566
  52178. }
  52179. },
  52180. erect: {
  52181. height: math.unit(9, "feet"),
  52182. weight: math.unit(11500, "lb"),
  52183. name: "Erect",
  52184. image: {
  52185. source: "./media/characters/nora/erect.svg",
  52186. extra: 1488/1433,
  52187. bottom: 133/1621
  52188. }
  52189. },
  52190. },
  52191. [
  52192. {
  52193. name: "Normal",
  52194. height: math.unit(9, "feet"),
  52195. default: true
  52196. },
  52197. ]
  52198. ))
  52199. characterMakers.push(() => makeCharacter(
  52200. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  52201. {
  52202. front: {
  52203. height: math.unit(25, "feet"),
  52204. weight: math.unit(27500, "lb"),
  52205. name: "Front",
  52206. image: {
  52207. source: "./media/characters/north-caudin/front.svg",
  52208. extra: 1184/1082,
  52209. bottom: 23/1207
  52210. }
  52211. },
  52212. },
  52213. [
  52214. {
  52215. name: "Compressed",
  52216. height: math.unit(10, "feet")
  52217. },
  52218. {
  52219. name: "Normal",
  52220. height: math.unit(25, "feet"),
  52221. default: true
  52222. },
  52223. ]
  52224. ))
  52225. characterMakers.push(() => makeCharacter(
  52226. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  52227. {
  52228. front: {
  52229. height: math.unit(9, "feet"),
  52230. weight: math.unit(1250, "lb"),
  52231. name: "Front",
  52232. image: {
  52233. source: "./media/characters/merrian/front.svg",
  52234. extra: 2393/2304,
  52235. bottom: 40/2433
  52236. }
  52237. },
  52238. },
  52239. [
  52240. {
  52241. name: "Normal",
  52242. height: math.unit(9, "feet"),
  52243. default: true
  52244. },
  52245. ]
  52246. ))
  52247. characterMakers.push(() => makeCharacter(
  52248. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  52249. {
  52250. front: {
  52251. height: math.unit(9, "feet"),
  52252. weight: math.unit(1000, "lb"),
  52253. name: "Front",
  52254. image: {
  52255. source: "./media/characters/hazel/front.svg",
  52256. extra: 2351/2298,
  52257. bottom: 38/2389
  52258. }
  52259. },
  52260. },
  52261. [
  52262. {
  52263. name: "Normal",
  52264. height: math.unit(9, "feet"),
  52265. default: true
  52266. },
  52267. ]
  52268. ))
  52269. characterMakers.push(() => makeCharacter(
  52270. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  52271. {
  52272. front: {
  52273. height: math.unit(13, "feet"),
  52274. weight: math.unit(3200, "lb"),
  52275. name: "Front",
  52276. image: {
  52277. source: "./media/characters/emma/front.svg",
  52278. extra: 2263/2029,
  52279. bottom: 68/2331
  52280. }
  52281. },
  52282. },
  52283. [
  52284. {
  52285. name: "Normal",
  52286. height: math.unit(13, "feet"),
  52287. default: true
  52288. },
  52289. ]
  52290. ))
  52291. characterMakers.push(() => makeCharacter(
  52292. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  52293. {
  52294. front: {
  52295. height: math.unit(11 + 9/12, "feet"),
  52296. weight: math.unit(2500, "lb"),
  52297. name: "Front",
  52298. image: {
  52299. source: "./media/characters/ilumina/front.svg",
  52300. extra: 2248/2209,
  52301. bottom: 164/2412
  52302. }
  52303. },
  52304. },
  52305. [
  52306. {
  52307. name: "Normal",
  52308. height: math.unit(11 + 9/12, "feet"),
  52309. default: true
  52310. },
  52311. ]
  52312. ))
  52313. characterMakers.push(() => makeCharacter(
  52314. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  52315. {
  52316. front: {
  52317. height: math.unit(8 + 10/12, "feet"),
  52318. weight: math.unit(1350, "lb"),
  52319. name: "Front",
  52320. image: {
  52321. source: "./media/characters/moonshine/front.svg",
  52322. extra: 2395/2288,
  52323. bottom: 40/2435
  52324. }
  52325. },
  52326. },
  52327. [
  52328. {
  52329. name: "Normal",
  52330. height: math.unit(8 + 10/12, "feet"),
  52331. default: true
  52332. },
  52333. ]
  52334. ))
  52335. characterMakers.push(() => makeCharacter(
  52336. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  52337. {
  52338. front: {
  52339. height: math.unit(14, "feet"),
  52340. weight: math.unit(3400, "lb"),
  52341. name: "Front",
  52342. image: {
  52343. source: "./media/characters/aletia/front.svg",
  52344. extra: 1185/1052,
  52345. bottom: 21/1206
  52346. }
  52347. },
  52348. },
  52349. [
  52350. {
  52351. name: "Compressed",
  52352. height: math.unit(8, "feet")
  52353. },
  52354. {
  52355. name: "Normal",
  52356. height: math.unit(14, "feet"),
  52357. default: true
  52358. },
  52359. ]
  52360. ))
  52361. characterMakers.push(() => makeCharacter(
  52362. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  52363. {
  52364. front: {
  52365. height: math.unit(17, "feet"),
  52366. weight: math.unit(6500, "lb"),
  52367. name: "Front",
  52368. image: {
  52369. source: "./media/characters/deidra/front.svg",
  52370. extra: 1201/1081,
  52371. bottom: 16/1217
  52372. }
  52373. },
  52374. },
  52375. [
  52376. {
  52377. name: "Compressed",
  52378. height: math.unit(9 + 6/12, "feet")
  52379. },
  52380. {
  52381. name: "Normal",
  52382. height: math.unit(17, "feet"),
  52383. default: true
  52384. },
  52385. ]
  52386. ))
  52387. characterMakers.push(() => makeCharacter(
  52388. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  52389. {
  52390. front: {
  52391. height: math.unit(7 + 4/12, "feet"),
  52392. weight: math.unit(280, "lb"),
  52393. name: "Front",
  52394. image: {
  52395. source: "./media/characters/freki-yrmori/front.svg",
  52396. extra: 1286/1182,
  52397. bottom: 29/1315
  52398. }
  52399. },
  52400. maw: {
  52401. height: math.unit(0.9, "feet"),
  52402. name: "Maw",
  52403. image: {
  52404. source: "./media/characters/freki-yrmori/maw.svg"
  52405. }
  52406. },
  52407. },
  52408. [
  52409. {
  52410. name: "Normal",
  52411. height: math.unit(7 + 4/12, "feet"),
  52412. default: true
  52413. },
  52414. {
  52415. name: "Macro",
  52416. height: math.unit(38.5, "meters")
  52417. },
  52418. ]
  52419. ))
  52420. characterMakers.push(() => makeCharacter(
  52421. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  52422. {
  52423. side: {
  52424. height: math.unit(47.2, "meters"),
  52425. weight: math.unit(10000, "tons"),
  52426. name: "Side",
  52427. image: {
  52428. source: "./media/characters/aetherios/side.svg",
  52429. extra: 2363/642,
  52430. bottom: 221/2584
  52431. }
  52432. },
  52433. top: {
  52434. height: math.unit(240, "meters"),
  52435. weight: math.unit(10000, "tons"),
  52436. name: "Top",
  52437. image: {
  52438. source: "./media/characters/aetherios/top.svg"
  52439. }
  52440. },
  52441. bottom: {
  52442. height: math.unit(240, "meters"),
  52443. weight: math.unit(10000, "tons"),
  52444. name: "Bottom",
  52445. image: {
  52446. source: "./media/characters/aetherios/bottom.svg"
  52447. }
  52448. },
  52449. head: {
  52450. height: math.unit(38.6, "meters"),
  52451. name: "Head",
  52452. image: {
  52453. source: "./media/characters/aetherios/head.svg",
  52454. extra: 1335/1112,
  52455. bottom: 0/1335
  52456. }
  52457. },
  52458. front: {
  52459. height: math.unit(29, "meters"),
  52460. name: "Front",
  52461. image: {
  52462. source: "./media/characters/aetherios/front.svg",
  52463. extra: 1266/953,
  52464. bottom: 158/1424
  52465. }
  52466. },
  52467. maw: {
  52468. height: math.unit(16.37, "meters"),
  52469. name: "Maw",
  52470. image: {
  52471. source: "./media/characters/aetherios/maw.svg",
  52472. extra: 748/637,
  52473. bottom: 0/748
  52474. },
  52475. extraAttributes: {
  52476. preyCapacity: {
  52477. name: "Capacity",
  52478. power: 3,
  52479. type: "volume",
  52480. base: math.unit(1000, "people")
  52481. },
  52482. tongueSize: {
  52483. name: "Tongue Size",
  52484. power: 2,
  52485. type: "area",
  52486. base: math.unit(21, "m^2")
  52487. }
  52488. }
  52489. },
  52490. forepaw: {
  52491. height: math.unit(18, "meters"),
  52492. name: "Forepaw",
  52493. image: {
  52494. source: "./media/characters/aetherios/forepaw.svg"
  52495. }
  52496. },
  52497. hindpaw: {
  52498. height: math.unit(23, "meters"),
  52499. name: "Hindpaw",
  52500. image: {
  52501. source: "./media/characters/aetherios/hindpaw.svg"
  52502. }
  52503. },
  52504. genitals: {
  52505. height: math.unit(42, "meters"),
  52506. name: "Genitals",
  52507. image: {
  52508. source: "./media/characters/aetherios/genitals.svg"
  52509. }
  52510. },
  52511. },
  52512. [
  52513. {
  52514. name: "Normal",
  52515. height: math.unit(47.2, "meters"),
  52516. default: true
  52517. },
  52518. {
  52519. name: "Macro",
  52520. height: math.unit(160, "meters")
  52521. },
  52522. {
  52523. name: "Mega",
  52524. height: math.unit(1.87, "km")
  52525. },
  52526. {
  52527. name: "Giga",
  52528. height: math.unit(40000, "km")
  52529. },
  52530. {
  52531. name: "Stellar",
  52532. height: math.unit(158000000, "km")
  52533. },
  52534. {
  52535. name: "Cosmic",
  52536. height: math.unit(9.46e12, "km")
  52537. },
  52538. ]
  52539. ))
  52540. characterMakers.push(() => makeCharacter(
  52541. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52542. {
  52543. front: {
  52544. height: math.unit(5 + 4/12, "feet"),
  52545. weight: math.unit(80, "lb"),
  52546. name: "Front",
  52547. image: {
  52548. source: "./media/characters/mizu-gieeg/front.svg",
  52549. extra: 850/709,
  52550. bottom: 52/902
  52551. }
  52552. },
  52553. back: {
  52554. height: math.unit(5 + 4/12, "feet"),
  52555. weight: math.unit(80, "lb"),
  52556. name: "Back",
  52557. image: {
  52558. source: "./media/characters/mizu-gieeg/back.svg",
  52559. extra: 882/745,
  52560. bottom: 25/907
  52561. }
  52562. },
  52563. },
  52564. [
  52565. {
  52566. name: "Normal",
  52567. height: math.unit(5 + 4/12, "feet"),
  52568. default: true
  52569. },
  52570. ]
  52571. ))
  52572. characterMakers.push(() => makeCharacter(
  52573. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52574. {
  52575. front: {
  52576. height: math.unit(6, "feet"),
  52577. name: "Front",
  52578. image: {
  52579. source: "./media/characters/roselle-st-papier/front.svg",
  52580. extra: 1430/1280,
  52581. bottom: 37/1467
  52582. }
  52583. },
  52584. back: {
  52585. height: math.unit(6, "feet"),
  52586. name: "Back",
  52587. image: {
  52588. source: "./media/characters/roselle-st-papier/back.svg",
  52589. extra: 1491/1296,
  52590. bottom: 23/1514
  52591. }
  52592. },
  52593. ear: {
  52594. height: math.unit(1.26, "feet"),
  52595. name: "Ear",
  52596. image: {
  52597. source: "./media/characters/roselle-st-papier/ear.svg"
  52598. }
  52599. },
  52600. },
  52601. [
  52602. {
  52603. name: "Normal",
  52604. height: math.unit(150, "feet"),
  52605. default: true
  52606. },
  52607. ]
  52608. ))
  52609. characterMakers.push(() => makeCharacter(
  52610. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52611. {
  52612. front: {
  52613. height: math.unit(1, "inches"),
  52614. name: "Front",
  52615. image: {
  52616. source: "./media/characters/valargent/front.svg",
  52617. extra: 1825/1694,
  52618. bottom: 62/1887
  52619. }
  52620. },
  52621. back: {
  52622. height: math.unit(1, "inches"),
  52623. name: "Back",
  52624. image: {
  52625. source: "./media/characters/valargent/back.svg",
  52626. extra: 1775/1682,
  52627. bottom: 88/1863
  52628. }
  52629. },
  52630. },
  52631. [
  52632. {
  52633. name: "Micro",
  52634. height: math.unit(1, "inch"),
  52635. default: true
  52636. },
  52637. ]
  52638. ))
  52639. characterMakers.push(() => makeCharacter(
  52640. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52641. {
  52642. front: {
  52643. height: math.unit(3.4, "meters"),
  52644. name: "Front",
  52645. image: {
  52646. source: "./media/characters/zarina/front.svg",
  52647. extra: 1733/1425,
  52648. bottom: 93/1826
  52649. }
  52650. },
  52651. squatting: {
  52652. height: math.unit(2.14, "meters"),
  52653. name: "Squatting",
  52654. image: {
  52655. source: "./media/characters/zarina/squatting.svg",
  52656. extra: 1073/788,
  52657. bottom: 63/1136
  52658. }
  52659. },
  52660. back: {
  52661. height: math.unit(2.14, "meters"),
  52662. name: "Back",
  52663. image: {
  52664. source: "./media/characters/zarina/back.svg",
  52665. extra: 1128/885,
  52666. bottom: 0/1128
  52667. }
  52668. },
  52669. },
  52670. [
  52671. {
  52672. name: "Normal",
  52673. height: math.unit(3.4, "meters"),
  52674. default: true
  52675. },
  52676. {
  52677. name: "Big",
  52678. height: math.unit(5, "meters")
  52679. },
  52680. {
  52681. name: "Macro",
  52682. height: math.unit(110, "meters")
  52683. },
  52684. ]
  52685. ))
  52686. characterMakers.push(() => makeCharacter(
  52687. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52688. {
  52689. front: {
  52690. height: math.unit(7, "feet"),
  52691. name: "Front",
  52692. image: {
  52693. source: "./media/characters/ventus-astro-fox/front.svg",
  52694. extra: 1792/1623,
  52695. bottom: 28/1820
  52696. }
  52697. },
  52698. back: {
  52699. height: math.unit(7, "feet"),
  52700. name: "Back",
  52701. image: {
  52702. source: "./media/characters/ventus-astro-fox/back.svg",
  52703. extra: 1789/1620,
  52704. bottom: 31/1820
  52705. }
  52706. },
  52707. outfit: {
  52708. height: math.unit(7, "feet"),
  52709. name: "Outfit",
  52710. image: {
  52711. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52712. extra: 1054/925,
  52713. bottom: 15/1069
  52714. }
  52715. },
  52716. head: {
  52717. height: math.unit(1.12, "feet"),
  52718. name: "Head",
  52719. image: {
  52720. source: "./media/characters/ventus-astro-fox/head.svg",
  52721. extra: 866/504,
  52722. bottom: 0/866
  52723. }
  52724. },
  52725. hand: {
  52726. height: math.unit(1, "feet"),
  52727. name: "Hand",
  52728. image: {
  52729. source: "./media/characters/ventus-astro-fox/hand.svg"
  52730. }
  52731. },
  52732. paw: {
  52733. height: math.unit(1.5, "feet"),
  52734. name: "Paw",
  52735. image: {
  52736. source: "./media/characters/ventus-astro-fox/paw.svg"
  52737. }
  52738. },
  52739. },
  52740. [
  52741. {
  52742. name: "Normal",
  52743. height: math.unit(7, "feet"),
  52744. default: true
  52745. },
  52746. {
  52747. name: "Macro",
  52748. height: math.unit(200, "feet")
  52749. },
  52750. {
  52751. name: "Cosmic",
  52752. height: math.unit(3, "universes")
  52753. },
  52754. ]
  52755. ))
  52756. characterMakers.push(() => makeCharacter(
  52757. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52758. {
  52759. front: {
  52760. height: math.unit(3, "meters"),
  52761. weight: math.unit(7000, "lb"),
  52762. name: "Front",
  52763. image: {
  52764. source: "./media/characters/core-t/front.svg",
  52765. extra: 5729/4941,
  52766. bottom: 1129/6858
  52767. }
  52768. },
  52769. },
  52770. [
  52771. {
  52772. name: "Big",
  52773. height: math.unit(3, "meters"),
  52774. default: true
  52775. },
  52776. ]
  52777. ))
  52778. characterMakers.push(() => makeCharacter(
  52779. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52780. {
  52781. normal: {
  52782. height: math.unit(6 + 6/12, "feet"),
  52783. weight: math.unit(275, "lb"),
  52784. name: "Front",
  52785. image: {
  52786. source: "./media/characters/cadbunny/normal.svg",
  52787. extra: 1129/947,
  52788. bottom: 93/1222
  52789. },
  52790. default: true,
  52791. form: "normal"
  52792. },
  52793. gigantamax: {
  52794. height: math.unit(26, "feet"),
  52795. weight: math.unit(16000, "lb"),
  52796. name: "Front",
  52797. image: {
  52798. source: "./media/characters/cadbunny/gigantamax.svg",
  52799. extra: 1133/944,
  52800. bottom: 90/1223
  52801. },
  52802. default: true,
  52803. form: "gigantamax"
  52804. },
  52805. },
  52806. [
  52807. {
  52808. name: "Normal",
  52809. height: math.unit(6 + 6/12, "feet"),
  52810. default: true,
  52811. form: "normal"
  52812. },
  52813. {
  52814. name: "Small",
  52815. height: math.unit(26, "feet"),
  52816. default: true,
  52817. form: "gigantamax"
  52818. },
  52819. {
  52820. name: "Large",
  52821. height: math.unit(78, "feet"),
  52822. form: "gigantamax"
  52823. },
  52824. ],
  52825. {
  52826. "normal": {
  52827. name: "Normal",
  52828. default: true
  52829. },
  52830. "gigantamax": {
  52831. name: "Gigantamax"
  52832. }
  52833. }
  52834. ))
  52835. characterMakers.push(() => makeCharacter(
  52836. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52837. {
  52838. anthroFront: {
  52839. height: math.unit(8, "feet"),
  52840. weight: math.unit(300, "lb"),
  52841. name: "Front",
  52842. image: {
  52843. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52844. extra: 1272/1176,
  52845. bottom: 53/1325
  52846. },
  52847. form: "anthro",
  52848. default: true
  52849. },
  52850. feralSide: {
  52851. height: math.unit(4, "feet"),
  52852. weight: math.unit(250, "lb"),
  52853. name: "Side",
  52854. image: {
  52855. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52856. extra: 731/621,
  52857. bottom: 0/731
  52858. },
  52859. form: "feral",
  52860. default: true
  52861. },
  52862. },
  52863. [
  52864. {
  52865. name: "Regular",
  52866. height: math.unit(8, "feet"),
  52867. form: "anthro"
  52868. },
  52869. {
  52870. name: "Macro",
  52871. height: math.unit(250, "feet"),
  52872. form: "anthro",
  52873. default: true
  52874. },
  52875. {
  52876. name: "Regular",
  52877. height: math.unit(4, "feet"),
  52878. form: "feral"
  52879. },
  52880. {
  52881. name: "Macro",
  52882. height: math.unit(125, "feet"),
  52883. form: "feral",
  52884. default: true
  52885. },
  52886. ],
  52887. {
  52888. "anthro": {
  52889. name: "Anthro",
  52890. default: true
  52891. },
  52892. "feral": {
  52893. name: "Feral",
  52894. },
  52895. }
  52896. ))
  52897. characterMakers.push(() => makeCharacter(
  52898. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52899. {
  52900. front: {
  52901. height: math.unit(11 + 10/12, "feet"),
  52902. weight: math.unit(1587, "kg"),
  52903. name: "Front",
  52904. image: {
  52905. source: "./media/characters/maple-javira-dragon/front.svg",
  52906. extra: 1136/744,
  52907. bottom: 73/1209
  52908. }
  52909. },
  52910. side: {
  52911. height: math.unit(11 + 10/12, "feet"),
  52912. weight: math.unit(1587, "kg"),
  52913. name: "Side",
  52914. image: {
  52915. source: "./media/characters/maple-javira-dragon/side.svg",
  52916. extra: 712/505,
  52917. bottom: 17/729
  52918. }
  52919. },
  52920. head: {
  52921. height: math.unit(8.05, "feet"),
  52922. name: "Head",
  52923. image: {
  52924. source: "./media/characters/maple-javira-dragon/head.svg",
  52925. extra: 1420/1344,
  52926. bottom: 0/1420
  52927. }
  52928. },
  52929. },
  52930. [
  52931. {
  52932. name: "Normal",
  52933. height: math.unit(11 + 10/12, "feet"),
  52934. default: true
  52935. },
  52936. ]
  52937. ))
  52938. characterMakers.push(() => makeCharacter(
  52939. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52940. {
  52941. front: {
  52942. height: math.unit(117, "cm"),
  52943. weight: math.unit(50, "kg"),
  52944. name: "Front",
  52945. image: {
  52946. source: "./media/characters/sonia-wyverntail/front.svg",
  52947. extra: 708/592,
  52948. bottom: 25/733
  52949. }
  52950. },
  52951. },
  52952. [
  52953. {
  52954. name: "Normal",
  52955. height: math.unit(117, "cm"),
  52956. default: true
  52957. },
  52958. ]
  52959. ))
  52960. characterMakers.push(() => makeCharacter(
  52961. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52962. {
  52963. front: {
  52964. height: math.unit(6 + 5/12, "feet"),
  52965. name: "Front",
  52966. image: {
  52967. source: "./media/characters/micah/front.svg",
  52968. extra: 1758/1546,
  52969. bottom: 214/1972
  52970. }
  52971. },
  52972. },
  52973. [
  52974. {
  52975. name: "Normal",
  52976. height: math.unit(6 + 5/12, "feet"),
  52977. default: true
  52978. },
  52979. ]
  52980. ))
  52981. characterMakers.push(() => makeCharacter(
  52982. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52983. {
  52984. front: {
  52985. height: math.unit(1.75, "meters"),
  52986. weight: math.unit(100, "kg"),
  52987. name: "Front",
  52988. image: {
  52989. source: "./media/characters/zarya/front.svg",
  52990. extra: 741/735,
  52991. bottom: 44/785
  52992. },
  52993. extraAttributes: {
  52994. "tailLength": {
  52995. name: "Tail Length",
  52996. power: 1,
  52997. type: "length",
  52998. base: math.unit(180, "cm")
  52999. },
  53000. "pawLength": {
  53001. name: "Paw Length",
  53002. power: 1,
  53003. type: "length",
  53004. base: math.unit(31, "cm")
  53005. },
  53006. }
  53007. },
  53008. side: {
  53009. height: math.unit(1.75, "meters"),
  53010. weight: math.unit(100, "kg"),
  53011. name: "Side",
  53012. image: {
  53013. source: "./media/characters/zarya/side.svg",
  53014. extra: 776/770,
  53015. bottom: 17/793
  53016. },
  53017. extraAttributes: {
  53018. "tailLength": {
  53019. name: "Tail Length",
  53020. power: 1,
  53021. type: "length",
  53022. base: math.unit(180, "cm")
  53023. },
  53024. "pawLength": {
  53025. name: "Paw Length",
  53026. power: 1,
  53027. type: "length",
  53028. base: math.unit(31, "cm")
  53029. },
  53030. }
  53031. },
  53032. back: {
  53033. height: math.unit(1.75, "meters"),
  53034. weight: math.unit(100, "kg"),
  53035. name: "Back",
  53036. image: {
  53037. source: "./media/characters/zarya/back.svg",
  53038. extra: 741/735,
  53039. bottom: 44/785
  53040. },
  53041. extraAttributes: {
  53042. "tailLength": {
  53043. name: "Tail Length",
  53044. power: 1,
  53045. type: "length",
  53046. base: math.unit(180, "cm")
  53047. },
  53048. "pawLength": {
  53049. name: "Paw Length",
  53050. power: 1,
  53051. type: "length",
  53052. base: math.unit(31, "cm")
  53053. },
  53054. }
  53055. },
  53056. frontNoTail: {
  53057. height: math.unit(1.75, "meters"),
  53058. weight: math.unit(100, "kg"),
  53059. name: "Front (No Tail)",
  53060. image: {
  53061. source: "./media/characters/zarya/front-no-tail.svg",
  53062. extra: 741/735,
  53063. bottom: 44/785
  53064. },
  53065. extraAttributes: {
  53066. "tailLength": {
  53067. name: "Tail Length",
  53068. power: 1,
  53069. type: "length",
  53070. base: math.unit(180, "cm")
  53071. },
  53072. "pawLength": {
  53073. name: "Paw Length",
  53074. power: 1,
  53075. type: "length",
  53076. base: math.unit(31, "cm")
  53077. },
  53078. }
  53079. },
  53080. dressed: {
  53081. height: math.unit(1.75, "meters"),
  53082. weight: math.unit(100, "kg"),
  53083. name: "Dressed",
  53084. image: {
  53085. source: "./media/characters/zarya/dressed.svg",
  53086. extra: 683/672,
  53087. bottom: 79/762
  53088. },
  53089. extraAttributes: {
  53090. "tailLength": {
  53091. name: "Tail Length",
  53092. power: 1,
  53093. type: "length",
  53094. base: math.unit(180, "cm")
  53095. },
  53096. "pawLength": {
  53097. name: "Paw Length",
  53098. power: 1,
  53099. type: "length",
  53100. base: math.unit(31, "cm")
  53101. },
  53102. }
  53103. },
  53104. },
  53105. [
  53106. {
  53107. name: "Micro",
  53108. height: math.unit(5, "cm")
  53109. },
  53110. {
  53111. name: "Normal",
  53112. height: math.unit(1.75, "meters"),
  53113. default: true
  53114. },
  53115. {
  53116. name: "Macro",
  53117. height: math.unit(122, "meters")
  53118. },
  53119. ]
  53120. ))
  53121. characterMakers.push(() => makeCharacter(
  53122. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  53123. {
  53124. front: {
  53125. height: math.unit(7.5, "feet"),
  53126. name: "Front",
  53127. image: {
  53128. source: "./media/characters/sven-hatisson/front.svg",
  53129. extra: 917/857,
  53130. bottom: 42/959
  53131. }
  53132. },
  53133. back: {
  53134. height: math.unit(7.5, "feet"),
  53135. name: "Back",
  53136. image: {
  53137. source: "./media/characters/sven-hatisson/back.svg",
  53138. extra: 903/856,
  53139. bottom: 15/918
  53140. }
  53141. },
  53142. },
  53143. [
  53144. {
  53145. name: "Base Height",
  53146. height: math.unit(7.5, "feet")
  53147. },
  53148. {
  53149. name: "Usual Height",
  53150. height: math.unit(13.5, "feet"),
  53151. default: true
  53152. },
  53153. {
  53154. name: "Smaller Macro",
  53155. height: math.unit(85, "feet")
  53156. },
  53157. {
  53158. name: "Moderate Macro",
  53159. height: math.unit(320, "feet")
  53160. },
  53161. {
  53162. name: "Large Macro",
  53163. height: math.unit(1000, "feet")
  53164. },
  53165. {
  53166. name: "Largest Size",
  53167. height: math.unit(2, "miles")
  53168. },
  53169. ]
  53170. ))
  53171. characterMakers.push(() => makeCharacter(
  53172. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  53173. {
  53174. side: {
  53175. height: math.unit(1.8, "meters"),
  53176. weight: math.unit(275, "kg"),
  53177. name: "Side",
  53178. image: {
  53179. source: "./media/characters/terra/side.svg",
  53180. extra: 1273/1147,
  53181. bottom: 0/1273
  53182. }
  53183. },
  53184. },
  53185. [
  53186. {
  53187. name: "Normal",
  53188. height: math.unit(16.2, "meters"),
  53189. default: true
  53190. },
  53191. ]
  53192. ))
  53193. characterMakers.push(() => makeCharacter(
  53194. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  53195. {
  53196. borzoiFront: {
  53197. height: math.unit(6 + 9/12, "feet"),
  53198. name: "Front",
  53199. image: {
  53200. source: "./media/characters/rae/borzoi-front.svg",
  53201. extra: 1161/1098,
  53202. bottom: 31/1192
  53203. },
  53204. form: "borzoi",
  53205. default: true
  53206. },
  53207. werewolfFront: {
  53208. height: math.unit(8 + 7/12, "feet"),
  53209. name: "Front",
  53210. image: {
  53211. source: "./media/characters/rae/werewolf-front.svg",
  53212. extra: 1411/1334,
  53213. bottom: 127/1538
  53214. },
  53215. form: "werewolf",
  53216. default: true
  53217. },
  53218. },
  53219. [
  53220. {
  53221. name: "Normal",
  53222. height: math.unit(6 + 9/12, "feet"),
  53223. default: true,
  53224. form: "borzoi"
  53225. },
  53226. {
  53227. name: "Normal",
  53228. height: math.unit(8 + 7/12, "feet"),
  53229. default: true,
  53230. form: "werewolf"
  53231. },
  53232. ],
  53233. {
  53234. "borzoi": {
  53235. name: "Borzoi",
  53236. default: true
  53237. },
  53238. "werewolf": {
  53239. name: "Werewolf",
  53240. },
  53241. }
  53242. ))
  53243. characterMakers.push(() => makeCharacter(
  53244. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  53245. {
  53246. front: {
  53247. height: math.unit(8 + 7/12, "feet"),
  53248. weight: math.unit(482, "lb"),
  53249. name: "Front",
  53250. image: {
  53251. source: "./media/characters/kit/front.svg",
  53252. extra: 1247/1103,
  53253. bottom: 41/1288
  53254. }
  53255. },
  53256. back: {
  53257. height: math.unit(8 + 7/12, "feet"),
  53258. weight: math.unit(482, "lb"),
  53259. name: "Back",
  53260. image: {
  53261. source: "./media/characters/kit/back.svg",
  53262. extra: 1252/1123,
  53263. bottom: 21/1273
  53264. }
  53265. },
  53266. paw: {
  53267. height: math.unit(1.46, "feet"),
  53268. name: "Paw",
  53269. image: {
  53270. source: "./media/characters/kit/paw.svg"
  53271. }
  53272. },
  53273. },
  53274. [
  53275. {
  53276. name: "Normal",
  53277. height: math.unit(2.61, "meters"),
  53278. default: true
  53279. },
  53280. {
  53281. name: "\"Tall\"",
  53282. height: math.unit(8.21, "meters")
  53283. },
  53284. {
  53285. name: "Tall",
  53286. height: math.unit(19.6, "meters")
  53287. },
  53288. {
  53289. name: "Very Tall",
  53290. height: math.unit(57.91, "meters")
  53291. },
  53292. {
  53293. name: "Semi-Macro",
  53294. height: math.unit(138.64, "meters")
  53295. },
  53296. {
  53297. name: "Macro",
  53298. height: math.unit(831.99, "meters")
  53299. },
  53300. {
  53301. name: "EX-Macro",
  53302. height: math.unit(96451121, "meters")
  53303. },
  53304. {
  53305. name: "S1-Omnipotent",
  53306. height: math.unit(4.42074e+9, "meters")
  53307. },
  53308. {
  53309. name: "S2-Omnipotent",
  53310. height: math.unit(9.42074e+17, "meters")
  53311. },
  53312. {
  53313. name: "Omnipotent",
  53314. height: math.unit(4.23112e+24, "meters")
  53315. },
  53316. {
  53317. name: "Hypergod",
  53318. height: math.unit(5.05176e+27, "meters")
  53319. },
  53320. {
  53321. name: "Hypergod-EX",
  53322. height: math.unit(9.45532e+49, "meters")
  53323. },
  53324. {
  53325. name: "Hypergod-SP",
  53326. height: math.unit(9.45532e+195, "meters")
  53327. },
  53328. ]
  53329. ))
  53330. characterMakers.push(() => makeCharacter(
  53331. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  53332. {
  53333. side: {
  53334. height: math.unit(0.6, "meters"),
  53335. weight: math.unit(24, "kg"),
  53336. name: "Side",
  53337. image: {
  53338. source: "./media/characters/celeste/side.svg",
  53339. extra: 810/517,
  53340. bottom: 53/863
  53341. }
  53342. },
  53343. },
  53344. [
  53345. {
  53346. name: "Velociraptor",
  53347. height: math.unit(0.6, "meters"),
  53348. default: true
  53349. },
  53350. {
  53351. name: "Utahraptor",
  53352. height: math.unit(1.8, "meters")
  53353. },
  53354. {
  53355. name: "Gallimimus",
  53356. height: math.unit(4.0, "meters")
  53357. },
  53358. {
  53359. name: "Large",
  53360. height: math.unit(20, "meters")
  53361. },
  53362. {
  53363. name: "Planetary",
  53364. height: math.unit(50, "megameters")
  53365. },
  53366. {
  53367. name: "Stellar",
  53368. height: math.unit(1.5, "gigameters")
  53369. },
  53370. {
  53371. name: "Galactic",
  53372. height: math.unit(100, "exameters")
  53373. },
  53374. ]
  53375. ))
  53376. characterMakers.push(() => makeCharacter(
  53377. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  53378. {
  53379. front: {
  53380. height: math.unit(6, "feet"),
  53381. weight: math.unit(210, "lb"),
  53382. name: "Front",
  53383. image: {
  53384. source: "./media/characters/glacia/front.svg",
  53385. extra: 958/901,
  53386. bottom: 45/1003
  53387. }
  53388. },
  53389. },
  53390. [
  53391. {
  53392. name: "Macro",
  53393. height: math.unit(1000, "meters"),
  53394. default: true
  53395. },
  53396. ]
  53397. ))
  53398. characterMakers.push(() => makeCharacter(
  53399. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  53400. {
  53401. front: {
  53402. height: math.unit(4, "meters"),
  53403. name: "Front",
  53404. image: {
  53405. source: "./media/characters/giri/front.svg",
  53406. extra: 966/894,
  53407. bottom: 21/987
  53408. }
  53409. },
  53410. },
  53411. [
  53412. {
  53413. name: "Normal",
  53414. height: math.unit(4, "meters"),
  53415. default: true
  53416. },
  53417. ]
  53418. ))
  53419. characterMakers.push(() => makeCharacter(
  53420. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  53421. {
  53422. back: {
  53423. height: math.unit(4, "feet"),
  53424. weight: math.unit(37, "lb"),
  53425. name: "Back",
  53426. image: {
  53427. source: "./media/characters/tin/back.svg",
  53428. extra: 845/780,
  53429. bottom: 28/873
  53430. }
  53431. },
  53432. },
  53433. [
  53434. {
  53435. name: "Normal",
  53436. height: math.unit(4, "feet"),
  53437. default: true
  53438. },
  53439. ]
  53440. ))
  53441. characterMakers.push(() => makeCharacter(
  53442. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  53443. {
  53444. front: {
  53445. height: math.unit(25, "feet"),
  53446. name: "Front",
  53447. image: {
  53448. source: "./media/characters/cadenza-vivace/front.svg",
  53449. extra: 1842/1578,
  53450. bottom: 30/1872
  53451. }
  53452. },
  53453. },
  53454. [
  53455. {
  53456. name: "Macro",
  53457. height: math.unit(25, "feet"),
  53458. default: true
  53459. },
  53460. ]
  53461. ))
  53462. characterMakers.push(() => makeCharacter(
  53463. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  53464. {
  53465. front: {
  53466. height: math.unit(10, "feet"),
  53467. weight: math.unit(625, "kg"),
  53468. name: "Front",
  53469. image: {
  53470. source: "./media/characters/zain/front.svg",
  53471. extra: 1682/1498,
  53472. bottom: 223/1905
  53473. }
  53474. },
  53475. back: {
  53476. height: math.unit(10, "feet"),
  53477. weight: math.unit(625, "kg"),
  53478. name: "Back",
  53479. image: {
  53480. source: "./media/characters/zain/back.svg",
  53481. extra: 1814/1657,
  53482. bottom: 152/1966
  53483. }
  53484. },
  53485. head: {
  53486. height: math.unit(10, "feet"),
  53487. weight: math.unit(625, "kg"),
  53488. name: "Head",
  53489. image: {
  53490. source: "./media/characters/zain/head.svg",
  53491. extra: 1059/762,
  53492. bottom: 0/1059
  53493. }
  53494. },
  53495. },
  53496. [
  53497. {
  53498. name: "Normal",
  53499. height: math.unit(10, "feet"),
  53500. default: true
  53501. },
  53502. ]
  53503. ))
  53504. characterMakers.push(() => makeCharacter(
  53505. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53506. {
  53507. front: {
  53508. height: math.unit(6 + 5/12, "feet"),
  53509. weight: math.unit(750, "lb"),
  53510. name: "Front",
  53511. image: {
  53512. source: "./media/characters/ruchex/front.svg",
  53513. extra: 877/820,
  53514. bottom: 17/894
  53515. },
  53516. extraAttributes: {
  53517. "width": {
  53518. name: "Width",
  53519. power: 1,
  53520. type: "length",
  53521. base: math.unit(4.757, "feet")
  53522. },
  53523. }
  53524. },
  53525. },
  53526. [
  53527. {
  53528. name: "Normal",
  53529. height: math.unit(6 + 5/12, "feet"),
  53530. default: true
  53531. },
  53532. ]
  53533. ))
  53534. characterMakers.push(() => makeCharacter(
  53535. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53536. {
  53537. dressedFront: {
  53538. height: math.unit(191, "cm"),
  53539. weight: math.unit(80, "kg"),
  53540. name: "Front",
  53541. image: {
  53542. source: "./media/characters/buster/dressed-front.svg",
  53543. extra: 1022/973,
  53544. bottom: 69/1091
  53545. }
  53546. },
  53547. dressedBack: {
  53548. height: math.unit(191, "cm"),
  53549. weight: math.unit(80, "kg"),
  53550. name: "Back",
  53551. image: {
  53552. source: "./media/characters/buster/dressed-back.svg",
  53553. extra: 1018/970,
  53554. bottom: 55/1073
  53555. }
  53556. },
  53557. nudeFront: {
  53558. height: math.unit(191, "cm"),
  53559. weight: math.unit(80, "kg"),
  53560. name: "Front (Nude)",
  53561. image: {
  53562. source: "./media/characters/buster/nude-front.svg",
  53563. extra: 1022/973,
  53564. bottom: 69/1091
  53565. }
  53566. },
  53567. nudeBack: {
  53568. height: math.unit(191, "cm"),
  53569. weight: math.unit(80, "kg"),
  53570. name: "Back (Nude)",
  53571. image: {
  53572. source: "./media/characters/buster/nude-back.svg",
  53573. extra: 1018/970,
  53574. bottom: 55/1073
  53575. }
  53576. },
  53577. dick: {
  53578. height: math.unit(2.59, "feet"),
  53579. name: "Dick",
  53580. image: {
  53581. source: "./media/characters/buster/dick.svg"
  53582. }
  53583. },
  53584. ass: {
  53585. height: math.unit(1.2, "feet"),
  53586. name: "Ass",
  53587. image: {
  53588. source: "./media/characters/buster/ass.svg"
  53589. }
  53590. },
  53591. },
  53592. [
  53593. {
  53594. name: "Normal",
  53595. height: math.unit(191, "cm"),
  53596. default: true
  53597. },
  53598. ]
  53599. ))
  53600. characterMakers.push(() => makeCharacter(
  53601. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53602. {
  53603. side: {
  53604. height: math.unit(8.1, "feet"),
  53605. weight: math.unit(3500, "lb"),
  53606. name: "Side",
  53607. image: {
  53608. source: "./media/characters/sonya/side.svg",
  53609. extra: 1730/1317,
  53610. bottom: 86/1816
  53611. }
  53612. },
  53613. },
  53614. [
  53615. {
  53616. name: "Normal",
  53617. height: math.unit(8.1, "feet"),
  53618. default: true
  53619. },
  53620. ]
  53621. ))
  53622. characterMakers.push(() => makeCharacter(
  53623. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53624. {
  53625. front: {
  53626. height: math.unit(6, "feet"),
  53627. weight: math.unit(150, "lb"),
  53628. name: "Front",
  53629. image: {
  53630. source: "./media/characters/cadence-andrysiak/front.svg",
  53631. extra: 1164/1121,
  53632. bottom: 60/1224
  53633. }
  53634. },
  53635. back: {
  53636. height: math.unit(6, "feet"),
  53637. weight: math.unit(150, "lb"),
  53638. name: "Back",
  53639. image: {
  53640. source: "./media/characters/cadence-andrysiak/back.svg",
  53641. extra: 1200/1165,
  53642. bottom: 9/1209
  53643. }
  53644. },
  53645. dressed: {
  53646. height: math.unit(6, "feet"),
  53647. weight: math.unit(150, "lb"),
  53648. name: "Dressed",
  53649. image: {
  53650. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53651. extra: 1164/1121,
  53652. bottom: 60/1224
  53653. }
  53654. },
  53655. },
  53656. [
  53657. {
  53658. name: "Micro",
  53659. height: math.unit(1, "mm")
  53660. },
  53661. {
  53662. name: "Normal",
  53663. height: math.unit(6, "feet"),
  53664. default: true
  53665. },
  53666. ]
  53667. ))
  53668. characterMakers.push(() => makeCharacter(
  53669. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53670. {
  53671. front: {
  53672. height: math.unit(60, "inches"),
  53673. weight: math.unit(16, "lb"),
  53674. preyCapacity: math.unit(80, "liters"),
  53675. name: "Front",
  53676. image: {
  53677. source: "./media/characters/penny-lynx/front.svg",
  53678. extra: 1959/1769,
  53679. bottom: 49/2008
  53680. }
  53681. },
  53682. },
  53683. [
  53684. {
  53685. name: "Nokia",
  53686. height: math.unit(2, "inches")
  53687. },
  53688. {
  53689. name: "Desktop",
  53690. height: math.unit(24, "inches")
  53691. },
  53692. {
  53693. name: "TV",
  53694. height: math.unit(60, "inches")
  53695. },
  53696. {
  53697. name: "Jumbotron",
  53698. height: math.unit(12, "feet")
  53699. },
  53700. {
  53701. name: "Billboard",
  53702. height: math.unit(48, "feet"),
  53703. default: true
  53704. },
  53705. {
  53706. name: "IMAX",
  53707. height: math.unit(96, "feet")
  53708. },
  53709. {
  53710. name: "SINGULARITY",
  53711. height: math.unit(864938, "miles")
  53712. },
  53713. ]
  53714. ))
  53715. characterMakers.push(() => makeCharacter(
  53716. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53717. {
  53718. front: {
  53719. height: math.unit(5 + 4/12, "feet"),
  53720. weight: math.unit(230, "lb"),
  53721. name: "Front",
  53722. image: {
  53723. source: "./media/characters/sukebe/front.svg",
  53724. extra: 2130/2038,
  53725. bottom: 90/2220
  53726. }
  53727. },
  53728. back: {
  53729. height: math.unit(3.48, "feet"),
  53730. weight: math.unit(230, "lb"),
  53731. name: "Back",
  53732. image: {
  53733. source: "./media/characters/sukebe/back.svg",
  53734. extra: 1670/1604,
  53735. bottom: 0/1670
  53736. }
  53737. },
  53738. },
  53739. [
  53740. {
  53741. name: "Normal",
  53742. height: math.unit(5 + 4/12, "feet"),
  53743. default: true
  53744. },
  53745. ]
  53746. ))
  53747. characterMakers.push(() => makeCharacter(
  53748. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53749. {
  53750. front: {
  53751. height: math.unit(6, "feet"),
  53752. name: "Front",
  53753. image: {
  53754. source: "./media/characters/nylla/front.svg",
  53755. extra: 1868/1699,
  53756. bottom: 97/1965
  53757. }
  53758. },
  53759. back: {
  53760. height: math.unit(6, "feet"),
  53761. name: "Back",
  53762. image: {
  53763. source: "./media/characters/nylla/back.svg",
  53764. extra: 1889/1712,
  53765. bottom: 93/1982
  53766. }
  53767. },
  53768. frontNsfw: {
  53769. height: math.unit(6, "feet"),
  53770. name: "Front (NSFW)",
  53771. image: {
  53772. source: "./media/characters/nylla/front-nsfw.svg",
  53773. extra: 1868/1699,
  53774. bottom: 97/1965
  53775. },
  53776. extraAttributes: {
  53777. "dickLength": {
  53778. name: "Dick Length",
  53779. power: 1,
  53780. type: "length",
  53781. base: math.unit(1.4, "feet")
  53782. },
  53783. "cumVolume": {
  53784. name: "Cum Volume",
  53785. power: 3,
  53786. type: "volume",
  53787. base: math.unit(100, "mL")
  53788. },
  53789. }
  53790. },
  53791. backNsfw: {
  53792. height: math.unit(6, "feet"),
  53793. name: "Back (NSFW)",
  53794. image: {
  53795. source: "./media/characters/nylla/back-nsfw.svg",
  53796. extra: 1889/1712,
  53797. bottom: 93/1982
  53798. }
  53799. },
  53800. maw: {
  53801. height: math.unit(2.10, "feet"),
  53802. name: "Maw",
  53803. image: {
  53804. source: "./media/characters/nylla/maw.svg"
  53805. }
  53806. },
  53807. paws: {
  53808. height: math.unit(2.06, "feet"),
  53809. name: "Paws",
  53810. image: {
  53811. source: "./media/characters/nylla/paws.svg"
  53812. }
  53813. },
  53814. muzzle: {
  53815. height: math.unit(0.61, "feet"),
  53816. name: "Muzzle",
  53817. image: {
  53818. source: "./media/characters/nylla/muzzle.svg"
  53819. }
  53820. },
  53821. sheath: {
  53822. height: math.unit(1.305, "feet"),
  53823. name: "Sheath",
  53824. image: {
  53825. source: "./media/characters/nylla/sheath.svg"
  53826. }
  53827. },
  53828. },
  53829. [
  53830. {
  53831. name: "Micro",
  53832. height: math.unit(7.5, "inches")
  53833. },
  53834. {
  53835. name: "Normal",
  53836. height: math.unit(7, "feet"),
  53837. default: true
  53838. },
  53839. {
  53840. name: "Macro",
  53841. height: math.unit(60, "feet")
  53842. },
  53843. {
  53844. name: "Mega",
  53845. height: math.unit(200, "feet")
  53846. },
  53847. ]
  53848. ))
  53849. characterMakers.push(() => makeCharacter(
  53850. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53851. {
  53852. front: {
  53853. height: math.unit(10, "feet"),
  53854. weight: math.unit(2300, "lb"),
  53855. name: "Front",
  53856. image: {
  53857. source: "./media/characters/hunt3r/front.svg",
  53858. extra: 1909/1742,
  53859. bottom: 46/1955
  53860. }
  53861. },
  53862. },
  53863. [
  53864. {
  53865. name: "Normal",
  53866. height: math.unit(10, "feet"),
  53867. default: true
  53868. },
  53869. ]
  53870. ))
  53871. characterMakers.push(() => makeCharacter(
  53872. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53873. {
  53874. dressed: {
  53875. height: math.unit(11, "feet"),
  53876. weight: math.unit(18500, "lb"),
  53877. preyCapacity: math.unit(9, "people"),
  53878. name: "Dressed",
  53879. image: {
  53880. source: "./media/characters/cylphis/dressed.svg",
  53881. extra: 1028/1003,
  53882. bottom: 75/1103
  53883. },
  53884. },
  53885. undressed: {
  53886. height: math.unit(11, "feet"),
  53887. weight: math.unit(18500, "lb"),
  53888. preyCapacity: math.unit(9, "people"),
  53889. name: "Undressed",
  53890. image: {
  53891. source: "./media/characters/cylphis/undressed.svg",
  53892. extra: 1028/1003,
  53893. bottom: 75/1103
  53894. }
  53895. },
  53896. full: {
  53897. height: math.unit(11, "feet"),
  53898. weight: math.unit(18500 + 150*9, "lb"),
  53899. preyCapacity: math.unit(9, "people"),
  53900. name: "Full",
  53901. image: {
  53902. source: "./media/characters/cylphis/full.svg",
  53903. extra: 1028/1003,
  53904. bottom: 75/1103
  53905. }
  53906. },
  53907. },
  53908. [
  53909. {
  53910. name: "Small",
  53911. height: math.unit(8, "feet")
  53912. },
  53913. {
  53914. name: "Normal",
  53915. height: math.unit(11, "feet"),
  53916. default: true
  53917. },
  53918. ]
  53919. ))
  53920. characterMakers.push(() => makeCharacter(
  53921. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53922. {
  53923. front: {
  53924. height: math.unit(2 + 7/12, "feet"),
  53925. name: "Front",
  53926. image: {
  53927. source: "./media/characters/orishan/front.svg",
  53928. extra: 1058/1023,
  53929. bottom: 23/1081
  53930. }
  53931. },
  53932. back: {
  53933. height: math.unit(2 + 7/12, "feet"),
  53934. name: "Back",
  53935. image: {
  53936. source: "./media/characters/orishan/back.svg",
  53937. extra: 1058/1023,
  53938. bottom: 23/1081
  53939. }
  53940. },
  53941. },
  53942. [
  53943. {
  53944. name: "Micro",
  53945. height: math.unit(2, "cm")
  53946. },
  53947. {
  53948. name: "Normal",
  53949. height: math.unit(2 + 7/12, "feet"),
  53950. default: true
  53951. },
  53952. ]
  53953. ))
  53954. characterMakers.push(() => makeCharacter(
  53955. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53956. {
  53957. front: {
  53958. height: math.unit(3, "meters"),
  53959. weight: math.unit(508, "kg"),
  53960. name: "Front",
  53961. image: {
  53962. source: "./media/characters/seranis/front.svg",
  53963. extra: 1478/1454,
  53964. bottom: 41/1519
  53965. }
  53966. },
  53967. },
  53968. [
  53969. {
  53970. name: "Normal",
  53971. height: math.unit(3, "meters"),
  53972. default: true
  53973. },
  53974. {
  53975. name: "Macro",
  53976. height: math.unit(108, "meters")
  53977. },
  53978. {
  53979. name: "Megamacro",
  53980. height: math.unit(1250, "meters")
  53981. },
  53982. ]
  53983. ))
  53984. characterMakers.push(() => makeCharacter(
  53985. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53986. {
  53987. undressed: {
  53988. height: math.unit(5 + 3/12, "feet"),
  53989. name: "Undressed",
  53990. image: {
  53991. source: "./media/characters/ankou/undressed.svg",
  53992. extra: 1301/1213,
  53993. bottom: 87/1388
  53994. }
  53995. },
  53996. dressed: {
  53997. height: math.unit(5 + 3/12, "feet"),
  53998. name: "Dressed",
  53999. image: {
  54000. source: "./media/characters/ankou/dressed.svg",
  54001. extra: 1301/1213,
  54002. bottom: 87/1388
  54003. }
  54004. },
  54005. head: {
  54006. height: math.unit(1.61, "feet"),
  54007. name: "Head",
  54008. image: {
  54009. source: "./media/characters/ankou/head.svg"
  54010. }
  54011. },
  54012. },
  54013. [
  54014. {
  54015. name: "Normal",
  54016. height: math.unit(5 + 3/12, "feet"),
  54017. default: true
  54018. },
  54019. ]
  54020. ))
  54021. characterMakers.push(() => makeCharacter(
  54022. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  54023. {
  54024. side: {
  54025. height: math.unit(6 + 3/12, "feet"),
  54026. weight: math.unit(200, "kg"),
  54027. name: "Side",
  54028. image: {
  54029. source: "./media/characters/juniper-skunktaur/side.svg",
  54030. extra: 1574/1229,
  54031. bottom: 38/1612
  54032. }
  54033. },
  54034. front: {
  54035. height: math.unit(6 + 3/12, "feet"),
  54036. weight: math.unit(200, "kg"),
  54037. name: "Front",
  54038. image: {
  54039. source: "./media/characters/juniper-skunktaur/front.svg",
  54040. extra: 1337/1278,
  54041. bottom: 22/1359
  54042. }
  54043. },
  54044. back: {
  54045. height: math.unit(6 + 3/12, "feet"),
  54046. weight: math.unit(200, "kg"),
  54047. name: "Back",
  54048. image: {
  54049. source: "./media/characters/juniper-skunktaur/back.svg",
  54050. extra: 1618/1273,
  54051. bottom: 13/1631
  54052. }
  54053. },
  54054. top: {
  54055. height: math.unit(2.62, "feet"),
  54056. weight: math.unit(200, "kg"),
  54057. name: "Top",
  54058. image: {
  54059. source: "./media/characters/juniper-skunktaur/top.svg"
  54060. }
  54061. },
  54062. },
  54063. [
  54064. {
  54065. name: "Normal",
  54066. height: math.unit(6 + 3/12, "feet"),
  54067. default: true
  54068. },
  54069. ]
  54070. ))
  54071. characterMakers.push(() => makeCharacter(
  54072. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  54073. {
  54074. front: {
  54075. height: math.unit(20.5, "feet"),
  54076. name: "Front",
  54077. image: {
  54078. source: "./media/characters/rei/front.svg",
  54079. extra: 1349/1195,
  54080. bottom: 31/1380
  54081. }
  54082. },
  54083. back: {
  54084. height: math.unit(20.5, "feet"),
  54085. name: "Back",
  54086. image: {
  54087. source: "./media/characters/rei/back.svg",
  54088. extra: 1358/1204,
  54089. bottom: 22/1380
  54090. }
  54091. },
  54092. pawsDigi: {
  54093. height: math.unit(3.45, "feet"),
  54094. name: "Paws (Digi)",
  54095. image: {
  54096. source: "./media/characters/rei/paws-digi.svg"
  54097. }
  54098. },
  54099. pawsPlanti: {
  54100. height: math.unit(3.45, "feet"),
  54101. name: "Paws (Planti)",
  54102. image: {
  54103. source: "./media/characters/rei/paws-planti.svg"
  54104. }
  54105. },
  54106. },
  54107. [
  54108. {
  54109. name: "Normal",
  54110. height: math.unit(20.5, "feet"),
  54111. default: true
  54112. },
  54113. ]
  54114. ))
  54115. characterMakers.push(() => makeCharacter(
  54116. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  54117. {
  54118. front: {
  54119. height: math.unit(5 + 11/12, "feet"),
  54120. name: "Front",
  54121. image: {
  54122. source: "./media/characters/carina/front.svg",
  54123. extra: 1720/1449,
  54124. bottom: 14/1734
  54125. }
  54126. },
  54127. back: {
  54128. height: math.unit(5 + 11/12, "feet"),
  54129. name: "Back",
  54130. image: {
  54131. source: "./media/characters/carina/back.svg",
  54132. extra: 1493/1445,
  54133. bottom: 17/1510
  54134. }
  54135. },
  54136. paw: {
  54137. height: math.unit(0.92, "feet"),
  54138. name: "Paw",
  54139. image: {
  54140. source: "./media/characters/carina/paw.svg"
  54141. }
  54142. },
  54143. },
  54144. [
  54145. {
  54146. name: "Normal",
  54147. height: math.unit(5 + 11/12, "feet"),
  54148. default: true
  54149. },
  54150. ]
  54151. ))
  54152. characterMakers.push(() => makeCharacter(
  54153. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  54154. {
  54155. normal_front: {
  54156. height: math.unit(4.88, "meters"),
  54157. name: "Front",
  54158. image: {
  54159. source: "./media/characters/maya/normal-front.svg",
  54160. extra: 1222/1145,
  54161. bottom: 57/1279
  54162. },
  54163. form: "normal",
  54164. default: true
  54165. },
  54166. monstrous_front: {
  54167. height: math.unit(10, "meters"),
  54168. name: "Front",
  54169. image: {
  54170. source: "./media/characters/maya/monstrous-front.svg",
  54171. extra: 1523/1109,
  54172. bottom: 113/1636
  54173. },
  54174. form: "monstrous",
  54175. extraAttributes: {
  54176. "swallowSize": {
  54177. name: "Tailmaw Bite Size",
  54178. power: 3,
  54179. type: "volume",
  54180. base: math.unit(43000, "liters")
  54181. },
  54182. }
  54183. },
  54184. taur_front: {
  54185. height: math.unit(10, "meters"),
  54186. name: "Front",
  54187. image: {
  54188. source: "./media/characters/maya/taur-front.svg",
  54189. extra: 743/506,
  54190. bottom: 101/844
  54191. },
  54192. form: "taur",
  54193. },
  54194. },
  54195. [
  54196. {
  54197. name: "Normal",
  54198. height: math.unit(4.88, "meters"),
  54199. default: true,
  54200. form: "normal"
  54201. },
  54202. {
  54203. name: "Macro",
  54204. height: math.unit(38.1, "meters"),
  54205. form: "normal"
  54206. },
  54207. {
  54208. name: "Macro+",
  54209. height: math.unit(152.4, "meters"),
  54210. form: "normal"
  54211. },
  54212. {
  54213. name: "Macro++",
  54214. height: math.unit(16.09, "km"),
  54215. form: "normal"
  54216. },
  54217. {
  54218. name: "Mega-macro",
  54219. height: math.unit(700, "megameters"),
  54220. form: "normal"
  54221. },
  54222. {
  54223. name: "Satiated",
  54224. height: math.unit(10, "meters"),
  54225. default: true,
  54226. form: "monstrous"
  54227. },
  54228. {
  54229. name: "Hungry",
  54230. height: math.unit(75, "meters"),
  54231. form: "monstrous"
  54232. },
  54233. {
  54234. name: "Ravenous",
  54235. height: math.unit(500, "meters"),
  54236. form: "monstrous"
  54237. },
  54238. {
  54239. name: "\"Normal\"",
  54240. height: math.unit(10, "meters"),
  54241. form: "taur"
  54242. },
  54243. {
  54244. name: "Macro",
  54245. height: math.unit(50, "meters"),
  54246. form: "taur"
  54247. },
  54248. ],
  54249. {
  54250. "normal": {
  54251. name: "Normal",
  54252. default: true
  54253. },
  54254. "monstrous": {
  54255. name: "Monstrous",
  54256. },
  54257. "taur": {
  54258. name: "Taur",
  54259. },
  54260. }
  54261. ))
  54262. characterMakers.push(() => makeCharacter(
  54263. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  54264. {
  54265. front: {
  54266. height: math.unit(6 + 2/12, "feet"),
  54267. weight: math.unit(500, "lb"),
  54268. preyCapacity: math.unit(4, "people"),
  54269. name: "Front",
  54270. image: {
  54271. source: "./media/characters/yepir/front.svg"
  54272. }
  54273. },
  54274. side: {
  54275. height: math.unit(6 + 2/12, "feet"),
  54276. weight: math.unit(500, "lb"),
  54277. preyCapacity: math.unit(4, "people"),
  54278. name: "Side",
  54279. image: {
  54280. source: "./media/characters/yepir/side.svg"
  54281. }
  54282. },
  54283. paw: {
  54284. height: math.unit(1.05, "feet"),
  54285. name: "Paw",
  54286. image: {
  54287. source: "./media/characters/yepir/paw.svg"
  54288. }
  54289. },
  54290. },
  54291. [
  54292. {
  54293. name: "Normal",
  54294. height: math.unit(6 + 2/12, "feet"),
  54295. default: true
  54296. },
  54297. ]
  54298. ))
  54299. characterMakers.push(() => makeCharacter(
  54300. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  54301. {
  54302. front: {
  54303. height: math.unit(5 + 4/12, "feet"),
  54304. name: "Front",
  54305. image: {
  54306. source: "./media/characters/russec/front.svg",
  54307. extra: 1926/1626,
  54308. bottom: 72/1998
  54309. }
  54310. },
  54311. back: {
  54312. height: math.unit(5 + 4/12, "feet"),
  54313. name: "Back",
  54314. image: {
  54315. source: "./media/characters/russec/back.svg",
  54316. extra: 1910/1591,
  54317. bottom: 48/1958
  54318. }
  54319. },
  54320. },
  54321. [
  54322. {
  54323. name: "Small",
  54324. height: math.unit(5 + 4/12, "feet")
  54325. },
  54326. {
  54327. name: "Normal",
  54328. height: math.unit(72, "feet"),
  54329. default: true
  54330. },
  54331. ]
  54332. ))
  54333. characterMakers.push(() => makeCharacter(
  54334. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  54335. {
  54336. side: {
  54337. height: math.unit(12, "feet"),
  54338. name: "Side",
  54339. image: {
  54340. source: "./media/characters/cianus/side.svg",
  54341. extra: 808/526,
  54342. bottom: 61/869
  54343. }
  54344. },
  54345. },
  54346. [
  54347. {
  54348. name: "Normal",
  54349. height: math.unit(12, "feet"),
  54350. default: true
  54351. },
  54352. ]
  54353. ))
  54354. characterMakers.push(() => makeCharacter(
  54355. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  54356. {
  54357. front: {
  54358. height: math.unit(9 + 6/12, "feet"),
  54359. weight: math.unit(300, "lb"),
  54360. name: "Front",
  54361. image: {
  54362. source: "./media/characters/ahab/front.svg",
  54363. extra: 1897/1868,
  54364. bottom: 121/2018
  54365. }
  54366. },
  54367. frontNsfw: {
  54368. height: math.unit(9 + 6/12, "feet"),
  54369. weight: math.unit(300, "lb"),
  54370. name: "Front (NSFW)",
  54371. image: {
  54372. source: "./media/characters/ahab/front-nsfw.svg",
  54373. extra: 1897/1868,
  54374. bottom: 121/2018
  54375. }
  54376. },
  54377. },
  54378. [
  54379. {
  54380. name: "Normal",
  54381. height: math.unit(9 + 6/12, "feet")
  54382. },
  54383. {
  54384. name: "Macro",
  54385. height: math.unit(657, "feet"),
  54386. default: true
  54387. },
  54388. ]
  54389. ))
  54390. characterMakers.push(() => makeCharacter(
  54391. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  54392. {
  54393. front: {
  54394. height: math.unit(2.69, "meters"),
  54395. weight: math.unit(132, "kg"),
  54396. name: "Front",
  54397. image: {
  54398. source: "./media/characters/aarkus/front.svg",
  54399. extra: 1400/1231,
  54400. bottom: 34/1434
  54401. }
  54402. },
  54403. back: {
  54404. height: math.unit(2.69, "meters"),
  54405. weight: math.unit(132, "kg"),
  54406. name: "Back",
  54407. image: {
  54408. source: "./media/characters/aarkus/back.svg",
  54409. extra: 1381/1218,
  54410. bottom: 30/1411
  54411. }
  54412. },
  54413. frontNsfw: {
  54414. height: math.unit(2.69, "meters"),
  54415. weight: math.unit(132, "kg"),
  54416. name: "Front (NSFW)",
  54417. image: {
  54418. source: "./media/characters/aarkus/front-nsfw.svg",
  54419. extra: 1400/1231,
  54420. bottom: 34/1434
  54421. }
  54422. },
  54423. foot: {
  54424. height: math.unit(1.45, "feet"),
  54425. name: "Foot",
  54426. image: {
  54427. source: "./media/characters/aarkus/foot.svg"
  54428. }
  54429. },
  54430. head: {
  54431. height: math.unit(2.85, "feet"),
  54432. name: "Head",
  54433. image: {
  54434. source: "./media/characters/aarkus/head.svg"
  54435. }
  54436. },
  54437. headAlt: {
  54438. height: math.unit(3.07, "feet"),
  54439. name: "Head (Alt)",
  54440. image: {
  54441. source: "./media/characters/aarkus/head-alt.svg"
  54442. }
  54443. },
  54444. mouth: {
  54445. height: math.unit(1.25, "feet"),
  54446. name: "Mouth",
  54447. image: {
  54448. source: "./media/characters/aarkus/mouth.svg"
  54449. }
  54450. },
  54451. dick: {
  54452. height: math.unit(1.77, "feet"),
  54453. name: "Dick",
  54454. image: {
  54455. source: "./media/characters/aarkus/dick.svg"
  54456. }
  54457. },
  54458. },
  54459. [
  54460. {
  54461. name: "Normal",
  54462. height: math.unit(2.69, "meters"),
  54463. default: true
  54464. },
  54465. {
  54466. name: "Macro",
  54467. height: math.unit(269, "meters")
  54468. },
  54469. {
  54470. name: "Macro+",
  54471. height: math.unit(672.5, "meters")
  54472. },
  54473. {
  54474. name: "Megamacro",
  54475. height: math.unit(2.017, "km")
  54476. },
  54477. ]
  54478. ))
  54479. characterMakers.push(() => makeCharacter(
  54480. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54481. {
  54482. front: {
  54483. height: math.unit(23.47, "cm"),
  54484. weight: math.unit(600, "grams"),
  54485. name: "Front",
  54486. image: {
  54487. source: "./media/characters/diode/front.svg",
  54488. extra: 1778/1396,
  54489. bottom: 95/1873
  54490. }
  54491. },
  54492. side: {
  54493. height: math.unit(23.47, "cm"),
  54494. weight: math.unit(600, "grams"),
  54495. name: "Side",
  54496. image: {
  54497. source: "./media/characters/diode/side.svg",
  54498. extra: 1831/1404,
  54499. bottom: 86/1917
  54500. }
  54501. },
  54502. wings: {
  54503. height: math.unit(0.683, "feet"),
  54504. name: "Wings",
  54505. image: {
  54506. source: "./media/characters/diode/wings.svg"
  54507. }
  54508. },
  54509. },
  54510. [
  54511. {
  54512. name: "Normal",
  54513. height: math.unit(23.47, "cm"),
  54514. default: true
  54515. },
  54516. ]
  54517. ))
  54518. characterMakers.push(() => makeCharacter(
  54519. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54520. {
  54521. front: {
  54522. height: math.unit(6 + 3/12, "feet"),
  54523. weight: math.unit(250, "lb"),
  54524. name: "Front",
  54525. image: {
  54526. source: "./media/characters/reika/front.svg",
  54527. extra: 1120/1078,
  54528. bottom: 86/1206
  54529. }
  54530. },
  54531. },
  54532. [
  54533. {
  54534. name: "Normal",
  54535. height: math.unit(6 + 3/12, "feet"),
  54536. default: true
  54537. },
  54538. ]
  54539. ))
  54540. characterMakers.push(() => makeCharacter(
  54541. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54542. {
  54543. front: {
  54544. height: math.unit(16 + 8/12, "feet"),
  54545. weight: math.unit(9000, "lb"),
  54546. name: "Front",
  54547. image: {
  54548. source: "./media/characters/lokuto-takama/front.svg",
  54549. extra: 1774/1632,
  54550. bottom: 147/1921
  54551. },
  54552. extraAttributes: {
  54553. "bustWidth": {
  54554. name: "Bust Width",
  54555. power: 1,
  54556. type: "length",
  54557. base: math.unit(2.4, "meters")
  54558. },
  54559. "breastWeight": {
  54560. name: "Breast Weight",
  54561. power: 3,
  54562. type: "mass",
  54563. base: math.unit(1000, "kg")
  54564. },
  54565. }
  54566. },
  54567. },
  54568. [
  54569. {
  54570. name: "Normal",
  54571. height: math.unit(16 + 8/12, "feet"),
  54572. default: true
  54573. },
  54574. ]
  54575. ))
  54576. characterMakers.push(() => makeCharacter(
  54577. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54578. {
  54579. front: {
  54580. height: math.unit(10, "cm"),
  54581. weight: math.unit(850, "grams"),
  54582. name: "Front",
  54583. image: {
  54584. source: "./media/characters/owak-bone/front.svg",
  54585. extra: 1965/1801,
  54586. bottom: 31/1996
  54587. }
  54588. },
  54589. },
  54590. [
  54591. {
  54592. name: "Normal",
  54593. height: math.unit(10, "cm"),
  54594. default: true
  54595. },
  54596. ]
  54597. ))
  54598. characterMakers.push(() => makeCharacter(
  54599. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54600. {
  54601. front: {
  54602. height: math.unit(2 + 6/12, "feet"),
  54603. weight: math.unit(9, "lb"),
  54604. name: "Front",
  54605. image: {
  54606. source: "./media/characters/muffin/front.svg",
  54607. extra: 1220/1195,
  54608. bottom: 84/1304
  54609. }
  54610. },
  54611. },
  54612. [
  54613. {
  54614. name: "Normal",
  54615. height: math.unit(2 + 6/12, "feet"),
  54616. default: true
  54617. },
  54618. ]
  54619. ))
  54620. characterMakers.push(() => makeCharacter(
  54621. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54622. {
  54623. front: {
  54624. height: math.unit(7, "feet"),
  54625. name: "Front",
  54626. image: {
  54627. source: "./media/characters/chimera/front.svg",
  54628. extra: 1752/1614,
  54629. bottom: 68/1820
  54630. }
  54631. },
  54632. },
  54633. [
  54634. {
  54635. name: "Normal",
  54636. height: math.unit(7, "feet")
  54637. },
  54638. {
  54639. name: "Gigamacro",
  54640. height: math.unit(2.9, "gigameters"),
  54641. default: true
  54642. },
  54643. {
  54644. name: "Universal",
  54645. height: math.unit(1.56e26, "yottameters")
  54646. },
  54647. ]
  54648. ))
  54649. characterMakers.push(() => makeCharacter(
  54650. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54651. {
  54652. front: {
  54653. height: math.unit(3, "feet"),
  54654. weight: math.unit(20, "lb"),
  54655. name: "Front",
  54656. image: {
  54657. source: "./media/characters/kit-fennec-fox/front.svg",
  54658. extra: 1027/932,
  54659. bottom: 16/1043
  54660. }
  54661. },
  54662. back: {
  54663. height: math.unit(3, "feet"),
  54664. weight: math.unit(20, "lb"),
  54665. name: "Back",
  54666. image: {
  54667. source: "./media/characters/kit-fennec-fox/back.svg",
  54668. extra: 1027/932,
  54669. bottom: 16/1043
  54670. }
  54671. },
  54672. },
  54673. [
  54674. {
  54675. name: "Normal",
  54676. height: math.unit(3, "feet"),
  54677. default: true
  54678. },
  54679. ]
  54680. ))
  54681. characterMakers.push(() => makeCharacter(
  54682. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54683. {
  54684. front: {
  54685. height: math.unit(167, "cm"),
  54686. name: "Front",
  54687. image: {
  54688. source: "./media/characters/blue-otter/front.svg",
  54689. extra: 1951/1920,
  54690. bottom: 31/1982
  54691. }
  54692. },
  54693. },
  54694. [
  54695. {
  54696. name: "Otter-Sized",
  54697. height: math.unit(100, "cm")
  54698. },
  54699. {
  54700. name: "Normal",
  54701. height: math.unit(167, "cm"),
  54702. default: true
  54703. },
  54704. ]
  54705. ))
  54706. characterMakers.push(() => makeCharacter(
  54707. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54708. {
  54709. front: {
  54710. height: math.unit(4 + 4/12, "feet"),
  54711. name: "Front",
  54712. image: {
  54713. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54714. extra: 1072/1067,
  54715. bottom: 117/1189
  54716. }
  54717. },
  54718. back: {
  54719. height: math.unit(4 + 4/12, "feet"),
  54720. name: "Back",
  54721. image: {
  54722. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54723. extra: 1135/1129,
  54724. bottom: 57/1192
  54725. }
  54726. },
  54727. head: {
  54728. height: math.unit(1.77, "feet"),
  54729. name: "Head",
  54730. image: {
  54731. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54732. }
  54733. },
  54734. },
  54735. [
  54736. {
  54737. name: "Normal",
  54738. height: math.unit(4 + 4/12, "feet"),
  54739. default: true
  54740. },
  54741. ]
  54742. ))
  54743. characterMakers.push(() => makeCharacter(
  54744. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54745. {
  54746. front: {
  54747. height: math.unit(2, "inches"),
  54748. name: "Front",
  54749. image: {
  54750. source: "./media/characters/carley-hartford/front.svg",
  54751. extra: 1035/988,
  54752. bottom: 23/1058
  54753. }
  54754. },
  54755. back: {
  54756. height: math.unit(2, "inches"),
  54757. name: "Back",
  54758. image: {
  54759. source: "./media/characters/carley-hartford/back.svg",
  54760. extra: 1035/988,
  54761. bottom: 23/1058
  54762. }
  54763. },
  54764. dressed: {
  54765. height: math.unit(2, "inches"),
  54766. name: "Dressed",
  54767. image: {
  54768. source: "./media/characters/carley-hartford/dressed.svg",
  54769. extra: 651/620,
  54770. bottom: 0/651
  54771. }
  54772. },
  54773. },
  54774. [
  54775. {
  54776. name: "Micro",
  54777. height: math.unit(2, "inches"),
  54778. default: true
  54779. },
  54780. {
  54781. name: "Macro",
  54782. height: math.unit(6 + 3/12, "feet")
  54783. },
  54784. ]
  54785. ))
  54786. characterMakers.push(() => makeCharacter(
  54787. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54788. {
  54789. front: {
  54790. height: math.unit(2 + 3/12, "feet"),
  54791. weight: math.unit(15 + 7/16, "lb"),
  54792. name: "Front",
  54793. image: {
  54794. source: "./media/characters/duke/front.svg",
  54795. extra: 910/815,
  54796. bottom: 30/940
  54797. }
  54798. },
  54799. },
  54800. [
  54801. {
  54802. name: "Normal",
  54803. height: math.unit(2 + 3/12, "feet"),
  54804. default: true
  54805. },
  54806. ]
  54807. ))
  54808. characterMakers.push(() => makeCharacter(
  54809. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54810. {
  54811. front: {
  54812. height: math.unit(5 + 4/12, "feet"),
  54813. weight: math.unit(156, "lb"),
  54814. name: "Front",
  54815. image: {
  54816. source: "./media/characters/dein/front.svg",
  54817. extra: 855/815,
  54818. bottom: 48/903
  54819. }
  54820. },
  54821. side: {
  54822. height: math.unit(5 + 4/12, "feet"),
  54823. weight: math.unit(156, "lb"),
  54824. name: "side",
  54825. image: {
  54826. source: "./media/characters/dein/side.svg",
  54827. extra: 846/803,
  54828. bottom: 25/871
  54829. }
  54830. },
  54831. maw: {
  54832. height: math.unit(1.45, "feet"),
  54833. name: "Maw",
  54834. image: {
  54835. source: "./media/characters/dein/maw.svg"
  54836. }
  54837. },
  54838. },
  54839. [
  54840. {
  54841. name: "Ferret Sized",
  54842. height: math.unit(2 + 5/12, "feet")
  54843. },
  54844. {
  54845. name: "Normal",
  54846. height: math.unit(5 + 4/12, "feet"),
  54847. default: true
  54848. },
  54849. ]
  54850. ))
  54851. characterMakers.push(() => makeCharacter(
  54852. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54853. {
  54854. front: {
  54855. height: math.unit(84 + 8/12, "feet"),
  54856. weight: math.unit(942180, "lb"),
  54857. name: "Front",
  54858. image: {
  54859. source: "./media/characters/daurine-arima/front.svg",
  54860. extra: 1989/1782,
  54861. bottom: 37/2026
  54862. }
  54863. },
  54864. side: {
  54865. height: math.unit(84 + 8/12, "feet"),
  54866. weight: math.unit(942180, "lb"),
  54867. name: "Side",
  54868. image: {
  54869. source: "./media/characters/daurine-arima/side.svg",
  54870. extra: 1997/1790,
  54871. bottom: 21/2018
  54872. }
  54873. },
  54874. back: {
  54875. height: math.unit(84 + 8/12, "feet"),
  54876. weight: math.unit(942180, "lb"),
  54877. name: "Back",
  54878. image: {
  54879. source: "./media/characters/daurine-arima/back.svg",
  54880. extra: 1992/1800,
  54881. bottom: 12/2004
  54882. }
  54883. },
  54884. head: {
  54885. height: math.unit(15.5, "feet"),
  54886. name: "Head",
  54887. image: {
  54888. source: "./media/characters/daurine-arima/head.svg"
  54889. }
  54890. },
  54891. headAlt: {
  54892. height: math.unit(19.19, "feet"),
  54893. name: "Head (Alt)",
  54894. image: {
  54895. source: "./media/characters/daurine-arima/head-alt.svg"
  54896. }
  54897. },
  54898. },
  54899. [
  54900. {
  54901. name: "Minimum height",
  54902. height: math.unit(8 + 10/12, "feet")
  54903. },
  54904. {
  54905. name: "Comfort height",
  54906. height: math.unit(19 + 6 /12, "feet")
  54907. },
  54908. {
  54909. name: "\"Normal\" height",
  54910. height: math.unit(28 + 10/12, "feet")
  54911. },
  54912. {
  54913. name: "Base height",
  54914. height: math.unit(84 + 8/12, "feet"),
  54915. default: true
  54916. },
  54917. {
  54918. name: "Mini-macro",
  54919. height: math.unit(2360, "feet")
  54920. },
  54921. {
  54922. name: "Macro",
  54923. height: math.unit(10, "miles")
  54924. },
  54925. {
  54926. name: "Goddess",
  54927. height: math.unit(9.99e40, "yottameters")
  54928. },
  54929. ]
  54930. ))
  54931. characterMakers.push(() => makeCharacter(
  54932. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54933. {
  54934. front: {
  54935. height: math.unit(2.3, "meters"),
  54936. name: "Front",
  54937. image: {
  54938. source: "./media/characters/cilenomon/front.svg",
  54939. extra: 1963/1778,
  54940. bottom: 54/2017
  54941. }
  54942. },
  54943. },
  54944. [
  54945. {
  54946. name: "Normal",
  54947. height: math.unit(2.3, "meters"),
  54948. default: true
  54949. },
  54950. {
  54951. name: "Big",
  54952. height: math.unit(5, "meters")
  54953. },
  54954. {
  54955. name: "Macro",
  54956. height: math.unit(30, "meters")
  54957. },
  54958. {
  54959. name: "True",
  54960. height: math.unit(1, "universe")
  54961. },
  54962. ]
  54963. ))
  54964. characterMakers.push(() => makeCharacter(
  54965. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54966. {
  54967. front: {
  54968. height: math.unit(5, "feet"),
  54969. name: "Front",
  54970. image: {
  54971. source: "./media/characters/sen-mink/front.svg",
  54972. extra: 1727/1675,
  54973. bottom: 35/1762
  54974. }
  54975. },
  54976. },
  54977. [
  54978. {
  54979. name: "Normal",
  54980. height: math.unit(5, "feet"),
  54981. default: true
  54982. },
  54983. ]
  54984. ))
  54985. characterMakers.push(() => makeCharacter(
  54986. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54987. {
  54988. front: {
  54989. height: math.unit(5.42999, "feet"),
  54990. weight: math.unit(100, "lb"),
  54991. name: "Front",
  54992. image: {
  54993. source: "./media/characters/ophois/front.svg",
  54994. extra: 1429/1286,
  54995. bottom: 60/1489
  54996. }
  54997. },
  54998. },
  54999. [
  55000. {
  55001. name: "Normal",
  55002. height: math.unit(5.42999, "feet"),
  55003. default: true
  55004. },
  55005. ]
  55006. ))
  55007. characterMakers.push(() => makeCharacter(
  55008. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  55009. {
  55010. front: {
  55011. height: math.unit(2, "meters"),
  55012. name: "Front",
  55013. image: {
  55014. source: "./media/characters/riley/front.svg",
  55015. extra: 1779/1754,
  55016. bottom: 139/1918
  55017. }
  55018. },
  55019. },
  55020. [
  55021. {
  55022. name: "Normal",
  55023. height: math.unit(2, "meters"),
  55024. default: true
  55025. },
  55026. ]
  55027. ))
  55028. characterMakers.push(() => makeCharacter(
  55029. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  55030. {
  55031. front: {
  55032. height: math.unit(6 + 2/12, "feet"),
  55033. weight: math.unit(195, "lb"),
  55034. preyCapacity: math.unit(6, "people"),
  55035. name: "Front",
  55036. image: {
  55037. source: "./media/characters/shuken-flash/front.svg",
  55038. extra: 1905/1739,
  55039. bottom: 65/1970
  55040. }
  55041. },
  55042. back: {
  55043. height: math.unit(6 + 2/12, "feet"),
  55044. weight: math.unit(195, "lb"),
  55045. preyCapacity: math.unit(6, "people"),
  55046. name: "Back",
  55047. image: {
  55048. source: "./media/characters/shuken-flash/back.svg",
  55049. extra: 1912/1751,
  55050. bottom: 13/1925
  55051. }
  55052. },
  55053. },
  55054. [
  55055. {
  55056. name: "Normal",
  55057. height: math.unit(6 + 2/12, "feet"),
  55058. default: true
  55059. },
  55060. ]
  55061. ))
  55062. characterMakers.push(() => makeCharacter(
  55063. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  55064. {
  55065. front: {
  55066. height: math.unit(5 + 9/12, "feet"),
  55067. weight: math.unit(150, "lb"),
  55068. name: "Front",
  55069. image: {
  55070. source: "./media/characters/plat/front.svg",
  55071. extra: 1816/1703,
  55072. bottom: 43/1859
  55073. }
  55074. },
  55075. side: {
  55076. height: math.unit(5 + 9/12, "feet"),
  55077. weight: math.unit(300, "lb"),
  55078. name: "Side",
  55079. image: {
  55080. source: "./media/characters/plat/side.svg",
  55081. extra: 1824/1699,
  55082. bottom: 18/1842
  55083. }
  55084. },
  55085. },
  55086. [
  55087. {
  55088. name: "Normal",
  55089. height: math.unit(5 + 9/12, "feet"),
  55090. default: true
  55091. },
  55092. ]
  55093. ))
  55094. characterMakers.push(() => makeCharacter(
  55095. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  55096. {
  55097. front: {
  55098. height: math.unit(9, "feet"),
  55099. weight: math.unit(1800, "lb"),
  55100. name: "Front",
  55101. image: {
  55102. source: "./media/characters/elaine/front.svg",
  55103. extra: 1833/1354,
  55104. bottom: 25/1858
  55105. }
  55106. },
  55107. back: {
  55108. height: math.unit(8.8, "feet"),
  55109. weight: math.unit(1800, "lb"),
  55110. name: "Back",
  55111. image: {
  55112. source: "./media/characters/elaine/back.svg",
  55113. extra: 1641/1233,
  55114. bottom: 53/1694
  55115. }
  55116. },
  55117. },
  55118. [
  55119. {
  55120. name: "Normal",
  55121. height: math.unit(9, "feet"),
  55122. default: true
  55123. },
  55124. ]
  55125. ))
  55126. characterMakers.push(() => makeCharacter(
  55127. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  55128. {
  55129. front: {
  55130. height: math.unit(17 + 9/12, "feet"),
  55131. weight: math.unit(8000, "lb"),
  55132. name: "Front",
  55133. image: {
  55134. source: "./media/characters/vera-raven/front.svg",
  55135. extra: 1457/1412,
  55136. bottom: 121/1578
  55137. }
  55138. },
  55139. side: {
  55140. height: math.unit(17 + 9/12, "feet"),
  55141. weight: math.unit(8000, "lb"),
  55142. name: "Side",
  55143. image: {
  55144. source: "./media/characters/vera-raven/side.svg",
  55145. extra: 1510/1464,
  55146. bottom: 54/1564
  55147. }
  55148. },
  55149. },
  55150. [
  55151. {
  55152. name: "Normal",
  55153. height: math.unit(17 + 9/12, "feet"),
  55154. default: true
  55155. },
  55156. ]
  55157. ))
  55158. characterMakers.push(() => makeCharacter(
  55159. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  55160. {
  55161. dressed: {
  55162. height: math.unit(6 + 9/12, "feet"),
  55163. name: "Dressed",
  55164. image: {
  55165. source: "./media/characters/nakisha/dressed.svg",
  55166. extra: 1909/1757,
  55167. bottom: 48/1957
  55168. }
  55169. },
  55170. nude: {
  55171. height: math.unit(6 + 9/12, "feet"),
  55172. name: "Nude",
  55173. image: {
  55174. source: "./media/characters/nakisha/nude.svg",
  55175. extra: 1917/1765,
  55176. bottom: 34/1951
  55177. }
  55178. },
  55179. },
  55180. [
  55181. {
  55182. name: "Normal",
  55183. height: math.unit(6 + 9/12, "feet"),
  55184. default: true
  55185. },
  55186. ]
  55187. ))
  55188. characterMakers.push(() => makeCharacter(
  55189. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  55190. {
  55191. front: {
  55192. height: math.unit(87, "meters"),
  55193. name: "Front",
  55194. image: {
  55195. source: "./media/characters/serafin/front.svg",
  55196. extra: 1919/1776,
  55197. bottom: 65/1984
  55198. }
  55199. },
  55200. },
  55201. [
  55202. {
  55203. name: "Normal",
  55204. height: math.unit(87, "meters"),
  55205. default: true
  55206. },
  55207. ]
  55208. ))
  55209. characterMakers.push(() => makeCharacter(
  55210. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  55211. {
  55212. front: {
  55213. height: math.unit(6, "feet"),
  55214. weight: math.unit(200, "lb"),
  55215. name: "Front",
  55216. image: {
  55217. source: "./media/characters/poptart/front.svg",
  55218. extra: 615/583,
  55219. bottom: 23/638
  55220. }
  55221. },
  55222. back: {
  55223. height: math.unit(6, "feet"),
  55224. weight: math.unit(200, "lb"),
  55225. name: "Back",
  55226. image: {
  55227. source: "./media/characters/poptart/back.svg",
  55228. extra: 617/584,
  55229. bottom: 22/639
  55230. }
  55231. },
  55232. frontNsfw: {
  55233. height: math.unit(6, "feet"),
  55234. weight: math.unit(200, "lb"),
  55235. name: "Front (NSFW)",
  55236. image: {
  55237. source: "./media/characters/poptart/front-nsfw.svg",
  55238. extra: 615/583,
  55239. bottom: 23/638
  55240. }
  55241. },
  55242. backNsfw: {
  55243. height: math.unit(6, "feet"),
  55244. weight: math.unit(200, "lb"),
  55245. name: "Back (NSFW)",
  55246. image: {
  55247. source: "./media/characters/poptart/back-nsfw.svg",
  55248. extra: 617/584,
  55249. bottom: 22/639
  55250. }
  55251. },
  55252. hand: {
  55253. height: math.unit(1.14, "feet"),
  55254. name: "Hand",
  55255. image: {
  55256. source: "./media/characters/poptart/hand.svg"
  55257. }
  55258. },
  55259. foot: {
  55260. height: math.unit(1.5, "feet"),
  55261. name: "Foot",
  55262. image: {
  55263. source: "./media/characters/poptart/foot.svg"
  55264. }
  55265. },
  55266. },
  55267. [
  55268. {
  55269. name: "Normal",
  55270. height: math.unit(6, "feet"),
  55271. default: true
  55272. },
  55273. {
  55274. name: "Grande",
  55275. height: math.unit(350, "feet")
  55276. },
  55277. {
  55278. name: "Massif",
  55279. height: math.unit(967, "feet")
  55280. },
  55281. ]
  55282. ))
  55283. characterMakers.push(() => makeCharacter(
  55284. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  55285. {
  55286. hyenaSide: {
  55287. height: math.unit(120, "cm"),
  55288. weight: math.unit(120, "lb"),
  55289. name: "Side",
  55290. image: {
  55291. source: "./media/characters/trance/hyena-side.svg",
  55292. extra: 998/904,
  55293. bottom: 76/1074
  55294. }
  55295. },
  55296. },
  55297. [
  55298. {
  55299. name: "Normal",
  55300. height: math.unit(120, "cm"),
  55301. default: true
  55302. },
  55303. {
  55304. name: "Dire",
  55305. height: math.unit(230, "cm")
  55306. },
  55307. {
  55308. name: "Macro",
  55309. height: math.unit(37, "feet")
  55310. },
  55311. ]
  55312. ))
  55313. characterMakers.push(() => makeCharacter(
  55314. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  55315. {
  55316. front: {
  55317. height: math.unit(6 + 3/12, "feet"),
  55318. name: "Front",
  55319. image: {
  55320. source: "./media/characters/michael-berretta/front.svg",
  55321. extra: 515/494,
  55322. bottom: 20/535
  55323. }
  55324. },
  55325. back: {
  55326. height: math.unit(6 + 3/12, "feet"),
  55327. name: "Back",
  55328. image: {
  55329. source: "./media/characters/michael-berretta/back.svg",
  55330. extra: 520/497,
  55331. bottom: 21/541
  55332. }
  55333. },
  55334. frontNsfw: {
  55335. height: math.unit(6 + 3/12, "feet"),
  55336. name: "Front (NSFW)",
  55337. image: {
  55338. source: "./media/characters/michael-berretta/front-nsfw.svg",
  55339. extra: 515/494,
  55340. bottom: 20/535
  55341. }
  55342. },
  55343. dick: {
  55344. height: math.unit(1, "feet"),
  55345. name: "Dick",
  55346. image: {
  55347. source: "./media/characters/michael-berretta/dick.svg"
  55348. }
  55349. },
  55350. },
  55351. [
  55352. {
  55353. name: "Normal",
  55354. height: math.unit(6 + 3/12, "feet"),
  55355. default: true
  55356. },
  55357. {
  55358. name: "Big",
  55359. height: math.unit(12, "feet")
  55360. },
  55361. {
  55362. name: "Macro",
  55363. height: math.unit(187.5, "feet")
  55364. },
  55365. ]
  55366. ))
  55367. characterMakers.push(() => makeCharacter(
  55368. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  55369. {
  55370. front: {
  55371. height: math.unit(9 + 9/12, "feet"),
  55372. weight: math.unit(1244, "lb"),
  55373. name: "Front",
  55374. image: {
  55375. source: "./media/characters/stella-edgecomb/front.svg",
  55376. extra: 1835/1706,
  55377. bottom: 49/1884
  55378. }
  55379. },
  55380. pen: {
  55381. height: math.unit(0.95, "feet"),
  55382. name: "Pen",
  55383. image: {
  55384. source: "./media/characters/stella-edgecomb/pen.svg"
  55385. }
  55386. },
  55387. },
  55388. [
  55389. {
  55390. name: "Cozy Bear",
  55391. height: math.unit(0.5, "inches")
  55392. },
  55393. {
  55394. name: "Normal",
  55395. height: math.unit(9 + 9/12, "feet"),
  55396. default: true
  55397. },
  55398. {
  55399. name: "Giga Bear",
  55400. height: math.unit(1, "mile")
  55401. },
  55402. {
  55403. name: "Great Bear",
  55404. height: math.unit(53, "miles")
  55405. },
  55406. {
  55407. name: "Goddess Bear",
  55408. height: math.unit(40000, "miles")
  55409. },
  55410. {
  55411. name: "Sun Bear",
  55412. height: math.unit(900000, "miles")
  55413. },
  55414. ]
  55415. ))
  55416. characterMakers.push(() => makeCharacter(
  55417. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  55418. {
  55419. anthroFront: {
  55420. height: math.unit(556, "cm"),
  55421. weight: math.unit(2650, "kg"),
  55422. preyCapacity: math.unit(3, "people"),
  55423. name: "Front",
  55424. image: {
  55425. source: "./media/characters/ash´iika/front.svg",
  55426. extra: 710/673,
  55427. bottom: 15/725
  55428. },
  55429. form: "anthro",
  55430. default: true
  55431. },
  55432. anthroSide: {
  55433. height: math.unit(556, "cm"),
  55434. weight: math.unit(2650, "kg"),
  55435. preyCapacity: math.unit(3, "people"),
  55436. name: "Side",
  55437. image: {
  55438. source: "./media/characters/ash´iika/side.svg",
  55439. extra: 696/676,
  55440. bottom: 13/709
  55441. },
  55442. form: "anthro"
  55443. },
  55444. anthroDressed: {
  55445. height: math.unit(556, "cm"),
  55446. weight: math.unit(2650, "kg"),
  55447. preyCapacity: math.unit(3, "people"),
  55448. name: "Dressed",
  55449. image: {
  55450. source: "./media/characters/ash´iika/dressed.svg",
  55451. extra: 710/673,
  55452. bottom: 15/725
  55453. },
  55454. form: "anthro"
  55455. },
  55456. anthroHead: {
  55457. height: math.unit(3.5, "feet"),
  55458. name: "Head",
  55459. image: {
  55460. source: "./media/characters/ash´iika/head.svg",
  55461. extra: 348/291,
  55462. bottom: 45/393
  55463. },
  55464. form: "anthro"
  55465. },
  55466. feralSide: {
  55467. height: math.unit(870, "cm"),
  55468. weight: math.unit(17500, "kg"),
  55469. preyCapacity: math.unit(15, "people"),
  55470. name: "Side",
  55471. image: {
  55472. source: "./media/characters/ash´iika/feral.svg",
  55473. extra: 595/199,
  55474. bottom: 7/602
  55475. },
  55476. form: "feral",
  55477. default: true,
  55478. },
  55479. },
  55480. [
  55481. {
  55482. name: "Normal",
  55483. height: math.unit(556, "cm"),
  55484. default: true,
  55485. form: "anthro"
  55486. },
  55487. {
  55488. name: "Macro",
  55489. height: math.unit(88, "meters"),
  55490. form: "anthro"
  55491. },
  55492. {
  55493. name: "Normal",
  55494. height: math.unit(870, "cm"),
  55495. default: true,
  55496. form: "feral"
  55497. },
  55498. {
  55499. name: "Large",
  55500. height: math.unit(25, "meters"),
  55501. form: "feral"
  55502. },
  55503. ],
  55504. {
  55505. "anthro": {
  55506. name: "Anthro",
  55507. default: true
  55508. },
  55509. "feral": {
  55510. name: "Feral",
  55511. },
  55512. }
  55513. ))
  55514. characterMakers.push(() => makeCharacter(
  55515. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55516. {
  55517. front: {
  55518. height: math.unit(10, "feet"),
  55519. weight: math.unit(800, "lb"),
  55520. name: "Front",
  55521. image: {
  55522. source: "./media/characters/yen/front.svg",
  55523. extra: 443/411,
  55524. bottom: 6/449
  55525. }
  55526. },
  55527. sleeping: {
  55528. height: math.unit(10, "feet"),
  55529. weight: math.unit(800, "lb"),
  55530. name: "Sleeping",
  55531. image: {
  55532. source: "./media/characters/yen/sleeping.svg",
  55533. extra: 470/422,
  55534. bottom: 0/470
  55535. }
  55536. },
  55537. head: {
  55538. height: math.unit(2.2, "feet"),
  55539. name: "Head",
  55540. image: {
  55541. source: "./media/characters/yen/head.svg"
  55542. }
  55543. },
  55544. headAlt: {
  55545. height: math.unit(2.1, "feet"),
  55546. name: "Head (Alt)",
  55547. image: {
  55548. source: "./media/characters/yen/head-alt.svg"
  55549. }
  55550. },
  55551. },
  55552. [
  55553. {
  55554. name: "Normal",
  55555. height: math.unit(10, "feet"),
  55556. default: true
  55557. },
  55558. ]
  55559. ))
  55560. characterMakers.push(() => makeCharacter(
  55561. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55562. {
  55563. front: {
  55564. height: math.unit(12, "feet"),
  55565. name: "Front",
  55566. image: {
  55567. source: "./media/characters/citra/front.svg",
  55568. extra: 1950/1710,
  55569. bottom: 47/1997
  55570. }
  55571. },
  55572. },
  55573. [
  55574. {
  55575. name: "Normal",
  55576. height: math.unit(12, "feet"),
  55577. default: true
  55578. },
  55579. ]
  55580. ))
  55581. characterMakers.push(() => makeCharacter(
  55582. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55583. {
  55584. side: {
  55585. height: math.unit(7 + 10/12, "feet"),
  55586. name: "Side",
  55587. image: {
  55588. source: "./media/characters/sholstim/side.svg",
  55589. extra: 786/682,
  55590. bottom: 40/826
  55591. }
  55592. },
  55593. },
  55594. [
  55595. {
  55596. name: "Normal",
  55597. height: math.unit(7 + 10/12, "feet"),
  55598. default: true
  55599. },
  55600. ]
  55601. ))
  55602. characterMakers.push(() => makeCharacter(
  55603. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55604. {
  55605. front: {
  55606. height: math.unit(3.10, "meters"),
  55607. name: "Front",
  55608. image: {
  55609. source: "./media/characters/aggyn/front.svg",
  55610. extra: 1188/963,
  55611. bottom: 24/1212
  55612. }
  55613. },
  55614. },
  55615. [
  55616. {
  55617. name: "Normal",
  55618. height: math.unit(3.10, "meters"),
  55619. default: true
  55620. },
  55621. ]
  55622. ))
  55623. characterMakers.push(() => makeCharacter(
  55624. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55625. {
  55626. front: {
  55627. height: math.unit(7 + 5/12, "feet"),
  55628. weight: math.unit(687, "lb"),
  55629. name: "Front",
  55630. image: {
  55631. source: "./media/characters/alsandair-hergenroether/front.svg",
  55632. extra: 1251/1186,
  55633. bottom: 75/1326
  55634. }
  55635. },
  55636. back: {
  55637. height: math.unit(7 + 5/12, "feet"),
  55638. weight: math.unit(687, "lb"),
  55639. name: "Back",
  55640. image: {
  55641. source: "./media/characters/alsandair-hergenroether/back.svg",
  55642. extra: 1290/1229,
  55643. bottom: 17/1307
  55644. }
  55645. },
  55646. },
  55647. [
  55648. {
  55649. name: "Max Compression",
  55650. height: math.unit(7 + 5/12, "feet"),
  55651. default: true
  55652. },
  55653. {
  55654. name: "\"Normal\"",
  55655. height: math.unit(2, "universes")
  55656. },
  55657. ]
  55658. ))
  55659. characterMakers.push(() => makeCharacter(
  55660. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55661. {
  55662. front: {
  55663. height: math.unit(4 + 1/12, "feet"),
  55664. weight: math.unit(92, "lb"),
  55665. name: "Front",
  55666. image: {
  55667. source: "./media/characters/ie/front.svg",
  55668. extra: 1585/1352,
  55669. bottom: 91/1676
  55670. }
  55671. },
  55672. },
  55673. [
  55674. {
  55675. name: "Normal",
  55676. height: math.unit(4 + 1/12, "feet"),
  55677. default: true
  55678. },
  55679. ]
  55680. ))
  55681. characterMakers.push(() => makeCharacter(
  55682. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55683. {
  55684. anthro: {
  55685. height: math.unit(6, "feet"),
  55686. weight: math.unit(150, "lb"),
  55687. name: "Front",
  55688. image: {
  55689. source: "./media/characters/willow/anthro.svg",
  55690. extra: 1073/986,
  55691. bottom: 34/1107
  55692. },
  55693. form: "anthro",
  55694. default: true
  55695. },
  55696. taur: {
  55697. height: math.unit(6, "feet"),
  55698. weight: math.unit(150, "lb"),
  55699. name: "Side",
  55700. image: {
  55701. source: "./media/characters/willow/taur.svg",
  55702. extra: 647/512,
  55703. bottom: 136/783
  55704. },
  55705. form: "taur",
  55706. default: true
  55707. },
  55708. },
  55709. [
  55710. {
  55711. name: "Humanoid",
  55712. height: math.unit(2.7, "meters"),
  55713. form: "anthro"
  55714. },
  55715. {
  55716. name: "Normal",
  55717. height: math.unit(9, "meters"),
  55718. form: "anthro",
  55719. default: true
  55720. },
  55721. {
  55722. name: "Humanoid",
  55723. height: math.unit(2.1, "meters"),
  55724. form: "taur"
  55725. },
  55726. {
  55727. name: "Normal",
  55728. height: math.unit(7, "meters"),
  55729. form: "taur",
  55730. default: true
  55731. },
  55732. ],
  55733. {
  55734. "anthro": {
  55735. name: "Anthro",
  55736. default: true
  55737. },
  55738. "taur": {
  55739. name: "Taur",
  55740. },
  55741. }
  55742. ))
  55743. characterMakers.push(() => makeCharacter(
  55744. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55745. {
  55746. front: {
  55747. height: math.unit(2 + 5/12, "feet"),
  55748. name: "Front",
  55749. image: {
  55750. source: "./media/characters/kyan/front.svg",
  55751. extra: 460/334,
  55752. bottom: 23/483
  55753. },
  55754. extraAttributes: {
  55755. "toeLength": {
  55756. name: "Toe Length",
  55757. power: 1,
  55758. type: "length",
  55759. base: math.unit(7, "cm")
  55760. },
  55761. "toeclawLength": {
  55762. name: "Toeclaw Length",
  55763. power: 1,
  55764. type: "length",
  55765. base: math.unit(4.7, "cm")
  55766. },
  55767. "earHeight": {
  55768. name: "Ear Height",
  55769. power: 1,
  55770. type: "length",
  55771. base: math.unit(14.1, "cm")
  55772. },
  55773. }
  55774. },
  55775. paws: {
  55776. height: math.unit(0.45, "feet"),
  55777. name: "Paws",
  55778. image: {
  55779. source: "./media/characters/kyan/paws.svg",
  55780. extra: 581/581,
  55781. bottom: 114/695
  55782. }
  55783. },
  55784. },
  55785. [
  55786. {
  55787. name: "Normal",
  55788. height: math.unit(2 + 5/12, "feet"),
  55789. default: true
  55790. },
  55791. ]
  55792. ))
  55793. characterMakers.push(() => makeCharacter(
  55794. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55795. {
  55796. front: {
  55797. height: math.unit(2 + 2/3, "feet"),
  55798. name: "Front",
  55799. image: {
  55800. source: "./media/characters/xazzon/front.svg",
  55801. extra: 1109/984,
  55802. bottom: 42/1151
  55803. }
  55804. },
  55805. back: {
  55806. height: math.unit(2 + 2/3, "feet"),
  55807. name: "Back",
  55808. image: {
  55809. source: "./media/characters/xazzon/back.svg",
  55810. extra: 1095/971,
  55811. bottom: 23/1118
  55812. }
  55813. },
  55814. },
  55815. [
  55816. {
  55817. name: "Normal",
  55818. height: math.unit(2 + 2/3, "feet"),
  55819. default: true
  55820. },
  55821. ]
  55822. ))
  55823. characterMakers.push(() => makeCharacter(
  55824. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55825. {
  55826. front: {
  55827. height: math.unit(8, "feet"),
  55828. weight: math.unit(300, "lb"),
  55829. name: "Front",
  55830. image: {
  55831. source: "./media/characters/khyla-shadowsong/front.svg",
  55832. extra: 861/798,
  55833. bottom: 32/893
  55834. }
  55835. },
  55836. side: {
  55837. height: math.unit(8, "feet"),
  55838. weight: math.unit(300, "lb"),
  55839. name: "Side",
  55840. image: {
  55841. source: "./media/characters/khyla-shadowsong/side.svg",
  55842. extra: 790/750,
  55843. bottom: 87/877
  55844. }
  55845. },
  55846. back: {
  55847. height: math.unit(8, "feet"),
  55848. weight: math.unit(300, "lb"),
  55849. name: "Back",
  55850. image: {
  55851. source: "./media/characters/khyla-shadowsong/back.svg",
  55852. extra: 855/808,
  55853. bottom: 14/869
  55854. }
  55855. },
  55856. head: {
  55857. height: math.unit(2.7, "feet"),
  55858. name: "Head",
  55859. image: {
  55860. source: "./media/characters/khyla-shadowsong/head.svg"
  55861. }
  55862. },
  55863. },
  55864. [
  55865. {
  55866. name: "Micro",
  55867. height: math.unit(6, "inches")
  55868. },
  55869. {
  55870. name: "Normal",
  55871. height: math.unit(8, "feet"),
  55872. default: true
  55873. },
  55874. ]
  55875. ))
  55876. characterMakers.push(() => makeCharacter(
  55877. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55878. {
  55879. hyperFront: {
  55880. height: math.unit(9 + 4/12, "feet"),
  55881. weight: math.unit(2000, "lb"),
  55882. name: "Front",
  55883. image: {
  55884. source: "./media/characters/tiden/hyper-front.svg",
  55885. extra: 400/382,
  55886. bottom: 6/406
  55887. },
  55888. form: "hyper",
  55889. },
  55890. regularFront: {
  55891. height: math.unit(7 + 10/12, "feet"),
  55892. weight: math.unit(470, "lb"),
  55893. name: "Front",
  55894. image: {
  55895. source: "./media/characters/tiden/regular-front.svg",
  55896. extra: 468/442,
  55897. bottom: 6/474
  55898. },
  55899. form: "regular",
  55900. },
  55901. },
  55902. [
  55903. {
  55904. name: "Normal",
  55905. height: math.unit(9 + 4/12, "feet"),
  55906. default: true,
  55907. form: "hyper"
  55908. },
  55909. {
  55910. name: "Normal",
  55911. height: math.unit(7 + 10/12, "feet"),
  55912. default: true,
  55913. form: "regular"
  55914. },
  55915. ],
  55916. {
  55917. "hyper": {
  55918. name: "Hyper",
  55919. default: true
  55920. },
  55921. "regular": {
  55922. name: "Regular",
  55923. },
  55924. }
  55925. ))
  55926. characterMakers.push(() => makeCharacter(
  55927. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55928. {
  55929. side: {
  55930. height: math.unit(6, "feet"),
  55931. weight: math.unit(150, "lb"),
  55932. name: "Side",
  55933. image: {
  55934. source: "./media/characters/jason-crowe/side.svg",
  55935. extra: 1771/766,
  55936. bottom: 219/1990
  55937. }
  55938. },
  55939. },
  55940. [
  55941. {
  55942. name: "Pocket Gryphon",
  55943. height: math.unit(6, "cm")
  55944. },
  55945. {
  55946. name: "Raven",
  55947. height: math.unit(60, "cm")
  55948. },
  55949. {
  55950. name: "Normal",
  55951. height: math.unit(1, "meter"),
  55952. default: true
  55953. },
  55954. ]
  55955. ))
  55956. characterMakers.push(() => makeCharacter(
  55957. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55958. {
  55959. front: {
  55960. height: math.unit(9 + 6/12, "feet"),
  55961. weight: math.unit(1100, "lb"),
  55962. name: "Front",
  55963. image: {
  55964. source: "./media/characters/django/front.svg",
  55965. extra: 1231/1136,
  55966. bottom: 34/1265
  55967. }
  55968. },
  55969. side: {
  55970. height: math.unit(9 + 6/12, "feet"),
  55971. weight: math.unit(1100, "lb"),
  55972. name: "Side",
  55973. image: {
  55974. source: "./media/characters/django/side.svg",
  55975. extra: 1267/1174,
  55976. bottom: 9/1276
  55977. }
  55978. },
  55979. },
  55980. [
  55981. {
  55982. name: "Normal",
  55983. height: math.unit(9 + 6/12, "feet"),
  55984. default: true
  55985. },
  55986. {
  55987. name: "Macro 1",
  55988. height: math.unit(50, "feet")
  55989. },
  55990. {
  55991. name: "Macro 2",
  55992. height: math.unit(500, "feet")
  55993. },
  55994. {
  55995. name: "Mega Macro",
  55996. height: math.unit(5300, "feet")
  55997. },
  55998. ]
  55999. ))
  56000. characterMakers.push(() => makeCharacter(
  56001. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  56002. {
  56003. frontSfw: {
  56004. height: math.unit(120, "cm"),
  56005. weight: math.unit(15, "kg"),
  56006. name: "Front (SFW)",
  56007. image: {
  56008. source: "./media/characters/eri/front-sfw.svg",
  56009. extra: 1014/939,
  56010. bottom: 37/1051
  56011. },
  56012. form: "moth",
  56013. },
  56014. frontNsfw: {
  56015. height: math.unit(120, "cm"),
  56016. weight: math.unit(15, "kg"),
  56017. name: "Front (NSFW)",
  56018. image: {
  56019. source: "./media/characters/eri/front-nsfw.svg",
  56020. extra: 1014/939,
  56021. bottom: 37/1051
  56022. },
  56023. form: "moth",
  56024. default: true
  56025. },
  56026. egg: {
  56027. height: math.unit(10, "cm"),
  56028. name: "Egg",
  56029. image: {
  56030. source: "./media/characters/eri/egg.svg"
  56031. },
  56032. form: "egg",
  56033. default: true
  56034. },
  56035. },
  56036. [
  56037. {
  56038. name: "Normal",
  56039. height: math.unit(120, "cm"),
  56040. default: true,
  56041. form: "moth"
  56042. },
  56043. {
  56044. name: "Normal",
  56045. height: math.unit(10, "cm"),
  56046. default: true,
  56047. form: "egg"
  56048. },
  56049. ],
  56050. {
  56051. "moth": {
  56052. name: "Moth",
  56053. default: true
  56054. },
  56055. "egg": {
  56056. name: "Egg",
  56057. },
  56058. }
  56059. ))
  56060. characterMakers.push(() => makeCharacter(
  56061. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  56062. {
  56063. front: {
  56064. height: math.unit(200, "feet"),
  56065. name: "Front",
  56066. image: {
  56067. source: "./media/characters/bishop-dowser/front.svg",
  56068. extra: 933/868,
  56069. bottom: 106/1039
  56070. }
  56071. },
  56072. },
  56073. [
  56074. {
  56075. name: "Giant",
  56076. height: math.unit(200, "feet"),
  56077. default: true
  56078. },
  56079. ]
  56080. ))
  56081. characterMakers.push(() => makeCharacter(
  56082. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  56083. {
  56084. front: {
  56085. height: math.unit(2, "meters"),
  56086. preyCapacity: math.unit(3, "people"),
  56087. name: "Front",
  56088. image: {
  56089. source: "./media/characters/fryra/front.svg",
  56090. extra: 1025/948,
  56091. bottom: 30/1055
  56092. },
  56093. extraAttributes: {
  56094. "breastVolume": {
  56095. name: "Breast Volume",
  56096. power: 3,
  56097. type: "volume",
  56098. base: math.unit(8, "liters")
  56099. },
  56100. }
  56101. },
  56102. back: {
  56103. height: math.unit(2, "meters"),
  56104. preyCapacity: math.unit(3, "people"),
  56105. name: "Back",
  56106. image: {
  56107. source: "./media/characters/fryra/back.svg",
  56108. extra: 993/938,
  56109. bottom: 38/1031
  56110. },
  56111. extraAttributes: {
  56112. "breastVolume": {
  56113. name: "Breast Volume",
  56114. power: 3,
  56115. type: "volume",
  56116. base: math.unit(8, "liters")
  56117. },
  56118. }
  56119. },
  56120. head: {
  56121. height: math.unit(1.33, "feet"),
  56122. name: "Head",
  56123. image: {
  56124. source: "./media/characters/fryra/head.svg"
  56125. }
  56126. },
  56127. maw: {
  56128. height: math.unit(0.56, "feet"),
  56129. name: "Maw",
  56130. image: {
  56131. source: "./media/characters/fryra/maw.svg"
  56132. }
  56133. },
  56134. },
  56135. [
  56136. {
  56137. name: "Micro",
  56138. height: math.unit(5, "cm")
  56139. },
  56140. {
  56141. name: "Normal",
  56142. height: math.unit(2, "meters"),
  56143. default: true
  56144. },
  56145. {
  56146. name: "Small Macro",
  56147. height: math.unit(8, "meters")
  56148. },
  56149. {
  56150. name: "Macro",
  56151. height: math.unit(50, "meters")
  56152. },
  56153. {
  56154. name: "Megamacro",
  56155. height: math.unit(1, "km")
  56156. },
  56157. {
  56158. name: "Planetary",
  56159. height: math.unit(300000, "km")
  56160. },
  56161. {
  56162. name: "Universal",
  56163. height: math.unit(250, "lightyears")
  56164. },
  56165. {
  56166. name: "Fabric of Reality",
  56167. height: math.unit(1000, "multiverses")
  56168. },
  56169. ]
  56170. ))
  56171. characterMakers.push(() => makeCharacter(
  56172. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  56173. {
  56174. frontDressed: {
  56175. height: math.unit(6 + 2/12, "feet"),
  56176. name: "Front (Dressed)",
  56177. image: {
  56178. source: "./media/characters/fiera/front-dressed.svg",
  56179. extra: 1883/1793,
  56180. bottom: 70/1953
  56181. }
  56182. },
  56183. backDressed: {
  56184. height: math.unit(6 + 2/12, "feet"),
  56185. name: "Back (Dressed)",
  56186. image: {
  56187. source: "./media/characters/fiera/back-dressed.svg",
  56188. extra: 1847/1780,
  56189. bottom: 70/1917
  56190. }
  56191. },
  56192. frontNude: {
  56193. height: math.unit(6 + 2/12, "feet"),
  56194. name: "Front (Nude)",
  56195. image: {
  56196. source: "./media/characters/fiera/front-nude.svg",
  56197. extra: 1875/1785,
  56198. bottom: 66/1941
  56199. }
  56200. },
  56201. backNude: {
  56202. height: math.unit(6 + 2/12, "feet"),
  56203. name: "Back (Nude)",
  56204. image: {
  56205. source: "./media/characters/fiera/back-nude.svg",
  56206. extra: 1855/1788,
  56207. bottom: 44/1899
  56208. }
  56209. },
  56210. maw: {
  56211. height: math.unit(1.3, "feet"),
  56212. name: "Maw",
  56213. image: {
  56214. source: "./media/characters/fiera/maw.svg"
  56215. }
  56216. },
  56217. paw: {
  56218. height: math.unit(1, "feet"),
  56219. name: "Paw",
  56220. image: {
  56221. source: "./media/characters/fiera/paw.svg"
  56222. }
  56223. },
  56224. shoe: {
  56225. height: math.unit(1.05, "feet"),
  56226. name: "Shoe",
  56227. image: {
  56228. source: "./media/characters/fiera/shoe.svg"
  56229. }
  56230. },
  56231. },
  56232. [
  56233. {
  56234. name: "Normal",
  56235. height: math.unit(6 + 2/12, "feet"),
  56236. default: true
  56237. },
  56238. {
  56239. name: "Size Difference",
  56240. height: math.unit(13, "feet")
  56241. },
  56242. {
  56243. name: "Macro",
  56244. height: math.unit(60, "feet")
  56245. },
  56246. {
  56247. name: "Mega Macro",
  56248. height: math.unit(200, "feet")
  56249. },
  56250. ]
  56251. ))
  56252. characterMakers.push(() => makeCharacter(
  56253. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  56254. {
  56255. back: {
  56256. height: math.unit(6, "feet"),
  56257. name: "Back",
  56258. image: {
  56259. source: "./media/characters/flare/back.svg",
  56260. extra: 1883/1765,
  56261. bottom: 32/1915
  56262. }
  56263. },
  56264. },
  56265. [
  56266. {
  56267. name: "Normal",
  56268. height: math.unit(6 + 2/12, "feet"),
  56269. default: true
  56270. },
  56271. {
  56272. name: "Size Difference",
  56273. height: math.unit(13, "feet")
  56274. },
  56275. {
  56276. name: "Macro",
  56277. height: math.unit(60, "feet")
  56278. },
  56279. {
  56280. name: "Macro 2",
  56281. height: math.unit(100, "feet")
  56282. },
  56283. {
  56284. name: "Mega Macro",
  56285. height: math.unit(200, "feet")
  56286. },
  56287. ]
  56288. ))
  56289. characterMakers.push(() => makeCharacter(
  56290. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  56291. {
  56292. front: {
  56293. height: math.unit(2.2, "m"),
  56294. weight: math.unit(300, "kg"),
  56295. name: "Front",
  56296. image: {
  56297. source: "./media/characters/hanna/front.svg",
  56298. extra: 1696/1502,
  56299. bottom: 206/1902
  56300. }
  56301. },
  56302. },
  56303. [
  56304. {
  56305. name: "Humanoid",
  56306. height: math.unit(2.2, "meters")
  56307. },
  56308. {
  56309. name: "Normal",
  56310. height: math.unit(4.8, "meters"),
  56311. default: true
  56312. },
  56313. ]
  56314. ))
  56315. characterMakers.push(() => makeCharacter(
  56316. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  56317. {
  56318. front: {
  56319. height: math.unit(2.8, "meters"),
  56320. name: "Front",
  56321. image: {
  56322. source: "./media/characters/argo/front.svg",
  56323. extra: 731/518,
  56324. bottom: 84/815
  56325. }
  56326. },
  56327. },
  56328. [
  56329. {
  56330. name: "Normal",
  56331. height: math.unit(3, "meters"),
  56332. default: true
  56333. },
  56334. ]
  56335. ))
  56336. characterMakers.push(() => makeCharacter(
  56337. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  56338. {
  56339. side: {
  56340. height: math.unit(3.8, "meters"),
  56341. name: "Side",
  56342. image: {
  56343. source: "./media/characters/sybil/side.svg",
  56344. extra: 382/361,
  56345. bottom: 25/407
  56346. }
  56347. },
  56348. },
  56349. [
  56350. {
  56351. name: "Normal",
  56352. height: math.unit(3.8, "meters"),
  56353. default: true
  56354. },
  56355. ]
  56356. ))
  56357. characterMakers.push(() => makeCharacter(
  56358. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  56359. {
  56360. side: {
  56361. height: math.unit(6, "meters"),
  56362. name: "Side",
  56363. image: {
  56364. source: "./media/characters/plum/side.svg",
  56365. extra: 858/755,
  56366. bottom: 45/903
  56367. },
  56368. form: "taur",
  56369. default: true
  56370. },
  56371. back: {
  56372. height: math.unit(6.3, "meters"),
  56373. name: "Back",
  56374. image: {
  56375. source: "./media/characters/plum/back.svg",
  56376. extra: 887/813,
  56377. bottom: 32/919
  56378. },
  56379. form: "taur",
  56380. },
  56381. feral: {
  56382. height: math.unit(5.5, "meter"),
  56383. name: "Front",
  56384. image: {
  56385. source: "./media/characters/plum/feral.svg",
  56386. extra: 568/403,
  56387. bottom: 51/619
  56388. },
  56389. form: "feral",
  56390. default: true
  56391. },
  56392. head: {
  56393. height: math.unit(1.46, "meter"),
  56394. name: "Head",
  56395. image: {
  56396. source: "./media/characters/plum/head.svg"
  56397. },
  56398. form: "taur"
  56399. },
  56400. tailTop: {
  56401. height: math.unit(5.6, "meter"),
  56402. name: "Tail (Top)",
  56403. image: {
  56404. source: "./media/characters/plum/tail-top.svg"
  56405. },
  56406. form: "taur",
  56407. },
  56408. tailBottom: {
  56409. height: math.unit(5.6, "meter"),
  56410. name: "Tail (Bottom)",
  56411. image: {
  56412. source: "./media/characters/plum/tail-bottom.svg"
  56413. },
  56414. form: "taur",
  56415. },
  56416. feralHead: {
  56417. height: math.unit(2.56549521, "meter"),
  56418. name: "Head",
  56419. image: {
  56420. source: "./media/characters/plum/head.svg"
  56421. },
  56422. form: "feral"
  56423. },
  56424. feralTailTop: {
  56425. height: math.unit(5.44728435, "meter"),
  56426. name: "Tail (Top)",
  56427. image: {
  56428. source: "./media/characters/plum/tail-top.svg"
  56429. },
  56430. form: "feral",
  56431. },
  56432. feralTailBottom: {
  56433. height: math.unit(5.44728435, "meter"),
  56434. name: "Tail (Bottom)",
  56435. image: {
  56436. source: "./media/characters/plum/tail-bottom.svg"
  56437. },
  56438. form: "feral",
  56439. },
  56440. },
  56441. [
  56442. {
  56443. name: "Normal",
  56444. height: math.unit(6, "meters"),
  56445. default: true,
  56446. form: "taur"
  56447. },
  56448. {
  56449. name: "Normal",
  56450. height: math.unit(5.5, "meters"),
  56451. default: true,
  56452. form: "feral"
  56453. },
  56454. ],
  56455. {
  56456. "taur": {
  56457. name: "Taur",
  56458. default: true
  56459. },
  56460. "feral": {
  56461. name: "Feral",
  56462. },
  56463. }
  56464. ))
  56465. characterMakers.push(() => makeCharacter(
  56466. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  56467. {
  56468. front: {
  56469. height: math.unit(6, "feet"),
  56470. weight: math.unit(115, "lb"),
  56471. name: "Front",
  56472. image: {
  56473. source: "./media/characters/celeste-kitsune/front.svg",
  56474. extra: 393/366,
  56475. bottom: 7/400
  56476. }
  56477. },
  56478. side: {
  56479. height: math.unit(6, "feet"),
  56480. weight: math.unit(115, "lb"),
  56481. name: "Side",
  56482. image: {
  56483. source: "./media/characters/celeste-kitsune/side.svg",
  56484. extra: 818/765,
  56485. bottom: 40/858
  56486. }
  56487. },
  56488. },
  56489. [
  56490. {
  56491. name: "Megamacro",
  56492. height: math.unit(1500, "miles"),
  56493. default: true
  56494. },
  56495. ]
  56496. ))
  56497. characterMakers.push(() => makeCharacter(
  56498. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56499. {
  56500. front: {
  56501. height: math.unit(8, "meters"),
  56502. name: "Front",
  56503. image: {
  56504. source: "./media/characters/io/front.svg",
  56505. extra: 865/722,
  56506. bottom: 58/923
  56507. }
  56508. },
  56509. back: {
  56510. height: math.unit(8, "meters"),
  56511. name: "Back",
  56512. image: {
  56513. source: "./media/characters/io/back.svg",
  56514. extra: 920/776,
  56515. bottom: 42/962
  56516. }
  56517. },
  56518. head: {
  56519. height: math.unit(5.09, "meters"),
  56520. name: "Head",
  56521. image: {
  56522. source: "./media/characters/io/head.svg"
  56523. }
  56524. },
  56525. hand: {
  56526. height: math.unit(1.6, "meters"),
  56527. name: "Hand",
  56528. image: {
  56529. source: "./media/characters/io/hand.svg"
  56530. }
  56531. },
  56532. foot: {
  56533. height: math.unit(2.4, "meters"),
  56534. name: "Foot",
  56535. image: {
  56536. source: "./media/characters/io/foot.svg"
  56537. }
  56538. },
  56539. },
  56540. [
  56541. {
  56542. name: "Normal",
  56543. height: math.unit(8, "meters"),
  56544. default: true
  56545. },
  56546. ]
  56547. ))
  56548. characterMakers.push(() => makeCharacter(
  56549. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56550. {
  56551. side: {
  56552. height: math.unit(6 + 3/12, "feet"),
  56553. weight: math.unit(225, "lb"),
  56554. name: "Side",
  56555. image: {
  56556. source: "./media/characters/silas/side.svg",
  56557. extra: 703/653,
  56558. bottom: 23/726
  56559. },
  56560. extraAttributes: {
  56561. "pawLength": {
  56562. name: "Paw Length",
  56563. power: 1,
  56564. type: "length",
  56565. base: math.unit(12, "inches")
  56566. },
  56567. "pawWidth": {
  56568. name: "Paw Width",
  56569. power: 1,
  56570. type: "length",
  56571. base: math.unit(4.5, "inches")
  56572. },
  56573. "pawArea": {
  56574. name: "Paw Area",
  56575. power: 2,
  56576. type: "area",
  56577. base: math.unit(12 * 4.5, "inches^2")
  56578. },
  56579. }
  56580. },
  56581. },
  56582. [
  56583. {
  56584. name: "Normal",
  56585. height: math.unit(6 + 3/12, "feet"),
  56586. default: true
  56587. },
  56588. ]
  56589. ))
  56590. characterMakers.push(() => makeCharacter(
  56591. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56592. {
  56593. back: {
  56594. height: math.unit(1.6, "meters"),
  56595. weight: math.unit(150, "lb"),
  56596. name: "Back",
  56597. image: {
  56598. source: "./media/characters/zari/back.svg",
  56599. extra: 424/411,
  56600. bottom: 32/456
  56601. },
  56602. extraAttributes: {
  56603. "bladderCapacity": {
  56604. name: "Bladder Size",
  56605. power: 3,
  56606. type: "volume",
  56607. base: math.unit(500, "mL")
  56608. },
  56609. "bladderFlow": {
  56610. name: "Flow Rate",
  56611. power: 3,
  56612. type: "volume",
  56613. base: math.unit(25, "mL")
  56614. },
  56615. }
  56616. },
  56617. },
  56618. [
  56619. {
  56620. name: "Normal",
  56621. height: math.unit(1.6, "meters"),
  56622. default: true
  56623. },
  56624. ]
  56625. ))
  56626. characterMakers.push(() => makeCharacter(
  56627. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56628. {
  56629. front: {
  56630. height: math.unit(25, "feet"),
  56631. weight: math.unit(5, "tons"),
  56632. name: "Front",
  56633. image: {
  56634. source: "./media/characters/charlie-human/front.svg",
  56635. extra: 1870/1740,
  56636. bottom: 102/1972
  56637. },
  56638. extraAttributes: {
  56639. "dickLength": {
  56640. name: "Dick Length",
  56641. power: 1,
  56642. type: "length",
  56643. base: math.unit(9, "feet")
  56644. },
  56645. }
  56646. },
  56647. back: {
  56648. height: math.unit(25, "feet"),
  56649. weight: math.unit(5, "tons"),
  56650. name: "Back",
  56651. image: {
  56652. source: "./media/characters/charlie-human/back.svg",
  56653. extra: 1858/1733,
  56654. bottom: 105/1963
  56655. },
  56656. extraAttributes: {
  56657. "dickLength": {
  56658. name: "Dick Length",
  56659. power: 1,
  56660. type: "length",
  56661. base: math.unit(9, "feet")
  56662. },
  56663. }
  56664. },
  56665. },
  56666. [
  56667. {
  56668. name: "\"Normal\"",
  56669. height: math.unit(6 + 4/12, "feet")
  56670. },
  56671. {
  56672. name: "Big",
  56673. height: math.unit(25, "feet"),
  56674. default: true
  56675. },
  56676. ]
  56677. ))
  56678. characterMakers.push(() => makeCharacter(
  56679. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56680. {
  56681. front: {
  56682. height: math.unit(6 + 4/12, "feet"),
  56683. weight: math.unit(320, "lb"),
  56684. name: "Front",
  56685. image: {
  56686. source: "./media/characters/ookitsu/front.svg",
  56687. extra: 1160/976,
  56688. bottom: 38/1198
  56689. }
  56690. },
  56691. frontNsfw: {
  56692. height: math.unit(6 + 4/12, "feet"),
  56693. weight: math.unit(320, "lb"),
  56694. name: "Front (NSFW)",
  56695. image: {
  56696. source: "./media/characters/ookitsu/front-nsfw.svg",
  56697. extra: 1160/976,
  56698. bottom: 38/1198
  56699. }
  56700. },
  56701. back: {
  56702. height: math.unit(6 + 4/12, "feet"),
  56703. weight: math.unit(320, "lb"),
  56704. name: "Back",
  56705. image: {
  56706. source: "./media/characters/ookitsu/back.svg",
  56707. extra: 1030/975,
  56708. bottom: 70/1100
  56709. }
  56710. },
  56711. head: {
  56712. height: math.unit(1.79, "feet"),
  56713. name: "Head",
  56714. image: {
  56715. source: "./media/characters/ookitsu/head.svg"
  56716. }
  56717. },
  56718. hand: {
  56719. height: math.unit(0.92, "feet"),
  56720. name: "Hand",
  56721. image: {
  56722. source: "./media/characters/ookitsu/hand.svg"
  56723. }
  56724. },
  56725. tails: {
  56726. height: math.unit(3.3, "feet"),
  56727. name: "Tails",
  56728. image: {
  56729. source: "./media/characters/ookitsu/tails.svg"
  56730. }
  56731. },
  56732. dick: {
  56733. height: math.unit(1.10833, "feet"),
  56734. name: "Dick",
  56735. image: {
  56736. source: "./media/characters/ookitsu/dick.svg"
  56737. }
  56738. },
  56739. },
  56740. [
  56741. {
  56742. name: "Normal",
  56743. height: math.unit(6 + 4/12, "feet"),
  56744. default: true
  56745. },
  56746. {
  56747. name: "Macro",
  56748. height: math.unit(30, "feet")
  56749. },
  56750. ]
  56751. ))
  56752. characterMakers.push(() => makeCharacter(
  56753. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56754. {
  56755. anthroFront: {
  56756. height: math.unit(6, "feet"),
  56757. weight: math.unit(250, "lb"),
  56758. name: "Front",
  56759. image: {
  56760. source: "./media/characters/jhusky/anthro-front.svg",
  56761. extra: 474/439,
  56762. bottom: 7/481
  56763. },
  56764. form: "anthro",
  56765. default: true
  56766. },
  56767. taurSideSfw: {
  56768. height: math.unit(6 + 4/12, "feet"),
  56769. weight: math.unit(500, "lb"),
  56770. name: "Side (SFW)",
  56771. image: {
  56772. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56773. extra: 1741/1629,
  56774. bottom: 196/1937
  56775. },
  56776. form: "taur",
  56777. default: true
  56778. },
  56779. taurSideNsfw: {
  56780. height: math.unit(6 + 4/12, "feet"),
  56781. weight: math.unit(500, "lb"),
  56782. name: "Taur (NSFW)",
  56783. image: {
  56784. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56785. extra: 1741/1629,
  56786. bottom: 196/1937
  56787. },
  56788. form: "taur",
  56789. },
  56790. },
  56791. [
  56792. {
  56793. name: "Huge",
  56794. height: math.unit(500, "feet"),
  56795. form: "anthro"
  56796. },
  56797. {
  56798. name: "Macro",
  56799. height: math.unit(1000, "feet"),
  56800. default: true,
  56801. form: "anthro"
  56802. },
  56803. {
  56804. name: "Megamacro",
  56805. height: math.unit(10000, "feet"),
  56806. form: "anthro"
  56807. },
  56808. {
  56809. name: "Huge",
  56810. height: math.unit(528, "feet"),
  56811. form: "taur"
  56812. },
  56813. {
  56814. name: "Macro",
  56815. height: math.unit(1056, "feet"),
  56816. default: true,
  56817. form: "taur"
  56818. },
  56819. {
  56820. name: "Megamacro",
  56821. height: math.unit(10556, "feet"),
  56822. form: "taur"
  56823. },
  56824. ],
  56825. {
  56826. "anthro": {
  56827. name: "Anthro",
  56828. default: true
  56829. },
  56830. "taur": {
  56831. name: "Taur",
  56832. },
  56833. }
  56834. ))
  56835. characterMakers.push(() => makeCharacter(
  56836. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56837. {
  56838. front: {
  56839. height: math.unit(8, "feet"),
  56840. weight: math.unit(500, "lb"),
  56841. name: "Front",
  56842. image: {
  56843. source: "./media/characters/armail/front.svg",
  56844. extra: 1753/1669,
  56845. bottom: 155/1908
  56846. }
  56847. },
  56848. back: {
  56849. height: math.unit(8, "feet"),
  56850. weight: math.unit(500, "lb"),
  56851. name: "Back",
  56852. image: {
  56853. source: "./media/characters/armail/back.svg",
  56854. extra: 1872/1803,
  56855. bottom: 63/1935
  56856. }
  56857. },
  56858. },
  56859. [
  56860. {
  56861. name: "Micro",
  56862. height: math.unit(0.25, "feet")
  56863. },
  56864. {
  56865. name: "Normal",
  56866. height: math.unit(8, "feet"),
  56867. default: true
  56868. },
  56869. {
  56870. name: "Mini-macro",
  56871. height: math.unit(30, "feet")
  56872. },
  56873. {
  56874. name: "Macro",
  56875. height: math.unit(400, "feet")
  56876. },
  56877. {
  56878. name: "Mega-macro",
  56879. height: math.unit(6000, "feet")
  56880. },
  56881. ]
  56882. ))
  56883. characterMakers.push(() => makeCharacter(
  56884. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56885. {
  56886. front: {
  56887. height: math.unit(6 + 7/12, "feet"),
  56888. weight: math.unit(210, "lb"),
  56889. name: "Front",
  56890. image: {
  56891. source: "./media/characters/wilfred-t-buxton/front.svg",
  56892. extra: 1068/882,
  56893. bottom: 28/1096
  56894. }
  56895. },
  56896. },
  56897. [
  56898. {
  56899. name: "Normal",
  56900. height: math.unit(6 + 7/12, "feet"),
  56901. default: true
  56902. },
  56903. ]
  56904. ))
  56905. characterMakers.push(() => makeCharacter(
  56906. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56907. {
  56908. front: {
  56909. height: math.unit(5 + 2/12, "feet"),
  56910. weight: math.unit(120, "lb"),
  56911. name: "Front",
  56912. image: {
  56913. source: "./media/characters/leighton-marrow/front.svg",
  56914. extra: 441/409,
  56915. bottom: 37/478
  56916. }
  56917. },
  56918. },
  56919. [
  56920. {
  56921. name: "Normal",
  56922. height: math.unit(5 + 2/12, "feet"),
  56923. default: true
  56924. },
  56925. ]
  56926. ))
  56927. characterMakers.push(() => makeCharacter(
  56928. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56929. {
  56930. front: {
  56931. height: math.unit(4, "meters"),
  56932. weight: math.unit(1200, "kg"),
  56933. name: "Front",
  56934. image: {
  56935. source: "./media/characters/licos/front.svg",
  56936. extra: 1727/1604,
  56937. bottom: 101/1828
  56938. },
  56939. form: "anthro",
  56940. default: true
  56941. },
  56942. taur_side: {
  56943. height: math.unit(20, "meters"),
  56944. weight: math.unit(1100000, "kg"),
  56945. name: "Side",
  56946. image: {
  56947. source: "./media/characters/licos/taur.svg",
  56948. extra: 1158/1091,
  56949. bottom: 80/1238
  56950. },
  56951. form: "taur",
  56952. default: true
  56953. },
  56954. },
  56955. [
  56956. {
  56957. name: "Normal",
  56958. height: math.unit(4, "meters"),
  56959. default: true,
  56960. form: "anthro"
  56961. },
  56962. {
  56963. name: "Normal",
  56964. height: math.unit(20, "meters"),
  56965. default: true,
  56966. form: "taur"
  56967. },
  56968. ],
  56969. {
  56970. "anthro": {
  56971. name: "Anthro",
  56972. default: true
  56973. },
  56974. "taur": {
  56975. name: "Taur",
  56976. },
  56977. }
  56978. ))
  56979. characterMakers.push(() => makeCharacter(
  56980. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56981. {
  56982. front: {
  56983. height: math.unit(10 + 3/12, "feet"),
  56984. name: "Front",
  56985. image: {
  56986. source: "./media/characters/theo-monkey/front.svg",
  56987. extra: 1735/1658,
  56988. bottom: 73/1808
  56989. }
  56990. },
  56991. back: {
  56992. height: math.unit(10 + 3/12, "feet"),
  56993. name: "Back",
  56994. image: {
  56995. source: "./media/characters/theo-monkey/back.svg",
  56996. extra: 1742/1664,
  56997. bottom: 33/1775
  56998. }
  56999. },
  57000. head: {
  57001. height: math.unit(2.29, "feet"),
  57002. name: "Head",
  57003. image: {
  57004. source: "./media/characters/theo-monkey/head.svg"
  57005. }
  57006. },
  57007. handPalm: {
  57008. height: math.unit(1.73, "feet"),
  57009. name: "Hand (Palm)",
  57010. image: {
  57011. source: "./media/characters/theo-monkey/hand-palm.svg"
  57012. }
  57013. },
  57014. handBack: {
  57015. height: math.unit(1.63, "feet"),
  57016. name: "Hand (Back)",
  57017. image: {
  57018. source: "./media/characters/theo-monkey/hand-back.svg"
  57019. }
  57020. },
  57021. footSole: {
  57022. height: math.unit(2.15, "feet"),
  57023. name: "Foot (Sole)",
  57024. image: {
  57025. source: "./media/characters/theo-monkey/foot-sole.svg"
  57026. }
  57027. },
  57028. footSide: {
  57029. height: math.unit(1.6, "feet"),
  57030. name: "Foot (Side)",
  57031. image: {
  57032. source: "./media/characters/theo-monkey/foot-side.svg"
  57033. }
  57034. },
  57035. },
  57036. [
  57037. {
  57038. name: "Normal",
  57039. height: math.unit(10 + 3/12, "feet"),
  57040. default: true
  57041. },
  57042. ]
  57043. ))
  57044. characterMakers.push(() => makeCharacter(
  57045. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  57046. {
  57047. front: {
  57048. height: math.unit(11, "feet"),
  57049. weight: math.unit(3000, "lb"),
  57050. preyCapacity: math.unit(10, "people"),
  57051. name: "Front",
  57052. image: {
  57053. source: "./media/characters/brook/front.svg",
  57054. extra: 909/835,
  57055. bottom: 108/1017
  57056. }
  57057. },
  57058. back: {
  57059. height: math.unit(11, "feet"),
  57060. weight: math.unit(3000, "lb"),
  57061. preyCapacity: math.unit(10, "people"),
  57062. name: "Back",
  57063. image: {
  57064. source: "./media/characters/brook/back.svg",
  57065. extra: 976/916,
  57066. bottom: 34/1010
  57067. }
  57068. },
  57069. backAlt: {
  57070. height: math.unit(11, "feet"),
  57071. weight: math.unit(3000, "lb"),
  57072. preyCapacity: math.unit(10, "people"),
  57073. name: "Back (Alt)",
  57074. image: {
  57075. source: "./media/characters/brook/back-alt.svg",
  57076. extra: 1283/1213,
  57077. bottom: 35/1318
  57078. }
  57079. },
  57080. bust: {
  57081. height: math.unit(9.0859030837, "feet"),
  57082. weight: math.unit(3000, "lb"),
  57083. preyCapacity: math.unit(10, "people"),
  57084. name: "Bust",
  57085. image: {
  57086. source: "./media/characters/brook/bust.svg",
  57087. extra: 2043/1923,
  57088. bottom: 0/2043
  57089. }
  57090. },
  57091. },
  57092. [
  57093. {
  57094. name: "Small",
  57095. height: math.unit(11, "feet"),
  57096. default: true
  57097. },
  57098. {
  57099. name: "Towering",
  57100. height: math.unit(5, "km")
  57101. },
  57102. {
  57103. name: "Enormous",
  57104. height: math.unit(25, "earths")
  57105. },
  57106. ]
  57107. ))
  57108. characterMakers.push(() => makeCharacter(
  57109. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  57110. {
  57111. front: {
  57112. height: math.unit(4, "feet"),
  57113. weight: math.unit(150, "lb"),
  57114. name: "Front",
  57115. image: {
  57116. source: "./media/characters/squishi/front.svg",
  57117. extra: 1428/1271,
  57118. bottom: 30/1458
  57119. },
  57120. extraAttributes: {
  57121. "pawSize": {
  57122. name: "Paw Size",
  57123. power: 1,
  57124. type: "length",
  57125. base: math.unit(14, "ShoeSizeMensUS"),
  57126. defaultUnit: "ShoeSizeMensUS"
  57127. },
  57128. }
  57129. },
  57130. side: {
  57131. height: math.unit(4, "feet"),
  57132. weight: math.unit(150, "lb"),
  57133. name: "Side",
  57134. image: {
  57135. source: "./media/characters/squishi/side.svg",
  57136. extra: 1428/1271,
  57137. bottom: 30/1458
  57138. },
  57139. extraAttributes: {
  57140. "pawSize": {
  57141. name: "Paw Size",
  57142. power: 1,
  57143. type: "length",
  57144. base: math.unit(14, "ShoeSizeMensUS"),
  57145. defaultUnit: "ShoeSizeMensUS"
  57146. },
  57147. }
  57148. },
  57149. back: {
  57150. height: math.unit(4, "feet"),
  57151. weight: math.unit(150, "lb"),
  57152. name: "Back",
  57153. image: {
  57154. source: "./media/characters/squishi/back.svg",
  57155. extra: 1428/1271,
  57156. bottom: 30/1458
  57157. },
  57158. extraAttributes: {
  57159. "pawSize": {
  57160. name: "Paw Size",
  57161. power: 1,
  57162. type: "length",
  57163. base: math.unit(14, "ShoeSizeMensUS"),
  57164. defaultUnit: "ShoeSizeMensUS"
  57165. },
  57166. }
  57167. },
  57168. },
  57169. [
  57170. {
  57171. name: "Normal",
  57172. height: math.unit(4, "feet"),
  57173. default: true
  57174. },
  57175. ]
  57176. ))
  57177. characterMakers.push(() => makeCharacter(
  57178. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  57179. {
  57180. front: {
  57181. height: math.unit(7 + 8/12, "feet"),
  57182. weight: math.unit(333, "lb"),
  57183. name: "Front",
  57184. image: {
  57185. source: "./media/characters/vincent-vasroc/front.svg",
  57186. extra: 1962/1860,
  57187. bottom: 41/2003
  57188. }
  57189. },
  57190. back: {
  57191. height: math.unit(7 + 8/12, "feet"),
  57192. weight: math.unit(333, "lb"),
  57193. name: "Back",
  57194. image: {
  57195. source: "./media/characters/vincent-vasroc/back.svg",
  57196. extra: 1952/1815,
  57197. bottom: 33/1985
  57198. }
  57199. },
  57200. paw: {
  57201. height: math.unit(1.24, "feet"),
  57202. name: "Paw",
  57203. image: {
  57204. source: "./media/characters/vincent-vasroc/paw.svg"
  57205. }
  57206. },
  57207. ear: {
  57208. height: math.unit(0.75, "feet"),
  57209. name: "Ear",
  57210. image: {
  57211. source: "./media/characters/vincent-vasroc/ear.svg"
  57212. }
  57213. },
  57214. },
  57215. [
  57216. {
  57217. name: "Nano",
  57218. height: math.unit(92, "micrometers")
  57219. },
  57220. {
  57221. name: "Normal",
  57222. height: math.unit(7 + 8/12, "feet"),
  57223. default: true
  57224. },
  57225. ]
  57226. ))
  57227. characterMakers.push(() => makeCharacter(
  57228. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  57229. {
  57230. frontNsfw: {
  57231. height: math.unit(40, "feet"),
  57232. weight: math.unit(58, "tons"),
  57233. name: "Front (NSFW)",
  57234. image: {
  57235. source: "./media/characters/ru-kahn/front-nsfw.svg",
  57236. extra: 1265/965,
  57237. bottom: 155/1420
  57238. }
  57239. },
  57240. frontSfw: {
  57241. height: math.unit(40, "feet"),
  57242. weight: math.unit(58, "tons"),
  57243. name: "Front (SFW)",
  57244. image: {
  57245. source: "./media/characters/ru-kahn/front-sfw.svg",
  57246. extra: 1265/965,
  57247. bottom: 80/1345
  57248. }
  57249. },
  57250. },
  57251. [
  57252. {
  57253. name: "Small",
  57254. height: math.unit(4, "feet")
  57255. },
  57256. {
  57257. name: "Normal",
  57258. height: math.unit(40, "feet"),
  57259. default: true
  57260. },
  57261. {
  57262. name: "Macro",
  57263. height: math.unit(400, "feet")
  57264. },
  57265. ]
  57266. ))
  57267. characterMakers.push(() => makeCharacter(
  57268. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  57269. {
  57270. frontNude: {
  57271. height: math.unit(6 + 5/12, "feet"),
  57272. name: "Front (Nude)",
  57273. image: {
  57274. source: "./media/characters/sylvie-laforge/front-nude.svg",
  57275. extra: 1369/1366,
  57276. bottom: 68/1437
  57277. }
  57278. },
  57279. frontDressed: {
  57280. height: math.unit(6 + 5/12, "feet"),
  57281. name: "Front (Dressed)",
  57282. image: {
  57283. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  57284. extra: 1369/1366,
  57285. bottom: 68/1437
  57286. }
  57287. },
  57288. },
  57289. [
  57290. {
  57291. name: "Normal",
  57292. height: math.unit(6 + 5/12, "feet"),
  57293. default: true
  57294. },
  57295. {
  57296. name: "Maximum",
  57297. height: math.unit(1930, "feet")
  57298. },
  57299. ]
  57300. ))
  57301. characterMakers.push(() => makeCharacter(
  57302. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  57303. {
  57304. front: {
  57305. height: math.unit(5 + 6/12, "feet"),
  57306. name: "Front",
  57307. image: {
  57308. source: "./media/characters/kaja/front.svg",
  57309. extra: 1874/1514,
  57310. bottom: 117/1991
  57311. }
  57312. },
  57313. },
  57314. [
  57315. {
  57316. name: "Normal",
  57317. height: math.unit(5 + 6/12, "feet"),
  57318. default: true
  57319. },
  57320. ]
  57321. ))
  57322. characterMakers.push(() => makeCharacter(
  57323. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  57324. {
  57325. front: {
  57326. height: math.unit(5 + 9/12, "feet"),
  57327. weight: math.unit(200, "lb"),
  57328. name: "Front",
  57329. image: {
  57330. source: "./media/characters/mark-smith/front.svg",
  57331. extra: 1004/943,
  57332. bottom: 58/1062
  57333. }
  57334. },
  57335. back: {
  57336. height: math.unit(5 + 9/12, "feet"),
  57337. weight: math.unit(200, "lb"),
  57338. name: "Back",
  57339. image: {
  57340. source: "./media/characters/mark-smith/back.svg",
  57341. extra: 1023/953,
  57342. bottom: 24/1047
  57343. }
  57344. },
  57345. head: {
  57346. height: math.unit(1.82, "feet"),
  57347. name: "Head",
  57348. image: {
  57349. source: "./media/characters/mark-smith/head.svg"
  57350. }
  57351. },
  57352. hand: {
  57353. height: math.unit(1.4, "feet"),
  57354. name: "Hand",
  57355. image: {
  57356. source: "./media/characters/mark-smith/hand.svg"
  57357. }
  57358. },
  57359. paw: {
  57360. height: math.unit(1.69, "feet"),
  57361. name: "Paw",
  57362. image: {
  57363. source: "./media/characters/mark-smith/paw.svg"
  57364. }
  57365. },
  57366. },
  57367. [
  57368. {
  57369. name: "Micro",
  57370. height: math.unit(0.25, "inches")
  57371. },
  57372. {
  57373. name: "Normal",
  57374. height: math.unit(5 + 9/12, "feet"),
  57375. default: true
  57376. },
  57377. {
  57378. name: "Macro",
  57379. height: math.unit(500, "feet")
  57380. },
  57381. ]
  57382. ))
  57383. characterMakers.push(() => makeCharacter(
  57384. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  57385. {
  57386. frontNude: {
  57387. height: math.unit(6, "feet"),
  57388. name: "Front (Nude)",
  57389. image: {
  57390. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  57391. extra: 1384/1321,
  57392. bottom: 57/1441
  57393. }
  57394. },
  57395. frontDressed: {
  57396. height: math.unit(6, "feet"),
  57397. name: "Front (Dressed)",
  57398. image: {
  57399. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  57400. extra: 1384/1321,
  57401. bottom: 57/1441
  57402. }
  57403. },
  57404. },
  57405. [
  57406. {
  57407. name: "Normal",
  57408. height: math.unit(6, "feet"),
  57409. default: true
  57410. },
  57411. {
  57412. name: "Maximum",
  57413. height: math.unit(1776, "feet")
  57414. },
  57415. ]
  57416. ))
  57417. characterMakers.push(() => makeCharacter(
  57418. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  57419. {
  57420. front: {
  57421. height: math.unit(2 + 4/12, "feet"),
  57422. weight: math.unit(350, "lb"),
  57423. name: "Front",
  57424. image: {
  57425. source: "./media/characters/devos/front.svg",
  57426. extra: 958/852,
  57427. bottom: 143/1101
  57428. }
  57429. },
  57430. },
  57431. [
  57432. {
  57433. name: "Base",
  57434. height: math.unit(2 + 4/12, "feet"),
  57435. default: true
  57436. },
  57437. ]
  57438. ))
  57439. characterMakers.push(() => makeCharacter(
  57440. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  57441. {
  57442. front: {
  57443. height: math.unit(9 + 2/12, "feet"),
  57444. name: "Front",
  57445. image: {
  57446. source: "./media/characters/hiveheart/front.svg",
  57447. extra: 394/364,
  57448. bottom: 65/459
  57449. }
  57450. },
  57451. back: {
  57452. height: math.unit(9 + 2/12, "feet"),
  57453. name: "Back",
  57454. image: {
  57455. source: "./media/characters/hiveheart/back.svg",
  57456. extra: 374/357,
  57457. bottom: 63/437
  57458. }
  57459. },
  57460. },
  57461. [
  57462. {
  57463. name: "Base",
  57464. height: math.unit(9 + 2/12, "feet"),
  57465. default: true
  57466. },
  57467. ]
  57468. ))
  57469. characterMakers.push(() => makeCharacter(
  57470. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  57471. {
  57472. front: {
  57473. height: math.unit(2.5, "inches"),
  57474. weight: math.unit(0.6, "oz"),
  57475. name: "Front",
  57476. image: {
  57477. source: "./media/characters/bryn/front.svg",
  57478. extra: 1484/1119,
  57479. bottom: 66/1550
  57480. }
  57481. },
  57482. back: {
  57483. height: math.unit(2.5, "inches"),
  57484. weight: math.unit(0.6, "oz"),
  57485. name: "Back",
  57486. image: {
  57487. source: "./media/characters/bryn/back.svg",
  57488. extra: 1472/1170,
  57489. bottom: 32/1504
  57490. }
  57491. },
  57492. wings: {
  57493. height: math.unit(2.5, "inches"),
  57494. weight: math.unit(0.6, "oz"),
  57495. name: "Wings",
  57496. image: {
  57497. source: "./media/characters/bryn/wings.svg",
  57498. extra: 567/448,
  57499. bottom: 10/577
  57500. }
  57501. },
  57502. dressed: {
  57503. height: math.unit(2.5, "inches"),
  57504. weight: math.unit(0.6, "oz"),
  57505. name: "Dressed",
  57506. image: {
  57507. source: "./media/characters/bryn/dressed.svg",
  57508. extra: 719/589,
  57509. bottom: 54/773
  57510. }
  57511. },
  57512. head: {
  57513. height: math.unit(1.75, "inches"),
  57514. name: "Head",
  57515. image: {
  57516. source: "./media/characters/bryn/head.svg"
  57517. }
  57518. },
  57519. foot: {
  57520. height: math.unit(0.4, "inches"),
  57521. name: "Foot",
  57522. image: {
  57523. source: "./media/characters/bryn/foot.svg"
  57524. }
  57525. },
  57526. },
  57527. [
  57528. {
  57529. name: "Normal",
  57530. height: math.unit(2.5, "inches"),
  57531. default: true
  57532. },
  57533. ]
  57534. ))
  57535. characterMakers.push(() => makeCharacter(
  57536. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57537. {
  57538. side: {
  57539. height: math.unit(7, "feet"),
  57540. weight: math.unit(657, "kg"),
  57541. name: "Side",
  57542. image: {
  57543. source: "./media/characters/delta/side.svg",
  57544. extra: 781/212,
  57545. bottom: 7/788
  57546. },
  57547. extraAttributes: {
  57548. "wingspan": {
  57549. name: "Wingspan",
  57550. power: 1,
  57551. type: "length",
  57552. base: math.unit(48, "feet")
  57553. },
  57554. "length": {
  57555. name: "Length",
  57556. power: 1,
  57557. type: "length",
  57558. base: math.unit(21, "feet")
  57559. },
  57560. "pawSize": {
  57561. name: "Paw Size",
  57562. power: 2,
  57563. type: "area",
  57564. base: math.unit(1.5*1.4, "feet^2")
  57565. },
  57566. }
  57567. },
  57568. },
  57569. [
  57570. {
  57571. name: "Normal",
  57572. height: math.unit(6, "feet"),
  57573. default: true
  57574. },
  57575. ]
  57576. ))
  57577. characterMakers.push(() => makeCharacter(
  57578. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57579. {
  57580. front: {
  57581. height: math.unit(6, "feet"),
  57582. name: "Front",
  57583. image: {
  57584. source: "./media/characters/pyrow/front.svg",
  57585. extra: 513/486,
  57586. bottom: 14/527
  57587. }
  57588. },
  57589. frontWing: {
  57590. height: math.unit(6, "feet"),
  57591. name: "Front (Wing)",
  57592. image: {
  57593. source: "./media/characters/pyrow/front-wing.svg",
  57594. extra: 539/383,
  57595. bottom: 20/559
  57596. }
  57597. },
  57598. back: {
  57599. height: math.unit(6, "feet"),
  57600. name: "Back",
  57601. image: {
  57602. source: "./media/characters/pyrow/back.svg",
  57603. extra: 500/473,
  57604. bottom: 9/509
  57605. }
  57606. },
  57607. },
  57608. [
  57609. {
  57610. name: "Normal",
  57611. height: math.unit(6, "feet"),
  57612. default: true
  57613. },
  57614. ]
  57615. ))
  57616. characterMakers.push(() => makeCharacter(
  57617. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57618. {
  57619. front: {
  57620. height: math.unit(5, "meters"),
  57621. weight: math.unit(3, "tonnes"),
  57622. name: "Front",
  57623. image: {
  57624. source: "./media/characters/velikan/front.svg",
  57625. extra: 867/744,
  57626. bottom: 71/938
  57627. },
  57628. extraAttributes: {
  57629. "shoeSize": {
  57630. name: "Shoe Size",
  57631. power: 1,
  57632. type: "length",
  57633. base: math.unit(135, "ShoeSizeUK"),
  57634. defaultUnit: "ShoeSizeUK"
  57635. },
  57636. }
  57637. },
  57638. },
  57639. [
  57640. {
  57641. name: "Normal",
  57642. height: math.unit(5, "meters"),
  57643. default: true
  57644. },
  57645. {
  57646. name: "Macro",
  57647. height: math.unit(1, "km")
  57648. },
  57649. {
  57650. name: "Mega Macro",
  57651. height: math.unit(100, "km")
  57652. },
  57653. {
  57654. name: "Giga Macro",
  57655. height: math.unit(2, "megameters")
  57656. },
  57657. {
  57658. name: "Planetary",
  57659. height: math.unit(22, "megameters")
  57660. },
  57661. {
  57662. name: "Solar",
  57663. height: math.unit(8, "gigameters")
  57664. },
  57665. {
  57666. name: "Cosmic",
  57667. height: math.unit(10, "zettameters")
  57668. },
  57669. {
  57670. name: "Omni",
  57671. height: math.unit(9e260, "multiverses")
  57672. },
  57673. ]
  57674. ))
  57675. characterMakers.push(() => makeCharacter(
  57676. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57677. {
  57678. front: {
  57679. height: math.unit(4 + 3/12, "feet"),
  57680. weight: math.unit(90, "lb"),
  57681. name: "Front",
  57682. image: {
  57683. source: "./media/characters/sabiki/front.svg",
  57684. extra: 1662/1423,
  57685. bottom: 65/1727
  57686. }
  57687. },
  57688. },
  57689. [
  57690. {
  57691. name: "Normal",
  57692. height: math.unit(4 + 3/12, "feet"),
  57693. default: true
  57694. },
  57695. ]
  57696. ))
  57697. characterMakers.push(() => makeCharacter(
  57698. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57699. {
  57700. frontSfw: {
  57701. height: math.unit(2, "mm"),
  57702. name: "Front (SFW)",
  57703. image: {
  57704. source: "./media/characters/carmel/front-sfw.svg",
  57705. extra: 1131/1006,
  57706. bottom: 66/1197
  57707. }
  57708. },
  57709. frontNsfw: {
  57710. height: math.unit(2, "mm"),
  57711. name: "Front (NSFW)",
  57712. image: {
  57713. source: "./media/characters/carmel/front-nsfw.svg",
  57714. extra: 1131/1006,
  57715. bottom: 66/1197
  57716. }
  57717. },
  57718. foot: {
  57719. height: math.unit(0.3, "mm"),
  57720. name: "Foot",
  57721. image: {
  57722. source: "./media/characters/carmel/foot.svg"
  57723. }
  57724. },
  57725. tongue: {
  57726. height: math.unit(0.71, "mm"),
  57727. name: "Tongue",
  57728. image: {
  57729. source: "./media/characters/carmel/tongue.svg"
  57730. }
  57731. },
  57732. dick: {
  57733. height: math.unit(0.085, "mm"),
  57734. name: "Dick",
  57735. image: {
  57736. source: "./media/characters/carmel/dick.svg"
  57737. }
  57738. },
  57739. },
  57740. [
  57741. {
  57742. name: "Micro",
  57743. height: math.unit(2, "mm"),
  57744. default: true
  57745. },
  57746. {
  57747. name: "Normal",
  57748. height: math.unit(4 + 8/12, "feet")
  57749. },
  57750. {
  57751. name: "Mega Macro",
  57752. height: math.unit(250, "feet")
  57753. },
  57754. {
  57755. name: "BIGGER",
  57756. height: math.unit(1000, "feet")
  57757. },
  57758. {
  57759. name: "BIGGEST",
  57760. height: math.unit(2, "miles")
  57761. },
  57762. ]
  57763. ))
  57764. characterMakers.push(() => makeCharacter(
  57765. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57766. {
  57767. front: {
  57768. height: math.unit(6.5, "feet"),
  57769. weight: math.unit(198, "lb"),
  57770. name: "Front",
  57771. image: {
  57772. source: "./media/characters/tamani/anthro.svg",
  57773. extra: 930/890,
  57774. bottom: 34/964
  57775. },
  57776. form: "anthro",
  57777. default: true
  57778. },
  57779. side: {
  57780. height: math.unit(6, "feet"),
  57781. weight: math.unit(198*2, "lb"),
  57782. name: "Side",
  57783. image: {
  57784. source: "./media/characters/tamani/feral.svg",
  57785. extra: 559/519,
  57786. bottom: 43/602
  57787. },
  57788. form: "feral"
  57789. },
  57790. },
  57791. [
  57792. {
  57793. name: "Normal",
  57794. height: math.unit(6.5, "feet"),
  57795. default: true,
  57796. form: "anthro"
  57797. },
  57798. {
  57799. name: "Normal",
  57800. height: math.unit(6, "feet"),
  57801. default: true,
  57802. form: "feral"
  57803. },
  57804. ],
  57805. {
  57806. "anthro": {
  57807. name: "Anthro",
  57808. default: true
  57809. },
  57810. "feral": {
  57811. name: "Feral",
  57812. },
  57813. }
  57814. ))
  57815. characterMakers.push(() => makeCharacter(
  57816. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57817. {
  57818. front: {
  57819. height: math.unit(4 + 1/12, "feet"),
  57820. weight: math.unit(114, "lb"),
  57821. name: "Front",
  57822. image: {
  57823. source: "./media/characters/dex/front.svg",
  57824. extra: 787/680,
  57825. bottom: 18/805
  57826. }
  57827. },
  57828. side: {
  57829. height: math.unit(4 + 1/12, "feet"),
  57830. weight: math.unit(114, "lb"),
  57831. name: "Side",
  57832. image: {
  57833. source: "./media/characters/dex/side.svg",
  57834. extra: 785/680,
  57835. bottom: 12/797
  57836. }
  57837. },
  57838. back: {
  57839. height: math.unit(4 + 1/12, "feet"),
  57840. weight: math.unit(114, "lb"),
  57841. name: "Back",
  57842. image: {
  57843. source: "./media/characters/dex/back.svg",
  57844. extra: 785/681,
  57845. bottom: 17/802
  57846. }
  57847. },
  57848. loungewear: {
  57849. height: math.unit(4 + 1/12, "feet"),
  57850. weight: math.unit(114, "lb"),
  57851. name: "Loungewear",
  57852. image: {
  57853. source: "./media/characters/dex/loungewear.svg",
  57854. extra: 787/680,
  57855. bottom: 18/805
  57856. }
  57857. },
  57858. workout: {
  57859. height: math.unit(4 + 1/12, "feet"),
  57860. weight: math.unit(114, "lb"),
  57861. name: "Workout",
  57862. image: {
  57863. source: "./media/characters/dex/workout.svg",
  57864. extra: 787/680,
  57865. bottom: 18/805
  57866. }
  57867. },
  57868. schoolUniform: {
  57869. height: math.unit(4 + 1/12, "feet"),
  57870. weight: math.unit(114, "lb"),
  57871. name: "School Uniform",
  57872. image: {
  57873. source: "./media/characters/dex/school-uniform.svg",
  57874. extra: 787/680,
  57875. bottom: 18/805
  57876. }
  57877. },
  57878. maw: {
  57879. height: math.unit(0.55, "feet"),
  57880. name: "Maw",
  57881. image: {
  57882. source: "./media/characters/dex/maw.svg"
  57883. }
  57884. },
  57885. paw: {
  57886. height: math.unit(0.87, "feet"),
  57887. name: "Paw",
  57888. image: {
  57889. source: "./media/characters/dex/paw.svg"
  57890. }
  57891. },
  57892. bust: {
  57893. height: math.unit(1.67, "feet"),
  57894. name: "Bust",
  57895. image: {
  57896. source: "./media/characters/dex/bust.svg"
  57897. }
  57898. },
  57899. },
  57900. [
  57901. {
  57902. name: "Normal",
  57903. height: math.unit(4 + 1/12, "feet"),
  57904. default: true
  57905. },
  57906. ]
  57907. ))
  57908. characterMakers.push(() => makeCharacter(
  57909. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57910. {
  57911. front: {
  57912. height: math.unit(4 + 3/12, "feet"),
  57913. weight: math.unit(60, "lb"),
  57914. name: "Front",
  57915. image: {
  57916. source: "./media/characters/silke/front.svg",
  57917. extra: 1334/1122,
  57918. bottom: 21/1355
  57919. }
  57920. },
  57921. back: {
  57922. height: math.unit(4 + 3/12, "feet"),
  57923. weight: math.unit(60, "lb"),
  57924. name: "Back",
  57925. image: {
  57926. source: "./media/characters/silke/back.svg",
  57927. extra: 1328/1092,
  57928. bottom: 16/1344
  57929. }
  57930. },
  57931. dressed: {
  57932. height: math.unit(4 + 3/12, "feet"),
  57933. weight: math.unit(60, "lb"),
  57934. name: "Dressed",
  57935. image: {
  57936. source: "./media/characters/silke/dressed.svg",
  57937. extra: 1334/1122,
  57938. bottom: 43/1377
  57939. }
  57940. },
  57941. },
  57942. [
  57943. {
  57944. name: "Normal",
  57945. height: math.unit(4 + 3/12, "feet"),
  57946. default: true
  57947. },
  57948. ]
  57949. ))
  57950. characterMakers.push(() => makeCharacter(
  57951. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57952. {
  57953. front: {
  57954. height: math.unit(1.58, "meters"),
  57955. weight: math.unit(47, "kg"),
  57956. name: "Front",
  57957. image: {
  57958. source: "./media/characters/wireshark/front.svg",
  57959. extra: 883/838,
  57960. bottom: 66/949
  57961. }
  57962. },
  57963. },
  57964. [
  57965. {
  57966. name: "Normal",
  57967. height: math.unit(1.58, "meters"),
  57968. default: true
  57969. },
  57970. ]
  57971. ))
  57972. characterMakers.push(() => makeCharacter(
  57973. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57974. {
  57975. front: {
  57976. height: math.unit(6, "meters"),
  57977. weight: math.unit(15000, "kg"),
  57978. name: "Front",
  57979. image: {
  57980. source: "./media/characters/gallagher/front.svg",
  57981. extra: 532/493,
  57982. bottom: 0/532
  57983. }
  57984. },
  57985. },
  57986. [
  57987. {
  57988. name: "Normal",
  57989. height: math.unit(6, "meters"),
  57990. default: true
  57991. },
  57992. ]
  57993. ))
  57994. characterMakers.push(() => makeCharacter(
  57995. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57996. {
  57997. front: {
  57998. height: math.unit(2.4, "meters"),
  57999. weight: math.unit(270, "kg"),
  58000. name: "Front",
  58001. image: {
  58002. source: "./media/characters/alice/front.svg",
  58003. extra: 950/900,
  58004. bottom: 36/986
  58005. }
  58006. },
  58007. side: {
  58008. height: math.unit(2.4, "meters"),
  58009. weight: math.unit(270, "kg"),
  58010. name: "Side",
  58011. image: {
  58012. source: "./media/characters/alice/side.svg",
  58013. extra: 921/876,
  58014. bottom: 19/940
  58015. }
  58016. },
  58017. dressed: {
  58018. height: math.unit(2.4, "meters"),
  58019. weight: math.unit(270, "kg"),
  58020. name: "Dressed",
  58021. image: {
  58022. source: "./media/characters/alice/dressed.svg",
  58023. extra: 905/850,
  58024. bottom: 81/986
  58025. }
  58026. },
  58027. fishnet: {
  58028. height: math.unit(2.4, "meters"),
  58029. weight: math.unit(270, "kg"),
  58030. name: "Fishnet",
  58031. image: {
  58032. source: "./media/characters/alice/fishnet.svg",
  58033. extra: 905/850,
  58034. bottom: 81/986
  58035. }
  58036. },
  58037. },
  58038. [
  58039. {
  58040. name: "Normal",
  58041. height: math.unit(2.4, "meters"),
  58042. default: true
  58043. },
  58044. ]
  58045. ))
  58046. characterMakers.push(() => makeCharacter(
  58047. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  58048. {
  58049. front: {
  58050. height: math.unit(175.25, "feet"),
  58051. name: "Front",
  58052. image: {
  58053. source: "./media/characters/fio/front.svg",
  58054. extra: 1883/1591,
  58055. bottom: 34/1917
  58056. }
  58057. },
  58058. },
  58059. [
  58060. {
  58061. name: "Normal",
  58062. height: math.unit(175.25, "cm"),
  58063. default: true
  58064. },
  58065. ]
  58066. ))
  58067. characterMakers.push(() => makeCharacter(
  58068. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  58069. {
  58070. side: {
  58071. height: math.unit(6, "meters"),
  58072. weight: math.unit(3400, "kg"),
  58073. preyCapacity: math.unit(1700, "liters"),
  58074. name: "Side",
  58075. image: {
  58076. source: "./media/characters/hass/side.svg",
  58077. extra: 1058/997,
  58078. bottom: 177/1235
  58079. }
  58080. },
  58081. feeding: {
  58082. height: math.unit(6*0.63, "meters"),
  58083. weight: math.unit(3400, "kg"),
  58084. preyCapacity: math.unit(1700, "liters"),
  58085. name: "Feeding",
  58086. image: {
  58087. source: "./media/characters/hass/feeding.svg",
  58088. extra: 689/579,
  58089. bottom: 146/835
  58090. }
  58091. },
  58092. guts: {
  58093. height: math.unit(6, "meters"),
  58094. weight: math.unit(3400, "kg"),
  58095. name: "Guts",
  58096. image: {
  58097. source: "./media/characters/hass/guts.svg",
  58098. extra: 1223/1198,
  58099. bottom: 182/1405
  58100. }
  58101. },
  58102. dickFront: {
  58103. height: math.unit(1.4, "meters"),
  58104. name: "Dick (Front)",
  58105. image: {
  58106. source: "./media/characters/hass/dick-front.svg"
  58107. }
  58108. },
  58109. dickSide: {
  58110. height: math.unit(1.3, "meters"),
  58111. name: "Dick (Side)",
  58112. image: {
  58113. source: "./media/characters/hass/dick-side.svg"
  58114. }
  58115. },
  58116. dickBack: {
  58117. height: math.unit(1.4, "meters"),
  58118. name: "Dick (Back)",
  58119. image: {
  58120. source: "./media/characters/hass/dick-back.svg"
  58121. }
  58122. },
  58123. },
  58124. [
  58125. {
  58126. name: "Normal",
  58127. height: math.unit(6, "meters"),
  58128. default: true
  58129. },
  58130. ]
  58131. ))
  58132. characterMakers.push(() => makeCharacter(
  58133. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  58134. {
  58135. front: {
  58136. height: math.unit(4, "feet"),
  58137. weight: math.unit(60, "lb"),
  58138. name: "Front",
  58139. image: {
  58140. source: "./media/characters/hickory-finnegan/front.svg",
  58141. extra: 444/411,
  58142. bottom: 10/454
  58143. }
  58144. },
  58145. side: {
  58146. height: math.unit(4, "feet"),
  58147. weight: math.unit(60, "lb"),
  58148. name: "Side",
  58149. image: {
  58150. source: "./media/characters/hickory-finnegan/side.svg",
  58151. extra: 444/411,
  58152. bottom: 10/454
  58153. }
  58154. },
  58155. back: {
  58156. height: math.unit(4, "feet"),
  58157. weight: math.unit(60, "lb"),
  58158. name: "Back",
  58159. image: {
  58160. source: "./media/characters/hickory-finnegan/back.svg",
  58161. extra: 444/411,
  58162. bottom: 10/454
  58163. }
  58164. },
  58165. },
  58166. [
  58167. {
  58168. name: "Normal",
  58169. height: math.unit(4, "feet"),
  58170. default: true
  58171. },
  58172. ]
  58173. ))
  58174. characterMakers.push(() => makeCharacter(
  58175. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  58176. {
  58177. snivy_front: {
  58178. height: math.unit(2, "feet"),
  58179. weight: math.unit(17.9, "lb"),
  58180. name: "Front",
  58181. image: {
  58182. source: "./media/characters/robin-phox/snivy-front.svg",
  58183. extra: 569/504,
  58184. bottom: 33/602
  58185. },
  58186. form: "snivy",
  58187. default: true
  58188. },
  58189. snivy_frontNsfw: {
  58190. height: math.unit(2, "feet"),
  58191. weight: math.unit(17.9, "lb"),
  58192. name: "Front (NSFW)",
  58193. image: {
  58194. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  58195. extra: 569/504,
  58196. bottom: 33/602
  58197. },
  58198. form: "snivy",
  58199. },
  58200. snivy_back: {
  58201. height: math.unit(2, "feet"),
  58202. weight: math.unit(17.9, "lb"),
  58203. name: "Back",
  58204. image: {
  58205. source: "./media/characters/robin-phox/snivy-back.svg",
  58206. extra: 577/508,
  58207. bottom: 21/598
  58208. },
  58209. form: "snivy",
  58210. },
  58211. snivy_foot: {
  58212. height: math.unit(0.68, "feet"),
  58213. name: "Foot",
  58214. image: {
  58215. source: "./media/characters/robin-phox/snivy-foot.svg"
  58216. },
  58217. form: "snivy",
  58218. },
  58219. snivy_sole: {
  58220. height: math.unit(0.68, "feet"),
  58221. name: "Sole",
  58222. image: {
  58223. source: "./media/characters/robin-phox/snivy-sole.svg"
  58224. },
  58225. form: "snivy",
  58226. },
  58227. yoshi_front: {
  58228. height: math.unit(6, "feet"),
  58229. weight: math.unit(150, "lb"),
  58230. name: "Front",
  58231. image: {
  58232. source: "./media/characters/robin-phox/yoshi-front.svg",
  58233. extra: 890/792,
  58234. bottom: 29/919
  58235. },
  58236. form: "yoshi",
  58237. default: true
  58238. },
  58239. yoshi_frontNsfw: {
  58240. height: math.unit(6, "feet"),
  58241. weight: math.unit(150, "lb"),
  58242. name: "Front (NSFW)",
  58243. image: {
  58244. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  58245. extra: 890/792,
  58246. bottom: 29/919
  58247. },
  58248. form: "yoshi",
  58249. },
  58250. yoshi_back: {
  58251. height: math.unit(6, "feet"),
  58252. weight: math.unit(150, "lb"),
  58253. name: "Back",
  58254. image: {
  58255. source: "./media/characters/robin-phox/yoshi-back.svg",
  58256. extra: 890/792,
  58257. bottom: 29/919
  58258. },
  58259. form: "yoshi",
  58260. },
  58261. yoshi_foot: {
  58262. height: math.unit(1.5, "feet"),
  58263. name: "Foot",
  58264. image: {
  58265. source: "./media/characters/robin-phox/yoshi-foot.svg"
  58266. },
  58267. form: "yoshi",
  58268. },
  58269. delphox_front: {
  58270. height: math.unit(4 + 11/12, "feet"),
  58271. weight: math.unit(86, "lb"),
  58272. name: "Front",
  58273. image: {
  58274. source: "./media/characters/robin-phox/delphox-front.svg",
  58275. extra: 1266/1069,
  58276. bottom: 32/1298
  58277. },
  58278. form: "delphox",
  58279. default: true
  58280. },
  58281. delphox_frontNsfw: {
  58282. height: math.unit(4 + 11/12, "feet"),
  58283. weight: math.unit(86, "lb"),
  58284. name: "Front (NSFW)",
  58285. image: {
  58286. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  58287. extra: 1266/1069,
  58288. bottom: 32/1298
  58289. },
  58290. form: "delphox",
  58291. },
  58292. delphox_back: {
  58293. height: math.unit(4 + 11/12, "feet"),
  58294. weight: math.unit(86, "lb"),
  58295. name: "Back",
  58296. image: {
  58297. source: "./media/characters/robin-phox/delphox-back.svg",
  58298. extra: 1269/1083,
  58299. bottom: 15/1284
  58300. },
  58301. form: "delphox",
  58302. },
  58303. mienshao_front: {
  58304. height: math.unit(4 + 7/12, "feet"),
  58305. weight: math.unit(78.3, "lb"),
  58306. name: "Front",
  58307. image: {
  58308. source: "./media/characters/robin-phox/mienshao-front.svg",
  58309. extra: 1052/970,
  58310. bottom: 108/1160
  58311. },
  58312. form: "mienshao",
  58313. default: true
  58314. },
  58315. mienshao_frontNsfw: {
  58316. height: math.unit(4 + 7/12, "feet"),
  58317. weight: math.unit(78.3, "lb"),
  58318. name: "Front (NSFW)",
  58319. image: {
  58320. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  58321. extra: 1052/970,
  58322. bottom: 108/1160
  58323. },
  58324. form: "mienshao",
  58325. },
  58326. mienshao_back: {
  58327. height: math.unit(4 + 7/12, "feet"),
  58328. weight: math.unit(78.3, "lb"),
  58329. name: "Back",
  58330. image: {
  58331. source: "./media/characters/robin-phox/mienshao-back.svg",
  58332. extra: 1102/982,
  58333. bottom: 32/1134
  58334. },
  58335. form: "mienshao",
  58336. },
  58337. inteleon_front: {
  58338. height: math.unit(6 + 3/12, "feet"),
  58339. weight: math.unit(99.6, "lb"),
  58340. name: "Front",
  58341. image: {
  58342. source: "./media/characters/robin-phox/inteleon-front.svg",
  58343. extra: 910/799,
  58344. bottom: 76/986
  58345. },
  58346. form: "inteleon",
  58347. default: true
  58348. },
  58349. inteleon_frontNsfw: {
  58350. height: math.unit(6 + 3/12, "feet"),
  58351. weight: math.unit(99.6, "lb"),
  58352. name: "Front (NSFW)",
  58353. image: {
  58354. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  58355. extra: 910/799,
  58356. bottom: 76/986
  58357. },
  58358. form: "inteleon",
  58359. },
  58360. inteleon_back: {
  58361. height: math.unit(6 + 3/12, "feet"),
  58362. weight: math.unit(99.6, "lb"),
  58363. name: "Back",
  58364. image: {
  58365. source: "./media/characters/robin-phox/inteleon-back.svg",
  58366. extra: 907/796,
  58367. bottom: 25/932
  58368. },
  58369. form: "inteleon",
  58370. },
  58371. reshiram_front: {
  58372. height: math.unit(10 + 6/12, "feet"),
  58373. weight: math.unit(727.5, "lb"),
  58374. name: "Front",
  58375. image: {
  58376. source: "./media/characters/robin-phox/reshiram-front.svg",
  58377. extra: 1198/940,
  58378. bottom: 123/1321
  58379. },
  58380. form: "reshiram",
  58381. },
  58382. reshiram_frontNsfw: {
  58383. height: math.unit(10 + 6/12, "feet"),
  58384. weight: math.unit(727.5, "lb"),
  58385. name: "Front (NSFW)",
  58386. image: {
  58387. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  58388. extra: 1198/940,
  58389. bottom: 123/1321
  58390. },
  58391. form: "reshiram",
  58392. },
  58393. reshiram_back: {
  58394. height: math.unit(10 + 6/12, "feet"),
  58395. weight: math.unit(727.5, "lb"),
  58396. name: "Back",
  58397. image: {
  58398. source: "./media/characters/robin-phox/reshiram-back.svg",
  58399. extra: 1024/904,
  58400. bottom: 85/1109
  58401. },
  58402. form: "reshiram",
  58403. },
  58404. samurott_front: {
  58405. height: math.unit(8, "feet"),
  58406. weight: math.unit(208.6, "lb"),
  58407. name: "Front",
  58408. image: {
  58409. source: "./media/characters/robin-phox/samurott-front.svg",
  58410. extra: 1048/984,
  58411. bottom: 100/1148
  58412. },
  58413. form: "samurott",
  58414. },
  58415. samurott_frontNsfw: {
  58416. height: math.unit(8, "feet"),
  58417. weight: math.unit(208.6, "lb"),
  58418. name: "Front NSFW",
  58419. image: {
  58420. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  58421. extra: 1048/984,
  58422. bottom: 100/1148
  58423. },
  58424. form: "samurott",
  58425. },
  58426. samurott_back: {
  58427. height: math.unit(8, "feet"),
  58428. weight: math.unit(208.6, "lb"),
  58429. name: "Back",
  58430. image: {
  58431. source: "./media/characters/robin-phox/samurott-back.svg",
  58432. extra: 1110/1042,
  58433. bottom: 12/1122
  58434. },
  58435. form: "samurott",
  58436. },
  58437. samurott_feral: {
  58438. height: math.unit(4 + 11/12, "feet"),
  58439. weight: math.unit(208.6, "lb"),
  58440. name: "Feral",
  58441. image: {
  58442. source: "./media/characters/robin-phox/samurott-feral.svg",
  58443. extra: 766/681,
  58444. bottom: 108/874
  58445. },
  58446. form: "samurott",
  58447. },
  58448. },
  58449. [
  58450. {
  58451. name: "Normal",
  58452. height: math.unit(2, "feet"),
  58453. default: true,
  58454. form: "snivy"
  58455. },
  58456. {
  58457. name: "Normal",
  58458. height: math.unit(6, "feet"),
  58459. default: true,
  58460. form: "yoshi"
  58461. },
  58462. {
  58463. name: "Normal",
  58464. height: math.unit(4 + 11/12, "feet"),
  58465. default: true,
  58466. form: "delphox"
  58467. },
  58468. {
  58469. name: "Normal",
  58470. height: math.unit(4 + 7/12, "feet"),
  58471. default: true,
  58472. form: "mienshao"
  58473. },
  58474. {
  58475. name: "Normal",
  58476. height: math.unit(6 + 3/12, "feet"),
  58477. default: true,
  58478. form: "inteleon"
  58479. },
  58480. {
  58481. name: "Normal",
  58482. height: math.unit(10 + 6/12, "feet"),
  58483. default: true,
  58484. form: "reshiram"
  58485. },
  58486. {
  58487. name: "Normal",
  58488. height: math.unit(8, "feet"),
  58489. default: true,
  58490. form: "samurott"
  58491. },
  58492. {
  58493. name: "Macro",
  58494. height: math.unit(500, "feet"),
  58495. allForms: true
  58496. },
  58497. {
  58498. name: "Mega Macro",
  58499. height: math.unit(10, "earths"),
  58500. allForms: true
  58501. },
  58502. {
  58503. name: "Giga Macro",
  58504. height: math.unit(1, "galaxy"),
  58505. allForms: true
  58506. },
  58507. {
  58508. name: "Godly Macro",
  58509. height: math.unit(1e10, "multiverses"),
  58510. allForms: true
  58511. },
  58512. ],
  58513. {
  58514. "snivy": {
  58515. name: "Snivy",
  58516. default: true
  58517. },
  58518. "yoshi": {
  58519. name: "Yoshi",
  58520. },
  58521. "delphox": {
  58522. name: "Delphox",
  58523. },
  58524. "mienshao": {
  58525. name: "Mienshao",
  58526. },
  58527. "inteleon": {
  58528. name: "Inteleon",
  58529. },
  58530. "reshiram": {
  58531. name: "Reshiram",
  58532. },
  58533. "samurott": {
  58534. name: "Samurott",
  58535. },
  58536. }
  58537. ))
  58538. characterMakers.push(() => makeCharacter(
  58539. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58540. {
  58541. front: {
  58542. height: math.unit(4, "feet"),
  58543. name: "Front",
  58544. image: {
  58545. source: "./media/characters/ash-leung/front.svg",
  58546. extra: 1916/1792,
  58547. bottom: 50/1966
  58548. }
  58549. },
  58550. },
  58551. [
  58552. {
  58553. name: "Atomic",
  58554. height: math.unit(1, "angstrom")
  58555. },
  58556. {
  58557. name: "Microscopic",
  58558. height: math.unit(4000, "angstroms")
  58559. },
  58560. {
  58561. name: "Speck",
  58562. height: math.unit(1, "mm")
  58563. },
  58564. {
  58565. name: "Small",
  58566. height: math.unit(1, "inch")
  58567. },
  58568. {
  58569. name: "Normal",
  58570. height: math.unit(4, "feet"),
  58571. default: true
  58572. },
  58573. ]
  58574. ))
  58575. characterMakers.push(() => makeCharacter(
  58576. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58577. {
  58578. frontDressed: {
  58579. height: math.unit(2.08, "meters"),
  58580. weight: math.unit(175, "lb"),
  58581. name: "Front (Dressed)",
  58582. image: {
  58583. source: "./media/characters/carie/front-dressed.svg",
  58584. extra: 456/417,
  58585. bottom: 7/463
  58586. }
  58587. },
  58588. backDressed: {
  58589. height: math.unit(2.08, "meters"),
  58590. weight: math.unit(175, "lb"),
  58591. name: "Back (Dressed)",
  58592. image: {
  58593. source: "./media/characters/carie/back-dressed.svg",
  58594. extra: 455/414,
  58595. bottom: 11/466
  58596. }
  58597. },
  58598. front: {
  58599. height: math.unit(2, "meters"),
  58600. weight: math.unit(175, "lb"),
  58601. name: "Front",
  58602. image: {
  58603. source: "./media/characters/carie/front.svg",
  58604. extra: 438/399,
  58605. bottom: 12/450
  58606. }
  58607. },
  58608. back: {
  58609. height: math.unit(2, "meters"),
  58610. weight: math.unit(175, "lb"),
  58611. name: "Back",
  58612. image: {
  58613. source: "./media/characters/carie/back.svg",
  58614. extra: 438/397,
  58615. bottom: 7/445
  58616. }
  58617. },
  58618. },
  58619. [
  58620. {
  58621. name: "Normal",
  58622. height: math.unit(2.08, "meters"),
  58623. default: true
  58624. },
  58625. {
  58626. name: "Macro",
  58627. height: math.unit(2.08e3, "meters")
  58628. },
  58629. {
  58630. name: "Mega Macro",
  58631. height: math.unit(2.08e6, "meters")
  58632. },
  58633. {
  58634. name: "Giga Macro",
  58635. height: math.unit(2.08e9, "meters")
  58636. },
  58637. {
  58638. name: "Tera Macro",
  58639. height: math.unit(2.08e12, "meters")
  58640. },
  58641. {
  58642. name: "Peta Macro",
  58643. height: math.unit(2.08e15, "meters")
  58644. },
  58645. {
  58646. name: "Exa Macro",
  58647. height: math.unit(2.08e18, "meters")
  58648. },
  58649. {
  58650. name: "Zetta Macro",
  58651. height: math.unit(2.08e21, "meters")
  58652. },
  58653. {
  58654. name: "Yotta Macro",
  58655. height: math.unit(2.08e24, "meters")
  58656. },
  58657. ]
  58658. ))
  58659. characterMakers.push(() => makeCharacter(
  58660. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58661. {
  58662. front: {
  58663. height: math.unit(5 + 2/12, "feet"),
  58664. weight: math.unit(120, "lb"),
  58665. name: "Front",
  58666. image: {
  58667. source: "./media/characters/sai-bree/front.svg",
  58668. extra: 1843/1702,
  58669. bottom: 91/1934
  58670. }
  58671. },
  58672. back: {
  58673. height: math.unit(5 + 2/12, "feet"),
  58674. weight: math.unit(120, "lb"),
  58675. name: "Back",
  58676. image: {
  58677. source: "./media/characters/sai-bree/back.svg",
  58678. extra: 1809/1637,
  58679. bottom: 56/1865
  58680. }
  58681. },
  58682. },
  58683. [
  58684. {
  58685. name: "Normal",
  58686. height: math.unit(5 + 2/12, "feet"),
  58687. default: true
  58688. },
  58689. {
  58690. name: "Macro",
  58691. height: math.unit(500, "feet")
  58692. },
  58693. ]
  58694. ))
  58695. characterMakers.push(() => makeCharacter(
  58696. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58697. {
  58698. side: {
  58699. height: math.unit(0.77, "meters"),
  58700. weight: math.unit(120, "lb"),
  58701. name: "Side",
  58702. image: {
  58703. source: "./media/characters/davwyn/side.svg",
  58704. extra: 1557/1225,
  58705. bottom: 131/1688
  58706. }
  58707. },
  58708. front: {
  58709. height: math.unit(0.835410, "meters"),
  58710. weight: math.unit(120, "lb"),
  58711. name: "Front",
  58712. image: {
  58713. source: "./media/characters/davwyn/front.svg",
  58714. extra: 870/843,
  58715. bottom: 175/1045
  58716. }
  58717. },
  58718. },
  58719. [
  58720. {
  58721. name: "Minidrake",
  58722. height: math.unit(0.77/4, "meters")
  58723. },
  58724. {
  58725. name: "Normal",
  58726. height: math.unit(0.77, "meters"),
  58727. default: true
  58728. },
  58729. ]
  58730. ))
  58731. characterMakers.push(() => makeCharacter(
  58732. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58733. {
  58734. front: {
  58735. height: math.unit(10 + 3/12, "feet"),
  58736. weight: math.unit(2857, "lb"),
  58737. name: "Front",
  58738. image: {
  58739. source: "./media/characters/balans/front.svg",
  58740. extra: 427/402,
  58741. bottom: 26/453
  58742. }
  58743. },
  58744. side: {
  58745. height: math.unit(10 + 3/12, "feet"),
  58746. weight: math.unit(2857, "lb"),
  58747. name: "Side",
  58748. image: {
  58749. source: "./media/characters/balans/side.svg",
  58750. extra: 397/371,
  58751. bottom: 17/414
  58752. }
  58753. },
  58754. back: {
  58755. height: math.unit(10 + 3/12, "feet"),
  58756. weight: math.unit(2857, "lb"),
  58757. name: "Back",
  58758. image: {
  58759. source: "./media/characters/balans/back.svg",
  58760. extra: 408/381,
  58761. bottom: 14/422
  58762. }
  58763. },
  58764. hand: {
  58765. height: math.unit(1.15, "feet"),
  58766. name: "Hand",
  58767. image: {
  58768. source: "./media/characters/balans/hand.svg"
  58769. }
  58770. },
  58771. footRest: {
  58772. height: math.unit(3.1, "feet"),
  58773. name: "Foot (Rest)",
  58774. image: {
  58775. source: "./media/characters/balans/foot-rest.svg"
  58776. }
  58777. },
  58778. footActive: {
  58779. height: math.unit(3.5, "feet"),
  58780. name: "Foot (Active)",
  58781. image: {
  58782. source: "./media/characters/balans/foot-active.svg"
  58783. }
  58784. },
  58785. },
  58786. [
  58787. {
  58788. name: "Normal",
  58789. height: math.unit(10 + 3/12, "feet"),
  58790. default: true
  58791. },
  58792. ]
  58793. ))
  58794. characterMakers.push(() => makeCharacter(
  58795. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58796. {
  58797. side: {
  58798. height: math.unit(9, "meters"),
  58799. weight: math.unit(114, "tonnes"),
  58800. name: "Side",
  58801. image: {
  58802. source: "./media/characters/eldkveikir/side.svg",
  58803. extra: 1927/338,
  58804. bottom: 42/1969
  58805. }
  58806. },
  58807. sitting: {
  58808. height: math.unit(13.4, "meters"),
  58809. weight: math.unit(114, "tonnes"),
  58810. name: "Sitting",
  58811. image: {
  58812. source: "./media/characters/eldkveikir/sitting.svg",
  58813. extra: 1108/963,
  58814. bottom: 610/1718
  58815. }
  58816. },
  58817. maw: {
  58818. height: math.unit(8.36, "meters"),
  58819. name: "Maw",
  58820. image: {
  58821. source: "./media/characters/eldkveikir/maw.svg"
  58822. }
  58823. },
  58824. hand: {
  58825. height: math.unit(4.84, "meters"),
  58826. name: "Hand",
  58827. image: {
  58828. source: "./media/characters/eldkveikir/hand.svg"
  58829. }
  58830. },
  58831. foot: {
  58832. height: math.unit(6.9, "meters"),
  58833. name: "Foot",
  58834. image: {
  58835. source: "./media/characters/eldkveikir/foot.svg"
  58836. }
  58837. },
  58838. genitals: {
  58839. height: math.unit(9.6, "meters"),
  58840. name: "Genitals",
  58841. image: {
  58842. source: "./media/characters/eldkveikir/genitals.svg"
  58843. }
  58844. },
  58845. },
  58846. [
  58847. {
  58848. name: "Normal",
  58849. height: math.unit(9, "meters"),
  58850. default: true
  58851. },
  58852. ]
  58853. ))
  58854. characterMakers.push(() => makeCharacter(
  58855. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58856. {
  58857. front: {
  58858. height: math.unit(14, "feet"),
  58859. weight: math.unit(4100, "lb"),
  58860. name: "Front",
  58861. image: {
  58862. source: "./media/characters/arrow/front.svg",
  58863. extra: 330/318,
  58864. bottom: 56/386
  58865. }
  58866. },
  58867. },
  58868. [
  58869. {
  58870. name: "Normal",
  58871. height: math.unit(14, "feet"),
  58872. default: true
  58873. },
  58874. {
  58875. name: "Minimacro",
  58876. height: math.unit(63, "feet")
  58877. },
  58878. {
  58879. name: "Macro",
  58880. height: math.unit(630, "feet")
  58881. },
  58882. {
  58883. name: "Megamacro",
  58884. height: math.unit(12600, "feet")
  58885. },
  58886. {
  58887. name: "Gigamacro",
  58888. height: math.unit(18000, "miles")
  58889. },
  58890. ]
  58891. ))
  58892. characterMakers.push(() => makeCharacter(
  58893. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58894. {
  58895. front: {
  58896. height: math.unit(10, "feet"),
  58897. weight: math.unit(2.4, "tons"),
  58898. name: "Front",
  58899. image: {
  58900. source: "./media/characters/3yk-k0-unit/front.svg",
  58901. extra: 573/561,
  58902. bottom: 33/606
  58903. }
  58904. },
  58905. back: {
  58906. height: math.unit(10, "feet"),
  58907. weight: math.unit(2.4, "tons"),
  58908. name: "Back",
  58909. image: {
  58910. source: "./media/characters/3yk-k0-unit/back.svg",
  58911. extra: 614/573,
  58912. bottom: 32/646
  58913. }
  58914. },
  58915. maw: {
  58916. height: math.unit(2.15, "feet"),
  58917. name: "Maw",
  58918. image: {
  58919. source: "./media/characters/3yk-k0-unit/maw.svg"
  58920. }
  58921. },
  58922. },
  58923. [
  58924. {
  58925. name: "Normal",
  58926. height: math.unit(10, "feet"),
  58927. default: true
  58928. },
  58929. ]
  58930. ))
  58931. characterMakers.push(() => makeCharacter(
  58932. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58933. {
  58934. front: {
  58935. height: math.unit(8 + 8/12, "feet"),
  58936. name: "Front",
  58937. image: {
  58938. source: "./media/characters/nemo/front.svg",
  58939. extra: 1308/1217,
  58940. bottom: 57/1365
  58941. }
  58942. },
  58943. },
  58944. [
  58945. {
  58946. name: "Normal",
  58947. height: math.unit(8 + 8/12, "feet"),
  58948. default: true
  58949. },
  58950. ]
  58951. ))
  58952. characterMakers.push(() => makeCharacter(
  58953. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58954. {
  58955. front: {
  58956. height: math.unit(8, "feet"),
  58957. weight: math.unit(760, "lb"),
  58958. name: "Front",
  58959. image: {
  58960. source: "./media/characters/rexx/front.svg",
  58961. extra: 786/750,
  58962. bottom: 17/803
  58963. },
  58964. extraAttributes: {
  58965. "pawLength": {
  58966. name: "Paw Length",
  58967. power: 1,
  58968. type: "length",
  58969. base: math.unit(27, "inches")
  58970. },
  58971. }
  58972. },
  58973. },
  58974. [
  58975. {
  58976. name: "Micro",
  58977. height: math.unit(2, "inches")
  58978. },
  58979. {
  58980. name: "Normal",
  58981. height: math.unit(8, "feet"),
  58982. default: true
  58983. },
  58984. {
  58985. name: "Macro",
  58986. height: math.unit(150, "feet")
  58987. },
  58988. ]
  58989. ))
  58990. characterMakers.push(() => makeCharacter(
  58991. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58992. {
  58993. front: {
  58994. height: math.unit(18, "feet"),
  58995. weight: math.unit(1975, "lb"),
  58996. name: "Front",
  58997. image: {
  58998. source: "./media/characters/draco/front.svg",
  58999. extra: 1325/1241,
  59000. bottom: 83/1408
  59001. }
  59002. },
  59003. back: {
  59004. height: math.unit(18, "feet"),
  59005. weight: math.unit(1975, "lb"),
  59006. name: "Back",
  59007. image: {
  59008. source: "./media/characters/draco/back.svg",
  59009. extra: 1332/1250,
  59010. bottom: 43/1375
  59011. }
  59012. },
  59013. dick: {
  59014. height: math.unit(7.5, "feet"),
  59015. name: "Dick",
  59016. image: {
  59017. source: "./media/characters/draco/dick.svg"
  59018. }
  59019. },
  59020. },
  59021. [
  59022. {
  59023. name: "Normal",
  59024. height: math.unit(18, "feet"),
  59025. default: true
  59026. },
  59027. ]
  59028. ))
  59029. characterMakers.push(() => makeCharacter(
  59030. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  59031. {
  59032. front: {
  59033. height: math.unit(3.2, "meters"),
  59034. name: "Front",
  59035. image: {
  59036. source: "./media/characters/harriett/front.svg",
  59037. extra: 1966/1915,
  59038. bottom: 9/1975
  59039. }
  59040. },
  59041. },
  59042. [
  59043. {
  59044. name: "Normal",
  59045. height: math.unit(3.2, "meters"),
  59046. default: true
  59047. },
  59048. ]
  59049. ))
  59050. characterMakers.push(() => makeCharacter(
  59051. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  59052. {
  59053. standing: {
  59054. height: math.unit(180, "cm"),
  59055. weight: math.unit(185, "lb"),
  59056. name: "Standing",
  59057. image: {
  59058. source: "./media/characters/serpentus/standing.svg",
  59059. extra: 882/878,
  59060. bottom: 16/898
  59061. }
  59062. },
  59063. sitting: {
  59064. height: math.unit(0.8, "meter"),
  59065. weight: math.unit(155, "lb"),
  59066. name: "Sitting",
  59067. image: {
  59068. source: "./media/characters/serpentus/sitting.svg",
  59069. extra: 293/290,
  59070. bottom: 140/433
  59071. }
  59072. },
  59073. },
  59074. [
  59075. {
  59076. name: "Normal",
  59077. height: math.unit(1.8, "meter"),
  59078. default: true
  59079. },
  59080. ]
  59081. ))
  59082. characterMakers.push(() => makeCharacter(
  59083. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  59084. {
  59085. front: {
  59086. height: math.unit(5.7174385736, "feet"),
  59087. name: "Front",
  59088. image: {
  59089. source: "./media/characters/nova-polecat/front.svg",
  59090. extra: 1317/1216,
  59091. bottom: 92/1409
  59092. }
  59093. },
  59094. },
  59095. [
  59096. {
  59097. name: "Normal",
  59098. height: math.unit(5.7174385736, "feet"),
  59099. default: true
  59100. },
  59101. ]
  59102. ))
  59103. characterMakers.push(() => makeCharacter(
  59104. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  59105. {
  59106. front: {
  59107. height: math.unit(5 + 4/12, "feet"),
  59108. weight: math.unit(250, "lb"),
  59109. name: "Front",
  59110. image: {
  59111. source: "./media/characters/mook/front.svg",
  59112. extra: 1088/1037,
  59113. bottom: 132/1220
  59114. }
  59115. },
  59116. back: {
  59117. height: math.unit(5 + 1/12, "feet"),
  59118. weight: math.unit(250, "lb"),
  59119. name: "Back",
  59120. image: {
  59121. source: "./media/characters/mook/back.svg",
  59122. extra: 1184/905,
  59123. bottom: 96/1280
  59124. }
  59125. },
  59126. head: {
  59127. height: math.unit(1.85, "feet"),
  59128. name: "Head",
  59129. image: {
  59130. source: "./media/characters/mook/head.svg"
  59131. }
  59132. },
  59133. hand: {
  59134. height: math.unit(1.9, "feet"),
  59135. name: "Hand",
  59136. image: {
  59137. source: "./media/characters/mook/hand.svg"
  59138. }
  59139. },
  59140. palm: {
  59141. height: math.unit(1.84, "feet"),
  59142. name: "Palm",
  59143. image: {
  59144. source: "./media/characters/mook/palm.svg"
  59145. }
  59146. },
  59147. foot: {
  59148. height: math.unit(1.44, "feet"),
  59149. name: "Foot",
  59150. image: {
  59151. source: "./media/characters/mook/foot.svg"
  59152. }
  59153. },
  59154. sole: {
  59155. height: math.unit(1.44, "feet"),
  59156. name: "Sole",
  59157. image: {
  59158. source: "./media/characters/mook/sole.svg"
  59159. }
  59160. },
  59161. },
  59162. [
  59163. {
  59164. name: "Normal",
  59165. height: math.unit(5 + 4/12, "feet"),
  59166. default: true
  59167. },
  59168. {
  59169. name: "Big",
  59170. height: math.unit(12, "feet")
  59171. },
  59172. ]
  59173. ))
  59174. characterMakers.push(() => makeCharacter(
  59175. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  59176. {
  59177. front: {
  59178. height: math.unit(6 + 10/12, "feet"),
  59179. weight: math.unit(233, "lb"),
  59180. name: "Front",
  59181. image: {
  59182. source: "./media/characters/kayla/front.svg",
  59183. extra: 1850/1775,
  59184. bottom: 65/1915
  59185. }
  59186. },
  59187. },
  59188. [
  59189. {
  59190. name: "Normal",
  59191. height: math.unit(6 + 10/12, "feet"),
  59192. default: true
  59193. },
  59194. {
  59195. name: "Amazonian",
  59196. height: math.unit(12 + 5/12, "feet")
  59197. },
  59198. {
  59199. name: "Mini Giantess",
  59200. height: math.unit(26, "feet")
  59201. },
  59202. {
  59203. name: "Giantess",
  59204. height: math.unit(200, "feet")
  59205. },
  59206. {
  59207. name: "Mega Giantess",
  59208. height: math.unit(2500, "feet")
  59209. },
  59210. {
  59211. name: "City Sized",
  59212. height: math.unit(50, "miles")
  59213. },
  59214. {
  59215. name: "Country Sized",
  59216. height: math.unit(500, "miles")
  59217. },
  59218. {
  59219. name: "Continent Sized",
  59220. height: math.unit(2500, "miles")
  59221. },
  59222. {
  59223. name: "Planet Sized",
  59224. height: math.unit(10000, "miles")
  59225. },
  59226. {
  59227. name: "Star Sized",
  59228. height: math.unit(5e6, "miles")
  59229. },
  59230. {
  59231. name: "Solar System Sized",
  59232. height: math.unit(125, "AU")
  59233. },
  59234. {
  59235. name: "Galaxy Sized",
  59236. height: math.unit(300e3, "lightyears")
  59237. },
  59238. {
  59239. name: "Universe Sized",
  59240. height: math.unit(200e9, "lightyears")
  59241. },
  59242. {
  59243. name: "Multiverse Sized",
  59244. height: math.unit(20, "exauniverses")
  59245. },
  59246. {
  59247. name: "Mother of Existence",
  59248. height: math.unit(1e6, "yottauniverses")
  59249. },
  59250. ]
  59251. ))
  59252. characterMakers.push(() => makeCharacter(
  59253. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  59254. {
  59255. side: {
  59256. height: math.unit(9.5, "meters"),
  59257. name: "Side",
  59258. image: {
  59259. source: "./media/characters/kulve-ragnarok/side.svg",
  59260. extra: 364/326,
  59261. bottom: 50/414
  59262. }
  59263. },
  59264. },
  59265. [
  59266. {
  59267. name: "Normal",
  59268. height: math.unit(9.5, "meters"),
  59269. default: true
  59270. },
  59271. ]
  59272. ))
  59273. characterMakers.push(() => makeCharacter(
  59274. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  59275. {
  59276. front: {
  59277. height: math.unit(8 + 9/12, "feet"),
  59278. name: "Front",
  59279. image: {
  59280. source: "./media/characters/atlas-goat/front.svg",
  59281. extra: 1462/1323,
  59282. bottom: 12/1474
  59283. }
  59284. },
  59285. },
  59286. [
  59287. {
  59288. name: "Normal",
  59289. height: math.unit(8 + 9/12, "feet"),
  59290. default: true
  59291. },
  59292. {
  59293. name: "Skyline",
  59294. height: math.unit(845, "feet")
  59295. },
  59296. {
  59297. name: "Orbital",
  59298. height: math.unit(93000, "miles")
  59299. },
  59300. {
  59301. name: "Constellation",
  59302. height: math.unit(27000, "lightyears")
  59303. },
  59304. ]
  59305. ))
  59306. characterMakers.push(() => makeCharacter(
  59307. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  59308. {
  59309. side: {
  59310. height: math.unit(1.8, "meters"),
  59311. weight: math.unit(120, "kg"),
  59312. name: "Side",
  59313. image: {
  59314. source: "./media/characters/xie-ling/side.svg",
  59315. extra: 646/574,
  59316. bottom: 44/690
  59317. }
  59318. },
  59319. },
  59320. [
  59321. {
  59322. name: "Tiny",
  59323. height: math.unit(1.80, "meters")
  59324. },
  59325. {
  59326. name: "Small",
  59327. height: math.unit(6, "meters")
  59328. },
  59329. {
  59330. name: "Medium",
  59331. height: math.unit(15, "meters")
  59332. },
  59333. {
  59334. name: "Normal",
  59335. height: math.unit(30, "meters"),
  59336. default: true
  59337. },
  59338. {
  59339. name: "Above Normal",
  59340. height: math.unit(60, "meters")
  59341. },
  59342. {
  59343. name: "Big",
  59344. height: math.unit(220, "meters")
  59345. },
  59346. {
  59347. name: "Giant",
  59348. height: math.unit(2.2, "km")
  59349. },
  59350. {
  59351. name: "Macro",
  59352. height: math.unit(25, "km")
  59353. },
  59354. {
  59355. name: "Mega Macro",
  59356. height: math.unit(350, "km")
  59357. },
  59358. {
  59359. name: "Mega Macro+",
  59360. height: math.unit(5000, "km")
  59361. },
  59362. {
  59363. name: "Goddess",
  59364. height: math.unit(3, "multiverses")
  59365. },
  59366. ]
  59367. ))
  59368. characterMakers.push(() => makeCharacter(
  59369. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  59370. {
  59371. frontSfw: {
  59372. height: math.unit(5 + 11/12, "feet"),
  59373. weight: math.unit(210, "lb"),
  59374. name: "Front",
  59375. image: {
  59376. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  59377. extra: 1928/1821,
  59378. bottom: 45/1973
  59379. }
  59380. },
  59381. backSfw: {
  59382. height: math.unit(5 + 11/12, "feet"),
  59383. weight: math.unit(210, "lb"),
  59384. name: "Back",
  59385. image: {
  59386. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  59387. extra: 1920/1813,
  59388. bottom: 34/1954
  59389. }
  59390. },
  59391. frontNsfw: {
  59392. height: math.unit(5 + 11/12, "feet"),
  59393. weight: math.unit(210, "lb"),
  59394. name: "Front (NSFW)",
  59395. image: {
  59396. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  59397. extra: 1928/1821,
  59398. bottom: 45/1973
  59399. }
  59400. },
  59401. backNsfw: {
  59402. height: math.unit(5 + 11/12, "feet"),
  59403. weight: math.unit(210, "lb"),
  59404. name: "Back (NSFW)",
  59405. image: {
  59406. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  59407. extra: 1920/1813,
  59408. bottom: 34/1954
  59409. }
  59410. },
  59411. },
  59412. [
  59413. {
  59414. name: "Normal",
  59415. height: math.unit(5 + 11/12, "feet"),
  59416. default: true
  59417. },
  59418. {
  59419. name: "Goddess",
  59420. height: math.unit(20 + 3/12, "feet")
  59421. },
  59422. {
  59423. name: "Breaker of Man",
  59424. height: math.unit(329 + 9/12, "feet")
  59425. },
  59426. {
  59427. name: "Solar Justice",
  59428. height: math.unit(0.6, "solarradii")
  59429. },
  59430. {
  59431. name: "She Who Judges",
  59432. height: math.unit(1, "universe")
  59433. },
  59434. ]
  59435. ))
  59436. characterMakers.push(() => makeCharacter(
  59437. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  59438. {
  59439. casual_front: {
  59440. height: math.unit(6 + 1/12, "feet"),
  59441. weight: math.unit(190, "lb"),
  59442. preyCapacity: math.unit(1, "people"),
  59443. name: "Front",
  59444. image: {
  59445. source: "./media/characters/managarmr/casual-front.svg",
  59446. extra: 411/381,
  59447. bottom: 15/426
  59448. },
  59449. extraAttributes: {
  59450. "pawSize": {
  59451. name: "Paw Size",
  59452. power: 1,
  59453. type: "length",
  59454. base: math.unit(0.2, "meters")
  59455. },
  59456. },
  59457. form: "casual",
  59458. },
  59459. casual_back: {
  59460. height: math.unit(6 + 1/12, "feet"),
  59461. weight: math.unit(190, "lb"),
  59462. preyCapacity: math.unit(1, "people"),
  59463. name: "Back",
  59464. image: {
  59465. source: "./media/characters/managarmr/casual-back.svg",
  59466. extra: 413/383,
  59467. bottom: 13/426
  59468. },
  59469. extraAttributes: {
  59470. "pawSize": {
  59471. name: "Paw Size",
  59472. power: 1,
  59473. type: "length",
  59474. base: math.unit(0.2, "meters")
  59475. },
  59476. },
  59477. form: "casual",
  59478. },
  59479. base_front: {
  59480. height: math.unit(7, "feet"),
  59481. weight: math.unit(210, "lb"),
  59482. preyCapacity: math.unit(2, "people"),
  59483. name: "Front",
  59484. image: {
  59485. source: "./media/characters/managarmr/base-front.svg",
  59486. extra: 580/485,
  59487. bottom: 32/612
  59488. },
  59489. extraAttributes: {
  59490. "wingspan": {
  59491. name: "Wingspan",
  59492. power: 1,
  59493. type: "length",
  59494. base: math.unit(4, "meters")
  59495. },
  59496. "pawSize": {
  59497. name: "Paw Size",
  59498. power: 1,
  59499. type: "length",
  59500. base: math.unit(0.2, "meters")
  59501. },
  59502. },
  59503. form: "base",
  59504. },
  59505. "true-divine_front": {
  59506. height: math.unit(40, "feet"),
  59507. weight: math.unit(39000, "lb"),
  59508. preyCapacity: math.unit(375, "people"),
  59509. name: "Front",
  59510. image: {
  59511. source: "./media/characters/managarmr/true-divine-front.svg",
  59512. extra: 725/573,
  59513. bottom: 120/845
  59514. },
  59515. extraAttributes: {
  59516. "wingspan": {
  59517. name: "Wingspan",
  59518. power: 1,
  59519. type: "length",
  59520. base: math.unit(20, "meters")
  59521. },
  59522. "pawSize": {
  59523. name: "Paw Size",
  59524. power: 1,
  59525. type: "length",
  59526. base: math.unit(1.5, "meters")
  59527. },
  59528. },
  59529. form: "true-divine",
  59530. },
  59531. },
  59532. [
  59533. {
  59534. name: "Normal",
  59535. height: math.unit(6 + 1/12, "feet"),
  59536. form: "casual",
  59537. default: true
  59538. },
  59539. {
  59540. name: "Normal",
  59541. height: math.unit(7, "feet"),
  59542. form: "base",
  59543. default: true
  59544. },
  59545. ],
  59546. {
  59547. "casual": {
  59548. name: "Casual",
  59549. default: true
  59550. },
  59551. "base": {
  59552. name: "Base",
  59553. },
  59554. "true-divine": {
  59555. name: "True Divine",
  59556. },
  59557. }
  59558. ))
  59559. characterMakers.push(() => makeCharacter(
  59560. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59561. {
  59562. front: {
  59563. height: math.unit(1.8, "meters"),
  59564. weight: math.unit(110, "kg"),
  59565. name: "Front",
  59566. image: {
  59567. source: "./media/characters/mystra/front.svg",
  59568. extra: 529/442,
  59569. bottom: 31/560
  59570. }
  59571. },
  59572. frontLewd: {
  59573. height: math.unit(1.8, "meters"),
  59574. weight: math.unit(110, "kg"),
  59575. name: "Front (Lewd)",
  59576. image: {
  59577. source: "./media/characters/mystra/front-lewd.svg",
  59578. extra: 529/442,
  59579. bottom: 31/560
  59580. }
  59581. },
  59582. head: {
  59583. height: math.unit(1.63, "feet"),
  59584. name: "Head",
  59585. image: {
  59586. source: "./media/characters/mystra/head.svg"
  59587. }
  59588. },
  59589. paw: {
  59590. height: math.unit(1.9, "feet"),
  59591. name: "Paw",
  59592. image: {
  59593. source: "./media/characters/mystra/paw.svg"
  59594. }
  59595. },
  59596. },
  59597. [
  59598. {
  59599. name: "Incognito",
  59600. height: math.unit(2.3, "meters")
  59601. },
  59602. {
  59603. name: "Small Macro",
  59604. height: math.unit(300, "meters")
  59605. },
  59606. {
  59607. name: "Small Mega",
  59608. height: math.unit(2, "km")
  59609. },
  59610. {
  59611. name: "Mega",
  59612. height: math.unit(30, "km")
  59613. },
  59614. {
  59615. name: "Small Giga",
  59616. height: math.unit(100, "km")
  59617. },
  59618. {
  59619. name: "Giga",
  59620. height: math.unit(1000, "km"),
  59621. default: true
  59622. },
  59623. {
  59624. name: "Continental",
  59625. height: math.unit(5000, "km")
  59626. },
  59627. {
  59628. name: "Terra",
  59629. height: math.unit(20000, "km")
  59630. },
  59631. {
  59632. name: "Solar",
  59633. height: math.unit(2e6, "km")
  59634. },
  59635. {
  59636. name: "Galactic",
  59637. height: math.unit(528502, "lightyears")
  59638. },
  59639. {
  59640. name: "Universal",
  59641. height: math.unit(20, "universes")
  59642. },
  59643. ]
  59644. ))
  59645. characterMakers.push(() => makeCharacter(
  59646. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59647. {
  59648. front: {
  59649. height: math.unit(2, "meters"),
  59650. weight: math.unit(140, "kg"),
  59651. name: "Front",
  59652. image: {
  59653. source: "./media/characters/caleb/front.svg",
  59654. extra: 873/817,
  59655. bottom: 47/920
  59656. }
  59657. },
  59658. back: {
  59659. height: math.unit(2, "meters"),
  59660. weight: math.unit(140, "kg"),
  59661. name: "Back",
  59662. image: {
  59663. source: "./media/characters/caleb/back.svg",
  59664. extra: 877/828,
  59665. bottom: 24/901
  59666. }
  59667. },
  59668. snakeTail: {
  59669. height: math.unit(1.44, "feet"),
  59670. name: "Snake Tail",
  59671. image: {
  59672. source: "./media/characters/caleb/snake-tail.svg"
  59673. }
  59674. },
  59675. dick: {
  59676. height: math.unit(2.6, "feet"),
  59677. name: "Dick",
  59678. image: {
  59679. source: "./media/characters/caleb/dick.svg"
  59680. }
  59681. },
  59682. },
  59683. [
  59684. {
  59685. name: "Incognito",
  59686. height: math.unit(3, "meters")
  59687. },
  59688. {
  59689. name: "Home Size",
  59690. height: math.unit(200, "meters"),
  59691. default: true
  59692. },
  59693. {
  59694. name: "Macro",
  59695. height: math.unit(500, "meters")
  59696. },
  59697. {
  59698. name: "Big Macro",
  59699. height: math.unit(5, "km")
  59700. },
  59701. {
  59702. name: "Giga",
  59703. height: math.unit(250, "km")
  59704. },
  59705. {
  59706. name: "Giga+",
  59707. height: math.unit(5000, "km")
  59708. },
  59709. {
  59710. name: "Small Terra",
  59711. height: math.unit(35e3, "km")
  59712. },
  59713. {
  59714. name: "Terra",
  59715. height: math.unit(2e6, "km")
  59716. },
  59717. {
  59718. name: "Terra+",
  59719. height: math.unit(1.5e6, "km")
  59720. },
  59721. ]
  59722. ))
  59723. characterMakers.push(() => makeCharacter(
  59724. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59725. {
  59726. front: {
  59727. height: math.unit(2, "meters"),
  59728. weight: math.unit(120, "kg"),
  59729. name: "Front",
  59730. image: {
  59731. source: "./media/characters/gilirian/front.svg",
  59732. extra: 805/737,
  59733. bottom: 13/818
  59734. }
  59735. },
  59736. side: {
  59737. height: math.unit(2, "meters"),
  59738. weight: math.unit(120, "kg"),
  59739. name: "Side",
  59740. image: {
  59741. source: "./media/characters/gilirian/side.svg",
  59742. extra: 810/746,
  59743. bottom: 6/816
  59744. }
  59745. },
  59746. back: {
  59747. height: math.unit(2, "meters"),
  59748. weight: math.unit(120, "kg"),
  59749. name: "Back",
  59750. image: {
  59751. source: "./media/characters/gilirian/back.svg",
  59752. extra: 815/745,
  59753. bottom: 15/830
  59754. }
  59755. },
  59756. frontNsfw: {
  59757. height: math.unit(2, "meters"),
  59758. weight: math.unit(120, "kg"),
  59759. name: "Front (NSFW)",
  59760. image: {
  59761. source: "./media/characters/gilirian/front-nsfw.svg",
  59762. extra: 805/737,
  59763. bottom: 13/818
  59764. }
  59765. },
  59766. sideNsfw: {
  59767. height: math.unit(2, "meters"),
  59768. weight: math.unit(120, "kg"),
  59769. name: "Side (NSFW)",
  59770. image: {
  59771. source: "./media/characters/gilirian/side-nsfw.svg",
  59772. extra: 810/746,
  59773. bottom: 6/816
  59774. }
  59775. },
  59776. },
  59777. [
  59778. {
  59779. name: "Incognito",
  59780. height: math.unit(2, "meters"),
  59781. default: true
  59782. },
  59783. {
  59784. name: "Macro",
  59785. height: math.unit(250, "meters")
  59786. },
  59787. {
  59788. name: "Big Macro",
  59789. height: math.unit(1500, "meters")
  59790. },
  59791. {
  59792. name: "Mega",
  59793. height: math.unit(40, "km")
  59794. },
  59795. {
  59796. name: "Giga",
  59797. height: math.unit(300, "km")
  59798. },
  59799. {
  59800. name: "Extra Giga",
  59801. height: math.unit(5000, "km")
  59802. },
  59803. {
  59804. name: "Small Terra",
  59805. height: math.unit(10e3, "km")
  59806. },
  59807. {
  59808. name: "Terra",
  59809. height: math.unit(3e5, "km")
  59810. },
  59811. {
  59812. name: "Galactic",
  59813. height: math.unit(369950, "lightyears")
  59814. },
  59815. ]
  59816. ))
  59817. characterMakers.push(() => makeCharacter(
  59818. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59819. {
  59820. front: {
  59821. height: math.unit(2.5, "meters"),
  59822. weight: math.unit(230, "lb"),
  59823. name: "Front",
  59824. image: {
  59825. source: "./media/characters/tarken/front.svg",
  59826. extra: 764/720,
  59827. bottom: 49/813
  59828. }
  59829. },
  59830. back: {
  59831. height: math.unit(2.5, "meters"),
  59832. weight: math.unit(230, "lb"),
  59833. name: "Back",
  59834. image: {
  59835. source: "./media/characters/tarken/back.svg",
  59836. extra: 756/720,
  59837. bottom: 35/791
  59838. }
  59839. },
  59840. frontNsfw: {
  59841. height: math.unit(2.5, "meters"),
  59842. weight: math.unit(230, "lb"),
  59843. name: "Front (NSFW)",
  59844. image: {
  59845. source: "./media/characters/tarken/front-nsfw.svg",
  59846. extra: 764/720,
  59847. bottom: 49/813
  59848. }
  59849. },
  59850. backNsfw: {
  59851. height: math.unit(2.5, "meters"),
  59852. weight: math.unit(230, "lb"),
  59853. name: "Back (NSFW)",
  59854. image: {
  59855. source: "./media/characters/tarken/back-nsfw.svg",
  59856. extra: 756/720,
  59857. bottom: 35/791
  59858. }
  59859. },
  59860. head: {
  59861. height: math.unit(2.22, "feet"),
  59862. name: "Head",
  59863. image: {
  59864. source: "./media/characters/tarken/head.svg"
  59865. }
  59866. },
  59867. tail: {
  59868. height: math.unit(5.25, "feet"),
  59869. name: "Tail",
  59870. image: {
  59871. source: "./media/characters/tarken/tail.svg"
  59872. }
  59873. },
  59874. dick: {
  59875. height: math.unit(1.95, "feet"),
  59876. name: "Dick",
  59877. image: {
  59878. source: "./media/characters/tarken/dick.svg"
  59879. }
  59880. },
  59881. hand: {
  59882. height: math.unit(1.78, "feet"),
  59883. name: "Hand",
  59884. image: {
  59885. source: "./media/characters/tarken/hand.svg"
  59886. }
  59887. },
  59888. beam: {
  59889. height: math.unit(1.5, "feet"),
  59890. name: "Beam",
  59891. image: {
  59892. source: "./media/characters/tarken/beam.svg"
  59893. }
  59894. },
  59895. },
  59896. [
  59897. {
  59898. name: "Original Size",
  59899. height: math.unit(2.5, "meters")
  59900. },
  59901. {
  59902. name: "Macro",
  59903. height: math.unit(150, "meters"),
  59904. default: true
  59905. },
  59906. {
  59907. name: "Macro+",
  59908. height: math.unit(300, "meters")
  59909. },
  59910. {
  59911. name: "Mega",
  59912. height: math.unit(2, "km")
  59913. },
  59914. {
  59915. name: "Mega+",
  59916. height: math.unit(35, "km")
  59917. },
  59918.  {
  59919. name: "Mega++",
  59920. height: math.unit(60, "km")
  59921. },
  59922. {
  59923. name: "Giga",
  59924. height: math.unit(200, "km")
  59925. },
  59926. {
  59927. name: "Giga+",
  59928. height: math.unit(2500, "km")
  59929. },
  59930. {
  59931. name: "Giga++",
  59932. height: math.unit(6600, "km")
  59933. },
  59934. {
  59935. name: "Terra",
  59936. height: math.unit(20000, "km")
  59937. },
  59938. {
  59939. name: "Terra+",
  59940. height: math.unit(300000, "km")
  59941. },
  59942. ]
  59943. ))
  59944. characterMakers.push(() => makeCharacter(
  59945. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59946. {
  59947. magpie_dressed: {
  59948. height: math.unit(1.7, "meters"),
  59949. weight: math.unit(70, "kg"),
  59950. name: "Dressed",
  59951. image: {
  59952. source: "./media/characters/otreus/magpie-dressed.svg",
  59953. extra: 691/672,
  59954. bottom: 116/807
  59955. },
  59956. form: "magpie",
  59957. default: true
  59958. },
  59959. magpie_nude: {
  59960. height: math.unit(1.7, "meters"),
  59961. weight: math.unit(70, "kg"),
  59962. name: "Nude",
  59963. image: {
  59964. source: "./media/characters/otreus/magpie-nude.svg",
  59965. extra: 691/672,
  59966. bottom: 116/807
  59967. },
  59968. form: "magpie",
  59969. },
  59970. magpie_dressedLewd: {
  59971. height: math.unit(1.7, "meters"),
  59972. weight: math.unit(70, "kg"),
  59973. name: "Dressed (Lewd)",
  59974. image: {
  59975. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59976. extra: 691/672,
  59977. bottom: 116/807
  59978. },
  59979. form: "magpie",
  59980. },
  59981. magpie_nudeLewd: {
  59982. height: math.unit(1.7, "meters"),
  59983. weight: math.unit(70, "kg"),
  59984. name: "Nude (Lewd)",
  59985. image: {
  59986. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59987. extra: 691/672,
  59988. bottom: 116/807
  59989. },
  59990. form: "magpie",
  59991. },
  59992. magpie_leftFoot: {
  59993. height: math.unit(1.58, "feet"),
  59994. name: "Left Foot",
  59995. image: {
  59996. source: "./media/characters/otreus/magpie-left-foot.svg"
  59997. },
  59998. form: "magpie",
  59999. },
  60000. magpie_rightFoot: {
  60001. height: math.unit(1.58, "feet"),
  60002. name: "Right Foot",
  60003. image: {
  60004. source: "./media/characters/otreus/magpie-right-foot.svg"
  60005. },
  60006. form: "magpie",
  60007. },
  60008. magpie_wingspan: {
  60009. height: math.unit(2, "meters"),
  60010. weight: math.unit(70, "kg"),
  60011. name: "Wingspan",
  60012. image: {
  60013. source: "./media/characters/otreus/magpie-wingspan.svg"
  60014. },
  60015. extraAttributes: {
  60016. "wingspan": {
  60017. name: "Wingspan",
  60018. power: 1,
  60019. type: "length",
  60020. base: math.unit(3.35, "meters")
  60021. },
  60022. },
  60023. form: "magpie",
  60024. },
  60025. hippogriff_dressed: {
  60026. height: math.unit(1.7, "meters"),
  60027. weight: math.unit(70, "kg"),
  60028. name: "Dressed",
  60029. image: {
  60030. source: "./media/characters/otreus/hippogriff-dressed.svg",
  60031. extra: 710/689,
  60032. bottom: 67/777
  60033. },
  60034. form: "hippogriff",
  60035. default: true
  60036. },
  60037. hippogriff_nude: {
  60038. height: math.unit(1.7, "meters"),
  60039. weight: math.unit(70, "kg"),
  60040. name: "Nude",
  60041. image: {
  60042. source: "./media/characters/otreus/hippogriff-nude.svg",
  60043. extra: 710/689,
  60044. bottom: 67/777
  60045. },
  60046. form: "hippogriff",
  60047. },
  60048. hippogriff_dressedLewd: {
  60049. height: math.unit(1.7, "meters"),
  60050. weight: math.unit(70, "kg"),
  60051. name: "Dressed (Lewd)",
  60052. image: {
  60053. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  60054. extra: 710/689,
  60055. bottom: 67/777
  60056. },
  60057. form: "hippogriff",
  60058. },
  60059. hippogriff_nudeLewd: {
  60060. height: math.unit(1.7, "meters"),
  60061. weight: math.unit(70, "kg"),
  60062. name: "Nude (Lewd)",
  60063. image: {
  60064. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  60065. extra: 710/689,
  60066. bottom: 67/777
  60067. },
  60068. form: "hippogriff",
  60069. },
  60070. },
  60071. [
  60072. {
  60073. name: "Original Size",
  60074. height: math.unit(1.7, "meters"),
  60075. allForms: true
  60076. },
  60077. {
  60078. name: "Incognito Size",
  60079. height: math.unit(2, "meters"),
  60080. allForms: true
  60081. },
  60082. {
  60083. name: "Mega",
  60084. height: math.unit(2, "km"),
  60085. allForms: true
  60086. },
  60087. {
  60088. name: "Mega+",
  60089. height: math.unit(40, "km"),
  60090. allForms: true
  60091. },
  60092. {
  60093. name: "Giga",
  60094. height: math.unit(250, "km"),
  60095. allForms: true
  60096. },
  60097. {
  60098. name: "Giga+",
  60099. height: math.unit(3000, "km"),
  60100. allForms: true
  60101. },
  60102. {
  60103. name: "Terra",
  60104. height: math.unit(20000, "km"),
  60105. allForms: true
  60106. },
  60107. {
  60108. name: "Solar (Home Size)",
  60109. height: math.unit(3e6, "km"),
  60110. allForms: true,
  60111. default: true
  60112. },
  60113. ],
  60114. {
  60115. "magpie": {
  60116. name: "Magpie",
  60117. default: true
  60118. },
  60119. "hippogriff": {
  60120. name: "Hippogriff",
  60121. },
  60122. }
  60123. ))
  60124. characterMakers.push(() => makeCharacter(
  60125. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  60126. {
  60127. frontDressed: {
  60128. height: math.unit(1.8, "meters"),
  60129. weight: math.unit(90, "kg"),
  60130. name: "Front (Dressed)",
  60131. image: {
  60132. source: "./media/characters/thalia/front-dressed.svg",
  60133. extra: 478/402,
  60134. bottom: 55/533
  60135. }
  60136. },
  60137. backDressed: {
  60138. height: math.unit(1.8, "meters"),
  60139. weight: math.unit(90, "kg"),
  60140. name: "Back (Dressed)",
  60141. image: {
  60142. source: "./media/characters/thalia/back-dressed.svg",
  60143. extra: 500/424,
  60144. bottom: 15/515
  60145. }
  60146. },
  60147. frontNude: {
  60148. height: math.unit(1.8, "meters"),
  60149. weight: math.unit(90, "kg"),
  60150. name: "Front (Nude)",
  60151. image: {
  60152. source: "./media/characters/thalia/front-nude.svg",
  60153. extra: 478/402,
  60154. bottom: 55/533
  60155. }
  60156. },
  60157. backNude: {
  60158. height: math.unit(1.8, "meters"),
  60159. weight: math.unit(90, "kg"),
  60160. name: "Back (Nude)",
  60161. image: {
  60162. source: "./media/characters/thalia/back-nude.svg",
  60163. extra: 500/424,
  60164. bottom: 15/515
  60165. }
  60166. },
  60167. },
  60168. [
  60169. {
  60170. name: "Incognito",
  60171. height: math.unit(3, "meters")
  60172. },
  60173. {
  60174. name: "Macro",
  60175. height: math.unit(500, "meters")
  60176. },
  60177. {
  60178. name: "Mega",
  60179. height: math.unit(5, "km")
  60180. },
  60181. {
  60182. name: "Mega+",
  60183. height: math.unit(30, "km")
  60184. },
  60185. {
  60186. name: "Giga",
  60187. height: math.unit(350, "km")
  60188. },
  60189. {
  60190. name: "Giga+",
  60191. height: math.unit(4000, "km")
  60192. },
  60193. {
  60194. name: "Terra",
  60195. height: math.unit(35000, "km")
  60196. },
  60197. {
  60198. name: "Original Size",
  60199. height: math.unit(130000, "km")
  60200. },
  60201. {
  60202. name: "Solar (Home Size)",
  60203. height: math.unit(4e6, "km"),
  60204. default: true
  60205. },
  60206. ]
  60207. ))
  60208. characterMakers.push(() => makeCharacter(
  60209. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  60210. {
  60211. front: {
  60212. height: math.unit(1.8, "meters"),
  60213. weight: math.unit(95, "kg"),
  60214. name: "Front",
  60215. image: {
  60216. source: "./media/characters/shango/front.svg",
  60217. extra: 1925/1774,
  60218. bottom: 67/1992
  60219. }
  60220. },
  60221. back: {
  60222. height: math.unit(1.8, "meters"),
  60223. weight: math.unit(95, "kg"),
  60224. name: "Back",
  60225. image: {
  60226. source: "./media/characters/shango/back.svg",
  60227. extra: 1915/1766,
  60228. bottom: 52/1967
  60229. }
  60230. },
  60231. frontLewd: {
  60232. height: math.unit(1.8, "meters"),
  60233. weight: math.unit(95, "kg"),
  60234. name: "Front (Lewd)",
  60235. image: {
  60236. source: "./media/characters/shango/front-lewd.svg",
  60237. extra: 1925/1774,
  60238. bottom: 67/1992
  60239. }
  60240. },
  60241. backLewd: {
  60242. height: math.unit(1.8, "meters"),
  60243. weight: math.unit(95, "kg"),
  60244. name: "Back (Lewd)",
  60245. image: {
  60246. source: "./media/characters/shango/back-lewd.svg",
  60247. extra: 1915/1766,
  60248. bottom: 52/1967
  60249. }
  60250. },
  60251. maw: {
  60252. height: math.unit(1.64, "feet"),
  60253. name: "Maw",
  60254. image: {
  60255. source: "./media/characters/shango/maw.svg"
  60256. }
  60257. },
  60258. dick: {
  60259. height: math.unit(2.14, "feet"),
  60260. name: "Dick",
  60261. image: {
  60262. source: "./media/characters/shango/dick.svg"
  60263. }
  60264. },
  60265. },
  60266. [
  60267. {
  60268. name: "Incognito",
  60269. height: math.unit(1.8, "meters")
  60270. },
  60271. {
  60272. name: "Home Size",
  60273. height: math.unit(60, "meters"),
  60274. default: true
  60275. },
  60276. {
  60277. name: "Macro",
  60278. height: math.unit(450, "meters")
  60279. },
  60280. {
  60281. name: "Mega",
  60282. height: math.unit(6, "km")
  60283. },
  60284. {
  60285. name: "Mega+",
  60286. height: math.unit(35, "km")
  60287. },
  60288. {
  60289. name: "Giga",
  60290. height: math.unit(500, "km")
  60291. },
  60292. {
  60293. name: "Giga+",
  60294. height: math.unit(5000, "km")
  60295. },
  60296. {
  60297. name: "Terra",
  60298. height: math.unit(60000, "km")
  60299. },
  60300. {
  60301. name: "Terra+",
  60302. height: math.unit(400000, "km")
  60303. },
  60304. ]
  60305. ))
  60306. characterMakers.push(() => makeCharacter(
  60307. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  60308. {
  60309. front: {
  60310. height: math.unit(2, "meters"),
  60311. weight: math.unit(95, "kg"),
  60312. name: "Front",
  60313. image: {
  60314. source: "./media/characters/osiris-gryphon/front.svg",
  60315. extra: 1508/1313,
  60316. bottom: 87/1595
  60317. }
  60318. },
  60319. back: {
  60320. height: math.unit(2, "meters"),
  60321. weight: math.unit(95, "kg"),
  60322. name: "Back",
  60323. image: {
  60324. source: "./media/characters/osiris-gryphon/back.svg",
  60325. extra: 1436/1309,
  60326. bottom: 64/1500
  60327. }
  60328. },
  60329. frontLewd: {
  60330. height: math.unit(2, "meters"),
  60331. weight: math.unit(95, "kg"),
  60332. name: "Front (Lewd)",
  60333. image: {
  60334. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  60335. extra: 1508/1313,
  60336. bottom: 87/1595
  60337. }
  60338. },
  60339. wing: {
  60340. height: math.unit(6.3333, "feet"),
  60341. name: "Wing",
  60342. image: {
  60343. source: "./media/characters/osiris-gryphon/wing.svg"
  60344. }
  60345. },
  60346. },
  60347. [
  60348. {
  60349. name: "Incognito",
  60350. height: math.unit(2, "meters")
  60351. },
  60352. {
  60353. name: "Home Size",
  60354. height: math.unit(30, "meters"),
  60355. default: true
  60356. },
  60357. {
  60358. name: "Macro",
  60359. height: math.unit(100, "meters")
  60360. },
  60361. {
  60362. name: "Macro+",
  60363. height: math.unit(350, "meters")
  60364. },
  60365. {
  60366. name: "Mega",
  60367. height: math.unit(40, "km")
  60368. },
  60369. {
  60370. name: "Giga",
  60371. height: math.unit(300, "km")
  60372. },
  60373. {
  60374. name: "Giga+",
  60375. height: math.unit(2000, "km")
  60376. },
  60377. {
  60378. name: "Terra",
  60379. height: math.unit(30000, "km")
  60380. },
  60381. ]
  60382. ))
  60383. characterMakers.push(() => makeCharacter(
  60384. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  60385. {
  60386. front: {
  60387. height: math.unit(2.5, "meters"),
  60388. weight: math.unit(200, "kg"),
  60389. name: "Front",
  60390. image: {
  60391. source: "./media/characters/atlas-dragon/front.svg",
  60392. extra: 745/462,
  60393. bottom: 36/781
  60394. }
  60395. },
  60396. back: {
  60397. height: math.unit(2.5, "meters"),
  60398. weight: math.unit(200, "kg"),
  60399. name: "Back",
  60400. image: {
  60401. source: "./media/characters/atlas-dragon/back.svg",
  60402. extra: 848/822,
  60403. bottom: 57/905
  60404. }
  60405. },
  60406. frontLewd: {
  60407. height: math.unit(2.5, "meters"),
  60408. weight: math.unit(200, "kg"),
  60409. name: "Front (Lewd)",
  60410. image: {
  60411. source: "./media/characters/atlas-dragon/front-lewd.svg",
  60412. extra: 745/462,
  60413. bottom: 36/781
  60414. }
  60415. },
  60416. backLewd: {
  60417. height: math.unit(2.5, "meters"),
  60418. weight: math.unit(200, "kg"),
  60419. name: "Back (Lewd)",
  60420. image: {
  60421. source: "./media/characters/atlas-dragon/back-lewd.svg",
  60422. extra: 848/822,
  60423. bottom: 57/905
  60424. }
  60425. },
  60426. },
  60427. [
  60428. {
  60429. name: "Incognito",
  60430. height: math.unit(2.5, "meters")
  60431. },
  60432. {
  60433. name: "Small Macro",
  60434. height: math.unit(50, "meters")
  60435. },
  60436. {
  60437. name: "Macro",
  60438. height: math.unit(350, "meters")
  60439. },
  60440. {
  60441. name: "Mega",
  60442. height: math.unit(5.5, "kilometers")
  60443. },
  60444. {
  60445. name: "Mega+",
  60446. height: math.unit(50, "km")
  60447. },
  60448. {
  60449. name: "Giga",
  60450. height: math.unit(350, "km")
  60451. },
  60452. {
  60453. name: "Giga+",
  60454. height: math.unit(2000, "km")
  60455. },
  60456. {
  60457. name: "Giga++",
  60458. height: math.unit(6500, "km")
  60459. },
  60460. {
  60461. name: "Terra",
  60462. height: math.unit(30000, "km")
  60463. },
  60464. {
  60465. name: "Terra+",
  60466. height: math.unit(250000, "km")
  60467. },
  60468. {
  60469. name: "True Size",
  60470. height: math.unit(100, "multiverses"),
  60471. default: true
  60472. },
  60473. ]
  60474. ))
  60475. characterMakers.push(() => makeCharacter(
  60476. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60477. {
  60478. front: {
  60479. height: math.unit(1.8, "m"),
  60480. weight: math.unit(120, "kg"),
  60481. name: "Front",
  60482. image: {
  60483. source: "./media/characters/chey/front.svg",
  60484. extra: 1359/1270,
  60485. bottom: 18/1377
  60486. }
  60487. },
  60488. arm: {
  60489. height: math.unit(2.05, "feet"),
  60490. name: "Arm",
  60491. image: {
  60492. source: "./media/characters/chey/arm.svg"
  60493. }
  60494. },
  60495. head: {
  60496. height: math.unit(1.89, "feet"),
  60497. name: "Head",
  60498. image: {
  60499. source: "./media/characters/chey/head.svg"
  60500. }
  60501. },
  60502. },
  60503. [
  60504. {
  60505. name: "Original Size",
  60506. height: math.unit(5, "cm")
  60507. },
  60508. {
  60509. name: "Incognito Size",
  60510. height: math.unit(2.4, "m")
  60511. },
  60512. {
  60513. name: "Home Size",
  60514. height: math.unit(200, "meters"),
  60515. default: true
  60516. },
  60517. {
  60518. name: "Mega",
  60519. height: math.unit(2, "km")
  60520. },
  60521. {
  60522. name: "Giga (Preferred Size)",
  60523. height: math.unit(2000, "km")
  60524. },
  60525. {
  60526. name: "Giga+",
  60527. height: math.unit(6000, "km")
  60528. },
  60529. {
  60530. name: "Terra",
  60531. height: math.unit(17000, "km")
  60532. },
  60533. {
  60534. name: "Terra+",
  60535. height: math.unit(75000, "km")
  60536. },
  60537. {
  60538. name: "Terra++",
  60539. height: math.unit(225000, "km")
  60540. },
  60541. ]
  60542. ))
  60543. characterMakers.push(() => makeCharacter(
  60544. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60545. {
  60546. side: {
  60547. height: math.unit(7.8, "meters"),
  60548. name: "Side",
  60549. image: {
  60550. source: "./media/characters/ragnarok/side.svg",
  60551. extra: 725/621,
  60552. bottom: 72/797
  60553. }
  60554. },
  60555. },
  60556. [
  60557. {
  60558. name: "Normal",
  60559. height: math.unit(7.8, "meters"),
  60560. default: true
  60561. },
  60562. ]
  60563. ))
  60564. characterMakers.push(() => makeCharacter(
  60565. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60566. {
  60567. hyena_front: {
  60568. height: math.unit(2.1, "meters"),
  60569. weight: math.unit(110, "kg"),
  60570. name: "Front",
  60571. image: {
  60572. source: "./media/characters/nima/hyena-front.svg",
  60573. extra: 1904/1796,
  60574. bottom: 67/1971
  60575. },
  60576. form: "hyena",
  60577. },
  60578. hyena_back: {
  60579. height: math.unit(2.1, "meters"),
  60580. weight: math.unit(110, "kg"),
  60581. name: "Back",
  60582. image: {
  60583. source: "./media/characters/nima/hyena-back.svg",
  60584. extra: 1964/1884,
  60585. bottom: 35/1999
  60586. },
  60587. form: "hyena",
  60588. },
  60589. shark_front: {
  60590. height: math.unit(1.95, "meters"),
  60591. weight: math.unit(110, "kg"),
  60592. name: "Front",
  60593. image: {
  60594. source: "./media/characters/nima/shark-front.svg",
  60595. extra: 2238/2013,
  60596. bottom: 0/223
  60597. },
  60598. form: "shark",
  60599. },
  60600. paw: {
  60601. height: math.unit(1, "feet"),
  60602. name: "Paw",
  60603. image: {
  60604. source: "./media/characters/nima/paw.svg"
  60605. }
  60606. },
  60607. circlet: {
  60608. height: math.unit(0.3, "feet"),
  60609. name: "Circlet",
  60610. image: {
  60611. source: "./media/characters/nima/circlet.svg"
  60612. }
  60613. },
  60614. necklace: {
  60615. height: math.unit(1.2, "feet"),
  60616. name: "Necklace",
  60617. image: {
  60618. source: "./media/characters/nima/necklace.svg"
  60619. }
  60620. },
  60621. bracelet: {
  60622. height: math.unit(0.51, "feet"),
  60623. name: "Bracelet",
  60624. image: {
  60625. source: "./media/characters/nima/bracelet.svg"
  60626. }
  60627. },
  60628. armband: {
  60629. height: math.unit(1.3, "feet"),
  60630. name: "Armband",
  60631. image: {
  60632. source: "./media/characters/nima/armband.svg"
  60633. }
  60634. },
  60635. },
  60636. [
  60637. {
  60638. name: "Incognito",
  60639. height: math.unit(2.1, "meters"),
  60640. allForms: true
  60641. },
  60642. {
  60643. name: "Small Macro",
  60644. height: math.unit(50, "meters"),
  60645. allForms: true
  60646. },
  60647. {
  60648. name: "Macro",
  60649. height: math.unit(200, "meters"),
  60650. allForms: true
  60651. },
  60652. {
  60653. name: "Mega",
  60654. height: math.unit(2.5, "km"),
  60655. allForms: true
  60656. },
  60657. {
  60658. name: "Mega+",
  60659. height: math.unit(30, "km"),
  60660. allForms: true
  60661. },
  60662. {
  60663. name: "Giga (Home Size)",
  60664. height: math.unit(400, "km"),
  60665. allForms: true,
  60666. default: true
  60667. },
  60668. {
  60669. name: "Giga+",
  60670. height: math.unit(2500, "km"),
  60671. allForms: true
  60672. },
  60673. {
  60674. name: "Giga++",
  60675. height: math.unit(8000, "km"),
  60676. allForms: true
  60677. },
  60678. {
  60679. name: "Terra",
  60680. height: math.unit(20000, "km"),
  60681. allForms: true
  60682. },
  60683. {
  60684. name: "Terra+",
  60685. height: math.unit(70000, "km"),
  60686. allForms: true
  60687. },
  60688. {
  60689. name: "Terra++",
  60690. height: math.unit(600000, "km"),
  60691. allForms: true
  60692. },
  60693. {
  60694. name: "Galactic",
  60695. height: math.unit(40, "galaxies"),
  60696. allForms: true
  60697. },
  60698. {
  60699. name: "Universal",
  60700. height: math.unit(40, "universes"),
  60701. allForms: true
  60702. },
  60703. ],
  60704. {
  60705. "hyena": {
  60706. name: "Hyena",
  60707. default: true
  60708. },
  60709. "shark": {
  60710. name: "Shark",
  60711. },
  60712. }
  60713. ))
  60714. characterMakers.push(() => makeCharacter(
  60715. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60716. {
  60717. anthro_front: {
  60718. height: math.unit(1.5, "meters"),
  60719. name: "Front",
  60720. image: {
  60721. source: "./media/characters/adelaide/anthro-front.svg",
  60722. extra: 860/783,
  60723. bottom: 60/920
  60724. },
  60725. form: "anthro",
  60726. default: true
  60727. },
  60728. hand: {
  60729. height: math.unit(0.65, "feet"),
  60730. name: "Hand",
  60731. image: {
  60732. source: "./media/characters/adelaide/hand.svg"
  60733. },
  60734. form: "anthro"
  60735. },
  60736. foot: {
  60737. height: math.unit(1.38 * 259 / 314, "feet"),
  60738. name: "Foot",
  60739. image: {
  60740. source: "./media/characters/adelaide/foot.svg",
  60741. extra: 259/259,
  60742. bottom: 55/314
  60743. },
  60744. form: "anthro"
  60745. },
  60746. feather: {
  60747. height: math.unit(0.85, "feet"),
  60748. name: "Feather",
  60749. image: {
  60750. source: "./media/characters/adelaide/feather.svg"
  60751. },
  60752. form: "anthro"
  60753. },
  60754. feral_side: {
  60755. height: math.unit(1, "meters"),
  60756. name: "Side",
  60757. image: {
  60758. source: "./media/characters/adelaide/feral-side.svg",
  60759. extra: 550/467,
  60760. bottom: 37/587
  60761. },
  60762. form: "feral",
  60763. default: true
  60764. },
  60765. feral_hand: {
  60766. height: math.unit(0.58, "feet"),
  60767. name: "Hand",
  60768. image: {
  60769. source: "./media/characters/adelaide/hand.svg"
  60770. },
  60771. form: "feral"
  60772. },
  60773. feral_foot: {
  60774. height: math.unit(1.2 * 259 / 314, "feet"),
  60775. name: "Foot",
  60776. image: {
  60777. source: "./media/characters/adelaide/foot.svg",
  60778. extra: 259/259,
  60779. bottom: 55/314
  60780. },
  60781. form: "feral"
  60782. },
  60783. feral_feather: {
  60784. height: math.unit(0.63, "feet"),
  60785. name: "Feather",
  60786. image: {
  60787. source: "./media/characters/adelaide/feather.svg"
  60788. },
  60789. form: "feral"
  60790. },
  60791. },
  60792. [
  60793. {
  60794. name: "Normal",
  60795. height: math.unit(1.5, "meters"),
  60796. form: "anthro",
  60797. default: true
  60798. },
  60799. {
  60800. name: "Normal",
  60801. height: math.unit(1, "meters"),
  60802. form: "feral",
  60803. default: true
  60804. },
  60805. ],
  60806. {
  60807. "anthro": {
  60808. name: "Anthro",
  60809. default: true
  60810. },
  60811. "feral": {
  60812. name: "Feral",
  60813. },
  60814. }
  60815. ))
  60816. characterMakers.push(() => makeCharacter(
  60817. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60818. {
  60819. front: {
  60820. height: math.unit(2.5, "meters"),
  60821. name: "Front",
  60822. image: {
  60823. source: "./media/characters/goa/front.svg",
  60824. extra: 1109/1013,
  60825. bottom: 150/1259
  60826. }
  60827. },
  60828. },
  60829. [
  60830. {
  60831. name: "Normal",
  60832. height: math.unit(2.5, "meters"),
  60833. default: true
  60834. },
  60835. ]
  60836. ))
  60837. characterMakers.push(() => makeCharacter(
  60838. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60839. {
  60840. front: {
  60841. height: math.unit(2, "meters"),
  60842. weight: math.unit(100, "kg"),
  60843. name: "Front",
  60844. image: {
  60845. source: "./media/characters/kiki-weavile/front.svg",
  60846. extra: 357/332,
  60847. bottom: 60/417
  60848. }
  60849. },
  60850. },
  60851. [
  60852. {
  60853. name: "Normal",
  60854. height: math.unit(2, "meters"),
  60855. default: true
  60856. },
  60857. ]
  60858. ))
  60859. characterMakers.push(() => makeCharacter(
  60860. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60861. {
  60862. side: {
  60863. height: math.unit(1.6, "meters"),
  60864. name: "Side",
  60865. image: {
  60866. source: "./media/characters/liza/side.svg",
  60867. extra: 943/915,
  60868. bottom: 72/1015
  60869. }
  60870. },
  60871. },
  60872. [
  60873. {
  60874. name: "Normal",
  60875. height: math.unit(1.6, "meters"),
  60876. default: true
  60877. },
  60878. ]
  60879. ))
  60880. characterMakers.push(() => makeCharacter(
  60881. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60882. {
  60883. side: {
  60884. height: math.unit(2.5, "meters"),
  60885. preyCapacity: math.unit(1, "people"),
  60886. name: "Side",
  60887. image: {
  60888. source: "./media/characters/persephone-sweetbreath/side.svg",
  60889. extra: 796/700,
  60890. bottom: 44/840
  60891. }
  60892. },
  60893. sideVore: {
  60894. height: math.unit(2.5, "meters"),
  60895. preyCapacity: math.unit(1, "people"),
  60896. name: "Side (Full)",
  60897. image: {
  60898. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60899. extra: 796/700,
  60900. bottom: 44/840
  60901. }
  60902. },
  60903. },
  60904. [
  60905. {
  60906. name: "Normal",
  60907. height: math.unit(2.5, "meters"),
  60908. default: true
  60909. },
  60910. ]
  60911. ))
  60912. characterMakers.push(() => makeCharacter(
  60913. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60914. {
  60915. front: {
  60916. height: math.unit(32, "meters"),
  60917. name: "Front",
  60918. image: {
  60919. source: "./media/characters/pierce/front.svg",
  60920. extra: 1695/1475,
  60921. bottom: 185/1880
  60922. }
  60923. },
  60924. side: {
  60925. height: math.unit(32, "meters"),
  60926. name: "Side",
  60927. image: {
  60928. source: "./media/characters/pierce/side.svg",
  60929. extra: 974/859,
  60930. bottom: 43/1017
  60931. }
  60932. },
  60933. frontWingless: {
  60934. height: math.unit(32, "meters"),
  60935. name: "Front (Wingless)",
  60936. image: {
  60937. source: "./media/characters/pierce/front-wingless.svg",
  60938. extra: 1695/1475,
  60939. bottom: 185/1880
  60940. }
  60941. },
  60942. sideWingless: {
  60943. height: math.unit(32, "meters"),
  60944. name: "Side (Wingless)",
  60945. image: {
  60946. source: "./media/characters/pierce/side-wingless.svg",
  60947. extra: 974/859,
  60948. bottom: 43/1017
  60949. }
  60950. },
  60951. maw: {
  60952. height: math.unit(19.3, "meters"),
  60953. name: "Maw",
  60954. image: {
  60955. source: "./media/characters/pierce/maw.svg"
  60956. }
  60957. },
  60958. },
  60959. [
  60960. {
  60961. name: "Small",
  60962. height: math.unit(8.5, "meters")
  60963. },
  60964. {
  60965. name: "Normal",
  60966. height: math.unit(32, "meters"),
  60967. default: true
  60968. },
  60969. ]
  60970. ))
  60971. characterMakers.push(() => makeCharacter(
  60972. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60973. {
  60974. front: {
  60975. height: math.unit(2.3, "meters"),
  60976. weight: math.unit(165, "kg"),
  60977. name: "Front",
  60978. image: {
  60979. source: "./media/characters/shira/front.svg",
  60980. extra: 924/919,
  60981. bottom: 17/941
  60982. },
  60983. form: "cobra",
  60984. default: true
  60985. },
  60986. back: {
  60987. height: math.unit(2.3, "meters"),
  60988. weight: math.unit(165, "kg"),
  60989. name: "Back",
  60990. image: {
  60991. source: "./media/characters/shira/back.svg",
  60992. extra: 928/922,
  60993. bottom: 18/946
  60994. },
  60995. form: "cobra"
  60996. },
  60997. frontLewd: {
  60998. height: math.unit(2.3, "meters"),
  60999. weight: math.unit(165, "kg"),
  61000. name: "Front (Lewd)",
  61001. image: {
  61002. source: "./media/characters/shira/front-lewd.svg",
  61003. extra: 924/919,
  61004. bottom: 17/941
  61005. },
  61006. form: "cobra"
  61007. },
  61008. backLewd: {
  61009. height: math.unit(2.3, "meters"),
  61010. weight: math.unit(165, "kg"),
  61011. name: "Back (Lewd)",
  61012. image: {
  61013. source: "./media/characters/shira/back-lewd.svg",
  61014. extra: 928/922,
  61015. bottom: 18/946
  61016. },
  61017. form: "cobra"
  61018. },
  61019. maw: {
  61020. height: math.unit(1.14, "feet"),
  61021. name: "Maw",
  61022. image: {
  61023. source: "./media/characters/shira/maw.svg"
  61024. },
  61025. form: "cobra"
  61026. },
  61027. magma_front: {
  61028. height: math.unit(2.3, "meters"),
  61029. weight: math.unit(165, "kg"),
  61030. name: "Front",
  61031. image: {
  61032. source: "./media/characters/shira/magma-front.svg",
  61033. extra: 1870/1693,
  61034. bottom: 24/1894
  61035. },
  61036. form: "magma",
  61037. },
  61038. magma_back: {
  61039. height: math.unit(2.3, "meters"),
  61040. weight: math.unit(165, "kg"),
  61041. name: "Back",
  61042. image: {
  61043. source: "./media/characters/shira/magma-back.svg",
  61044. extra: 1918/1756,
  61045. bottom: 46/1964
  61046. },
  61047. form: "magma",
  61048. },
  61049. },
  61050. [
  61051. {
  61052. name: "Incognito",
  61053. height: math.unit(2.3, "meters"),
  61054. allForms: true
  61055. },
  61056. {
  61057. name: "Home Size",
  61058. height: math.unit(150, "meters"),
  61059. default: true,
  61060. allForms: true
  61061. },
  61062. {
  61063. name: "Macro",
  61064. height: math.unit(2, "km"),
  61065. allForms: true
  61066. },
  61067. {
  61068. name: "Mega",
  61069. height: math.unit(30, "km"),
  61070. allForms: true
  61071. },
  61072. {
  61073. name: "Giga",
  61074. height: math.unit(450, "km"),
  61075. allForms: true
  61076. },
  61077. {
  61078. name: "Giga+",
  61079. height: math.unit(3000, "km"),
  61080. allForms: true
  61081. },
  61082. {
  61083. name: "Giga++",
  61084. height: math.unit(6000, "km"),
  61085. allForms: true
  61086. },
  61087. {
  61088. name: "Terra",
  61089. height: math.unit(80000, "km"),
  61090. allForms: true
  61091. },
  61092. {
  61093. name: "Terra+",
  61094. height: math.unit(350000, "km"),
  61095. allForms: true
  61096. },
  61097. {
  61098. name: "Solar",
  61099. height: math.unit(1e6, "km"),
  61100. allForms: true
  61101. },
  61102. ],
  61103. {
  61104. "cobra": {
  61105. name: "Cobra",
  61106. default: true
  61107. },
  61108. "magma": {
  61109. name: "Magma Dragon",
  61110. },
  61111. }
  61112. ))
  61113. characterMakers.push(() => makeCharacter(
  61114. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  61115. {
  61116. front: {
  61117. height: math.unit(2, "meters"),
  61118. weight: math.unit(160, "kg"),
  61119. name: "Front",
  61120. image: {
  61121. source: "./media/characters/daxerios/front.svg",
  61122. extra: 1334/1277,
  61123. bottom: 45/1379
  61124. }
  61125. },
  61126. frontLewd: {
  61127. height: math.unit(2, "meters"),
  61128. weight: math.unit(160, "kg"),
  61129. name: "Front (Lewd)",
  61130. image: {
  61131. source: "./media/characters/daxerios/front-lewd.svg",
  61132. extra: 1334/1277,
  61133. bottom: 45/1379
  61134. }
  61135. },
  61136. dick: {
  61137. height: math.unit(2.35, "feet"),
  61138. name: "Dick",
  61139. image: {
  61140. source: "./media/characters/daxerios/dick.svg"
  61141. }
  61142. },
  61143. },
  61144. [
  61145. {
  61146. name: "\"Small\"",
  61147. height: math.unit(5, "meters")
  61148. },
  61149. {
  61150. name: "Original Size",
  61151. height: math.unit(500, "meters"),
  61152. default: true
  61153. },
  61154. {
  61155. name: "Mega",
  61156. height: math.unit(2, "km")
  61157. },
  61158. {
  61159. name: "Mega+",
  61160. height: math.unit(35, "km")
  61161. },
  61162. {
  61163. name: "Giga",
  61164. height: math.unit(250, "km")
  61165. },
  61166. {
  61167. name: "Giga+",
  61168. height: math.unit(3000, "km")
  61169. },
  61170. {
  61171. name: "Terra",
  61172. height: math.unit(25000, "km")
  61173. },
  61174. {
  61175. name: "Terra+",
  61176. height: math.unit(300000, "km")
  61177. },
  61178. {
  61179. name: "Solar",
  61180. height: math.unit(1e6, "km")
  61181. },
  61182. ]
  61183. ))
  61184. characterMakers.push(() => makeCharacter(
  61185. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  61186. {
  61187. front: {
  61188. height: math.unit(8 + 4/12, "feet"),
  61189. weight: math.unit(464, "lb"),
  61190. name: "Front",
  61191. image: {
  61192. source: "./media/characters/caveat/front.svg",
  61193. extra: 1861/1678,
  61194. bottom: 40/1901
  61195. }
  61196. },
  61197. },
  61198. [
  61199. {
  61200. name: "Normal",
  61201. height: math.unit(8 + 4/12, "feet"),
  61202. default: true
  61203. },
  61204. ]
  61205. ))
  61206. characterMakers.push(() => makeCharacter(
  61207. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  61208. {
  61209. front: {
  61210. height: math.unit(12, "feet"),
  61211. weight: math.unit(1800, "lb"),
  61212. name: "Front",
  61213. image: {
  61214. source: "./media/characters/centbair/front.svg",
  61215. extra: 781/663,
  61216. bottom: 25/806
  61217. }
  61218. },
  61219. frontNsfw: {
  61220. height: math.unit(12, "feet"),
  61221. weight: math.unit(1800, "lb"),
  61222. name: "Front (NSFW)",
  61223. image: {
  61224. source: "./media/characters/centbair/front-nsfw.svg",
  61225. extra: 781/663,
  61226. bottom: 25/806
  61227. }
  61228. },
  61229. back: {
  61230. height: math.unit(12, "feet"),
  61231. weight: math.unit(1800, "lb"),
  61232. name: "Back",
  61233. image: {
  61234. source: "./media/characters/centbair/back.svg",
  61235. extra: 808/761,
  61236. bottom: 19/827
  61237. }
  61238. },
  61239. dick: {
  61240. height: math.unit(6.5, "feet"),
  61241. name: "Dick",
  61242. image: {
  61243. source: "./media/characters/centbair/dick.svg"
  61244. }
  61245. },
  61246. slit: {
  61247. height: math.unit(3.25, "feet"),
  61248. name: "Slit",
  61249. image: {
  61250. source: "./media/characters/centbair/slit.svg"
  61251. }
  61252. },
  61253. },
  61254. [
  61255. {
  61256. name: "Normal",
  61257. height: math.unit(12, "feet"),
  61258. default: true
  61259. },
  61260. ]
  61261. ))
  61262. characterMakers.push(() => makeCharacter(
  61263. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  61264. {
  61265. front: {
  61266. height: math.unit(5 + 7/12, "feet"),
  61267. name: "Front",
  61268. image: {
  61269. source: "./media/characters/andy/front.svg",
  61270. extra: 634/588,
  61271. bottom: 36/670
  61272. },
  61273. extraAttributes: {
  61274. "pawLength": {
  61275. name: "Paw Length",
  61276. power: 1,
  61277. type: "length",
  61278. base: math.unit(1, "feet")
  61279. },
  61280. }
  61281. },
  61282. side: {
  61283. height: math.unit(5 + 7/12, "feet"),
  61284. name: "Side",
  61285. image: {
  61286. source: "./media/characters/andy/side.svg",
  61287. extra: 641/596,
  61288. bottom: 34/675
  61289. },
  61290. extraAttributes: {
  61291. "pawLength": {
  61292. name: "Paw Length",
  61293. power: 1,
  61294. type: "length",
  61295. base: math.unit(1, "feet")
  61296. },
  61297. }
  61298. },
  61299. back: {
  61300. height: math.unit(5 + 7/12, "feet"),
  61301. name: "Back",
  61302. image: {
  61303. source: "./media/characters/andy/back.svg",
  61304. extra: 618/583,
  61305. bottom: 39/657
  61306. },
  61307. extraAttributes: {
  61308. "pawLength": {
  61309. name: "Paw Length",
  61310. power: 1,
  61311. type: "length",
  61312. base: math.unit(1, "feet")
  61313. },
  61314. }
  61315. },
  61316. paw: {
  61317. height: math.unit(1.13, "feet"),
  61318. name: "Paw",
  61319. image: {
  61320. source: "./media/characters/andy/paw.svg"
  61321. }
  61322. },
  61323. },
  61324. [
  61325. {
  61326. name: "Micro",
  61327. height: math.unit(4, "inches")
  61328. },
  61329. {
  61330. name: "Normal",
  61331. height: math.unit(5 + 7/12, "feet"),
  61332. default: true
  61333. },
  61334. {
  61335. name: "Macro",
  61336. height: math.unit(390.42, "feet")
  61337. },
  61338. ]
  61339. ))
  61340. characterMakers.push(() => makeCharacter(
  61341. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  61342. {
  61343. front: {
  61344. height: math.unit(7, "feet"),
  61345. weight: math.unit(250, "lb"),
  61346. name: "Front",
  61347. image: {
  61348. source: "./media/characters/vix-titan/front.svg",
  61349. extra: 460/428,
  61350. bottom: 15/475
  61351. },
  61352. extraAttributes: {
  61353. "pawWidth": {
  61354. name: "Paw Width",
  61355. power: 1,
  61356. type: "length",
  61357. base: math.unit(0.75, "feet")
  61358. },
  61359. }
  61360. },
  61361. },
  61362. [
  61363. {
  61364. name: "Normal",
  61365. height: math.unit(7, "feet"),
  61366. default: true
  61367. },
  61368. {
  61369. name: "Giant",
  61370. height: math.unit(1500, "feet")
  61371. },
  61372. {
  61373. name: "Mega",
  61374. height: math.unit(10, "miles")
  61375. },
  61376. {
  61377. name: "Giga",
  61378. height: math.unit(150, "miles")
  61379. },
  61380. {
  61381. name: "Tera",
  61382. height: math.unit(144000, "miles")
  61383. },
  61384. ]
  61385. ))
  61386. characterMakers.push(() => makeCharacter(
  61387. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  61388. {
  61389. front: {
  61390. height: math.unit(6 + 2/12, "feet"),
  61391. name: "Front",
  61392. image: {
  61393. source: "./media/characters/reiku/front.svg",
  61394. extra: 1910/1757,
  61395. bottom: 103/2013
  61396. },
  61397. extraAttributes: {
  61398. "thighThickness": {
  61399. name: "Thigh Thickness",
  61400. power: 1,
  61401. type: "length",
  61402. base: math.unit(1.12, "feet")
  61403. },
  61404. "assThickness": {
  61405. name: "Ass Thickness",
  61406. power: 1,
  61407. type: "length",
  61408. base: math.unit(1.12*2, "feet")
  61409. },
  61410. }
  61411. },
  61412. side: {
  61413. height: math.unit(6 + 2/12, "feet"),
  61414. name: "Side",
  61415. image: {
  61416. source: "./media/characters/reiku/side.svg",
  61417. extra: 1846/1748,
  61418. bottom: 99/1945
  61419. },
  61420. extraAttributes: {
  61421. "thighThickness": {
  61422. name: "Thigh Thickness",
  61423. power: 1,
  61424. type: "length",
  61425. base: math.unit(1.12, "feet")
  61426. },
  61427. "assThickness": {
  61428. name: "Ass Thickness",
  61429. power: 1,
  61430. type: "length",
  61431. base: math.unit(1.12*2, "feet")
  61432. },
  61433. }
  61434. },
  61435. back: {
  61436. height: math.unit(6 + 2/12, "feet"),
  61437. name: "Back",
  61438. image: {
  61439. source: "./media/characters/reiku/back.svg",
  61440. extra: 1941/1786,
  61441. bottom: 34/1975
  61442. },
  61443. extraAttributes: {
  61444. "thighThickness": {
  61445. name: "Thigh Thickness",
  61446. power: 1,
  61447. type: "length",
  61448. base: math.unit(1.12, "feet")
  61449. },
  61450. "assThickness": {
  61451. name: "Ass Thickness",
  61452. power: 1,
  61453. type: "length",
  61454. base: math.unit(1.12*2, "feet")
  61455. },
  61456. }
  61457. },
  61458. head: {
  61459. height: math.unit(1.8, "feet"),
  61460. name: "Head",
  61461. image: {
  61462. source: "./media/characters/reiku/head.svg"
  61463. }
  61464. },
  61465. tailTop: {
  61466. height: math.unit(8.4, "feet"),
  61467. name: "Tail (Top)",
  61468. image: {
  61469. source: "./media/characters/reiku/tail-top.svg"
  61470. }
  61471. },
  61472. tailBottom: {
  61473. height: math.unit(8.4, "feet"),
  61474. name: "Tail (Bottom)",
  61475. image: {
  61476. source: "./media/characters/reiku/tail-bottom.svg"
  61477. }
  61478. },
  61479. foot: {
  61480. height: math.unit(2.6, "feet"),
  61481. name: "Foot",
  61482. image: {
  61483. source: "./media/characters/reiku/foot.svg"
  61484. }
  61485. },
  61486. footCurled: {
  61487. height: math.unit(2.3, "feet"),
  61488. name: "Foot (Curled)",
  61489. image: {
  61490. source: "./media/characters/reiku/foot-curled.svg"
  61491. }
  61492. },
  61493. footSide: {
  61494. height: math.unit(1.26, "feet"),
  61495. name: "Foot (Side)",
  61496. image: {
  61497. source: "./media/characters/reiku/foot-side.svg"
  61498. }
  61499. },
  61500. },
  61501. [
  61502. {
  61503. name: "Normal",
  61504. height: math.unit(6 + 2/12, "feet"),
  61505. default: true
  61506. },
  61507. ]
  61508. ))
  61509. characterMakers.push(() => makeCharacter(
  61510. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61511. {
  61512. front: {
  61513. height: math.unit(7, "feet"),
  61514. weight: math.unit(500, "kg"),
  61515. name: "Front",
  61516. image: {
  61517. source: "./media/characters/cialda/front.svg",
  61518. extra: 912/745,
  61519. bottom: 55/967
  61520. }
  61521. },
  61522. },
  61523. [
  61524. {
  61525. name: "Normal",
  61526. height: math.unit(7, "feet"),
  61527. default: true
  61528. },
  61529. ]
  61530. ))
  61531. characterMakers.push(() => makeCharacter(
  61532. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61533. {
  61534. side: {
  61535. height: math.unit(6, "feet"),
  61536. weight: math.unit(600, "lb"),
  61537. preyCapacity: math.unit(25, "liters"),
  61538. name: "Side",
  61539. image: {
  61540. source: "./media/characters/darkkin/side.svg",
  61541. extra: 1597/1447,
  61542. bottom: 101/1698
  61543. }
  61544. },
  61545. },
  61546. [
  61547. {
  61548. name: "Canon Height",
  61549. height: math.unit(568, "feet"),
  61550. default: true
  61551. },
  61552. ]
  61553. ))
  61554. characterMakers.push(() => makeCharacter(
  61555. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61556. {
  61557. front: {
  61558. height: math.unit(6, "feet"),
  61559. weight: math.unit(1500, "lb"),
  61560. preyCapacity: math.unit(3, "people"),
  61561. name: "Front",
  61562. image: {
  61563. source: "./media/characters/livnia/front.svg",
  61564. extra: 934/932,
  61565. bottom: 83/1017
  61566. }
  61567. },
  61568. back: {
  61569. height: math.unit(6, "feet"),
  61570. weight: math.unit(1500, "lb"),
  61571. preyCapacity: math.unit(3, "people"),
  61572. name: "Back",
  61573. image: {
  61574. source: "./media/characters/livnia/back.svg",
  61575. extra: 916/915,
  61576. bottom: 58/974
  61577. }
  61578. },
  61579. head: {
  61580. height: math.unit(1.53, "feet"),
  61581. name: "Head",
  61582. image: {
  61583. source: "./media/characters/livnia/head.svg"
  61584. }
  61585. },
  61586. maw: {
  61587. height: math.unit(0.78, "feet"),
  61588. name: "Maw",
  61589. image: {
  61590. source: "./media/characters/livnia/maw.svg"
  61591. }
  61592. },
  61593. genitals: {
  61594. height: math.unit(0.35, "feet"),
  61595. name: "Genitals",
  61596. image: {
  61597. source: "./media/characters/livnia/genitals.svg"
  61598. }
  61599. },
  61600. },
  61601. [
  61602. {
  61603. name: "Normal",
  61604. height: math.unit(1000, "feet"),
  61605. default: true
  61606. },
  61607. ]
  61608. ))
  61609. characterMakers.push(() => makeCharacter(
  61610. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61611. {
  61612. front: {
  61613. height: math.unit(4, "feet"),
  61614. weight: math.unit(73, "lb"),
  61615. name: "Front",
  61616. image: {
  61617. source: "./media/characters/hayaku/front.svg",
  61618. extra: 1011/888,
  61619. bottom: 33/1044
  61620. }
  61621. },
  61622. back: {
  61623. height: math.unit(4, "feet"),
  61624. weight: math.unit(73, "lb"),
  61625. name: "Back",
  61626. image: {
  61627. source: "./media/characters/hayaku/back.svg",
  61628. extra: 1040/930,
  61629. bottom: 20/1060
  61630. }
  61631. },
  61632. },
  61633. [
  61634. {
  61635. name: "Normal",
  61636. height: math.unit(4, "feet"),
  61637. default: true
  61638. },
  61639. ]
  61640. ))
  61641. characterMakers.push(() => makeCharacter(
  61642. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61643. {
  61644. front: {
  61645. height: math.unit(6 + 7/12, "feet"),
  61646. weight: math.unit(300, "lb"),
  61647. name: "Front",
  61648. image: {
  61649. source: "./media/characters/athena-bryzant/front.svg",
  61650. extra: 870/835,
  61651. bottom: 33/903
  61652. }
  61653. },
  61654. back: {
  61655. height: math.unit(6 + 7/12, "feet"),
  61656. weight: math.unit(300, "lb"),
  61657. name: "Back",
  61658. image: {
  61659. source: "./media/characters/athena-bryzant/back.svg",
  61660. extra: 858/823,
  61661. bottom: 30/888
  61662. }
  61663. },
  61664. head: {
  61665. height: math.unit(2.38, "feet"),
  61666. name: "Head",
  61667. image: {
  61668. source: "./media/characters/athena-bryzant/head.svg"
  61669. }
  61670. },
  61671. wings: {
  61672. height: math.unit(2.85, "feet"),
  61673. name: "Wings",
  61674. image: {
  61675. source: "./media/characters/athena-bryzant/wings.svg"
  61676. }
  61677. },
  61678. },
  61679. [
  61680. {
  61681. name: "Normal",
  61682. height: math.unit(6 + 7/12, "feet"),
  61683. default: true
  61684. },
  61685. {
  61686. name: "Big",
  61687. height: math.unit(8, "feet")
  61688. },
  61689. {
  61690. name: "Very Big",
  61691. height: math.unit(11, "feet")
  61692. },
  61693. ]
  61694. ))
  61695. characterMakers.push(() => makeCharacter(
  61696. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61697. {
  61698. side: {
  61699. height: math.unit(3, "meters"),
  61700. weight: math.unit(7500, "kg"),
  61701. preyCapacity: math.unit(1e12, "people"),
  61702. name: "Side",
  61703. image: {
  61704. source: "./media/characters/zel-kesh/side.svg",
  61705. extra: 910/407,
  61706. bottom: 147/1057
  61707. }
  61708. },
  61709. },
  61710. [
  61711. {
  61712. name: "Normal",
  61713. height: math.unit(3, "meters"),
  61714. default: true
  61715. },
  61716. ]
  61717. ))
  61718. characterMakers.push(() => makeCharacter(
  61719. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61720. {
  61721. front: {
  61722. height: math.unit(2, "meters"),
  61723. weight: math.unit(95, "kg"),
  61724. name: "Front",
  61725. image: {
  61726. source: "./media/characters/kane-fox/front.svg",
  61727. extra: 945/888,
  61728. bottom: 27/972
  61729. }
  61730. },
  61731. back: {
  61732. height: math.unit(2, "meters"),
  61733. weight: math.unit(95, "kg"),
  61734. name: "Back",
  61735. image: {
  61736. source: "./media/characters/kane-fox/back.svg",
  61737. extra: 959/914,
  61738. bottom: 15/974
  61739. }
  61740. },
  61741. frontLewd: {
  61742. height: math.unit(2, "meters"),
  61743. weight: math.unit(95, "kg"),
  61744. name: "Front (Lewd)",
  61745. image: {
  61746. source: "./media/characters/kane-fox/front-lewd.svg",
  61747. extra: 945/888,
  61748. bottom: 27/972
  61749. }
  61750. },
  61751. },
  61752. [
  61753. {
  61754. name: "Home Size",
  61755. height: math.unit(2, "meters"),
  61756. default: true
  61757. },
  61758. {
  61759. name: "Macro",
  61760. height: math.unit(200, "meters")
  61761. },
  61762. {
  61763. name: "Small Mega",
  61764. height: math.unit(3, "km")
  61765. },
  61766. {
  61767. name: "Mega",
  61768. height: math.unit(50, "km")
  61769. },
  61770. {
  61771. name: "Giga",
  61772. height: math.unit(200, "km")
  61773. },
  61774. {
  61775. name: "Giga+",
  61776. height: math.unit(2500, "km")
  61777. },
  61778. {
  61779. name: "Terra",
  61780. height: math.unit(70000, "km")
  61781. },
  61782. {
  61783. name: "Terra+",
  61784. height: math.unit(150000, "km")
  61785. },
  61786. {
  61787. name: "Terra++",
  61788. height: math.unit(400000, "km")
  61789. },
  61790. ]
  61791. ))
  61792. characterMakers.push(() => makeCharacter(
  61793. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61794. {
  61795. otter_front: {
  61796. height: math.unit(1.8, "meters"),
  61797. weight: math.unit(90, "kg"),
  61798. name: "Front",
  61799. image: {
  61800. source: "./media/characters/ayranus/otter-front.svg",
  61801. extra: 468/452,
  61802. bottom: 43/511
  61803. },
  61804. form: "otter",
  61805. },
  61806. otter_frontLewd: {
  61807. height: math.unit(1.8, "meters"),
  61808. weight: math.unit(90, "kg"),
  61809. name: "Front (Lewd)",
  61810. image: {
  61811. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61812. extra: 468/452,
  61813. bottom: 43/511
  61814. },
  61815. form: "otter",
  61816. },
  61817. lionbat_front: {
  61818. height: math.unit(1.8, "meters"),
  61819. weight: math.unit(90, "kg"),
  61820. name: "Front (Lewd)",
  61821. image: {
  61822. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61823. extra: 797/740,
  61824. bottom: 78/875
  61825. },
  61826. form: "lionbat",
  61827. },
  61828. paw: {
  61829. height: math.unit(1.5, "feet"),
  61830. name: "Paw",
  61831. image: {
  61832. source: "./media/characters/ayranus/paw.svg"
  61833. },
  61834. },
  61835. },
  61836. [
  61837. {
  61838. name: "Incognito",
  61839. height: math.unit(1.8, "meters"),
  61840. allForms: true
  61841. },
  61842. {
  61843. name: "Macro",
  61844. height: math.unit(60, "meters"),
  61845. allForms: true
  61846. },
  61847. {
  61848. name: "Macro+",
  61849. height: math.unit(200, "meters"),
  61850. allForms: true
  61851. },
  61852. {
  61853. name: "Mega",
  61854. height: math.unit(35, "km"),
  61855. allForms: true
  61856. },
  61857. {
  61858. name: "Giga",
  61859. height: math.unit(220, "km"),
  61860. allForms: true
  61861. },
  61862. {
  61863. name: "Giga+",
  61864. height: math.unit(1500, "km"),
  61865. allForms: true
  61866. },
  61867. {
  61868. name: "Terra",
  61869. height: math.unit(13000, "km"),
  61870. allForms: true
  61871. },
  61872. {
  61873. name: "Terra+",
  61874. height: math.unit(500000, "km"),
  61875. allForms: true
  61876. },
  61877. {
  61878. name: "Galactic",
  61879. height: math.unit(486080, "parsecs"),
  61880. default: true,
  61881. allForms: true
  61882. },
  61883. ],
  61884. {
  61885. "otter": {
  61886. name: "Otter",
  61887. default: true
  61888. },
  61889. "lionbat": {
  61890. name: "Lionbat",
  61891. },
  61892. }
  61893. ))
  61894. characterMakers.push(() => makeCharacter(
  61895. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61896. {
  61897. front: {
  61898. height: math.unit(7 + 4/12, "feet"),
  61899. weight: math.unit(400, "lb"),
  61900. name: "Front",
  61901. image: {
  61902. source: "./media/characters/proxy/front.svg",
  61903. extra: 1605/1542,
  61904. bottom: 55/1660
  61905. }
  61906. },
  61907. side: {
  61908. height: math.unit(7 + 4/12, "feet"),
  61909. weight: math.unit(400, "lb"),
  61910. name: "Side",
  61911. image: {
  61912. source: "./media/characters/proxy/side.svg",
  61913. extra: 794/759,
  61914. bottom: 6/800
  61915. }
  61916. },
  61917. hand: {
  61918. height: math.unit(1.54, "feet"),
  61919. name: "Hand",
  61920. image: {
  61921. source: "./media/characters/proxy/hand.svg"
  61922. }
  61923. },
  61924. paw: {
  61925. height: math.unit(1.53, "feet"),
  61926. name: "Paw",
  61927. image: {
  61928. source: "./media/characters/proxy/paw.svg"
  61929. }
  61930. },
  61931. maw: {
  61932. height: math.unit(1.9, "feet"),
  61933. name: "Maw",
  61934. image: {
  61935. source: "./media/characters/proxy/maw.svg"
  61936. }
  61937. },
  61938. },
  61939. [
  61940. {
  61941. name: "Normal",
  61942. height: math.unit(7 + 4/12, "feet"),
  61943. default: true
  61944. },
  61945. ]
  61946. ))
  61947. characterMakers.push(() => makeCharacter(
  61948. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61949. {
  61950. front: {
  61951. height: math.unit(4, "meters"),
  61952. name: "Front",
  61953. image: {
  61954. source: "./media/characters/crocozilla/front.svg",
  61955. extra: 1790/1742,
  61956. bottom: 78/1868
  61957. }
  61958. },
  61959. },
  61960. [
  61961. {
  61962. name: "Normal",
  61963. height: math.unit(4, "meters"),
  61964. default: true
  61965. },
  61966. ]
  61967. ))
  61968. characterMakers.push(() => makeCharacter(
  61969. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61970. {
  61971. front: {
  61972. height: math.unit(1.8, "meters"),
  61973. weight: math.unit(120, "kg"),
  61974. name: "Front",
  61975. image: {
  61976. source: "./media/characters/kurz/front.svg",
  61977. extra: 1960/1824,
  61978. bottom: 41/2001
  61979. }
  61980. },
  61981. back: {
  61982. height: math.unit(1.8, "meters"),
  61983. weight: math.unit(120, "kg"),
  61984. name: "Back",
  61985. image: {
  61986. source: "./media/characters/kurz/back.svg",
  61987. extra: 1906/1787,
  61988. bottom: 60/1966
  61989. }
  61990. },
  61991. frontLewd: {
  61992. height: math.unit(1.8, "meters"),
  61993. weight: math.unit(120, "kg"),
  61994. name: "Front (Lewd)",
  61995. image: {
  61996. source: "./media/characters/kurz/front-lewd.svg",
  61997. extra: 1960/1824,
  61998. bottom: 41/2001
  61999. }
  62000. },
  62001. maw: {
  62002. height: math.unit(0.69, "meters"),
  62003. name: "Maw",
  62004. image: {
  62005. source: "./media/characters/kurz/maw.svg"
  62006. }
  62007. },
  62008. },
  62009. [
  62010. {
  62011. name: "Original Size",
  62012. height: math.unit(1.8, "meters")
  62013. },
  62014. {
  62015. name: "Incognito Size",
  62016. height: math.unit(2.4, "meters"),
  62017. default: true
  62018. },
  62019. {
  62020. name: "Macro",
  62021. height: math.unit(30, "meters")
  62022. },
  62023. {
  62024. name: "Macro+",
  62025. height: math.unit(250, "meters")
  62026. },
  62027. {
  62028. name: "Mega",
  62029. height: math.unit(2, "km")
  62030. },
  62031. {
  62032. name: "Mega+",
  62033. height: math.unit(35, "km")
  62034. },
  62035. {
  62036. name: "Mega++",
  62037. height: math.unit(75, "km")
  62038. },
  62039. {
  62040. name: "Giga",
  62041. height: math.unit(250, "km")
  62042. },
  62043. {
  62044. name: "Terra",
  62045. height: math.unit(15000, "km")
  62046. },
  62047. {
  62048. name: "Terra+",
  62049. height: math.unit(2250000, "km")
  62050. },
  62051. ]
  62052. ))
  62053. characterMakers.push(() => makeCharacter(
  62054. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  62055. {
  62056. front: {
  62057. height: math.unit(16 + 3/12, "feet"),
  62058. weight: math.unit(3575, "lb"),
  62059. name: "Front",
  62060. image: {
  62061. source: "./media/characters/nikita/front.svg",
  62062. extra: 1064/955,
  62063. bottom: 47/1111
  62064. }
  62065. },
  62066. },
  62067. [
  62068. {
  62069. name: "Normal",
  62070. height: math.unit(16 + 3/12, "feet"),
  62071. default: true
  62072. },
  62073. {
  62074. name: "Big",
  62075. height: math.unit(21, "feet")
  62076. },
  62077. {
  62078. name: "Biggest",
  62079. height: math.unit(50, "feet")
  62080. },
  62081. ]
  62082. ))
  62083. characterMakers.push(() => makeCharacter(
  62084. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  62085. {
  62086. front: {
  62087. height: math.unit(1.92, "m"),
  62088. weight: math.unit(76, "kg"),
  62089. name: "Front",
  62090. image: {
  62091. source: "./media/characters/kyara/front.svg",
  62092. extra: 1550/1438,
  62093. bottom: 139/1689
  62094. }
  62095. },
  62096. back: {
  62097. height: math.unit(1.92, "m"),
  62098. weight: math.unit(76, "kg"),
  62099. name: "Back",
  62100. image: {
  62101. source: "./media/characters/kyara/back.svg",
  62102. extra: 1523/1427,
  62103. bottom: 83/1606
  62104. }
  62105. },
  62106. head: {
  62107. height: math.unit(1.22, "feet"),
  62108. name: "Head",
  62109. image: {
  62110. source: "./media/characters/kyara/head.svg"
  62111. }
  62112. },
  62113. maw: {
  62114. height: math.unit(0.73, "feet"),
  62115. name: "Maw",
  62116. image: {
  62117. source: "./media/characters/kyara/maw.svg"
  62118. }
  62119. },
  62120. paws: {
  62121. height: math.unit(0.95, "feet"),
  62122. name: "Paws",
  62123. image: {
  62124. source: "./media/characters/kyara/paws.svg"
  62125. }
  62126. },
  62127. },
  62128. [
  62129. {
  62130. name: "Normal",
  62131. height: math.unit(1.92, "meters"),
  62132. default: true
  62133. },
  62134. {
  62135. name: "Mini Macro",
  62136. height: math.unit(192, "meters")
  62137. },
  62138. {
  62139. name: "Macro",
  62140. height: math.unit(480, "meters")
  62141. },
  62142. {
  62143. name: "Mega Macro",
  62144. height: math.unit(1440, "meters")
  62145. },
  62146. ]
  62147. ))
  62148. characterMakers.push(() => makeCharacter(
  62149. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  62150. {
  62151. front: {
  62152. height: math.unit(6, "feet"),
  62153. weight: math.unit(160, "lbs"),
  62154. preyCapacity: math.unit(0.05, "people"),
  62155. name: "Front",
  62156. image: {
  62157. source: "./media/characters/layla-amari/front.svg",
  62158. extra: 1922/1723,
  62159. bottom: 90/2012
  62160. }
  62161. },
  62162. back: {
  62163. height: math.unit(6, "feet"),
  62164. weight: math.unit(160, "lbs"),
  62165. preyCapacity: math.unit(0.05, "people"),
  62166. name: "Back",
  62167. image: {
  62168. source: "./media/characters/layla-amari/back.svg",
  62169. extra: 1917/1718,
  62170. bottom: 50/1967
  62171. }
  62172. },
  62173. frontDressed: {
  62174. height: math.unit(6, "feet"),
  62175. weight: math.unit(160, "lbs"),
  62176. preyCapacity: math.unit(0.05, "people"),
  62177. name: "Front (Dressed)",
  62178. image: {
  62179. source: "./media/characters/layla-amari/front-dressed.svg",
  62180. extra: 1922/1723,
  62181. bottom: 90/2012
  62182. }
  62183. },
  62184. face: {
  62185. height: math.unit(0.93, "feet"),
  62186. name: "Face",
  62187. image: {
  62188. source: "./media/characters/layla-amari/face.svg"
  62189. }
  62190. },
  62191. hand: {
  62192. height: math.unit(0.66 , "feet"),
  62193. name: "Hand",
  62194. image: {
  62195. source: "./media/characters/layla-amari/hand.svg"
  62196. }
  62197. },
  62198. foot: {
  62199. height: math.unit(1, "feet"),
  62200. name: "Foot",
  62201. image: {
  62202. source: "./media/characters/layla-amari/foot.svg"
  62203. }
  62204. },
  62205. necklace: {
  62206. height: math.unit(0.32, "feet"),
  62207. name: "Necklace",
  62208. image: {
  62209. source: "./media/characters/layla-amari/necklace.svg"
  62210. }
  62211. },
  62212. nipple: {
  62213. height: math.unit(0.2, "feet"),
  62214. name: "Nipple",
  62215. image: {
  62216. source: "./media/characters/layla-amari/nipple.svg"
  62217. }
  62218. },
  62219. slit: {
  62220. height: math.unit(0.26, "feet"),
  62221. name: "Slit",
  62222. image: {
  62223. source: "./media/characters/layla-amari/slit.svg"
  62224. }
  62225. },
  62226. },
  62227. [
  62228. {
  62229. name: "Natural",
  62230. height: math.unit(825, "feet"),
  62231. default: true
  62232. },
  62233. {
  62234. name: "Enhanced",
  62235. height: math.unit(8250, "feet")
  62236. },
  62237. {
  62238. name: "Apparent Size",
  62239. height: math.unit(9.04363e+8, "meters")
  62240. },
  62241. ]
  62242. ))
  62243. characterMakers.push(() => makeCharacter(
  62244. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  62245. {
  62246. front: {
  62247. height: math.unit(1.3, "meters"),
  62248. name: "Front",
  62249. image: {
  62250. source: "./media/characters/percy/front.svg",
  62251. extra: 1444/1289,
  62252. bottom: 54/1498
  62253. }
  62254. },
  62255. },
  62256. [
  62257. {
  62258. name: "Normal",
  62259. height: math.unit(1.3, "meters"),
  62260. default: true
  62261. },
  62262. ]
  62263. ))
  62264. characterMakers.push(() => makeCharacter(
  62265. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  62266. {
  62267. side: {
  62268. height: math.unit(10, "meters"),
  62269. name: "Side",
  62270. image: {
  62271. source: "./media/characters/grev/side.svg",
  62272. extra: 653/266,
  62273. bottom: 77/730
  62274. }
  62275. },
  62276. head: {
  62277. height: math.unit(16.2, "m"),
  62278. name: "Head",
  62279. image: {
  62280. source: "./media/characters/grev/head.svg"
  62281. }
  62282. },
  62283. dick: {
  62284. height: math.unit(2.8135932034, "m"),
  62285. name: "Dick",
  62286. image: {
  62287. source: "./media/characters/grev/dick.svg"
  62288. }
  62289. },
  62290. },
  62291. [
  62292. {
  62293. name: "Friend-Sized",
  62294. height: math.unit(80, "cm")
  62295. },
  62296. {
  62297. name: "Normal",
  62298. height: math.unit(10, "meters"),
  62299. default: true
  62300. },
  62301. {
  62302. name: "Macro",
  62303. height: math.unit(200, "meters")
  62304. },
  62305. ]
  62306. ))
  62307. characterMakers.push(() => makeCharacter(
  62308. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  62309. {
  62310. front: {
  62311. height: math.unit(19.75, "feet"),
  62312. weight: math.unit(20000, "lb"),
  62313. name: "Front",
  62314. image: {
  62315. source: "./media/characters/azuuca/front.svg",
  62316. extra: 1593/1511,
  62317. bottom: 55/1648
  62318. }
  62319. },
  62320. },
  62321. [
  62322. {
  62323. name: "Normal",
  62324. height: math.unit(19.75, "feet"),
  62325. default: true
  62326. },
  62327. ]
  62328. ))
  62329. characterMakers.push(() => makeCharacter(
  62330. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  62331. {
  62332. front: {
  62333. height: math.unit(15, "feet"),
  62334. weight: math.unit(1500, "lb"),
  62335. name: "Front",
  62336. image: {
  62337. source: "./media/characters/valuria/front.svg",
  62338. extra: 1588/1486,
  62339. bottom: 31/1619
  62340. }
  62341. },
  62342. },
  62343. [
  62344. {
  62345. name: "Normal",
  62346. height: math.unit(15, "feet"),
  62347. default: true
  62348. },
  62349. {
  62350. name: "Small",
  62351. height: math.unit(500, "feet")
  62352. },
  62353. {
  62354. name: "Macro",
  62355. height: math.unit(4000, "feet")
  62356. },
  62357. {
  62358. name: "Mega Macro",
  62359. height: math.unit(2000, "miles")
  62360. },
  62361. {
  62362. name: "Giga Macro",
  62363. height: math.unit(3e6, "miles")
  62364. },
  62365. ]
  62366. ))
  62367. characterMakers.push(() => makeCharacter(
  62368. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  62369. {
  62370. front: {
  62371. height: math.unit(3500, "solarradii"),
  62372. name: "Front",
  62373. image: {
  62374. source: "./media/characters/terigaia/front.svg",
  62375. extra: 1531/1451,
  62376. bottom: 98/1629
  62377. }
  62378. },
  62379. },
  62380. [
  62381. {
  62382. name: "Normal",
  62383. height: math.unit(3500, "solarradii"),
  62384. default: true
  62385. },
  62386. ]
  62387. ))
  62388. characterMakers.push(() => makeCharacter(
  62389. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  62390. {
  62391. front: {
  62392. height: math.unit(9.34, "feet"),
  62393. weight: math.unit(600, "lb"),
  62394. name: "Front",
  62395. image: {
  62396. source: "./media/characters/blair-blaziken/front.svg",
  62397. extra: 1557/1462,
  62398. bottom: 55/1612
  62399. }
  62400. },
  62401. },
  62402. [
  62403. {
  62404. name: "Normal",
  62405. height: math.unit(9.34, "feet"),
  62406. default: true
  62407. },
  62408. ]
  62409. ))
  62410. characterMakers.push(() => makeCharacter(
  62411. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  62412. {
  62413. pistrogre_front: {
  62414. height: math.unit(10, "feet"),
  62415. weight: math.unit(10, "tons"),
  62416. name: "Front",
  62417. image: {
  62418. source: "./media/characters/braxia/pistrogre-front.svg",
  62419. extra: 1531/1334,
  62420. bottom: 114/1645
  62421. },
  62422. form: "pistrogre",
  62423. default: true
  62424. },
  62425. human_front: {
  62426. height: math.unit(10, "feet"),
  62427. weight: math.unit(10, "tons"),
  62428. name: "Front",
  62429. image: {
  62430. source: "./media/characters/braxia/human-front.svg",
  62431. extra: 1574/1501,
  62432. bottom: 37/1611
  62433. },
  62434. form: "human",
  62435. default: true
  62436. },
  62437. },
  62438. [
  62439. {
  62440. name: "Normal",
  62441. height: math.unit(10, "feet"),
  62442. default: true,
  62443. allForms: true
  62444. },
  62445. {
  62446. name: "Macro",
  62447. height: math.unit(1000, "feet"),
  62448. allForms: true
  62449. },
  62450. {
  62451. name: "Mega Macro",
  62452. height: math.unit(100, "miles"),
  62453. allForms: true
  62454. },
  62455. {
  62456. name: "Cosmic",
  62457. height: math.unit(1000000, "lightyears"),
  62458. allForms: true
  62459. },
  62460. {
  62461. name: "ϐѮԆԬӁꭍϞԢ",
  62462. height: math.unit(1000, "multiverses"),
  62463. allForms: true
  62464. },
  62465. ],
  62466. {
  62467. "pistrogre": {
  62468. name: "Pistrogre",
  62469. default: true
  62470. },
  62471. "human": {
  62472. name: "Human",
  62473. },
  62474. }
  62475. ))
  62476. characterMakers.push(() => makeCharacter(
  62477. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62478. {
  62479. front: {
  62480. height: math.unit(6 + 1/12, "feet"),
  62481. weight: math.unit(280, "lb"),
  62482. name: "Front",
  62483. image: {
  62484. source: "./media/characters/kiriga-yato/front.svg",
  62485. extra: 445/394,
  62486. bottom: 11/456
  62487. }
  62488. },
  62489. },
  62490. [
  62491. {
  62492. name: "Descended",
  62493. height: math.unit(3, "feet")
  62494. },
  62495. {
  62496. name: "Average",
  62497. height: math.unit(6 + 1/12, "feet"),
  62498. default: true
  62499. },
  62500. {
  62501. name: "Ascended",
  62502. height: math.unit(9 + 2/12, "feet")
  62503. },
  62504. ]
  62505. ))
  62506. characterMakers.push(() => makeCharacter(
  62507. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62508. {
  62509. front: {
  62510. height: math.unit(6, "feet"),
  62511. weight: math.unit(150, "lb"),
  62512. name: "Front",
  62513. image: {
  62514. source: "./media/characters/kylie/front.svg",
  62515. extra: 1114/1046,
  62516. bottom: 65/1179
  62517. },
  62518. extraAttributes: {
  62519. "hoofSize": {
  62520. name: "Hoof Size",
  62521. power: 2,
  62522. type: "area",
  62523. base: math.unit(0.034, "m^2")
  62524. },
  62525. "footSize": {
  62526. name: "Foot Size",
  62527. power: 2,
  62528. type: "area",
  62529. base: math.unit(0.75, "m^2")
  62530. },
  62531. }
  62532. },
  62533. side: {
  62534. height: math.unit(6, "feet"),
  62535. weight: math.unit(150, "lb"),
  62536. name: "Side",
  62537. image: {
  62538. source: "./media/characters/kylie/side.svg",
  62539. extra: 1178/1110,
  62540. bottom: 21/1199
  62541. },
  62542. extraAttributes: {
  62543. "hoofSize": {
  62544. name: "Hoof Size",
  62545. power: 2,
  62546. type: "area",
  62547. base: math.unit(0.034, "m^2")
  62548. },
  62549. "footSize": {
  62550. name: "Foot Size",
  62551. power: 2,
  62552. type: "area",
  62553. base: math.unit(0.75, "m^2")
  62554. },
  62555. }
  62556. },
  62557. back: {
  62558. height: math.unit(6, "feet"),
  62559. weight: math.unit(150, "lb"),
  62560. name: "Back",
  62561. image: {
  62562. source: "./media/characters/kylie/back.svg",
  62563. extra: 1115/1047,
  62564. bottom: 66/1181
  62565. },
  62566. extraAttributes: {
  62567. "hoofSize": {
  62568. name: "Hoof Size",
  62569. power: 2,
  62570. type: "area",
  62571. base: math.unit(0.034, "m^2")
  62572. },
  62573. "footSize": {
  62574. name: "Foot Size",
  62575. power: 2,
  62576. type: "area",
  62577. base: math.unit(0.75, "m^2")
  62578. },
  62579. }
  62580. },
  62581. head: {
  62582. height: math.unit(1.85, "feet"),
  62583. name: "Head",
  62584. image: {
  62585. source: "./media/characters/kylie/head.svg"
  62586. }
  62587. },
  62588. },
  62589. [
  62590. {
  62591. name: "Normal",
  62592. height: math.unit(90, "meters"),
  62593. default: true
  62594. },
  62595. ]
  62596. ))
  62597. characterMakers.push(() => makeCharacter(
  62598. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62599. {
  62600. front: {
  62601. height: math.unit(245, "feet"),
  62602. weight: math.unit(400000, "lb"),
  62603. name: "Front",
  62604. image: {
  62605. source: "./media/characters/sabado/front.svg",
  62606. extra: 1309/1164,
  62607. bottom: 29/1338
  62608. }
  62609. },
  62610. },
  62611. [
  62612. {
  62613. name: "Normal",
  62614. height: math.unit(245, "feet"),
  62615. default: true
  62616. },
  62617. ]
  62618. ))
  62619. characterMakers.push(() => makeCharacter(
  62620. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62621. {
  62622. shark_front: {
  62623. height: math.unit(2, "meters"),
  62624. weight: math.unit(200, "kg"),
  62625. name: "Front",
  62626. image: {
  62627. source: "./media/characters/zechal/shark-front.svg",
  62628. extra: 969/925,
  62629. bottom: 74/1043
  62630. },
  62631. form: "shark",
  62632. },
  62633. shark_back: {
  62634. height: math.unit(2, "meters"),
  62635. weight: math.unit(200, "kg"),
  62636. name: "Back",
  62637. image: {
  62638. source: "./media/characters/zechal/shark-back.svg",
  62639. extra: 994/949,
  62640. bottom: 176/1170
  62641. },
  62642. form: "shark",
  62643. },
  62644. shark_frontLewd: {
  62645. height: math.unit(2, "meters"),
  62646. weight: math.unit(200, "kg"),
  62647. name: "Front (Lewd)",
  62648. image: {
  62649. source: "./media/characters/zechal/shark-front-lewd.svg",
  62650. extra: 969/925,
  62651. bottom: 74/1043
  62652. },
  62653. form: "shark",
  62654. },
  62655. shark_side: {
  62656. height: math.unit(1.56, "meters"),
  62657. weight: math.unit(200, "kg"),
  62658. name: "Side",
  62659. image: {
  62660. source: "./media/characters/zechal/shark-side.svg"
  62661. },
  62662. form: "shark",
  62663. },
  62664. dragon_front: {
  62665. height: math.unit(2, "meters"),
  62666. weight: math.unit(200, "kg"),
  62667. name: "Front",
  62668. image: {
  62669. source: "./media/characters/zechal/dragon-front.svg",
  62670. extra: 1041/925,
  62671. bottom: 74/1115
  62672. },
  62673. form: "dragon",
  62674. },
  62675. dragon_back: {
  62676. height: math.unit(2, "meters"),
  62677. weight: math.unit(200, "kg"),
  62678. name: "Back",
  62679. image: {
  62680. source: "./media/characters/zechal/dragon-back.svg",
  62681. extra: 1061/949,
  62682. bottom: 176/1237
  62683. },
  62684. form: "dragon",
  62685. },
  62686. dragon_frontLewd: {
  62687. height: math.unit(2, "meters"),
  62688. weight: math.unit(200, "kg"),
  62689. name: "Front (Lewd)",
  62690. image: {
  62691. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62692. extra: 1041/925,
  62693. bottom: 74/1115
  62694. },
  62695. form: "dragon",
  62696. },
  62697. dragon_side: {
  62698. height: math.unit(1.56, "meters"),
  62699. weight: math.unit(200, "kg"),
  62700. name: "Side",
  62701. image: {
  62702. source: "./media/characters/zechal/dragon-side.svg"
  62703. },
  62704. form: "dragon",
  62705. },
  62706. foot: {
  62707. height: math.unit(0.5, "meters"),
  62708. name: "Foot",
  62709. image: {
  62710. source: "./media/characters/zechal/foot.svg"
  62711. }
  62712. },
  62713. sheathFront: {
  62714. height: math.unit(0.45, "meters"),
  62715. name: "Sheath (Front)",
  62716. image: {
  62717. source: "./media/characters/zechal/sheath-front.svg"
  62718. }
  62719. },
  62720. sheathSide: {
  62721. height: math.unit(0.45, "meters"),
  62722. name: "Sheath (Side)",
  62723. image: {
  62724. source: "./media/characters/zechal/sheath-side.svg"
  62725. }
  62726. },
  62727. },
  62728. [
  62729. {
  62730. name: "Incognito",
  62731. height: math.unit(2, "meters"),
  62732. allForms: true
  62733. },
  62734. {
  62735. name: "Small Rampage",
  62736. height: math.unit(25, "meters"),
  62737. allForms: true
  62738. },
  62739. {
  62740. name: "Home Size",
  62741. height: math.unit(250, "meters"),
  62742. allForms: true,
  62743. default: true
  62744. },
  62745. {
  62746. name: "Macro+",
  62747. height: math.unit(700, "meters"),
  62748. allForms: true
  62749. },
  62750. {
  62751. name: "Small Mega",
  62752. height: math.unit(3, "km"),
  62753. allForms: true
  62754. },
  62755. {
  62756. name: "Mega",
  62757. height: math.unit(15, "km"),
  62758. allForms: true
  62759. },
  62760. {
  62761. name: "Giga",
  62762. height: math.unit(300, "km"),
  62763. allForms: true
  62764. },
  62765. {
  62766. name: "Giga+",
  62767. height: math.unit(1750, "km"),
  62768. allForms: true
  62769. },
  62770. {
  62771. name: "Continental",
  62772. height: math.unit(5000, "km"),
  62773. allForms: true
  62774. },
  62775. {
  62776. name: "Terra",
  62777. height: math.unit(20000, "km"),
  62778. allForms: true
  62779. },
  62780. {
  62781. name: "Terra+",
  62782. height: math.unit(300000, "km"),
  62783. allForms: true
  62784. },
  62785. {
  62786. name: "Solar",
  62787. height: math.unit(40000000, "km"),
  62788. allForms: true
  62789. },
  62790. {
  62791. name: "Galactic",
  62792. height: math.unit(810133, "parsecs"),
  62793. allForms: true
  62794. },
  62795. {
  62796. name: "Universal",
  62797. height: math.unit(25, "universes"),
  62798. allForms: true
  62799. },
  62800. ],
  62801. {
  62802. "shark": {
  62803. name: "Shark",
  62804. default: true
  62805. },
  62806. "dragon": {
  62807. name: "Dragon",
  62808. },
  62809. }
  62810. ))
  62811. characterMakers.push(() => makeCharacter(
  62812. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62813. {
  62814. front: {
  62815. height: math.unit(2.2, "meters"),
  62816. weight: math.unit(150, "kg"),
  62817. name: "Front",
  62818. image: {
  62819. source: "./media/characters/sergis/front.svg",
  62820. extra: 1314/1312,
  62821. bottom: 112/1426
  62822. }
  62823. },
  62824. back: {
  62825. height: math.unit(2.2, "meters"),
  62826. weight: math.unit(150, "kg"),
  62827. name: "Back",
  62828. image: {
  62829. source: "./media/characters/sergis/back.svg",
  62830. extra: 1335/1333,
  62831. bottom: 19/1354
  62832. }
  62833. },
  62834. frontLewd: {
  62835. height: math.unit(2.2, "meters"),
  62836. weight: math.unit(150, "kg"),
  62837. name: "Front (Lewd)",
  62838. image: {
  62839. source: "./media/characters/sergis/front-lewd.svg",
  62840. extra: 1314/1312,
  62841. bottom: 112/1426
  62842. }
  62843. },
  62844. frontDressed: {
  62845. height: math.unit(2.2, "meters"),
  62846. weight: math.unit(150, "kg"),
  62847. name: "Front (Dressed)",
  62848. image: {
  62849. source: "./media/characters/sergis/front-dressed.svg",
  62850. extra: 1330/1328,
  62851. bottom: 95/1425
  62852. }
  62853. },
  62854. frontDressedLewd: {
  62855. height: math.unit(2.2, "meters"),
  62856. weight: math.unit(150, "kg"),
  62857. name: "Front (Dressed, Lewd)",
  62858. image: {
  62859. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62860. extra: 1330/1328,
  62861. bottom: 95/1425
  62862. }
  62863. },
  62864. maw: {
  62865. height: math.unit(0.48, "meters"),
  62866. name: "Maw",
  62867. image: {
  62868. source: "./media/characters/sergis/maw.svg"
  62869. }
  62870. },
  62871. sheath: {
  62872. height: math.unit(0.38, "meters"),
  62873. name: "Sheath",
  62874. image: {
  62875. source: "./media/characters/sergis/sheath.svg"
  62876. }
  62877. },
  62878. },
  62879. [
  62880. {
  62881. name: "Incognito Size",
  62882. height: math.unit(2.2, "meters")
  62883. },
  62884. {
  62885. name: "Small Macro",
  62886. height: math.unit(40, "meters")
  62887. },
  62888. {
  62889. name: "Macro",
  62890. height: math.unit(150, "meters")
  62891. },
  62892. {
  62893. name: "Macro+",
  62894. height: math.unit(300, "meters")
  62895. },
  62896. {
  62897. name: "Mega",
  62898. height: math.unit(2.5, "km")
  62899. },
  62900. {
  62901. name: "Mega+",
  62902. height: math.unit(30, "km")
  62903. },
  62904. {
  62905. name: "Home Size",
  62906. height: math.unit(300, "km"),
  62907. default: true
  62908. },
  62909. {
  62910. name: "Giga+",
  62911. height: math.unit(1000, "km")
  62912. },
  62913. {
  62914. name: "Giga++",
  62915. height: math.unit(6000, "km")
  62916. },
  62917. {
  62918. name: "Terra",
  62919. height: math.unit(70000, "km")
  62920. },
  62921. {
  62922. name: "Terra+",
  62923. height: math.unit(200000, "km")
  62924. },
  62925. {
  62926. name: "Galactic",
  62927. height: math.unit(634200, "lightyears")
  62928. },
  62929. ]
  62930. ))
  62931. characterMakers.push(() => makeCharacter(
  62932. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62933. {
  62934. standard: {
  62935. height: math.unit(1 + 5/12, "feet"),
  62936. name: "Standard",
  62937. image: {
  62938. source: "./media/characters/spade/standard.svg",
  62939. extra: 1794/1703,
  62940. bottom: 115/1909
  62941. }
  62942. },
  62943. disguised: {
  62944. height: math.unit(1 + 5/12, "feet"),
  62945. name: "Disguised",
  62946. image: {
  62947. source: "./media/characters/spade/disguised.svg",
  62948. extra: 1794/1700,
  62949. bottom: 98/1892
  62950. }
  62951. },
  62952. },
  62953. [
  62954. {
  62955. name: "Normal",
  62956. height: math.unit(1 + 5/12, "feet"),
  62957. default: true
  62958. },
  62959. ]
  62960. ))
  62961. characterMakers.push(() => makeCharacter(
  62962. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62963. {
  62964. frontNsfw: {
  62965. height: math.unit(5, "meters"),
  62966. weight: math.unit(2000, "kg"),
  62967. preyCapacity: math.unit(5, "people"),
  62968. name: "Front (NSFW)",
  62969. image: {
  62970. source: "./media/characters/zeanlain/front-nsfw.svg",
  62971. extra: 1087/938,
  62972. bottom: 93/1180
  62973. },
  62974. extraAttributes: {
  62975. "wingspan": {
  62976. name: "Wingspan",
  62977. power: 1,
  62978. type: "length",
  62979. base: math.unit(10, "meters")
  62980. },
  62981. "footSize": {
  62982. name: "Foot Size",
  62983. power: 1,
  62984. type: "length",
  62985. base: math.unit(0.68, "meters")
  62986. },
  62987. "cockLength": {
  62988. name: "Cock Length",
  62989. power: 1,
  62990. type: "length",
  62991. base: math.unit(1.69, "meters")
  62992. },
  62993. "ballVolume": {
  62994. name: "Ball Volume",
  62995. power: 3,
  62996. type: "volume",
  62997. base: math.unit(0.028, "m^3")
  62998. },
  62999. }
  63000. },
  63001. front: {
  63002. height: math.unit(5, "meters"),
  63003. weight: math.unit(2000, "kg"),
  63004. preyCapacity: math.unit(3, "people"),
  63005. name: "Front",
  63006. image: {
  63007. source: "./media/characters/zeanlain/front.svg",
  63008. extra: 1087/938,
  63009. bottom: 93/1180
  63010. },
  63011. extraAttributes: {
  63012. "wingspan": {
  63013. name: "Wingspan",
  63014. power: 1,
  63015. type: "length",
  63016. base: math.unit(10, "meters")
  63017. },
  63018. "footSize": {
  63019. name: "Foot Size",
  63020. power: 1,
  63021. type: "length",
  63022. base: math.unit(0.68, "meters")
  63023. },
  63024. }
  63025. },
  63026. dick: {
  63027. height: math.unit(5.15, "feet"),
  63028. name: "Dick",
  63029. image: {
  63030. source: "./media/characters/zeanlain/dick.svg"
  63031. }
  63032. },
  63033. },
  63034. [
  63035. {
  63036. name: "Normal",
  63037. height: math.unit(5, "meters"),
  63038. default: true
  63039. },
  63040. ]
  63041. ))
  63042. characterMakers.push(() => makeCharacter(
  63043. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  63044. {
  63045. front: {
  63046. height: math.unit(10, "meters"),
  63047. weight: math.unit(250000, "kg"),
  63048. name: "Front",
  63049. image: {
  63050. source: "./media/characters/airamis/front.svg",
  63051. extra: 865/835,
  63052. bottom: 13/878
  63053. }
  63054. },
  63055. },
  63056. [
  63057. {
  63058. name: "Normal",
  63059. height: math.unit(10, "meters"),
  63060. default: true
  63061. },
  63062. ]
  63063. ))
  63064. characterMakers.push(() => makeCharacter(
  63065. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  63066. {
  63067. front: {
  63068. height: math.unit(3 + 3/12, "feet"),
  63069. weight: math.unit(75, "lb"),
  63070. name: "Front",
  63071. image: {
  63072. source: "./media/characters/corra-tourmaline/front.svg",
  63073. extra: 1037/864,
  63074. bottom: 39/1076
  63075. }
  63076. },
  63077. back: {
  63078. height: math.unit(3 + 3/12, "feet"),
  63079. weight: math.unit(75, "lb"),
  63080. name: "Back",
  63081. image: {
  63082. source: "./media/characters/corra-tourmaline/back.svg",
  63083. extra: 1022/849,
  63084. bottom: 26/1048
  63085. }
  63086. },
  63087. dressed: {
  63088. height: math.unit(3 + 3/12, "feet"),
  63089. weight: math.unit(75, "lb"),
  63090. name: "Dressed",
  63091. image: {
  63092. source: "./media/characters/corra-tourmaline/dressed.svg",
  63093. extra: 1037/864,
  63094. bottom: 39/1076
  63095. }
  63096. },
  63097. beans: {
  63098. height: math.unit(0.37, "feet"),
  63099. name: "Beans",
  63100. image: {
  63101. source: "./media/characters/corra-tourmaline/beans.svg"
  63102. }
  63103. },
  63104. },
  63105. [
  63106. {
  63107. name: "Normal",
  63108. height: math.unit(3 + 3/12, "feet"),
  63109. default: true
  63110. },
  63111. {
  63112. name: "Macro",
  63113. height: math.unit(32, "feet")
  63114. },
  63115. ]
  63116. ))
  63117. characterMakers.push(() => makeCharacter(
  63118. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  63119. {
  63120. front: {
  63121. height: math.unit(6 + 2/12, "feet"),
  63122. weight: math.unit(203, "lb"),
  63123. name: "Front",
  63124. image: {
  63125. source: "./media/characters/maki-kawa/front.svg",
  63126. extra: 950/890,
  63127. bottom: 62/1012
  63128. }
  63129. },
  63130. back: {
  63131. height: math.unit(6 + 2/12, "feet"),
  63132. weight: math.unit(203, "lb"),
  63133. name: "Back",
  63134. image: {
  63135. source: "./media/characters/maki-kawa/back.svg",
  63136. extra: 953/878,
  63137. bottom: 49/1002
  63138. }
  63139. },
  63140. frontBarista: {
  63141. height: math.unit(6 + 2/12, "feet"),
  63142. weight: math.unit(203, "lb"),
  63143. name: "Front (Barista)",
  63144. image: {
  63145. source: "./media/characters/maki-kawa/front-barista.svg",
  63146. extra: 943/883,
  63147. bottom: 69/1012
  63148. }
  63149. },
  63150. backBarista: {
  63151. height: math.unit(6 + 2/12, "feet"),
  63152. weight: math.unit(203, "lb"),
  63153. name: "Back (Barista)",
  63154. image: {
  63155. source: "./media/characters/maki-kawa/back-barista.svg",
  63156. extra: 953/878,
  63157. bottom: 49/1002
  63158. }
  63159. },
  63160. frontWrestler: {
  63161. height: math.unit(6 + 2/12, "feet"),
  63162. weight: math.unit(203, "lb"),
  63163. name: "Front (Wrestler)",
  63164. image: {
  63165. source: "./media/characters/maki-kawa/front-wrestler.svg",
  63166. extra: 950/890,
  63167. bottom: 62/1012
  63168. }
  63169. },
  63170. backWrestler: {
  63171. height: math.unit(6 + 2/12, "feet"),
  63172. weight: math.unit(203, "lb"),
  63173. name: "Back (Wrestler)",
  63174. image: {
  63175. source: "./media/characters/maki-kawa/back-wrestler.svg",
  63176. extra: 953/878,
  63177. bottom: 49/1002
  63178. }
  63179. },
  63180. headFront: {
  63181. height: math.unit(1.64, "feet"),
  63182. name: "Head (Front)",
  63183. image: {
  63184. source: "./media/characters/maki-kawa/head-front.svg"
  63185. }
  63186. },
  63187. headSide: {
  63188. height: math.unit(1.59, "feet"),
  63189. name: "Head (Side)",
  63190. image: {
  63191. source: "./media/characters/maki-kawa/head-side.svg"
  63192. }
  63193. },
  63194. paw: {
  63195. height: math.unit(0.9, "feet"),
  63196. name: "Paw",
  63197. image: {
  63198. source: "./media/characters/maki-kawa/paw.svg"
  63199. }
  63200. },
  63201. },
  63202. [
  63203. {
  63204. name: "Normal",
  63205. height: math.unit(6 + 2/12, "feet"),
  63206. default: true
  63207. },
  63208. {
  63209. name: "Macro",
  63210. height: math.unit(617, "feet")
  63211. },
  63212. ]
  63213. ))
  63214. characterMakers.push(() => makeCharacter(
  63215. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  63216. {
  63217. frontNsfw: {
  63218. height: math.unit(10, "feet"),
  63219. weight: math.unit(1500, "lb"),
  63220. name: "Front (NSFW)",
  63221. image: {
  63222. source: "./media/characters/lennox/front-nsfw.svg",
  63223. extra: 1623/1496,
  63224. bottom: 18/1641
  63225. },
  63226. extraAttributes: {
  63227. "cumVolume": {
  63228. name: "Cum Volume",
  63229. power: 3,
  63230. type: "volume",
  63231. base: math.unit(75, "liters")
  63232. },
  63233. }
  63234. },
  63235. backNsfw: {
  63236. height: math.unit(10, "feet"),
  63237. weight: math.unit(1500, "lb"),
  63238. name: "Back (NSFW)",
  63239. image: {
  63240. source: "./media/characters/lennox/back-nsfw.svg",
  63241. extra: 1641/1481,
  63242. bottom: 13/1654
  63243. },
  63244. extraAttributes: {
  63245. "cumVolume": {
  63246. name: "Cum Volume",
  63247. power: 3,
  63248. type: "volume",
  63249. base: math.unit(75, "liters")
  63250. },
  63251. }
  63252. },
  63253. frontSfw: {
  63254. height: math.unit(10, "feet"),
  63255. weight: math.unit(1500, "lb"),
  63256. name: "Front (SFW)",
  63257. image: {
  63258. source: "./media/characters/lennox/front-sfw.svg",
  63259. extra: 1623/1496,
  63260. bottom: 18/1641
  63261. }
  63262. },
  63263. backSfw: {
  63264. height: math.unit(10, "feet"),
  63265. weight: math.unit(1500, "lb"),
  63266. name: "Back (SFW)",
  63267. image: {
  63268. source: "./media/characters/lennox/back-sfw.svg",
  63269. extra: 1641/1481,
  63270. bottom: 13/1654
  63271. }
  63272. },
  63273. maw: {
  63274. height: math.unit(2.94, "feet"),
  63275. name: "Maw",
  63276. image: {
  63277. source: "./media/characters/lennox/maw.svg"
  63278. }
  63279. },
  63280. dick: {
  63281. height: math.unit(0.8323, "meters"),
  63282. weight: math.unit(0.07315728637*1000, "kg"),
  63283. name: "Dick",
  63284. image: {
  63285. source: "./media/characters/lennox/dick.svg"
  63286. },
  63287. extraAttributes: {
  63288. "thickness": {
  63289. name: "Thickness",
  63290. power: 1,
  63291. type: "length",
  63292. base: math.unit(0.330, "meters")
  63293. },
  63294. "length": {
  63295. name: "Length",
  63296. power: 1,
  63297. type: "length",
  63298. base: math.unit(0.8, "meters")
  63299. },
  63300. "cumVolume": {
  63301. name: "Cum Volume",
  63302. power: 3,
  63303. type: "volume",
  63304. base: math.unit(75, "liters")
  63305. },
  63306. }
  63307. },
  63308. },
  63309. [
  63310. {
  63311. name: "Micro",
  63312. height: math.unit(1, "inch")
  63313. },
  63314. {
  63315. name: "Normal",
  63316. height: math.unit(10, "feet"),
  63317. default: true
  63318. },
  63319. {
  63320. name: "Macro",
  63321. height: math.unit(200, "feet")
  63322. },
  63323. ]
  63324. ))
  63325. characterMakers.push(() => makeCharacter(
  63326. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  63327. {
  63328. frontDressed: {
  63329. height: math.unit(15 + 7/12, "feet"),
  63330. weight: math.unit(5000, "lb"),
  63331. name: "Front (Dressed)",
  63332. image: {
  63333. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  63334. extra: 1136/1023,
  63335. bottom: 51/1187
  63336. }
  63337. },
  63338. backDressed: {
  63339. height: math.unit(15 + 7/12, "feet"),
  63340. weight: math.unit(5000, "lb"),
  63341. name: "Back (Dressed)",
  63342. image: {
  63343. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  63344. extra: 2359/2143,
  63345. bottom: 103/2462
  63346. }
  63347. },
  63348. front: {
  63349. height: math.unit(15 + 7/12, "feet"),
  63350. weight: math.unit(5000, "lb"),
  63351. name: "Front",
  63352. image: {
  63353. source: "./media/characters/vyse-iron-thunder/front.svg",
  63354. extra: 1136/1023,
  63355. bottom: 51/1187
  63356. }
  63357. },
  63358. hand: {
  63359. height: math.unit(2.36, "feet"),
  63360. name: "Hand",
  63361. image: {
  63362. source: "./media/characters/vyse-iron-thunder/hand.svg"
  63363. }
  63364. },
  63365. foot: {
  63366. height: math.unit(1.72, "feet"),
  63367. name: "Foot",
  63368. image: {
  63369. source: "./media/characters/vyse-iron-thunder/foot.svg"
  63370. }
  63371. },
  63372. mouth: {
  63373. height: math.unit(2, "feet"),
  63374. name: "Mouth",
  63375. image: {
  63376. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  63377. }
  63378. },
  63379. eye: {
  63380. height: math.unit(0.58, "feet"),
  63381. name: "Eye",
  63382. image: {
  63383. source: "./media/characters/vyse-iron-thunder/eye.svg"
  63384. }
  63385. },
  63386. },
  63387. [
  63388. {
  63389. name: "Normal",
  63390. height: math.unit(15 + 7/12, "feet"),
  63391. default: true
  63392. },
  63393. {
  63394. name: "Macro",
  63395. height: math.unit(157, "feet")
  63396. },
  63397. {
  63398. name: "Macro+",
  63399. height: math.unit(1570, "feet")
  63400. },
  63401. {
  63402. name: "Macro++",
  63403. height: math.unit(15700, "feet")
  63404. },
  63405. {
  63406. name: "Macro+++",
  63407. height: math.unit(157000, "feet")
  63408. },
  63409. {
  63410. name: "Macro++++",
  63411. height: math.unit(1570000, "feet")
  63412. },
  63413. ]
  63414. ))
  63415. characterMakers.push(() => makeCharacter(
  63416. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  63417. {
  63418. side: {
  63419. height: math.unit(6, "feet"),
  63420. weight: math.unit(115, "lb"),
  63421. name: "Side",
  63422. image: {
  63423. source: "./media/characters/moonbeam/side.svg",
  63424. extra: 839/485,
  63425. bottom: 60/899
  63426. }
  63427. },
  63428. },
  63429. [
  63430. {
  63431. name: "Normal",
  63432. height: math.unit(6, "feet"),
  63433. default: true
  63434. },
  63435. ]
  63436. ))
  63437. characterMakers.push(() => makeCharacter(
  63438. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  63439. {
  63440. front: {
  63441. height: math.unit(3500, "miles"),
  63442. weight: math.unit(1659, "petatonnes"),
  63443. name: "Front",
  63444. image: {
  63445. source: "./media/characters/baltica/front.svg",
  63446. extra: 429/428,
  63447. bottom: 41/470
  63448. }
  63449. },
  63450. back: {
  63451. height: math.unit(3500, "miles"),
  63452. weight: math.unit(1659, "petatonnes"),
  63453. name: "Back",
  63454. image: {
  63455. source: "./media/characters/baltica/back.svg",
  63456. extra: 452/451,
  63457. bottom: 8/460
  63458. }
  63459. },
  63460. },
  63461. [
  63462. {
  63463. name: "Gigamacro",
  63464. height: math.unit(3500, "miles"),
  63465. default: true
  63466. },
  63467. ]
  63468. ))
  63469. characterMakers.push(() => makeCharacter(
  63470. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  63471. {
  63472. front: {
  63473. height: math.unit(6 + 10/12, "feet"),
  63474. weight: math.unit(200, "lb"),
  63475. name: "Front",
  63476. image: {
  63477. source: "./media/characters/shadow-wolf/front.svg",
  63478. extra: 1931/1760,
  63479. bottom: 88/2019
  63480. }
  63481. },
  63482. },
  63483. [
  63484. {
  63485. name: "Normal",
  63486. height: math.unit(6 + 10/12, "feet"),
  63487. default: true
  63488. },
  63489. ]
  63490. ))
  63491. characterMakers.push(() => makeCharacter(
  63492. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  63493. {
  63494. front: {
  63495. height: math.unit(5 + 10/12, "feet"),
  63496. name: "Front",
  63497. image: {
  63498. source: "./media/characters/quincy-praying-mantis/front.svg",
  63499. extra: 1055/891,
  63500. bottom: 92/1147
  63501. }
  63502. },
  63503. soles: {
  63504. height: math.unit(0.85, "feet"),
  63505. name: "Soles",
  63506. image: {
  63507. source: "./media/characters/quincy-praying-mantis/soles.svg",
  63508. extra: 429/324,
  63509. bottom: 89/518
  63510. },
  63511. extraAttributes: {
  63512. "shoeSize": {
  63513. name: "Shoe Size",
  63514. power: 1,
  63515. type: "length",
  63516. base: math.unit(23, "ShoeSizeMensUS"),
  63517. defaultUnit: "ShoeSizeMensUS"
  63518. },
  63519. }
  63520. },
  63521. foot: {
  63522. height: math.unit(0.72, "feet"),
  63523. name: "Foot",
  63524. image: {
  63525. source: "./media/characters/quincy-praying-mantis/foot.svg",
  63526. extra: 349/349,
  63527. bottom: 76/425
  63528. }
  63529. },
  63530. },
  63531. [
  63532. {
  63533. name: "Normal",
  63534. height: math.unit(5 + 10/12, "feet"),
  63535. default: true
  63536. },
  63537. ]
  63538. ))
  63539. characterMakers.push(() => makeCharacter(
  63540. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  63541. {
  63542. front: {
  63543. height: math.unit(6, "feet"),
  63544. name: "Front",
  63545. image: {
  63546. source: "./media/characters/christopher-redwood/front.svg",
  63547. extra: 1402/1341,
  63548. bottom: 23/1425
  63549. }
  63550. },
  63551. back: {
  63552. height: math.unit(6, "feet"),
  63553. name: "Back",
  63554. image: {
  63555. source: "./media/characters/christopher-redwood/back.svg",
  63556. extra: 1406/1345,
  63557. bottom: 36/1442
  63558. }
  63559. },
  63560. head: {
  63561. height: math.unit(1.685, "feet"),
  63562. name: "Head",
  63563. image: {
  63564. source: "./media/characters/christopher-redwood/head.svg"
  63565. }
  63566. },
  63567. },
  63568. [
  63569. {
  63570. name: "Normal",
  63571. height: math.unit(6, "feet"),
  63572. default: true
  63573. },
  63574. ]
  63575. ))
  63576. characterMakers.push(() => makeCharacter(
  63577. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63578. {
  63579. front: {
  63580. height: math.unit(1.9, "meters"),
  63581. weight: math.unit(140, "lb"),
  63582. name: "Front",
  63583. image: {
  63584. source: "./media/characters/kara-fox/front.svg",
  63585. extra: 766/711,
  63586. bottom: 41/807
  63587. }
  63588. },
  63589. back: {
  63590. height: math.unit(1.9, "meters"),
  63591. weight: math.unit(140, "lb"),
  63592. name: "Back",
  63593. image: {
  63594. source: "./media/characters/kara-fox/back.svg",
  63595. extra: 766/596,
  63596. bottom: 29/795
  63597. }
  63598. },
  63599. maw: {
  63600. height: math.unit(0.78, "feet"),
  63601. name: "Maw",
  63602. image: {
  63603. source: "./media/characters/kara-fox/maw.svg"
  63604. }
  63605. },
  63606. pawpads: {
  63607. height: math.unit(0.96, "feet"),
  63608. name: "Pawpads",
  63609. image: {
  63610. source: "./media/characters/kara-fox/pawpads.svg"
  63611. }
  63612. },
  63613. },
  63614. [
  63615. {
  63616. name: "Normal",
  63617. height: math.unit(1.9, "meters"),
  63618. default: true
  63619. },
  63620. {
  63621. name: "Giantess",
  63622. height: math.unit(80, "meters")
  63623. },
  63624. ]
  63625. ))
  63626. characterMakers.push(() => makeCharacter(
  63627. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63628. {
  63629. front: {
  63630. height: math.unit(12, "feet"),
  63631. name: "Front",
  63632. image: {
  63633. source: "./media/characters/naomi-espeon/front.svg",
  63634. extra: 892/797,
  63635. bottom: 5/897
  63636. }
  63637. },
  63638. back: {
  63639. height: math.unit(12, "feet"),
  63640. name: "Back",
  63641. image: {
  63642. source: "./media/characters/naomi-espeon/back.svg",
  63643. extra: 890/785,
  63644. bottom: 12/902
  63645. }
  63646. },
  63647. },
  63648. [
  63649. {
  63650. name: "Normal",
  63651. height: math.unit(12, "feet"),
  63652. default: true
  63653. },
  63654. ]
  63655. ))
  63656. characterMakers.push(() => makeCharacter(
  63657. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63658. {
  63659. anthro_front: {
  63660. height: math.unit(8, "feet"),
  63661. weight: math.unit(625, "lb"),
  63662. name: "Front",
  63663. image: {
  63664. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63665. extra: 638/574,
  63666. bottom: 73/711
  63667. },
  63668. form: "anthro",
  63669. default: true
  63670. },
  63671. anthro_back: {
  63672. height: math.unit(8, "feet"),
  63673. weight: math.unit(625, "lb"),
  63674. name: "Back",
  63675. image: {
  63676. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63677. extra: 674/614,
  63678. bottom: 7/681
  63679. },
  63680. form: "anthro",
  63681. },
  63682. taur_side: {
  63683. height: math.unit(16, "feet"),
  63684. weight: math.unit(4.5, "tons"),
  63685. name: "Side",
  63686. image: {
  63687. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63688. extra: 704/646,
  63689. bottom: 132/836
  63690. },
  63691. form: "taur",
  63692. default: true
  63693. },
  63694. },
  63695. [
  63696. {
  63697. name: "Normal",
  63698. height: math.unit(8, "feet"),
  63699. default: true,
  63700. form: "anthro"
  63701. },
  63702. {
  63703. name: "Normal",
  63704. height: math.unit(16, "feet"),
  63705. default: true,
  63706. form: "taur"
  63707. },
  63708. ],
  63709. {
  63710. "anthro": {
  63711. name: "Anthro",
  63712. default: true
  63713. },
  63714. "taur": {
  63715. name: "Taur",
  63716. },
  63717. }
  63718. ))
  63719. characterMakers.push(() => makeCharacter(
  63720. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63721. {
  63722. front: {
  63723. height: math.unit(190, "cm"),
  63724. weight: math.unit(110, "kg"),
  63725. name: "Front",
  63726. image: {
  63727. source: "./media/characters/amelie/front.svg",
  63728. extra: 530/442,
  63729. bottom: 35/565
  63730. }
  63731. },
  63732. },
  63733. [
  63734. {
  63735. name: "Normal",
  63736. height: math.unit(190, "cm"),
  63737. default: true
  63738. },
  63739. ]
  63740. ))
  63741. characterMakers.push(() => makeCharacter(
  63742. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63743. {
  63744. front: {
  63745. height: math.unit(21, "feet"),
  63746. weight: math.unit(30000, "lb"),
  63747. name: "Front",
  63748. image: {
  63749. source: "./media/characters/valence/front.svg",
  63750. extra: 1430/1306,
  63751. bottom: 51/1481
  63752. }
  63753. },
  63754. },
  63755. [
  63756. {
  63757. name: "Normal",
  63758. height: math.unit(21, "feet"),
  63759. default: true
  63760. },
  63761. ]
  63762. ))
  63763. characterMakers.push(() => makeCharacter(
  63764. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63765. {
  63766. front: {
  63767. height: math.unit(5 + 9/12, "feet"),
  63768. weight: math.unit(170, "lb"),
  63769. name: "Front",
  63770. image: {
  63771. source: "./media/characters/aurora-adkins/front.svg",
  63772. extra: 1141/1089,
  63773. bottom: 41/1182
  63774. }
  63775. },
  63776. },
  63777. [
  63778. {
  63779. name: "Tiny",
  63780. height: math.unit(7, "mm")
  63781. },
  63782. {
  63783. name: "Small",
  63784. height: math.unit(3.4, "inches")
  63785. },
  63786. {
  63787. name: "Normal",
  63788. height: math.unit(5 + 9/12, "feet"),
  63789. default: true
  63790. },
  63791. {
  63792. name: "Big",
  63793. height: math.unit(31, "feet")
  63794. },
  63795. {
  63796. name: "Giant",
  63797. height: math.unit(300, "feet")
  63798. },
  63799. ]
  63800. ))
  63801. characterMakers.push(() => makeCharacter(
  63802. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63803. {
  63804. front: {
  63805. height: math.unit(5 + 6/12, "feet"),
  63806. weight: math.unit(210, "lb"),
  63807. name: "Front",
  63808. image: {
  63809. source: "./media/characters/cyber/front.svg",
  63810. extra: 1968/1798,
  63811. bottom: 10/1978
  63812. },
  63813. extraAttributes: {
  63814. "shoeSize": {
  63815. name: "Shoe Size",
  63816. power: 1,
  63817. type: "length",
  63818. base: math.unit(30, "ShoeSizeMensUS")
  63819. },
  63820. }
  63821. },
  63822. },
  63823. [
  63824. {
  63825. name: "Normal",
  63826. height: math.unit(5 + 6/12, "feet"),
  63827. default: true
  63828. },
  63829. ]
  63830. ))
  63831. characterMakers.push(() => makeCharacter(
  63832. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63833. {
  63834. front: {
  63835. height: math.unit(6 + 6/12, "feet"),
  63836. weight: math.unit(140, "lb"),
  63837. name: "Front",
  63838. image: {
  63839. source: "./media/characters/sapphire-wairimea/front.svg",
  63840. extra: 475/458,
  63841. bottom: 14/489
  63842. }
  63843. },
  63844. },
  63845. [
  63846. {
  63847. name: "Normal",
  63848. height: math.unit(6 + 6/12, "feet")
  63849. },
  63850. {
  63851. name: "Macro",
  63852. height: math.unit(132, "feet"),
  63853. default: true
  63854. },
  63855. ]
  63856. ))
  63857. characterMakers.push(() => makeCharacter(
  63858. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63859. {
  63860. front: {
  63861. height: math.unit(1.6, "meters"),
  63862. weight: math.unit(100, "lb"),
  63863. name: "Front",
  63864. image: {
  63865. source: "./media/characters/cirkazi/front.svg",
  63866. extra: 489/477,
  63867. bottom: 0/489
  63868. }
  63869. },
  63870. },
  63871. [
  63872. {
  63873. name: "Normal",
  63874. height: math.unit(1.6, "meters")
  63875. },
  63876. {
  63877. name: "Macro",
  63878. height: math.unit(800, "feet"),
  63879. default: true
  63880. },
  63881. ]
  63882. ))
  63883. characterMakers.push(() => makeCharacter(
  63884. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63885. {
  63886. front: {
  63887. height: math.unit(5 + 10/12, "feet"),
  63888. weight: math.unit(145, "lb"),
  63889. name: "Front",
  63890. image: {
  63891. source: "./media/characters/corrin-cavelli/front.svg",
  63892. extra: 483/464,
  63893. bottom: 6/489
  63894. }
  63895. },
  63896. },
  63897. [
  63898. {
  63899. name: "Human",
  63900. height: math.unit(5 + 10/12, "feet")
  63901. },
  63902. {
  63903. name: "Giant",
  63904. height: math.unit(210, "feet"),
  63905. default: true
  63906. },
  63907. ]
  63908. ))
  63909. characterMakers.push(() => makeCharacter(
  63910. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63911. {
  63912. back: {
  63913. height: math.unit(5 + 6/12, "feet"),
  63914. weight: math.unit(115, "lb"),
  63915. name: "Back",
  63916. image: {
  63917. source: "./media/characters/lori-lopez/back.svg",
  63918. extra: 483/474,
  63919. bottom: 6/489
  63920. }
  63921. },
  63922. },
  63923. [
  63924. {
  63925. name: "Human",
  63926. height: math.unit(5 + 6/12, "feet")
  63927. },
  63928. {
  63929. name: "Macro",
  63930. height: math.unit(198, "feet"),
  63931. default: true
  63932. },
  63933. ]
  63934. ))
  63935. characterMakers.push(() => makeCharacter(
  63936. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63937. {
  63938. front: {
  63939. height: math.unit(6, "feet"),
  63940. weight: math.unit(220, "lb"),
  63941. name: "Front",
  63942. image: {
  63943. source: "./media/characters/sylvia-beauregard/front.svg",
  63944. extra: 483/479,
  63945. bottom: 6/489
  63946. }
  63947. },
  63948. },
  63949. [
  63950. {
  63951. name: "Macro",
  63952. height: math.unit(2071, "feet"),
  63953. default: true
  63954. },
  63955. ]
  63956. ))
  63957. characterMakers.push(() => makeCharacter(
  63958. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63959. {
  63960. back: {
  63961. height: math.unit(5 + 6/12, "feet"),
  63962. weight: math.unit(160, "lb"),
  63963. name: "Back",
  63964. image: {
  63965. source: "./media/characters/akiko-takahashi/back.svg",
  63966. extra: 459/454,
  63967. bottom: 27/486
  63968. }
  63969. },
  63970. },
  63971. [
  63972. {
  63973. name: "Human",
  63974. height: math.unit(5 + 6/12, "feet")
  63975. },
  63976. {
  63977. name: "Macro",
  63978. height: math.unit(198, "feet"),
  63979. default: true
  63980. },
  63981. {
  63982. name: "Megamacro",
  63983. height: math.unit(7128, "feet")
  63984. },
  63985. ]
  63986. ))
  63987. characterMakers.push(() => makeCharacter(
  63988. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63989. {
  63990. front: {
  63991. height: math.unit(6, "feet"),
  63992. weight: math.unit(140, "lb"),
  63993. name: "Front",
  63994. image: {
  63995. source: "./media/characters/velvet-garza/front.svg",
  63996. extra: 480/462,
  63997. bottom: 7/487
  63998. }
  63999. },
  64000. },
  64001. [
  64002. {
  64003. name: "Macro",
  64004. height: math.unit(37, "feet"),
  64005. default: true
  64006. },
  64007. ]
  64008. ))
  64009. characterMakers.push(() => makeCharacter(
  64010. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  64011. {
  64012. front: {
  64013. height: math.unit(7 + 6/12, "feet"),
  64014. weight: math.unit(400, "lb"),
  64015. name: "Front",
  64016. image: {
  64017. source: "./media/characters/gaia/front.svg",
  64018. extra: 474/463,
  64019. bottom: 13/487
  64020. }
  64021. },
  64022. },
  64023. [
  64024. {
  64025. name: "MiniMacro",
  64026. height: math.unit(7 + 6/12, "feet")
  64027. },
  64028. {
  64029. name: "GigaMacro",
  64030. height: math.unit(14500, "feet"),
  64031. default: true
  64032. },
  64033. ]
  64034. ))
  64035. characterMakers.push(() => makeCharacter(
  64036. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  64037. {
  64038. front: {
  64039. height: math.unit(6, "feet"),
  64040. weight: math.unit(150, "lb"),
  64041. name: "Front",
  64042. image: {
  64043. source: "./media/characters/tim/front.svg",
  64044. extra: 1878/1743,
  64045. bottom: 9/1887
  64046. }
  64047. },
  64048. frontDressed: {
  64049. height: math.unit(6, "feet"),
  64050. weight: math.unit(150, "lb"),
  64051. name: "Front (Dressed)",
  64052. image: {
  64053. source: "./media/characters/tim/front-dressed.svg",
  64054. extra: 1765/1485,
  64055. bottom: 48/1813
  64056. }
  64057. },
  64058. backDressed: {
  64059. height: math.unit(6, "feet"),
  64060. weight: math.unit(150, "lb"),
  64061. name: "Back (Dressed)",
  64062. image: {
  64063. source: "./media/characters/tim/back-dressed.svg",
  64064. extra: 1750/1465,
  64065. bottom: 25/1775
  64066. }
  64067. },
  64068. dick: {
  64069. height: math.unit(1.5, "feet"),
  64070. weight: math.unit(6, "lb"),
  64071. name: "Dick",
  64072. image: {
  64073. source: "./media/characters/tim/dick.svg"
  64074. }
  64075. },
  64076. hand: {
  64077. height: math.unit(0.522, "feet"),
  64078. name: "Hand",
  64079. image: {
  64080. source: "./media/characters/tim/hand.svg"
  64081. }
  64082. },
  64083. palm: {
  64084. height: math.unit(0.48, "feet"),
  64085. name: "Palm",
  64086. image: {
  64087. source: "./media/characters/tim/palm.svg"
  64088. }
  64089. },
  64090. paw: {
  64091. height: math.unit(0.9, "feet"),
  64092. name: "Paw",
  64093. image: {
  64094. source: "./media/characters/tim/paw.svg"
  64095. }
  64096. },
  64097. sole: {
  64098. height: math.unit(0.88, "feet"),
  64099. name: "Sole",
  64100. image: {
  64101. source: "./media/characters/tim/sole.svg"
  64102. }
  64103. },
  64104. },
  64105. [
  64106. {
  64107. name: "Macro",
  64108. height: math.unit(1000, "feet")
  64109. },
  64110. {
  64111. name: "Megamacro",
  64112. height: math.unit(10000, "feet"),
  64113. default: true
  64114. },
  64115. {
  64116. name: "Megamacro+",
  64117. height: math.unit(50000, "feet")
  64118. },
  64119. {
  64120. name: "Gigamacro",
  64121. height: math.unit(150000, "km")
  64122. },
  64123. ]
  64124. ))
  64125. characterMakers.push(() => makeCharacter(
  64126. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  64127. {
  64128. front: {
  64129. height: math.unit(5 + 8/12, "feet"),
  64130. weight: math.unit(170, "lb"),
  64131. name: "Front",
  64132. image: {
  64133. source: "./media/characters/abel-delreoux/front.svg",
  64134. extra: 1615/1500,
  64135. bottom: 82/1697
  64136. }
  64137. },
  64138. back: {
  64139. height: math.unit(5 + 8/12, "feet"),
  64140. weight: math.unit(170, "lb"),
  64141. name: "Back",
  64142. image: {
  64143. source: "./media/characters/abel-delreoux/back.svg",
  64144. extra: 1644/1534,
  64145. bottom: 24/1668
  64146. }
  64147. },
  64148. casual: {
  64149. height: math.unit(5 + 8/12, "feet"),
  64150. weight: math.unit(170, "lb"),
  64151. name: "Casual",
  64152. image: {
  64153. source: "./media/characters/abel-delreoux/casual.svg",
  64154. extra: 1716/1598,
  64155. bottom: 29/1745
  64156. }
  64157. },
  64158. sleepy: {
  64159. height: math.unit(5 + 8/12, "feet"),
  64160. weight: math.unit(170, "lb"),
  64161. name: "Sleepy",
  64162. image: {
  64163. source: "./media/characters/abel-delreoux/sleepy.svg",
  64164. extra: 1649/1573,
  64165. bottom: 22/1671
  64166. }
  64167. },
  64168. fem: {
  64169. height: math.unit(5 + 8/12, "feet"),
  64170. weight: math.unit(170, "lb"),
  64171. name: "Fem",
  64172. image: {
  64173. source: "./media/characters/abel-delreoux/fem.svg",
  64174. extra: 1680/1564,
  64175. bottom: 17/1697
  64176. }
  64177. },
  64178. hand: {
  64179. height: math.unit(0.78, "feet"),
  64180. name: "Hand",
  64181. image: {
  64182. source: "./media/characters/abel-delreoux/hand.svg"
  64183. }
  64184. },
  64185. paw: {
  64186. height: math.unit(0.78, "feet"),
  64187. name: "Paw",
  64188. image: {
  64189. source: "./media/characters/abel-delreoux/paw.svg"
  64190. }
  64191. },
  64192. },
  64193. [
  64194. {
  64195. name: "Normal",
  64196. height: math.unit(5 + 8/12, "feet"),
  64197. default: true
  64198. },
  64199. ]
  64200. ))
  64201. characterMakers.push(() => makeCharacter(
  64202. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  64203. {
  64204. front: {
  64205. height: math.unit(6, "feet"),
  64206. weight: math.unit(159, "lb"),
  64207. name: "Front",
  64208. image: {
  64209. source: "./media/characters/meus/front.svg",
  64210. extra: 938/843,
  64211. bottom: 37/975
  64212. }
  64213. },
  64214. back: {
  64215. height: math.unit(6, "feet"),
  64216. weight: math.unit(159, "lb"),
  64217. name: "Back",
  64218. image: {
  64219. source: "./media/characters/meus/back.svg",
  64220. extra: 967/873,
  64221. bottom: 12/979
  64222. }
  64223. },
  64224. },
  64225. [
  64226. {
  64227. name: "Micro",
  64228. height: math.unit(2, "inches")
  64229. },
  64230. {
  64231. name: "Mini",
  64232. height: math.unit(6, "inches")
  64233. },
  64234. {
  64235. name: "Normal",
  64236. height: math.unit(6, "feet"),
  64237. default: true
  64238. },
  64239. {
  64240. name: "Macro",
  64241. height: math.unit(84, "feet")
  64242. },
  64243. ]
  64244. ))
  64245. characterMakers.push(() => makeCharacter(
  64246. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  64247. {
  64248. front: {
  64249. height: math.unit(60, "cm"),
  64250. weight: math.unit(18, "kg"),
  64251. name: "Front",
  64252. image: {
  64253. source: "./media/characters/yamato/front.svg",
  64254. extra: 733/688,
  64255. bottom: 29/762
  64256. }
  64257. },
  64258. },
  64259. [
  64260. {
  64261. name: "Micro",
  64262. height: math.unit(6, "cm")
  64263. },
  64264. {
  64265. name: "Normal",
  64266. height: math.unit(60, "cm"),
  64267. default: true
  64268. },
  64269. ]
  64270. ))
  64271. characterMakers.push(() => makeCharacter(
  64272. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  64273. {
  64274. front: {
  64275. height: math.unit(9, "feet"),
  64276. weight: math.unit(518, "lb"),
  64277. name: "Front",
  64278. image: {
  64279. source: "./media/characters/barus/front.svg",
  64280. extra: 1877/1795,
  64281. bottom: 55/1932
  64282. }
  64283. },
  64284. },
  64285. [
  64286. {
  64287. name: "Base Height",
  64288. height: math.unit(9, "feet"),
  64289. default: true
  64290. },
  64291. {
  64292. name: "Large",
  64293. height: math.unit(18, "feet")
  64294. },
  64295. {
  64296. name: "Giant",
  64297. height: math.unit(100, "feet")
  64298. },
  64299. {
  64300. name: "Huge",
  64301. height: math.unit(500, "feet")
  64302. },
  64303. {
  64304. name: "Enormous",
  64305. height: math.unit(300, "meters")
  64306. },
  64307. {
  64308. name: "Deity Among Man",
  64309. height: math.unit(3000, "meters")
  64310. },
  64311. ]
  64312. ))
  64313. characterMakers.push(() => makeCharacter(
  64314. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  64315. {
  64316. front: {
  64317. height: math.unit(1.7, "meters"),
  64318. name: "Front",
  64319. image: {
  64320. source: "./media/characters/yari/front.svg",
  64321. extra: 1210/1125,
  64322. bottom: 283/1493
  64323. }
  64324. },
  64325. back: {
  64326. height: math.unit(1.7, "meters"),
  64327. name: "Back",
  64328. image: {
  64329. source: "./media/characters/yari/back.svg",
  64330. extra: 1240/1195,
  64331. bottom: 180/1420
  64332. }
  64333. },
  64334. head: {
  64335. height: math.unit(1.26, "feet"),
  64336. name: "Head",
  64337. image: {
  64338. source: "./media/characters/yari/head.svg"
  64339. }
  64340. },
  64341. },
  64342. [
  64343. {
  64344. name: "Nano",
  64345. height: math.unit(0.5, "mm")
  64346. },
  64347. {
  64348. name: "Micro",
  64349. height: math.unit(3, "inches")
  64350. },
  64351. {
  64352. name: "Short",
  64353. height: math.unit(1.5, "meters")
  64354. },
  64355. {
  64356. name: "Norm",
  64357. height: math.unit(1.7, "meters"),
  64358. default: true
  64359. },
  64360. ]
  64361. ))
  64362. characterMakers.push(() => makeCharacter(
  64363. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  64364. {
  64365. front: {
  64366. height: math.unit(5 + 2/12, "feet"),
  64367. weight: math.unit(110, "lb"),
  64368. name: "Front",
  64369. image: {
  64370. source: "./media/characters/salem/front.svg",
  64371. extra: 1895/1800,
  64372. bottom: 23/1918
  64373. }
  64374. },
  64375. back: {
  64376. height: math.unit(5 + 2/12, "feet"),
  64377. weight: math.unit(110, "lb"),
  64378. name: "Back",
  64379. image: {
  64380. source: "./media/characters/salem/back.svg",
  64381. extra: 1875/1802,
  64382. bottom: 20/1895
  64383. }
  64384. },
  64385. head: {
  64386. height: math.unit(1, "feet"),
  64387. name: "Head",
  64388. image: {
  64389. source: "./media/characters/salem/head.svg"
  64390. }
  64391. },
  64392. paw: {
  64393. height: math.unit(0.59, "feet"),
  64394. name: "Paw",
  64395. image: {
  64396. source: "./media/characters/salem/paw.svg"
  64397. }
  64398. },
  64399. beans: {
  64400. height: math.unit(0.66, "feet"),
  64401. name: "Beans",
  64402. image: {
  64403. source: "./media/characters/salem/beans.svg"
  64404. }
  64405. },
  64406. eye: {
  64407. height: math.unit(0.224, "feet"),
  64408. name: "Eye",
  64409. image: {
  64410. source: "./media/characters/salem/eye.svg"
  64411. }
  64412. },
  64413. semiferal: {
  64414. height: math.unit(2.3, "feet"),
  64415. name: "Semiferal",
  64416. image: {
  64417. source: "./media/characters/salem/semiferal.svg",
  64418. extra: 914/839,
  64419. bottom: 32/946
  64420. }
  64421. },
  64422. },
  64423. [
  64424. {
  64425. name: "Micro",
  64426. height: math.unit(4, "inches")
  64427. },
  64428. {
  64429. name: "Normal",
  64430. height: math.unit(5 + 2/12, "feet"),
  64431. default: true
  64432. },
  64433. {
  64434. name: "Macro",
  64435. height: math.unit(108, "feet")
  64436. },
  64437. {
  64438. name: "Macro+",
  64439. height: math.unit(1500, "feet")
  64440. },
  64441. ]
  64442. ))
  64443. characterMakers.push(() => makeCharacter(
  64444. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  64445. {
  64446. front: {
  64447. height: math.unit(7 + 6/12, "feet"),
  64448. weight: math.unit(600, "kg"),
  64449. preyCapacity: math.unit(10, "people"),
  64450. name: "Front",
  64451. image: {
  64452. source: "./media/characters/kii/front.svg",
  64453. extra: 3296/3087,
  64454. bottom: 130/3426
  64455. }
  64456. },
  64457. },
  64458. [
  64459. {
  64460. name: "Normal",
  64461. height: math.unit(7 + 6/12, "feet"),
  64462. default: true
  64463. },
  64464. ]
  64465. ))
  64466. characterMakers.push(() => makeCharacter(
  64467. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  64468. {
  64469. front: {
  64470. height: math.unit(2, "meters"),
  64471. weight: math.unit(200, "lb"),
  64472. name: "Front",
  64473. image: {
  64474. source: "./media/characters/taffy/front.svg",
  64475. extra: 1666/1618,
  64476. bottom: 157/1823
  64477. }
  64478. },
  64479. back: {
  64480. height: math.unit(2, "meters"),
  64481. weight: math.unit(200, "lb"),
  64482. name: "Back",
  64483. image: {
  64484. source: "./media/characters/taffy/back.svg",
  64485. extra: 1635/1583,
  64486. bottom: 153/1788
  64487. }
  64488. },
  64489. },
  64490. [
  64491. {
  64492. name: "Normal",
  64493. height: math.unit(2, "meters"),
  64494. default: true
  64495. },
  64496. ]
  64497. ))
  64498. characterMakers.push(() => makeCharacter(
  64499. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  64500. {
  64501. front: {
  64502. height: math.unit(1.55, "meters"),
  64503. weight: math.unit(60, "kg"),
  64504. name: "Front",
  64505. image: {
  64506. source: "./media/characters/barley/front.svg",
  64507. extra: 1520/1340,
  64508. bottom: 47/1567
  64509. }
  64510. },
  64511. back: {
  64512. height: math.unit(1.55, "meters"),
  64513. weight: math.unit(60, "kg"),
  64514. name: "Back",
  64515. image: {
  64516. source: "./media/characters/barley/back.svg",
  64517. extra: 1543/1341,
  64518. bottom: 12/1555
  64519. }
  64520. },
  64521. feet: {
  64522. height: math.unit(2.18, "feet"),
  64523. name: "Feet",
  64524. image: {
  64525. source: "./media/characters/barley/feet.svg"
  64526. }
  64527. },
  64528. },
  64529. [
  64530. {
  64531. name: "Normal",
  64532. height: math.unit(1.55, "meters"),
  64533. default: true
  64534. },
  64535. ]
  64536. ))
  64537. characterMakers.push(() => makeCharacter(
  64538. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  64539. {
  64540. dressed: {
  64541. height: math.unit(6, "feet"),
  64542. name: "Dressed",
  64543. image: {
  64544. source: "./media/characters/lydia-lopez/dressed.svg",
  64545. extra: 1319/1277,
  64546. bottom: 90/1409
  64547. }
  64548. },
  64549. nude: {
  64550. height: math.unit(6, "feet"),
  64551. name: "Nude",
  64552. image: {
  64553. source: "./media/characters/lydia-lopez/nude.svg",
  64554. extra: 1319/1277,
  64555. bottom: 90/1409
  64556. }
  64557. },
  64558. },
  64559. [
  64560. {
  64561. name: "Normal",
  64562. height: math.unit(6, "feet"),
  64563. default: true
  64564. },
  64565. {
  64566. name: "Maximum",
  64567. height: math.unit(2101, "feet")
  64568. },
  64569. ]
  64570. ))
  64571. characterMakers.push(() => makeCharacter(
  64572. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64573. {
  64574. front: {
  64575. height: math.unit(5 + 4/12, "feet"),
  64576. weight: math.unit(250, "lb"),
  64577. volume: math.unit(20, "gallons"),
  64578. name: "Front",
  64579. image: {
  64580. source: "./media/characters/kira-slime/front.svg",
  64581. extra: 442/403,
  64582. bottom: 18/460
  64583. }
  64584. },
  64585. frontNsfw: {
  64586. height: math.unit(5 + 4/12, "feet"),
  64587. weight: math.unit(250, "lb"),
  64588. volume: math.unit(20, "gallons"),
  64589. name: "Front (NSFW)",
  64590. image: {
  64591. source: "./media/characters/kira-slime/front-nsfw.svg",
  64592. extra: 442/403,
  64593. bottom: 18/460
  64594. }
  64595. },
  64596. },
  64597. [
  64598. {
  64599. name: "Droplet",
  64600. height: math.unit(0.0464452, "feet")
  64601. },
  64602. {
  64603. name: "Pint",
  64604. height: math.unit(0.9824, "feet")
  64605. },
  64606. {
  64607. name: "Bucket",
  64608. height: math.unit(2.83, "feet")
  64609. },
  64610. {
  64611. name: "Normal",
  64612. height: math.unit(5 + 4/12, "feet"),
  64613. default: true
  64614. },
  64615. {
  64616. name: "Tub",
  64617. height: math.unit(8.46614, "feet")
  64618. },
  64619. {
  64620. name: "Pool",
  64621. height: math.unit(31.1895, "feet")
  64622. },
  64623. {
  64624. name: "Pond",
  64625. height: math.unit(170.349, "feet")
  64626. },
  64627. {
  64628. name: "Lake",
  64629. height: math.unit(289334, "feet")
  64630. },
  64631. {
  64632. name: "Ocean",
  64633. height: math.unit(1.11940e+7, "feet")
  64634. },
  64635. ]
  64636. ))
  64637. characterMakers.push(() => makeCharacter(
  64638. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64639. {
  64640. front: {
  64641. height: math.unit(5 + 6/12, "feet"),
  64642. weight: math.unit(120, "lb"),
  64643. name: "Front",
  64644. image: {
  64645. source: "./media/characters/holiday/front.svg",
  64646. extra: 456/403,
  64647. bottom: 4/460
  64648. }
  64649. },
  64650. back: {
  64651. height: math.unit(5 + 6/12, "feet"),
  64652. weight: math.unit(120, "lb"),
  64653. name: "Back",
  64654. image: {
  64655. source: "./media/characters/holiday/back.svg",
  64656. extra: 450/404,
  64657. bottom: 12/462
  64658. }
  64659. },
  64660. head: {
  64661. height: math.unit(2.3, "feet"),
  64662. name: "Head",
  64663. image: {
  64664. source: "./media/characters/holiday/head.svg"
  64665. }
  64666. },
  64667. scifi_front: {
  64668. height: math.unit(145, "km"),
  64669. name: "Front",
  64670. image: {
  64671. source: "./media/characters/holiday/scifi-front.svg"
  64672. },
  64673. form: "scifi",
  64674. },
  64675. },
  64676. [
  64677. {
  64678. name: "Normal",
  64679. height: math.unit(5 + 6/12, "feet"),
  64680. default: true
  64681. },
  64682. {
  64683. name: "Macro",
  64684. height: math.unit(6574.25, "feet")
  64685. },
  64686. ]
  64687. ))
  64688. characterMakers.push(() => makeCharacter(
  64689. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64690. {
  64691. front: {
  64692. height: math.unit(6 + 2/12, "feet"),
  64693. weight: math.unit(200, "lb"),
  64694. name: "Front",
  64695. image: {
  64696. source: "./media/characters/camina/front.svg",
  64697. extra: 1048/985,
  64698. bottom: 30/1078
  64699. }
  64700. },
  64701. },
  64702. [
  64703. {
  64704. name: "Normal",
  64705. height: math.unit(6 + 2/12, "feet"),
  64706. default: true
  64707. },
  64708. ]
  64709. ))
  64710. characterMakers.push(() => makeCharacter(
  64711. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64712. {
  64713. front: {
  64714. height: math.unit(30, "cm"),
  64715. weight: math.unit(420, "grams"),
  64716. name: "Front",
  64717. image: {
  64718. source: "./media/characters/smuck/front.svg",
  64719. extra: 379/345,
  64720. bottom: 36/415
  64721. }
  64722. },
  64723. },
  64724. [
  64725. {
  64726. name: "Smuck-Sized",
  64727. height: math.unit(30, "cm"),
  64728. default: true
  64729. },
  64730. ]
  64731. ))
  64732. characterMakers.push(() => makeCharacter(
  64733. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64734. {
  64735. frontSfw: {
  64736. height: math.unit(10, "feet"),
  64737. weight: math.unit(1000, "kg"),
  64738. preyCapacity: math.unit(2, "people"),
  64739. name: "Front (SFW)",
  64740. image: {
  64741. source: "./media/characters/bylur/front-sfw.svg",
  64742. extra: 419/343,
  64743. bottom: 3/422
  64744. },
  64745. default: true
  64746. },
  64747. frontSheath: {
  64748. height: math.unit(10, "feet"),
  64749. weight: math.unit(1000, "kg"),
  64750. preyCapacity: math.unit(2, "people"),
  64751. name: "Front (Sheath)",
  64752. image: {
  64753. source: "./media/characters/bylur/front-sheath.svg",
  64754. extra: 419/343,
  64755. bottom: 3/422
  64756. }
  64757. },
  64758. frontErect: {
  64759. height: math.unit(10, "feet"),
  64760. weight: math.unit(1000, "kg"),
  64761. preyCapacity: math.unit(2, "people"),
  64762. name: "Front (Erect)",
  64763. image: {
  64764. source: "./media/characters/bylur/front-erect.svg",
  64765. extra: 419/343,
  64766. bottom: 3/422
  64767. }
  64768. },
  64769. back: {
  64770. height: math.unit(10, "feet"),
  64771. weight: math.unit(1000, "kg"),
  64772. preyCapacity: math.unit(2, "people"),
  64773. name: "Back",
  64774. image: {
  64775. source: "./media/characters/bylur/back.svg",
  64776. extra: 392/315,
  64777. bottom: 3/395
  64778. }
  64779. },
  64780. maw: {
  64781. height: math.unit(3.65, "feet"),
  64782. name: "Maw",
  64783. image: {
  64784. source: "./media/characters/bylur/maw.svg"
  64785. }
  64786. },
  64787. },
  64788. [
  64789. {
  64790. name: "Slightly Human Sized",
  64791. height: math.unit(10, "feet")
  64792. },
  64793. {
  64794. name: "Normal",
  64795. height: math.unit(35, "feet"),
  64796. default: true
  64797. },
  64798. {
  64799. name: "Macro",
  64800. height: math.unit(130, "feet")
  64801. },
  64802. ]
  64803. ))
  64804. characterMakers.push(() => makeCharacter(
  64805. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64806. {
  64807. frontNsfw: {
  64808. height: math.unit(6, "feet"),
  64809. weight: math.unit(250, "lb"),
  64810. preyCapacity: math.unit(0.05, "people"),
  64811. name: "Front (NSFW)",
  64812. image: {
  64813. source: "./media/characters/oarven/front-nsfw.svg",
  64814. extra: 1795/1783,
  64815. bottom: 142/1937
  64816. }
  64817. },
  64818. frontSfw: {
  64819. height: math.unit(6, "feet"),
  64820. weight: math.unit(250, "lb"),
  64821. preyCapacity: math.unit(0.05, "people"),
  64822. name: "Front (SFW)",
  64823. image: {
  64824. source: "./media/characters/oarven/front-sfw.svg",
  64825. extra: 1795/1783,
  64826. bottom: 142/1937
  64827. }
  64828. },
  64829. },
  64830. [
  64831. {
  64832. name: "Megamacro",
  64833. height: math.unit(5, "miles"),
  64834. default: true
  64835. },
  64836. {
  64837. name: "Maximum Height",
  64838. height: math.unit(5, "AUs")
  64839. },
  64840. ]
  64841. ))
  64842. characterMakers.push(() => makeCharacter(
  64843. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64844. {
  64845. side: {
  64846. height: math.unit(1065, "meters"),
  64847. weight: math.unit(1e12, "kg"),
  64848. volume: math.unit(3265000000, "m^3"),
  64849. name: "Side",
  64850. image: {
  64851. source: "./media/characters/solidarity/side.svg"
  64852. }
  64853. },
  64854. front: {
  64855. height: math.unit(1065, "meters"),
  64856. weight: math.unit(3265000000000, "kg"),
  64857. volume: math.unit(3265000000, "m^3"),
  64858. name: "Front",
  64859. image: {
  64860. source: "./media/characters/solidarity/front.svg"
  64861. }
  64862. },
  64863. top: {
  64864. height: math.unit(5823, "meters"),
  64865. weight: math.unit(3265000000000, "kg"),
  64866. volume: math.unit(3265000000, "m^3"),
  64867. name: "Top",
  64868. image: {
  64869. source: "./media/characters/solidarity/top.svg"
  64870. }
  64871. },
  64872. },
  64873. [
  64874. {
  64875. name: "Normal",
  64876. height: math.unit(1065 * 1.56, "meters"),
  64877. default: true
  64878. },
  64879. ]
  64880. ))
  64881. characterMakers.push(() => makeCharacter(
  64882. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64883. {
  64884. side: {
  64885. height: math.unit(18 + 4/12, "feet"),
  64886. weight: math.unit(13000, "kg"),
  64887. name: "Side",
  64888. image: {
  64889. source: "./media/characters/ani'szi/side.svg",
  64890. extra: 468/459,
  64891. bottom: 60/528
  64892. }
  64893. },
  64894. head: {
  64895. height: math.unit(4.8, "feet"),
  64896. name: "Head",
  64897. image: {
  64898. source: "./media/characters/ani'szi/head.svg"
  64899. }
  64900. },
  64901. jaws: {
  64902. height: math.unit(2.25, "feet"),
  64903. name: "Jaws",
  64904. image: {
  64905. source: "./media/characters/ani'szi/jaws.svg"
  64906. }
  64907. },
  64908. bust: {
  64909. height: math.unit(8.9, "feet"),
  64910. name: "Bust",
  64911. image: {
  64912. source: "./media/characters/ani'szi/bust.svg"
  64913. }
  64914. },
  64915. back: {
  64916. height: math.unit(13.53, "feet"),
  64917. name: "Back",
  64918. image: {
  64919. source: "./media/characters/ani'szi/back.svg"
  64920. }
  64921. },
  64922. eye: {
  64923. height: math.unit(0.44, "feet"),
  64924. name: "Eye",
  64925. image: {
  64926. source: "./media/characters/ani'szi/eye.svg"
  64927. }
  64928. },
  64929. },
  64930. [
  64931. {
  64932. name: "Normal",
  64933. height: math.unit(18 + 4/12, "feet"),
  64934. default: true
  64935. },
  64936. ]
  64937. ))
  64938. characterMakers.push(() => makeCharacter(
  64939. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64940. {
  64941. front: {
  64942. height: math.unit(7 + 6/12, "feet"),
  64943. weight: math.unit(300, "lb"),
  64944. name: "Front",
  64945. image: {
  64946. source: "./media/characters/rain/front.svg",
  64947. extra: 2955/2698,
  64948. bottom: 235/3190
  64949. }
  64950. },
  64951. dressed: {
  64952. height: math.unit(7 + 6/12, "feet"),
  64953. weight: math.unit(300, "lb"),
  64954. name: "Dressed",
  64955. image: {
  64956. source: "./media/characters/rain/dressed.svg",
  64957. extra: 2783/2572,
  64958. bottom: 430/3213
  64959. }
  64960. },
  64961. },
  64962. [
  64963. {
  64964. name: "Normal",
  64965. height: math.unit(7 + 6/12, "feet"),
  64966. default: true
  64967. },
  64968. {
  64969. name: "Macro",
  64970. height: math.unit(200, "feet")
  64971. },
  64972. {
  64973. name: "Macro+",
  64974. height: math.unit(500, "feet")
  64975. },
  64976. {
  64977. name: "Megamacro",
  64978. height: math.unit(5, "miles")
  64979. },
  64980. ]
  64981. ))
  64982. characterMakers.push(() => makeCharacter(
  64983. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64984. {
  64985. taur_side: {
  64986. height: math.unit(3, "meters"),
  64987. name: "Side",
  64988. image: {
  64989. source: "./media/characters/anise/taur-side.svg",
  64990. extra: 1833/926,
  64991. bottom: 134/1967
  64992. },
  64993. form: "taur",
  64994. default: true
  64995. },
  64996. feral_side: {
  64997. height: math.unit(3, "meters"),
  64998. name: "Side",
  64999. image: {
  65000. source: "./media/characters/anise/feral-side.svg",
  65001. extra: 681/349,
  65002. bottom: 26/707
  65003. },
  65004. form: "feral"
  65005. },
  65006. },
  65007. [
  65008. {
  65009. name: "Normal",
  65010. height: math.unit(3, "meters"),
  65011. default: true,
  65012. allForms: true
  65013. },
  65014. ],
  65015. {
  65016. "taur": {
  65017. name: "Taur",
  65018. default: true
  65019. },
  65020. "feral": {
  65021. name: "Feral",
  65022. },
  65023. }
  65024. ))
  65025. characterMakers.push(() => makeCharacter(
  65026. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  65027. {
  65028. front: {
  65029. height: math.unit(1.9, "meters"),
  65030. weight: math.unit(75, "kg"),
  65031. name: "Front",
  65032. image: {
  65033. source: "./media/characters/sarina/front.svg",
  65034. extra: 1275/1200,
  65035. bottom: 49/1324
  65036. }
  65037. },
  65038. back: {
  65039. height: math.unit(1.9, "meters"),
  65040. weight: math.unit(75, "kg"),
  65041. name: "Back",
  65042. image: {
  65043. source: "./media/characters/sarina/back.svg",
  65044. extra: 1279/1209,
  65045. bottom: 14/1293
  65046. }
  65047. },
  65048. dressed: {
  65049. height: math.unit(1.9, "meters"),
  65050. weight: math.unit(75, "kg"),
  65051. name: "Dressed",
  65052. image: {
  65053. source: "./media/characters/sarina/dressed.svg",
  65054. extra: 1256/1187,
  65055. bottom: 56/1312
  65056. }
  65057. },
  65058. paw: {
  65059. height: math.unit(0.57, "feet"),
  65060. name: "Paw",
  65061. image: {
  65062. source: "./media/characters/sarina/paw.svg"
  65063. }
  65064. },
  65065. toering: {
  65066. height: math.unit(0.27, "feet"),
  65067. name: "Toering",
  65068. image: {
  65069. source: "./media/characters/sarina/toering.svg"
  65070. }
  65071. },
  65072. },
  65073. [
  65074. {
  65075. name: "Incognito",
  65076. height: math.unit(1.9, "meters")
  65077. },
  65078. {
  65079. name: "Home Size",
  65080. height: math.unit(160, "meters"),
  65081. default: true
  65082. },
  65083. {
  65084. name: "Mega",
  65085. height: math.unit(50, "km")
  65086. },
  65087. {
  65088. name: "Small Giga",
  65089. height: math.unit(250, "km")
  65090. },
  65091. {
  65092. name: "Giga (Preferred Size)",
  65093. height: math.unit(3000, "km")
  65094. },
  65095. {
  65096. name: "Terra",
  65097. height: math.unit(40000, "km")
  65098. },
  65099. {
  65100. name: "Terra+",
  65101. height: math.unit(400000, "km")
  65102. },
  65103. {
  65104. name: "Solar",
  65105. height: math.unit(35e6, "km")
  65106. },
  65107. {
  65108. name: "Galactic",
  65109. height: math.unit(648106, "parsecs")
  65110. },
  65111. {
  65112. name: "Universal",
  65113. height: math.unit(7, "universes")
  65114. },
  65115. {
  65116. name: "Universal+",
  65117. height: math.unit(30, "universes")
  65118. },
  65119. ]
  65120. ))
  65121. characterMakers.push(() => makeCharacter(
  65122. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  65123. {
  65124. front: {
  65125. height: math.unit(5 + 6/12, "feet"),
  65126. name: "Front",
  65127. image: {
  65128. source: "./media/characters/sifray/front.svg",
  65129. extra: 722/691,
  65130. bottom: 64/786
  65131. }
  65132. },
  65133. },
  65134. [
  65135. {
  65136. name: "Normal",
  65137. height: math.unit(5 + 6/12, "feet"),
  65138. default: true
  65139. },
  65140. ]
  65141. ))
  65142. characterMakers.push(() => makeCharacter(
  65143. { name: "Spots", species: ["dog"], tags: ["feral"] },
  65144. {
  65145. side: {
  65146. height: math.unit(2.64, "feet"),
  65147. weight: math.unit(7, "tons"),
  65148. preyCapacity: math.unit(3, "people"),
  65149. name: "Side",
  65150. image: {
  65151. source: "./media/characters/spots/side.svg",
  65152. extra: 1859/977,
  65153. bottom: 19/1878
  65154. },
  65155. extraAttributes: {
  65156. "preyPerMinute": {
  65157. name: "Prey Per Minute",
  65158. power: 3,
  65159. type: "volume",
  65160. base: math.unit(6, "people"),
  65161. defaultUnit: "people"
  65162. },
  65163. "preyPerDay": {
  65164. name: "Prey Per Day",
  65165. power: 3,
  65166. type: "volume",
  65167. base: math.unit(6 * 60 * 24, "people"),
  65168. defaultUnit: "people"
  65169. },
  65170. }
  65171. },
  65172. },
  65173. [
  65174. {
  65175. name: "Normal",
  65176. height: math.unit(2.64, "feet"),
  65177. default: true
  65178. },
  65179. ]
  65180. ))
  65181. characterMakers.push(() => makeCharacter(
  65182. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  65183. {
  65184. front: {
  65185. height: math.unit(29 + 11/12, "feet"),
  65186. weight: math.unit(40, "tons"),
  65187. name: "Front",
  65188. image: {
  65189. source: "./media/characters/mona/front.svg",
  65190. extra: 1257/1116,
  65191. bottom: 34/1291
  65192. }
  65193. },
  65194. },
  65195. [
  65196. {
  65197. name: "Normal",
  65198. height: math.unit(29 + 11/12, "feet"),
  65199. default: true
  65200. },
  65201. ]
  65202. ))
  65203. characterMakers.push(() => makeCharacter(
  65204. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  65205. {
  65206. front: {
  65207. height: math.unit(15, "feet"),
  65208. weight: math.unit(3000, "kg"),
  65209. preyCapacity: math.unit(5, "people"),
  65210. name: "Front",
  65211. image: {
  65212. source: "./media/characters/frostfire/front.svg",
  65213. extra: 675/558,
  65214. bottom: 73/748
  65215. }
  65216. },
  65217. side: {
  65218. height: math.unit(15, "feet"),
  65219. weight: math.unit(3000, "kg"),
  65220. preyCapacity: math.unit(5, "people"),
  65221. name: "Side",
  65222. image: {
  65223. source: "./media/characters/frostfire/side.svg",
  65224. extra: 687/585,
  65225. bottom: 50/737
  65226. }
  65227. },
  65228. back: {
  65229. height: math.unit(15, "feet"),
  65230. weight: math.unit(3000, "kg"),
  65231. preyCapacity: math.unit(5, "people"),
  65232. name: "Back",
  65233. image: {
  65234. source: "./media/characters/frostfire/back.svg",
  65235. extra: 707/607,
  65236. bottom: 16/723
  65237. }
  65238. },
  65239. head: {
  65240. height: math.unit(9.35, "feet"),
  65241. name: "Head",
  65242. image: {
  65243. source: "./media/characters/frostfire/head.svg"
  65244. }
  65245. },
  65246. maw: {
  65247. height: math.unit(3.32, "feet"),
  65248. name: "Maw",
  65249. image: {
  65250. source: "./media/characters/frostfire/maw.svg"
  65251. }
  65252. },
  65253. hand: {
  65254. height: math.unit(3.7, "feet"),
  65255. name: "Hand",
  65256. image: {
  65257. source: "./media/characters/frostfire/hand.svg"
  65258. }
  65259. },
  65260. paw: {
  65261. height: math.unit(5.8, "feet"),
  65262. name: "Paw",
  65263. image: {
  65264. source: "./media/characters/frostfire/paw.svg"
  65265. }
  65266. },
  65267. },
  65268. [
  65269. {
  65270. name: "Normal",
  65271. height: math.unit(15, "feet"),
  65272. default: true
  65273. },
  65274. ]
  65275. ))
  65276. characterMakers.push(() => makeCharacter(
  65277. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  65278. {
  65279. front: {
  65280. height: math.unit(5 + 2/12, "feet"),
  65281. weight: math.unit(122, "lb"),
  65282. name: "Front",
  65283. image: {
  65284. source: "./media/characters/valeroo/front.svg",
  65285. extra: 1789/1534,
  65286. bottom: 66/1855
  65287. }
  65288. },
  65289. back: {
  65290. height: math.unit(5 + 2/12, "feet"),
  65291. weight: math.unit(122, "lb"),
  65292. name: "Back",
  65293. image: {
  65294. source: "./media/characters/valeroo/back.svg",
  65295. extra: 1848/1588,
  65296. bottom: 68/1916
  65297. }
  65298. },
  65299. head: {
  65300. height: math.unit(1.87, "feet"),
  65301. name: "Head",
  65302. image: {
  65303. source: "./media/characters/valeroo/head.svg"
  65304. }
  65305. },
  65306. hand: {
  65307. height: math.unit(0.82, "feet"),
  65308. name: "Hand",
  65309. image: {
  65310. source: "./media/characters/valeroo/hand.svg"
  65311. }
  65312. },
  65313. foot: {
  65314. height: math.unit(2.42, "feet"),
  65315. name: "Foot",
  65316. image: {
  65317. source: "./media/characters/valeroo/foot.svg"
  65318. }
  65319. },
  65320. },
  65321. [
  65322. {
  65323. name: "Normal",
  65324. height: math.unit(5 + 2/12, "feet"),
  65325. default: true
  65326. },
  65327. ]
  65328. ))
  65329. characterMakers.push(() => makeCharacter(
  65330. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  65331. {
  65332. front: {
  65333. height: math.unit(11 + 3/12, "feet"),
  65334. name: "Front",
  65335. image: {
  65336. source: "./media/characters/corrin/front.svg",
  65337. extra: 665/597,
  65338. bottom: 74/739
  65339. }
  65340. },
  65341. },
  65342. [
  65343. {
  65344. name: "Standard",
  65345. height: math.unit(11 + 3/12, "feet"),
  65346. default: true
  65347. },
  65348. {
  65349. name: "The Boss",
  65350. height: math.unit(110, "feet")
  65351. },
  65352. {
  65353. name: "Shipbreaker",
  65354. height: math.unit(38, "km")
  65355. },
  65356. ]
  65357. ))
  65358. characterMakers.push(() => makeCharacter(
  65359. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  65360. {
  65361. front: {
  65362. height: math.unit(10, "feet"),
  65363. weight: math.unit(1750, "lb"),
  65364. name: "Front",
  65365. image: {
  65366. source: "./media/characters/kiba-ulrich/front.svg",
  65367. extra: 1037/973,
  65368. bottom: 36/1073
  65369. }
  65370. },
  65371. },
  65372. [
  65373. {
  65374. name: "Normal",
  65375. height: math.unit(10, "feet"),
  65376. default: true
  65377. },
  65378. {
  65379. name: "Minimacro",
  65380. height: math.unit(20, "feet")
  65381. },
  65382. {
  65383. name: "Macro",
  65384. height: math.unit(200, "feet")
  65385. },
  65386. {
  65387. name: "Megamacro",
  65388. height: math.unit(22500, "feet")
  65389. },
  65390. {
  65391. name: "Gigamacro",
  65392. height: math.unit(2700, "miles")
  65393. },
  65394. {
  65395. name: "Teramacro",
  65396. height: math.unit(10000, "miles")
  65397. },
  65398. ]
  65399. ))
  65400. characterMakers.push(() => makeCharacter(
  65401. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  65402. {
  65403. gryphon_front: {
  65404. height: math.unit(220, "cm"),
  65405. weight: math.unit(160, "kg"),
  65406. name: "Front",
  65407. image: {
  65408. source: "./media/characters/ceanoth/gryphon-front.svg",
  65409. extra: 616/552,
  65410. bottom: 33/649
  65411. },
  65412. form: "gryphon",
  65413. default: true
  65414. },
  65415. },
  65416. [
  65417. {
  65418. name: "Normal",
  65419. height: math.unit(220, "cm"),
  65420. form: "gryphon",
  65421. default: true
  65422. },
  65423. ],
  65424. {
  65425. "gryphon": {
  65426. name: "Grpyhon",
  65427. default: true
  65428. },
  65429. }
  65430. ))
  65431. characterMakers.push(() => makeCharacter(
  65432. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  65433. {
  65434. dressed: {
  65435. height: math.unit(2.2 * 0.79, "meters"),
  65436. weight: math.unit(0.5, "tonnes"),
  65437. name: "Dressed",
  65438. image: {
  65439. source: "./media/characters/vanadiya-athelya/dressed.svg",
  65440. extra: 665/315,
  65441. bottom: 106/771
  65442. },
  65443. extraAttributes: {
  65444. "bodyLength": {
  65445. name: "Body Length",
  65446. power: 1,
  65447. type: "length",
  65448. base: math.unit(2.5, "meters")
  65449. },
  65450. "tailLength": {
  65451. name: "Tail Length",
  65452. power: 1,
  65453. type: "length",
  65454. base: math.unit(4.5, "meters")
  65455. },
  65456. "wingspan": {
  65457. name: "Wingspan",
  65458. power: 1,
  65459. type: "length",
  65460. base: math.unit(6, "meters")
  65461. },
  65462. "taurStomachCapacity": {
  65463. name: "Taur Stomach Capacity",
  65464. power: 3,
  65465. type: "volume",
  65466. base: math.unit(4, "people"),
  65467. defaultUnit: "people"
  65468. },
  65469. "anthroStomachCapacity": {
  65470. name: "Anthro Stomach Capacity",
  65471. power: 3,
  65472. type: "volume",
  65473. base: math.unit(1, "people"),
  65474. defaultUnit: "people"
  65475. },
  65476. }
  65477. },
  65478. nude: {
  65479. height: math.unit(2.2 * 0.79, "meters"),
  65480. weight: math.unit(0.5, "tonnes"),
  65481. name: "Nude",
  65482. image: {
  65483. source: "./media/characters/vanadiya-athelya/nude.svg",
  65484. extra: 665/315,
  65485. bottom: 106/771
  65486. },
  65487. extraAttributes: {
  65488. "bodyLength": {
  65489. name: "Body Length",
  65490. power: 1,
  65491. type: "length",
  65492. base: math.unit(2.5, "meters")
  65493. },
  65494. "tailLength": {
  65495. name: "Tail Length",
  65496. power: 1,
  65497. type: "length",
  65498. base: math.unit(4.5, "meters")
  65499. },
  65500. "wingspan": {
  65501. name: "Wingspan",
  65502. power: 1,
  65503. type: "length",
  65504. base: math.unit(6, "meters")
  65505. },
  65506. "taurStomachCapacity": {
  65507. name: "Taur Stomach Capacity",
  65508. power: 3,
  65509. type: "volume",
  65510. base: math.unit(4, "people"),
  65511. defaultUnit: "people"
  65512. },
  65513. "anthroStomachCapacity": {
  65514. name: "Anthro Stomach Capacity",
  65515. power: 3,
  65516. type: "volume",
  65517. base: math.unit(1, "people"),
  65518. defaultUnit: "people"
  65519. },
  65520. }
  65521. },
  65522. },
  65523. [
  65524. {
  65525. name: "Handheld",
  65526. height: math.unit(0.79 * 0.06, "meters")
  65527. },
  65528. {
  65529. name: "Mini",
  65530. height: math.unit(0.79 * 0.7, "meters")
  65531. },
  65532. {
  65533. name: "Short",
  65534. height: math.unit(0.79 * 1.4, "meters")
  65535. },
  65536. {
  65537. name: "Imposing",
  65538. height: math.unit(0.79 * 2.2, "meters"),
  65539. default: true
  65540. },
  65541. {
  65542. name: "Big",
  65543. height: math.unit(0.79 * 3.8, "meters")
  65544. },
  65545. {
  65546. name: "Giant",
  65547. height: math.unit(0.79 * 6.7, "meters")
  65548. },
  65549. {
  65550. name: "Airliner",
  65551. height: math.unit(0.79 * 64, "meters")
  65552. },
  65553. {
  65554. name: "Skyscraper",
  65555. height: math.unit(0.79 * 220, "meters")
  65556. },
  65557. {
  65558. name: "Mountain",
  65559. height: math.unit(0.79 * 3.6, "km")
  65560. },
  65561. {
  65562. name: "Spacescraper",
  65563. height: math.unit(0.79 * 70, "km")
  65564. },
  65565. {
  65566. name: "Continental",
  65567. height: math.unit(0.79 * 1290, "km")
  65568. },
  65569. {
  65570. name: "Moon",
  65571. height: math.unit(0.79 * 32200, "km")
  65572. },
  65573. {
  65574. name: "Planetary",
  65575. height: math.unit(0.79 * 145000, "km")
  65576. },
  65577. {
  65578. name: "Stellar",
  65579. height: math.unit(0.79 * 19e6, "km")
  65580. },
  65581. {
  65582. name: "Solar",
  65583. height: math.unit(0.79 * 40, "AU")
  65584. },
  65585. {
  65586. name: "Intersteller",
  65587. height: math.unit(0.79 * 3, "lightyears")
  65588. },
  65589. {
  65590. name: "Star Cluster",
  65591. height: math.unit(0.79 * 80, "lightyears")
  65592. },
  65593. {
  65594. name: "Ecumenical",
  65595. height: math.unit(0.79 * 2e3, "lightyears")
  65596. },
  65597. {
  65598. name: "Galactic",
  65599. height: math.unit(0.79 * 175000, "lightyears")
  65600. },
  65601. {
  65602. name: "Galaxy Cluster",
  65603. height: math.unit(0.79 * 25e6, "lightyears")
  65604. },
  65605. ]
  65606. ))
  65607. characterMakers.push(() => makeCharacter(
  65608. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65609. {
  65610. front: {
  65611. height: math.unit(6 + 2/12, "feet"),
  65612. weight: math.unit(160, "lb"),
  65613. name: "Front",
  65614. image: {
  65615. source: "./media/characters/yana-amelin/front.svg",
  65616. extra: 1413/1295,
  65617. bottom: 42/1455
  65618. }
  65619. },
  65620. back: {
  65621. height: math.unit(6 + 2/12, "feet"),
  65622. weight: math.unit(160, "lb"),
  65623. name: "Back",
  65624. image: {
  65625. source: "./media/characters/yana-amelin/back.svg",
  65626. extra: 1424/1310,
  65627. bottom: 24/1448
  65628. }
  65629. },
  65630. paws: {
  65631. height: math.unit(1.48, "feet"),
  65632. name: "Paws",
  65633. image: {
  65634. source: "./media/characters/yana-amelin/paws.svg",
  65635. extra: 304/304,
  65636. bottom: 49/353
  65637. }
  65638. },
  65639. },
  65640. [
  65641. {
  65642. name: "Micro",
  65643. height: math.unit(4, "inches")
  65644. },
  65645. {
  65646. name: "Normal",
  65647. height: math.unit(6 + 2/12, "feet"),
  65648. default: true
  65649. },
  65650. {
  65651. name: "Minimacro",
  65652. height: math.unit(20, "feet")
  65653. },
  65654. {
  65655. name: "Macro",
  65656. height: math.unit(70, "feet")
  65657. },
  65658. ]
  65659. ))
  65660. characterMakers.push(() => makeCharacter(
  65661. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65662. {
  65663. frontNsfw: {
  65664. height: math.unit(2.48, "meters"),
  65665. weight: math.unit(112, "kg"),
  65666. name: "Front (NSFW)",
  65667. image: {
  65668. source: "./media/characters/titania/front-nsfw.svg",
  65669. extra: 1302/1232,
  65670. bottom: 90/1392
  65671. }
  65672. },
  65673. backNsfw: {
  65674. height: math.unit(2.48, "meters"),
  65675. weight: math.unit(112, "kg"),
  65676. name: "Back (NSFW)",
  65677. image: {
  65678. source: "./media/characters/titania/back-nsfw.svg",
  65679. extra: 1355/1288,
  65680. bottom: 18/1373
  65681. }
  65682. },
  65683. frontSfw: {
  65684. height: math.unit(2.48, "meters"),
  65685. weight: math.unit(112, "kg"),
  65686. name: "Front (SFW)",
  65687. image: {
  65688. source: "./media/characters/titania/front-sfw.svg",
  65689. extra: 1302/1232,
  65690. bottom: 90/1392
  65691. }
  65692. },
  65693. backSfw: {
  65694. height: math.unit(2.48, "meters"),
  65695. weight: math.unit(112, "kg"),
  65696. name: "Back (SFW)",
  65697. image: {
  65698. source: "./media/characters/titania/back-sfw.svg",
  65699. extra: 1355/1288,
  65700. bottom: 18/1373
  65701. }
  65702. },
  65703. head: {
  65704. height: math.unit(2.06, "feet"),
  65705. name: "Head",
  65706. image: {
  65707. source: "./media/characters/titania/head.svg"
  65708. }
  65709. },
  65710. maw: {
  65711. height: math.unit(0.8, "feet"),
  65712. name: "Maw",
  65713. image: {
  65714. source: "./media/characters/titania/maw.svg"
  65715. }
  65716. },
  65717. foot: {
  65718. height: math.unit(1.65, "feet"),
  65719. name: "Foot",
  65720. image: {
  65721. source: "./media/characters/titania/foot.svg"
  65722. }
  65723. },
  65724. nethers: {
  65725. height: math.unit(1.7, "feet"),
  65726. name: "Nethers",
  65727. image: {
  65728. source: "./media/characters/titania/nethers.svg"
  65729. }
  65730. },
  65731. },
  65732. [
  65733. {
  65734. name: "Normal",
  65735. height: math.unit(2.48, "meters"),
  65736. default: true
  65737. },
  65738. {
  65739. name: "Mini Macro",
  65740. height: math.unit(248, "meters")
  65741. },
  65742. {
  65743. name: "Macro",
  65744. height: math.unit(620, "meters")
  65745. },
  65746. {
  65747. name: "Mega Macro",
  65748. height: math.unit(1860, "meters")
  65749. },
  65750. ]
  65751. ))
  65752. characterMakers.push(() => makeCharacter(
  65753. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65754. {
  65755. front: {
  65756. height: math.unit(5 + 9/12, "feet"),
  65757. weight: math.unit(1500, "lb"),
  65758. name: "Front",
  65759. image: {
  65760. source: "./media/characters/tony-gray/front.svg",
  65761. extra: 700/575,
  65762. bottom: 71/771
  65763. }
  65764. },
  65765. },
  65766. [
  65767. {
  65768. name: "Normal",
  65769. height: math.unit(5 + 9/12, "feet"),
  65770. default: true
  65771. },
  65772. ]
  65773. ))
  65774. characterMakers.push(() => makeCharacter(
  65775. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65776. {
  65777. side: {
  65778. height: math.unit(8 + 2/12, "feet"),
  65779. name: "Side",
  65780. image: {
  65781. source: "./media/characters/kelby/side.svg",
  65782. extra: 804/578,
  65783. bottom: 70/874
  65784. },
  65785. form: "regular",
  65786. default: true
  65787. },
  65788. lounging: {
  65789. height: math.unit(12.41, "feet"),
  65790. name: "Lounging",
  65791. image: {
  65792. source: "./media/characters/kelby/lounging.svg"
  65793. },
  65794. form: "regular"
  65795. },
  65796. maw: {
  65797. height: math.unit(5, "feet"),
  65798. name: "Maw",
  65799. image: {
  65800. source: "./media/characters/kelby/maw.svg"
  65801. },
  65802. form: "regular"
  65803. },
  65804. dick: {
  65805. height: math.unit(2.4, "feet"),
  65806. name: "Dick",
  65807. image: {
  65808. source: "./media/characters/kelby/dick.svg"
  65809. },
  65810. form: "regular"
  65811. },
  65812. slit: {
  65813. height: math.unit(1.2, "feet"),
  65814. name: "Slit",
  65815. image: {
  65816. source: "./media/characters/kelby/slit.svg"
  65817. },
  65818. form: "regular"
  65819. },
  65820. chibi: {
  65821. height: math.unit(5, "feet"),
  65822. name: "Chibi",
  65823. image: {
  65824. source: "./media/characters/kelby/chibi.svg",
  65825. extra: 245/200,
  65826. bottom: 43/288
  65827. },
  65828. form: "chibi",
  65829. default: true
  65830. },
  65831. },
  65832. [
  65833. {
  65834. name: "Normal",
  65835. height: math.unit(8 + 2/12, "feet"),
  65836. default: true,
  65837. form: "regular"
  65838. },
  65839. {
  65840. name: "Normal",
  65841. height: math.unit(5, "feet"),
  65842. default: true,
  65843. form: "chibi"
  65844. },
  65845. ],
  65846. {
  65847. "regular": {
  65848. name: "Regular",
  65849. default: true
  65850. },
  65851. "chibi": {
  65852. name: "Chibi",
  65853. },
  65854. }
  65855. ))
  65856. characterMakers.push(() => makeCharacter(
  65857. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65858. {
  65859. front: {
  65860. height: math.unit(7 + 10/12, "feet"),
  65861. weight: math.unit(300, "lb"),
  65862. name: "Front",
  65863. image: {
  65864. source: "./media/characters/elisa-mitchell/front.svg",
  65865. extra: 2562/2355,
  65866. bottom: 62/2624
  65867. }
  65868. },
  65869. maw: {
  65870. height: math.unit(2.37, "feet"),
  65871. name: "Maw",
  65872. image: {
  65873. source: "./media/characters/elisa-mitchell/maw.svg"
  65874. }
  65875. },
  65876. },
  65877. [
  65878. {
  65879. name: "Normal",
  65880. height: math.unit(7 + 10/12, "feet"),
  65881. default: true
  65882. },
  65883. {
  65884. name: "Macro",
  65885. height: math.unit(1490, "feet"),
  65886. default: true
  65887. },
  65888. ]
  65889. ))
  65890. characterMakers.push(() => makeCharacter(
  65891. { name: "Camia \"Vertigo\" Zott", species: ["vampire-bat", "kaiju"], tags: ["anthro"] },
  65892. {
  65893. front: {
  65894. height: math.unit(122, "cm"),
  65895. weight: math.unit(40, "lb"),
  65896. name: "Front",
  65897. image: {
  65898. source: "./media/characters/camia-vertigo-zott/front.svg",
  65899. extra: 2112/1902,
  65900. bottom: 21/2133
  65901. }
  65902. },
  65903. },
  65904. [
  65905. {
  65906. name: "Base Height",
  65907. height: math.unit(122, "cm")
  65908. },
  65909. {
  65910. name: "Macro Height",
  65911. height: math.unit(345, "meters"),
  65912. default: true
  65913. },
  65914. ]
  65915. ))
  65916. characterMakers.push(() => makeCharacter(
  65917. { name: "Dianne Elizabeth Heathers", species: ["saint-bernard"], tags: ["anthro"] },
  65918. {
  65919. front: {
  65920. height: math.unit(6 + 3/12, "feet"),
  65921. weight: math.unit(180, "lb"),
  65922. name: "Front",
  65923. image: {
  65924. source: "./media/characters/dianne-elizabeth-heathers/front.svg",
  65925. extra: 2580/2457,
  65926. bottom: 131/2711
  65927. }
  65928. },
  65929. },
  65930. [
  65931. {
  65932. name: "Normal",
  65933. height: math.unit(6 + 3/12, "feet"),
  65934. default: true
  65935. },
  65936. ]
  65937. ))
  65938. characterMakers.push(() => makeCharacter(
  65939. { name: "Sleeka", species: ["rat"], tags: ["anthro"] },
  65940. {
  65941. front: {
  65942. height: math.unit(165, "cm"),
  65943. weight: math.unit(130, "lb"),
  65944. name: "Front",
  65945. image: {
  65946. source: "./media/characters/sleeka/front.svg",
  65947. extra: 1252/1200,
  65948. bottom: 46/1298
  65949. }
  65950. },
  65951. },
  65952. [
  65953. {
  65954. name: "Normal",
  65955. height: math.unit(165, "cm")
  65956. },
  65957. {
  65958. name: "Galactic",
  65959. height: math.unit(5.8e22, "meters"),
  65960. default: true
  65961. },
  65962. {
  65963. name: "Universal",
  65964. height: math.unit(1.02e29, "meters")
  65965. },
  65966. ]
  65967. ))
  65968. characterMakers.push(() => makeCharacter(
  65969. { name: "Emily Whitetail", species: ["deer"], tags: ["anthro"] },
  65970. {
  65971. front: {
  65972. height: math.unit(5 + 11/12, "feet"),
  65973. weight: math.unit(145, "lb"),
  65974. name: "Front",
  65975. image: {
  65976. source: "./media/characters/emily-whitetail/front.svg",
  65977. extra: 2510/2280,
  65978. bottom: 128/2638
  65979. }
  65980. },
  65981. },
  65982. [
  65983. {
  65984. name: "Normal",
  65985. height: math.unit(5 + 11/12, "feet")
  65986. },
  65987. {
  65988. name: "Galactic",
  65989. height: math.unit(6.3e22, "meters"),
  65990. default: true
  65991. },
  65992. {
  65993. name: "Universal",
  65994. height: math.unit(1.12e29, "meters")
  65995. },
  65996. ]
  65997. ))
  65998. characterMakers.push(() => makeCharacter(
  65999. { name: "Buck Whitetail", species: ["deer"], tags: ["anthro"] },
  66000. {
  66001. front: {
  66002. height: math.unit(5 + 4/12, "feet"),
  66003. weight: math.unit(110, "lb"),
  66004. name: "Front",
  66005. image: {
  66006. source: "./media/characters/buck-whitetail/front.svg",
  66007. extra: 2430/2186,
  66008. bottom: 125/2555
  66009. }
  66010. },
  66011. },
  66012. [
  66013. {
  66014. name: "Normal",
  66015. height: math.unit(5 + 4/12, "feet")
  66016. },
  66017. {
  66018. name: "Galactic",
  66019. height: math.unit(5.4e22, "meters"),
  66020. default: true
  66021. },
  66022. {
  66023. name: "Universal",
  66024. height: math.unit(9.6e28, "meters")
  66025. },
  66026. ]
  66027. ))
  66028. characterMakers.push(() => makeCharacter(
  66029. { name: "Zoey Frisk", species: ["fox"], tags: ["anthro"] },
  66030. {
  66031. front: {
  66032. height: math.unit(5 + 3/12, "feet"),
  66033. name: "Front",
  66034. image: {
  66035. source: "./media/characters/zoey-frisk/front.svg",
  66036. extra: 2825/2646,
  66037. bottom: 57/2882
  66038. }
  66039. },
  66040. },
  66041. [
  66042. {
  66043. name: "Normal",
  66044. height: math.unit(5 + 3/12, "feet"),
  66045. default: true
  66046. },
  66047. {
  66048. name: "Macro",
  66049. height: math.unit(800, "feet")
  66050. },
  66051. ]
  66052. ))
  66053. characterMakers.push(() => makeCharacter(
  66054. { name: "Dhaeleena M'iar", species: ["siamese-cat"], tags: ["anthro"] },
  66055. {
  66056. front: {
  66057. height: math.unit(210, "cm"),
  66058. weight: math.unit(102, "kg"),
  66059. name: "Front",
  66060. image: {
  66061. source: "./media/characters/dhaeleena-m'iar/front.svg",
  66062. extra: 831/790,
  66063. bottom: 19/850
  66064. }
  66065. },
  66066. },
  66067. [
  66068. {
  66069. name: "Micro",
  66070. height: math.unit(1, "mm")
  66071. },
  66072. {
  66073. name: "Small",
  66074. height: math.unit(1, "cm")
  66075. },
  66076. {
  66077. name: "Short",
  66078. height: math.unit(1, "foot")
  66079. },
  66080. {
  66081. name: "Normal",
  66082. height: math.unit(210, "cm"),
  66083. default: true
  66084. },
  66085. {
  66086. name: "Big",
  66087. height: math.unit(15, "feet")
  66088. },
  66089. {
  66090. name: "Macro",
  66091. height: math.unit(50, "feet")
  66092. },
  66093. ]
  66094. ))
  66095. characterMakers.push(() => makeCharacter(
  66096. { name: "Trouble", species: ["wolf"], tags: ["anthro"] },
  66097. {
  66098. front: {
  66099. height: math.unit(80, "feet"),
  66100. weight: math.unit(410000, "lb"),
  66101. name: "Front",
  66102. image: {
  66103. source: "./media/characters/trouble/front.svg",
  66104. extra: 780/723,
  66105. bottom: 11/791
  66106. },
  66107. extraAttributes: {
  66108. "pawArea": {
  66109. name: "Paw Area",
  66110. power: 2,
  66111. type: "area",
  66112. base: math.unit(49, "feet^2")
  66113. },
  66114. }
  66115. },
  66116. },
  66117. [
  66118. {
  66119. name: "Normal",
  66120. height: math.unit(80, "feet"),
  66121. default: true
  66122. },
  66123. ]
  66124. ))
  66125. characterMakers.push(() => makeCharacter(
  66126. { name: "Bastion Aralus", species: ["wolf"], tags: ["anthro"] },
  66127. {
  66128. front: {
  66129. height: math.unit(5 + 7/12, "feet"),
  66130. weight: math.unit(140, "lb"),
  66131. name: "Front",
  66132. image: {
  66133. source: "./media/characters/bastion-aralus/front.svg",
  66134. extra: 1122/1045,
  66135. bottom: 24/1146
  66136. }
  66137. },
  66138. back: {
  66139. height: math.unit(5 + 7/12, "feet"),
  66140. weight: math.unit(140, "lb"),
  66141. name: "Back",
  66142. image: {
  66143. source: "./media/characters/bastion-aralus/back.svg",
  66144. extra: 1158/1078,
  66145. bottom: 39/1197
  66146. }
  66147. },
  66148. dick: {
  66149. height: math.unit(1.16, "feet"),
  66150. name: "Dick",
  66151. image: {
  66152. source: "./media/characters/bastion-aralus/dick.svg"
  66153. }
  66154. },
  66155. },
  66156. [
  66157. {
  66158. name: "Micro",
  66159. height: math.unit(1, "mm")
  66160. },
  66161. {
  66162. name: "Normal",
  66163. height: math.unit(5 + 7/12, "feet"),
  66164. default: true
  66165. },
  66166. {
  66167. name: "Macro",
  66168. height: math.unit(57, "feet")
  66169. },
  66170. ]
  66171. ))
  66172. characterMakers.push(() => makeCharacter(
  66173. { name: "Midnight Yamikidate", species: ["dragon"], tags: ["anthro"] },
  66174. {
  66175. sona_front: {
  66176. height: math.unit(6, "feet"),
  66177. weight: math.unit(350, "lb"),
  66178. name: "Front",
  66179. image: {
  66180. source: "./media/characters/midnight-yamikidate/sona-front.svg",
  66181. extra: 1099/1005,
  66182. bottom: 22/1121
  66183. },
  66184. form: "sona",
  66185. default: true
  66186. },
  66187. sona_side: {
  66188. height: math.unit(6, "feet"),
  66189. weight: math.unit(350, "lb"),
  66190. name: "Side",
  66191. image: {
  66192. source: "./media/characters/midnight-yamikidate/sona-side.svg",
  66193. extra: 1075/1017,
  66194. bottom: 20/1095
  66195. },
  66196. form: "sona",
  66197. },
  66198. character_front: {
  66199. height: math.unit(6, "feet"),
  66200. weight: math.unit(300, "lb"),
  66201. name: "Front",
  66202. image: {
  66203. source: "./media/characters/midnight-yamikidate/character-front.svg",
  66204. extra: 1099/1005,
  66205. bottom: 22/1121
  66206. },
  66207. form: "character",
  66208. default: true
  66209. },
  66210. character_side: {
  66211. height: math.unit(6, "feet"),
  66212. weight: math.unit(300, "lb"),
  66213. name: "Side",
  66214. image: {
  66215. source: "./media/characters/midnight-yamikidate/character-side.svg",
  66216. extra: 1075/1017,
  66217. bottom: 20/1095
  66218. },
  66219. form: "character",
  66220. },
  66221. },
  66222. [
  66223. {
  66224. name: "Normal",
  66225. height: math.unit(500, "feet"),
  66226. default: true,
  66227. form: "sona"
  66228. },
  66229. {
  66230. name: "Normal",
  66231. height: math.unit(50, "feet"),
  66232. default: true,
  66233. form: "character"
  66234. },
  66235. ],
  66236. {
  66237. "sona": {
  66238. name: "Sona",
  66239. default: true
  66240. },
  66241. "character": {
  66242. name: "Character",
  66243. },
  66244. }
  66245. ))
  66246. characterMakers.push(() => makeCharacter(
  66247. { name: "Hood", species: ["raptor"], tags: ["anthro"] },
  66248. {
  66249. front: {
  66250. height: math.unit(5 + 4/12, "feet"),
  66251. weight: math.unit(58, "kg"),
  66252. name: "Front",
  66253. image: {
  66254. source: "./media/characters/hood/front.svg",
  66255. extra: 1474/1309,
  66256. bottom: 0/1474
  66257. }
  66258. },
  66259. },
  66260. [
  66261. {
  66262. name: "Normal",
  66263. height: math.unit(5 + 4/12, "feet"),
  66264. default: true
  66265. },
  66266. ]
  66267. ))
  66268. characterMakers.push(() => makeCharacter(
  66269. { name: "Rena", species: ["wolf"], tags: ["anthro"] },
  66270. {
  66271. front: {
  66272. height: math.unit(8 + 2/12, "feet"),
  66273. name: "Front",
  66274. image: {
  66275. source: "./media/characters/rena/front.svg",
  66276. extra: 1768/1632,
  66277. bottom: 57/1825
  66278. }
  66279. },
  66280. },
  66281. [
  66282. {
  66283. name: "Normal",
  66284. height: math.unit(8 + 2/12, "feet"),
  66285. default: true
  66286. },
  66287. ]
  66288. ))
  66289. characterMakers.push(() => makeCharacter(
  66290. { name: "Taylor (Dilophosaurus)", species: ["dilophosaurus"], tags: ["anthro"] },
  66291. {
  66292. front: {
  66293. height: math.unit(5 + 3/12, "feet"),
  66294. name: "Front",
  66295. image: {
  66296. source: "./media/characters/taylor-dilophosaurus/front.svg",
  66297. extra: 1209/1159,
  66298. bottom: 33/1242
  66299. }
  66300. },
  66301. maw: {
  66302. height: math.unit(1.75, "feet"),
  66303. name: "Maw",
  66304. image: {
  66305. source: "./media/characters/taylor-dilophosaurus/maw.svg"
  66306. }
  66307. },
  66308. },
  66309. [
  66310. {
  66311. name: "Micro",
  66312. height: math.unit(3, "inches")
  66313. },
  66314. {
  66315. name: "Regular",
  66316. height: math.unit(5 + 3/12, "feet"),
  66317. default: true
  66318. },
  66319. {
  66320. name: "Imagined",
  66321. height: math.unit(90, "meters")
  66322. },
  66323. ]
  66324. ))
  66325. characterMakers.push(() => makeCharacter(
  66326. { name: "Suma Roo", species: ["nagainini"], tags: ["naga"] },
  66327. {
  66328. front: {
  66329. height: math.unit(11.75, "feet"),
  66330. weight: math.unit(4346, "lb"),
  66331. preyCapacity: math.unit(20, "people"),
  66332. name: "Front",
  66333. image: {
  66334. source: "./media/characters/suma-roo/front.svg",
  66335. extra: 1370/1365,
  66336. bottom: 164/1534
  66337. }
  66338. },
  66339. },
  66340. [
  66341. {
  66342. name: "Normal",
  66343. height: math.unit(11.75, "feet"),
  66344. default: true
  66345. },
  66346. ]
  66347. ))
  66348. characterMakers.push(() => makeCharacter(
  66349. { name: "Hymmanios", species: ["cat"], tags: ["anthro"] },
  66350. {
  66351. front: {
  66352. height: math.unit(2.35, "meters"),
  66353. weight: math.unit(240, "kg"),
  66354. name: "Front",
  66355. image: {
  66356. source: "./media/characters/hymmanios/front.svg",
  66357. extra: 2032/1994,
  66358. bottom: 194/2226
  66359. }
  66360. },
  66361. },
  66362. [
  66363. {
  66364. name: "Normal",
  66365. height: math.unit(2.35, "meters"),
  66366. default: true
  66367. },
  66368. {
  66369. name: "Macro",
  66370. height: math.unit(75, "meters")
  66371. },
  66372. {
  66373. name: "Mega",
  66374. height: math.unit(1250, "meters")
  66375. },
  66376. {
  66377. name: "Giga",
  66378. height: math.unit(235000, "meters")
  66379. },
  66380. ]
  66381. ))
  66382. characterMakers.push(() => makeCharacter(
  66383. { name: "Azalea", species: ["kaizleon"], tags: ["anthro"] },
  66384. {
  66385. front: {
  66386. height: math.unit(134, "feet"),
  66387. weight: math.unit(932.635, "tons"),
  66388. name: "Front",
  66389. image: {
  66390. source: "./media/characters/azalea/front.svg",
  66391. extra: 703/687,
  66392. bottom: 75/778
  66393. }
  66394. },
  66395. },
  66396. [
  66397. {
  66398. name: "Normal",
  66399. height: math.unit(134, "feet"),
  66400. default: true
  66401. },
  66402. ]
  66403. ))
  66404. characterMakers.push(() => makeCharacter(
  66405. { name: "Lizzy", species: ["otter"], tags: ["anthro"] },
  66406. {
  66407. front: {
  66408. height: math.unit(6.4, "feet"),
  66409. weight: math.unit(167.5, "lb"),
  66410. name: "Front",
  66411. image: {
  66412. source: "./media/characters/lizzy/front.svg",
  66413. extra: 1916/1791,
  66414. bottom: 103/2019
  66415. }
  66416. },
  66417. back: {
  66418. height: math.unit(6.4, "feet"),
  66419. weight: math.unit(167.5, "lb"),
  66420. name: "Back",
  66421. image: {
  66422. source: "./media/characters/lizzy/back.svg",
  66423. extra: 1995/1856,
  66424. bottom: 11/2006
  66425. }
  66426. },
  66427. },
  66428. [
  66429. {
  66430. name: "Normal",
  66431. height: math.unit(6.4, "feet"),
  66432. default: true
  66433. },
  66434. ]
  66435. ))
  66436. characterMakers.push(() => makeCharacter(
  66437. { name: "Sasha", species: ["bat"], tags: ["anthro"] },
  66438. {
  66439. front: {
  66440. height: math.unit(66, "inches"),
  66441. name: "Front",
  66442. image: {
  66443. source: "./media/characters/sasha/front.svg",
  66444. extra: 620/571,
  66445. bottom: 33/653
  66446. }
  66447. },
  66448. back: {
  66449. height: math.unit(66, "inches"),
  66450. name: "Back",
  66451. image: {
  66452. source: "./media/characters/sasha/back.svg",
  66453. extra: 615/564,
  66454. bottom: 38/653
  66455. }
  66456. },
  66457. },
  66458. [
  66459. {
  66460. name: "IRL",
  66461. height: math.unit(2, "inches")
  66462. },
  66463. {
  66464. name: "Normal",
  66465. height: math.unit(66, "inches"),
  66466. default: true
  66467. },
  66468. {
  66469. name: "Macro",
  66470. height: math.unit(400, "feet")
  66471. },
  66472. {
  66473. name: "Mega Macro",
  66474. height: math.unit(500000, "feet")
  66475. },
  66476. {
  66477. name: "Giga Macro",
  66478. height: math.unit(50000, "miles")
  66479. },
  66480. ]
  66481. ))
  66482. characterMakers.push(() => makeCharacter(
  66483. { name: "Autumn (Avali)", species: ["avali"], tags: ["anthro"] },
  66484. {
  66485. front: {
  66486. height: math.unit(52, "inches"),
  66487. name: "Front",
  66488. image: {
  66489. source: "./media/characters/autumn-avali/front.svg",
  66490. extra: 1031/908,
  66491. bottom: 38/1069
  66492. }
  66493. },
  66494. back: {
  66495. height: math.unit(52, "inches"),
  66496. name: "Back",
  66497. image: {
  66498. source: "./media/characters/autumn-avali/back.svg",
  66499. extra: 1047/923,
  66500. bottom: 11/1058
  66501. }
  66502. },
  66503. maw: {
  66504. height: math.unit(0.59, "feet"),
  66505. name: "Maw",
  66506. image: {
  66507. source: "./media/characters/autumn-avali/maw.svg"
  66508. }
  66509. },
  66510. },
  66511. [
  66512. {
  66513. name: "Normal",
  66514. height: math.unit(52, "inches"),
  66515. default: true
  66516. },
  66517. {
  66518. name: "Big'vali",
  66519. height: math.unit(3.5, "meters")
  66520. },
  66521. {
  66522. name: "Macro",
  66523. height: math.unit(35, "meters")
  66524. },
  66525. {
  66526. name: "Macro+",
  66527. height: math.unit(165, "meters")
  66528. },
  66529. {
  66530. name: "Megamacro",
  66531. height: math.unit(8250, "meters")
  66532. },
  66533. {
  66534. name: "Megamacro+",
  66535. height: math.unit(88000, "meters")
  66536. },
  66537. {
  66538. name: "Gigamacro",
  66539. height: math.unit(1.32, "megameters")
  66540. },
  66541. {
  66542. name: "Planet Cracker",
  66543. height: math.unit(77, "megameters")
  66544. },
  66545. ]
  66546. ))
  66547. characterMakers.push(() => makeCharacter(
  66548. { name: "Sophie", species: ["cow"], tags: ["anthro"] },
  66549. {
  66550. front: {
  66551. height: math.unit(200, "feet"),
  66552. name: "Front",
  66553. image: {
  66554. source: "./media/characters/sophie/front.svg",
  66555. extra: 710/680,
  66556. bottom: 3/713
  66557. },
  66558. extraAttributes: {
  66559. "milkProduction": {
  66560. name: "Milk Production",
  66561. power: 3,
  66562. type: "volume",
  66563. base: math.unit(27000, "liters")
  66564. },
  66565. }
  66566. },
  66567. },
  66568. [
  66569. {
  66570. name: "Normal",
  66571. height: math.unit(200, "feet"),
  66572. default: true
  66573. },
  66574. ]
  66575. ))
  66576. characterMakers.push(() => makeCharacter(
  66577. { name: "Adelaide (Spireborn)", species: ["spireborn"], tags: ["anthro"] },
  66578. {
  66579. front: {
  66580. height: math.unit(23, "feet"),
  66581. name: "Front",
  66582. image: {
  66583. source: "./media/characters/adelaide-spireborn/front.svg",
  66584. extra: 671/625,
  66585. bottom: 18/689
  66586. }
  66587. },
  66588. maw: {
  66589. height: math.unit(7.8, "feet"),
  66590. name: "Maw",
  66591. image: {
  66592. source: "./media/characters/adelaide-spireborn/maw.svg"
  66593. }
  66594. },
  66595. sword: {
  66596. height: math.unit(13.4, "feet"),
  66597. name: "Sword",
  66598. image: {
  66599. source: "./media/characters/adelaide-spireborn/sword.svg"
  66600. }
  66601. },
  66602. },
  66603. [
  66604. {
  66605. name: "Magically Induced",
  66606. height: math.unit(8.5, "feet")
  66607. },
  66608. {
  66609. name: "Normal",
  66610. height: math.unit(23, "feet"),
  66611. default: true
  66612. },
  66613. ]
  66614. ))
  66615. characterMakers.push(() => makeCharacter(
  66616. { name: "Artemus", species: ["zorgoia"], tags: ["feral"] },
  66617. {
  66618. side: {
  66619. height: math.unit(8, "feet"),
  66620. name: "Side",
  66621. image: {
  66622. source: "./media/characters/artemus/side.svg",
  66623. extra: 800/397,
  66624. bottom: 83/883
  66625. }
  66626. },
  66627. front: {
  66628. height: math.unit(8, "feet"),
  66629. name: "Front",
  66630. image: {
  66631. source: "./media/characters/artemus/front.svg",
  66632. extra: 763/348,
  66633. bottom: 89/852
  66634. }
  66635. },
  66636. maw: {
  66637. height: math.unit(5.63, "feet"),
  66638. name: "Maw",
  66639. image: {
  66640. source: "./media/characters/artemus/maw.svg"
  66641. }
  66642. },
  66643. forepaw: {
  66644. height: math.unit(3.13, "feet"),
  66645. name: "Forepaw",
  66646. image: {
  66647. source: "./media/characters/artemus/forepaw.svg"
  66648. }
  66649. },
  66650. hindpaw: {
  66651. height: math.unit(4.85, "feet"),
  66652. name: "Hindpaw",
  66653. image: {
  66654. source: "./media/characters/artemus/hindpaw.svg"
  66655. }
  66656. },
  66657. },
  66658. [
  66659. {
  66660. name: "Normal",
  66661. height: math.unit(8, "feet"),
  66662. default: true
  66663. },
  66664. ]
  66665. ))
  66666. characterMakers.push(() => makeCharacter(
  66667. { name: "Flynn", species: ["cross-fox"], tags: ["anthro"] },
  66668. {
  66669. front: {
  66670. height: math.unit(4, "feet"),
  66671. name: "Front",
  66672. image: {
  66673. source: "./media/characters/flynn/front.svg",
  66674. extra: 427/404,
  66675. bottom: 14/441
  66676. },
  66677. extraAttributes: {
  66678. "tailLength": {
  66679. name: "Tail Length",
  66680. power: 1,
  66681. type: "length",
  66682. base: math.unit(2.7, "feet")
  66683. },
  66684. }
  66685. },
  66686. frontNsfw: {
  66687. height: math.unit(4, "feet"),
  66688. name: "Front NSFW",
  66689. image: {
  66690. source: "./media/characters/flynn/front-nsfw.svg",
  66691. extra: 427/404,
  66692. bottom: 14/441
  66693. },
  66694. extraAttributes: {
  66695. "tailLength": {
  66696. name: "Tail Length",
  66697. power: 1,
  66698. type: "length",
  66699. base: math.unit(2.7, "feet")
  66700. },
  66701. "dickLength": {
  66702. name: "Dick Length",
  66703. power: 1,
  66704. type: "length",
  66705. base: math.unit(0.7, "feet")
  66706. },
  66707. }
  66708. },
  66709. back: {
  66710. height: math.unit(4, "feet"),
  66711. name: "Back",
  66712. image: {
  66713. source: "./media/characters/flynn/back.svg",
  66714. extra: 420/400,
  66715. bottom: 12/432
  66716. },
  66717. extraAttributes: {
  66718. "tailLength": {
  66719. name: "Tail Length",
  66720. power: 1,
  66721. type: "length",
  66722. base: math.unit(2.7, "feet")
  66723. },
  66724. }
  66725. },
  66726. },
  66727. [
  66728. {
  66729. name: "Normal",
  66730. height: math.unit(4, "feet"),
  66731. default: true
  66732. },
  66733. ]
  66734. ))
  66735. characterMakers.push(() => makeCharacter(
  66736. { name: "Orun", species: ["sabertooth-tiger"], tags: ["anthro"] },
  66737. {
  66738. frontSfw: {
  66739. height: math.unit(1.9, "meters"),
  66740. name: "Front (SFW)",
  66741. image: {
  66742. source: "./media/characters/orun/front-sfw.svg",
  66743. extra: 1684/1625,
  66744. bottom: 64/1748
  66745. }
  66746. },
  66747. frontNsfw: {
  66748. height: math.unit(1.9, "meters"),
  66749. name: "Front (NSFW)",
  66750. image: {
  66751. source: "./media/characters/orun/front-nsfw.svg",
  66752. extra: 1684/1625,
  66753. bottom: 64/1748
  66754. }
  66755. },
  66756. frontErect: {
  66757. height: math.unit(1.9, "meters"),
  66758. name: "Front (Erect)",
  66759. image: {
  66760. source: "./media/characters/orun/front-erect.svg",
  66761. extra: 1684/1625,
  66762. bottom: 64/1748
  66763. }
  66764. },
  66765. },
  66766. [
  66767. {
  66768. name: "Normal",
  66769. height: math.unit(1.9, "meters"),
  66770. default: true
  66771. },
  66772. {
  66773. name: "Giant",
  66774. height: math.unit(45, "meters")
  66775. },
  66776. {
  66777. name: "Bigger Giant",
  66778. height: math.unit(155, "meters")
  66779. },
  66780. {
  66781. name: "Macro",
  66782. height: math.unit(550, "meters")
  66783. },
  66784. {
  66785. name: "Bigger Macro",
  66786. height: math.unit(1050, "meters")
  66787. },
  66788. {
  66789. name: "Titan",
  66790. height: math.unit(5, "km")
  66791. },
  66792. {
  66793. name: "Bigger Titan",
  66794. height: math.unit(15, "km")
  66795. },
  66796. ]
  66797. ))
  66798. characterMakers.push(() => makeCharacter(
  66799. { name: "Catherine Busch", species: ["arctic-fox"], tags: ["anthro"] },
  66800. {
  66801. clothed: {
  66802. height: math.unit(5 + 6/12, "feet"),
  66803. name: "Clothed",
  66804. image: {
  66805. source: "./media/characters/catherine-busch/clothed.svg",
  66806. extra: 1330/1273,
  66807. bottom: 45/1375
  66808. }
  66809. },
  66810. nude: {
  66811. height: math.unit(5 + 6/12, "feet"),
  66812. name: "Nude",
  66813. image: {
  66814. source: "./media/characters/catherine-busch/nude.svg",
  66815. extra: 1330/1273,
  66816. bottom: 45/1375
  66817. }
  66818. },
  66819. },
  66820. [
  66821. {
  66822. name: "Normal",
  66823. height: math.unit(5 + 6/12, "feet"),
  66824. default: true
  66825. },
  66826. {
  66827. name: "Maximum",
  66828. height: math.unit(1644, "feet")
  66829. },
  66830. ]
  66831. ))
  66832. characterMakers.push(() => makeCharacter(
  66833. { name: "Carter", species: ["cross-fox"], tags: ["anthro"] },
  66834. {
  66835. front: {
  66836. height: math.unit(5 + 4/12, "feet"),
  66837. weight: math.unit(160, "lb"),
  66838. name: "Front",
  66839. image: {
  66840. source: "./media/characters/carter/front.svg",
  66841. extra: 1007/940,
  66842. bottom: 37/1044
  66843. }
  66844. },
  66845. back: {
  66846. height: math.unit(5 + 4/12, "feet"),
  66847. weight: math.unit(160, "lb"),
  66848. name: "Back",
  66849. image: {
  66850. source: "./media/characters/carter/back.svg",
  66851. extra: 1010/941,
  66852. bottom: 25/1035
  66853. }
  66854. },
  66855. frontErect: {
  66856. height: math.unit(5 + 4/12, "feet"),
  66857. weight: math.unit(160, "lb"),
  66858. name: "Front (Erect)",
  66859. image: {
  66860. source: "./media/characters/carter/front-erect.svg",
  66861. extra: 1015/948,
  66862. bottom: 33/1048
  66863. }
  66864. },
  66865. },
  66866. [
  66867. {
  66868. name: "Normal",
  66869. height: math.unit(5 + 4/12, "feet"),
  66870. default: true
  66871. },
  66872. ]
  66873. ))
  66874. characterMakers.push(() => makeCharacter(
  66875. { name: "Yula", species: ["german-shepherd"], tags: ["anthro"] },
  66876. {
  66877. front: {
  66878. height: math.unit(90, "feet"),
  66879. name: "Front",
  66880. image: {
  66881. source: "./media/characters/yula/front.svg",
  66882. extra: 686/641,
  66883. bottom: 5/691
  66884. }
  66885. },
  66886. },
  66887. [
  66888. {
  66889. name: "Normal",
  66890. height: math.unit(90, "feet"),
  66891. default: true
  66892. },
  66893. ]
  66894. ))
  66895. characterMakers.push(() => makeCharacter(
  66896. { name: "Thomas Bakes", species: ["dutch-angel-dragon"], tags: ["anthro"] },
  66897. {
  66898. front: {
  66899. height: math.unit(2.16, "meters"),
  66900. weight: math.unit(275, "kg"),
  66901. name: "Front",
  66902. image: {
  66903. source: "./media/characters/thomas-bakes/front.svg",
  66904. extra: 333/283,
  66905. bottom: 46/379
  66906. },
  66907. extraAttributes: {
  66908. "pawLength": {
  66909. name: "Paw Length",
  66910. power: 1,
  66911. type: "length",
  66912. base: math.unit(35, "cm")
  66913. },
  66914. "pawWidth": {
  66915. name: "Paw Width",
  66916. power: 1,
  66917. type: "length",
  66918. base: math.unit(30, "cm")
  66919. },
  66920. "handLength": {
  66921. name: "Hand Length",
  66922. power: 1,
  66923. type: "length",
  66924. base: math.unit(30, "cm")
  66925. },
  66926. "handWidth": {
  66927. name: "Hand Width",
  66928. power: 1,
  66929. type: "length",
  66930. base: math.unit(25, "cm")
  66931. },
  66932. "preyCapacity": {
  66933. name: "Prey Capacity",
  66934. power: 3,
  66935. type: "volume",
  66936. base: math.unit(40*20*20, "cm^3")
  66937. },
  66938. "swallowSize": {
  66939. name: "Swallow Size",
  66940. power: 1,
  66941. type: "length",
  66942. base: math.unit(13, "cm")
  66943. },
  66944. "energyIntake": {
  66945. name: "Food Intake",
  66946. power: 3,
  66947. type: "energy",
  66948. base: math.unit(3250, "kcal")
  66949. },
  66950. "wingspan": {
  66951. name: "Wingspan",
  66952. power: 1,
  66953. type: "length",
  66954. base: math.unit(3.7, "meters")
  66955. },
  66956. "wingWidth": {
  66957. name: "Wing Width",
  66958. power: 1,
  66959. type: "length",
  66960. base: math.unit(1.7, "meters")
  66961. },
  66962. }
  66963. },
  66964. },
  66965. [
  66966. {
  66967. name: "Normal",
  66968. height: math.unit(2.16, "meters"),
  66969. default: true
  66970. },
  66971. ]
  66972. ))
  66973. characterMakers.push(() => makeCharacter(
  66974. { name: "Rekka", species: ["kaiju", "hyena"], tags: ["anthro"] },
  66975. {
  66976. front: {
  66977. height: math.unit(8 + 6/12, "feet"),
  66978. weight: math.unit(600, "lb"),
  66979. name: "Front",
  66980. image: {
  66981. source: "./media/characters/rekka/front.svg",
  66982. extra: 1814/1672,
  66983. bottom: 92/1906
  66984. }
  66985. },
  66986. back: {
  66987. height: math.unit(8 + 6/12, "feet"),
  66988. weight: math.unit(600, "lb"),
  66989. name: "Back",
  66990. image: {
  66991. source: "./media/characters/rekka/back.svg",
  66992. extra: 1795/1682,
  66993. bottom: 86/1881
  66994. }
  66995. },
  66996. },
  66997. [
  66998. {
  66999. name: "Normal",
  67000. height: math.unit(8 + 6/12, "feet"),
  67001. default: true
  67002. },
  67003. {
  67004. name: "Category 1",
  67005. height: math.unit(30, "feet")
  67006. },
  67007. {
  67008. name: "Category 2",
  67009. height: math.unit(150, "feet")
  67010. },
  67011. {
  67012. name: "Category 3",
  67013. height: math.unit(300, "feet")
  67014. },
  67015. {
  67016. name: "Category 4",
  67017. height: math.unit(550, "feet")
  67018. },
  67019. ]
  67020. ))
  67021. characterMakers.push(() => makeCharacter(
  67022. { name: "Zeke", species: ["german-shepherd"], tags: ["anthro"] },
  67023. {
  67024. front: {
  67025. height: math.unit(5 + 8/12, "feet"),
  67026. weight: math.unit(180, "lb"),
  67027. name: "Front",
  67028. image: {
  67029. source: "./media/characters/zeke/front.svg",
  67030. extra: 452/417,
  67031. bottom: 21/473
  67032. }
  67033. },
  67034. back: {
  67035. height: math.unit(5 + 8/12, "feet"),
  67036. weight: math.unit(180, "lb"),
  67037. name: "Back",
  67038. image: {
  67039. source: "./media/characters/zeke/back.svg",
  67040. extra: 473/444,
  67041. bottom: 8/481
  67042. }
  67043. },
  67044. frontNsfw: {
  67045. height: math.unit(5 + 8/12, "feet"),
  67046. weight: math.unit(180, "lb"),
  67047. name: "Front (NSFW)",
  67048. image: {
  67049. source: "./media/characters/zeke/front-nsfw.svg",
  67050. extra: 452/417,
  67051. bottom: 21/473
  67052. }
  67053. },
  67054. backNsfw: {
  67055. height: math.unit(5 + 8/12, "feet"),
  67056. weight: math.unit(180, "lb"),
  67057. name: "Back (NSFW)",
  67058. image: {
  67059. source: "./media/characters/zeke/back-nsfw.svg",
  67060. extra: 473/444,
  67061. bottom: 8/481
  67062. }
  67063. },
  67064. frontErect: {
  67065. height: math.unit(5 + 8/12, "feet"),
  67066. weight: math.unit(180, "lb"),
  67067. name: "Front (Erect)",
  67068. image: {
  67069. source: "./media/characters/zeke/front-erect.svg",
  67070. extra: 452/417,
  67071. bottom: 21/473
  67072. }
  67073. },
  67074. },
  67075. [
  67076. {
  67077. name: "Normal",
  67078. height: math.unit(5 + 8/12, "feet"),
  67079. default: true
  67080. },
  67081. {
  67082. name: "Kaiju",
  67083. height: math.unit((5 + 8/12) * 54.6087, "feet")
  67084. },
  67085. {
  67086. name: "Pez Humans",
  67087. height: math.unit((5 + 8/12) * 121.92, "feet")
  67088. },
  67089. {
  67090. name: "Pez Buses",
  67091. height: math.unit((5 + 8/12) * 796.67, "feet")
  67092. },
  67093. {
  67094. name: "Pez Planes",
  67095. height: math.unit((5 + 8/12) * 5086.6, "feet")
  67096. },
  67097. {
  67098. name: "Pez Khalifa",
  67099. height: math.unit((5 + 8/12) * 55320, "feet")
  67100. },
  67101. ]
  67102. ))
  67103. characterMakers.push(() => makeCharacter(
  67104. { name: "Adalwen", species: ["german-shepherd"], tags: ["anthro"] },
  67105. {
  67106. frontSfw: {
  67107. height: math.unit(2.2, "meters"),
  67108. name: "Front (SFW)",
  67109. image: {
  67110. source: "./media/characters/adalwen/front-sfw.svg",
  67111. extra: 1654/1574,
  67112. bottom: 107/1761
  67113. }
  67114. },
  67115. frontNsfw: {
  67116. height: math.unit(2.2, "meters"),
  67117. name: "Front (NSFW)",
  67118. image: {
  67119. source: "./media/characters/adalwen/front-nsfw.svg",
  67120. extra: 1654/1574,
  67121. bottom: 107/1761
  67122. }
  67123. },
  67124. frontErect: {
  67125. height: math.unit(2.2, "meters"),
  67126. name: "Front (Erect)",
  67127. image: {
  67128. source: "./media/characters/adalwen/front-erect.svg",
  67129. extra: 1654/1574,
  67130. bottom: 107/1761
  67131. }
  67132. },
  67133. },
  67134. [
  67135. {
  67136. name: "Normal",
  67137. height: math.unit(2.2, "meters"),
  67138. default: true
  67139. },
  67140. {
  67141. name: "Giant",
  67142. height: math.unit(55, "meters")
  67143. },
  67144. {
  67145. name: "Bigger Giant",
  67146. height: math.unit(200, "meters")
  67147. },
  67148. {
  67149. name: "Macro",
  67150. height: math.unit(650, "meters")
  67151. },
  67152. {
  67153. name: "Bigger Macro",
  67154. height: math.unit(1300, "meters")
  67155. },
  67156. {
  67157. name: "Titan",
  67158. height: math.unit(5500, "meters")
  67159. },
  67160. {
  67161. name: "Titan 2",
  67162. height: math.unit(17, "km")
  67163. },
  67164. {
  67165. name: "Titan 3",
  67166. height: math.unit(125, "km")
  67167. },
  67168. {
  67169. name: "Titan 4",
  67170. height: math.unit(1500, "km")
  67171. },
  67172. {
  67173. name: "Titan 5",
  67174. height: math.unit(55000, "km")
  67175. },
  67176. ]
  67177. ))
  67178. characterMakers.push(() => makeCharacter(
  67179. { name: "Alexio", species: ["lemur"], tags: ["anthro"] },
  67180. {
  67181. front: {
  67182. height: math.unit(1.91, "meters"),
  67183. weight: math.unit(76, "kg"),
  67184. name: "Front",
  67185. image: {
  67186. source: "./media/characters/alexio/front.svg",
  67187. extra: 1440/1376,
  67188. bottom: 141/1581
  67189. }
  67190. },
  67191. back: {
  67192. height: math.unit(1.91, "meters"),
  67193. weight: math.unit(76, "kg"),
  67194. name: "Back",
  67195. image: {
  67196. source: "./media/characters/alexio/back.svg",
  67197. extra: 1448/1388,
  67198. bottom: 57/1505
  67199. }
  67200. },
  67201. head: {
  67202. height: math.unit(1.17, "feet"),
  67203. name: "Head",
  67204. image: {
  67205. source: "./media/characters/alexio/head.svg"
  67206. }
  67207. },
  67208. maw: {
  67209. height: math.unit(0.6, "feet"),
  67210. name: "Maw",
  67211. image: {
  67212. source: "./media/characters/alexio/maw.svg"
  67213. }
  67214. },
  67215. feet: {
  67216. height: math.unit(1.34, "feet"),
  67217. name: "Feet",
  67218. image: {
  67219. source: "./media/characters/alexio/feet.svg"
  67220. }
  67221. },
  67222. genitals: {
  67223. height: math.unit(1.03, "feet"),
  67224. name: "Genitals",
  67225. image: {
  67226. source: "./media/characters/alexio/genitals.svg"
  67227. }
  67228. },
  67229. },
  67230. [
  67231. {
  67232. name: "Normal",
  67233. height: math.unit(1.91, "meters"),
  67234. default: true
  67235. },
  67236. {
  67237. name: "Minimacro",
  67238. height: math.unit(191, "meters")
  67239. },
  67240. {
  67241. name: "Macro",
  67242. height: math.unit(477.5, "meters")
  67243. },
  67244. {
  67245. name: "Mega Macro",
  67246. height: math.unit(1432.5, "meters")
  67247. },
  67248. ]
  67249. ))
  67250. characterMakers.push(() => makeCharacter(
  67251. { name: "Quake Lee", species: ["red-fox"], tags: ["anthro"] },
  67252. {
  67253. front: {
  67254. height: math.unit(5 + 2/12, "feet"),
  67255. weight: math.unit(110, "lb"),
  67256. name: "Front",
  67257. image: {
  67258. source: "./media/characters/quake-lee/front.svg",
  67259. extra: 1376/1295,
  67260. bottom: 69/1445
  67261. }
  67262. },
  67263. paw: {
  67264. height: math.unit(0.786, "feet"),
  67265. name: "Paw",
  67266. image: {
  67267. source: "./media/characters/quake-lee/paw.svg"
  67268. }
  67269. },
  67270. },
  67271. [
  67272. {
  67273. name: "Avey",
  67274. height: math.unit(5 + 2/12, "feet"),
  67275. default: true
  67276. },
  67277. {
  67278. name: "Macro",
  67279. height: math.unit(146, "feet")
  67280. },
  67281. {
  67282. name: "Mega",
  67283. height: math.unit(7, "miles")
  67284. },
  67285. {
  67286. name: "Ultra",
  67287. height: math.unit(1.6, "gigameters")
  67288. },
  67289. ]
  67290. ))
  67291. characterMakers.push(() => makeCharacter(
  67292. { name: "Wolf", species: ["wolf"], tags: ["feral"] },
  67293. {
  67294. side: {
  67295. height: math.unit(40, "inches"),
  67296. weight: math.unit(200, "lb"),
  67297. preyCapacity: math.unit(2, "people"),
  67298. name: "Side",
  67299. image: {
  67300. source: "./media/characters/wolf/side.svg",
  67301. extra: 432/345,
  67302. bottom: 15/447
  67303. }
  67304. },
  67305. front: {
  67306. height: math.unit(40, "inches"),
  67307. weight: math.unit(200, "lb"),
  67308. preyCapacity: math.unit(2, "people"),
  67309. name: "Front",
  67310. image: {
  67311. source: "./media/characters/wolf/front.svg",
  67312. extra: 803/467,
  67313. bottom: 97/900
  67314. }
  67315. },
  67316. },
  67317. [
  67318. {
  67319. name: "Small",
  67320. height: math.unit(40, "inches"),
  67321. default: true
  67322. },
  67323. {
  67324. name: "Medium",
  67325. height: math.unit(60, "inches")
  67326. },
  67327. {
  67328. name: "Large",
  67329. height: math.unit(110, "inches")
  67330. },
  67331. ]
  67332. ))
  67333. characterMakers.push(() => makeCharacter(
  67334. { name: "Cherry Spark", species: ["cheetah", "deity"], tags: ["feral"] },
  67335. {
  67336. sphinx_side: {
  67337. height: math.unit(64.7, "feet"),
  67338. weight: math.unit(150265, "lb"),
  67339. name: "Side",
  67340. image: {
  67341. source: "./media/characters/cherry-spark/sphinx-side.svg",
  67342. extra: 410/299,
  67343. bottom: 7/417
  67344. },
  67345. form: "sphinx",
  67346. default: true
  67347. },
  67348. sphinx_cooch: {
  67349. height: math.unit(57, "feet"),
  67350. name: "Cooch",
  67351. image: {
  67352. source: "./media/characters/cherry-spark/sphinx-cooch.svg"
  67353. },
  67354. form: "sphinx",
  67355. },
  67356. },
  67357. [
  67358. {
  67359. name: "Macro",
  67360. height: math.unit(64.7, "feet"),
  67361. default: true,
  67362. form: "sphinx"
  67363. },
  67364. ],
  67365. {
  67366. "sphinx": {
  67367. name: "Sphinx",
  67368. default: true
  67369. },
  67370. }
  67371. ))
  67372. characterMakers.push(() => makeCharacter(
  67373. { name: "Jaanada Palzathan", species: ["dragon"], tags: ["anthro"] },
  67374. {
  67375. front: {
  67376. height: math.unit(100, "meters"),
  67377. weight: math.unit(12700, "tonnes"),
  67378. name: "Front",
  67379. image: {
  67380. source: "./media/characters/jaanada-palzathan/front.svg",
  67381. extra: 691/652,
  67382. bottom: 13/704
  67383. }
  67384. },
  67385. },
  67386. [
  67387. {
  67388. name: "Giant 1",
  67389. height: math.unit(2.62, "meters")
  67390. },
  67391. {
  67392. name: "Giant 2",
  67393. height: math.unit(4.14, "meters")
  67394. },
  67395. {
  67396. name: "Macro 1",
  67397. height: math.unit(38.4, "meters")
  67398. },
  67399. {
  67400. name: "Macro 2",
  67401. height: math.unit(100, "meters"),
  67402. default: true
  67403. },
  67404. {
  67405. name: "Macro 3",
  67406. height: math.unit(1800, "meters")
  67407. },
  67408. ]
  67409. ))
  67410. characterMakers.push(() => makeCharacter(
  67411. { name: "William Tudor", species: ["kitsune"], tags: ["anthro"] },
  67412. {
  67413. front: {
  67414. height: math.unit(6 + 6/12, "feet"),
  67415. weight: math.unit(205, "lb"),
  67416. name: "Front",
  67417. image: {
  67418. source: "./media/characters/william-tudor/front.svg",
  67419. extra: 1865/1701,
  67420. bottom: 91/1956
  67421. },
  67422. extraAttributes: {
  67423. "tailLength": {
  67424. name: "Tail Length",
  67425. power: 1,
  67426. type: "length",
  67427. base: math.unit(3, "feet")
  67428. },
  67429. }
  67430. },
  67431. back: {
  67432. height: math.unit(6 + 6/12, "feet"),
  67433. weight: math.unit(205, "lb"),
  67434. name: "Back",
  67435. image: {
  67436. source: "./media/characters/william-tudor/back.svg",
  67437. extra: 1911/1731,
  67438. bottom: 19/1930
  67439. },
  67440. extraAttributes: {
  67441. "tailLength": {
  67442. name: "Tail Length",
  67443. power: 1,
  67444. type: "length",
  67445. base: math.unit(3, "feet")
  67446. },
  67447. }
  67448. },
  67449. head: {
  67450. height: math.unit(1.9, "feet"),
  67451. name: "Head",
  67452. image: {
  67453. source: "./media/characters/william-tudor/head.svg"
  67454. }
  67455. },
  67456. },
  67457. [
  67458. {
  67459. name: "Tiny",
  67460. height: math.unit(1, "inches")
  67461. },
  67462. {
  67463. name: "Micro",
  67464. height: math.unit(6, "inches")
  67465. },
  67466. {
  67467. name: "Normal",
  67468. height: math.unit(6 + 6/12, "feet"),
  67469. default: true
  67470. },
  67471. {
  67472. name: "Giant",
  67473. height: math.unit(15, "feet")
  67474. },
  67475. {
  67476. name: "Massive",
  67477. height: math.unit(100, "feet")
  67478. },
  67479. {
  67480. name: "Titanic",
  67481. height: math.unit(1, "mile")
  67482. },
  67483. ]
  67484. ))
  67485. characterMakers.push(() => makeCharacter(
  67486. { name: "Bisset", species: ["dragon"], tags: ["feral"] },
  67487. {
  67488. side: {
  67489. height: math.unit(7, "feet"),
  67490. name: "Side",
  67491. image: {
  67492. source: "./media/characters/bisset/side.svg",
  67493. extra: 1047/527,
  67494. bottom: 65/1112
  67495. }
  67496. },
  67497. },
  67498. [
  67499. {
  67500. name: "Normal",
  67501. height: math.unit(7, "feet"),
  67502. default: true
  67503. },
  67504. ]
  67505. ))
  67506. characterMakers.push(() => makeCharacter(
  67507. { name: "Jericho", species: ["obstagoon"], tags: ["taur"] },
  67508. {
  67509. side: {
  67510. height: math.unit(5, "meters"),
  67511. name: "Side",
  67512. image: {
  67513. source: "./media/characters/jericho/side.svg",
  67514. extra: 626/569,
  67515. bottom: 80/706
  67516. }
  67517. }
  67518. },
  67519. [
  67520. {
  67521. name: "Normal",
  67522. height: math.unit(5, "meters"),
  67523. default: true
  67524. },
  67525. ]
  67526. ))
  67527. characterMakers.push(() => makeCharacter(
  67528. { name: "Finnan", species: ["house-mouse"], tags: ["anthro"] },
  67529. {
  67530. front: {
  67531. height: math.unit(8, "cm"),
  67532. weight: math.unit(19, "grams"),
  67533. name: "Front",
  67534. image: {
  67535. source: "./media/characters/finnan/front.svg",
  67536. extra: 1427/1250,
  67537. bottom: 504/1931
  67538. }
  67539. },
  67540. lying: {
  67541. height: math.unit(3.32, "cm"),
  67542. weight: math.unit(19, "grams"),
  67543. name: "Lying",
  67544. image: {
  67545. source: "./media/characters/finnan/lying.svg",
  67546. extra: 983/709,
  67547. bottom: 800/1783
  67548. }
  67549. },
  67550. head: {
  67551. height: math.unit(3.1, "cm"),
  67552. name: "Head",
  67553. image: {
  67554. source: "./media/characters/finnan/head.svg"
  67555. }
  67556. },
  67557. },
  67558. [
  67559. {
  67560. name: "Normal",
  67561. height: math.unit(8, "cm"),
  67562. default: true
  67563. },
  67564. ]
  67565. ))
  67566. characterMakers.push(() => makeCharacter(
  67567. { name: "Fenja", species: ["deity", "fox", "horse"], tags: ["anthro"] },
  67568. {
  67569. fox_front: {
  67570. height: math.unit(2, "meters"),
  67571. weight: math.unit(180, "lb"),
  67572. name: "Front",
  67573. image: {
  67574. source: "./media/characters/fenja/fox-front.svg",
  67575. extra: 801/735,
  67576. bottom: 14/815
  67577. },
  67578. form: "fox",
  67579. default: true
  67580. },
  67581. fox_frontNsfw: {
  67582. height: math.unit(2, "meters"),
  67583. weight: math.unit(180, "lb"),
  67584. name: "Front (NSFW)",
  67585. image: {
  67586. source: "./media/characters/fenja/fox-front-nsfw.svg",
  67587. extra: 801/735,
  67588. bottom: 14/815
  67589. },
  67590. form: "fox",
  67591. },
  67592. fox_back: {
  67593. height: math.unit(2, "meters"),
  67594. weight: math.unit(180, "lb"),
  67595. name: "Back",
  67596. image: {
  67597. source: "./media/characters/fenja/fox-back.svg",
  67598. extra: 800/722,
  67599. bottom: 22/822
  67600. },
  67601. form: "fox",
  67602. },
  67603. horse_front: {
  67604. height: math.unit(2, "meters"),
  67605. weight: math.unit(210, "lb"),
  67606. name: "Front",
  67607. image: {
  67608. source: "./media/characters/fenja/horse-front.svg",
  67609. extra: 793/736,
  67610. bottom: 24/817
  67611. },
  67612. form: "horse",
  67613. default: true
  67614. },
  67615. horse_frontNsfw: {
  67616. height: math.unit(2, "meters"),
  67617. weight: math.unit(210, "lb"),
  67618. name: "Front (NSFW)",
  67619. image: {
  67620. source: "./media/characters/fenja/horse-front-nsfw.svg",
  67621. extra: 793/736,
  67622. bottom: 24/817
  67623. },
  67624. form: "horse",
  67625. },
  67626. horse_back: {
  67627. height: math.unit(2, "meters"),
  67628. weight: math.unit(210, "lb"),
  67629. name: "Back",
  67630. image: {
  67631. source: "./media/characters/fenja/horse-back.svg",
  67632. extra: 795/739,
  67633. bottom: 16/811
  67634. },
  67635. form: "horse",
  67636. },
  67637. },
  67638. [
  67639. {
  67640. name: "Interaction Size",
  67641. height: math.unit(350, "meters"),
  67642. allForms: true
  67643. },
  67644. {
  67645. name: "Casual Macro",
  67646. height: math.unit(4, "km"),
  67647. allForms: true
  67648. },
  67649. {
  67650. name: "Small",
  67651. height: math.unit(25, "km"),
  67652. allForms: true
  67653. },
  67654. {
  67655. name: "Preferred",
  67656. height: math.unit(300, "km"),
  67657. allForms: true,
  67658. default: true
  67659. },
  67660. {
  67661. name: "Preferred (Large)",
  67662. height: math.unit(4000, "km"),
  67663. allForms: true
  67664. },
  67665. {
  67666. name: "Terra",
  67667. height: math.unit(25000, "km"),
  67668. allForms: true
  67669. },
  67670. {
  67671. name: "Preferred terra",
  67672. height: math.unit(300000, "km"),
  67673. allForms: true
  67674. },
  67675. {
  67676. name: "Original Size",
  67677. height: math.unit(1.5e6, "km"),
  67678. allForms: true
  67679. },
  67680. {
  67681. name: "Showoff Size",
  67682. height: math.unit(100, "galaxies"),
  67683. allForms: true
  67684. },
  67685. ],
  67686. {
  67687. "fox": {
  67688. name: "Fox",
  67689. default: true
  67690. },
  67691. "horse": {
  67692. name: "Horse",
  67693. },
  67694. }
  67695. ))
  67696. characterMakers.push(() => makeCharacter(
  67697. { name: "Petcha", species: ["servine", "plush"], tags: ["feral"] },
  67698. {
  67699. front: {
  67700. height: math.unit(2, "feet"),
  67701. weight: math.unit(7.5, "kg"),
  67702. name: "Front",
  67703. image: {
  67704. source: "./media/characters/petcha/front.svg",
  67705. extra: 283/224,
  67706. bottom: 148/425
  67707. }
  67708. },
  67709. },
  67710. [
  67711. {
  67712. name: "Normal",
  67713. height: math.unit(2, "feet"),
  67714. default: true
  67715. },
  67716. ]
  67717. ))
  67718. characterMakers.push(() => makeCharacter(
  67719. { name: "Clementine", species: ["dragonite"], tags: ["anthro"] },
  67720. {
  67721. front: {
  67722. height: math.unit(14 + 2/12, "feet"),
  67723. weight: math.unit(1851.67, "kg"),
  67724. name: "Front",
  67725. image: {
  67726. source: "./media/characters/clementine/front.svg",
  67727. extra: 547/498,
  67728. bottom: 49/596
  67729. }
  67730. },
  67731. },
  67732. [
  67733. {
  67734. name: "Normal",
  67735. height: math.unit(14 + 2/12, "feet"),
  67736. default: true
  67737. },
  67738. ]
  67739. ))
  67740. characterMakers.push(() => makeCharacter(
  67741. { name: "Xar", species: ["virginia-opossum"], tags: ["anthro"] },
  67742. {
  67743. front: {
  67744. height: math.unit(185, "cm"),
  67745. weight: math.unit(200, "lb"),
  67746. name: "Front",
  67747. image: {
  67748. source: "./media/characters/xar/front.svg",
  67749. extra: 609/574,
  67750. bottom: 22/631
  67751. }
  67752. },
  67753. back: {
  67754. height: math.unit(185, "cm"),
  67755. weight: math.unit(200, "lb"),
  67756. name: "Back",
  67757. image: {
  67758. source: "./media/characters/xar/back.svg",
  67759. extra: 755/716,
  67760. bottom: 17/772
  67761. }
  67762. },
  67763. },
  67764. [
  67765. {
  67766. name: "Smol",
  67767. height: math.unit(15.24, "cm")
  67768. },
  67769. {
  67770. name: "Normal",
  67771. height: math.unit(185, "cm"),
  67772. default: true
  67773. },
  67774. ]
  67775. ))
  67776. characterMakers.push(() => makeCharacter(
  67777. { name: "Telkar", species: ["furret"], tags: ["anthro"] },
  67778. {
  67779. front: {
  67780. height: math.unit(5 + 6/12, "feet"),
  67781. weight: math.unit(150, "lb"),
  67782. preyCapacity: math.unit(3, "people"),
  67783. name: "Front",
  67784. image: {
  67785. source: "./media/characters/telkar/front.svg",
  67786. extra: 429/398,
  67787. bottom: 11/440
  67788. }
  67789. },
  67790. },
  67791. [
  67792. {
  67793. name: "Normal",
  67794. height: math.unit(5 + 6/12, "feet"),
  67795. default: true
  67796. },
  67797. ]
  67798. ))
  67799. characterMakers.push(() => makeCharacter(
  67800. { name: "Salaxia", species: ["salazzle"], tags: ["anthro"] },
  67801. {
  67802. front: {
  67803. height: math.unit(30, "feet"),
  67804. name: "Front",
  67805. image: {
  67806. source: "./media/characters/salaxia/front.svg",
  67807. extra: 518/492,
  67808. bottom: 16/534
  67809. }
  67810. },
  67811. },
  67812. [
  67813. {
  67814. name: "Normal",
  67815. height: math.unit(30, "feet"),
  67816. default: true
  67817. },
  67818. {
  67819. name: "Small",
  67820. height: math.unit(1000, "feet")
  67821. },
  67822. {
  67823. name: "Macro",
  67824. height: math.unit(10000, "feet")
  67825. },
  67826. {
  67827. name: "Mega Macro",
  67828. height: math.unit(10000, "miles")
  67829. },
  67830. {
  67831. name: "Giga Macro",
  67832. height: math.unit(30e6, "miles")
  67833. },
  67834. ]
  67835. ))
  67836. characterMakers.push(() => makeCharacter(
  67837. { name: "Koriona", species: ["froslass"], tags: ["anthro"] },
  67838. {
  67839. front: {
  67840. height: math.unit(13, "feet"),
  67841. name: "Front",
  67842. image: {
  67843. source: "./media/characters/koriona/front.svg",
  67844. extra: 507/474,
  67845. bottom: 6/513
  67846. }
  67847. },
  67848. },
  67849. [
  67850. {
  67851. name: "Normal",
  67852. height: math.unit(13, "feet"),
  67853. default: true
  67854. },
  67855. {
  67856. name: "Small",
  67857. height: math.unit(270, "feet")
  67858. },
  67859. {
  67860. name: "Macro",
  67861. height: math.unit(2300, "feet")
  67862. },
  67863. {
  67864. name: "Mega Macro",
  67865. height: math.unit(1100, "miles")
  67866. },
  67867. {
  67868. name: "Giga Macro",
  67869. height: math.unit(1.1e6, "miles")
  67870. },
  67871. ]
  67872. ))
  67873. characterMakers.push(() => makeCharacter(
  67874. { name: "Jessile", species: ["articuno"], tags: ["anthro"] },
  67875. {
  67876. front: {
  67877. height: math.unit(50, "feet"),
  67878. name: "Front",
  67879. image: {
  67880. source: "./media/characters/jessile/front.svg",
  67881. extra: 517/464,
  67882. bottom: 12/529
  67883. }
  67884. },
  67885. },
  67886. [
  67887. {
  67888. name: "Normal",
  67889. height: math.unit(50, "feet"),
  67890. default: true
  67891. },
  67892. {
  67893. name: "Small",
  67894. height: math.unit(2000, "feet")
  67895. },
  67896. {
  67897. name: "Macro",
  67898. height: math.unit(25000, "feet")
  67899. },
  67900. {
  67901. name: "Mega Macro",
  67902. height: math.unit(40000, "miles")
  67903. },
  67904. {
  67905. name: "Giga Macro",
  67906. height: math.unit(180e6, "miles")
  67907. },
  67908. ]
  67909. ))
  67910. characterMakers.push(() => makeCharacter(
  67911. { name: "Annalei", species: ["leavanny"], tags: ["anthro"] },
  67912. {
  67913. front: {
  67914. height: math.unit(6, "feet"),
  67915. name: "Front",
  67916. image: {
  67917. source: "./media/characters/annalei/front.svg",
  67918. extra: 516/442,
  67919. bottom: 20/536
  67920. }
  67921. },
  67922. },
  67923. [
  67924. {
  67925. name: "Normal",
  67926. height: math.unit(7, "feet"),
  67927. default: true
  67928. },
  67929. {
  67930. name: "Small",
  67931. height: math.unit(140, "feet")
  67932. },
  67933. {
  67934. name: "Macro",
  67935. height: math.unit(1900, "feet")
  67936. },
  67937. {
  67938. name: "Mega Macro",
  67939. height: math.unit(750, "miles")
  67940. },
  67941. {
  67942. name: "Giga Macro",
  67943. height: math.unit(950000, "miles")
  67944. },
  67945. ]
  67946. ))
  67947. //characters
  67948. function makeCharacters() {
  67949. const results = [];
  67950. characterMakers.forEach(character => {
  67951. results.push(character());
  67952. });
  67953. return results;
  67954. }